IndexOperationMetadata

インデックス操作のメタデータ。このメタデータは、 google.longrunning.Operationのメタデータ フィールドに設定されます。

JSON表現
{
  "startTime": string,
  "endTime": string,
  "index": string,
  "operationType": enum(OperationType),
  "cancelled": boolean,
  "documentProgress": {
    object(Progress)
  }
}
田畑
startTime

string ( Timestamp format)

操作の作業が開始された時刻。

RFC3339 UTC「Zulu」形式のタイムスタンプ (ナノ秒までの精度)。例: "2014-10-02T15:01:23.045123456Z"

endTime

string ( Timestamp format)

操作が正常に終了したかどうかに関係なく終了した時刻。操作がまだアクティブな場合は設定を解除します。

RFC3339 UTC「Zulu」形式のタイムスタンプ (ナノ秒までの精度)。例: "2014-10-02T15:01:23.045123456Z"

index

string

この操作が作用するインデックス リソース。例: projects/{projectId}/databases/{databaseId}/indexes/{index_id}

operationType

enum( OperationType )

インデックス操作のタイプ。

cancelled

boolean

google.longrunning.Operationキャンセルされた場合は True。キャンセルが進行中の場合、cancel は true になりますが、 google.longrunning.Operation.done false になります。

documentProgress

object( Progress )

既存の操作の進捗状況。ドキュメントの数で測定されます。

進捗

特定のメトリクスの進捗状況を測定します。

JSON表現
{
  "workCompleted": string,
  "workEstimated": string
}
田畑
workCompleted

string ( int64 format)

完了した作業量の見積もり。これはworkEstimatedよりも大きくなる可能性があることに注意してください。

workEstimated

string ( int64 format)

実行する必要がある作業量の見積もり。作業見積もりが入手できない場合はゼロ。作業の進行に応じて変更される場合があります。