Skip to content

Commit 2528fcd

Browse files
1 parent b991eee commit 2528fcd

File tree

4 files changed

+42
-6
lines changed

4 files changed

+42
-6
lines changed

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

clients/google-api-services-accesscontextmanager/v1/2.0.0/com/google/api/services/accesscontextmanager/v1/model/EgressSource.java

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,17 @@ public final class EgressSource extends com.google.api.client.json.GenericJson {
4444
@com.google.api.client.util.Key
4545
private java.lang.String accessLevel;
4646

47+
/**
48+
* A Google Cloud resource that you want to allow to egress the perimeter. These resources can
49+
* access data outside the perimeter. This field only supports projects. The project format is
50+
* `projects/{project_number}`. The resource can be in any Google Cloud organization, not just the
51+
* organization where the perimeter is defined. You can't use `*` in this field to allow all
52+
* Google Cloud resources.
53+
* The value may be {@code null}.
54+
*/
55+
@com.google.api.client.util.Key
56+
private java.lang.String resource;
57+
4758
/**
4859
* An AccessLevel resource name that allows protected resources inside the ServicePerimeters to
4960
* access outside the ServicePerimeter boundaries. AccessLevels listed must be in the same policy
@@ -73,6 +84,31 @@ public EgressSource setAccessLevel(java.lang.String accessLevel) {
7384
return this;
7485
}
7586

87+
/**
88+
* A Google Cloud resource that you want to allow to egress the perimeter. These resources can
89+
* access data outside the perimeter. This field only supports projects. The project format is
90+
* `projects/{project_number}`. The resource can be in any Google Cloud organization, not just the
91+
* organization where the perimeter is defined. You can't use `*` in this field to allow all
92+
* Google Cloud resources.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.lang.String getResource() {
96+
return resource;
97+
}
98+
99+
/**
100+
* A Google Cloud resource that you want to allow to egress the perimeter. These resources can
101+
* access data outside the perimeter. This field only supports projects. The project format is
102+
* `projects/{project_number}`. The resource can be in any Google Cloud organization, not just the
103+
* organization where the perimeter is defined. You can't use `*` in this field to allow all
104+
* Google Cloud resources.
105+
* @param resource resource or {@code null} for none
106+
*/
107+
public EgressSource setResource(java.lang.String resource) {
108+
this.resource = resource;
109+
return this;
110+
}
111+
76112
@Override
77113
public EgressSource set(String fieldName, Object value) {
78114
return (EgressSource) super.set(fieldName, value);

clients/google-api-services-accesscontextmanager/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-accesscontextmanager</artifactId>
11-
<version>v1-rev20241216-2.0.0</version>
12-
<name>Access Context Manager API v1-rev20241216-2.0.0</name>
11+
<version>v1-rev20250115-2.0.0</version>
12+
<name>Access Context Manager API v1-rev20250115-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)