Skip to content

Commit 3519dd0

Browse files
1 parent 0789816 commit 3519dd0

File tree

20 files changed

+96
-38
lines changed

20 files changed

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

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

Lines changed: 4 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 Networking API. For a detailed explanation

clients/google-api-services-servicenetworking/v1/2.0.0/com/google/api/services/servicenetworking/v1/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.servicenetworking.v1.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 Networking API. For a detailed explanation

clients/google-api-services-servicenetworking/v1/2.0.0/com/google/api/services/servicenetworking/v1/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.servicenetworking.v1.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 Networking API. For a detailed explanation

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

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@
1717
package com.google.api.services.servicenetworking.v1.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 Networking API. For a detailed explanation
@@ -31,7 +34,9 @@
3134
public final class Method extends com.google.api.client.json.GenericJson {
3235

3336
/**
34-
* The source edition string, only valid when syntax is SYNTAX_EDITIONS.
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.
3540
* The value may be {@code null}.
3641
*/
3742
@com.google.api.client.util.Key
@@ -80,22 +85,27 @@ public final class Method extends com.google.api.client.json.GenericJson {
8085
private java.lang.String responseTypeUrl;
8186

8287
/**
83-
* 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.
8490
* The value may be {@code null}.
8591
*/
8692
@com.google.api.client.util.Key
8793
private java.lang.String syntax;
8894

8995
/**
90-
* The source edition string, only valid when syntax is SYNTAX_EDITIONS.
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.
9199
* @return value or {@code null} for none
92100
*/
93101
public java.lang.String getEdition() {
94102
return edition;
95103
}
96104

97105
/**
98-
* The source edition string, only valid when syntax is SYNTAX_EDITIONS.
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.
99109
* @param edition edition or {@code null} for none
100110
*/
101111
public Method setEdition(java.lang.String edition) {
@@ -206,15 +216,17 @@ public Method setResponseTypeUrl(java.lang.String responseTypeUrl) {
206216
}
207217

208218
/**
209-
* 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.
210221
* @return value or {@code null} for none
211222
*/
212223
public java.lang.String getSyntax() {
213224
return syntax;
214225
}
215226

216227
/**
217-
* 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.
218230
* @param syntax syntax or {@code null} for none
219231
*/
220232
public Method setSyntax(java.lang.String syntax) {

clients/google-api-services-servicenetworking/v1/2.0.0/com/google/api/services/servicenetworking/v1/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.servicenetworking.v1.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 Networking API. For a detailed explanation

clients/google-api-services-servicenetworking/v1/2.0.0/com/google/api/services/servicenetworking/v1/model/ServiceNetworkingEnum.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.servicenetworking.v1.model;
1818

1919
/**
20-
* Enum type definition.
20+
* Enum type definition. New usages of this message as an alternative to EnumDescriptorProto are
21+
* 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 Networking API. For a detailed explanation

clients/google-api-services-servicenetworking/v1/2.0.0/com/google/api/services/servicenetworking/v1/model/Type.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.servicenetworking.v1.model;
1818

1919
/**
20-
* A protocol buffer message type.
20+
* A protocol buffer message type. New usages of this message as an alternative to DescriptorProto
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 Networking API. For a detailed explanation

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-rev20250713-2.0.0</version>
12-
<name>Service Networking API v1-rev20250713-2.0.0</name>
11+
<version>v1-rev20250722-2.0.0</version>
12+
<name>Service Networking API v1-rev20250722-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)