Skip to content

Commit 2d959cd

Browse files
1 parent 60b9693 commit 2d959cd

File tree

7 files changed

+27
-30
lines changed

7 files changed

+27
-30
lines changed

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

clients/google-api-services-iam/v1/2.0.0/com/google/api/services/iam/v1/model/WorkforcePool.java

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public final class WorkforcePool extends com.google.api.client.json.GenericJson
4141
private AccessRestrictions accessRestrictions;
4242

4343
/**
44-
* Optional. A user-specified description of the pool. Cannot exceed 256 characters.
44+
* Optional. A description of the pool. Cannot exceed 256 characters.
4545
* The value may be {@code null}.
4646
*/
4747
@com.google.api.client.util.Key
@@ -57,8 +57,7 @@ public final class WorkforcePool extends com.google.api.client.json.GenericJson
5757
private java.lang.Boolean disabled;
5858

5959
/**
60-
* Optional. A user-specified display name of the pool in Google Cloud Console. Cannot exceed 32
61-
* characters.
60+
* Optional. A display name for the pool. Cannot exceed 32 characters.
6261
* The value may be {@code null}.
6362
*/
6463
@com.google.api.client.util.Key
@@ -127,15 +126,15 @@ public WorkforcePool setAccessRestrictions(AccessRestrictions accessRestrictions
127126
}
128127

129128
/**
130-
* Optional. A user-specified description of the pool. Cannot exceed 256 characters.
129+
* Optional. A description of the pool. Cannot exceed 256 characters.
131130
* @return value or {@code null} for none
132131
*/
133132
public java.lang.String getDescription() {
134133
return description;
135134
}
136135

