Skip to content

Commit dea2c44

Browse files
feat(clouddeploy): update the API
#### clouddeploy:v1 The following keys were added: - resources.projects.resources.locations.methods.list.parameters.extraLocationTypes.description - resources.projects.resources.locations.methods.list.parameters.extraLocationTypes.location - resources.projects.resources.locations.methods.list.parameters.extraLocationTypes.repeated - resources.projects.resources.locations.methods.list.parameters.extraLocationTypes.type The following keys were changed: - schemas.CanaryDeployment.properties.verify.description - schemas.DeployPolicy.properties.etag.description - schemas.PhaseConfig.properties.verify.description - schemas.Standard.properties.postdeploy.description - schemas.Standard.properties.predeploy.description - schemas.Standard.properties.verify.description
1 parent 8d281ea commit dea2c44

File tree

2 files changed

+23
-13
lines changed

2 files changed

+23
-13
lines changed

‎discovery/clouddeploy-v1.json

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,12 @@
168168
"name"
169169
],
170170
"parameters": {
171+
"extraLocationTypes": {
172+
"description": "Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.",
173+
"location": "query",
174+
"repeated": true,
175+
"type": "string"
176+
},
171177
"filter": {
172178
"description": "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).",
173179
"location": "query",
@@ -2348,7 +2354,7 @@
23482354
}
23492355
}
23502356
},
2351-
"revision": "20250226",
2357+
"revision": "20250416",
23522358
"rootUrl": "https://clouddeploy.googleapis.com/",
23532359
"schemas": {
23542360
"AbandonReleaseRequest": {
@@ -3040,7 +3046,7 @@
30403046
"description": "Optional. Configuration for the predeploy job of the first phase. If this is not configured, there will be no predeploy job for this phase."
30413047
},
30423048
"verify": {
3043-
"description": "Optional. Whether to run verify tests after each percentage deployment.",
3049+
"description": "Optional. Whether to run verify tests after each percentage deployment via `skaffold verify`.",
30443050
"type": "boolean"
30453051
}
30463052
},
@@ -3741,7 +3747,7 @@
37413747
"type": "string"
37423748
},
37433749
"etag": {
3744-
"description": "The weak etag of the `Automation` resource. This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.",
3750+
"description": "The weak etag of the `DeployPolicy` resource. This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.",
37453751
"type": "string"
37463752
},
37473753
"labels": {
@@ -4959,7 +4965,7 @@
49594965
"type": "array"
49604966
},
49614967
"verify": {
4962-
"description": "Optional. Whether to run verify tests after the deployment.",
4968+
"description": "Optional. Whether to run verify tests after the deployment via `skaffold verify`.",
49634969
"type": "boolean"
49644970
}
49654971
},
@@ -6672,14 +6678,14 @@
66726678
"properties": {
66736679
"postdeploy": {
66746680
"$ref": "Postdeploy",
6675-
"description": "Optional. Configuration for the postdeploy job. If this is not configured, postdeploy job will not be present."
6681+
"description": "Optional. Configuration for the postdeploy job. If this is not configured, the postdeploy job will not be present."
66766682
},
66776683
"predeploy": {
66786684
"$ref": "Predeploy",
6679-
"description": "Optional. Configuration for the predeploy job. If this is not configured, predeploy job will not be present."
6685+
"description": "Optional. Configuration for the predeploy job. If this is not configured, the predeploy job will not be present."
66806686
},
66816687
"verify": {
6682-
"description": "Optional. Whether to verify a deployment.",
6688+
"description": "Optional. Whether to verify a deployment via `skaffold verify`.",
66836689
"type": "boolean"
66846690
}
66856691
},

‎src/apis/clouddeploy/v1.ts

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ export namespace clouddeploy_v1 {
581581
*/
582582
predeploy?: Schema$Predeploy;
583583
/**
584-
* Optional. Whether to run verify tests after each percentage deployment.
584+
* Optional. Whether to run verify tests after each percentage deployment via `skaffold verify`.
585585
*/
586586
verify?: boolean | null;
587587
}
@@ -1059,7 +1059,7 @@ export namespace clouddeploy_v1 {
10591059
*/
10601060
description?: string | null;
10611061
/**
1062-
* The weak etag of the `Automation` resource. This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
1062+
* The weak etag of the `DeployPolicy` resource. This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
10631063
*/
10641064
etag?: string | null;
10651065
/**
@@ -1859,7 +1859,7 @@ export namespace clouddeploy_v1 {
18591859
*/
18601860
profiles?: string[] | null;
18611861
/**
1862-
* Optional. Whether to run verify tests after the deployment.
1862+
* Optional. Whether to run verify tests after the deployment via `skaffold verify`.
18631863
*/
18641864
verify?: boolean | null;
18651865
}
@@ -2902,15 +2902,15 @@ export namespace clouddeploy_v1 {
29022902
*/
29032903
export interface Schema$Standard {
29042904
/**
2905-
* Optional. Configuration for the postdeploy job. If this is not configured, postdeploy job will not be present.
2905+
* Optional. Configuration for the postdeploy job. If this is not configured, the postdeploy job will not be present.
29062906
*/
29072907
postdeploy?: Schema$Postdeploy;
29082908
/**
2909-
* Optional. Configuration for the predeploy job. If this is not configured, predeploy job will not be present.
2909+
* Optional. Configuration for the predeploy job. If this is not configured, the predeploy job will not be present.
29102910
*/
29112911
predeploy?: Schema$Predeploy;
29122912
/**
2913-
* Optional. Whether to verify a deployment.
2913+
* Optional. Whether to verify a deployment via `skaffold verify`.
29142914
*/
29152915
verify?: boolean | null;
29162916
}
@@ -3626,6 +3626,10 @@ export namespace clouddeploy_v1 {
36263626
}
36273627
export interface Params$Resource$Projects$Locations$List
36283628
extends StandardParameters {
3629+
/**
3630+
* Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.
3631+
*/
3632+
extraLocationTypes?: string[];
36293633
/**
36303634
* 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).
36313635
*/

0 commit comments

Comments
 (0)