From d6a35b40177309760b84e3e52dd45234ea54d1a4 Mon Sep 17 00:00:00 2001 From: yoshi-code-bot <70984784+yoshi-code-bot@users.noreply.github.com> Date: Tue, 26 Nov 2024 12:54:31 -0800 Subject: [PATCH] chore: regenerate run client (#23930) Generated in GitHub action: https://togithub.com/googleapis/googleapis/google-api-java-client-services/actions/workflows/codegen.yaml --- .../v2/2.0.0/README.md | 4 +-- .../GoogleCloudRunV2BuildpacksBuild.java | 27 +++++++++++++++ .../GoogleCloudRunV2RevisionTemplate.java | 12 +++---- .../GoogleCloudRunV2SecretVolumeSource.java | 33 +++++++++---------- .../model/GoogleCloudRunV2VersionToPath.java | 21 +++++------- .../google-api-services-run/v2/2.0.0/pom.xml | 4 +-- clients/google-api-services-run/v2/README.md | 4 +-- 7 files changed, 63 insertions(+), 42 deletions(-) diff --git a/clients/google-api-services-run/v2/2.0.0/README.md b/clients/google-api-services-run/v2/2.0.0/README.md index 520b6abc89b..bf805149945 100644 --- a/clients/google-api-services-run/v2/2.0.0/README.md +++ b/clients/google-api-services-run/v2/2.0.0/README.md @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file: com.google.apis google-api-services-run - v2-rev20241109-2.0.0 + v2-rev20241115-2.0.0 @@ -35,7 +35,7 @@ repositories { mavenCentral() } dependencies { - implementation 'com.google.apis:google-api-services-run:v2-rev20241109-2.0.0' + implementation 'com.google.apis:google-api-services-run:v2-rev20241115-2.0.0' } ``` diff --git a/clients/google-api-services-run/v2/2.0.0/com/google/api/services/run/v2/model/GoogleCloudRunV2BuildpacksBuild.java b/clients/google-api-services-run/v2/2.0.0/com/google/api/services/run/v2/model/GoogleCloudRunV2BuildpacksBuild.java index 0209b38839f..9fb8f295a3d 100644 --- a/clients/google-api-services-run/v2/2.0.0/com/google/api/services/run/v2/model/GoogleCloudRunV2BuildpacksBuild.java +++ b/clients/google-api-services-run/v2/2.0.0/com/google/api/services/run/v2/model/GoogleCloudRunV2BuildpacksBuild.java @@ -70,6 +70,14 @@ public final class GoogleCloudRunV2BuildpacksBuild extends com.google.api.client @com.google.api.client.util.Key private java.lang.String functionTarget; + /** + * Optional. project_descriptor stores the path to the project descriptor file. When empty, it + * means that there is no project descriptor file in the source. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.String projectDescriptor; + /** * The runtime name, e.g. 'go113'. Leave blank for generic builds. * The value may be {@code null}. @@ -174,6 +182,25 @@ public GoogleCloudRunV2BuildpacksBuild setFunctionTarget(java.lang.String functi return this; } + /** + * Optional. project_descriptor stores the path to the project descriptor file. When empty, it + * means that there is no project descriptor file in the source. + * @return value or {@code null} for none + */ + public java.lang.String getProjectDescriptor() { + return projectDescriptor; + } + + /** + * Optional. project_descriptor stores the path to the project descriptor file. When empty, it + * means that there is no project descriptor file in the source. + * @param projectDescriptor projectDescriptor or {@code null} for none + */ + public GoogleCloudRunV2BuildpacksBuild setProjectDescriptor(java.lang.String projectDescriptor) { + this.projectDescriptor = projectDescriptor; + return this; + } + /** * The runtime name, e.g. 'go113'. Leave blank for generic builds. * @return value or {@code null} for none diff --git a/clients/google-api-services-run/v2/2.0.0/com/google/api/services/run/v2/model/GoogleCloudRunV2RevisionTemplate.java b/clients/google-api-services-run/v2/2.0.0/com/google/api/services/run/v2/model/GoogleCloudRunV2RevisionTemplate.java index 8e5342a745f..b83a48e5abc 100644 --- a/clients/google-api-services-run/v2/2.0.0/com/google/api/services/run/v2/model/GoogleCloudRunV2RevisionTemplate.java +++ b/clients/google-api-services-run/v2/2.0.0/com/google/api/services/run/v2/model/GoogleCloudRunV2RevisionTemplate.java @@ -107,8 +107,8 @@ public final class GoogleCloudRunV2RevisionTemplate extends com.google.api.clien /** * Optional. Sets the maximum number of requests that each serving instance can receive. If not - * specified or 0, defaults to 80 when requested `CPU >= 1` and defaults to 1 when requested `CPU - * < 1`. + * specified or 0, concurrency defaults to 80 when requested `CPU >= 1` and defaults to 1 when + * requested `CPU < 1`. * The value may be {@code null}. */ @com.google.api.client.util.Key @@ -348,8 +348,8 @@ public GoogleCloudRunV2RevisionTemplate setLabels(java.util.Map= 1` and defaults to 1 when requested `CPU - * < 1`. + * specified or 0, concurrency defaults to 80 when requested `CPU >= 1` and defaults to 1 when + * requested `CPU < 1`. * @return value or {@code null} for none */ public java.lang.Integer getMaxInstanceRequestConcurrency() { @@ -358,8 +358,8 @@ public java.lang.Integer getMaxInstanceRequestConcurrency() { /** * Optional. Sets the maximum number of requests that each serving instance can receive. If not - * specified or 0, defaults to 80 when requested `CPU >= 1` and defaults to 1 when requested `CPU - * < 1`. + * specified or 0, concurrency defaults to 80 when requested `CPU >= 1` and defaults to 1 when + * requested `CPU < 1`. * @param maxInstanceRequestConcurrency maxInstanceRequestConcurrency or {@code null} for none */ public GoogleCloudRunV2RevisionTemplate setMaxInstanceRequestConcurrency(java.lang.Integer maxInstanceRequestConcurrency) { diff --git a/clients/google-api-services-run/v2/2.0.0/com/google/api/services/run/v2/model/GoogleCloudRunV2SecretVolumeSource.java b/clients/google-api-services-run/v2/2.0.0/com/google/api/services/run/v2/model/GoogleCloudRunV2SecretVolumeSource.java index 0719bfeb749..f4a56ef557f 100644 --- a/clients/google-api-services-run/v2/2.0.0/com/google/api/services/run/v2/model/GoogleCloudRunV2SecretVolumeSource.java +++ b/clients/google-api-services-run/v2/2.0.0/com/google/api/services/run/v2/model/GoogleCloudRunV2SecretVolumeSource.java @@ -35,12 +35,11 @@ public final class GoogleCloudRunV2SecretVolumeSource extends com.google.api.cli * 0000 and 0777 (octal), defaulting to 0444. Directories within the path are not affected by this * setting. Notes * Internally, a umask of 0222 will be applied to any non-zero value. * This is * an integer representation of the mode bits. So, the octal integer value should look exactly as - * the chmod numeric notation with a leading zero. Some examples: for chmod 777 (a=rwx), set to - * 0777 (octal) or 511 (base-10). For chmod 640 (u=rw,g=r), set to 0640 (octal) or 416 (base-10). - * For chmod 755 (u=rwx,g=rx,o=rx), set to 0755 (octal) or 493 (base-10). * This might be in - * conflict with other options that affect the file mode, like fsGroup, and the result can be - * other mode bits set. This might be in conflict with other options that affect the file mode, - * like fsGroup, and as a result, other mode bits could be set. + * the chmod numeric notation with a leading zero. Some examples: for chmod 640 (u=rw,g=r), set to + * 0640 (octal) or 416 (base-10). For chmod 755 (u=rwx,g=rx,o=rx), set to 0755 (octal) or 493 + * (base-10). * This might be in conflict with other options that affect the file mode, like + * fsGroup, and the result can be other mode bits set. This might be in conflict with other + * options that affect the file mode, like fsGroup, and as a result, other mode bits could be set. * The value may be {@code null}. */ @com.google.api.client.util.Key @@ -69,12 +68,11 @@ public final class GoogleCloudRunV2SecretVolumeSource extends com.google.api.cli * 0000 and 0777 (octal), defaulting to 0444. Directories within the path are not affected by this * setting. Notes * Internally, a umask of 0222 will be applied to any non-zero value. * This is * an integer representation of the mode bits. So, the octal integer value should look exactly as - * the chmod numeric notation with a leading zero. Some examples: for chmod 777 (a=rwx), set to - * 0777 (octal) or 511 (base-10). For chmod 640 (u=rw,g=r), set to 0640 (octal) or 416 (base-10). - * For chmod 755 (u=rwx,g=rx,o=rx), set to 0755 (octal) or 493 (base-10). * This might be in - * conflict with other options that affect the file mode, like fsGroup, and the result can be - * other mode bits set. This might be in conflict with other options that affect the file mode, - * like fsGroup, and as a result, other mode bits could be set. + * the chmod numeric notation with a leading zero. Some examples: for chmod 640 (u=rw,g=r), set to + * 0640 (octal) or 416 (base-10). For chmod 755 (u=rwx,g=rx,o=rx), set to 0755 (octal) or 493 + * (base-10). * This might be in conflict with other options that affect the file mode, like + * fsGroup, and the result can be other mode bits set. This might be in conflict with other + * options that affect the file mode, like fsGroup, and as a result, other mode bits could be set. * @return value or {@code null} for none */ public java.lang.Integer getDefaultMode() { @@ -86,12 +84,11 @@ public java.lang.Integer getDefaultMode() { * 0000 and 0777 (octal), defaulting to 0444. Directories within the path are not affected by this * setting. Notes * Internally, a umask of 0222 will be applied to any non-zero value. * This is * an integer representation of the mode bits. So, the octal integer value should look exactly as - * the chmod numeric notation with a leading zero. Some examples: for chmod 777 (a=rwx), set to - * 0777 (octal) or 511 (base-10). For chmod 640 (u=rw,g=r), set to 0640 (octal) or 416 (base-10). - * For chmod 755 (u=rwx,g=rx,o=rx), set to 0755 (octal) or 493 (base-10). * This might be in - * conflict with other options that affect the file mode, like fsGroup, and the result can be - * other mode bits set. This might be in conflict with other options that affect the file mode, - * like fsGroup, and as a result, other mode bits could be set. + * the chmod numeric notation with a leading zero. Some examples: for chmod 640 (u=rw,g=r), set to + * 0640 (octal) or 416 (base-10). For chmod 755 (u=rwx,g=rx,o=rx), set to 0755 (octal) or 493 + * (base-10). * This might be in conflict with other options that affect the file mode, like + * fsGroup, and the result can be other mode bits set. This might be in conflict with other + * options that affect the file mode, like fsGroup, and as a result, other mode bits could be set. * @param defaultMode defaultMode or {@code null} for none */ public GoogleCloudRunV2SecretVolumeSource setDefaultMode(java.lang.Integer defaultMode) { diff --git a/clients/google-api-services-run/v2/2.0.0/com/google/api/services/run/v2/model/GoogleCloudRunV2VersionToPath.java b/clients/google-api-services-run/v2/2.0.0/com/google/api/services/run/v2/model/GoogleCloudRunV2VersionToPath.java index eb8ff01ad55..0ff9b608850 100644 --- a/clients/google-api-services-run/v2/2.0.0/com/google/api/services/run/v2/model/GoogleCloudRunV2VersionToPath.java +++ b/clients/google-api-services-run/v2/2.0.0/com/google/api/services/run/v2/model/GoogleCloudRunV2VersionToPath.java @@ -35,10 +35,9 @@ public final class GoogleCloudRunV2VersionToPath extends com.google.api.client.j * or not set, the Volume's default mode will be used. Notes * Internally, a umask of 0222 will be * applied to any non-zero value. * This is an integer representation of the mode bits. So, the * octal integer value should look exactly as the chmod numeric notation with a leading zero. Some - * examples: for chmod 777 (a=rwx), set to 0777 (octal) or 511 (base-10). For chmod 640 - * (u=rw,g=r), set to 0640 (octal) or 416 (base-10). For chmod 755 (u=rwx,g=rx,o=rx), set to 0755 - * (octal) or 493 (base-10). * This might be in conflict with other options that affect the file - * mode, like fsGroup, and the result can be other mode bits set. + * examples: for chmod 640 (u=rw,g=r), set to 0640 (octal) or 416 (base-10). For chmod 755 + * (u=rwx,g=rx,o=rx), set to 0755 (octal) or 493 (base-10). * This might be in conflict with other + * options that affect the file mode, like fsGroup, and the result can be other mode bits set. * The value may be {@code null}. */ @com.google.api.client.util.Key @@ -64,10 +63,9 @@ public final class GoogleCloudRunV2VersionToPath extends com.google.api.client.j * or not set, the Volume's default mode will be used. Notes * Internally, a umask of 0222 will be * applied to any non-zero value. * This is an integer representation of the mode bits. So, the * octal integer value should look exactly as the chmod numeric notation with a leading zero. Some - * examples: for chmod 777 (a=rwx), set to 0777 (octal) or 511 (base-10). For chmod 640 - * (u=rw,g=r), set to 0640 (octal) or 416 (base-10). For chmod 755 (u=rwx,g=rx,o=rx), set to 0755 - * (octal) or 493 (base-10). * This might be in conflict with other options that affect the file - * mode, like fsGroup, and the result can be other mode bits set. + * examples: for chmod 640 (u=rw,g=r), set to 0640 (octal) or 416 (base-10). For chmod 755 + * (u=rwx,g=rx,o=rx), set to 0755 (octal) or 493 (base-10). * This might be in conflict with other + * options that affect the file mode, like fsGroup, and the result can be other mode bits set. * @return value or {@code null} for none */ public java.lang.Integer getMode() { @@ -79,10 +77,9 @@ public java.lang.Integer getMode() { * or not set, the Volume's default mode will be used. Notes * Internally, a umask of 0222 will be * applied to any non-zero value. * This is an integer representation of the mode bits. So, the * octal integer value should look exactly as the chmod numeric notation with a leading zero. Some - * examples: for chmod 777 (a=rwx), set to 0777 (octal) or 511 (base-10). For chmod 640 - * (u=rw,g=r), set to 0640 (octal) or 416 (base-10). For chmod 755 (u=rwx,g=rx,o=rx), set to 0755 - * (octal) or 493 (base-10). * This might be in conflict with other options that affect the file - * mode, like fsGroup, and the result can be other mode bits set. + * examples: for chmod 640 (u=rw,g=r), set to 0640 (octal) or 416 (base-10). For chmod 755 + * (u=rwx,g=rx,o=rx), set to 0755 (octal) or 493 (base-10). * This might be in conflict with other + * options that affect the file mode, like fsGroup, and the result can be other mode bits set. * @param mode mode or {@code null} for none */ public GoogleCloudRunV2VersionToPath setMode(java.lang.Integer mode) { diff --git a/clients/google-api-services-run/v2/2.0.0/pom.xml b/clients/google-api-services-run/v2/2.0.0/pom.xml index 9ae04c921e9..63c361b4a9a 100644 --- a/clients/google-api-services-run/v2/2.0.0/pom.xml +++ b/clients/google-api-services-run/v2/2.0.0/pom.xml @@ -8,8 +8,8 @@ com.google.apis google-api-services-run - v2-rev20241109-2.0.0 - Cloud Run Admin API v2-rev20241109-2.0.0 + v2-rev20241115-2.0.0 + Cloud Run Admin API v2-rev20241115-2.0.0 jar 2011 diff --git a/clients/google-api-services-run/v2/README.md b/clients/google-api-services-run/v2/README.md index 520b6abc89b..bf805149945 100644 --- a/clients/google-api-services-run/v2/README.md +++ b/clients/google-api-services-run/v2/README.md @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file: com.google.apis google-api-services-run - v2-rev20241109-2.0.0 + v2-rev20241115-2.0.0 @@ -35,7 +35,7 @@ repositories { mavenCentral() } dependencies { - implementation 'com.google.apis:google-api-services-run:v2-rev20241109-2.0.0' + implementation 'com.google.apis:google-api-services-run:v2-rev20241115-2.0.0' } ```