Skip to content

Commit ca003f6

Browse files
chore: regenerate storagetransfer client
1 parent b022251 commit ca003f6

5 files changed

Lines changed: 51 additions & 12 deletions

File tree

clients/google-api-services-storagetransfer/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-storagetransfer</artifactId>
25-
<version>v1-rev20260109-2.0.0</version>
25+
<version>v1-rev20260619-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-storagetransfer:v1-rev20260109-2.0.0'
38+
implementation 'com.google.apis:google-api-services-storagetransfer:v1-rev20260619-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-storagetransfer/v1/2.0.0/com/google/api/services/storagetransfer/v1/model/ObjectConditions.java

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,18 @@ public final class ObjectConditions extends com.google.api.client.json.GenericJs
7878
@com.google.api.client.util.Key
7979
private java.util.List<java.lang.String> includePrefixes;
8080

81+
/**
82+
* Optional. If specified, objects in the source matching any of the storage classes in this field
83+
* will be transferred. Objects in storage classes not included in this field will be skipped. If
84+
* empty, the default behavior regarding the storage classes is applied. This includes all storage
85+
* classes except "GLACIER" as per default behavior. Currently, this field only supports S3 data
86+
* source. For the list of valid Amazon S3 storage classnames, please refer to the AWS
87+
* documentation: https://docs.aws.amazon.com/AmazonS3/latest/userguide/sc-howtoset.html
88+
* The value may be {@code null}.
89+
*/
90+
@com.google.api.client.util.Key
91+
private java.util.List<java.lang.String> includeStorageClasses;
92+
8193
/**
8294
* If specified, only objects with a "last modification time" before this timestamp and objects
8395
* that don't have a "last modification time" are transferred.
@@ -215,6 +227,33 @@ public ObjectConditions setIncludePrefixes(java.util.List<java.lang.String> incl
215227
return this;
216228
}
217229

230+
/**
231+
* Optional. If specified, objects in the source matching any of the storage classes in this field
232+
* will be transferred. Objects in storage classes not included in this field will be skipped. If
233+
* empty, the default behavior regarding the storage classes is applied. This includes all storage
234+
* classes except "GLACIER" as per default behavior. Currently, this field only supports S3 data
235+
* source. For the list of valid Amazon S3 storage classnames, please refer to the AWS
236+
* documentation: https://docs.aws.amazon.com/AmazonS3/latest/userguide/sc-howtoset.html
237+
* @return value or {@code null} for none
238+
*/
239+
public java.util.List<java.lang.String> getIncludeStorageClasses() {
240+
return includeStorageClasses;
241+
}
242+
243+
/**
244+
* Optional. If specified, objects in the source matching any of the storage classes in this field
245+
* will be transferred. Objects in storage classes not included in this field will be skipped. If
246+
* empty, the default behavior regarding the storage classes is applied. This includes all storage
247+
* classes except "GLACIER" as per default behavior. Currently, this field only supports S3 data
248+
* source. For the list of valid Amazon S3 storage classnames, please refer to the AWS
249+
* documentation: https://docs.aws.amazon.com/AmazonS3/latest/userguide/sc-howtoset.html
250+
* @param includeStorageClasses includeStorageClasses or {@code null} for none
251+
*/
252+
public ObjectConditions setIncludeStorageClasses(java.util.List<java.lang.String> includeStorageClasses) {
253+
this.includeStorageClasses = includeStorageClasses;
254+
return this;
255+
}
256+
218257
/**
219258
* If specified, only objects with a "last modification time" before this timestamp and objects
220259
* that don't have a "last modification time" are transferred.

clients/google-api-services-storagetransfer/v1/2.0.0/com/google/api/services/storagetransfer/v1/model/TransferOptions.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ public final class TransferOptions extends com.google.api.client.json.GenericJso
3838
private java.lang.Boolean deleteObjectsFromSourceAfterTransfer;
3939

4040
/**
41-
* Whether objects that exist only in the sink should be deleted. **Note:** This option and
42-
* delete_objects_from_source_after_transfer are mutually exclusive.
41+
* Whether objects that exist only in the sink should be deleted from the sink. **Note:** This
42+
* option and delete_objects_from_source_after_transfer are mutually exclusive.
4343
* The value may be {@code null}.
4444
*/
4545
@com.google.api.client.util.Key
@@ -89,17 +89,17 @@ public TransferOptions setDeleteObjectsFromSourceAfterTransfer(java.lang.Boolean
8989
}
9090

9191
/**
92-
* Whether objects that exist only in the sink should be deleted. **Note:** This option and
93-
* delete_objects_from_source_after_transfer are mutually exclusive.
92+
* Whether objects that exist only in the sink should be deleted from the sink. **Note:** This
93+
* option and delete_objects_from_source_after_transfer are mutually exclusive.
9494
* @return value or {@code null} for none
9595
*/
9696
public java.lang.Boolean getDeleteObjectsUniqueInSink() {
9797
return deleteObjectsUniqueInSink;
9898
}
9999

100100
/**
101-
* Whether objects that exist only in the sink should be deleted. **Note:** This option and
102-
* delete_objects_from_source_after_transfer are mutually exclusive.
101+
* Whether objects that exist only in the sink should be deleted from the sink. **Note:** This
102+
* option and delete_objects_from_source_after_transfer are mutually exclusive.
103103
* @param deleteObjectsUniqueInSink deleteObjectsUniqueInSink or {@code null} for none
104104
*/
105105
public TransferOptions setDeleteObjectsUniqueInSink(java.lang.Boolean deleteObjectsUniqueInSink) {

clients/google-api-services-storagetransfer/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-storagetransfer</artifactId>
11-
<version>v1-rev20260109-2.0.0</version>
12-
<name>Storage Transfer API v1-rev20260109-2.0.0</name>
11+
<version>v1-rev20260619-2.0.0</version>
12+
<name>Storage Transfer API v1-rev20260619-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-storagetransfer/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-storagetransfer</artifactId>
25-
<version>v1-rev20260109-2.0.0</version>
25+
<version>v1-rev20260619-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-storagetransfer:v1-rev20260109-2.0.0'
38+
implementation 'com.google.apis:google-api-services-storagetransfer:v1-rev20260619-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)