diff --git a/clients/google-api-services-saasservicemgmt/v1beta1/2.0.0/README.md b/clients/google-api-services-saasservicemgmt/v1beta1/2.0.0/README.md
index 49d2d148141..d373cbf6515 100644
--- a/clients/google-api-services-saasservicemgmt/v1beta1/2.0.0/README.md
+++ b/clients/google-api-services-saasservicemgmt/v1beta1/2.0.0/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-saasservicemgmt
- v1beta1-rev20250917-2.0.0
+ v1beta1-rev20251103-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-saasservicemgmt:v1beta1-rev20250917-2.0.0'
+ implementation 'com.google.apis:google-api-services-saasservicemgmt:v1beta1-rev20251103-2.0.0'
}
```
diff --git a/clients/google-api-services-saasservicemgmt/v1beta1/2.0.0/com/google/api/services/saasservicemgmt/v1beta1/SaaSServiceManagement.java b/clients/google-api-services-saasservicemgmt/v1beta1/2.0.0/com/google/api/services/saasservicemgmt/v1beta1/SaaSServiceManagement.java
index 3817e4e958e..dc78cc493e8 100644
--- a/clients/google-api-services-saasservicemgmt/v1beta1/2.0.0/com/google/api/services/saasservicemgmt/v1beta1/SaaSServiceManagement.java
+++ b/clients/google-api-services-saasservicemgmt/v1beta1/2.0.0/com/google/api/services/saasservicemgmt/v1beta1/SaaSServiceManagement.java
@@ -445,22 +445,22 @@ public List setName(java.lang.String name) {
}
/**
- * Optional. Unless explicitly documented otherwise, don't use this unsupported field which
- * is primarily intended for internal usage.
+ * Optional. Do not use this field. It is unsupported and is ignored unless explicitly
+ * documented otherwise. This is primarily for internal usage.
*/
@com.google.api.client.util.Key
private java.util.List extraLocationTypes;
- /** Optional. Unless explicitly documented otherwise, don't use this unsupported field which is
- primarily intended for internal usage.
+ /** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented
+ otherwise. This is primarily for internal usage.
*/
public java.util.List getExtraLocationTypes() {
return extraLocationTypes;
}
/**
- * Optional. Unless explicitly documented otherwise, don't use this unsupported field which
- * is primarily intended for internal usage.
+ * Optional. Do not use this field. It is unsupported and is ignored unless explicitly
+ * documented otherwise. This is primarily for internal usage.
*/
public List setExtraLocationTypes(java.util.List extraLocationTypes) {
this.extraLocationTypes = extraLocationTypes;
diff --git a/clients/google-api-services-saasservicemgmt/v1beta1/2.0.0/com/google/api/services/saasservicemgmt/v1beta1/model/Rollout.java b/clients/google-api-services-saasservicemgmt/v1beta1/2.0.0/com/google/api/services/saasservicemgmt/v1beta1/model/Rollout.java
index bfcc7bda6de..c6838be2431 100644
--- a/clients/google-api-services-saasservicemgmt/v1beta1/2.0.0/com/google/api/services/saasservicemgmt/v1beta1/model/Rollout.java
+++ b/clients/google-api-services-saasservicemgmt/v1beta1/2.0.0/com/google/api/services/saasservicemgmt/v1beta1/model/Rollout.java
@@ -56,6 +56,17 @@ public final class Rollout extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private String createTime;
+ /**
+ * Optional. Output only. Output only snapshot of the effective unit filter at Rollout start time.
+ * Contains a CEL(https://github.com/google/cel-spec) expression consisting of a conjunction of
+ * Rollout.unit_filter and RolloutKind.unit_filter. This field captures the filter applied by the
+ * Rollout to determine the Unit population. If the associated RolloutKind's unit_filter is
+ * modified after the rollout is started, it will not be updated here.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private java.lang.String effectiveUnitFilter;
+
/**
* Optional. Output only. The time when the rollout finished execution (regardless of success,
* failure, or cancellation). Will be empty if the rollout hasn't finished yet. Once set, the
@@ -263,6 +274,31 @@ public Rollout setCreateTime(String createTime) {
return this;
}
+ /**
+ * Optional. Output only. Output only snapshot of the effective unit filter at Rollout start time.
+ * Contains a CEL(https://github.com/google/cel-spec) expression consisting of a conjunction of
+ * Rollout.unit_filter and RolloutKind.unit_filter. This field captures the filter applied by the
+ * Rollout to determine the Unit population. If the associated RolloutKind's unit_filter is
+ * modified after the rollout is started, it will not be updated here.
+ * @return value or {@code null} for none
+ */
+ public java.lang.String getEffectiveUnitFilter() {
+ return effectiveUnitFilter;
+ }
+
+ /**
+ * Optional. Output only. Output only snapshot of the effective unit filter at Rollout start time.
+ * Contains a CEL(https://github.com/google/cel-spec) expression consisting of a conjunction of
+ * Rollout.unit_filter and RolloutKind.unit_filter. This field captures the filter applied by the
+ * Rollout to determine the Unit population. If the associated RolloutKind's unit_filter is
+ * modified after the rollout is started, it will not be updated here.
+ * @param effectiveUnitFilter effectiveUnitFilter or {@code null} for none
+ */
+ public Rollout setEffectiveUnitFilter(java.lang.String effectiveUnitFilter) {
+ this.effectiveUnitFilter = effectiveUnitFilter;
+ return this;
+ }
+
/**
* Optional. Output only. The time when the rollout finished execution (regardless of success,
* failure, or cancellation). Will be empty if the rollout hasn't finished yet. Once set, the
diff --git a/clients/google-api-services-saasservicemgmt/v1beta1/2.0.0/pom.xml b/clients/google-api-services-saasservicemgmt/v1beta1/2.0.0/pom.xml
index ce775513c7c..c796c4a7417 100644
--- a/clients/google-api-services-saasservicemgmt/v1beta1/2.0.0/pom.xml
+++ b/clients/google-api-services-saasservicemgmt/v1beta1/2.0.0/pom.xml
@@ -8,8 +8,8 @@
com.google.apis
google-api-services-saasservicemgmt
- v1beta1-rev20250917-2.0.0
- SaaS Runtime API v1beta1-rev20250917-2.0.0
+ v1beta1-rev20251103-2.0.0
+ SaaS Runtime API v1beta1-rev20251103-2.0.0
jar
2011
diff --git a/clients/google-api-services-saasservicemgmt/v1beta1/README.md b/clients/google-api-services-saasservicemgmt/v1beta1/README.md
index 49d2d148141..d373cbf6515 100644
--- a/clients/google-api-services-saasservicemgmt/v1beta1/README.md
+++ b/clients/google-api-services-saasservicemgmt/v1beta1/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-saasservicemgmt
- v1beta1-rev20250917-2.0.0
+ v1beta1-rev20251103-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-saasservicemgmt:v1beta1-rev20250917-2.0.0'
+ implementation 'com.google.apis:google-api-services-saasservicemgmt:v1beta1-rev20251103-2.0.0'
}
```