OperationMetadata provides information about the operation execution. Returned in the long-running operation's metadata field.
JSON representation |
---|
{ "apiMethodName" : string , "createTime" : string , "endTime" : string , "cancelRequested" : boolean , "logsUrl" : string , // Union field |
apiMethodName
string
The name of the API method that initiated the operation.
createTime
string(
Timestamp
format)
The time at which the operation was created by the API.
Uses RFC 3339, where generated output will always be Z-normalized and uses 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: "2014-10-02T15:01:23Z"
, "2014-10-02T15:01:23.045123456Z"
or "2014-10-02T15:01:23+05:30"
.
endTime
string(
Timestamp
format)
The time at which execution workloads were completed. Some tasks will complete after this time such as logging audit logs.
Uses RFC 3339, where generated output will always be Z-normalized and uses 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: "2014-10-02T15:01:23Z"
, "2014-10-02T15:01:23.045123456Z"
or "2014-10-02T15:01:23+05:30"
.
cancelRequested
boolean
Specifies if cancellation was requested for the operation.
logsUrl
string
A link to audit and error logs in the log viewer. Error logs are generated only by some operations, listed at Viewing error logs in Cloud Logging
. The endTime
specified in this URL may not match the end time on the metadata because logs are written asynchronously from execution.
progress
. The progress information for the operation. Details are described in the API method that creates the operation. Not all methods provide progress information. progress
can be only one of the following:counter
object(
ProgressCounter
)
ProgressCounter
ProgressCounter provides counters to describe an operation's progress.
JSON representation |
---|
{ "pending" : string , "success" : string , "failure" : string , "secondarySuccess" : string , "secondaryFailure" : string } |
Fields | |
---|---|
pending
|
The number of units that are pending in the operation. |
success
|
The number of units that succeeded in the operation. |
failure
|
The number of units that failed in the operation. |
secondarySuccess
|
The number of secondary units that succeeded in the operation. |
secondaryFailure
|
The number of secondary units that failed in the operation. |