Skip to content

Commit 148c390

Browse files
1 parent 18c514d commit 148c390

File tree

12 files changed

+164
-34
lines changed

12 files changed

+164
-34
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-rev20230215-2.0.0</version>
25+
<version>v1-rev20230309-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-rev20230215-2.0.0'
38+
implementation 'com.google.apis:google-api-services-serviceusage:v1-rev20230309-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -571,12 +571,7 @@ public Get set(String parameterName, Object value) {
571571
}
572572
/**
573573
* Lists operations that match the specified filter in the request. If the server doesn't support
574-
* this method, it returns `UNIMPLEMENTED`. NOTE: the `name` binding allows API services to override
575-
* the binding to use different resource name schemes, such as `users/operations`. To override the
576-
* binding, API services can add a binding such as `"/v1/{name=users}/operations"` to their service
577-
* configuration. For backwards compatibility, the default name includes the operations collection
578-
* id, however overriding users must ensure the name binding is the parent resource, without the
579-
* operations collection id.
574+
* this method, it returns `UNIMPLEMENTED`.
580575
*
581576
* Create a request for the method "operations.list".
582577
*
@@ -597,12 +592,7 @@ public class List extends ServiceUsageRequest<com.google.api.services.serviceusa
597592

598593
/**
599594
* Lists operations that match the specified filter in the request. If the server doesn't support
600-
* this method, it returns `UNIMPLEMENTED`. NOTE: the `name` binding allows API services to
601-
* override the binding to use different resource name schemes, such as `users/operations`. To
602-
* override the binding, API services can add a binding such as `"/v1/{name=users}/operations"` to
603-
* their service configuration. For backwards compatibility, the default name includes the
604-
* operations collection id, however overriding users must ensure the name binding is the parent
605-
* resource, without the operations collection id.
595+
* this method, it returns `UNIMPLEMENTED`.
606596
*
607597
* Create a request for the method "operations.list".
608598
*

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,14 @@ public final class Publishing extends com.google.api.client.json.GenericJson {
111111
@com.google.api.client.util.Key
112112
private java.lang.String organization;
113113

114+
/**
115+
* Optional link to proto reference documentation. Example:
116+
* https://cloud.google.com/pubsub/lite/docs/reference/rpc
117+
* The value may be {@code null}.
118+
*/
119+
@com.google.api.client.util.Key
120+
private java.lang.String protoReferenceDocumentationUri;
121+
114122
/**
115123
* Used as a tracking tag when collecting data about the APIs developer relations artifacts like
116124
* docs, packages delivered to package managers, etc. Example: "speech".
@@ -274,6 +282,25 @@ public Publishing setOrganization(java.lang.String organization) {
274282
return this;
275283
}
276284

285+
/**
286+
* Optional link to proto reference documentation. Example:
287+
* https://cloud.google.com/pubsub/lite/docs/reference/rpc
288+
* @return value or {@code null} for none
289+
*/
290+
public java.lang.String getProtoReferenceDocumentationUri() {
291+
return protoReferenceDocumentationUri;
292+
}
293+
294+
/**
295+
* Optional link to proto reference documentation. Example:
296+
* https://cloud.google.com/pubsub/lite/docs/reference/rpc
297+
* @param protoReferenceDocumentationUri protoReferenceDocumentationUri or {@code null} for none
298+
*/
299+
public Publishing setProtoReferenceDocumentationUri(java.lang.String protoReferenceDocumentationUri) {
300+
this.protoReferenceDocumentationUri = protoReferenceDocumentationUri;
301+
return this;
302+
}
303+
277304
@Override
278305
public Publishing set(String fieldName, Object value) {
279306
return (Publishing) super.set(fieldName, value);

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@
2929
@SuppressWarnings("javadoc")
3030
public final class ServiceUsageEnum extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* The source edition string, only valid when syntax is SYNTAX_EDITIONS.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String edition;
38+
3239
/**
3340
* Enum value definitions.
3441
* The value may be {@code null}.
@@ -64,6 +71,23 @@ public final class ServiceUsageEnum extends com.google.api.client.json.GenericJs
6471
@com.google.api.client.util.Key
6572
private java.lang.String syntax;
6673

74+
/**
75+
* The source edition string, only valid when syntax is SYNTAX_EDITIONS.
76+
* @return value or {@code null} for none
77+
*/
78+
public java.lang.String getEdition() {
79+
return edition;
80+
}
81+
82+
/**
83+
* The source edition string, only valid when syntax is SYNTAX_EDITIONS.
84+
* @param edition edition or {@code null} for none
85+
*/
86+
public ServiceUsageEnum setEdition(java.lang.String edition) {
87+
this.edition = edition;
88+
return this;
89+
}
90+
6791
/**
6892
* Enum value definitions.
6993
* @return value or {@code null} for none

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@
2929
@SuppressWarnings("javadoc")
3030
public final class Type extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* The source edition string, only valid when syntax is SYNTAX_EDITIONS.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String edition;
38+
3239
/**
3340
* The list of fields.
3441
* The value may be {@code null}.
@@ -83,6 +90,23 @@ public final class Type extends com.google.api.client.json.GenericJson {
8390
@com.google.api.client.util.Key
8491
private java.lang.String syntax;
8592

93+
/**
94+
* The source edition string, only valid when syntax is SYNTAX_EDITIONS.
95+
* @return value or {@code null} for none
96+
*/
97+
public java.lang.String getEdition() {
98+
return edition;
99+
}
100+
101+
/**
102+
* The source edition string, only valid when syntax is SYNTAX_EDITIONS.
103+
* @param edition edition or {@code null} for none
104+
*/
105+
public Type setEdition(java.lang.String edition) {
106+
this.edition = edition;
107+
return this;
108+
}
109+
86110
/**
87111
* The list of fields.
88112
* @return value or {@code null} for none

clients/google-api-services-serviceusage/v1/2.0.0/pom.xml

Lines changed: 3 additions & 3 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-rev20230215-2.0.0</version>
12-
<name>Service Usage API v1-rev20230215-2.0.0</name>
11+
<version>v1-rev20230309-2.0.0</version>
12+
<name>Service Usage API v1-rev20230309-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>
@@ -90,7 +90,7 @@
9090
<windowtitle>Service Usage API ${project.version}</windowtitle>
9191
<links>
9292
<link>http://docs.oracle.com/javase/7/docs/api</link>
93-
<link>https://googleapis.dev/java/google-http-client/1.42.3/</link>
93+
<link>https://googleapis.dev/java/google-http-client/1.43.1/</link>
9494
<link>https://googleapis.dev/java/google-oauth-client/1.34.1/</link>
9595
<link>https://googleapis.dev/java/google-api-client/2.2.0/</link>
9696
</links>

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

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

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -295,12 +295,7 @@ public Get set(String parameterName, Object value) {
295295
}
296296
/**
297297
* Lists operations that match the specified filter in the request. If the server doesn't support
298-
* this method, it returns `UNIMPLEMENTED`. NOTE: the `name` binding allows API services to override
299-
* the binding to use different resource name schemes, such as `users/operations`. To override the
300-
* binding, API services can add a binding such as `"/v1/{name=users}/operations"` to their service
301-
* configuration. For backwards compatibility, the default name includes the operations collection
302-
* id, however overriding users must ensure the name binding is the parent resource, without the
303-
* operations collection id.
298+
* this method, it returns `UNIMPLEMENTED`.
304299
*
305300
* Create a request for the method "operations.list".
306301
*
@@ -321,12 +316,7 @@ public class List extends ServiceUsageRequest<com.google.api.services.serviceusa
321316

322317
/**
323318
* Lists operations that match the specified filter in the request. If the server doesn't support
324-
* this method, it returns `UNIMPLEMENTED`. NOTE: the `name` binding allows API services to
325-
* override the binding to use different resource name schemes, such as `users/operations`. To
326-
* override the binding, API services can add a binding such as `"/v1/{name=users}/operations"` to
327-
* their service configuration. For backwards compatibility, the default name includes the
328-
* operations collection id, however overriding users must ensure the name binding is the parent
329-
* resource, without the operations collection id.
319+
* this method, it returns `UNIMPLEMENTED`.
330320
*
331321
* Create a request for the method "operations.list".
332322
*

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,14 @@ public final class Publishing extends com.google.api.client.json.GenericJson {
111111
@com.google.api.client.util.Key
112112
private java.lang.String organization;
113113

114+
/**
115+
* Optional link to proto reference documentation. Example:
116+
* https://cloud.google.com/pubsub/lite/docs/reference/rpc
117+
* The value may be {@code null}.
118+
*/
119+
@com.google.api.client.util.Key
120+
private java.lang.String protoReferenceDocumentationUri;
121+
114122
/**
115123
* Used as a tracking tag when collecting data about the APIs developer relations artifacts like
116124
* docs, packages delivered to package managers, etc. Example: "speech".
@@ -274,6 +282,25 @@ public Publishing setOrganization(java.lang.String organization) {
274282
return this;
275283
}
276284

285+
/**
286+
* Optional link to proto reference documentation. Example:
287+
* https://cloud.google.com/pubsub/lite/docs/reference/rpc
288+
* @return value or {@code null} for none
289+
*/
290+
public java.lang.String getProtoReferenceDocumentationUri() {
291+
return protoReferenceDocumentationUri;
292+
}
293+
294+
/**
295+
* Optional link to proto reference documentation. Example:
296+
* https://cloud.google.com/pubsub/lite/docs/reference/rpc
297+
* @param protoReferenceDocumentationUri protoReferenceDocumentationUri or {@code null} for none
298+
*/
299+
public Publishing setProtoReferenceDocumentationUri(java.lang.String protoReferenceDocumentationUri) {
300+
this.protoReferenceDocumentationUri = protoReferenceDocumentationUri;
301+
return this;
302+
}
303+
277304
@Override
278305
public Publishing set(String fieldName, Object value) {
279306
return (Publishing) super.set(fieldName, value);

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@
2929
@SuppressWarnings("javadoc")
3030
public final class ServiceUsageEnum extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* The source edition string, only valid when syntax is SYNTAX_EDITIONS.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String edition;
38+
3239
/**
3340
* Enum value definitions.
3441
* The value may be {@code null}.
@@ -64,6 +71,23 @@ public final class ServiceUsageEnum extends com.google.api.client.json.GenericJs
6471
@com.google.api.client.util.Key
6572
private java.lang.String syntax;
6673

74+
/**
75+
* The source edition string, only valid when syntax is SYNTAX_EDITIONS.
76+
* @return value or {@code null} for none
77+
*/
78+
public java.lang.String getEdition() {
79+
return edition;
80+
}
81+
82+
/**
83+
* The source edition string, only valid when syntax is SYNTAX_EDITIONS.
84+
* @param edition edition or {@code null} for none
85+
*/
86+
public ServiceUsageEnum setEdition(java.lang.String edition) {
87+
this.edition = edition;
88+
return this;
89+
}
90+
6791
/**
6892
* Enum value definitions.
6993
* @return value or {@code null} for none

0 commit comments

Comments
 (0)