Skip to content

Commit b6deead

Browse files
1 parent 88e8bfc commit b6deead

File tree

4 files changed

+33
-6
lines changed

4 files changed

+33
-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-rev20250524-2.0.0</version>
25+
<version>v1-rev20250605-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-rev20250524-2.0.0'
38+
implementation 'com.google.apis:google-api-services-storage:v1-rev20250605-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: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1713,6 +1713,14 @@ public UniformBucketLevelAccess clone() {
17131713
*/
17141714
public static final class IpFilter extends com.google.api.client.json.GenericJson {
17151715

1716+
/**
1717+
* Whether to allow all service agents to access the bucket regardless of the IP filter
1718+
* configuration.
1719+
* The value may be {@code null}.
1720+
*/
1721+
@com.google.api.client.util.Key
1722+
private java.lang.Boolean allowAllServiceAgentAccess;
1723+
17161724
/**
17171725
* Whether to allow cross-org VPCs in the bucket's IP filter configuration.
17181726
* The value may be {@code null}.
@@ -1748,6 +1756,25 @@ public static final class IpFilter extends com.google.api.client.json.GenericJso
17481756
com.google.api.client.util.Data.nullOf(VpcNetworkSources.class);
17491757
}
17501758

1759+
/**
1760+
* Whether to allow all service agents to access the bucket regardless of the IP filter
1761+
* configuration.
1762+
* @return value or {@code null} for none
1763+
*/
1764+
public java.lang.Boolean getAllowAllServiceAgentAccess() {
1765+
return allowAllServiceAgentAccess;
1766+
}
1767+
1768+
/**
1769+
* Whether to allow all service agents to access the bucket regardless of the IP filter
1770+
* configuration.
1771+
* @param allowAllServiceAgentAccess allowAllServiceAgentAccess or {@code null} for none
1772+
*/
1773+
public IpFilter setAllowAllServiceAgentAccess(java.lang.Boolean allowAllServiceAgentAccess) {
1774+
this.allowAllServiceAgentAccess = allowAllServiceAgentAccess;
1775+
return this;
1776+
}
1777+
17511778
/**
17521779
* Whether to allow cross-org VPCs in the bucket's IP filter configuration.
17531780
* @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-rev20250524-2.0.0</version>
12-
<name>Cloud Storage JSON API v1-rev20250524-2.0.0</name>
11+
<version>v1-rev20250605-2.0.0</version>
12+
<name>Cloud Storage JSON API v1-rev20250605-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-rev20250524-2.0.0</version>
25+
<version>v1-rev20250605-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-rev20250524-2.0.0'
38+
implementation 'com.google.apis:google-api-services-storage:v1-rev20250605-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)