From 795e19090714fdf7289dcef2519161b15ce6b47d Mon Sep 17 00:00:00 2001
From: yoshi-code-bot <70984784+yoshi-code-bot@users.noreply.github.com>
Date: Wed, 5 Nov 2025 19:08:25 -0800
Subject: [PATCH] chore: regenerate storagebatchoperations client
---
.../v1/2.0.0/README.md | 4 +--
.../v1/model/Counters.java | 27 +++++++++++++++++
.../storagebatchoperations/v1/model/Job.java | 30 +++++++++++++++++++
.../v1/2.0.0/pom.xml | 4 +--
.../v1/README.md | 4 +--
5 files changed, 63 insertions(+), 6 deletions(-)
diff --git a/clients/google-api-services-storagebatchoperations/v1/2.0.0/README.md b/clients/google-api-services-storagebatchoperations/v1/2.0.0/README.md
index 71a1af6a429..9b139471d7f 100644
--- a/clients/google-api-services-storagebatchoperations/v1/2.0.0/README.md
+++ b/clients/google-api-services-storagebatchoperations/v1/2.0.0/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-storagebatchoperations
- v1-rev20251022-2.0.0
+ v1-rev20251029-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-storagebatchoperations:v1-rev20251022-2.0.0'
+ implementation 'com.google.apis:google-api-services-storagebatchoperations:v1-rev20251029-2.0.0'
}
```
diff --git a/clients/google-api-services-storagebatchoperations/v1/2.0.0/com/google/api/services/storagebatchoperations/v1/model/Counters.java b/clients/google-api-services-storagebatchoperations/v1/2.0.0/com/google/api/services/storagebatchoperations/v1/model/Counters.java
index b9b53321e8e..c9d8b2a2de2 100644
--- a/clients/google-api-services-storagebatchoperations/v1/2.0.0/com/google/api/services/storagebatchoperations/v1/model/Counters.java
+++ b/clients/google-api-services-storagebatchoperations/v1/2.0.0/com/google/api/services/storagebatchoperations/v1/model/Counters.java
@@ -44,6 +44,14 @@ public final class Counters extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long succeededObjectCount;
+ /**
+ * Output only. Number of bytes found from source. This field is only populated for jobs with a
+ * prefix list object configuration.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key @com.google.api.client.json.JsonString
+ private java.lang.Long totalBytesFound;
+
/**
* Output only. Number of objects listed.
* The value may be {@code null}.
@@ -85,6 +93,25 @@ public Counters setSucceededObjectCount(java.lang.Long succeededObjectCount) {
return this;
}
+ /**
+ * Output only. Number of bytes found from source. This field is only populated for jobs with a
+ * prefix list object configuration.
+ * @return value or {@code null} for none
+ */
+ public java.lang.Long getTotalBytesFound() {
+ return totalBytesFound;
+ }
+
+ /**
+ * Output only. Number of bytes found from source. This field is only populated for jobs with a
+ * prefix list object configuration.
+ * @param totalBytesFound totalBytesFound or {@code null} for none
+ */
+ public Counters setTotalBytesFound(java.lang.Long totalBytesFound) {
+ this.totalBytesFound = totalBytesFound;
+ return this;
+ }
+
/**
* Output only. Number of objects listed.
* @return value or {@code null} for none
diff --git a/clients/google-api-services-storagebatchoperations/v1/2.0.0/com/google/api/services/storagebatchoperations/v1/model/Job.java b/clients/google-api-services-storagebatchoperations/v1/2.0.0/com/google/api/services/storagebatchoperations/v1/model/Job.java
index b55d6231b18..0e191148249 100644
--- a/clients/google-api-services-storagebatchoperations/v1/2.0.0/com/google/api/services/storagebatchoperations/v1/model/Job.java
+++ b/clients/google-api-services-storagebatchoperations/v1/2.0.0/com/google/api/services/storagebatchoperations/v1/model/Job.java
@@ -73,6 +73,15 @@ public final class Job extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private java.lang.String description;
+ /**
+ * Optional. If true, the job will run in dry run mode, returning the total object count and, if
+ * the object configuration is a prefix list, the bytes found from source. No transformations will
+ * be performed.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private java.lang.Boolean dryRun;
+
/**
* Output only. Summarizes errors encountered with sample error log entries.
* The value may be {@code null}.
@@ -244,6 +253,27 @@ public Job setDescription(java.lang.String description) {
return this;
}
+ /**
+ * Optional. If true, the job will run in dry run mode, returning the total object count and, if
+ * the object configuration is a prefix list, the bytes found from source. No transformations will
+ * be performed.
+ * @return value or {@code null} for none
+ */
+ public java.lang.Boolean getDryRun() {
+ return dryRun;
+ }
+
+ /**
+ * Optional. If true, the job will run in dry run mode, returning the total object count and, if
+ * the object configuration is a prefix list, the bytes found from source. No transformations will
+ * be performed.
+ * @param dryRun dryRun or {@code null} for none
+ */
+ public Job setDryRun(java.lang.Boolean dryRun) {
+ this.dryRun = dryRun;
+ return this;
+ }
+
/**
* Output only. Summarizes errors encountered with sample error log entries.
* @return value or {@code null} for none
diff --git a/clients/google-api-services-storagebatchoperations/v1/2.0.0/pom.xml b/clients/google-api-services-storagebatchoperations/v1/2.0.0/pom.xml
index aeb63f7a331..01e45ed4cc6 100644
--- a/clients/google-api-services-storagebatchoperations/v1/2.0.0/pom.xml
+++ b/clients/google-api-services-storagebatchoperations/v1/2.0.0/pom.xml
@@ -8,8 +8,8 @@
com.google.apis
google-api-services-storagebatchoperations
- v1-rev20251022-2.0.0
- Storage Batch Operations API v1-rev20251022-2.0.0
+ v1-rev20251029-2.0.0
+ Storage Batch Operations API v1-rev20251029-2.0.0
jar
2011
diff --git a/clients/google-api-services-storagebatchoperations/v1/README.md b/clients/google-api-services-storagebatchoperations/v1/README.md
index 71a1af6a429..9b139471d7f 100644
--- a/clients/google-api-services-storagebatchoperations/v1/README.md
+++ b/clients/google-api-services-storagebatchoperations/v1/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-storagebatchoperations
- v1-rev20251022-2.0.0
+ v1-rev20251029-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-storagebatchoperations:v1-rev20251022-2.0.0'
+ implementation 'com.google.apis:google-api-services-storagebatchoperations:v1-rev20251029-2.0.0'
}
```