Skip to content

Commit 5ecd5c2

Browse files
1 parent 57c0431 commit 5ecd5c2

File tree

4 files changed

+30
-6
lines changed

4 files changed

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

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1713,6 +1713,13 @@ public UniformBucketLevelAccess clone() {
17131713
*/
17141714
public static final class IpFilter extends com.google.api.client.json.GenericJson {
17151715

1716+
/**
1717+
* Whether to allow cross-org VPCs in the bucket's IP filter configuration.
1718+
* The value may be {@code null}.
1719+
*/
1720+
@com.google.api.client.util.Key
1721+
private java.lang.Boolean allowCrossOrgVpcs;
1722+
17161723
/**
17171724
* The mode of the IP filter. Valid values are 'Enabled' and 'Disabled'.
17181725
* The value may be {@code null}.
@@ -1741,6 +1748,23 @@ public static final class IpFilter extends com.google.api.client.json.GenericJso
17411748
com.google.api.client.util.Data.nullOf(VpcNetworkSources.class);
17421749
}
17431750

1751+
/**
1752+
* Whether to allow cross-org VPCs in the bucket's IP filter configuration.
1753+
* @return value or {@code null} for none
1754+
*/
1755+
public java.lang.Boolean getAllowCrossOrgVpcs() {
1756+
return allowCrossOrgVpcs;
1757+
}
1758+
1759+
/**
1760+
* Whether to allow cross-org VPCs in the bucket's IP filter configuration.
1761+
* @param allowCrossOrgVpcs allowCrossOrgVpcs or {@code null} for none
1762+
*/
1763+
public IpFilter setAllowCrossOrgVpcs(java.lang.Boolean allowCrossOrgVpcs) {
1764+
this.allowCrossOrgVpcs = allowCrossOrgVpcs;
1765+
return this;
1766+
}
1767+
17441768
/**
17451769
* The mode of the IP filter. Valid values are 'Enabled' and 'Disabled'.
17461770
* @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-rev20250509-2.0.0</version>
12-
<name>Cloud Storage JSON API v1-rev20250509-2.0.0</name>
11+
<version>v1-rev20250521-2.0.0</version>
12+
<name>Cloud Storage JSON API v1-rev20250521-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-rev20250509-2.0.0</version>
25+
<version>v1-rev20250521-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-rev20250509-2.0.0'
38+
implementation 'com.google.apis:google-api-services-storage:v1-rev20250521-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)