From ecffcaac0bdf912579c8de063581251ad98ec27c Mon Sep 17 00:00:00 2001 From: yoshi-code-bot <70984784+yoshi-code-bot@users.noreply.github.com> Date: Wed, 4 Feb 2026 18:18:34 -0800 Subject: [PATCH] chore: regenerate storage client --- .../v1/2.0.0/README.md | 4 +- .../google/api/services/storage/Storage.java | 46 +++++++++++++++++++ .../storage/model/RelocateBucketRequest.java | 27 +++++++++++ .../v1/2.0.0/pom.xml | 4 +- .../google-api-services-storage/v1/README.md | 4 +- 5 files changed, 79 insertions(+), 6 deletions(-) diff --git a/clients/google-api-services-storage/v1/2.0.0/README.md b/clients/google-api-services-storage/v1/2.0.0/README.md index fead9e7d7f3..1c94bae73e6 100644 --- a/clients/google-api-services-storage/v1/2.0.0/README.md +++ b/clients/google-api-services-storage/v1/2.0.0/README.md @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file: com.google.apis google-api-services-storage - v1-rev20251118-2.0.0 + v1-rev20260131-2.0.0 @@ -35,7 +35,7 @@ repositories { mavenCentral() } dependencies { - implementation 'com.google.apis:google-api-services-storage:v1-rev20251118-2.0.0' + implementation 'com.google.apis:google-api-services-storage:v1-rev20260131-2.0.0' } ``` diff --git a/clients/google-api-services-storage/v1/2.0.0/com/google/api/services/storage/Storage.java b/clients/google-api-services-storage/v1/2.0.0/com/google/api/services/storage/Storage.java index 2ca5e2d61fc..2048f7ac9a6 100644 --- a/clients/google-api-services-storage/v1/2.0.0/com/google/api/services/storage/Storage.java +++ b/clients/google-api-services-storage/v1/2.0.0/com/google/api/services/storage/Storage.java @@ -9179,6 +9179,29 @@ public Compose setDestinationPredefinedAcl(java.lang.String destinationPredefine return this; } + /** + * Specifies which groups of Object Contexts from the source object(s) should be dropped from + * the destination object. + */ + @com.google.api.client.util.Key + private java.util.List dropContextGroups; + + /** Specifies which groups of Object Contexts from the source object(s) should be dropped from the + destination object. + */ + public java.util.List getDropContextGroups() { + return dropContextGroups; + } + + /** + * Specifies which groups of Object Contexts from the source object(s) should be dropped from + * the destination object. + */ + public Compose setDropContextGroups(java.util.List dropContextGroups) { + this.dropContextGroups = dropContextGroups; + return this; + } + /** * Makes the operation conditional on whether the object's current generation matches the * given value. Setting to 0 makes the operation succeed only if there are no live versions of @@ -12716,6 +12739,29 @@ public Rewrite setDestinationPredefinedAcl(java.lang.String destinationPredefine return this; } + /** + * Specifies which groups of Object Contexts from the source object should be dropped from the + * destination object. + */ + @com.google.api.client.util.Key + private java.util.List dropContextGroups; + + /** Specifies which groups of Object Contexts from the source object should be dropped from the + destination object. + */ + public java.util.List getDropContextGroups() { + return dropContextGroups; + } + + /** + * Specifies which groups of Object Contexts from the source object should be dropped from the + * destination object. + */ + public Rewrite setDropContextGroups(java.util.List dropContextGroups) { + this.dropContextGroups = dropContextGroups; + return this; + } + /** * Makes the operation conditional on whether the object's current generation matches the * given value. Setting to 0 makes the operation succeed only if there are no live versions of diff --git a/clients/google-api-services-storage/v1/2.0.0/com/google/api/services/storage/model/RelocateBucketRequest.java b/clients/google-api-services-storage/v1/2.0.0/com/google/api/services/storage/model/RelocateBucketRequest.java index 6864daee556..8bc96833686 100644 --- a/clients/google-api-services-storage/v1/2.0.0/com/google/api/services/storage/model/RelocateBucketRequest.java +++ b/clients/google-api-services-storage/v1/2.0.0/com/google/api/services/storage/model/RelocateBucketRequest.java @@ -37,6 +37,14 @@ public final class RelocateBucketRequest extends com.google.api.client.json.Gene @com.google.api.client.util.Key private DestinationCustomPlacementConfig destinationCustomPlacementConfig; + /** + * Resource name of a Cloud KMS key, of the form projects/my-project/locations/global/keyRings/my- + * kr/cryptoKeys/my-key. If set, is used to encrypt all objects in the destination bucket. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.String destinationKmsKeyName; + /** * The new location the bucket will be relocated to. * The value may be {@code null}. @@ -68,6 +76,25 @@ public RelocateBucketRequest setDestinationCustomPlacementConfig(DestinationCust return this; } + /** + * Resource name of a Cloud KMS key, of the form projects/my-project/locations/global/keyRings/my- + * kr/cryptoKeys/my-key. If set, is used to encrypt all objects in the destination bucket. + * @return value or {@code null} for none + */ + public java.lang.String getDestinationKmsKeyName() { + return destinationKmsKeyName; + } + + /** + * Resource name of a Cloud KMS key, of the form projects/my-project/locations/global/keyRings/my- + * kr/cryptoKeys/my-key. If set, is used to encrypt all objects in the destination bucket. + * @param destinationKmsKeyName destinationKmsKeyName or {@code null} for none + */ + public RelocateBucketRequest setDestinationKmsKeyName(java.lang.String destinationKmsKeyName) { + this.destinationKmsKeyName = destinationKmsKeyName; + return this; + } + /** * The new location the bucket will be relocated to. * @return value or {@code null} for none diff --git a/clients/google-api-services-storage/v1/2.0.0/pom.xml b/clients/google-api-services-storage/v1/2.0.0/pom.xml index 1fb9a00e41d..618c8654111 100644 --- a/clients/google-api-services-storage/v1/2.0.0/pom.xml +++ b/clients/google-api-services-storage/v1/2.0.0/pom.xml @@ -8,8 +8,8 @@ com.google.apis google-api-services-storage - v1-rev20251118-2.0.0 - Cloud Storage JSON API v1-rev20251118-2.0.0 + v1-rev20260131-2.0.0 + Cloud Storage JSON API v1-rev20260131-2.0.0 jar 2011 diff --git a/clients/google-api-services-storage/v1/README.md b/clients/google-api-services-storage/v1/README.md index fead9e7d7f3..1c94bae73e6 100644 --- a/clients/google-api-services-storage/v1/README.md +++ b/clients/google-api-services-storage/v1/README.md @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file: com.google.apis google-api-services-storage - v1-rev20251118-2.0.0 + v1-rev20260131-2.0.0 @@ -35,7 +35,7 @@ repositories { mavenCentral() } dependencies { - implementation 'com.google.apis:google-api-services-storage:v1-rev20251118-2.0.0' + implementation 'com.google.apis:google-api-services-storage:v1-rev20260131-2.0.0' } ```