From 38d744728c0c215a24e3c3e87b4e5872f70774f5 Mon Sep 17 00:00:00 2001 From: yoshi-code-bot <70984784+yoshi-code-bot@users.noreply.github.com> Date: Fri, 6 Feb 2026 17:08:33 -0800 Subject: [PATCH] chore: regenerate clouddeploy client --- .../v1/2.0.0/README.md | 4 +-- .../services/clouddeploy/v1/CloudDeploy.java | 10 +++++-- .../v1/model/CloudRunMetadata.java | 27 +++++++++++++++++++ .../v1/model/CloudRunRenderMetadata.java | 27 +++++++++++++++++++ .../v1/2.0.0/pom.xml | 4 +-- .../v1/README.md | 4 +-- 6 files changed, 68 insertions(+), 8 deletions(-) diff --git a/clients/google-api-services-clouddeploy/v1/2.0.0/README.md b/clients/google-api-services-clouddeploy/v1/2.0.0/README.md index 2be608dd7e1..5b484c13c19 100644 --- a/clients/google-api-services-clouddeploy/v1/2.0.0/README.md +++ b/clients/google-api-services-clouddeploy/v1/2.0.0/README.md @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file: com.google.apis google-api-services-clouddeploy - v1-rev20260109-2.0.0 + v1-rev20260128-2.0.0 @@ -35,7 +35,7 @@ repositories { mavenCentral() } dependencies { - implementation 'com.google.apis:google-api-services-clouddeploy:v1-rev20260109-2.0.0' + implementation 'com.google.apis:google-api-services-clouddeploy:v1-rev20260128-2.0.0' } ``` diff --git a/clients/google-api-services-clouddeploy/v1/2.0.0/com/google/api/services/clouddeploy/v1/CloudDeploy.java b/clients/google-api-services-clouddeploy/v1/2.0.0/com/google/api/services/clouddeploy/v1/CloudDeploy.java index 3ca5ba889f4..0cc52246f5a 100644 --- a/clients/google-api-services-clouddeploy/v1/2.0.0/com/google/api/services/clouddeploy/v1/CloudDeploy.java +++ b/clients/google-api-services-clouddeploy/v1/2.0.0/com/google/api/services/clouddeploy/v1/CloudDeploy.java @@ -451,7 +451,10 @@ public GetConfig set(String parameterName, Object value) { } } /** - * Lists information about the supported locations for this service. + * Lists information about the supported locations for this service. This method can be called in + * two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project- + * visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include + * public locations as well as private or other locations specifically visible to the project. * * Create a request for the method "locations.list". * @@ -475,7 +478,10 @@ public class List extends CloudDeployRequest serviceUrls; + /** + * Output only. The Cloud Run worker pool associated with a `Rollout`. Format is + * `projects/{project}/locations/{location}/workerPools/{worker_pool}`. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.String workerPool; + /** * Output only. The name of the Cloud Run job that is associated with a `Rollout`. Format is * `projects/{project}/locations/{location}/jobs/{job_name}`. @@ -131,6 +139,25 @@ public CloudRunMetadata setServiceUrls(java.util.List serviceU return this; } + /** + * Output only. The Cloud Run worker pool associated with a `Rollout`. Format is + * `projects/{project}/locations/{location}/workerPools/{worker_pool}`. + * @return value or {@code null} for none + */ + public java.lang.String getWorkerPool() { + return workerPool; + } + + /** + * Output only. The Cloud Run worker pool associated with a `Rollout`. Format is + * `projects/{project}/locations/{location}/workerPools/{worker_pool}`. + * @param workerPool workerPool or {@code null} for none + */ + public CloudRunMetadata setWorkerPool(java.lang.String workerPool) { + this.workerPool = workerPool; + return this; + } + @Override public CloudRunMetadata set(String fieldName, Object value) { return (CloudRunMetadata) super.set(fieldName, value); diff --git a/clients/google-api-services-clouddeploy/v1/2.0.0/com/google/api/services/clouddeploy/v1/model/CloudRunRenderMetadata.java b/clients/google-api-services-clouddeploy/v1/2.0.0/com/google/api/services/clouddeploy/v1/model/CloudRunRenderMetadata.java index bb227bc9c35..fff6134e484 100644 --- a/clients/google-api-services-clouddeploy/v1/2.0.0/com/google/api/services/clouddeploy/v1/model/CloudRunRenderMetadata.java +++ b/clients/google-api-services-clouddeploy/v1/2.0.0/com/google/api/services/clouddeploy/v1/model/CloudRunRenderMetadata.java @@ -37,6 +37,14 @@ public final class CloudRunRenderMetadata extends com.google.api.client.json.Gen @com.google.api.client.util.Key private java.lang.String service; + /** + * Output only. The name of the Cloud Run Worker Pool in the rendered manifest. Format is + * `projects/{project}/locations/{location}/workerPools/{worker_pool}`. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.String workerPool; + /** * Output only. The name of the Cloud Run Service in the rendered manifest. Format is * `projects/{project}/locations/{location}/services/{service}`. @@ -56,6 +64,25 @@ public CloudRunRenderMetadata setService(java.lang.String service) { return this; } + /** + * Output only. The name of the Cloud Run Worker Pool in the rendered manifest. Format is + * `projects/{project}/locations/{location}/workerPools/{worker_pool}`. + * @return value or {@code null} for none + */ + public java.lang.String getWorkerPool() { + return workerPool; + } + + /** + * Output only. The name of the Cloud Run Worker Pool in the rendered manifest. Format is + * `projects/{project}/locations/{location}/workerPools/{worker_pool}`. + * @param workerPool workerPool or {@code null} for none + */ + public CloudRunRenderMetadata setWorkerPool(java.lang.String workerPool) { + this.workerPool = workerPool; + return this; + } + @Override public CloudRunRenderMetadata set(String fieldName, Object value) { return (CloudRunRenderMetadata) super.set(fieldName, value); diff --git a/clients/google-api-services-clouddeploy/v1/2.0.0/pom.xml b/clients/google-api-services-clouddeploy/v1/2.0.0/pom.xml index 3cbaf5c44b9..578ffd226d6 100644 --- a/clients/google-api-services-clouddeploy/v1/2.0.0/pom.xml +++ b/clients/google-api-services-clouddeploy/v1/2.0.0/pom.xml @@ -8,8 +8,8 @@ com.google.apis google-api-services-clouddeploy - v1-rev20260109-2.0.0 - Cloud Deploy API v1-rev20260109-2.0.0 + v1-rev20260128-2.0.0 + Cloud Deploy API v1-rev20260128-2.0.0 jar 2011 diff --git a/clients/google-api-services-clouddeploy/v1/README.md b/clients/google-api-services-clouddeploy/v1/README.md index 2be608dd7e1..5b484c13c19 100644 --- a/clients/google-api-services-clouddeploy/v1/README.md +++ b/clients/google-api-services-clouddeploy/v1/README.md @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file: com.google.apis google-api-services-clouddeploy - v1-rev20260109-2.0.0 + v1-rev20260128-2.0.0 @@ -35,7 +35,7 @@ repositories { mavenCentral() } dependencies { - implementation 'com.google.apis:google-api-services-clouddeploy:v1-rev20260109-2.0.0' + implementation 'com.google.apis:google-api-services-clouddeploy:v1-rev20260128-2.0.0' } ```