Skip to content

Commit 8add4fc

Browse files
yoshi-automationquirogas
authored andcommitted
feat(clouddeploy): update the API
#### clouddeploy:v1 The following keys were added: - schemas.Config.properties.defaultToolVersions.$ref - schemas.Config.properties.defaultToolVersions.description - schemas.Config.properties.defaultToolVersions.readOnly The following keys were changed: - resources.projects.resources.locations.resources.operations.methods.list.parameters.returnPartialSuccess.description - schemas.ListOperationsResponse.properties.unreachable.description
1 parent 74ae72e commit 8add4fc

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed

discovery/clouddeploy-v1.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2040,7 +2040,7 @@
20402040
"type": "string"
20412041
},
20422042
"returnPartialSuccess": {
2043-
"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.",
2043+
"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.",
20442044
"location": "query",
20452045
"type": "boolean"
20462046
}
@@ -2359,7 +2359,7 @@
23592359
}
23602360
}
23612361
},
2362-
"revision": "20251105",
2362+
"revision": "20251203",
23632363
"rootUrl": "https://clouddeploy.googleapis.com/",
23642364
"schemas": {
23652365
"AbandonReleaseRequest": {
@@ -3211,6 +3211,11 @@
32113211
"description": "Default Skaffold version that is assigned when a Release is created without specifying a Skaffold version.",
32123212
"type": "string"
32133213
},
3214+
"defaultToolVersions": {
3215+
"$ref": "ToolVersions",
3216+
"description": "Output only. Default tool versions. These tool versions are assigned when a Release is created without specifying tool versions.",
3217+
"readOnly": true
3218+
},
32143219
"name": {
32153220
"description": "Name of the configuration.",
32163221
"type": "string"
@@ -4620,7 +4625,7 @@
46204625
"type": "array"
46214626
},
46224627
"unreachable": {
4623-
"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.",
4628+
"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.",
46244629
"items": {
46254630
"type": "string"
46264631
},

src/apis/clouddeploy/v1.ts

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -691,6 +691,10 @@ export namespace clouddeploy_v1 {
691691
* Default Skaffold version that is assigned when a Release is created without specifying a Skaffold version.
692692
*/
693693
defaultSkaffoldVersion?: string | null;
694+
/**
695+
* Output only. Default tool versions. These tool versions are assigned when a Release is created without specifying tool versions.
696+
*/
697+
defaultToolVersions?: Schema$ToolVersions;
694698
/**
695699
* Name of the configuration.
696700
*/
@@ -1611,7 +1615,7 @@ export namespace clouddeploy_v1 {
16111615
*/
16121616
operations?: Schema$Operation[];
16131617
/**
1614-
* 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.
1618+
* 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.
16151619
*/
16161620
unreachable?: string[] | null;
16171621
}
@@ -3605,6 +3609,7 @@ export namespace clouddeploy_v1 {
36053609
* // Example response
36063610
* // {
36073611
* // "defaultSkaffoldVersion": "my_defaultSkaffoldVersion",
3612+
* // "defaultToolVersions": {},
36083613
* // "name": "my_name",
36093614
* // "supportedVersions": []
36103615
* // }
@@ -12274,7 +12279,7 @@ export namespace clouddeploy_v1 {
1227412279
* pageSize: 'placeholder-value',
1227512280
* // The standard list page token.
1227612281
* pageToken: 'placeholder-value',
12277-
* // 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.
12282+
* // 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.
1227812283
* returnPartialSuccess: 'placeholder-value',
1227912284
* });
1228012285
* console.log(res.data);
@@ -12426,7 +12431,7 @@ export namespace clouddeploy_v1 {
1242612431
*/
1242712432
pageToken?: string;
1242812433
/**
12429-
* 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.
12434+
* 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.
1243012435
*/
1243112436
returnPartialSuccess?: boolean;
1243212437
}

0 commit comments

Comments
 (0)