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
#### ids:v1
The following keys were added:
- resources.projects.resources.locations.resources.operations.methods.list.parameters.returnPartialSuccess.description
- resources.projects.resources.locations.resources.operations.methods.list.parameters.returnPartialSuccess.location
- resources.projects.resources.locations.resources.operations.methods.list.parameters.returnPartialSuccess.type
- schemas.ListOperationsResponse.properties.unreachable.description
- schemas.ListOperationsResponse.properties.unreachable.items.type
- schemas.ListOperationsResponse.properties.unreachable.type
The following keys were changed:
- resources.projects.resources.locations.methods.list.parameters.extraLocationTypes.description
Copy file name to clipboardExpand all lines: discovery/ids-v1.json
+14-2Lines changed: 14 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -144,7 +144,7 @@
144
144
],
145
145
"parameters": {
146
146
"extraLocationTypes": {
147
-
"description": "Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.",
147
+
"description": "Optional. Unless explicitly documented otherwise, don't use this unsupported field which is primarily intended for internal usage.",
148
148
"location": "query",
149
149
"repeated": true,
150
150
"type": "string"
@@ -476,6 +476,11 @@
476
476
"description": "The standard list page token.",
477
477
"location": "query",
478
478
"type": "string"
479
+
},
480
+
"returnPartialSuccess": {
481
+
"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.",
482
+
"location": "query",
483
+
"type": "boolean"
479
484
}
480
485
},
481
486
"path": "v1/{+name}/operations",
@@ -493,7 +498,7 @@
493
498
}
494
499
}
495
500
},
496
-
"revision": "20250320",
501
+
"revision": "20251020",
497
502
"rootUrl": "https://ids.googleapis.com/",
498
503
"schemas": {
499
504
"CancelOperationRequest": {
@@ -673,6 +678,13 @@
673
678
"$ref": "Operation"
674
679
},
675
680
"type": "array"
681
+
},
682
+
"unreachable": {
683
+
"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.",
Copy file name to clipboardExpand all lines: src/apis/ids/v1.ts
+14-3Lines changed: 14 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -232,6 +232,10 @@ export namespace ids_v1 {
232
232
* A list of operations that matches the specified filter in the request.
233
233
*/
234
234
operations?: Schema$Operation[];
235
+
/**
236
+
* 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.
237
+
*/
238
+
unreachable?: string[]|null;
235
239
}
236
240
/**
237
241
* A resource that represents a Google Cloud location.
@@ -524,7 +528,7 @@ export namespace ids_v1 {
524
528
*
525
529
* // Do the magic
526
530
* const res = await ids.projects.locations.list({
527
-
* // Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.
531
+
* // Optional. Unless explicitly documented otherwise, don't use this unsupported field which is primarily intended for internal usage.
528
532
* extraLocationTypes: 'placeholder-value',
529
533
* // A filter to narrow down results to a preferred subset. The filtering language accepts strings like `"displayName=tokyo"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160).
* Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.
659
+
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which is primarily intended for internal usage.
656
660
*/
657
661
extraLocationTypes?: string[];
658
662
/**
@@ -1980,13 +1984,16 @@ export namespace ids_v1 {
1980
1984
* pageSize: 'placeholder-value',
1981
1985
* // The standard list page token.
1982
1986
* pageToken: 'placeholder-value',
1987
+
* // 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.
1988
+
* returnPartialSuccess: 'placeholder-value',
1983
1989
* });
1984
1990
* console.log(res.data);
1985
1991
*
1986
1992
* // Example response
1987
1993
* // {
1988
1994
* // "nextPageToken": "my_nextPageToken",
1989
-
* // "operations": []
1995
+
* // "operations": [],
1996
+
* // "unreachable": []
1990
1997
* // }
1991
1998
* }
1992
1999
*
@@ -2132,5 +2139,9 @@ export namespace ids_v1 {
2132
2139
* The standard list page token.
2133
2140
*/
2134
2141
pageToken?: string;
2142
+
/**
2143
+
* 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.
0 commit comments