Skip to content

Commit 2239618

Browse files
1 parent ade0a94 commit 2239618

File tree

8 files changed

+38
-40
lines changed

8 files changed

+38
-40
lines changed

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

clients/google-api-services-serviceusage/v1/2.0.0/com/google/api/services/serviceusage/v1/model/UsageRule.java

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,7 @@
1717
package com.google.api.services.serviceusage.v1.model;
1818

1919
/**
20-
* Usage configuration rules for the service. NOTE: Under development. Use this rule to configure
21-
* unregistered calls for the service. Unregistered calls are calls that do not contain consumer
22-
* project identity. (Example: calls that do not contain an API key). By default, API methods do not
23-
* allow unregistered calls, and each method call must be identified by a consumer project identity.
24-
* Use this rule to allow/disallow unregistered calls. Example of an API that wants to allow
25-
* unregistered calls for entire service. usage: rules: - selector: "*" allow_unregistered_calls:
26-
* true Example of a method that wants to allow unregistered calls. usage: rules: - selector:
27-
* "google.example.library.v1.LibraryService.CreateBook" allow_unregistered_calls: true
20+
* Usage configuration rules for the service.
2821
*
2922
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
3023
* transmitted over HTTP when working with the Service Usage API. For a detailed explanation see:
@@ -37,8 +30,10 @@
3730
public final class UsageRule extends com.google.api.client.json.GenericJson {
3831

3932
/**
40-
* If true, the selected method allows unregistered calls, e.g. calls that don't identify any user
41-
* or application.
33+
* Use this rule to configure unregistered calls for the service. Unregistered calls are calls
34+
* that do not contain consumer project identity. (Example: calls that do not contain an API key).
35+
* WARNING: By default, API methods do not allow unregistered calls, and each method call must be
36+
* identified by a consumer project identity.
4237
* The value may be {@code null}.
4338
*/
4439
@com.google.api.client.util.Key
@@ -62,17 +57,21 @@ public final class UsageRule extends com.google.api.client.json.GenericJson {
6257
private java.lang.Boolean skipServiceControl;
6358

6459
/**
65-
* If true, the selected method allows unregistered calls, e.g. calls that don't identify any user
66-
* or application.
60+
* Use this rule to configure unregistered calls for the service. Unregistered calls are calls
61+
* that do not contain consumer project identity. (Example: calls that do not contain an API key).
62+
* WARNING: By default, API methods do not allow unregistered calls, and each method call must be
63+
* identified by a consumer project identity.
6764
* @return value or {@code null} for none
6865
*/
6966
public java.lang.Boolean getAllowUnregisteredCalls() {
7067
return allowUnregisteredCalls;
7168
}
7269

7370
/**
74-
* If true, the selected method allows unregistered calls, e.g. calls that don't identify any user
75-
* or application.
71+
* Use this rule to configure unregistered calls for the service. Unregistered calls are calls
72+
* that do not contain consumer project identity. (Example: calls that do not contain an API key).
73+
* WARNING: By default, API methods do not allow unregistered calls, and each method call must be
74+
* identified by a consumer project identity.
7675
* @param allowUnregisteredCalls allowUnregisteredCalls or {@code null} for none
7776
*/
7877
public UsageRule setAllowUnregisteredCalls(java.lang.Boolean allowUnregisteredCalls) {

clients/google-api-services-serviceusage/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-serviceusage</artifactId>
11-
<version>v1-rev20250218-2.0.0</version>
12-
<name>Service Usage API v1-rev20250218-2.0.0</name>
11+
<version>v1-rev20250227-2.0.0</version>
12+
<name>Service Usage API v1-rev20250227-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-serviceusage/v1beta1/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-serviceusage</artifactId>
25-
<version>v1beta1-rev20250218-2.0.0</version>
25+
<version>v1beta1-rev20250227-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-serviceusage:v1beta1-rev20250218-2.0.0'
38+
implementation 'com.google.apis:google-api-services-serviceusage:v1beta1-rev20250227-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-serviceusage/v1beta1/2.0.0/com/google/api/services/serviceusage/v1beta1/model/UsageRule.java

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,7 @@
1717
package com.google.api.services.serviceusage.v1beta1.model;
1818

1919
/**
20-
* Usage configuration rules for the service. NOTE: Under development. Use this rule to configure
21-
* unregistered calls for the service. Unregistered calls are calls that do not contain consumer
22-
* project identity. (Example: calls that do not contain an API key). By default, API methods do not
23-
* allow unregistered calls, and each method call must be identified by a consumer project identity.
24-
* Use this rule to allow/disallow unregistered calls. Example of an API that wants to allow
25-
* unregistered calls for entire service. usage: rules: - selector: "*" allow_unregistered_calls:
26-
* true Example of a method that wants to allow unregistered calls. usage: rules: - selector:
27-
* "google.example.library.v1.LibraryService.CreateBook" allow_unregistered_calls: true
20+
* Usage configuration rules for the service.
2821
*
2922
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
3023
* transmitted over HTTP when working with the Service Usage API. For a detailed explanation see:
@@ -37,8 +30,10 @@
3730
public final class UsageRule extends com.google.api.client.json.GenericJson {
3831

3932
/**
40-
* If true, the selected method allows unregistered calls, e.g. calls that don't identify any user
41-
* or application.
33+
* Use this rule to configure unregistered calls for the service. Unregistered calls are calls
34+
* that do not contain consumer project identity. (Example: calls that do not contain an API key).
35+
* WARNING: By default, API methods do not allow unregistered calls, and each method call must be
36+
* identified by a consumer project identity.
4237
* The value may be {@code null}.
4338
*/
4439
@com.google.api.client.util.Key
@@ -62,17 +57,21 @@ public final class UsageRule extends com.google.api.client.json.GenericJson {
6257
private java.lang.Boolean skipServiceControl;
6358

6459
/**
65-
* If true, the selected method allows unregistered calls, e.g. calls that don't identify any user
66-
* or application.
60+
* Use this rule to configure unregistered calls for the service. Unregistered calls are calls
61+
* that do not contain consumer project identity. (Example: calls that do not contain an API key).
62+
* WARNING: By default, API methods do not allow unregistered calls, and each method call must be
63+
* identified by a consumer project identity.
6764
* @return value or {@code null} for none
6865
*/
6966
public java.lang.Boolean getAllowUnregisteredCalls() {
7067
return allowUnregisteredCalls;
7168
}
7269

7370
/**
74-
* If true, the selected method allows unregistered calls, e.g. calls that don't identify any user
75-
* or application.
71+
* Use this rule to configure unregistered calls for the service. Unregistered calls are calls
72+
* that do not contain consumer project identity. (Example: calls that do not contain an API key).
73+
* WARNING: By default, API methods do not allow unregistered calls, and each method call must be
74+
* identified by a consumer project identity.
7675
* @param allowUnregisteredCalls allowUnregisteredCalls or {@code null} for none
7776
*/
7877
public UsageRule setAllowUnregisteredCalls(java.lang.Boolean allowUnregisteredCalls) {

clients/google-api-services-serviceusage/v1beta1/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-serviceusage</artifactId>
11-
<version>v1beta1-rev20250218-2.0.0</version>
12-
<name>Service Usage API v1beta1-rev20250218-2.0.0</name>
11+
<version>v1beta1-rev20250227-2.0.0</version>
12+
<name>Service Usage API v1beta1-rev20250227-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-serviceusage/v1beta1/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-serviceusage</artifactId>
25-
<version>v1beta1-rev20250218-2.0.0</version>
25+
<version>v1beta1-rev20250227-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-serviceusage:v1beta1-rev20250218-2.0.0'
38+
implementation 'com.google.apis:google-api-services-serviceusage:v1beta1-rev20250227-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)