Skip to content

Commit ea60e6a

Browse files
1 parent 5606ea2 commit ea60e6a

File tree

8 files changed

+78
-12
lines changed

8 files changed

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

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

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,16 @@ public final class BackendRule extends com.google.api.client.json.GenericJson {
6767
@com.google.api.client.util.Key
6868
private java.lang.String jwtAudience;
6969

70+
/**
71+
* The load balancing policy used for connection to the application backend. Defined as an
72+
* arbitrary string to accomondate custom load balancing policies supported by the underlying
73+
* channel, but suggest most users use one of the standard policies, such as the default,
74+
* "RoundRobin".
75+
* The value may be {@code null}.
76+
*/
77+
@com.google.api.client.util.Key
78+
private java.lang.String loadBalancingPolicy;
79+
7080
/**
7181
* Deprecated, do not use.
7282
* The value may be {@code null}.
@@ -201,6 +211,29 @@ public BackendRule setJwtAudience(java.lang.String jwtAudience) {
201211
return this;
202212
}
203213

214+
/**
215+
* The load balancing policy used for connection to the application backend. Defined as an
216+
* arbitrary string to accomondate custom load balancing policies supported by the underlying
217+
* channel, but suggest most users use one of the standard policies, such as the default,
218+
* "RoundRobin".
219+
* @return value or {@code null} for none
220+
*/
221+
public java.lang.String getLoadBalancingPolicy() {
222+
return loadBalancingPolicy;
223+
}
224+
225+
/**
226+
* The load balancing policy used for connection to the application backend. Defined as an
227+
* arbitrary string to accomondate custom load balancing policies supported by the underlying
228+
* channel, but suggest most users use one of the standard policies, such as the default,
229+
* "RoundRobin".
230+
* @param loadBalancingPolicy loadBalancingPolicy or {@code null} for none
231+
*/
232+
public BackendRule setLoadBalancingPolicy(java.lang.String loadBalancingPolicy) {
233+
this.loadBalancingPolicy = loadBalancingPolicy;
234+
return this;
235+
}
236+
204237
/**
205238
* Deprecated, do not use.
206239
* @return value or {@code null} for none

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-rev20250205-2.0.0</version>
12-
<name>Service Networking API v1-rev20250205-2.0.0</name>
11+
<version>v1-rev20250209-2.0.0</version>
12+
<name>Service Networking API v1-rev20250209-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-rev20250205-2.0.0</version>
25+
<version>v1-rev20250209-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-rev20250205-2.0.0'
38+
implementation 'com.google.apis:google-api-services-servicenetworking:v1-rev20250209-2.0.0'
3939
}
4040
```
4141

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

clients/google-api-services-servicenetworking/v1beta/2.0.0/com/google/api/services/servicenetworking/v1beta/model/BackendRule.java

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,16 @@ public final class BackendRule extends com.google.api.client.json.GenericJson {
6767
@com.google.api.client.util.Key
6868
private java.lang.String jwtAudience;
6969

70+
/**
71+
* The load balancing policy used for connection to the application backend. Defined as an
72+
* arbitrary string to accomondate custom load balancing policies supported by the underlying
73+
* channel, but suggest most users use one of the standard policies, such as the default,
74+
* "RoundRobin".
75+
* The value may be {@code null}.
76+
*/
77+
@com.google.api.client.util.Key
78+
private java.lang.String loadBalancingPolicy;
79+
7080
/**
7181
* Deprecated, do not use.
7282
* The value may be {@code null}.
@@ -201,6 +211,29 @@ public BackendRule setJwtAudience(java.lang.String jwtAudience) {
201211
return this;
202212
}
203213

214+
/**
215+
* The load balancing policy used for connection to the application backend. Defined as an
216+
* arbitrary string to accomondate custom load balancing policies supported by the underlying
217+
* channel, but suggest most users use one of the standard policies, such as the default,
218+
* "RoundRobin".
219+
* @return value or {@code null} for none
220+
*/
221+
public java.lang.String getLoadBalancingPolicy() {
222+
return loadBalancingPolicy;
223+
}
224+
225+
/**
226+
* The load balancing policy used for connection to the application backend. Defined as an
227+
* arbitrary string to accomondate custom load balancing policies supported by the underlying
228+
* channel, but suggest most users use one of the standard policies, such as the default,
229+
* "RoundRobin".
230+
* @param loadBalancingPolicy loadBalancingPolicy or {@code null} for none
231+
*/
232+
public BackendRule setLoadBalancingPolicy(java.lang.String loadBalancingPolicy) {
233+
this.loadBalancingPolicy = loadBalancingPolicy;
234+
return this;
235+
}
236+
204237
/**
205238
* Deprecated, do not use.
206239
* @return value or {@code null} for none

clients/google-api-services-servicenetworking/v1beta/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>v1beta-rev20250205-2.0.0</version>
12-
<name>Service Networking API v1beta-rev20250205-2.0.0</name>
11+
<version>v1beta-rev20250209-2.0.0</version>
12+
<name>Service Networking API v1beta-rev20250209-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)