Skip to content

Commit 1864b7b

Browse files
1 parent 867b6aa commit 1864b7b

File tree

5 files changed

+110
-17
lines changed

5 files changed

+110
-17
lines changed

clients/google-api-services-storagebatchoperations/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-storagebatchoperations</artifactId>
25-
<version>v1-rev20260218-2.0.0</version>
25+
<version>v1-rev20260325-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-storagebatchoperations:v1-rev20260218-2.0.0'
38+
implementation 'com.google.apis:google-api-services-storagebatchoperations:v1-rev20260325-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-storagebatchoperations/v1/2.0.0/com/google/api/services/storagebatchoperations/v1/StorageBatchOperations.java

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -313,10 +313,14 @@ public Get set(String parameterName, Object value) {
313313
}
314314
}
315315
/**
316-
* Lists information about the supported locations for this service. This method can be called in
317-
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
318-
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
319-
* public locations as well as private or other locations specifically visible to the project.
316+
* Lists information about the supported locations for this service. This method lists locations
317+
* based on the resource scope provided in the [ListLocationsRequest.name] field: * **Global
318+
* locations**: If `name` is empty, the method lists the public locations available to all projects.
319+
* * **Project-specific locations**: If `name` follows the format `projects/{project}`, the method
320+
* lists locations visible to that specific project. This includes public, private, or other
321+
* project-specific locations enabled for the project. For gRPC and client library implementations,
322+
* the resource name is passed as the `name` field. For direct service calls, the resource name is
323+
* incorporated into the request path based on the specific service implementation and version.
320324
*
321325
* Create a request for the method "locations.list".
322326
*
@@ -340,10 +344,15 @@ public class List extends StorageBatchOperationsRequest<com.google.api.services.
340344
java.util.regex.Pattern.compile("^projects/[^/]+$");
341345

342346
/**
343-
* Lists information about the supported locations for this service. This method can be called in
344-
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
345-
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
346-
* public locations as well as private or other locations specifically visible to the project.
347+
* Lists information about the supported locations for this service. This method lists locations
348+
* based on the resource scope provided in the [ListLocationsRequest.name] field: * **Global
349+
* locations**: If `name` is empty, the method lists the public locations available to all
350+
* projects. * **Project-specific locations**: If `name` follows the format `projects/{project}`,
351+
* the method lists locations visible to that specific project. This includes public, private, or
352+
* other project-specific locations enabled for the project. For gRPC and client library
353+
* implementations, the resource name is passed as the `name` field. For direct service calls, the
354+
* resource name is incorporated into the request path based on the specific service
355+
* implementation and version.
347356
*
348357
* Create a request for the method "locations.list".
349358
*

clients/google-api-services-storagebatchoperations/v1/2.0.0/com/google/api/services/storagebatchoperations/v1/model/Counters.java

Lines changed: 87 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,37 @@
3131
public final class Counters extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* Output only. Number of objects failed.
34+
* Output only. The number of objects that failed due to user errors or service errors.
3535
* The value may be {@code null}.
3636
*/
3737
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
3838
private java.lang.Long failedObjectCount;
3939

40+
/**
41+
* Output only. Number of object custom contexts created. This field is only populated for jobs
42+
* with the UpdateObjectCustomContext transformation.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
46+
private java.lang.Long objectCustomContextsCreated;
47+
48+
/**
49+
* Output only. Number of object custom contexts deleted. This field is only populated for jobs
50+
* with the UpdateObjectCustomContext transformation.
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
54+
private java.lang.Long objectCustomContextsDeleted;
55+
56+
/**
57+
* Output only. Number of object custom contexts updated. This counter tracks custom contexts
58+
* where the key already existed, but the payload was modified. This field is only populated for
59+
* jobs with the UpdateObjectCustomContext transformation.
60+
* The value may be {@code null}.
61+
*/
62+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
63+
private java.lang.Long objectCustomContextsUpdated;
64+
4065
/**
4166
* Output only. Number of objects completed.
4267
* The value may be {@code null}.
@@ -60,22 +85,81 @@ public final class Counters extends com.google.api.client.json.GenericJson {
6085
private java.lang.Long totalObjectCount;
6186

6287
/**
63-
* Output only. Number of objects failed.
88+
* Output only. The number of objects that failed due to user errors or service errors.
6489
* @return value or {@code null} for none
6590
*/
6691
public java.lang.Long getFailedObjectCount() {
6792
return failedObjectCount;
6893
}
6994

