Skip to content

Commit b4060bb

Browse files
1 parent 3ae5ea3 commit b4060bb

File tree

12 files changed

+81
-63
lines changed

12 files changed

+81
-63
lines changed

clients/google-api-services-cloudtasks/v2/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-cloudtasks</artifactId>
25-
<version>v2-rev20240223-2.0.0</version>
25+
<version>v2-rev20240808-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-cloudtasks:v2-rev20240223-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudtasks:v2-rev20240808-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-cloudtasks/v2/2.0.0/com/google/api/services/cloudtasks/v2/model/HttpTarget.java

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -68,20 +68,22 @@ public final class HttpTarget extends com.google.api.client.json.GenericJson {
6868
private java.lang.String httpMethod;
6969

7070
/**
71-
* If specified, an [OAuth token](https://developers.google.com/identity/protocols/OAuth2) will be
71+
* If specified, an [OAuth token](https://developers.google.com/identity/protocols/OAuth2) is
7272
* generated and attached as the `Authorization` header in the HTTP request. This type of
73-
* authorization should generally only be used when calling Google APIs hosted on
74-
* *.googleapis.com.
73+
* authorization should generally be used only when calling Google APIs hosted on
74+
* *.googleapis.com. Note that both the service account email and the scope MUST be specified when
75+
* using the queue-level authorization override.
7576
* The value may be {@code null}.
7677
*/
7778
@com.google.api.client.util.Key
7879
private OAuthToken oauthToken;
7980

8081
/**
8182
* If specified, an [OIDC](https://developers.google.com/identity/protocols/OpenIDConnect) token
82-
* will be generated and attached as an `Authorization` header in the HTTP request. This type of
83+
* is generated and attached as an `Authorization` header in the HTTP request. This type of
8384
* authorization can be used for many scenarios, including calling Cloud Run, or endpoints where
84-
* you intend to validate the token yourself.
85+
* you intend to validate the token yourself. Note that both the service account email and the
86+
* audience MUST be specified when using the queue-level authorization override.
8587
* The value may be {@code null}.
8688
*/
8789
@com.google.api.client.util.Key
@@ -163,21 +165,23 @@ public HttpTarget setHttpMethod(java.lang.String httpMethod) {
163165
}
164166

165167
/**
166-
* If specified, an [OAuth token](https://developers.google.com/identity/protocols/OAuth2) will be
168+
* If specified, an [OAuth token](https://developers.google.com/identity/protocols/OAuth2) is
167169
* generated and attached as the `Authorization` header in the HTTP request. This type of
168-
* authorization should generally only be used when calling Google APIs hosted on
169-
* *.googleapis.com.
170+
* authorization should generally be used only when calling Google APIs hosted on
171+
* *.googleapis.com. Note that both the service account email and the scope MUST be specified when
172+
* using the queue-level authorization override.
170173
* @return value or {@code null} for none
171174
*/
172175
public OAuthToken getOauthToken() {
173176
return oauthToken;
174177
}
175178

176179
/**
177-
* If specified, an [OAuth token](https://developers.google.com/identity/protocols/OAuth2) will be
180+
* If specified, an [OAuth token](https://developers.google.com/identity/protocols/OAuth2) is
178181
* generated and attached as the `Authorization` header in the HTTP request. This type of
179-
* authorization should generally only be used when calling Google APIs hosted on
180-
* *.googleapis.com.
182+
* authorization should generally be used only when calling Google APIs hosted on
183+
* *.googleapis.com. Note that both the service account email and the scope MUST be specified when
184+
* using the queue-level authorization override.
181185
* @param oauthToken oauthToken or {@code null} for none
182186
*/
183187
public HttpTarget setOauthToken(OAuthToken oauthToken) {
@@ -187,9 +191,10 @@ public HttpTarget setOauthToken(OAuthToken oauthToken) {
187191

188192
/**
189193
* If specified, an [OIDC](https://developers.google.com/identity/protocols/OpenIDConnect) token
190-
* will be generated and attached as an `Authorization` header in the HTTP request. This type of
194+
* is generated and attached as an `Authorization` header in the HTTP request. This type of
191195
* authorization can be used for many scenarios, including calling Cloud Run, or endpoints where
192-
* you intend to validate the token yourself.
196+
* you intend to validate the token yourself. Note that both the service account email and the
197+
* audience MUST be specified when using the queue-level authorization override.
193198
* @return value or {@code null} for none
194199
*/
195200
public OidcToken getOidcToken() {
@@ -198,9 +203,10 @@ public OidcToken getOidcToken() {
198203

199204
/**
200205
* If specified, an [OIDC](https://developers.google.com/identity/protocols/OpenIDConnect) token
201-
* will be generated and attached as an `Authorization` header in the HTTP request. This type of
206+
* is generated and attached as an `Authorization` header in the HTTP request. This type of
202207
* authorization can be used for many scenarios, including calling Cloud Run, or endpoints where
203-
* you intend to validate the token yourself.
208+
* you intend to validate the token yourself. Note that both the service account email and the
209+
* audience MUST be specified when using the queue-level authorization override.
204210
* @param oidcToken oidcToken or {@code null} for none
205211
*/
206212
public HttpTarget setOidcToken(OidcToken oidcToken) {

clients/google-api-services-cloudtasks/v2/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-cloudtasks</artifactId>
11-
<version>v2-rev20240223-2.0.0</version>
12-
<name>Cloud Tasks API v2-rev20240223-2.0.0</name>
11+
<version>v2-rev20240808-2.0.0</version>
12+
<name>Cloud Tasks API v2-rev20240808-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-cloudtasks/v2/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-cloudtasks</artifactId>
25-
<version>v2-rev20240223-2.0.0</version>
25+
<version>v2-rev20240808-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-cloudtasks:v2-rev20240223-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudtasks:v2-rev20240808-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-cloudtasks/v2beta2/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-cloudtasks</artifactId>
25-
<version>v2beta2-rev20240223-2.0.0</version>
25+
<version>v2beta2-rev20240808-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-cloudtasks:v2beta2-rev20240223-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudtasks:v2beta2-rev20240808-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-cloudtasks/v2beta2/2.0.0/com/google/api/services/cloudtasks/v2beta2/model/HttpTarget.java

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -68,20 +68,22 @@ public final class HttpTarget extends com.google.api.client.json.GenericJson {
6868
private java.lang.String httpMethod;
6969

7070
/**
71-
* If specified, an [OAuth token](https://developers.google.com/identity/protocols/OAuth2) will be
71+
* If specified, an [OAuth token](https://developers.google.com/identity/protocols/OAuth2) is
7272
* generated and attached as an `Authorization` header in the HTTP request. This type of
73-
* authorization should generally only be used when calling Google APIs hosted on
74-
* *.googleapis.com.
73+
* authorization should generally be used only when calling Google APIs hosted on
74+
* *.googleapis.com. Note that both the service account email and the scope MUST be specified when
75+
* using the queue-level authorization override.
7576
* The value may be {@code null}.
7677
*/
7778
@com.google.api.client.util.Key
7879
private OAuthToken oauthToken;
7980

8081
/**
8182
* If specified, an [OIDC](https://developers.google.com/identity/protocols/OpenIDConnect) token
82-
* will be generated and attached as an `Authorization` header in the HTTP request. This type of
83+
* is generated and attached as an `Authorization` header in the HTTP request. This type of
8384
* authorization can be used for many scenarios, including calling Cloud Run, or endpoints where
84-
* you intend to validate the token yourself.
85+
* you intend to validate the token yourself. Note that both the service account email and the
86+
* audience MUST be specified when using the queue-level authorization override.
8587
* The value may be {@code null}.
8688
*/
8789
@com.google.api.client.util.Key
@@ -163,21 +165,23 @@ public HttpTarget setHttpMethod(java.lang.String httpMethod) {
163165
}
164166

165167
/**
166-
* If specified, an [OAuth token](https://developers.google.com/identity/protocols/OAuth2) will be
168+
* If specified, an [OAuth token](https://developers.google.com/identity/protocols/OAuth2) is
167169
* generated and attached as an `Authorization` header in the HTTP request. This type of
168-
* authorization should generally only be used when calling Google APIs hosted on
169-
* *.googleapis.com.
170+
* authorization should generally be used only when calling Google APIs hosted on
171+
* *.googleapis.com. Note that both the service account email and the scope MUST be specified when
172+
* using the queue-level authorization override.
170173
* @return value or {@code null} for none
171174
*/
172175
public OAuthToken getOauthToken() {
173176
return oauthToken;
174177
}
175178

176179
/**
177-
* If specified, an [OAuth token](https://developers.google.com/identity/protocols/OAuth2) will be
180+
* If specified, an [OAuth token](https://developers.google.com/identity/protocols/OAuth2) is
178181
* generated and attached as an `Authorization` header in the HTTP request. This type of
179-
* authorization should generally only be used when calling Google APIs hosted on
180-
* *.googleapis.com.
182+
* authorization should generally be used only when calling Google APIs hosted on
183+
* *.googleapis.com. Note that both the service account email and the scope MUST be specified when
184+
* using the queue-level authorization override.
181185
* @param oauthToken oauthToken or {@code null} for none
182186
*/
183187
public HttpTarget setOauthToken(OAuthToken oauthToken) {
@@ -187,9 +191,10 @@ public HttpTarget setOauthToken(OAuthToken oauthToken) {
187191

188192
/**
189193
* If specified, an [OIDC](https://developers.google.com/identity/protocols/OpenIDConnect) token
190-
* will be generated and attached as an `Authorization` header in the HTTP request. This type of
194+
* is generated and attached as an `Authorization` header in the HTTP request. This type of
191195
* authorization can be used for many scenarios, including calling Cloud Run, or endpoints where
192-
* you intend to validate the token yourself.
196+
* you intend to validate the token yourself. Note that both the service account email and the
197+
* audience MUST be specified when using the queue-level authorization override.
193198
* @return value or {@code null} for none
194199
*/
195200
public OidcToken getOidcToken() {
@@ -198,9 +203,10 @@ public OidcToken getOidcToken() {
198203

199204
/**
200205
* If specified, an [OIDC](https://developers.google.com/identity/protocols/OpenIDConnect) token
201-
* will be generated and attached as an `Authorization` header in the HTTP request. This type of
206+
* is generated and attached as an `Authorization` header in the HTTP request. This type of
202207
* authorization can be used for many scenarios, including calling Cloud Run, or endpoints where
203-
* you intend to validate the token yourself.
208+
* you intend to validate the token yourself. Note that both the service account email and the
209+
* audience MUST be specified when using the queue-level authorization override.
204210
* @param oidcToken oidcToken or {@code null} for none
205211
*/
206212
public HttpTarget setOidcToken(OidcToken oidcToken) {

clients/google-api-services-cloudtasks/v2beta2/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-cloudtasks</artifactId>
11-
<version>v2beta2-rev20240223-2.0.0</version>
12-
<name>Cloud Tasks API v2beta2-rev20240223-2.0.0</name>
11+
<version>v2beta2-rev20240808-2.0.0</version>
12+
<name>Cloud Tasks API v2beta2-rev20240808-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-cloudtasks/v2beta2/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-cloudtasks</artifactId>
25-
<version>v2beta2-rev20240223-2.0.0</version>
25+
<version>v2beta2-rev20240808-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-cloudtasks:v2beta2-rev20240223-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudtasks:v2beta2-rev20240808-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-cloudtasks/v2beta3/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-cloudtasks</artifactId>
25-
<version>v2beta3-rev20240223-2.0.0</version>
25+
<version>v2beta3-rev20240808-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-cloudtasks:v2beta3-rev20240223-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudtasks:v2beta3-rev20240808-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-cloudtasks/v2beta3/2.0.0/com/google/api/services/cloudtasks/v2beta3/model/HttpTarget.java

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -68,20 +68,22 @@ public final class HttpTarget extends com.google.api.client.json.GenericJson {
6868
private java.lang.String httpMethod;
6969

7070
/**
71-
* If specified, an [OAuth token](https://developers.google.com/identity/protocols/OAuth2) will be
71+
* If specified, an [OAuth token](https://developers.google.com/identity/protocols/OAuth2) is
7272
* generated and attached as the `Authorization` header in the HTTP request. This type of
73-
* authorization should generally only be used when calling Google APIs hosted on
74-
* *.googleapis.com.
73+
* authorization should generally be used only when calling Google APIs hosted on
74+
* *.googleapis.com. Note that both the service account email and the scope MUST be specified when
75+
* using the queue-level authorization override.
7576
* The value may be {@code null}.
7677
*/
7778
@com.google.api.client.util.Key
7879
private OAuthToken oauthToken;
7980

8081
/**
8182
* If specified, an [OIDC](https://developers.google.com/identity/protocols/OpenIDConnect) token
82-
* will be generated and attached as an `Authorization` header in the HTTP request. This type of
83+
* is generated and attached as an `Authorization` header in the HTTP request. This type of
8384
* authorization can be used for many scenarios, including calling Cloud Run, or endpoints where
84-
* you intend to validate the token yourself.
85+
* you intend to validate the token yourself. Note that both the service account email and the
86+
* audience MUST be specified when using the queue-level authorization override.
8587
* The value may be {@code null}.
8688
*/
8789
@com.google.api.client.util.Key
@@ -163,21 +165,23 @@ public HttpTarget setHttpMethod(java.lang.String httpMethod) {
163165
}
164166

165167
/**
166-
* If specified, an [OAuth token](https://developers.google.com/identity/protocols/OAuth2) will be
168+
* If specified, an [OAuth token](https://developers.google.com/identity/protocols/OAuth2) is
167169
* generated and attached as the `Authorization` header in the HTTP request. This type of
168-
* authorization should generally only be used when calling Google APIs hosted on
169-
* *.googleapis.com.
170+
* authorization should generally be used only when calling Google APIs hosted on
171+
* *.googleapis.com. Note that both the service account email and the scope MUST be specified when
172+
* using the queue-level authorization override.
170173
* @return value or {@code null} for none
171174
*/
172175
public OAuthToken getOauthToken() {
173176
return oauthToken;
174177
}
175178

176179
/**
177-
* If specified, an [OAuth token](https://developers.google.com/identity/protocols/OAuth2) will be
180+
* If specified, an [OAuth token](https://developers.google.com/identity/protocols/OAuth2) is
178181
* generated and attached as the `Authorization` header in the HTTP request. This type of
179-
* authorization should generally only be used when calling Google APIs hosted on
180-
* *.googleapis.com.
182+
* authorization should generally be used only when calling Google APIs hosted on
183+
* *.googleapis.com. Note that both the service account email and the scope MUST be specified when
184+
* using the queue-level authorization override.
181185
* @param oauthToken oauthToken or {@code null} for none
182186
*/
183187
public HttpTarget setOauthToken(OAuthToken oauthToken) {
@@ -187,9 +191,10 @@ public HttpTarget setOauthToken(OAuthToken oauthToken) {
187191

188192
/**
189193
* If specified, an [OIDC](https://developers.google.com/identity/protocols/OpenIDConnect) token
190-
* will be generated and attached as an `Authorization` header in the HTTP request. This type of
194+
* is generated and attached as an `Authorization` header in the HTTP request. This type of
191195
* authorization can be used for many scenarios, including calling Cloud Run, or endpoints where
192-
* you intend to validate the token yourself.
196+
* you intend to validate the token yourself. Note that both the service account email and the
197+
* audience MUST be specified when using the queue-level authorization override.
193198
* @return value or {@code null} for none
194199
*/
195200
public OidcToken getOidcToken() {
@@ -198,9 +203,10 @@ public OidcToken getOidcToken() {
198203

199204
/**
200205
* If specified, an [OIDC](https://developers.google.com/identity/protocols/OpenIDConnect) token
201-
* will be generated and attached as an `Authorization` header in the HTTP request. This type of
206+
* is generated and attached as an `Authorization` header in the HTTP request. This type of
202207
* authorization can be used for many scenarios, including calling Cloud Run, or endpoints where
203-
* you intend to validate the token yourself.
208+
* you intend to validate the token yourself. Note that both the service account email and the
209+
* audience MUST be specified when using the queue-level authorization override.
204210
* @param oidcToken oidcToken or {@code null} for none
205211
*/
206212
public HttpTarget setOidcToken(OidcToken oidcToken) {

0 commit comments

Comments
 (0)