Skip to content

Commit 02e0da0

Browse files
1 parent a32043d commit 02e0da0

File tree

4 files changed

+33
-26
lines changed

4 files changed

+33
-26
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-rev20240923-2.0.0</version>
25+
<version>v1-rev20241014-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-rev20240923-2.0.0'
38+
implementation 'com.google.apis:google-api-services-accesscontextmanager:v1-rev20241014-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: 27 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -5981,33 +5981,40 @@ public Patch setName(java.lang.String name) {
59815981
}
59825982

59835983
/**
5984-
* Optional. This field will be used to control whether or not scoped access settings are
5985-
* appended to the existing list of scoped access settings. If true, the scoped access
5986-
* settings in the request will be appended to the existing list of scoped access settings.
5987-
* If false, the scoped access settings in the request replace the existing list of scoped
5988-
* access settings.
5984+
* Optional. This field controls whether or not certain repeated settings in the update
5985+
* 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, and reauth_settings are not compatible with append
5988+
* functionality, and the request will return an error if append=true when these settings
5989+
* are in the update_mask. The request will also return an error if append=true when
5990+
* "scoped_access_settings" is not set in the update_mask.
59895991
*/
59905992
@com.google.api.client.util.Key
5991-
private java.lang.Boolean appendScopedAccessSettings;
5992-
5993-
/** Optional. This field will be used to control whether or not scoped access settings are appended to
5994-
the existing list of scoped access settings. If true, the scoped access settings in the request
5995-
will be appended to the existing list of scoped access settings. If false, the scoped access
5996-
settings in the request replace the existing list of scoped access settings.
5993+
private java.lang.Boolean append;
5994+
5995+
/** Optional. This field controls whether or not certain repeated settings in the update request
5996+
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, and reauth_settings are not compatible with append functionality, and the
5999+
request will return an error if append=true when these settings are in the update_mask. The request
6000+
will also return an error if append=true when "scoped_access_settings" is not set in the
6001+
update_mask.
59976002
*/
5998-
public java.lang.Boolean getAppendScopedAccessSettings() {
5999-
return appendScopedAccessSettings;
6003+
public java.lang.Boolean getAppend() {
6004+
return append;
60006005
}
60016006

60026007
/**
6003-
* Optional. This field will be used to control whether or not scoped access settings are
6004-
* appended to the existing list of scoped access settings. If true, the scoped access
6005-
* settings in the request will be appended to the existing list of scoped access settings.
6006-
* If false, the scoped access settings in the request replace the existing list of scoped
6007-
* access settings.
6008+
* Optional. This field controls whether or not certain repeated settings in the update
6009+
* 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, and reauth_settings are not compatible with append
6012+
* functionality, and the request will return an error if append=true when these settings
6013+
* are in the update_mask. The request will also return an error if append=true when
6014+
* "scoped_access_settings" is not set in the update_mask.
60086015
*/
6009-
public Patch setAppendScopedAccessSettings(java.lang.Boolean appendScopedAccessSettings) {
6010-
this.appendScopedAccessSettings = appendScopedAccessSettings;
6016+
public Patch setAppend(java.lang.Boolean append) {
6017+
this.append = append;
60116018
return this;
60126019
}
60136020

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-rev20240923-2.0.0</version>
12-
<name>Access Context Manager API v1-rev20240923-2.0.0</name>
11+
<version>v1-rev20241014-2.0.0</version>
12+
<name>Access Context Manager API v1-rev20241014-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-rev20240923-2.0.0</version>
25+
<version>v1-rev20241014-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-rev20240923-2.0.0'
38+
implementation 'com.google.apis:google-api-services-accesscontextmanager:v1-rev20241014-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)