From cee8486327c5c901f709b0988a2c9d48866821f9 Mon Sep 17 00:00:00 2001
From: yoshi-code-bot <70984784+yoshi-code-bot@users.noreply.github.com>
Date: Sat, 7 Feb 2026 18:14:16 -0800
Subject: [PATCH] chore: regenerate saasservicemgmt client
---
.../v1beta1/2.0.0/README.md | 4 +--
.../v1beta1/SaaSServiceManagement.java | 10 +++++--
.../v1beta1/model/Rollout.java | 27 +++++++++++++++++
.../v1beta1/model/RolloutStats.java | 30 +++++++++----------
.../v1beta1/model/UnitOperation.java | 27 +++++++++++++++++
.../v1beta1/2.0.0/pom.xml | 4 +--
.../v1beta1/README.md | 4 +--
7 files changed, 83 insertions(+), 23 deletions(-)
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 2652e3d8af5..a2f79d0a4bf 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-rev20251207-2.0.0
+ v1beta1-rev20260128-2.0.0
@@ -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'
}
```
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 045377cf731..6f3bc378a0f 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
@@ -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".
*
@@ -336,7 +339,10 @@ public class List extends SaaSServiceManagementRequest getOperationsByState() {
@@ -59,11 +59,11 @@ public java.util.List getOperationsByState() {
}
/**
- * 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 operationsByState) {
diff --git a/clients/google-api-services-saasservicemgmt/v1beta1/2.0.0/com/google/api/services/saasservicemgmt/v1beta1/model/UnitOperation.java b/clients/google-api-services-saasservicemgmt/v1beta1/2.0.0/com/google/api/services/saasservicemgmt/v1beta1/model/UnitOperation.java
index 81977b09441..6d7db6619b8 100644
--- a/clients/google-api-services-saasservicemgmt/v1beta1/2.0.0/com/google/api/services/saasservicemgmt/v1beta1/model/UnitOperation.java
+++ b/clients/google-api-services-saasservicemgmt/v1beta1/2.0.0/com/google/api/services/saasservicemgmt/v1beta1/model/UnitOperation.java
@@ -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}.
*/
@@ -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
*/
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 f03d0717b88..0e755fd0b13 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-rev20251207-2.0.0
- SaaS Runtime API v1beta1-rev20251207-2.0.0
+ v1beta1-rev20260128-2.0.0
+ SaaS Runtime API v1beta1-rev20260128-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 2652e3d8af5..a2f79d0a4bf 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-rev20251207-2.0.0
+ v1beta1-rev20260128-2.0.0
@@ -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'
}
```