137136
/**
138-
* Optional. A user-specified description of the pool. Cannot exceed 256 characters.
137+
* Optional. A description of the pool. Cannot exceed 256 characters.
139138
* @param description description or {@code null} for none
140139
*/
141140
public WorkforcePool setDescription(java.lang.String description) {
@@ -165,17 +164,15 @@ public WorkforcePool setDisabled(java.lang.Boolean disabled) {
165164
}
166165

167166
/**
168-
* Optional. A user-specified display name of the pool in Google Cloud Console. Cannot exceed 32
169-
* characters.
167+
* Optional. A display name for the pool. Cannot exceed 32 characters.
170168
* @return value or {@code null} for none
171169
*/
172170
public java.lang.String getDisplayName() {
173171
return displayName;
174172
}
175173

176174
/**
177-
* Optional. A user-specified display name of the pool in Google Cloud Console. Cannot exceed 32
178-
* characters.
175+
* Optional. A display name for the pool. Cannot exceed 32 characters.
179176
* @param displayName displayName or {@code null} for none
180177
*/
181178
public WorkforcePool setDisplayName(java.lang.String displayName) {

clients/google-api-services-iam/v1/2.0.0/com/google/api/services/iam/v1/model/WorkforcePoolProvider.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public final class WorkforcePoolProvider extends com.google.api.client.json.Gene
8989
private java.util.Map<String, java.lang.String> attributeMapping;
9090

9191
/**
92-
* Optional. A user-specified description of the provider. Cannot exceed 256 characters.
92+
* Optional. A description of the provider. Cannot exceed 256 characters.
9393
* The value may be {@code null}.
9494
*/
9595
@com.google.api.client.util.Key
@@ -113,7 +113,7 @@ public final class WorkforcePoolProvider extends com.google.api.client.json.Gene
113113
private java.lang.Boolean disabled;
114114

115115
/**
116-
* Optional. A user-specified display name for the provider. Cannot exceed 32 characters.
116+
* Optional. A display name for the provider. Cannot exceed 32 characters.
117117
* The value may be {@code null}.
118118
*/
119119
@com.google.api.client.util.Key
@@ -302,15 +302,15 @@ public WorkforcePoolProvider setAttributeMapping(java.util.Map<String, java.lang
302302
}
303303

304304
/**
305-
* Optional. A user-specified description of the provider. Cannot exceed 256 characters.
305+
* Optional. A description of the provider. Cannot exceed 256 characters.
306306
* @return value or {@code null} for none
307307
*/
308308
public java.lang.String getDescription() {
309309
return description;
310310
}
311311

312312
/**
313-
* Optional. A user-specified description of the provider. Cannot exceed 256 characters.
313+
* Optional. A description of the provider. Cannot exceed 256 characters.
314314
* @param description description or {@code null} for none
315315
*/
316316
public WorkforcePoolProvider setDescription(java.lang.String description) {
@@ -359,15 +359,15 @@ public WorkforcePoolProvider setDisabled(java.lang.Boolean disabled) {
359359
}
360360

361361
/**
362-
* Optional. A user-specified display name for the provider. Cannot exceed 32 characters.
362+
* Optional. A display name for the provider. Cannot exceed 32 characters.
363363
* @return value or {@code null} for none
364364
*/
365365
public java.lang.String getDisplayName() {
366366
return displayName;
367367
}
368368

369369
/**
370-
* Optional. A user-specified display name for the provider. Cannot exceed 32 characters.
370+
* Optional. A display name for the provider. Cannot exceed 32 characters.
371371
* @param displayName displayName or {@code null} for none
372372
*/
373373
public WorkforcePoolProvider setDisplayName(java.lang.String displayName) {

clients/google-api-services-iam/v1/2.0.0/com/google/api/services/iam/v1/model/WorkforcePoolProviderScimTenant.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@ public final class WorkforcePoolProviderScimTenant extends com.google.api.client
4949
private java.util.Map<String, java.lang.String> claimMapping;
5050

5151
/**
52-
* Optional. The user-specified description of the scim tenant. Cannot exceed 256 characters.
52+
* Optional. The description of the scim tenant. Cannot exceed 256 characters.
5353
* The value may be {@code null}.
5454
*/
5555
@com.google.api.client.util.Key
5656
private java.lang.String description;
5757

5858
/**
59-
* Optional. The user-specified display name of the scim tenant. Cannot exceed 32 characters.
59+
* Optional. The display name of the scim tenant. Cannot exceed 32 characters.
6060
* The value may be {@code null}.
6161
*/
6262
@com.google.api.client.util.Key
@@ -126,15 +126,15 @@ public WorkforcePoolProviderScimTenant setClaimMapping(java.util.Map<String, jav
126126
}
127127

128128
/**
129-
* Optional. The user-specified description of the scim tenant. Cannot exceed 256 characters.
129+
* Optional. The description of the scim tenant. Cannot exceed 256 characters.
130130
* @return value or {@code null} for none
131131
*/
132132
public java.lang.String getDescription() {
133133
return description;
134134
}
135135

136136
/**
137-
* Optional. The user-specified description of the scim tenant. Cannot exceed 256 characters.
137+
* Optional. The description of the scim tenant. Cannot exceed 256 characters.
138138
* @param description description or {@code null} for none
139139
*/
140140
public WorkforcePoolProviderScimTenant setDescription(java.lang.String description) {
@@ -143,15 +143,15 @@ public WorkforcePoolProviderScimTenant setDescription(java.lang.String descripti
143143
}
144144

145145
/**
146-
* Optional. The user-specified display name of the scim tenant. Cannot exceed 32 characters.
146+
* Optional. The display name of the scim tenant. Cannot exceed 32 characters.
147147
* @return value or {@code null} for none
148148
*/
149149
public java.lang.String getDisplayName() {
150150
return displayName;
151151
}
152152

153153
/**
154-
* Optional. The user-specified display name of the scim tenant. Cannot exceed 32 characters.
154+
* Optional. The display name of the scim tenant. Cannot exceed 32 characters.
155155
* @param displayName displayName or {@code null} for none
156156
*/
157157
public WorkforcePoolProviderScimTenant setDisplayName(java.lang.String displayName) {

clients/google-api-services-iam/v1/2.0.0/com/google/api/services/iam/v1/model/WorkforcePoolProviderScimToken.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
public final class WorkforcePoolProviderScimToken extends com.google.api.client.json.GenericJson {
3333

3434
/**
35-
* Optional. The user-specified display name of the scim token. Cannot exceed 32 characters.
35+
* Optional. The display name of the scim token. Cannot exceed 32 characters.
3636
* The value may be {@code null}.
3737
*/
3838
@com.google.api.client.util.Key
@@ -63,15 +63,15 @@ public final class WorkforcePoolProviderScimToken extends com.google.api.client.
6363
private java.lang.String state;
6464

6565
/**
66-
* Optional. The user-specified display name of the scim token. Cannot exceed 32 characters.
66+
* Optional. The display name of the scim token. Cannot exceed 32 characters.
6767
* @return value or {@code null} for none
6868
*/
6969
public java.lang.String getDisplayName() {
7070
return displayName;
7171
}
7272

7373
/**
74-
* Optional. The user-specified display name of the scim token. Cannot exceed 32 characters.
74+
* Optional. The display name of the scim token. Cannot exceed 32 characters.
7575
* @param displayName displayName or {@code null} for none
7676
*/
7777
public WorkforcePoolProviderScimToken setDisplayName(java.lang.String displayName) {

clients/google-api-services-iam/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-iam</artifactId>
11-
<version>v1-rev20250905-2.0.0</version>
12-
<name>Identity and Access Management (IAM) API v1-rev20250905-2.0.0</name>
11+
<version>v1-rev20250919-2.0.0</version>
12+
<name>Identity and Access Management (IAM) API v1-rev20250919-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)