Skip to content

Commit c41d9f8

Browse files
1 parent bf74480 commit c41d9f8

File tree

6 files changed

+28
-28
lines changed

6 files changed

+28
-28
lines changed

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

clients/google-api-services-servicenetworking/v1/2.0.0/com/google/api/services/servicenetworking/v1/model/Quota.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323
* quota.limits defines limits on the metrics, which will be used for quota checks at runtime. An
2424
* example quota configuration in yaml format: quota: limits: - name: apiWriteQpsPerProject metric:
2525
* library.googleapis.com/write_calls unit: "1/min/{project}" # rate limit for consumer projects
26-
* values: STANDARD: 10000 # The metric rules bind all methods to the read_calls metric, # except
27-
* for the UpdateBook and DeleteBook methods. These two methods # are mapped to the write_calls
28-
* metric, with the UpdateBook method # consuming at twice rate as the DeleteBook method.
29-
* metric_rules: - selector: "*" metric_costs: library.googleapis.com/read_calls: 1 - selector:
26+
* values: STANDARD: 10000 (The metric rules bind all methods to the read_calls metric, except for
27+
* the UpdateBook and DeleteBook methods. These two methods are mapped to the write_calls metric,
28+
* with the UpdateBook method consuming at twice rate as the DeleteBook method.) metric_rules: -
29+
* selector: "*" metric_costs: library.googleapis.com/read_calls: 1 - selector:
3030
* google.example.library.v1.LibraryService.UpdateBook metric_costs:
3131
* library.googleapis.com/write_calls: 2 - selector:
3232
* google.example.library.v1.LibraryService.DeleteBook metric_costs:
@@ -47,14 +47,14 @@
4747
public final class Quota extends com.google.api.client.json.GenericJson {
4848

4949
/**
50-
* List of `QuotaLimit` definitions for the service.
50+
* List of QuotaLimit definitions for the service.
5151
* The value may be {@code null}.
5252
*/
5353
@com.google.api.client.util.Key
5454
private java.util.List<QuotaLimit> limits;
5555

5656
/**
57-
* List of `MetricRule` definitions, each one mapping a selected method to one or more metrics.
57+
* List of MetricRule definitions, each one mapping a selected method to one or more metrics.
5858
* The value may be {@code null}.
5959
*/
6060
@com.google.api.client.util.Key
@@ -67,15 +67,15 @@ public final class Quota extends com.google.api.client.json.GenericJson {
6767
}
6868

6969
/**
70-
* List of `QuotaLimit` definitions for the service.
70+
* List of QuotaLimit definitions for the service.
7171
* @return value or {@code null} for none
7272
*/
7373
public java.util.List<QuotaLimit> getLimits() {
7474
return limits;
7575
}
7676

7777
/**
78-
* List of `QuotaLimit` definitions for the service.
78+
* List of QuotaLimit definitions for the service.
7979
* @param limits limits or {@code null} for none
8080
*/
8181
public Quota setLimits(java.util.List<QuotaLimit> limits) {
@@ -84,15 +84,15 @@ public Quota setLimits(java.util.List<QuotaLimit> limits) {
8484
}
8585

8686
/**
87-
* List of `MetricRule` definitions, each one mapping a selected method to one or more metrics.
87+
* List of MetricRule definitions, each one mapping a selected method to one or more metrics.
8888
* @return value or {@code null} for none
8989
*/
9090
public java.util.List<MetricRule> getMetricRules() {
9191
return metricRules;
9292
}
9393

9494
/**
95-
* List of `MetricRule` definitions, each one mapping a selected method to one or more metrics.
95+
* List of MetricRule definitions, each one mapping a selected method to one or more metrics.
9696
* @param metricRules metricRules or {@code null} for none
9797
*/
9898
public Quota setMetricRules(java.util.List<MetricRule> metricRules) {

clients/google-api-services-servicenetworking/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-servicenetworking</artifactId>
11-
<version>v1-rev20220822-2.0.0</version>
12-
<name>Service Networking API v1-rev20220822-2.0.0</name>
11+
<version>v1-rev20220904-2.0.0</version>
12+
<name>Service Networking API v1-rev20220904-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-servicenetworking/v1beta/2.0.0/com/google/api/services/servicenetworking/v1beta/model/Quota.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323
* quota.limits defines limits on the metrics, which will be used for quota checks at runtime. An
2424
* example quota configuration in yaml format: quota: limits: - name: apiWriteQpsPerProject metric:
2525
* library.googleapis.com/write_calls unit: "1/min/{project}" # rate limit for consumer projects
26-
* values: STANDARD: 10000 # The metric rules bind all methods to the read_calls metric, # except
27-
* for the UpdateBook and DeleteBook methods. These two methods # are mapped to the write_calls
28-
* metric, with the UpdateBook method # consuming at twice rate as the DeleteBook method.
29-
* metric_rules: - selector: "*" metric_costs: library.googleapis.com/read_calls: 1 - selector:
26+
* values: STANDARD: 10000 (The metric rules bind all methods to the read_calls metric, except for
27+
* the UpdateBook and DeleteBook methods. These two methods are mapped to the write_calls metric,
28+
* with the UpdateBook method consuming at twice rate as the DeleteBook method.) metric_rules: -
29+
* selector: "*" metric_costs: library.googleapis.com/read_calls: 1 - selector:
3030
* google.example.library.v1.LibraryService.UpdateBook metric_costs:
3131
* library.googleapis.com/write_calls: 2 - selector:
3232
* google.example.library.v1.LibraryService.DeleteBook metric_costs:
@@ -47,14 +47,14 @@
4747
public final class Quota extends com.google.api.client.json.GenericJson {
4848

4949
/**
50-
* List of `QuotaLimit` definitions for the service.
50+
* List of QuotaLimit definitions for the service.
5151
* The value may be {@code null}.
5252
*/
5353
@com.google.api.client.util.Key
5454
private java.util.List<QuotaLimit> limits;
5555

5656
/**
57-
* List of `MetricRule` definitions, each one mapping a selected method to one or more metrics.
57+
* List of MetricRule definitions, each one mapping a selected method to one or more metrics.
5858
* The value may be {@code null}.
5959
*/
6060
@com.google.api.client.util.Key
@@ -67,15 +67,15 @@ public final class Quota extends com.google.api.client.json.GenericJson {
6767
}
6868

6969
/**
70-
* List of `QuotaLimit` definitions for the service.
70+
* List of QuotaLimit definitions for the service.
7171
* @return value or {@code null} for none
7272
*/
7373
public java.util.List<QuotaLimit> getLimits() {
7474
return limits;
7575
}
7676

7777
/**
78-
* List of `QuotaLimit` definitions for the service.
78+
* List of QuotaLimit definitions for the service.
7979
* @param limits limits or {@code null} for none
8080
*/
8181
public Quota setLimits(java.util.List<QuotaLimit> limits) {
@@ -84,15 +84,15 @@ public Quota setLimits(java.util.List<QuotaLimit> limits) {
8484
}
8585

8686
/**
87-
* List of `MetricRule` definitions, each one mapping a selected method to one or more metrics.
87+
* List of MetricRule definitions, each one mapping a selected method to one or more metrics.
8888
* @return value or {@code null} for none
8989
*/
9090
public java.util.List<MetricRule> getMetricRules() {
9191
return metricRules;
9292
}
9393

9494
/**
95-
* List of `MetricRule` definitions, each one mapping a selected method to one or more metrics.
95+
* List of MetricRule definitions, each one mapping a selected method to one or more metrics.
9696
* @param metricRules metricRules or {@code null} for none
9797
*/
9898
public Quota setMetricRules(java.util.List<MetricRule> metricRules) {

clients/google-api-services-servicenetworking/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-servicenetworking</artifactId>
11-
<version>v1beta-rev20220822-2.0.0</version>
12-
<name>Service Networking API v1beta-rev20220822-2.0.0</name>
11+
<version>v1beta-rev20220904-2.0.0</version>
12+
<name>Service Networking API v1beta-rev20220904-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

0 commit comments

Comments
 (0)