Skip to content

Commit 9bf13b3

Browse files
yoshi-automationfeywind
authored andcommitted
feat(vmwareengine): update the API
#### vmwareengine: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
1 parent 14fa2ba commit 9bf13b3

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed

discovery/vmwareengine-v1.json

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1127,6 +1127,11 @@
11271127
"description": "The standard list page token.",
11281128
"location": "query",
11291129
"type": "string"
1130+
},
1131+
"returnPartialSuccess": {
1132+
"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.",
1133+
"location": "query",
1134+
"type": "boolean"
11301135
}
11311136
},
11321137
"path": "v1/{+name}/operations",
@@ -3396,7 +3401,7 @@
33963401
}
33973402
}
33983403
},
3399-
"revision": "20250912",
3404+
"revision": "20251020",
34003405
"rootUrl": "https://vmwareengine.googleapis.com/",
34013406
"schemas": {
34023407
"AcceleratePrivateCloudDeletionRequest": {
@@ -4451,6 +4456,13 @@
44514456
"$ref": "Operation"
44524457
},
44534458
"type": "array"
4459+
},
4460+
"unreachable": {
4461+
"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.",
4462+
"items": {
4463+
"type": "string"
4464+
},
4465+
"type": "array"
44544466
}
44554467
},
44564468
"type": "object"

src/apis/vmwareengine/v1.ts

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -830,6 +830,10 @@ export namespace vmwareengine_v1 {
830830
* A list of operations that matches the specified filter in the request.
831831
*/
832832
operations?: Schema$Operation[];
833+
/**
834+
* 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.
835+
*/
836+
unreachable?: string[] | null;
833837
}
834838
/**
835839
* Response message for VmwareEngine.ListPeeringRoutes
@@ -6723,13 +6727,16 @@ export namespace vmwareengine_v1 {
67236727
* pageSize: 'placeholder-value',
67246728
* // The standard list page token.
67256729
* pageToken: 'placeholder-value',
6730+
* // 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.
6731+
* returnPartialSuccess: 'placeholder-value',
67266732
* });
67276733
* console.log(res.data);
67286734
*
67296735
* // Example response
67306736
* // {
67316737
* // "nextPageToken": "my_nextPageToken",
6732-
* // "operations": []
6738+
* // "operations": [],
6739+
* // "unreachable": []
67336740
* // }
67346741
* }
67356742
*
@@ -6863,6 +6870,10 @@ export namespace vmwareengine_v1 {
68636870
* The standard list page token.
68646871
*/
68656872
pageToken?: string;
6873+
/**
6874+
* 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.
6875+
*/
6876+
returnPartialSuccess?: boolean;
68666877
}
68676878

68686879
export class Resource$Projects$Locations$Privateclouds {

0 commit comments

Comments
 (0)