File tree Expand file tree Collapse file tree 5 files changed +52
-6
lines changed
clients/google-api-services-storage/v1
com/google/api/services/storage Expand file tree Collapse file tree 5 files changed +52
-6
lines changed Original file line number Diff line number Diff 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-storage</artifactId >
25- <version >v1-rev20250814 -2.0.0</version >
25+ <version >v1-rev20250925 -2.0.0</version >
2626 </dependency >
2727 </dependencies >
2828</project >
@@ -35,7 +35,7 @@ repositories {
3535 mavenCentral()
3636}
3737dependencies {
38- implementation 'com.google.apis:google-api-services-storage:v1-rev20250814 -2.0.0'
38+ implementation 'com.google.apis:google-api-services-storage:v1-rev20250925 -2.0.0'
3939}
4040```
4141
Original file line number Diff line number Diff line change @@ -2962,6 +2962,28 @@ public List setProjection(java.lang.String projection) {
29622962 return this;
29632963 }
29642964
2965+ /**
2966+ * If true, return a list of bucket resource names for buckets that are in unreachable
2967+ * locations.
2968+ */
2969+ @com.google.api.client.util.Key
2970+ private java.lang.Boolean returnPartialSuccess;
2971+
2972+ /** If true, return a list of bucket resource names for buckets that are in unreachable locations.
2973+ */
2974+ public java.lang.Boolean getReturnPartialSuccess() {
2975+ return returnPartialSuccess;
2976+ }
2977+
2978+ /**
2979+ * If true, return a list of bucket resource names for buckets that are in unreachable
2980+ * locations.
2981+ */
2982+ public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
2983+ this.returnPartialSuccess = returnPartialSuccess;
2984+ return this;
2985+ }
2986+
29652987 /**
29662988 * If true, only soft-deleted bucket versions will be returned. The default is false. For more
29672989 * information, see [Soft Delete](https://cloud.google.com/storage/docs/soft-delete).
Original file line number Diff line number Diff line change @@ -58,6 +58,13 @@ public final class Buckets extends com.google.api.client.json.GenericJson {
5858 @ com .google .api .client .util .Key
5959 private java .lang .String nextPageToken ;
6060
61+ /**
62+ * The list of bucket resource names that could not be reached during the listing operation.
63+ * The value may be {@code null}.
64+ */
65+ @ com .google .api .client .util .Key
66+ private java .util .List <java .lang .String > unreachable ;
67+
6168 /**
6269 * The list of items.
6370 * @return value or {@code null} for none
@@ -111,6 +118,23 @@ public Buckets setNextPageToken(java.lang.String nextPageToken) {
111118 return this ;
112119 }
113120
121+ /**
122+ * The list of bucket resource names that could not be reached during the listing operation.
123+ * @return value or {@code null} for none
124+ */
125+ public java .util .List <java .lang .String > getUnreachable () {
126+ return unreachable ;
127+ }
128+
129+ /**
130+ * The list of bucket resource names that could not be reached during the listing operation.
131+ * @param unreachable unreachable or {@code null} for none
132+ */
133+ public Buckets setUnreachable (java .util .List <java .lang .String > unreachable ) {
134+ this .unreachable = unreachable ;
135+ return this ;
136+ }
137+
114138 @ Override
115139 public Buckets set (String fieldName , Object value ) {
116140 return (Buckets ) super .set (fieldName , value );
Original file line number Diff line number Diff line change 88
99 <groupId >com.google.apis</groupId >
1010 <artifactId >google-api-services-storage</artifactId >
11- <version >v1-rev20250814 -2.0.0</version >
12- <name >Cloud Storage JSON API v1-rev20250814 -2.0.0</name >
11+ <version >v1-rev20250925 -2.0.0</version >
12+ <name >Cloud Storage JSON API v1-rev20250925 -2.0.0</name >
1313 <packaging >jar</packaging >
1414
1515 <inceptionYear >2011</inceptionYear >
Original file line number Diff line number Diff 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-storage</artifactId >
25- <version >v1-rev20250814 -2.0.0</version >
25+ <version >v1-rev20250925 -2.0.0</version >
2626 </dependency >
2727 </dependencies >
2828</project >
@@ -35,7 +35,7 @@ repositories {
3535 mavenCentral()
3636}
3737dependencies {
38- implementation 'com.google.apis:google-api-services-storage:v1-rev20250814 -2.0.0'
38+ implementation 'com.google.apis:google-api-services-storage:v1-rev20250925 -2.0.0'
3939}
4040```
4141
You can’t perform that action at this time.
0 commit comments