Skip to content
Merged
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
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-saasservicemgmt</artifactId>
<version>v1beta1-rev20250917-2.0.0</version>
<version>v1beta1-rev20251103-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -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'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<java.lang.String> 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<java.lang.String> 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<java.lang.String> extraLocationTypes) {
this.extraLocationTypes = extraLocationTypes;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
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-saasservicemgmt</artifactId>
<version>v1beta1-rev20250917-2.0.0</version>
<name>SaaS Runtime API v1beta1-rev20250917-2.0.0</name>
<version>v1beta1-rev20251103-2.0.0</version>
<name>SaaS Runtime API v1beta1-rev20251103-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
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-saasservicemgmt</artifactId>
<version>v1beta1-rev20250917-2.0.0</version>
<version>v1beta1-rev20251103-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -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'
}
```

Expand Down