Skip to content

Commit 19f0d61

Browse files
1 parent 8ccfe62 commit 19f0d61

File tree

8 files changed

+72
-63
lines changed

8 files changed

+72
-63
lines changed

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

clients/google-api-services-sts/v1/2.0.0/com/google/api/services/sts/v1/model/GoogleIdentityStsV1ExchangeTokenRequest.java

Lines changed: 30 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,16 @@ public final class GoogleIdentityStsV1ExchangeTokenRequest extends com.google.ap
9292
* formatted according to section 4.2 of the [OIDC 1.0 Discovery
9393
* specification](https://openid.net/specs/openid-connect-
9494
* discovery-1_0.html#ProviderConfigurationResponse). - `iat`: The issue time, in seconds, since
95-
* the Unix epoch. Must be in the past. - `exp`: The expiration time, in seconds, since the Unix
96-
* epoch. Must be less than 48 hours after `iat`. Shorter expiration times are more secure. If
97-
* possible, we recommend setting an expiration time less than 6 hours. - `sub`: The identity
98-
* asserted in the JWT. - `aud`: For workload identity pools, this must be a value specified in
99-
* the allowed audiences for the workload identity pool provider, or one of the audiences allowed
100-
* by default if no audiences were specified. See https://cloud.google.com/iam/docs/reference/rest
101-
* /v1/projects.locations.workloadIdentityPools.providers#oidc. For workforce pools, this must
102-
* match the client ID specified in the provider configuration. See
95+
* the Unix epoch. This timestamp must be in the past and no more than 24 hours in the past, or
96+
* the token will be rejected. Note that this implies the token is only acceptable within a time
97+
* window of at most 24 hours. - `exp`: The expiration time, in seconds, since the Unix epoch.
98+
* Shorter expiration times are more secure. If possible, we recommend setting an expiration time
99+
* less than 6 hours. - `sub`: The identity asserted in the JWT. - `aud`: For workload identity
100+
* pools, this must be a value specified in the allowed audiences for the workload identity pool
101+
* provider, or one of the audiences allowed by default if no audiences were specified. See https:
102+
* //cloud.google.com/iam/docs/reference/rest/v1/projects.locations.workloadIdentityPools.provider
103+
* s#oidc. For workforce pools, this must match the client ID specified in the provider
104+
* configuration. See
103105
* https://cloud.google.com/iam/docs/reference/rest/v1/locations.workforcePools.providers#oidc.
104106
* Example header: ``` { "alg": "RS256", "kid": "us-east-11" } ``` Example payload: ``` { "iss":
105107
* "https://accounts.google.com", "iat": 1517963104, "exp": 1517966704, "aud":
@@ -291,14 +293,16 @@ public GoogleIdentityStsV1ExchangeTokenRequest setScope(java.lang.String scope)
291293
* formatted according to section 4.2 of the [OIDC 1.0 Discovery
292294
* specification](https://openid.net/specs/openid-connect-
293295
* discovery-1_0.html#ProviderConfigurationResponse). - `iat`: The issue time, in seconds, since
294-
* the Unix epoch. Must be in the past. - `exp`: The expiration time, in seconds, since the Unix
295-
* epoch. Must be less than 48 hours after `iat`. Shorter expiration times are more secure. If
296-
* possible, we recommend setting an expiration time less than 6 hours. - `sub`: The identity
297-
* asserted in the JWT. - `aud`: For workload identity pools, this must be a value specified in
298-
* the allowed audiences for the workload identity pool provider, or one of the audiences allowed
299-
* by default if no audiences were specified. See https://cloud.google.com/iam/docs/reference/rest
300-
* /v1/projects.locations.workloadIdentityPools.providers#oidc. For workforce pools, this must
301-
* match the client ID specified in the provider configuration. See
296+
* the Unix epoch. This timestamp must be in the past and no more than 24 hours in the past, or
297+
* the token will be rejected. Note that this implies the token is only acceptable within a time
298+
* window of at most 24 hours. - `exp`: The expiration time, in seconds, since the Unix epoch.
299+
* Shorter expiration times are more secure. If possible, we recommend setting an expiration time
300+
* less than 6 hours. - `sub`: The identity asserted in the JWT. - `aud`: For workload identity
301+
* pools, this must be a value specified in the allowed audiences for the workload identity pool
302+
* provider, or one of the audiences allowed by default if no audiences were specified. See https:
303+
* //cloud.google.com/iam/docs/reference/rest/v1/projects.locations.workloadIdentityPools.provider
304+
* s#oidc. For workforce pools, this must match the client ID specified in the provider
305+
* configuration. See
302306
* https://cloud.google.com/iam/docs/reference/rest/v1/locations.workforcePools.providers#oidc.
303307
* Example header: ``` { "alg": "RS256", "kid": "us-east-11" } ``` Example payload: ``` { "iss":
304308
* "https://accounts.google.com", "iat": 1517963104, "exp": 1517966704, "aud":
@@ -369,14 +373,16 @@ public java.lang.String getSubjectToken() {
369373
* formatted according to section 4.2 of the [OIDC 1.0 Discovery
370374
* specification](https://openid.net/specs/openid-connect-
371375
* discovery-1_0.html#ProviderConfigurationResponse). - `iat`: The issue time, in seconds, since
372-
* the Unix epoch. Must be in the past. - `exp`: The expiration time, in seconds, since the Unix
373-
* epoch. Must be less than 48 hours after `iat`. Shorter expiration times are more secure. If
374-
* possible, we recommend setting an expiration time less than 6 hours. - `sub`: The identity
375-
* asserted in the JWT. - `aud`: For workload identity pools, this must be a value specified in
376-
* the allowed audiences for the workload identity pool provider, or one of the audiences allowed
377-
* by default if no audiences were specified. See https://cloud.google.com/iam/docs/reference/rest
378-
* /v1/projects.locations.workloadIdentityPools.providers#oidc. For workforce pools, this must
379-
* match the client ID specified in the provider configuration. See
376+
* the Unix epoch. This timestamp must be in the past and no more than 24 hours in the past, or
377+
* the token will be rejected. Note that this implies the token is only acceptable within a time
378+
* window of at most 24 hours. - `exp`: The expiration time, in seconds, since the Unix epoch.
379+
* Shorter expiration times are more secure. If possible, we recommend setting an expiration time
380+
* less than 6 hours. - `sub`: The identity asserted in the JWT. - `aud`: For workload identity
381+
* pools, this must be a value specified in the allowed audiences for the workload identity pool
382+
* provider, or one of the audiences allowed by default if no audiences were specified. See https:
383+
* //cloud.google.com/iam/docs/reference/rest/v1/projects.locations.workloadIdentityPools.provider
384+
* s#oidc. For workforce pools, this must match the client ID specified in the provider
385+
* configuration. See
380386
* https://cloud.google.com/iam/docs/reference/rest/v1/locations.workforcePools.providers#oidc.
381387
* Example header: ``` { "alg": "RS256", "kid": "us-east-11" } ``` Example payload: ``` { "iss":
382388
* "https://accounts.google.com", "iat": 1517963104, "exp": 1517966704, "aud":

clients/google-api-services-sts/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-sts</artifactId>
11-
<version>v1-rev20260311-2.0.0</version>
12-
<name>Security Token Service API v1-rev20260311-2.0.0</name>
11+
<version>v1-rev20260318-2.0.0</version>
12+
<name>Security Token Service API v1-rev20260318-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-sts/v1beta/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-sts</artifactId>
25-
<version>v1beta-rev20260311-2.0.0</version>
25+
<version>v1beta-rev20260318-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-sts:v1beta-rev20260311-2.0.0'
38+
implementation 'com.google.apis:google-api-services-sts:v1beta-rev20260318-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-sts/v1beta/2.0.0/com/google/api/services/sts/v1beta/model/GoogleIdentityStsV1betaExchangeTokenRequest.java

Lines changed: 30 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -89,15 +89,16 @@ public final class GoogleIdentityStsV1betaExchangeTokenRequest extends com.googl
8989
* formatted according to section 4.2 of the [OIDC 1.0 Discovery
9090
* specification](https://openid.net/specs/openid-connect-
9191
* discovery-1_0.html#ProviderConfigurationResponse). - `iat`: The issue time, in seconds, since
92-
* the Unix epoch. Must be in the past. - `exp`: The expiration time, in seconds, since the Unix
93-
* epoch. Must be less than 48 hours after `iat`. Shorter expiration times are more secure. If
94-
* possible, we recommend setting an expiration time less than 6 hours. - `sub`: The identity
95-
* asserted in the JWT. - `aud`: For workload identity pools, this must be a value specified in
96-
* the allowed audiences for the workload identity pool provider, or one of the audiences allowed
97-
* by default if no audiences were specified. See https://cloud.google.com/iam/docs/reference/rest
98-
* /v1/projects.locations.workloadIdentityPools.providers#oidc Example header: ``` { "alg":
99-
* "RS256", "kid": "us-east-11" } ``` Example payload: ``` { "iss": "https://accounts.google.com",
100-
* "iat": 1517963104, "exp": 1517966704, "aud":
92+
* the Unix epoch. This timestamp must be in the past and no more than 24 hours in the past, or
93+
* the token will be rejected. Note that this implies the token is only acceptable within a time
94+
* window of at most 24 hours. - `exp`: The expiration time, in seconds, since the Unix epoch.
95+
* Shorter expiration times are more secure. If possible, we recommend setting an expiration time
96+
* less than 6 hours. - `sub`: The identity asserted in the JWT. - `aud`: For workload identity
97+
* pools, this must be a value specified in the allowed audiences for the workload identity pool
98+
* provider, or one of the audiences allowed by default if no audiences were specified. See https:
99+
* //cloud.google.com/iam/docs/reference/rest/v1/projects.locations.workloadIdentityPools.provider
100+
* s#oidc Example header: ``` { "alg": "RS256", "kid": "us-east-11" } ``` Example payload: ``` {
101+
* "iss": "https://accounts.google.com", "iat": 1517963104, "exp": 1517966704, "aud":
101102
* "//iam.googleapis.com/projects/1234567890123/locations/global/workloadIdentityPools/my-
102103
* pool/providers/my-provider", "sub": "113475438248934895348", "my_claims": { "additional_claim":
103104
* "value" } } ``` If `subject_token` is for AWS, it must be a serialized `GetCallerIdentity`
@@ -268,15 +269,16 @@ public GoogleIdentityStsV1betaExchangeTokenRequest setScope(java.lang.String sco
268269
* formatted according to section 4.2 of the [OIDC 1.0 Discovery
269270
* specification](https://openid.net/specs/openid-connect-
270271
* discovery-1_0.html#ProviderConfigurationResponse). - `iat`: The issue time, in seconds, since
271-
* the Unix epoch. Must be in the past. - `exp`: The expiration time, in seconds, since the Unix
272-
* epoch. Must be less than 48 hours after `iat`. Shorter expiration times are more secure. If
273-
* possible, we recommend setting an expiration time less than 6 hours. - `sub`: The identity
274-
* asserted in the JWT. - `aud`: For workload identity pools, this must be a value specified in
275-
* the allowed audiences for the workload identity pool provider, or one of the audiences allowed
276-
* by default if no audiences were specified. See https://cloud.google.com/iam/docs/reference/rest
277-
* /v1/projects.locations.workloadIdentityPools.providers#oidc Example header: ``` { "alg":
278-
* "RS256", "kid": "us-east-11" } ``` Example payload: ``` { "iss": "https://accounts.google.com",
279-
* "iat": 1517963104, "exp": 1517966704, "aud":
272+
* the Unix epoch. This timestamp must be in the past and no more than 24 hours in the past, or
273+
* the token will be rejected. Note that this implies the token is only acceptable within a time
274+
* window of at most 24 hours. - `exp`: The expiration time, in seconds, since the Unix epoch.
275+
* Shorter expiration times are more secure. If possible, we recommend setting an expiration time
276+
* less than 6 hours. - `sub`: The identity asserted in the JWT. - `aud`: For workload identity
277+
* pools, this must be a value specified in the allowed audiences for the workload identity pool
278+
* provider, or one of the audiences allowed by default if no audiences were specified. See https:
279+
* //cloud.google.com/iam/docs/reference/rest/v1/projects.locations.workloadIdentityPools.provider
280+
* s#oidc Example header: ``` { "alg": "RS256", "kid": "us-east-11" } ``` Example payload: ``` {
281+
* "iss": "https://accounts.google.com", "iat": 1517963104, "exp": 1517966704, "aud":
280282
* "//iam.googleapis.com/projects/1234567890123/locations/global/workloadIdentityPools/my-
281283
* pool/providers/my-provider", "sub": "113475438248934895348", "my_claims": { "additional_claim":
282284
* "value" } } ``` If `subject_token` is for AWS, it must be a serialized `GetCallerIdentity`
@@ -333,15 +335,16 @@ public java.lang.String getSubjectToken() {
333335
* formatted according to section 4.2 of the [OIDC 1.0 Discovery
334336
* specification](https://openid.net/specs/openid-connect-
335337
* discovery-1_0.html#ProviderConfigurationResponse). - `iat`: The issue time, in seconds, since
336-
* the Unix epoch. Must be in the past. - `exp`: The expiration time, in seconds, since the Unix
337-
* epoch. Must be less than 48 hours after `iat`. Shorter expiration times are more secure. If
338-
* possible, we recommend setting an expiration time less than 6 hours. - `sub`: The identity
339-
* asserted in the JWT. - `aud`: For workload identity pools, this must be a value specified in
340-
* the allowed audiences for the workload identity pool provider, or one of the audiences allowed
341-
* by default if no audiences were specified. See https://cloud.google.com/iam/docs/reference/rest
342-
* /v1/projects.locations.workloadIdentityPools.providers#oidc Example header: ``` { "alg":
343-
* "RS256", "kid": "us-east-11" } ``` Example payload: ``` { "iss": "https://accounts.google.com",
344-
* "iat": 1517963104, "exp": 1517966704, "aud":
338+
* the Unix epoch. This timestamp must be in the past and no more than 24 hours in the past, or
339+
* the token will be rejected. Note that this implies the token is only acceptable within a time
340+
* window of at most 24 hours. - `exp`: The expiration time, in seconds, since the Unix epoch.
341+
* Shorter expiration times are more secure. If possible, we recommend setting an expiration time
342+
* less than 6 hours. - `sub`: The identity asserted in the JWT. - `aud`: For workload identity
343+
* pools, this must be a value specified in the allowed audiences for the workload identity pool
344+
* provider, or one of the audiences allowed by default if no audiences were specified. See https:
345+
* //cloud.google.com/iam/docs/reference/rest/v1/projects.locations.workloadIdentityPools.provider
346+
* s#oidc Example header: ``` { "alg": "RS256", "kid": "us-east-11" } ``` Example payload: ``` {
347+
* "iss": "https://accounts.google.com", "iat": 1517963104, "exp": 1517966704, "aud":
345348
* "//iam.googleapis.com/projects/1234567890123/locations/global/workloadIdentityPools/my-
346349
* pool/providers/my-provider", "sub": "113475438248934895348", "my_claims": { "additional_claim":
347350
* "value" } } ``` If `subject_token` is for AWS, it must be a serialized `GetCallerIdentity`

clients/google-api-services-sts/v1beta/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-sts</artifactId>
11-
<version>v1beta-rev20260311-2.0.0</version>
12-
<name>Security Token Service API v1beta-rev20260311-2.0.0</name>
11+
<version>v1beta-rev20260318-2.0.0</version>
12+
<name>Security Token Service API v1beta-rev20260318-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-sts/v1beta/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-sts</artifactId>
25-
<version>v1beta-rev20260311-2.0.0</version>
25+
<version>v1beta-rev20260318-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-sts:v1beta-rev20260311-2.0.0'
38+
implementation 'com.google.apis:google-api-services-sts:v1beta-rev20260318-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)