Skip to content

Commit 4f70b7d

Browse files
1 parent 140095b commit 4f70b7d

File tree

5 files changed

+48
-22
lines changed

5 files changed

+48
-22
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-rev20241022-2.0.0</version>
25+
<version>v1-rev20241028-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-rev20241022-2.0.0'
38+
implementation 'com.google.apis:google-api-services-accesscontextmanager:v1-rev20241028-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5983,22 +5983,23 @@ public Patch setName(java.lang.String name) {
59835983
/**
59845984
* Optional. This field controls whether or not certain repeated settings in the update
59855985
* request overwrite or append to existing settings on the binding. If true, then append.
5986-
* Otherwise overwrite. So far, only scoped_access_settings supports appending. Global
5987-
* access_levels, dry_run_access_levels, reauth_settings, and session_settings are not
5988-
* compatible with append functionality, and the request will return an error if append=true
5989-
* when these settings are in the update_mask. The request will also return an error if
5990-
* append=true when "scoped_access_settings" is not set in the update_mask.
5986+
* Otherwise overwrite. So far, only scoped_access_settings with reauth_settings supports
5987+
* appending. Global access_levels, access_levels in scoped_access_settings,
5988+
* dry_run_access_levels, reauth_settings, and session_settings are not compatible with
5989+
* append functionality, and the request will return an error if append=true when these
5990+
* settings are in the update_mask. The request will also return an error if append=true
5991+
* when "scoped_access_settings" is not set in the update_mask.
59915992
*/
59925993
@com.google.api.client.util.Key
59935994
private java.lang.Boolean append;
59945995

59955996
/** Optional. This field controls whether or not certain repeated settings in the update request
59965997
overwrite or append to existing settings on the binding. If true, then append. Otherwise overwrite.
5997-
So far, only scoped_access_settings supports appending. Global access_levels,
5998-
dry_run_access_levels, reauth_settings, and session_settings are not compatible with append
5999-
functionality, and the request will return an error if append=true when these settings are in the
6000-
update_mask. The request will also return an error if append=true when "scoped_access_settings" is
6001-
not set in the update_mask.
5998+
So far, only scoped_access_settings with reauth_settings supports appending. Global access_levels,
5999+
access_levels in scoped_access_settings, dry_run_access_levels, reauth_settings, and
6000+
session_settings are not compatible with append functionality, and the request will return an error
6001+
if append=true when these settings are in the update_mask. The request will also return an error if
6002+
append=true when "scoped_access_settings" is not set in the update_mask.
60026003
*/
60036004
public java.lang.Boolean getAppend() {
60046005
return append;
@@ -6007,11 +6008,12 @@ public java.lang.Boolean getAppend() {
60076008
/**
60086009
* Optional. This field controls whether or not certain repeated settings in the update
60096010
* request overwrite or append to existing settings on the binding. If true, then append.
6010-
* Otherwise overwrite. So far, only scoped_access_settings supports appending. Global
6011-
* access_levels, dry_run_access_levels, reauth_settings, and session_settings are not
6012-
* compatible with append functionality, and the request will return an error if append=true
6013-
* when these settings are in the update_mask. The request will also return an error if
6014-
* append=true when "scoped_access_settings" is not set in the update_mask.
6011+
* Otherwise overwrite. So far, only scoped_access_settings with reauth_settings supports
6012+
* appending. Global access_levels, access_levels in scoped_access_settings,
6013+
* dry_run_access_levels, reauth_settings, and session_settings are not compatible with
6014+
* append functionality, and the request will return an error if append=true when these
6015+
* settings are in the update_mask. The request will also return an error if append=true
6016+
* when "scoped_access_settings" is not set in the update_mask.
60156017
*/
60166018
public Patch setAppend(java.lang.Boolean append) {
60176019
this.append = append;

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

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
/**
2020
* Restricts access to Cloud Console and Google Cloud APIs for a set of users using Context-Aware
21-
* Access. Next ID: 11
21+
* Access.
2222
*
2323
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2424
* transmitted over HTTP when working with the Access Context Manager API. For a detailed
@@ -100,6 +100,13 @@ public final class GcpUserAccessBinding extends com.google.api.client.json.Gener
100100
@com.google.api.client.util.Key
101101
private java.util.List<ScopedAccessSettings> scopedAccessSettings;
102102

103+
/**
104+
* Optional. GCSL policy for the group key. Migrated from ReauthSettings
105+
* The value may be {@code null}.
106+
*/
107+
@com.google.api.client.util.Key
108+
private SessionSettings sessionSettings;
109+
103110
/**
104111
* Optional. Access level that a user must have to be granted access. Only one access level is
105112
* supported, not multiple. This repeated field must have exactly one element. Example:
@@ -247,6 +254,23 @@ public GcpUserAccessBinding setScopedAccessSettings(java.util.List<ScopedAccessS
247254
return this;
248255
}
249256

257+
/**
258+
* Optional. GCSL policy for the group key. Migrated from ReauthSettings
259+
* @return value or {@code null} for none
260+
*/
261+
public SessionSettings getSessionSettings() {
262+
return sessionSettings;
263+
}
264+
265+
/**
266+
* Optional. GCSL policy for the group key. Migrated from ReauthSettings
267+
* @param sessionSettings sessionSettings or {@code null} for none
268+
*/
269+
public GcpUserAccessBinding setSessionSettings(SessionSettings sessionSettings) {
270+
this.sessionSettings = sessionSettings;
271+
return this;
272+
}
273+
250274
@Override
251275
public GcpUserAccessBinding set(String fieldName, Object value) {
252276
return (GcpUserAccessBinding) 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-rev20241022-2.0.0</version>
12-
<name>Access Context Manager API v1-rev20241022-2.0.0</name>
11+
<version>v1-rev20241028-2.0.0</version>
12+
<name>Access Context Manager API v1-rev20241028-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-rev20241022-2.0.0</version>
25+
<version>v1-rev20241028-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-rev20241022-2.0.0'
38+
implementation 'com.google.apis:google-api-services-accesscontextmanager:v1-rev20241028-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)