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
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-rev20251207-2.0.0</version>
<version>v1beta1-rev20260128-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-rev20251207-2.0.0'
implementation 'com.google.apis:google-api-services-saasservicemgmt:v1beta1-rev20260128-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,10 @@ public Get 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 @@ -336,7 +339,10 @@ public class List extends SaaSServiceManagementRequest<com.google.api.services.s
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 @@ -56,6 +56,14 @@ public final class Rollout extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private String createTime;

/**
* Output only. The timestamp when the resource was marked for deletion (deletion is an
* asynchronous operation).
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private String deleteTime;

/**
* 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
Expand Down Expand Up @@ -274,6 +282,25 @@ public Rollout setCreateTime(String createTime) {
return this;
}

/**
* Output only. The timestamp when the resource was marked for deletion (deletion is an
* asynchronous operation).
* @return value or {@code null} for none
*/
public String getDeleteTime() {
return deleteTime;
}

/**
* Output only. The timestamp when the resource was marked for deletion (deletion is an
* asynchronous operation).
* @param deleteTime deleteTime or {@code null} for none
*/
public Rollout setDeleteTime(String deleteTime) {
this.deleteTime = deleteTime;
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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@
public final class RolloutStats extends com.google.api.client.json.GenericJson {

/**
* Output only. A breakdown of the progress of operations triggered by the rollout. Provides a
* count of Operations by their state. This can be used to determine the number of units which
* have been updated, or are scheduled to be updated. There will be at most one entry per group.
* Possible values for operation groups are: - "SCHEDULED" - "PENDING" - "RUNNING" - "SUCCEEDED" -
* "FAILED" - "CANCELLED"
* Optional. Output only. Unordered list. A breakdown of the progress of operations triggered by
* the rollout. Provides a count of Operations by their state. This can be used to determine the
* number of units which have been updated, or are scheduled to be updated. There will be at most
* one entry per group. Possible values for operation groups are: - "SCHEDULED" - "PENDING" -
* "RUNNING" - "SUCCEEDED" - "FAILED" - "CANCELLED"
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand All @@ -47,23 +47,23 @@ public final class RolloutStats extends com.google.api.client.json.GenericJson {
}

/**
* Output only. A breakdown of the progress of operations triggered by the rollout. Provides a
* count of Operations by their state. This can be used to determine the number of units which
* have been updated, or are scheduled to be updated. There will be at most one entry per group.
* Possible values for operation groups are: - "SCHEDULED" - "PENDING" - "RUNNING" - "SUCCEEDED" -
* "FAILED" - "CANCELLED"
* Optional. Output only. Unordered list. A breakdown of the progress of operations triggered by
* the rollout. Provides a count of Operations by their state. This can be used to determine the
* number of units which have been updated, or are scheduled to be updated. There will be at most
* one entry per group. Possible values for operation groups are: - "SCHEDULED" - "PENDING" -
* "RUNNING" - "SUCCEEDED" - "FAILED" - "CANCELLED"
* @return value or {@code null} for none
*/
public java.util.List<Aggregate> getOperationsByState() {
return operationsByState;
}

/**
* Output only. A breakdown of the progress of operations triggered by the rollout. Provides a
* count of Operations by their state. This can be used to determine the number of units which
* have been updated, or are scheduled to be updated. There will be at most one entry per group.
* Possible values for operation groups are: - "SCHEDULED" - "PENDING" - "RUNNING" - "SUCCEEDED" -
* "FAILED" - "CANCELLED"
* Optional. Output only. Unordered list. A breakdown of the progress of operations triggered by
* the rollout. Provides a count of Operations by their state. This can be used to determine the
* number of units which have been updated, or are scheduled to be updated. There will be at most
* one entry per group. Possible values for operation groups are: - "SCHEDULED" - "PENDING" -
* "RUNNING" - "SUCCEEDED" - "FAILED" - "CANCELLED"
* @param operationsByState operationsByState or {@code null} for none
*/
public RolloutStats setOperationsByState(java.util.List<Aggregate> operationsByState) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,14 @@ public final class UnitOperation extends com.google.api.client.json.GenericJson
@com.google.api.client.util.Key
private String createTime;

/**
* Output only. The timestamp when the resource was marked for deletion (deletion is an
* asynchronous operation).
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private String deleteTime;

/**
* The value may be {@code null}.
*/
Expand Down Expand Up @@ -261,6 +269,25 @@ public UnitOperation setCreateTime(String createTime) {
return this;
}

/**
* Output only. The timestamp when the resource was marked for deletion (deletion is an
* asynchronous operation).
* @return value or {@code null} for none
*/
public String getDeleteTime() {
return deleteTime;
}

/**
* Output only. The timestamp when the resource was marked for deletion (deletion is an
* asynchronous operation).
* @param deleteTime deleteTime or {@code null} for none
*/
public UnitOperation setDeleteTime(String deleteTime) {
this.deleteTime = deleteTime;
return this;
}

/**
* @return value or {@code null} for none
*/
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-rev20251207-2.0.0</version>
<name>SaaS Runtime API v1beta1-rev20251207-2.0.0</name>
<version>v1beta1-rev20260128-2.0.0</version>
<name>SaaS Runtime API v1beta1-rev20260128-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-rev20251207-2.0.0</version>
<version>v1beta1-rev20260128-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-rev20251207-2.0.0'
implementation 'com.google.apis:google-api-services-saasservicemgmt:v1beta1-rev20260128-2.0.0'
}
```

Expand Down