Skip to content

Commit fa75ff0

Browse files
fix(vault): update the API
#### vault:v1 The following keys were changed: - resources.operations.methods.list.parameters.returnPartialSuccess.description - schemas.ListOperationsResponse.properties.unreachable.description
1 parent fe7e677 commit fa75ff0

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

discovery/vault-v1.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1191,7 +1191,7 @@
11911191
"type": "string"
11921192
},
11931193
"returnPartialSuccess": {
1194-
"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.",
1194+
"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. For example, when `parent` is set to `\"projects/example/locations/-\"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation.",
11951195
"location": "query",
11961196
"type": "boolean"
11971197
}
@@ -1208,7 +1208,7 @@
12081208
}
12091209
}
12101210
},
1211-
"revision": "20251015",
1211+
"revision": "20251126",
12121212
"rootUrl": "https://vault.googleapis.com/",
12131213
"schemas": {
12141214
"AccountCount": {
@@ -2248,7 +2248,7 @@
22482248
"type": "array"
22492249
},
22502250
"unreachable": {
2251-
"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.",
2251+
"description": "Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections. For example, when attempting to list all resources across all supported locations.",
22522252
"items": {
22532253
"type": "string"
22542254
},

src/apis/vault/v1.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,7 @@ export namespace vault_v1 {
808808
*/
809809
operations?: Schema$Operation[];
810810
/**
811-
* 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.
811+
* Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections. For example, when attempting to list all resources across all supported locations.
812812
*/
813813
unreachable?: string[] | null;
814814
}
@@ -6317,7 +6317,7 @@ export namespace vault_v1 {
63176317
* pageSize: 'placeholder-value',
63186318
* // The standard list page token.
63196319
* pageToken: 'placeholder-value',
6320-
* // 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.
6320+
* // 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. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation.
63216321
* returnPartialSuccess: 'placeholder-value',
63226322
* });
63236323
* console.log(res.data);
@@ -6465,7 +6465,7 @@ export namespace vault_v1 {
64656465
*/
64666466
pageToken?: string;
64676467
/**
6468-
* 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.
6468+
* 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. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation.
64696469
*/
64706470
returnPartialSuccess?: boolean;
64716471
}

0 commit comments

Comments
 (0)