7095
/**
71-
* Output only. Number of objects failed.
96+
* Output only. The number of objects that failed due to user errors or service errors.
7297
* @param failedObjectCount failedObjectCount or {@code null} for none
7398
*/
7499
public Counters setFailedObjectCount(java.lang.Long failedObjectCount) {
75100
this.failedObjectCount = failedObjectCount;
76101
return this;
77102
}
78103

104+
/**
105+
* Output only. Number of object custom contexts created. This field is only populated for jobs
106+
* with the UpdateObjectCustomContext transformation.
107+
* @return value or {@code null} for none
108+
*/
109+
public java.lang.Long getObjectCustomContextsCreated() {
110+
return objectCustomContextsCreated;
111+
}
112+
113+
/**
114+
* Output only. Number of object custom contexts created. This field is only populated for jobs
115+
* with the UpdateObjectCustomContext transformation.
116+
* @param objectCustomContextsCreated objectCustomContextsCreated or {@code null} for none
117+
*/
118+
public Counters setObjectCustomContextsCreated(java.lang.Long objectCustomContextsCreated) {
119+
this.objectCustomContextsCreated = objectCustomContextsCreated;
120+
return this;
121+
}
122+
123+
/**
124+
* Output only. Number of object custom contexts deleted. This field is only populated for jobs
125+
* with the UpdateObjectCustomContext transformation.
126+
* @return value or {@code null} for none
127+
*/
128+
public java.lang.Long getObjectCustomContextsDeleted() {
129+
return objectCustomContextsDeleted;
130+
}
131+
132+
/**
133+
* Output only. Number of object custom contexts deleted. This field is only populated for jobs
134+
* with the UpdateObjectCustomContext transformation.
135+
* @param objectCustomContextsDeleted objectCustomContextsDeleted or {@code null} for none
136+
*/
137+
public Counters setObjectCustomContextsDeleted(java.lang.Long objectCustomContextsDeleted) {
138+
this.objectCustomContextsDeleted = objectCustomContextsDeleted;
139+
return this;
140+
}
141+
142+
/**
143+
* Output only. Number of object custom contexts updated. This counter tracks custom contexts
144+
* where the key already existed, but the payload was modified. This field is only populated for
145+
* jobs with the UpdateObjectCustomContext transformation.
146+
* @return value or {@code null} for none
147+
*/
148+
public java.lang.Long getObjectCustomContextsUpdated() {
149+
return objectCustomContextsUpdated;
150+
}
151+
152+
/**
153+
* Output only. Number of object custom contexts updated. This counter tracks custom contexts
154+
* where the key already existed, but the payload was modified. This field is only populated for
155+
* jobs with the UpdateObjectCustomContext transformation.
156+
* @param objectCustomContextsUpdated objectCustomContextsUpdated or {@code null} for none
157+
*/
158+
public Counters setObjectCustomContextsUpdated(java.lang.Long objectCustomContextsUpdated) {
159+
this.objectCustomContextsUpdated = objectCustomContextsUpdated;
160+
return this;
161+
}
162+
79163
/**
80164
* Output only. Number of objects completed.
81165
* @return value or {@code null} for none

clients/google-api-services-storagebatchoperations/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-storagebatchoperations</artifactId>
11-
<version>v1-rev20260218-2.0.0</version>
12-
<name>Storage Batch Operations API v1-rev20260218-2.0.0</name>
11+
<version>v1-rev20260325-2.0.0</version>
12+
<name>Storage Batch Operations API v1-rev20260325-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-storagebatchoperations/v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-storagebatchoperations</artifactId>
25-
<version>v1-rev20260218-2.0.0</version>
25+
<version>v1-rev20260325-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-storagebatchoperations:v1-rev20260218-2.0.0'
38+
implementation 'com.google.apis:google-api-services-storagebatchoperations:v1-rev20260325-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)