Skip to content

Commit f410f0d

Browse files
1 parent 0df702c commit f410f0d

File tree

7 files changed

+28
-25
lines changed

7 files changed

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

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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1230,7 +1230,7 @@ public List set(String parameterName, Object value) {
12301230
* This request holds the parameters needed by the iam server. After setting any optional
12311231
* parameters, call the {@link Patch#execute()} method to invoke the remote operation.
12321232
*
1233-
* @param name Output only. The resource name of the pool. Format:
1233+
* @param name Identifier. The resource name of the pool. Format:
12341234
* `locations/{location}/workforcePools/{workforce_pool_id}`
12351235
* @param content the {@link com.google.api.services.iam.v1.model.WorkforcePool}
12361236
* @return the request
@@ -1258,7 +1258,7 @@ public class Patch extends IamRequest<com.google.api.services.iam.v1.model.Opera
12581258
* Patch#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)} must
12591259
* be called to initialize this instance immediately after invoking the constructor. </p>
12601260
*
1261-
* @param name Output only. The resource name of the pool. Format:
1261+
* @param name Identifier. The resource name of the pool. Format:
12621262
* `locations/{location}/workforcePools/{workforce_pool_id}`
12631263
* @param content the {@link com.google.api.services.iam.v1.model.WorkforcePool}
12641264
* @since 1.13
@@ -1329,21 +1329,21 @@ public Patch setUploadProtocol(java.lang.String uploadProtocol) {
13291329
}
13301330

13311331
/**
1332-
* Output only. The resource name of the pool. Format:
1332+
* Identifier. The resource name of the pool. Format:
13331333
* `locations/{location}/workforcePools/{workforce_pool_id}`
13341334
*/
13351335
@com.google.api.client.util.Key
13361336
private java.lang.String name;
13371337

1338-
/** Output only. The resource name of the pool. Format:
1338+
/** Identifier. The resource name of the pool. Format:
13391339
`locations/{location}/workforcePools/{workforce_pool_id}`
13401340
*/
13411341
public java.lang.String getName() {
13421342
return name;
13431343
}
13441344

13451345
/**
1346-
* Output only. The resource name of the pool. Format:
1346+
* Identifier. The resource name of the pool. Format:
13471347
* `locations/{location}/workforcePools/{workforce_pool_id}`
13481348
*/
13491349
public Patch setName(java.lang.String name) {
@@ -2668,7 +2668,7 @@ public List set(String parameterName, Object value) {
26682668
* This request holds the parameters needed by the iam server. After setting any optional
26692669
* parameters, call the {@link Patch#execute()} method to invoke the remote operation.
26702670
*
2671-
* @param name Output only. The resource name of the provider. Format:
2671+
* @param name Identifier. The resource name of the provider. Format:
26722672
* `locations/{location}/workforcePools/{workforce_pool_id}/providers/{provider_id}`
26732673
* @param content the {@link com.google.api.services.iam.v1.model.WorkforcePoolProvider}
26742674
* @return the request
@@ -2696,7 +2696,7 @@ public class Patch extends IamRequest<com.google.api.services.iam.v1.model.Opera
26962696
* Patch#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)} must
26972697
* be called to initialize this instance immediately after invoking the constructor. </p>
26982698
*
2699-
* @param name Output only. The resource name of the provider. Format:
2699+
* @param name Identifier. The resource name of the provider. Format:
27002700
* `locations/{location}/workforcePools/{workforce_pool_id}/providers/{provider_id}`
27012701
* @param content the {@link com.google.api.services.iam.v1.model.WorkforcePoolProvider}
27022702
* @since 1.13
@@ -2767,21 +2767,21 @@ public Patch setUploadProtocol(java.lang.String uploadProtocol) {
27672767
}
27682768

27692769
/**
2770-
* Output only. The resource name of the provider. Format:
2770+
* Identifier. The resource name of the provider. Format:
27712771
* `locations/{location}/workforcePools/{workforce_pool_id}/providers/{provider_id}`
27722772
*/
27732773
@com.google.api.client.util.Key
27742774
private java.lang.String name;
27752775

2776-
/** Output only. The resource name of the provider. Format:
2776+
/** Identifier. The resource name of the provider. Format:
27772777
`locations/{location}/workforcePools/{workforce_pool_id}/providers/{provider_id}`
27782778
*/
27792779
public java.lang.String getName() {
27802780
return name;
27812781
}
27822782

27832783
/**
2784-
* Output only. The resource name of the provider. Format:
2784+
* Identifier. The resource name of the provider. Format:
27852785
* `locations/{location}/workforcePools/{workforce_pool_id}/providers/{provider_id}`
27862786
*/
27872787
public Patch setName(java.lang.String name) {

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public final class WorkforcePool extends com.google.api.client.json.GenericJson
7373
private String expireTime;
7474

7575
/**
76-
* Output only. The resource name of the pool. Format:
76+
* Identifier. The resource name of the pool. Format:
7777
* `locations/{location}/workforcePools/{workforce_pool_id}`
7878
* The value may be {@code null}.
7979
*/
@@ -203,7 +203,7 @@ public WorkforcePool setExpireTime(String expireTime) {
203203
}
204204

205205
/**
206-
* Output only. The resource name of the pool. Format:
206+
* Identifier. The resource name of the pool. Format:
207207
* `locations/{location}/workforcePools/{workforce_pool_id}`
208208
* @return value or {@code null} for none
209209
*/
@@ -212,7 +212,7 @@ public java.lang.String getName() {
212212
}
213213

214214
/**
215-
* Output only. The resource name of the pool. Format:
215+
* Identifier. The resource name of the pool. Format:
216216
* `locations/{location}/workforcePools/{workforce_pool_id}`
217217
* @param name name or {@code null} for none
218218
*/

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public final class WorkforcePoolProvider extends com.google.api.client.json.Gene
128128
private GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2Client extraAttributesOauth2Client;
129129

130130
/**
131-
* Output only. The resource name of the provider. Format:
131+
* Identifier. The resource name of the provider. Format:
132132
* `locations/{location}/workforcePools/{workforce_pool_id}/providers/{provider_id}`
133133
* The value may be {@code null}.
134134
*/
@@ -372,7 +372,7 @@ public WorkforcePoolProvider setExtraAttributesOauth2Client(GoogleIamAdminV1Work
372372
}
373373

374374
/**
375-
* Output only. The resource name of the provider. Format:
375+
* Identifier. The resource name of the provider. Format:
376376
* `locations/{location}/workforcePools/{workforce_pool_id}/providers/{provider_id}`
377377
* @return value or {@code null} for none
378378
*/
@@ -381,7 +381,7 @@ public java.lang.String getName() {
381381
}
382382

383383
/**
384-
* Output only. The resource name of the provider. Format:
384+
* Identifier. The resource name of the provider. Format:
385385
* `locations/{location}/workforcePools/{workforce_pool_id}/providers/{provider_id}`
386386
* @param name name or {@code null} for none
387387
*/

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

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ public final class WorkforcePoolProviderKey extends com.google.api.client.json.G
4949
private KeyData keyData;
5050

5151
/**
52-
* Output only. The resource name of the key.
52+
* Identifier. The resource name of the key. Format:
53+
* `locations/{location}/workforcePools/{workforce_pool_id}/providers/{provider_id}/keys/{key_id}`
5354
* The value may be {@code null}.
5455
*/
5556
@com.google.api.client.util.Key
@@ -108,15 +109,17 @@ public WorkforcePoolProviderKey setKeyData(KeyData keyData) {
108109
}
109110

110111
/**
111-
* Output only. The resource name of the key.
112+
* Identifier. The resource name of the key. Format:
113+
* `locations/{location}/workforcePools/{workforce_pool_id}/providers/{provider_id}/keys/{key_id}`
112114
* @return value or {@code null} for none
113115
*/
114116
public java.lang.String getName() {
115117
return name;
116118
}
117119

118120
/**
119-
* Output only. The resource name of the key.
121+
* Identifier. The resource name of the key. Format:
122+
* `locations/{location}/workforcePools/{workforce_pool_id}/providers/{provider_id}/keys/{key_id}`
120123
* @param name name or {@code null} for none
121124
*/
122125
public WorkforcePoolProviderKey setName(java.lang.String name) {

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-rev20241114-2.0.0</version>
12-
<name>Identity and Access Management (IAM) API v1-rev20241114-2.0.0</name>
11+
<version>v1-rev20250102-2.0.0</version>
12+
<name>Identity and Access Management (IAM) API v1-rev20250102-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-rev20241114-2.0.0</version>
25+
<version>v1-rev20250102-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-rev20241114-2.0.0'
38+
implementation 'com.google.apis:google-api-services-iam:v1-rev20250102-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)