Skip to content

Commit bedf2ea

Browse files
chore: regenerate serviceconsumermanagement client (googleapis#23917)
Generated in GitHub action: https://togithub.com/googleapis/googleapis/google-api-java-client-services/actions/workflows/codegen.yaml
1 parent 9499a71 commit bedf2ea

File tree

14 files changed

+203
-56
lines changed

14 files changed

+203
-56
lines changed

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

clients/google-api-services-serviceconsumermanagement/v1/2.0.0/com/google/api/services/serviceconsumermanagement/v1/ServiceConsumerManagement.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ public class Operations {
159159
* it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other
160160
* methods to check whether the cancellation succeeded or whether the operation completed despite
161161
* cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an
162-
* operation with an Operation.error value with a google.rpc.Status.code of 1, corresponding to
162+
* operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to
163163
* `Code.CANCELLED`.
164164
*
165165
* Create a request for the method "operations.cancel".
@@ -190,7 +190,7 @@ public class Cancel extends ServiceConsumerManagementRequest<com.google.api.serv
190190
* it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other
191191
* methods to check whether the cancellation succeeded or whether the operation completed despite
192192
* cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an
193-
* operation with an Operation.error value with a google.rpc.Status.code of 1, corresponding to
193+
* operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to
194194
* `Code.CANCELLED`.
195195
*
196196
* Create a request for the method "operations.cancel".

clients/google-api-services-serviceconsumermanagement/v1/2.0.0/com/google/api/services/serviceconsumermanagement/v1/model/ExperimentalFeatures.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,15 @@
3131
@SuppressWarnings("javadoc")
3232
public final class ExperimentalFeatures extends com.google.api.client.json.GenericJson {
3333

34+
/**
35+
* Enables generation of protobuf code using new types that are more Pythonic which are included
36+
* in `protobuf>=5.29.x`. This feature will be enabled by default 1 month after launching the
37+
* feature in preview packages.
38+
* The value may be {@code null}.
39+
*/
40+
@com.google.api.client.util.Key
41+
private java.lang.Boolean protobufPythonicTypesEnabled;
42+
3443
/**
3544
* Enables generation of asynchronous REST clients if `rest` transport is enabled. By default,
3645
* asynchronous REST clients will not be generated. This feature will be enabled by default 1
@@ -40,6 +49,27 @@ public final class ExperimentalFeatures extends com.google.api.client.json.Gener
4049
@com.google.api.client.util.Key
4150
private java.lang.Boolean restAsyncIoEnabled;
4251

52+
/**
53+
* Enables generation of protobuf code using new types that are more Pythonic which are included
54+
* in `protobuf>=5.29.x`. This feature will be enabled by default 1 month after launching the
55+
* feature in preview packages.
56+
* @return value or {@code null} for none
57+
*/
58+
public java.lang.Boolean getProtobufPythonicTypesEnabled() {
59+
return protobufPythonicTypesEnabled;
60+
}
61+
62+
/**
63+
* Enables generation of protobuf code using new types that are more Pythonic which are included
64+
* in `protobuf>=5.29.x`. This feature will be enabled by default 1 month after launching the
65+
* feature in preview packages.
66+
* @param protobufPythonicTypesEnabled protobufPythonicTypesEnabled or {@code null} for none
67+
*/
68+
public ExperimentalFeatures setProtobufPythonicTypesEnabled(java.lang.Boolean protobufPythonicTypesEnabled) {
69+
this.protobufPythonicTypesEnabled = protobufPythonicTypesEnabled;
70+
return this;
71+
}
72+
4373
/**
4474
* Enables generation of asynchronous REST clients if `rest` transport is enabled. By default,
4575
* asynchronous REST clients will not be generated. This feature will be enabled by default 1

clients/google-api-services-serviceconsumermanagement/v1/2.0.0/com/google/api/services/serviceconsumermanagement/v1/model/GoSettings.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,15 @@ public final class GoSettings extends com.google.api.client.json.GenericJson {
3737
@com.google.api.client.util.Key
3838
private CommonLanguageSettings common;
3939

40+
/**
41+
* Map of service names to renamed services. Keys are the package relative service names and
42+
* values are the name to be used for the service client and call options. publishing:
43+
* go_settings: renamed_services: Publisher: TopicAdmin
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private java.util.Map<String, java.lang.String> renamedServices;
48+
4049
/**
4150
* Some settings.
4251
* @return value or {@code null} for none
@@ -54,6 +63,27 @@ public GoSettings setCommon(CommonLanguageSettings common) {
5463
return this;
5564
}
5665

66+
/**
67+
* Map of service names to renamed services. Keys are the package relative service names and
68+
* values are the name to be used for the service client and call options. publishing:
69+
* go_settings: renamed_services: Publisher: TopicAdmin
70+
* @return value or {@code null} for none
71+
*/
72+
public java.util.Map<String, java.lang.String> getRenamedServices() {
73+
return renamedServices;
74+
}
75+
76+
/**
77+
* Map of service names to renamed services. Keys are the package relative service names and
78+
* values are the name to be used for the service client and call options. publishing:
79+
* go_settings: renamed_services: Publisher: TopicAdmin
80+
* @param renamedServices renamedServices or {@code null} for none
81+
*/
82+
public GoSettings setRenamedServices(java.util.Map<String, java.lang.String> renamedServices) {
83+
this.renamedServices = renamedServices;
84+
return this;
85+
}
86+
5787
@Override
5888
public GoSettings set(String fieldName, Object value) {
5989
return (GoSettings) super.set(fieldName, value);

clients/google-api-services-serviceconsumermanagement/v1/2.0.0/com/google/api/services/serviceconsumermanagement/v1/model/QuotaLimit.java

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,10 @@ public final class QuotaLimit extends com.google.api.client.json.GenericJson {
110110
private java.lang.String name;
111111

112112
/**
113-
* Specify the unit of the quota limit. It uses the same syntax as Metric.unit. The supported unit
114-
* kinds are determined by the quota backend system. Here are some examples: * "1/min/{project}"
115-
* for quota per minute per project. Note: the order of unit components is insignificant. The "1"
116-
* at the beginning is required to follow the metric unit syntax.
113+
* Specify the unit of the quota limit. It uses the same syntax as MetricDescriptor.unit. The
114+
* supported unit kinds are determined by the quota backend system. Here are some examples: *
115+
* "1/min/{project}" for quota per minute per project. Note: the order of unit components is
116+
* insignificant. The "1" at the beginning is required to follow the metric unit syntax.
117117
* The value may be {@code null}.
118118
*/
119119
@com.google.api.client.util.Key
@@ -307,21 +307,21 @@ public QuotaLimit setName(java.lang.String name) {
307307
}
308308

309309
/**
310-
* Specify the unit of the quota limit. It uses the same syntax as Metric.unit. The supported unit
311-
* kinds are determined by the quota backend system. Here are some examples: * "1/min/{project}"
312-
* for quota per minute per project. Note: the order of unit components is insignificant. The "1"
313-
* at the beginning is required to follow the metric unit syntax.
310+
* Specify the unit of the quota limit. It uses the same syntax as MetricDescriptor.unit. The
311+
* supported unit kinds are determined by the quota backend system. Here are some examples: *
312+
* "1/min/{project}" for quota per minute per project. Note: the order of unit components is
313+
* insignificant. The "1" at the beginning is required to follow the metric unit syntax.
314314
* @return value or {@code null} for none
315315
*/
316316
public java.lang.String getUnit() {
317317
return unit;
318318
}
319319

320320
/**
321-
* Specify the unit of the quota limit. It uses the same syntax as Metric.unit. The supported unit
322-
* kinds are determined by the quota backend system. Here are some examples: * "1/min/{project}"
323-
* for quota per minute per project. Note: the order of unit components is insignificant. The "1"
324-
* at the beginning is required to follow the metric unit syntax.
321+
* Specify the unit of the quota limit. It uses the same syntax as MetricDescriptor.unit. The
322+
* supported unit kinds are determined by the quota backend system. Here are some examples: *
323+
* "1/min/{project}" for quota per minute per project. Note: the order of unit components is
324+
* insignificant. The "1" at the beginning is required to follow the metric unit syntax.
325325
* @param unit unit or {@code null} for none
326326
*/
327327
public QuotaLimit setUnit(java.lang.String unit) {

clients/google-api-services-serviceconsumermanagement/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-serviceconsumermanagement</artifactId>
11-
<version>v1-rev20240929-2.0.0</version>
12-
<name>Service Consumer Management API v1-rev20240929-2.0.0</name>
11+
<version>v1-rev20241115-2.0.0</version>
12+
<name>Service Consumer Management API v1-rev20241115-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

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

clients/google-api-services-serviceconsumermanagement/v1beta1/2.0.0/com/google/api/services/serviceconsumermanagement/v1beta1/model/ExperimentalFeatures.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,15 @@
3131
@SuppressWarnings("javadoc")
3232
public final class ExperimentalFeatures extends com.google.api.client.json.GenericJson {
3333

34+
/**
35+
* Enables generation of protobuf code using new types that are more Pythonic which are included
36+
* in `protobuf>=5.29.x`. This feature will be enabled by default 1 month after launching the
37+
* feature in preview packages.
38+
* The value may be {@code null}.
39+
*/
40+
@com.google.api.client.util.Key
41+
private java.lang.Boolean protobufPythonicTypesEnabled;
42+
3443
/**
3544
* Enables generation of asynchronous REST clients if `rest` transport is enabled. By default,
3645
* asynchronous REST clients will not be generated. This feature will be enabled by default 1
@@ -40,6 +49,27 @@ public final class ExperimentalFeatures extends com.google.api.client.json.Gener
4049
@com.google.api.client.util.Key
4150
private java.lang.Boolean restAsyncIoEnabled;
4251

52+
/**
53+
* Enables generation of protobuf code using new types that are more Pythonic which are included
54+
* in `protobuf>=5.29.x`. This feature will be enabled by default 1 month after launching the
55+
* feature in preview packages.
56+
* @return value or {@code null} for none
57+
*/
58+
public java.lang.Boolean getProtobufPythonicTypesEnabled() {
59+
return protobufPythonicTypesEnabled;
60+
}
61+
62+
/**
63+
* Enables generation of protobuf code using new types that are more Pythonic which are included
64+
* in `protobuf>=5.29.x`. This feature will be enabled by default 1 month after launching the
65+
* feature in preview packages.
66+
* @param protobufPythonicTypesEnabled protobufPythonicTypesEnabled or {@code null} for none
67+
*/
68+
public ExperimentalFeatures setProtobufPythonicTypesEnabled(java.lang.Boolean protobufPythonicTypesEnabled) {
69+
this.protobufPythonicTypesEnabled = protobufPythonicTypesEnabled;
70+
return this;
71+
}
72+
4373
/**
4474
* Enables generation of asynchronous REST clients if `rest` transport is enabled. By default,
4575
* asynchronous REST clients will not be generated. This feature will be enabled by default 1

clients/google-api-services-serviceconsumermanagement/v1beta1/2.0.0/com/google/api/services/serviceconsumermanagement/v1beta1/model/GoSettings.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,15 @@ public final class GoSettings extends com.google.api.client.json.GenericJson {
3737
@com.google.api.client.util.Key
3838
private CommonLanguageSettings common;
3939

40+
/**
41+
* Map of service names to renamed services. Keys are the package relative service names and
42+
* values are the name to be used for the service client and call options. publishing:
43+
* go_settings: renamed_services: Publisher: TopicAdmin
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private java.util.Map<String, java.lang.String> renamedServices;
48+
4049
/**
4150
* Some settings.
4251
* @return value or {@code null} for none
@@ -54,6 +63,27 @@ public GoSettings setCommon(CommonLanguageSettings common) {
5463
return this;
5564
}
5665

66+
/**
67+
* Map of service names to renamed services. Keys are the package relative service names and
68+
* values are the name to be used for the service client and call options. publishing:
69+
* go_settings: renamed_services: Publisher: TopicAdmin
70+
* @return value or {@code null} for none
71+
*/
72+
public java.util.Map<String, java.lang.String> getRenamedServices() {
73+
return renamedServices;
74+
}
75+
76+
/**
77+
* Map of service names to renamed services. Keys are the package relative service names and
78+
* values are the name to be used for the service client and call options. publishing:
79+
* go_settings: renamed_services: Publisher: TopicAdmin
80+
* @param renamedServices renamedServices or {@code null} for none
81+
*/
82+
public GoSettings setRenamedServices(java.util.Map<String, java.lang.String> renamedServices) {
83+
this.renamedServices = renamedServices;
84+
return this;
85+
}
86+
5787
@Override
5888
public GoSettings set(String fieldName, Object value) {
5989
return (GoSettings) super.set(fieldName, value);

0 commit comments

Comments
 (0)