Skip to content

Commit 3e6843f

Browse files
chore: regenerate storage client
1 parent 5ec85f7 commit 3e6843f

File tree

5 files changed

+79
-6
lines changed

5 files changed

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

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

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9179,6 +9179,29 @@ public Compose setDestinationPredefinedAcl(java.lang.String destinationPredefine
91799179
return this;
91809180
}
91819181

9182+
/**
9183+
* Specifies which groups of Object Contexts from the source object(s) should be dropped from
9184+
* the destination object.
9185+
*/
9186+
@com.google.api.client.util.Key
9187+
private java.util.List<java.lang.String> dropContextGroups;
9188+
9189+
/** Specifies which groups of Object Contexts from the source object(s) should be dropped from the
9190+
destination object.
9191+
*/
9192+
public java.util.List<java.lang.String> getDropContextGroups() {
9193+
return dropContextGroups;
9194+
}
9195+
9196+
/**
9197+
* Specifies which groups of Object Contexts from the source object(s) should be dropped from
9198+
* the destination object.
9199+
*/
9200+
public Compose setDropContextGroups(java.util.List<java.lang.String> dropContextGroups) {
9201+
this.dropContextGroups = dropContextGroups;
9202+
return this;
9203+
}
9204+
91829205
/**
91839206
* Makes the operation conditional on whether the object's current generation matches the
91849207
* 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
1271612739
return this;
1271712740
}
1271812741

12742+
/**
12743+
* Specifies which groups of Object Contexts from the source object should be dropped from the
12744+
* destination object.
12745+
*/
12746+
@com.google.api.client.util.Key
12747+
private java.util.List<java.lang.String> dropContextGroups;
12748+
12749+
/** Specifies which groups of Object Contexts from the source object should be dropped from the
12750+
destination object.
12751+
*/
12752+
public java.util.List<java.lang.String> getDropContextGroups() {
12753+
return dropContextGroups;
12754+
}
12755+
12756+
/**
12757+
* Specifies which groups of Object Contexts from the source object should be dropped from the
12758+
* destination object.
12759+
*/
12760+
public Rewrite setDropContextGroups(java.util.List<java.lang.String> dropContextGroups) {
12761+
this.dropContextGroups = dropContextGroups;
12762+
return this;
12763+
}
12764+
1271912765
/**
1272012766
* Makes the operation conditional on whether the object's current generation matches the
1272112767
* given value. Setting to 0 makes the operation succeed only if there are no live versions of

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,14 @@ public final class RelocateBucketRequest extends com.google.api.client.json.Gene
3737
@com.google.api.client.util.Key
3838
private DestinationCustomPlacementConfig destinationCustomPlacementConfig;
3939

40+
/**
41+
* Resource name of a Cloud KMS key, of the form projects/my-project/locations/global/keyRings/my-
42+
* kr/cryptoKeys/my-key. If set, is used to encrypt all objects in the destination bucket.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String destinationKmsKeyName;
47+
4048
/**
4149
* The new location the bucket will be relocated to.
4250
* The value may be {@code null}.
@@ -68,6 +76,25 @@ public RelocateBucketRequest setDestinationCustomPlacementConfig(DestinationCust
6876
return this;
6977
}
7078

79+
/**
80+
* Resource name of a Cloud KMS key, of the form projects/my-project/locations/global/keyRings/my-
81+
* kr/cryptoKeys/my-key. If set, is used to encrypt all objects in the destination bucket.
82+
* @return value or {@code null} for none
83+
*/
84+
public java.lang.String getDestinationKmsKeyName() {
85+
return destinationKmsKeyName;
86+
}
87+
88+
/**
89+
* Resource name of a Cloud KMS key, of the form projects/my-project/locations/global/keyRings/my-
90+
* kr/cryptoKeys/my-key. If set, is used to encrypt all objects in the destination bucket.
91+
* @param destinationKmsKeyName destinationKmsKeyName or {@code null} for none
92+
*/
93+
public RelocateBucketRequest setDestinationKmsKeyName(java.lang.String destinationKmsKeyName) {
94+
this.destinationKmsKeyName = destinationKmsKeyName;
95+
return this;
96+
}
97+
7198
/**
7299
* The new location the bucket will be relocated to.
73100
* @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-rev20251118-2.0.0</version>
12-
<name>Cloud Storage JSON API v1-rev20251118-2.0.0</name>
11+
<version>v1-rev20260131-2.0.0</version>
12+
<name>Cloud Storage JSON API v1-rev20260131-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-rev20251118-2.0.0</version>
25+
<version>v1-rev20260131-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-rev20251118-2.0.0'
38+
implementation 'com.google.apis:google-api-services-storage:v1-rev20260131-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)