Skip to content

Commit a56f9de

Browse files
1 parent 9f5557a commit a56f9de

File tree

6 files changed

+123
-9
lines changed

6 files changed

+123
-9
lines changed

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

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ public final class ExtensionChainExtension extends com.google.api.client.json.Ge
149149

150150
/**
151151
* Optional. Specifies the timeout for each individual message on the stream. The timeout must be
152-
* between `10`-`1000` milliseconds. Required for callout extensions. This field is not supported
152+
* between `10`-`10000` milliseconds. Required for callout extensions. This field is not supported
153153
* for plugin extensions. Setting it results in a validation error.
154154
* The value may be {@code null}.
155155
*/
@@ -424,7 +424,7 @@ public ExtensionChainExtension setSupportedEvents(java.util.List<java.lang.Strin
424424

425425
/**
426426
* Optional. Specifies the timeout for each individual message on the stream. The timeout must be
427-
* between `10`-`1000` milliseconds. Required for callout extensions. This field is not supported
427+
* between `10`-`10000` milliseconds. Required for callout extensions. This field is not supported
428428
* for plugin extensions. Setting it results in a validation error.
429429
* @return value or {@code null} for none
430430
*/
@@ -434,7 +434,7 @@ public String getTimeout() {
434434

435435
/**
436436
* Optional. Specifies the timeout for each individual message on the stream. The timeout must be
437-
* between `10`-`1000` milliseconds. Required for callout extensions. This field is not supported
437+
* between `10`-`10000` milliseconds. Required for callout extensions. This field is not supported
438438
* for plugin extensions. Setting it results in a validation error.
439439
* @param timeout timeout or {@code null} for none
440440
*/

clients/google-api-services-networkservices/v1beta1/2.0.0/com/google/api/services/networkservices/v1beta1/model/ServiceLbPolicy.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,13 @@ public final class ServiceLbPolicy extends com.google.api.client.json.GenericJso
5959
@com.google.api.client.util.Key
6060
private ServiceLbPolicyFailoverConfig failoverConfig;
6161

62+
/**
63+
* Optional. Configuration to provide isolation support for the associated Backend Service.
64+
* The value may be {@code null}.
65+
*/
66+
@com.google.api.client.util.Key
67+
private ServiceLbPolicyIsolationConfig isolationConfig;
68+
6269
/**
6370
* Optional. Set of label tags associated with the ServiceLbPolicy resource.
6471
* The value may be {@code null}.
@@ -159,6 +166,23 @@ public ServiceLbPolicy setFailoverConfig(ServiceLbPolicyFailoverConfig failoverC
159166
return this;
160167
}
161168

169+
/**
170+
* Optional. Configuration to provide isolation support for the associated Backend Service.
171+
* @return value or {@code null} for none
172+
*/
173+
public ServiceLbPolicyIsolationConfig getIsolationConfig() {
174+
return isolationConfig;
175+
}
176+
177+
/**
178+
* Optional. Configuration to provide isolation support for the associated Backend Service.
179+
* @param isolationConfig isolationConfig or {@code null} for none
180+
*/
181+
public ServiceLbPolicy setIsolationConfig(ServiceLbPolicyIsolationConfig isolationConfig) {
182+
this.isolationConfig = isolationConfig;
183+
return this;
184+
}
185+
162186
/**
163187
* Optional. Set of label tags associated with the ServiceLbPolicy resource.
164188
* @return value or {@code null} for none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.networkservices.v1beta1.model;
18+
19+
/**
20+
* Configuration to provide isolation support for the associated Backend Service.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Network Services API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class ServiceLbPolicyIsolationConfig extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. The isolation granularity of the load balancer.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String isolationGranularity;
38+
39+
/**
40+
* Optional. The isolation mode of the load balancer.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String isolationMode;
45+
46+
/**
47+
* Optional. The isolation granularity of the load balancer.
48+
* @return value or {@code null} for none
49+
*/
50+
public java.lang.String getIsolationGranularity() {
51+
return isolationGranularity;
52+
}
53+
54+
/**
55+
* Optional. The isolation granularity of the load balancer.
56+
* @param isolationGranularity isolationGranularity or {@code null} for none
57+
*/
58+
public ServiceLbPolicyIsolationConfig setIsolationGranularity(java.lang.String isolationGranularity) {
59+
this.isolationGranularity = isolationGranularity;
60+
return this;
61+
}
62+
63+
/**
64+
* Optional. The isolation mode of the load balancer.
65+
* @return value or {@code null} for none
66+
*/
67+
public java.lang.String getIsolationMode() {
68+
return isolationMode;
69+
}
70+
71+
/**
72+
* Optional. The isolation mode of the load balancer.
73+
* @param isolationMode isolationMode or {@code null} for none
74+
*/
75+
public ServiceLbPolicyIsolationConfig setIsolationMode(java.lang.String isolationMode) {
76+
this.isolationMode = isolationMode;
77+
return this;
78+
}
79+
80+
@Override
81+
public ServiceLbPolicyIsolationConfig set(String fieldName, Object value) {
82+
return (ServiceLbPolicyIsolationConfig) super.set(fieldName, value);
83+
}
84+
85+
@Override
86+
public ServiceLbPolicyIsolationConfig clone() {
87+
return (ServiceLbPolicyIsolationConfig) super.clone();
88+
}
89+
90+
}

clients/google-api-services-networkservices/v1beta1/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-networkservices</artifactId>
11-
<version>v1beta1-rev20250410-2.0.0</version>
12-
<name>Network Services API v1beta1-rev20250410-2.0.0</name>
11+
<version>v1beta1-rev20250423-2.0.0</version>
12+
<name>Network Services API v1beta1-rev20250423-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)