Skip to content

Commit 0af0326

Browse files
1 parent a12720d commit 0af0326

File tree

4 files changed

+54
-6
lines changed

4 files changed

+54
-6
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-rev20250718-2.0.0</version>
25+
<version>v1-rev20250814-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-rev20250718-2.0.0'
38+
implementation 'com.google.apis:google-api-services-storage:v1-rev20250814-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,20 @@ public final class BulkRestoreObjectsRequest extends com.google.api.client.json.
5050
@com.google.api.client.util.Key
5151
private java.lang.Boolean copySourceAcl;
5252

53+
/**
54+
* Restores only the objects that were created after this time.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private com.google.api.client.util.DateTime createdAfterTime;
59+
60+
/**
61+
* Restores only the objects that were created before this time.
62+
* The value may be {@code null}.
63+
*/
64+
@com.google.api.client.util.Key
65+
private com.google.api.client.util.DateTime createdBeforeTime;
66+
5367
/**
5468
* Restores only the objects matching any of the specified glob(s). If this parameter is not
5569
* specified, all objects will be restored within the specified time range.
@@ -118,6 +132,40 @@ public BulkRestoreObjectsRequest setCopySourceAcl(java.lang.Boolean copySourceAc
118132
return this;
119133
}
120134

135+
/**
136+
* Restores only the objects that were created after this time.
137+
* @return value or {@code null} for none
138+
*/
139+
public com.google.api.client.util.DateTime getCreatedAfterTime() {
140+
return createdAfterTime;
141+
}
142+
143+
/**
144+
* Restores only the objects that were created after this time.
145+
* @param createdAfterTime createdAfterTime or {@code null} for none
146+
*/
147+
public BulkRestoreObjectsRequest setCreatedAfterTime(com.google.api.client.util.DateTime createdAfterTime) {
148+
this.createdAfterTime = createdAfterTime;
149+
return this;
150+
}
151+
152+
/**
153+
* Restores only the objects that were created before this time.
154+
* @return value or {@code null} for none
155+
*/
156+
public com.google.api.client.util.DateTime getCreatedBeforeTime() {
157+
return createdBeforeTime;
158+
}
159+
160+
/**
161+
* Restores only the objects that were created before this time.
162+
* @param createdBeforeTime createdBeforeTime or {@code null} for none
163+
*/
164+
public BulkRestoreObjectsRequest setCreatedBeforeTime(com.google.api.client.util.DateTime createdBeforeTime) {
165+
this.createdBeforeTime = createdBeforeTime;
166+
return this;
167+
}
168+
121169
/**
122170
* Restores only the objects matching any of the specified glob(s). If this parameter is not
123171
* specified, all objects will be restored within the specified time range.

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-rev20250718-2.0.0</version>
12-
<name>Cloud Storage JSON API v1-rev20250718-2.0.0</name>
11+
<version>v1-rev20250814-2.0.0</version>
12+
<name>Cloud Storage JSON API v1-rev20250814-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-rev20250718-2.0.0</version>
25+
<version>v1-rev20250814-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-rev20250718-2.0.0'
38+
implementation 'com.google.apis:google-api-services-storage:v1-rev20250814-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)