requiredPaths) {
diff --git a/clients/google-api-services-firebaseapphosting/v1/2.0.0/pom.xml b/clients/google-api-services-firebaseapphosting/v1/2.0.0/pom.xml
index 6033a39b63c..d19f5d8c88d 100644
--- a/clients/google-api-services-firebaseapphosting/v1/2.0.0/pom.xml
+++ b/clients/google-api-services-firebaseapphosting/v1/2.0.0/pom.xml
@@ -8,8 +8,8 @@
com.google.apis
google-api-services-firebaseapphosting
- v1-rev20260506-2.0.0
- Firebase App Hosting API v1-rev20260506-2.0.0
+ v1-rev20260514-2.0.0
+ Firebase App Hosting API v1-rev20260514-2.0.0
jar
2011
diff --git a/clients/google-api-services-firebaseapphosting/v1/README.md b/clients/google-api-services-firebaseapphosting/v1/README.md
index 86e93e702f4..cd991bbfa41 100644
--- a/clients/google-api-services-firebaseapphosting/v1/README.md
+++ b/clients/google-api-services-firebaseapphosting/v1/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-firebaseapphosting
- v1-rev20260506-2.0.0
+ v1-rev20260514-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-firebaseapphosting:v1-rev20260506-2.0.0'
+ implementation 'com.google.apis:google-api-services-firebaseapphosting:v1-rev20260514-2.0.0'
}
```
diff --git a/clients/google-api-services-firebaseapphosting/v1beta/2.0.0/README.md b/clients/google-api-services-firebaseapphosting/v1beta/2.0.0/README.md
index 26da78f354a..e42a3bcec6e 100644
--- a/clients/google-api-services-firebaseapphosting/v1beta/2.0.0/README.md
+++ b/clients/google-api-services-firebaseapphosting/v1beta/2.0.0/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-firebaseapphosting
- v1beta-rev20260506-2.0.0
+ v1beta-rev20260514-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-firebaseapphosting:v1beta-rev20260506-2.0.0'
+ implementation 'com.google.apis:google-api-services-firebaseapphosting:v1beta-rev20260514-2.0.0'
}
```
diff --git a/clients/google-api-services-firebaseapphosting/v1beta/2.0.0/com/google/api/services/firebaseapphosting/v1beta/model/Backend.java b/clients/google-api-services-firebaseapphosting/v1beta/2.0.0/com/google/api/services/firebaseapphosting/v1beta/model/Backend.java
index d658bfd52a9..e0e690a92ec 100644
--- a/clients/google-api-services-firebaseapphosting/v1beta/2.0.0/com/google/api/services/firebaseapphosting/v1beta/model/Backend.java
+++ b/clients/google-api-services-firebaseapphosting/v1beta/2.0.0/com/google/api/services/firebaseapphosting/v1beta/model/Backend.java
@@ -46,6 +46,13 @@ public final class Backend extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private java.lang.String appId;
+ /**
+ * Optional. automatic_base_image_updates_disabled acts as a way for users to opt out of ABIU.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private java.lang.Boolean automaticBaseImageUpdatesDisabled;
+
/**
* Optional. If specified, the connection to an external source repository to watch for event-
* driven updates to the backend.
@@ -143,6 +150,14 @@ public final class Backend extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private java.lang.Boolean requestLogsDisabled;
+ /**
+ * Optional. The runtime that the backend will be built on. A default base_image will be chosen
+ * for a given runtime.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private BackendRuntime runtime;
+
/**
* Required. The name of the service account used for Cloud Build and Cloud Run. Should have the
* role roles/firebaseapphosting.computeRunner or equivalent permissions.
@@ -219,6 +234,23 @@ public Backend setAppId(java.lang.String appId) {
return this;
}
+ /**
+ * Optional. automatic_base_image_updates_disabled acts as a way for users to opt out of ABIU.
+ * @return value or {@code null} for none
+ */
+ public java.lang.Boolean getAutomaticBaseImageUpdatesDisabled() {
+ return automaticBaseImageUpdatesDisabled;
+ }
+
+ /**
+ * Optional. automatic_base_image_updates_disabled acts as a way for users to opt out of ABIU.
+ * @param automaticBaseImageUpdatesDisabled automaticBaseImageUpdatesDisabled or {@code null} for none
+ */
+ public Backend setAutomaticBaseImageUpdatesDisabled(java.lang.Boolean automaticBaseImageUpdatesDisabled) {
+ this.automaticBaseImageUpdatesDisabled = automaticBaseImageUpdatesDisabled;
+ return this;
+ }
+
/**
* Optional. If specified, the connection to an external source repository to watch for event-
* driven updates to the backend.
@@ -452,6 +484,25 @@ public Backend setRequestLogsDisabled(java.lang.Boolean requestLogsDisabled) {
return this;
}
+ /**
+ * Optional. The runtime that the backend will be built on. A default base_image will be chosen
+ * for a given runtime.
+ * @return value or {@code null} for none
+ */
+ public BackendRuntime getRuntime() {
+ return runtime;
+ }
+
+ /**
+ * Optional. The runtime that the backend will be built on. A default base_image will be chosen
+ * for a given runtime.
+ * @param runtime runtime or {@code null} for none
+ */
+ public Backend setRuntime(BackendRuntime runtime) {
+ this.runtime = runtime;
+ return this;
+ }
+
/**
* Required. The name of the service account used for Cloud Build and Cloud Run. Should have the
* role roles/firebaseapphosting.computeRunner or equivalent permissions.
diff --git a/clients/google-api-services-firebaseapphosting/v1beta/2.0.0/com/google/api/services/firebaseapphosting/v1beta/model/BackendRuntime.java b/clients/google-api-services-firebaseapphosting/v1beta/2.0.0/com/google/api/services/firebaseapphosting/v1beta/model/BackendRuntime.java
new file mode 100644
index 00000000000..ef2da0e3f4a
--- /dev/null
+++ b/clients/google-api-services-firebaseapphosting/v1beta/2.0.0/com/google/api/services/firebaseapphosting/v1beta/model/BackendRuntime.java
@@ -0,0 +1,71 @@
+/*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
+ * in compliance with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software distributed under the License
+ * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
+ * or implied. See the License for the specific language governing permissions and limitations under
+ * the License.
+ */
+/*
+ * This code was generated by https://github.com/googleapis/google-api-java-client-services/
+ * Modify at your own risk.
+ */
+
+package com.google.api.services.firebaseapphosting.v1beta.model;
+
+/**
+ * Runtime is a string that represents the runtime that is used to build the backend. Users can
+ * specify one of the following runtimes: nodejs20, nodejs22, nodejs24, nodejs. Runtime "nodejs"
+ * means that nodejs version will be determined at build time. If not specified or specified with a
+ * value that is not in the list above, the default runtime `nodejs` will be used and Automatic Base
+ * Image Updates will be disabled.
+ *
+ * This is the Java data model class that specifies how to parse/serialize into the JSON that is
+ * transmitted over HTTP when working with the Firebase App Hosting API. For a detailed explanation
+ * see:
+ * https://developers.google.com/api-client-library/java/google-http-java-client/json
+ *
+ *
+ * @author Google, Inc.
+ */
+@SuppressWarnings("javadoc")
+public final class BackendRuntime extends com.google.api.client.json.GenericJson {
+
+ /**
+ * Optional. The value of the runtime.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private java.lang.String value;
+
+ /**
+ * Optional. The value of the runtime.
+ * @return value or {@code null} for none
+ */
+ public java.lang.String getValue() {
+ return value;
+ }
+
+ /**
+ * Optional. The value of the runtime.
+ * @param value value or {@code null} for none
+ */
+ public BackendRuntime setValue(java.lang.String value) {
+ this.value = value;
+ return this;
+ }
+
+ @Override
+ public BackendRuntime set(String fieldName, Object value) {
+ return (BackendRuntime) super.set(fieldName, value);
+ }
+
+ @Override
+ public BackendRuntime clone() {
+ return (BackendRuntime) super.clone();
+ }
+
+}
diff --git a/clients/google-api-services-firebaseapphosting/v1beta/2.0.0/com/google/api/services/firebaseapphosting/v1beta/model/RolloutPolicy.java b/clients/google-api-services-firebaseapphosting/v1beta/2.0.0/com/google/api/services/firebaseapphosting/v1beta/model/RolloutPolicy.java
index 1f48db405c6..35806114ba8 100644
--- a/clients/google-api-services-firebaseapphosting/v1beta/2.0.0/com/google/api/services/firebaseapphosting/v1beta/model/RolloutPolicy.java
+++ b/clients/google-api-services-firebaseapphosting/v1beta/2.0.0/com/google/api/services/firebaseapphosting/v1beta/model/RolloutPolicy.java
@@ -56,8 +56,8 @@ public final class RolloutPolicy extends com.google.api.client.json.GenericJson
/**
* Optional. A list of file paths patterns to exclude from triggering a rollout. Patterns in this
* list take precedence over required_paths. **Note**: All paths must be in the ignored_paths in
- * order for the rollout to be skipped. Limited to 100 paths. Example: ignored_paths: { pattern:
- * "foo/bar/excluded” type: GLOB }
+ * order for the rollout to be skipped. Limited to 100 paths. Example: ``` ignored_paths: {
+ * pattern: "foo/bar/excluded", type: "GLOB" } ```
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
@@ -73,7 +73,8 @@ public final class RolloutPolicy extends com.google.api.client.json.GenericJson
* Optional. A list of file paths patterns that trigger a build and rollout if at least one of the
* changed files in the commit are present in this list. This field is optional; the rollout
* policy will default to triggering on all paths if both ignored_paths and required_paths are not
- * populated. Limited to 100 paths. Example: “required_paths: { pattern: "foo/bar” type: GLOB }
+ * populated. Limited to 100 paths. Example: ``` required_paths: { pattern: "foo/bar", type:
+ * "GLOB" } ```
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
@@ -143,8 +144,8 @@ public RolloutPolicy setDisabledTime(String disabledTime) {
/**
* Optional. A list of file paths patterns to exclude from triggering a rollout. Patterns in this
* list take precedence over required_paths. **Note**: All paths must be in the ignored_paths in
- * order for the rollout to be skipped. Limited to 100 paths. Example: ignored_paths: { pattern:
- * "foo/bar/excluded” type: GLOB }
+ * order for the rollout to be skipped. Limited to 100 paths. Example: ``` ignored_paths: {
+ * pattern: "foo/bar/excluded", type: "GLOB" } ```
* @return value or {@code null} for none
*/
public java.util.List getIgnoredPaths() {
@@ -154,8 +155,8 @@ public java.util.List getIgnoredPaths() {
/**
* Optional. A list of file paths patterns to exclude from triggering a rollout. Patterns in this
* list take precedence over required_paths. **Note**: All paths must be in the ignored_paths in
- * order for the rollout to be skipped. Limited to 100 paths. Example: ignored_paths: { pattern:
- * "foo/bar/excluded” type: GLOB }
+ * order for the rollout to be skipped. Limited to 100 paths. Example: ``` ignored_paths: {
+ * pattern: "foo/bar/excluded", type: "GLOB" } ```
* @param ignoredPaths ignoredPaths or {@code null} for none
*/
public RolloutPolicy setIgnoredPaths(java.util.List ignoredPaths) {
@@ -167,7 +168,8 @@ public RolloutPolicy setIgnoredPaths(java.util.List ignoredPaths) {
* Optional. A list of file paths patterns that trigger a build and rollout if at least one of the
* changed files in the commit are present in this list. This field is optional; the rollout
* policy will default to triggering on all paths if both ignored_paths and required_paths are not
- * populated. Limited to 100 paths. Example: “required_paths: { pattern: "foo/bar” type: GLOB }
+ * populated. Limited to 100 paths. Example: ``` required_paths: { pattern: "foo/bar", type:
+ * "GLOB" } ```
* @return value or {@code null} for none
*/
public java.util.List getRequiredPaths() {
@@ -178,7 +180,8 @@ public java.util.List getRequiredPaths() {
* Optional. A list of file paths patterns that trigger a build and rollout if at least one of the
* changed files in the commit are present in this list. This field is optional; the rollout
* policy will default to triggering on all paths if both ignored_paths and required_paths are not
- * populated. Limited to 100 paths. Example: “required_paths: { pattern: "foo/bar” type: GLOB }
+ * populated. Limited to 100 paths. Example: ``` required_paths: { pattern: "foo/bar", type:
+ * "GLOB" } ```
* @param requiredPaths requiredPaths or {@code null} for none
*/
public RolloutPolicy setRequiredPaths(java.util.List requiredPaths) {
diff --git a/clients/google-api-services-firebaseapphosting/v1beta/2.0.0/pom.xml b/clients/google-api-services-firebaseapphosting/v1beta/2.0.0/pom.xml
index b78aac1c3f7..856079e0943 100644
--- a/clients/google-api-services-firebaseapphosting/v1beta/2.0.0/pom.xml
+++ b/clients/google-api-services-firebaseapphosting/v1beta/2.0.0/pom.xml
@@ -8,8 +8,8 @@
com.google.apis
google-api-services-firebaseapphosting
- v1beta-rev20260506-2.0.0
- Firebase App Hosting API v1beta-rev20260506-2.0.0
+ v1beta-rev20260514-2.0.0
+ Firebase App Hosting API v1beta-rev20260514-2.0.0
jar
2011
diff --git a/clients/google-api-services-firebaseapphosting/v1beta/README.md b/clients/google-api-services-firebaseapphosting/v1beta/README.md
index 26da78f354a..e42a3bcec6e 100644
--- a/clients/google-api-services-firebaseapphosting/v1beta/README.md
+++ b/clients/google-api-services-firebaseapphosting/v1beta/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-firebaseapphosting
- v1beta-rev20260506-2.0.0
+ v1beta-rev20260514-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-firebaseapphosting:v1beta-rev20260506-2.0.0'
+ implementation 'com.google.apis:google-api-services-firebaseapphosting:v1beta-rev20260514-2.0.0'
}
```