Skip to content

Commit fcd4612

Browse files
1 parent 2eabae4 commit fcd4612

File tree

14 files changed

+135
-43
lines changed

14 files changed

+135
-43
lines changed

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

clients/google-api-services-servicemanagement/v1/2.0.0/com/google/api/services/servicemanagement/model/Api.java

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@
2222
* are different from API Services, which represent a concrete implementation of an interface as
2323
* opposed to simply a description of methods and bindings. They are also sometimes simply referred
2424
* to as "APIs" in other contexts, such as the name of this message itself. See
25-
* https://cloud.google.com/apis/design/glossary for detailed terminology.
25+
* https://cloud.google.com/apis/design/glossary for detailed terminology. New usages of this
26+
* message as an alternative to ServiceDescriptorProto are strongly discouraged. This message does
27+
* not reliability preserve all information necessary to model the schema and preserve semantics.
28+
* Instead make use of FileDescriptorSet which preserves the necessary information.
2629
*
2730
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2831
* transmitted over HTTP when working with the Service Management API. For a detailed explanation
@@ -35,6 +38,13 @@
3538
@SuppressWarnings("javadoc")
3639
public final class Api extends com.google.api.client.json.GenericJson {
3740

41+
/**
42+
* The source edition string, only valid when syntax is SYNTAX_EDITIONS.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String edition;
47+
3848
/**
3949
* The methods of this interface, in unspecified order.
4050
* The value may be {@code null}.
@@ -95,6 +105,23 @@ public final class Api extends com.google.api.client.json.GenericJson {
95105
@com.google.api.client.util.Key
96106
private java.lang.String version;
97107

108+
/**
109+
* The source edition string, only valid when syntax is SYNTAX_EDITIONS.
110+
* @return value or {@code null} for none
111+
*/
112+
public java.lang.String getEdition() {
113+
return edition;
114+
}
115+
116+
/**
117+
* The source edition string, only valid when syntax is SYNTAX_EDITIONS.
118+
* @param edition edition or {@code null} for none
119+
*/
120+
public Api setEdition(java.lang.String edition) {
121+
this.edition = edition;
122+
return this;
123+
}
124+
98125
/**
99126
* The methods of this interface, in unspecified order.
100127
* @return value or {@code null} for none

clients/google-api-services-servicemanagement/v1/2.0.0/com/google/api/services/servicemanagement/model/BackendRule.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ public final class BackendRule extends com.google.api.client.json.GenericJson {
100100
private java.util.Map<String, BackendRule> overridesByRequestProtocol;
101101

102102
/**
103+
* no-lint
103104
* The value may be {@code null}.
104105
*/
105106
@com.google.api.client.util.Key
@@ -288,13 +289,15 @@ public BackendRule setOverridesByRequestProtocol(java.util.Map<String, BackendRu
288289
}
289290

290291
/**
292+
* no-lint
291293
* @return value or {@code null} for none
292294
*/
293295
public java.lang.String getPathTranslation() {
294296
return pathTranslation;
295297
}
296298

297299
/**
300+
* no-lint
298301
* @param pathTranslation pathTranslation or {@code null} for none
299302
*/
300303
public BackendRule setPathTranslation(java.lang.String pathTranslation) {

clients/google-api-services-servicemanagement/v1/2.0.0/com/google/api/services/servicemanagement/model/EnumValue.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@
1717
package com.google.api.services.servicemanagement.model;
1818

1919
/**
20-
* Enum value definition.
20+
* Enum value definition. New usages of this message as an alternative to EnumValueDescriptorProto
21+
* are strongly discouraged. This message does not reliability preserve all information necessary to
22+
* model the schema and preserve semantics. Instead make use of FileDescriptorSet which preserves
23+
* the necessary information.
2124
*
2225
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2326
* transmitted over HTTP when working with the Service Management API. For a detailed explanation

clients/google-api-services-servicemanagement/v1/2.0.0/com/google/api/services/servicemanagement/model/Field.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@
1717
package com.google.api.services.servicemanagement.model;
1818

1919
/**
20-
* A single field of a message type.
20+
* A single field of a message type. New usages of this message as an alternative to
21+
* FieldDescriptorProto are strongly discouraged. This message does not reliability preserve all
22+
* information necessary to model the schema and preserve semantics. Instead make use of
23+
* FileDescriptorSet which preserves the necessary information.
2124
*
2225
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2326
* transmitted over HTTP when working with the Service Management API. For a detailed explanation

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

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

4040
/**
4141
* 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:
42+
* values are the name to be used for the service client and call options. Example: publishing:
4343
* go_settings: renamed_services: Publisher: TopicAdmin
4444
* The value may be {@code null}.
4545
*/
@@ -65,7 +65,7 @@ public GoSettings setCommon(CommonLanguageSettings common) {
6565

6666
/**
6767
* 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:
68+
* values are the name to be used for the service client and call options. Example: publishing:
6969
* go_settings: renamed_services: Publisher: TopicAdmin
7070
* @return value or {@code null} for none
7171
*/
@@ -75,7 +75,7 @@ public java.util.Map<String, java.lang.String> getRenamedServices() {
7575

7676
/**
7777
* 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:
78+
* values are the name to be used for the service client and call options. Example: publishing:
7979
* go_settings: renamed_services: Publisher: TopicAdmin
8080
* @param renamedServices renamedServices or {@code null} for none
8181
*/

clients/google-api-services-servicemanagement/v1/2.0.0/com/google/api/services/servicemanagement/model/Method.java

Lines changed: 40 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@
1717
package com.google.api.services.servicemanagement.model;
1818

1919
/**
20-
* Method represents a method of an API interface.
20+
* Method represents a method of an API interface. New usages of this message as an alternative to
21+
* MethodDescriptorProto are strongly discouraged. This message does not reliability preserve all
22+
* information necessary to model the schema and preserve semantics. Instead make use of
23+
* FileDescriptorSet which preserves the necessary information.
2124
*
2225
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2326
* transmitted over HTTP when working with the Service Management API. For a detailed explanation
@@ -30,6 +33,15 @@
3033
@SuppressWarnings("javadoc")
3134
public final class Method extends com.google.api.client.json.GenericJson {
3235

36+
/**
37+
* The source edition string, only valid when syntax is SYNTAX_EDITIONS. This field should be
38+
* ignored, instead the edition should be inherited from Api. This is similar to Field and
39+
* EnumValue.
40+
* The value may be {@code null}.
41+
*/
42+
@com.google.api.client.util.Key
43+
private java.lang.String edition;
44+
3345
/**
3446
* The simple name of this method.
3547
* The value may be {@code null}.
@@ -73,12 +85,34 @@ public final class Method extends com.google.api.client.json.GenericJson {
7385
private java.lang.String responseTypeUrl;
7486

7587
/**
76-
* The source syntax of this method.
88+
* The source syntax of this method. This field should be ignored, instead the syntax should be
89+
* inherited from Api. This is similar to Field and EnumValue.
7790
* The value may be {@code null}.
7891
*/
7992
@com.google.api.client.util.Key
8093
private java.lang.String syntax;
8194

95+
/**
96+
* The source edition string, only valid when syntax is SYNTAX_EDITIONS. This field should be
97+
* ignored, instead the edition should be inherited from Api. This is similar to Field and
98+
* EnumValue.
99+
* @return value or {@code null} for none
100+
*/
101+
public java.lang.String getEdition() {
102+
return edition;
103+
}
104+
105+
/**
106+
* The source edition string, only valid when syntax is SYNTAX_EDITIONS. This field should be
107+
* ignored, instead the edition should be inherited from Api. This is similar to Field and
108+
* EnumValue.
109+
* @param edition edition or {@code null} for none
110+
*/
111+
public Method setEdition(java.lang.String edition) {
112+
this.edition = edition;
113+
return this;
114+
}
115+
82116
/**
83117
* The simple name of this method.
84118
* @return value or {@code null} for none
@@ -182,15 +216,17 @@ public Method setResponseTypeUrl(java.lang.String responseTypeUrl) {
182216
}
183217

184218
/**
185-
* The source syntax of this method.
219+
* The source syntax of this method. This field should be ignored, instead the syntax should be
220+
* inherited from Api. This is similar to Field and EnumValue.
186221
* @return value or {@code null} for none
187222
*/
188223
public java.lang.String getSyntax() {
189224
return syntax;
190225
}
191226

192227
/**
193-
* The source syntax of this method.
228+
* The source syntax of this method. This field should be ignored, instead the syntax should be
229+
* inherited from Api. This is similar to Field and EnumValue.
194230
* @param syntax syntax or {@code null} for none
195231
*/
196232
public Method setSyntax(java.lang.String syntax) {

clients/google-api-services-servicemanagement/v1/2.0.0/com/google/api/services/servicemanagement/model/Option.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
package com.google.api.services.servicemanagement.model;
1818

1919
/**
20-
* A protocol buffer option, which can be attached to a message, field, enumeration, etc.
20+
* A protocol buffer option, which can be attached to a message, field, enumeration, etc. New usages
21+
* of this message as an alternative to FileOptions, MessageOptions, FieldOptions, EnumOptions,
22+
* EnumValueOptions, ServiceOptions, or MethodOptions are strongly discouraged.
2123
*
2224
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2325
* transmitted over HTTP when working with the Service Management API. For a detailed explanation

clients/google-api-services-servicemanagement/v1/2.0.0/com/google/api/services/servicemanagement/model/PhpSettings.java

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

40+
/**
41+
* The package name to use in Php. Clobbers the php_namespace option set in the protobuf. This
42+
* should be used **only** by APIs who have already set the language_settings.php.package_name"
43+
* field in gapic.yaml. API teams should use the protobuf php_namespace option where possible.
44+
* Example of a YAML configuration:: publishing: library_settings: php_settings: library_package:
45+
* Google\Cloud\PubSub\V1
46+
* The value may be {@code null}.
47+
*/
48+
@com.google.api.client.util.Key
49+
private java.lang.String libraryPackage;
50+
4051
/**
4152
* Some settings.
4253
* @return value or {@code null} for none
@@ -54,6 +65,31 @@ public PhpSettings setCommon(CommonLanguageSettings common) {
5465
return this;
5566
}
5667

68+
/**
69+
* The package name to use in Php. Clobbers the php_namespace option set in the protobuf. This
70+
* should be used **only** by APIs who have already set the language_settings.php.package_name"
71+
* field in gapic.yaml. API teams should use the protobuf php_namespace option where possible.
72+
* Example of a YAML configuration:: publishing: library_settings: php_settings: library_package:
73+
* Google\Cloud\PubSub\V1
74+
* @return value or {@code null} for none
75+
*/
76+
public java.lang.String getLibraryPackage() {
77+
return libraryPackage;
78+
}
79+
80+
/**
81+
* The package name to use in Php. Clobbers the php_namespace option set in the protobuf. This
82+
* should be used **only** by APIs who have already set the language_settings.php.package_name"
83+
* field in gapic.yaml. API teams should use the protobuf php_namespace option where possible.
84+
* Example of a YAML configuration:: publishing: library_settings: php_settings: library_package:
85+
* Google\Cloud\PubSub\V1
86+
* @param libraryPackage libraryPackage or {@code null} for none
87+
*/
88+
public PhpSettings setLibraryPackage(java.lang.String libraryPackage) {
89+
this.libraryPackage = libraryPackage;
90+
return this;
91+
}
92+
5793
@Override
5894
public PhpSettings set(String fieldName, Object value) {
5995
return (PhpSettings) super.set(fieldName, value);

clients/google-api-services-servicemanagement/v1/2.0.0/com/google/api/services/servicemanagement/model/Rollout.java

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,6 @@ public final class Rollout extends com.google.api.client.json.GenericJson {
8686
@com.google.api.client.util.Key
8787
private TrafficPercentStrategy trafficPercentStrategy;
8888

89-
/**
90-
* The TPC universe which the rollout will be rolled out to.
91-
* The value may be {@code null}.
92-
*/
93-
@com.google.api.client.util.Key
94-
private java.lang.String universe;
95-
9689
/**
9790
* Creation time of the rollout. Readonly.
9891
* @return value or {@code null} for none
@@ -222,23 +215,6 @@ public Rollout setTrafficPercentStrategy(TrafficPercentStrategy trafficPercentSt
222215
return this;
223216
}
224217

225-
/**
226-
* The TPC universe which the rollout will be rolled out to.
227-
* @return value or {@code null} for none
228-
*/
229-
public java.lang.String getUniverse() {
230-
return universe;
231-
}
232-
233-
/**
234-
* The TPC universe which the rollout will be rolled out to.
235-
* @param universe universe or {@code null} for none
236-
*/
237-
public Rollout setUniverse(java.lang.String universe) {
238-
this.universe = universe;
239-
return this;
240-
}
241-
242218
@Override
243219
public Rollout set(String fieldName, Object value) {
244220
return (Rollout) super.set(fieldName, value);

0 commit comments

Comments
 (0)