Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions clients/google-api-services-clouddeploy/v1/2.0.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-clouddeploy</artifactId>
<version>v1-rev20260109-2.0.0</version>
<version>v1-rev20260128-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -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'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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".
*
Expand All @@ -475,7 +478,10 @@ public class List extends CloudDeployRequest<com.google.api.services.clouddeploy
java.util.regex.Pattern.compile("^projects/[^/]+$");

/**
* 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".
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,14 @@ public final class CloudRunMetadata extends com.google.api.client.json.GenericJs
@com.google.api.client.util.Key
private java.util.List<java.lang.String> 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}`.
Expand Down Expand Up @@ -131,6 +139,25 @@ public CloudRunMetadata setServiceUrls(java.util.List<java.lang.String> 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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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}`.
Expand All @@ -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);
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-clouddeploy/v1/2.0.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-clouddeploy</artifactId>
<version>v1-rev20260109-2.0.0</version>
<name>Cloud Deploy API v1-rev20260109-2.0.0</name>
<version>v1-rev20260128-2.0.0</version>
<name>Cloud Deploy API v1-rev20260128-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-clouddeploy/v1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-clouddeploy</artifactId>
<version>v1-rev20260109-2.0.0</version>
<version>v1-rev20260128-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -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'
}
```

Expand Down