Skip to content

Commit 718777d

Browse files
1 parent 782cd06 commit 718777d

File tree

11 files changed

+246
-243
lines changed

11 files changed

+246
-243
lines changed

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

clients/google-api-services-networkservices/v1/2.0.0/com/google/api/services/networkservices/v1/NetworkServices.java

Lines changed: 156 additions & 192 deletions
Large diffs are not rendered by default.

clients/google-api-services-networkservices/v1/2.0.0/com/google/api/services/networkservices/v1/model/EndpointPolicy.java

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

8383
/**
8484
* Identifier. Name of the EndpointPolicy resource. It matches pattern
85-
* `projects/{project}/locations/global/endpointPolicies/{endpoint_policy}`.
85+
* `projects/{project}/locations/endpointPolicies/{endpoint_policy}`.
8686
* The value may be {@code null}.
8787
*/
8888
@com.google.api.client.util.Key
@@ -237,7 +237,7 @@ public EndpointPolicy setLabels(java.util.Map<String, java.lang.String> labels)
237237

238238
/**
239239
* Identifier. Name of the EndpointPolicy resource. It matches pattern
240-
* `projects/{project}/locations/global/endpointPolicies/{endpoint_policy}`.
240+
* `projects/{project}/locations/endpointPolicies/{endpoint_policy}`.
241241
* @return value or {@code null} for none
242242
*/
243243
public java.lang.String getName() {
@@ -246,7 +246,7 @@ public java.lang.String getName() {
246246

247247
/**
248248
* Identifier. Name of the EndpointPolicy resource. It matches pattern
249-
* `projects/{project}/locations/global/endpointPolicies/{endpoint_policy}`.
249+
* `projects/{project}/locations/endpointPolicies/{endpoint_policy}`.
250250
* @param name name or {@code null} for none
251251
*/
252252
public EndpointPolicy setName(java.lang.String name) {

clients/google-api-services-networkservices/v1/2.0.0/com/google/api/services/networkservices/v1/model/ExtensionChainExtension.java

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,19 @@ public final class ExtensionChainExtension extends com.google.api.client.json.Ge
9090
@com.google.api.client.util.Key
9191
private java.lang.String name;
9292

93+
/**
94+
* Optional. When set to `TRUE`, enables `observability_mode` on the `ext_proc` filter. This makes
95+
* `ext_proc` calls asynchronous. Envoy doesn't check for the response from `ext_proc` calls. For
96+
* more information about the filter, see: https://www.envoyproxy.io/docs/envoy/v1.32.3/api-v3/ext
97+
* ensions/filters/http/ext_proc/v3/ext_proc.proto#extensions-filters-http-ext-
98+
* proc-v3-externalprocessor This field is helpful when you want to try out the extension in async
99+
* log-only mode. Supported by regional `LbTrafficExtension` and `LbRouteExtension` resources.
100+
* Only `STREAMED` (default) body processing mode is supported.
101+
* The value may be {@code null}.
102+
*/
103+
@com.google.api.client.util.Key
104+
private java.lang.Boolean observabilityMode;
105+
93106
/**
94107
* Optional. Configures the send mode for request body processing. The field can only be set if
95108
* `supported_events` includes `REQUEST_BODY`. If `supported_events` includes `REQUEST_BODY`, but
@@ -293,6 +306,35 @@ public ExtensionChainExtension setName(java.lang.String name) {
293306
return this;
294307
}
295308

309+
/**
310+
* Optional. When set to `TRUE`, enables `observability_mode` on the `ext_proc` filter. This makes
311+
* `ext_proc` calls asynchronous. Envoy doesn't check for the response from `ext_proc` calls. For
312+
* more information about the filter, see: https://www.envoyproxy.io/docs/envoy/v1.32.3/api-v3/ext
313+
* ensions/filters/http/ext_proc/v3/ext_proc.proto#extensions-filters-http-ext-
314+
* proc-v3-externalprocessor This field is helpful when you want to try out the extension in async
315+
* log-only mode. Supported by regional `LbTrafficExtension` and `LbRouteExtension` resources.
316+
* Only `STREAMED` (default) body processing mode is supported.
317+
* @return value or {@code null} for none
318+
*/
319+
public java.lang.Boolean getObservabilityMode() {
320+
return observabilityMode;
321+
}
322+
323+
/**
324+
* Optional. When set to `TRUE`, enables `observability_mode` on the `ext_proc` filter. This makes
325+
* `ext_proc` calls asynchronous. Envoy doesn't check for the response from `ext_proc` calls. For
326+
* more information about the filter, see: https://www.envoyproxy.io/docs/envoy/v1.32.3/api-v3/ext
327+
* ensions/filters/http/ext_proc/v3/ext_proc.proto#extensions-filters-http-ext-
328+
* proc-v3-externalprocessor This field is helpful when you want to try out the extension in async
329+
* log-only mode. Supported by regional `LbTrafficExtension` and `LbRouteExtension` resources.
330+
* Only `STREAMED` (default) body processing mode is supported.
331+
* @param observabilityMode observabilityMode or {@code null} for none
332+
*/
333+
public ExtensionChainExtension setObservabilityMode(java.lang.Boolean observabilityMode) {
334+
this.observabilityMode = observabilityMode;
335+
return this;
336+
}
337+
296338
/**
297339
* Optional. Configures the send mode for request body processing. The field can only be set if
298340
* `supported_events` includes `REQUEST_BODY`. If `supported_events` includes `REQUEST_BODY`, but

clients/google-api-services-networkservices/v1/2.0.0/com/google/api/services/networkservices/v1/model/GrpcRoute.java

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public final class GrpcRoute extends com.google.api.client.json.GenericJson {
4747
/**
4848
* Optional. Gateways defines a list of gateways this GrpcRoute is attached to, as one of the
4949
* routing rules to route the requests served by the gateway. Each gateway reference should match
50-
* the pattern: `projects/locations/global/gateways/`
50+
* the pattern: `projects/locations/gateways/`
5151
* The value may be {@code null}.
5252
*/
5353
@com.google.api.client.util.Key
@@ -84,15 +84,14 @@ public final class GrpcRoute extends com.google.api.client.json.GenericJson {
8484
/**
8585
* Optional. Meshes defines a list of meshes this GrpcRoute is attached to, as one of the routing
8686
* rules to route the requests served by the mesh. Each mesh reference should match the pattern:
87-
* `projects/locations/global/meshes/`
87+
* `projects/locations/meshes/`
8888
* The value may be {@code null}.
8989
*/
9090
@com.google.api.client.util.Key
9191
private java.util.List<java.lang.String> meshes;
9292

9393
/**
94-
* Identifier. Name of the GrpcRoute resource. It matches pattern
95-
* `projects/locations/global/grpcRoutes/`
94+
* Identifier. Name of the GrpcRoute resource. It matches pattern `projects/locations/grpcRoutes/`
9695
* The value may be {@code null}.
9796
*/
9897
@com.google.api.client.util.Key
@@ -158,7 +157,7 @@ public GrpcRoute setDescription(java.lang.String description) {
158157
/**
159158
* Optional. Gateways defines a list of gateways this GrpcRoute is attached to, as one of the
160159
* routing rules to route the requests served by the gateway. Each gateway reference should match
161-
* the pattern: `projects/locations/global/gateways/`
160+
* the pattern: `projects/locations/gateways/`
162161
* @return value or {@code null} for none
163162
*/
164163
public java.util.List<java.lang.String> getGateways() {
@@ -168,7 +167,7 @@ public java.util.List<java.lang.String> getGateways() {
168167
/**
169168
* Optional. Gateways defines a list of gateways this GrpcRoute is attached to, as one of the
170169
* routing rules to route the requests served by the gateway. Each gateway reference should match
171-
* the pattern: `projects/locations/global/gateways/`
170+
* the pattern: `projects/locations/gateways/`
172171
* @param gateways gateways or {@code null} for none
173172
*/
174173
public GrpcRoute setGateways(java.util.List<java.lang.String> gateways) {
@@ -241,7 +240,7 @@ public GrpcRoute setLabels(java.util.Map<String, java.lang.String> labels) {
241240
/**
242241
* Optional. Meshes defines a list of meshes this GrpcRoute is attached to, as one of the routing
243242
* rules to route the requests served by the mesh. Each mesh reference should match the pattern:
244-
* `projects/locations/global/meshes/`
243+
* `projects/locations/meshes/`
245244
* @return value or {@code null} for none
246245
*/
247246
public java.util.List<java.lang.String> getMeshes() {
@@ -251,7 +250,7 @@ public java.util.List<java.lang.String> getMeshes() {
251250
/**
252251
* Optional. Meshes defines a list of meshes this GrpcRoute is attached to, as one of the routing
253252
* rules to route the requests served by the mesh. Each mesh reference should match the pattern:
254-
* `projects/locations/global/meshes/`
253+
* `projects/locations/meshes/`
255254
* @param meshes meshes or {@code null} for none
256255
*/
257256
public GrpcRoute setMeshes(java.util.List<java.lang.String> meshes) {
@@ -260,17 +259,15 @@ public GrpcRoute setMeshes(java.util.List<java.lang.String> meshes) {
260259
}
261260

262261
/**
263-
* Identifier. Name of the GrpcRoute resource. It matches pattern
264-
* `projects/locations/global/grpcRoutes/`
262+
* Identifier. Name of the GrpcRoute resource. It matches pattern `projects/locations/grpcRoutes/`
265263
* @return value or {@code null} for none
266264
*/
267265
public java.lang.String getName() {
268266
return name;
269267
}
270268

271269
/**
272-
* Identifier. Name of the GrpcRoute resource. It matches pattern
273-
* `projects/locations/global/grpcRoutes/`
270+
* Identifier. Name of the GrpcRoute resource. It matches pattern `projects/locations/grpcRoutes/`
274271
* @param name name or {@code null} for none
275272
*/
276273
public GrpcRoute setName(java.lang.String name) {

clients/google-api-services-networkservices/v1/2.0.0/com/google/api/services/networkservices/v1/model/HttpRoute.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public final class HttpRoute extends com.google.api.client.json.GenericJson {
4747
/**
4848
* Optional. Gateways defines a list of gateways this HttpRoute is attached to, as one of the
4949
* routing rules to route the requests served by the gateway. Each gateway reference should match
50-
* the pattern: `projects/locations/global/gateways/`
50+
* the pattern: `projects/locations/gateways/`
5151
* The value may be {@code null}.
5252
*/
5353
@com.google.api.client.util.Key
@@ -83,15 +83,15 @@ public final class HttpRoute extends com.google.api.client.json.GenericJson {
8383
/**
8484
* Optional. Meshes defines a list of meshes this HttpRoute is attached to, as one of the routing
8585
* rules to route the requests served by the mesh. Each mesh reference should match the pattern:
86-
* `projects/locations/global/meshes/` The attached Mesh should be of a type SIDECAR
86+
* `projects/locations/meshes/` The attached Mesh should be of a type SIDECAR
8787
* The value may be {@code null}.
8888
*/
8989
@com.google.api.client.util.Key
9090
private java.util.List<java.lang.String> meshes;
9191

9292
/**
9393
* Identifier. Name of the HttpRoute resource. It matches pattern
94-
* `projects/locations/global/httpRoutes/http_route_name>`.
94+
* `projects/locations/httpRoutes/http_route_name>`.
9595
* The value may be {@code null}.
9696
*/
9797
@com.google.api.client.util.Key
@@ -156,7 +156,7 @@ public HttpRoute setDescription(java.lang.String description) {
156156
/**
157157
* Optional. Gateways defines a list of gateways this HttpRoute is attached to, as one of the
158158
* routing rules to route the requests served by the gateway. Each gateway reference should match
159-
* the pattern: `projects/locations/global/gateways/`
159+
* the pattern: `projects/locations/gateways/`
160160
* @return value or {@code null} for none
161161
*/
162162
public java.util.List<java.lang.String> getGateways() {
@@ -166,7 +166,7 @@ public java.util.List<java.lang.String> getGateways() {
166166
/**
167167
* Optional. Gateways defines a list of gateways this HttpRoute is attached to, as one of the
168168
* routing rules to route the requests served by the gateway. Each gateway reference should match
169-
* the pattern: `projects/locations/global/gateways/`
169+
* the pattern: `projects/locations/gateways/`
170170
* @param gateways gateways or {@code null} for none
171171
*/
172172
public HttpRoute setGateways(java.util.List<java.lang.String> gateways) {
@@ -237,7 +237,7 @@ public HttpRoute setLabels(java.util.Map<String, java.lang.String> labels) {
237237
/**
238238
* Optional. Meshes defines a list of meshes this HttpRoute is attached to, as one of the routing
239239
* rules to route the requests served by the mesh. Each mesh reference should match the pattern:
240-
* `projects/locations/global/meshes/` The attached Mesh should be of a type SIDECAR
240+
* `projects/locations/meshes/` The attached Mesh should be of a type SIDECAR
241241
* @return value or {@code null} for none
242242
*/
243243
public java.util.List<java.lang.String> getMeshes() {
@@ -247,7 +247,7 @@ public java.util.List<java.lang.String> getMeshes() {
247247
/**
248248
* Optional. Meshes defines a list of meshes this HttpRoute is attached to, as one of the routing
249249
* rules to route the requests served by the mesh. Each mesh reference should match the pattern:
250-
* `projects/locations/global/meshes/` The attached Mesh should be of a type SIDECAR
250+
* `projects/locations/meshes/` The attached Mesh should be of a type SIDECAR
251251
* @param meshes meshes or {@code null} for none
252252
*/
253253
public HttpRoute setMeshes(java.util.List<java.lang.String> meshes) {
@@ -257,7 +257,7 @@ public HttpRoute setMeshes(java.util.List<java.lang.String> meshes) {
257257

258258
/**
259259
* Identifier. Name of the HttpRoute resource. It matches pattern
260-
* `projects/locations/global/httpRoutes/http_route_name>`.
260+
* `projects/locations/httpRoutes/http_route_name>`.
261261
* @return value or {@code null} for none
262262
*/
263263
public java.lang.String getName() {
@@ -266,7 +266,7 @@ public java.lang.String getName() {
266266

267267
/**
268268
* Identifier. Name of the HttpRoute resource. It matches pattern
269-
* `projects/locations/global/httpRoutes/http_route_name>`.
269+
* `projects/locations/httpRoutes/http_route_name>`.
270270
* @param name name or {@code null} for none
271271
*/
272272
public HttpRoute setName(java.lang.String name) {

clients/google-api-services-networkservices/v1/2.0.0/com/google/api/services/networkservices/v1/model/Mesh.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public final class Mesh extends com.google.api.client.json.GenericJson {
7272
private java.util.Map<String, java.lang.String> labels;
7373

7474
/**
75-
* Identifier. Name of the Mesh resource. It matches pattern `projects/locations/global/meshes/`.
75+
* Identifier. Name of the Mesh resource. It matches pattern `projects/locations/meshes/`.
7676
* The value may be {@code null}.
7777
*/
7878
@com.google.api.client.util.Key
@@ -188,15 +188,15 @@ public Mesh setLabels(java.util.Map<String, java.lang.String> labels) {
188188
}
189189

190190
/**
191-
* Identifier. Name of the Mesh resource. It matches pattern `projects/locations/global/meshes/`.
191+
* Identifier. Name of the Mesh resource. It matches pattern `projects/locations/meshes/`.
192192
* @return value or {@code null} for none
193193
*/
194194
public java.lang.String getName() {
195195
return name;
196196
}
197197

198198
/**
199-
* Identifier. Name of the Mesh resource. It matches pattern `projects/locations/global/meshes/`.
199+
* Identifier. Name of the Mesh resource. It matches pattern `projects/locations/meshes/`.
200200
* @param name name or {@code null} for none
201201
*/
202202
public Mesh setName(java.lang.String name) {

clients/google-api-services-networkservices/v1/2.0.0/com/google/api/services/networkservices/v1/model/TcpRoute.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public final class TcpRoute extends com.google.api.client.json.GenericJson {
4646
/**
4747
* Optional. Gateways defines a list of gateways this TcpRoute is attached to, as one of the
4848
* routing rules to route the requests served by the gateway. Each gateway reference should match
49-
* the pattern: `projects/locations/global/gateways/`
49+
* the pattern: `projects/locations/gateways/`
5050
* The value may be {@code null}.
5151
*/
5252
@com.google.api.client.util.Key
@@ -62,15 +62,15 @@ public final class TcpRoute extends com.google.api.client.json.GenericJson {
6262
/**
6363
* Optional. Meshes defines a list of meshes this TcpRoute is attached to, as one of the routing
6464
* rules to route the requests served by the mesh. Each mesh reference should match the pattern:
65-
* `projects/locations/global/meshes/` The attached Mesh should be of a type SIDECAR
65+
* `projects/locations/meshes/` The attached Mesh should be of a type SIDECAR
6666
* The value may be {@code null}.
6767
*/
6868
@com.google.api.client.util.Key
6969
private java.util.List<java.lang.String> meshes;
7070

7171
/**
7272
* Identifier. Name of the TcpRoute resource. It matches pattern
73-
* `projects/locations/global/tcpRoutes/tcp_route_name>`.
73+
* `projects/locations/tcpRoutes/tcp_route_name>`.
7474
* The value may be {@code null}.
7575
*/
7676
@com.google.api.client.util.Key
@@ -135,7 +135,7 @@ public TcpRoute setDescription(java.lang.String description) {
135135
/**
136136
* Optional. Gateways defines a list of gateways this TcpRoute is attached to, as one of the
137137
* routing rules to route the requests served by the gateway. Each gateway reference should match
138-
* the pattern: `projects/locations/global/gateways/`
138+
* the pattern: `projects/locations/gateways/`
139139
* @return value or {@code null} for none
140140
*/
141141
public java.util.List<java.lang.String> getGateways() {
@@ -145,7 +145,7 @@ public java.util.List<java.lang.String> getGateways() {
145145
/**
146146
* Optional. Gateways defines a list of gateways this TcpRoute is attached to, as one of the
147147
* routing rules to route the requests served by the gateway. Each gateway reference should match
148-
* the pattern: `projects/locations/global/gateways/`
148+
* the pattern: `projects/locations/gateways/`
149149
* @param gateways gateways or {@code null} for none
150150
*/
151151
public TcpRoute setGateways(java.util.List<java.lang.String> gateways) {
@@ -173,7 +173,7 @@ public TcpRoute setLabels(java.util.Map<String, java.lang.String> labels) {
173173
/**
174174
* Optional. Meshes defines a list of meshes this TcpRoute is attached to, as one of the routing
175175
* rules to route the requests served by the mesh. Each mesh reference should match the pattern:
176-
* `projects/locations/global/meshes/` The attached Mesh should be of a type SIDECAR
176+
* `projects/locations/meshes/` The attached Mesh should be of a type SIDECAR
177177
* @return value or {@code null} for none
178178
*/
179179
public java.util.List<java.lang.String> getMeshes() {
@@ -183,7 +183,7 @@ public java.util.List<java.lang.String> getMeshes() {
183183
/**
184184
* Optional. Meshes defines a list of meshes this TcpRoute is attached to, as one of the routing
185185
* rules to route the requests served by the mesh. Each mesh reference should match the pattern:
186-
* `projects/locations/global/meshes/` The attached Mesh should be of a type SIDECAR
186+
* `projects/locations/meshes/` The attached Mesh should be of a type SIDECAR
187187
* @param meshes meshes or {@code null} for none
188188
*/
189189
public TcpRoute setMeshes(java.util.List<java.lang.String> meshes) {
@@ -193,7 +193,7 @@ public TcpRoute setMeshes(java.util.List<java.lang.String> meshes) {
193193

194194
/**
195195
* Identifier. Name of the TcpRoute resource. It matches pattern
196-
* `projects/locations/global/tcpRoutes/tcp_route_name>`.
196+
* `projects/locations/tcpRoutes/tcp_route_name>`.
197197
* @return value or {@code null} for none
198198
*/
199199
public java.lang.String getName() {
@@ -202,7 +202,7 @@ public java.lang.String getName() {
202202

203203
/**
204204
* Identifier. Name of the TcpRoute resource. It matches pattern
205-
* `projects/locations/global/tcpRoutes/tcp_route_name>`.
205+
* `projects/locations/tcpRoutes/tcp_route_name>`.
206206
* @param name name or {@code null} for none
207207
*/
208208
public TcpRoute setName(java.lang.String name) {

0 commit comments

Comments
 (0)