Skip to content

Commit 386ae59

Browse files
1 parent a931428 commit 386ae59

File tree

12 files changed

+24
-84
lines changed

12 files changed

+24
-84
lines changed

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

clients/google-api-services-servicecontrol/v1/2.0.0/com/google/api/services/servicecontrol/v1/model/Attributes.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public final class Attributes extends com.google.api.client.json.GenericJson {
3333
* The set of attributes. Each attribute's key can be up to 128 bytes long. The value can be a
3434
* string up to 256 bytes, a signed 64-bit integer, or the Boolean values `true` and `false`. For
3535
* example: "/instance_id": "my-instance" "/http/user_agent": "" "/http/request_bytes": 300
36-
* "abc.com/myattribute": true
36+
* "example.com/myattribute": true
3737
* The value may be {@code null}.
3838
*/
3939
@com.google.api.client.util.Key
@@ -58,7 +58,7 @@ public final class Attributes extends com.google.api.client.json.GenericJson {
5858
* The set of attributes. Each attribute's key can be up to 128 bytes long. The value can be a
5959
* string up to 256 bytes, a signed 64-bit integer, or the Boolean values `true` and `false`. For
6060
* example: "/instance_id": "my-instance" "/http/user_agent": "" "/http/request_bytes": 300
61-
* "abc.com/myattribute": true
61+
* "example.com/myattribute": true
6262
* @return value or {@code null} for none
6363
*/
6464
public java.util.Map<String, AttributeValue> getAttributeMap() {
@@ -69,7 +69,7 @@ public java.util.Map<String, AttributeValue> getAttributeMap() {
6969
* The set of attributes. Each attribute's key can be up to 128 bytes long. The value can be a
7070
* string up to 256 bytes, a signed 64-bit integer, or the Boolean values `true` and `false`. For
7171
* example: "/instance_id": "my-instance" "/http/user_agent": "" "/http/request_bytes": 300
72-
* "abc.com/myattribute": true
72+
* "example.com/myattribute": true
7373
* @param attributeMap attributeMap or {@code null} for none
7474
*/
7575
public Attributes setAttributeMap(java.util.Map<String, AttributeValue> attributeMap) {

clients/google-api-services-servicecontrol/v1/2.0.0/com/google/api/services/servicecontrol/v1/model/Auth.java

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,6 @@ public final class Auth extends com.google.api.client.json.GenericJson {
6767
@com.google.api.client.util.Key
6868
private java.util.Map<String, java.lang.Object> claims;
6969

70-
/**
71-
* Identifies the client credential id used for authentication. credential_id is in the format of
72-
* AUTH_METHOD:IDENTIFIER, e.g. "serviceaccount:XXXXX, apikey:XXXXX" where the format of the
73-
* IDENTIFIER can vary for different AUTH_METHODs.
74-
* The value may be {@code null}.
75-
*/
76-
@com.google.api.client.util.Key
77-
private java.lang.String credentialId;
78-
7970
/**
8071
* The authorized presenter of the credential. Reflects the optional Authorized Presenter (`azp`)
8172
* claim within a JWT or the OAuth client id. For example, a Google Cloud Platform client id looks
@@ -178,27 +169,6 @@ public Auth setClaims(java.util.Map<String, java.lang.Object> claims) {
178169
return this;
179170
}
180171

181-
/**
182-
* Identifies the client credential id used for authentication. credential_id is in the format of
183-
* AUTH_METHOD:IDENTIFIER, e.g. "serviceaccount:XXXXX, apikey:XXXXX" where the format of the
184-
* IDENTIFIER can vary for different AUTH_METHODs.
185-
* @return value or {@code null} for none
186-
*/
187-
public java.lang.String getCredentialId() {
188-
return credentialId;
189-
}
190-
191-
/**
192-
* Identifies the client credential id used for authentication. credential_id is in the format of
193-
* AUTH_METHOD:IDENTIFIER, e.g. "serviceaccount:XXXXX, apikey:XXXXX" where the format of the
194-
* IDENTIFIER can vary for different AUTH_METHODs.
195-
* @param credentialId credentialId or {@code null} for none
196-
*/
197-
public Auth setCredentialId(java.lang.String credentialId) {
198-
this.credentialId = credentialId;
199-
return this;
200-
}
201-
202172
/**
203173
* The authorized presenter of the credential. Reflects the optional Authorized Presenter (`azp`)
204174
* claim within a JWT or the OAuth client id. For example, a Google Cloud Platform client id looks

clients/google-api-services-servicecontrol/v1/2.0.0/com/google/api/services/servicecontrol/v1/model/HttpRequest.java

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

7878
/**
7979
* The referer URL of the request, as defined in [HTTP/1.1 Header Field
80-
* Definitions](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html).
80+
* Definitions](https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html).
8181
* The value may be {@code null}.
8282
*/
8383
@com.google.api.client.util.Key
@@ -254,7 +254,7 @@ public HttpRequest setProtocol(java.lang.String protocol) {
254254

255255
/**
256256
* The referer URL of the request, as defined in [HTTP/1.1 Header Field
257-
* Definitions](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html).
257+
* Definitions](https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html).
258258
* @return value or {@code null} for none
259259
*/
260260
public java.lang.String getReferer() {
@@ -263,7 +263,7 @@ public java.lang.String getReferer() {
263263

264264
/**
265265
* The referer URL of the request, as defined in [HTTP/1.1 Header Field
266-
* Definitions](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html).
266+
* Definitions](https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html).
267267
* @param referer referer or {@code null} for none
268268
*/
269269
public HttpRequest setReferer(java.lang.String referer) {

clients/google-api-services-servicecontrol/v1/2.0.0/com/google/api/services/servicecontrol/v1/model/V1HttpRequest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public final class V1HttpRequest extends com.google.api.client.json.GenericJson
7777

7878
/**
7979
* The referer URL of the request, as defined in [HTTP/1.1 Header Field
80-
* Definitions](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html).
80+
* Definitions](https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html).
8181
* The value may be {@code null}.
8282
*/
8383
@com.google.api.client.util.Key
@@ -254,7 +254,7 @@ public V1HttpRequest setProtocol(java.lang.String protocol) {
254254

255255
/**
256256
* The referer URL of the request, as defined in [HTTP/1.1 Header Field
257-
* Definitions](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html).
257+
* Definitions](https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html).
258258
* @return value or {@code null} for none
259259
*/
260260
public java.lang.String getReferer() {
@@ -263,7 +263,7 @@ public java.lang.String getReferer() {
263263

264264
/**
265265
* The referer URL of the request, as defined in [HTTP/1.1 Header Field
266-
* Definitions](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html).
266+
* Definitions](https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html).
267267
* @param referer referer or {@code null} for none
268268
*/
269269
public V1HttpRequest setReferer(java.lang.String referer) {

clients/google-api-services-servicecontrol/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-servicecontrol</artifactId>
11-
<version>v1-rev20240802-2.0.0</version>
12-
<name>Service Control API v1-rev20240802-2.0.0</name>
11+
<version>v1-rev20250103-2.0.0</version>
12+
<name>Service Control API v1-rev20250103-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

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

clients/google-api-services-servicecontrol/v2/2.0.0/com/google/api/services/servicecontrol/v2/model/Auth.java

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,6 @@ public final class Auth extends com.google.api.client.json.GenericJson {
6767
@com.google.api.client.util.Key
6868
private java.util.Map<String, java.lang.Object> claims;
6969

70-
/**
71-
* Identifies the client credential id used for authentication. credential_id is in the format of
72-
* AUTH_METHOD:IDENTIFIER, e.g. "serviceaccount:XXXXX, apikey:XXXXX" where the format of the
73-
* IDENTIFIER can vary for different AUTH_METHODs.
74-
* The value may be {@code null}.
75-
*/
76-
@com.google.api.client.util.Key
77-
private java.lang.String credentialId;
78-
7970
/**
8071
* The authorized presenter of the credential. Reflects the optional Authorized Presenter (`azp`)
8172
* claim within a JWT or the OAuth client id. For example, a Google Cloud Platform client id looks
@@ -178,27 +169,6 @@ public Auth setClaims(java.util.Map<String, java.lang.Object> claims) {
178169
return this;
179170
}
180171

181-
/**
182-
* Identifies the client credential id used for authentication. credential_id is in the format of
183-
* AUTH_METHOD:IDENTIFIER, e.g. "serviceaccount:XXXXX, apikey:XXXXX" where the format of the
184-
* IDENTIFIER can vary for different AUTH_METHODs.
185-
* @return value or {@code null} for none
186-
*/
187-
public java.lang.String getCredentialId() {
188-
return credentialId;
189-
}
190-
191-
/**
192-
* Identifies the client credential id used for authentication. credential_id is in the format of
193-
* AUTH_METHOD:IDENTIFIER, e.g. "serviceaccount:XXXXX, apikey:XXXXX" where the format of the
194-
* IDENTIFIER can vary for different AUTH_METHODs.
195-
* @param credentialId credentialId or {@code null} for none
196-
*/
197-
public Auth setCredentialId(java.lang.String credentialId) {
198-
this.credentialId = credentialId;
199-
return this;
200-
}
201-
202172
/**
203173
* The authorized presenter of the credential. Reflects the optional Authorized Presenter (`azp`)
204174
* claim within a JWT or the OAuth client id. For example, a Google Cloud Platform client id looks

clients/google-api-services-servicecontrol/v2/2.0.0/com/google/api/services/servicecontrol/v2/model/V2HttpRequest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public final class V2HttpRequest extends com.google.api.client.json.GenericJson
7777

7878
/**
7979
* The referer URL of the request, as defined in [HTTP/1.1 Header Field
80-
* Definitions](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html).
80+
* Definitions](https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html).
8181
* The value may be {@code null}.
8282
*/
8383
@com.google.api.client.util.Key
@@ -254,7 +254,7 @@ public V2HttpRequest setProtocol(java.lang.String protocol) {
254254

255255
/**
256256
* The referer URL of the request, as defined in [HTTP/1.1 Header Field
257-
* Definitions](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html).
257+
* Definitions](https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html).
258258
* @return value or {@code null} for none
259259
*/
260260
public java.lang.String getReferer() {
@@ -263,7 +263,7 @@ public java.lang.String getReferer() {
263263

264264
/**
265265
* The referer URL of the request, as defined in [HTTP/1.1 Header Field
266-
* Definitions](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html).
266+
* Definitions](https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html).
267267
* @param referer referer or {@code null} for none
268268
*/
269269
public V2HttpRequest setReferer(java.lang.String referer) {

0 commit comments

Comments
 (0)