Skip to content

Commit c81a051

Browse files
1 parent c673ff2 commit c81a051

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

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

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,13 @@ public final class Bucket extends com.google.api.client.json.GenericJson {
115115
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
116116
private java.lang.Long generation;
117117

118+
/**
119+
* The hard delete time of the bucket in RFC 3339 format.
120+
* The value may be {@code null}.
121+
*/
122+
@com.google.api.client.util.Key
123+
private com.google.api.client.util.DateTime hardDeleteTime;
124+
118125
/**
119126
* The bucket's hierarchical namespace configuration.
120127
* The value may be {@code null}.
@@ -276,6 +283,13 @@ public final class Bucket extends com.google.api.client.json.GenericJson {
276283
@com.google.api.client.util.Key
277284
private SoftDeletePolicy softDeletePolicy;
278285

286+
/**
287+
* The soft delete time of the bucket in RFC 3339 format.
288+
* The value may be {@code null}.
289+
*/
290+
@com.google.api.client.util.Key
291+
private com.google.api.client.util.DateTime softDeleteTime;
292+
279293
/**
280294
* The bucket's default storage class, used whenever no storageClass is specified for a newly-
281295
* created object. This defines how objects in the bucket are stored and determines the SLA and
@@ -506,6 +520,23 @@ public Bucket setGeneration(java.lang.Long generation) {
506520
return this;
507521
}
508522

523+
/**
524+
* The hard delete time of the bucket in RFC 3339 format.
525+
* @return value or {@code null} for none
526+
*/
527+
public com.google.api.client.util.DateTime getHardDeleteTime() {
528+
return hardDeleteTime;
529+
}
530+
531+
/**
532+
* The hard delete time of the bucket in RFC 3339 format.
533+
* @param hardDeleteTime hardDeleteTime or {@code null} for none
534+
*/
535+
public Bucket setHardDeleteTime(com.google.api.client.util.DateTime hardDeleteTime) {
536+
this.hardDeleteTime = hardDeleteTime;
537+
return this;
538+
}
539+
509540
/**
510541
* The bucket's hierarchical namespace configuration.
511542
* @return value or {@code null} for none
@@ -891,6 +922,23 @@ public Bucket setSoftDeletePolicy(SoftDeletePolicy softDeletePolicy) {
891922
return this;
892923
}
893924

925+
/**
926+
* The soft delete time of the bucket in RFC 3339 format.
927+
* @return value or {@code null} for none
928+
*/
929+
public com.google.api.client.util.DateTime getSoftDeleteTime() {
930+
return softDeleteTime;
931+
}
932+
933+
/**
934+
* The soft delete time of the bucket in RFC 3339 format.
935+
* @param softDeleteTime softDeleteTime or {@code null} for none
936+
*/
937+
public Bucket setSoftDeleteTime(com.google.api.client.util.DateTime softDeleteTime) {
938+
this.softDeleteTime = softDeleteTime;
939+
return this;
940+
}
941+
894942
/**
895943
* The bucket's default storage class, used whenever no storageClass is specified for a newly-
896944
* created object. This defines how objects in the bucket are stored and determines the SLA and

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

0 commit comments

Comments
 (0)