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-storagebatchoperations</artifactId>
<version>v1-rev20251022-2.0.0</version>
<version>v1-rev20251029-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -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'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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}.
Expand Down Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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}.
Expand Down Expand Up @@ -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
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-storagebatchoperations</artifactId>
<version>v1-rev20251022-2.0.0</version>
<name>Storage Batch Operations API v1-rev20251022-2.0.0</name>
<version>v1-rev20251029-2.0.0</version>
<name>Storage Batch Operations API v1-rev20251029-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-storagebatchoperations</artifactId>
<version>v1-rev20251022-2.0.0</version>
<version>v1-rev20251029-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -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'
}
```

Expand Down