Skip to content

Commit 34a0c9c

Browse files
1 parent 2743a90 commit 34a0c9c

File tree

5 files changed

+32
-8
lines changed

5 files changed

+32
-8
lines changed

clients/google-api-services-storage/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-storage</artifactId>
25-
<version>v1-rev20260204-2.0.0</version>
25+
<version>v1-rev20260408-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-storage:v1-rev20260204-2.0.0'
38+
implementation 'com.google.apis:google-api-services-storage:v1-rev20260408-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-storage/v1/2.0.0/com/google/api/services/storage/Storage.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -891,7 +891,7 @@ public Resume set(String parameterName, Object value) {
891891
}
892892
}
893893
/**
894-
* Updates the config(ttl and admissionPolicy) of an Anywhere Cache instance.
894+
* Updates the config of an Anywhere Cache instance.
895895
*
896896
* Create a request for the method "anywhereCaches.update".
897897
*
@@ -914,7 +914,7 @@ public class Update extends StorageRequest<com.google.api.services.storage.model
914914
private static final String REST_PATH = "b/{bucket}/anywhereCaches/{anywhereCacheId}";
915915

916916
/**
917-
* Updates the config(ttl and admissionPolicy) of an Anywhere Cache instance.
917+
* Updates the config of an Anywhere Cache instance.
918918
*
919919
* Create a request for the method "anywhereCaches.update".
920920
*

clients/google-api-services-storage/v1/2.0.0/com/google/api/services/storage/model/AnywhereCache.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,13 @@ public final class AnywhereCache extends com.google.api.client.json.GenericJson
6565
@com.google.api.client.util.Key
6666
private java.lang.String id;
6767

68+
/**
69+
* Specifies whether objects are ingested into the cache upon write.
70+
* The value may be {@code null}.
71+
*/
72+
@com.google.api.client.util.Key
73+
private java.lang.Boolean ingestOnWrite;
74+
6875
/**
6976
* The kind of item this is. For Anywhere Cache, this is always storage#anywhereCache.
7077
* The value may be {@code null}.
@@ -199,6 +206,23 @@ public AnywhereCache setId(java.lang.String id) {
199206
return this;
200207
}
201208

209+
/**
210+
* Specifies whether objects are ingested into the cache upon write.
211+
* @return value or {@code null} for none
212+
*/
213+
public java.lang.Boolean getIngestOnWrite() {
214+
return ingestOnWrite;
215+
}
216+
217+
/**
218+
* Specifies whether objects are ingested into the cache upon write.
219+
* @param ingestOnWrite ingestOnWrite or {@code null} for none
220+
*/
221+
public AnywhereCache setIngestOnWrite(java.lang.Boolean ingestOnWrite) {
222+
this.ingestOnWrite = ingestOnWrite;
223+
return this;
224+
}
225+
202226
/**
203227
* The kind of item this is. For Anywhere Cache, this is always storage#anywhereCache.
204228
* @return value or {@code null} for none

clients/google-api-services-storage/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-storage</artifactId>
11-
<version>v1-rev20260204-2.0.0</version>
12-
<name>Cloud Storage JSON API v1-rev20260204-2.0.0</name>
11+
<version>v1-rev20260408-2.0.0</version>
12+
<name>Cloud Storage JSON API v1-rev20260408-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-storage/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-storage</artifactId>
25-
<version>v1-rev20260204-2.0.0</version>
25+
<version>v1-rev20260408-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-storage:v1-rev20260204-2.0.0'
38+
implementation 'com.google.apis:google-api-services-storage:v1-rev20260408-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)