Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions clients/google-api-services-storage/v1/2.0.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-storage</artifactId>
<version>v1-rev20251118-2.0.0</version>
<version>v1-rev20260131-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -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'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<java.lang.String> dropContextGroups;

/** Specifies which groups of Object Contexts from the source object(s) should be dropped from the
destination object.
*/
public java.util.List<java.lang.String> 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<java.lang.String> 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
Expand Down Expand Up @@ -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<java.lang.String> dropContextGroups;

/** Specifies which groups of Object Contexts from the source object should be dropped from the
destination object.
*/
public java.util.List<java.lang.String> 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<java.lang.String> 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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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}.
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-storage/v1/2.0.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-storage</artifactId>
<version>v1-rev20251118-2.0.0</version>
<name>Cloud Storage JSON API v1-rev20251118-2.0.0</name>
<version>v1-rev20260131-2.0.0</version>
<name>Cloud Storage JSON API v1-rev20260131-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-storage/v1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-storage</artifactId>
<version>v1-rev20251118-2.0.0</version>
<version>v1-rev20260131-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -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'
}
```

Expand Down