Skip to content

Commit 91a4679

Browse files
1 parent a15cdff commit 91a4679

File tree

6 files changed

+68
-42
lines changed

6 files changed

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

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

Lines changed: 25 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11184,21 +11184,23 @@ public List setUserProject(java.lang.String userProject) {
1118411184

1118511185
/**
1118611186
* If true, lists all versions of an object as distinct results. The default is false. For
11187-
* more information, see Object Versioning.
11187+
* more information, see [Object Versioning](https://cloud.google.com/storage/docs/object-
11188+
* versioning).
1118811189
*/
1118911190
@com.google.api.client.util.Key
1119011191
private java.lang.Boolean versions;
1119111192

1119211193
/** If true, lists all versions of an object as distinct results. The default is false. For more
11193-
information, see Object Versioning.
11194+
information, see [Object Versioning](https://cloud.google.com/storage/docs/object-versioning).
1119411195
*/
1119511196
public java.lang.Boolean getVersions() {
1119611197
return versions;
1119711198
}
1119811199

1119911200
/**
1120011201
* If true, lists all versions of an object as distinct results. The default is false. For
11201-
* more information, see Object Versioning.
11202+
* more information, see [Object Versioning](https://cloud.google.com/storage/docs/object-
11203+
* versioning).
1120211204
*/
1120311205
public List setVersions(java.lang.Boolean versions) {
1120411206
this.versions = versions;
@@ -11545,7 +11547,8 @@ public Patch set(String parameterName, Object value) {
1154511547
*
1154611548
* @param bucket Name of the bucket in which the object resides.
1154711549
* @param object__ Name of the object. For information about how to URL encode object names to be path safe, see
11548-
* Encoding URI Path Parts.
11550+
* [Encoding URI Path Parts](https://cloud.google.com/storage/docs/request-
11551+
* endpoints#encoding).
1154911552
* @param generation Selects a specific revision of this object.
1155011553
* @return the request
1155111554
*/
@@ -11572,7 +11575,8 @@ public class Restore extends StorageRequest<com.google.api.services.storage.mode
1157211575
*
1157311576
* @param bucket Name of the bucket in which the object resides.
1157411577
* @param object__ Name of the object. For information about how to URL encode object names to be path safe, see
11575-
* Encoding URI Path Parts.
11578+
* [Encoding URI Path Parts](https://cloud.google.com/storage/docs/request-
11579+
* endpoints#encoding).
1157611580
* @param generation Selects a specific revision of this object.
1157711581
* @since 1.13
1157811582
*/
@@ -11641,21 +11645,23 @@ public Restore setBucket(java.lang.String bucket) {
1164111645

1164211646
/**
1164311647
* Name of the object. For information about how to URL encode object names to be path safe,
11644-
* see Encoding URI Path Parts.
11648+
* see [Encoding URI Path Parts](https://cloud.google.com/storage/docs/request-
11649+
* endpoints#encoding).
1164511650
*/
1164611651
@com.google.api.client.util.Key("object")
1164711652
private java.lang.String object__;
1164811653

1164911654
/** Name of the object. For information about how to URL encode object names to be path safe, see
11650-
Encoding URI Path Parts.
11655+
[Encoding URI Path Parts](https://cloud.google.com/storage/docs/request-endpoints#encoding).
1165111656
*/
1165211657
public java.lang.String getObject() {
1165311658
return object__;
1165411659
}
1165511660

1165611661
/**
1165711662
* Name of the object. For information about how to URL encode object names to be path safe,
11658-
* see Encoding URI Path Parts.
11663+
* see [Encoding URI Path Parts](https://cloud.google.com/storage/docs/request-
11664+
* endpoints#encoding).
1165911665
*/
1166011666
public Restore setObject(java.lang.String object__) {
1166111667
this.object__ = object__;
@@ -13390,21 +13396,23 @@ public WatchAll setUserProject(java.lang.String userProject) {
1339013396

1339113397
/**
1339213398
* If true, lists all versions of an object as distinct results. The default is false. For
13393-
* more information, see Object Versioning.
13399+
* more information, see [Object Versioning](https://cloud.google.com/storage/docs/object-
13400+
* versioning).
1339413401
*/
1339513402
@com.google.api.client.util.Key
1339613403
private java.lang.Boolean versions;
1339713404

1339813405
/** If true, lists all versions of an object as distinct results. The default is false. For more
13399-
information, see Object Versioning.
13406+
information, see [Object Versioning](https://cloud.google.com/storage/docs/object-versioning).
1340013407
*/
1340113408
public java.lang.Boolean getVersions() {
1340213409
return versions;
1340313410
}
1340413411

1340513412
/**
1340613413
* If true, lists all versions of an object as distinct results. The default is false. For
13407-
* more information, see Object Versioning.
13414+
* more information, see [Object Versioning](https://cloud.google.com/storage/docs/object-
13415+
* versioning).
1340813416
*/
1340913417
public WatchAll setVersions(java.lang.Boolean versions) {
1341013418
this.versions = versions;
@@ -14538,7 +14546,9 @@ public List set(String parameterName, Object value) {
1453814546
}
1453914547
}
1454014548
/**
14541-
* Updates the state of an HMAC key. See the HMAC Key resource descriptor for valid states.
14549+
* Updates the state of an HMAC key. See the [HMAC Key resource
14550+
* descriptor](https://cloud.google.com/storage/docs/json_api/v1/projects/hmacKeys/update#request-
14551+
* body) for valid states.
1454214552
*
1454314553
* Create a request for the method "hmacKeys.update".
1454414554
*
@@ -14561,7 +14571,9 @@ public class Update extends StorageRequest<com.google.api.services.storage.model
1456114571
private static final String REST_PATH = "projects/{projectId}/hmacKeys/{accessId}";
1456214572

1456314573
/**
14564-
* Updates the state of an HMAC key. See the HMAC Key resource descriptor for valid states.
14574+
* Updates the state of an HMAC key. See the [HMAC Key resource
14575+
* descriptor](https://cloud.google.com/storage/docs/json_api/v1/projects/hmacKeys/update#request-
14576+
* body) for valid states.
1456514577
*
1456614578
* Create a request for the method "hmacKeys.update".
1456714579
*

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

Lines changed: 28 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -160,15 +160,17 @@ public final class Bucket extends com.google.api.client.json.GenericJson {
160160
private java.util.Map<String, java.lang.String> labels;
161161

162162
/**
163-
* The bucket's lifecycle configuration. See lifecycle management for more information.
163+
* The bucket's lifecycle configuration. See [Lifecycle
164+
* Management](https://cloud.google.com/storage/docs/lifecycle) for more information.
164165
* The value may be {@code null}.
165166
*/
166167
@com.google.api.client.util.Key
167168
private Lifecycle lifecycle;
168169

169170
/**
170171
* The location of the bucket. Object data for objects in the bucket resides in physical storage
171-
* within this region. Defaults to US. See the developer's guide for the authoritative list.
172+
* within this region. Defaults to US. See the [Developer's
173+
* Guide](https://cloud.google.com/storage/docs/locations) for the authoritative list.
172174
* The value may be {@code null}.
173175
*/
174176
@com.google.api.client.util.Key
@@ -279,7 +281,8 @@ public final class Bucket extends com.google.api.client.json.GenericJson {
279281
* created object. This defines how objects in the bucket are stored and determines the SLA and
280282
* the cost of storage. Values include MULTI_REGIONAL, REGIONAL, STANDARD, NEARLINE, COLDLINE,
281283
* ARCHIVE, and DURABLE_REDUCED_AVAILABILITY. If this value is not specified when the bucket is
282-
* created, it will default to STANDARD. For more information, see storage classes.
284+
* created, it will default to STANDARD. For more information, see [Storage
285+
* Classes](https://cloud.google.com/storage/docs/storage-classes).
283286
* The value may be {@code null}.
284287
*/
285288
@com.google.api.client.util.Key
@@ -308,7 +311,8 @@ public final class Bucket extends com.google.api.client.json.GenericJson {
308311

309312
/**
310313
* The bucket's website configuration, controlling how the service behaves when accessing bucket
311-
* contents as a web site. See the Static Website Examples for more information.
314+
* contents as a web site. See the [Static Website
315+
* Examples](https://cloud.google.com/storage/docs/static-website) for more information.
312316
* The value may be {@code null}.
313317
*/
314318
@com.google.api.client.util.Key
@@ -609,15 +613,17 @@ public Bucket setLabels(java.util.Map<String, java.lang.String> labels) {
609613
}
610614

611615
/**
612-
* The bucket's lifecycle configuration. See lifecycle management for more information.
616+
* The bucket's lifecycle configuration. See [Lifecycle
617+
* Management](https://cloud.google.com/storage/docs/lifecycle) for more information.
613618
* @return value or {@code null} for none
614619
*/
615620
public Lifecycle getLifecycle() {
616621
return lifecycle;
617622
}
618623

619624
/**
620-
* The bucket's lifecycle configuration. See lifecycle management for more information.
625+
* The bucket's lifecycle configuration. See [Lifecycle
626+
* Management](https://cloud.google.com/storage/docs/lifecycle) for more information.
621627
* @param lifecycle lifecycle or {@code null} for none
622628
*/
623629
public Bucket setLifecycle(Lifecycle lifecycle) {
@@ -627,7 +633,8 @@ public Bucket setLifecycle(Lifecycle lifecycle) {
627633

628634
/**
629635
* The location of the bucket. Object data for objects in the bucket resides in physical storage
630-
* within this region. Defaults to US. See the developer's guide for the authoritative list.
636+
* within this region. Defaults to US. See the [Developer's
637+
* Guide](https://cloud.google.com/storage/docs/locations) for the authoritative list.
631638
* @return value or {@code null} for none
632639
*/
633640
public java.lang.String getLocation() {
@@ -636,7 +643,8 @@ public java.lang.String getLocation() {
636643

637644
/**
638645
* The location of the bucket. Object data for objects in the bucket resides in physical storage
639-
* within this region. Defaults to US. See the developer's guide for the authoritative list.
646+
* within this region. Defaults to US. See the [Developer's
647+
* Guide](https://cloud.google.com/storage/docs/locations) for the authoritative list.
640648
* @param location location or {@code null} for none
641649
*/
642650
public Bucket setLocation(java.lang.String location) {
@@ -888,7 +896,8 @@ public Bucket setSoftDeletePolicy(SoftDeletePolicy softDeletePolicy) {
888896
* created object. This defines how objects in the bucket are stored and determines the SLA and
889897
* the cost of storage. Values include MULTI_REGIONAL, REGIONAL, STANDARD, NEARLINE, COLDLINE,
890898
* ARCHIVE, and DURABLE_REDUCED_AVAILABILITY. If this value is not specified when the bucket is
891-
* created, it will default to STANDARD. For more information, see storage classes.
899+
* created, it will default to STANDARD. For more information, see [Storage
900+
* Classes](https://cloud.google.com/storage/docs/storage-classes).
892901
* @return value or {@code null} for none
893902
*/
894903
public java.lang.String getStorageClass() {
@@ -900,7 +909,8 @@ public java.lang.String getStorageClass() {
900909
* created object. This defines how objects in the bucket are stored and determines the SLA and
901910
* the cost of storage. Values include MULTI_REGIONAL, REGIONAL, STANDARD, NEARLINE, COLDLINE,
902911
* ARCHIVE, and DURABLE_REDUCED_AVAILABILITY. If this value is not specified when the bucket is
903-
* created, it will default to STANDARD. For more information, see storage classes.
912+
* created, it will default to STANDARD. For more information, see [Storage
913+
* Classes](https://cloud.google.com/storage/docs/storage-classes).
904914
* @param storageClass storageClass or {@code null} for none
905915
*/
906916
public Bucket setStorageClass(java.lang.String storageClass) {
@@ -961,7 +971,8 @@ public Bucket setVersioning(Versioning versioning) {
961971

962972
/**
963973
* The bucket's website configuration, controlling how the service behaves when accessing bucket
964-
* contents as a web site. See the Static Website Examples for more information.
974+
* contents as a web site. See the [Static Website
975+
* Examples](https://cloud.google.com/storage/docs/static-website) for more information.
965976
* @return value or {@code null} for none
966977
*/
967978
public Website getWebsite() {
@@ -970,7 +981,8 @@ public Website getWebsite() {
970981

971982
/**
972983
* The bucket's website configuration, controlling how the service behaves when accessing bucket
973-
* contents as a web site. See the Static Website Examples for more information.
984+
* contents as a web site. See the [Static Website
985+
* Examples](https://cloud.google.com/storage/docs/static-website) for more information.
974986
* @param website website or {@code null} for none
975987
*/
976988
public Bucket setWebsite(Website website) {
@@ -1851,7 +1863,8 @@ public VpcNetworkSources clone() {
18511863
}
18521864

18531865
/**
1854-
* The bucket's lifecycle configuration. See lifecycle management for more information.
1866+
* The bucket's lifecycle configuration. See [Lifecycle
1867+
* Management](https://cloud.google.com/storage/docs/lifecycle) for more information.
18551868
*/
18561869
public static final class Lifecycle extends com.google.api.client.json.GenericJson {
18571870

@@ -2783,7 +2796,8 @@ public Versioning clone() {
27832796

27842797
/**
27852798
* The bucket's website configuration, controlling how the service behaves when accessing bucket
2786-
* contents as a web site. See the Static Website Examples for more information.
2799+
* contents as a web site. See the [Static Website
2800+
* Examples](https://cloud.google.com/storage/docs/static-website) for more information.
27872801
*/
27882802
public static final class Website extends com.google.api.client.json.GenericJson {
27892803

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ public final class StorageObject extends com.google.api.client.json.GenericJson
9191

9292
/**
9393
* CRC32c checksum, as described in RFC 4960, Appendix B; encoded using base64 in big-endian byte
94-
* order. For more information about using the CRC32c checksum, see Hashes and ETags: Best
95-
* Practices.
94+
* order. For more information about using the CRC32c checksum, see [Data Validation and Change
95+
* Detection](https://cloud.google.com/storage/docs/data-validation).
9696
* The value may be {@code null}.
9797
*/
9898
@com.google.api.client.util.Key
@@ -173,7 +173,7 @@ public final class StorageObject extends com.google.api.client.json.GenericJson
173173

174174
/**
175175
* MD5 hash of the data; encoded using base64. For more information about using the MD5 hash, see
176-
* Hashes and ETags: Best Practices.
176+
* [Data Validation and Change Detection](https://cloud.google.com/storage/docs/data-validation).
177177
* The value may be {@code null}.
178178
*/
179179
@com.google.api.client.util.Key
@@ -450,8 +450,8 @@ public StorageObject setContentType(java.lang.String contentType) {
450450

451451
/**
452452
* CRC32c checksum, as described in RFC 4960, Appendix B; encoded using base64 in big-endian byte
453-
* order. For more information about using the CRC32c checksum, see Hashes and ETags: Best
454-
* Practices.
453+
* order. For more information about using the CRC32c checksum, see [Data Validation and Change
454+
* Detection](https://cloud.google.com/storage/docs/data-validation).
455455
* @return value or {@code null} for none
456456
*/
457457
public java.lang.String getCrc32c() {
@@ -460,8 +460,8 @@ public java.lang.String getCrc32c() {
460460

461461
/**
462462
* CRC32c checksum, as described in RFC 4960, Appendix B; encoded using base64 in big-endian byte
463-
* order. For more information about using the CRC32c checksum, see Hashes and ETags: Best
464-
* Practices.
463+
* order. For more information about using the CRC32c checksum, see [Data Validation and Change
464+
* Detection](https://cloud.google.com/storage/docs/data-validation).
465465
* @param crc32c crc32c or {@code null} for none
466466
*/
467467
public StorageObject setCrc32c(java.lang.String crc32c) {
@@ -644,7 +644,7 @@ public StorageObject setKmsKeyName(java.lang.String kmsKeyName) {
644644

645645
/**
646646
* MD5 hash of the data; encoded using base64. For more information about using the MD5 hash, see
647-
* Hashes and ETags: Best Practices.
647+
* [Data Validation and Change Detection](https://cloud.google.com/storage/docs/data-validation).
648648
* @return value or {@code null} for none
649649
*/
650650
public java.lang.String getMd5Hash() {
@@ -653,7 +653,7 @@ public java.lang.String getMd5Hash() {
653653

654654
/**
655655
* MD5 hash of the data; encoded using base64. For more information about using the MD5 hash, see
656-
* Hashes and ETags: Best Practices.
656+
* [Data Validation and Change Detection](https://cloud.google.com/storage/docs/data-validation).
657657
* @param md5Hash md5Hash or {@code null} for none
658658
*/
659659
public StorageObject setMd5Hash(java.lang.String md5Hash) {

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

0 commit comments

Comments
 (0)