You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<pclass="firstline">Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.</p>
<pre>Lists transfer operations. Operations are ordered by their creation time in reverse chronological order.
166
166
167
167
Args:
168
168
name: string, Required. The name of the type being listed; must be `transferOperations`. (required)
169
169
filter: string, Required. A list of query parameters specified as JSON text in the form of: `{"projectId":"my_project_id", "jobNames":["jobid1","jobid2",...], "jobNamePattern": "job_name_pattern", "operationNames":["opid1","opid2",...], "operationNamePattern": "operation_name_pattern", "minCreationTime": "min_creation_time", "maxCreationTime": "max_creation_time", "transferStatuses":["status1","status2",...]}` Since `jobNames`, `operationNames`, and `transferStatuses` support multiple values, they must be specified with array notation. `projectId` is the only argument that is required. If specified, `jobNamePattern` and `operationNamePattern` must match the full job or operation name respectively. '*' is a wildcard matching 0 or more characters. `minCreationTime` and `maxCreationTime` should be timestamps encoded as a string in the [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. The valid values for `transferStatuses` are case-insensitive: IN_PROGRESS, PAUSED, SUCCESS, FAILED, and ABORTED. (required)
170
170
pageSize: integer, The list page size. The max allowed value is 256.
171
171
pageToken: string, The list page token.
172
+
returnPartialSuccess: boolean, When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation.
172
173
x__xgafv: string, V1 error format.
173
174
Allowed values
174
175
1 - v1 error format
@@ -200,6 +201,9 @@ <h3>Method Details</h3>
200
201
},
201
202
},
202
203
],
204
+
"unreachable": [ # Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections e.g. when attempting to list all resources across all supported locations.
Copy file name to clipboardExpand all lines: googleapiclient/discovery_cache/documents/storagetransfer.v1.json
+14-2Lines changed: 14 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -563,6 +563,11 @@
563
563
"description": "The list page token.",
564
564
"location": "query",
565
565
"type": "string"
566
+
},
567
+
"returnPartialSuccess": {
568
+
"description": "When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `\"projects/example/locations/-\"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation.",
"description": "An entry describing an error that has occurred.",
845
+
"description": "LINT.IfChange An entry describing an error that has occurred.",
841
846
"id": "ErrorLogEntry",
842
847
"properties": {
843
848
"errorDetails": {
@@ -1040,6 +1045,13 @@
1040
1045
"$ref": "Operation"
1041
1046
},
1042
1047
"type": "array"
1048
+
},
1049
+
"unreachable": {
1050
+
"description": "Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections e.g. when attempting to list all resources across all supported locations.",
0 commit comments