Skip to content

Commit 6c6f393

Browse files
chore: regenerate networkservices client
1 parent 38c1764 commit 6c6f393

File tree

10 files changed

+92
-22
lines changed

10 files changed

+92
-22
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-rev20251203-2.0.0</version>
25+
<version>v1-rev20260204-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-rev20251203-2.0.0'
38+
implementation 'com.google.apis:google-api-services-networkservices:v1-rev20260204-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: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public class NetworkServices extends com.google.api.client.googleapis.services.j
103103
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
104104
* <li>Android: {@code newCompatibleTransport} from
105105
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
106-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
106+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
107107
* </li>
108108
* </ul>
109109
* @param jsonFactory JSON factory, which may be:
@@ -312,7 +312,10 @@ public Get set(String parameterName, Object value) {
312312
}
313313
}
314314
/**
315-
* Lists information about the supported locations for this service.
315+
* Lists information about the supported locations for this service. This method can be called in
316+
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
317+
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
318+
* public locations as well as private or other locations specifically visible to the project.
316319
*
317320
* Create a request for the method "locations.list".
318321
*
@@ -336,7 +339,10 @@ public class List extends NetworkServicesRequest<com.google.api.services.network
336339
java.util.regex.Pattern.compile("^projects/[^/]+$");
337340

338341
/**
339-
* Lists information about the supported locations for this service.
342+
* Lists information about the supported locations for this service. This method can be called in
343+
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
344+
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
345+
* public locations as well as private or other locations specifically visible to the project.
340346
*
341347
* Create a request for the method "locations.list".
342348
*
@@ -16408,8 +16414,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
1640816414
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
1640916415
* <li>Android: {@code newCompatibleTransport} from
1641016416
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
16411-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
16412-
* </li>
16417+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
1641316418
* </ul>
1641416419
* @param jsonFactory JSON factory, which may be:
1641516420
* <ul>

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,15 @@ public final class TlsRoute extends com.google.api.client.json.GenericJson {
9191
@com.google.api.client.util.Key
9292
private java.lang.String selfLink;
9393

94+
/**
95+
* Optional. TargetProxies defines a list of TargetTcpProxies this TlsRoute is attached to, as one
96+
* of the routing rules to route the requests served by the TargetTcpProxy. Each TargetTcpProxy
97+
* reference should match the pattern: `projects/locations/targetTcpProxies/`
98+
* The value may be {@code null}.
99+
*/
100+
@com.google.api.client.util.Key
101+
private java.util.List<java.lang.String> targetProxies;
102+
94103
/**
95104
* Output only. The timestamp when the resource was updated.
96105
* The value may be {@code null}.
@@ -246,6 +255,27 @@ public TlsRoute setSelfLink(java.lang.String selfLink) {
246255
return this;
247256
}
248257

258+
/**
259+
* Optional. TargetProxies defines a list of TargetTcpProxies this TlsRoute is attached to, as one
260+
* of the routing rules to route the requests served by the TargetTcpProxy. Each TargetTcpProxy
261+
* reference should match the pattern: `projects/locations/targetTcpProxies/`
262+
* @return value or {@code null} for none
263+
*/
264+
public java.util.List<java.lang.String> getTargetProxies() {
265+
return targetProxies;
266+
}
267+
268+
/**
269+
* Optional. TargetProxies defines a list of TargetTcpProxies this TlsRoute is attached to, as one
270+
* of the routing rules to route the requests served by the TargetTcpProxy. Each TargetTcpProxy
271+
* reference should match the pattern: `projects/locations/targetTcpProxies/`
272+
* @param targetProxies targetProxies or {@code null} for none
273+
*/
274+
public TlsRoute setTargetProxies(java.util.List<java.lang.String> targetProxies) {
275+
this.targetProxies = targetProxies;
276+
return this;
277+
}
278+
249279
/**
250280
* Output only. The timestamp when the resource was updated.
251281
* @return value or {@code null} for none

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

1515
<inceptionYear>2011</inceptionYear>

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

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

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

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public class NetworkServices extends com.google.api.client.googleapis.services.j
103103
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
104104
* <li>Android: {@code newCompatibleTransport} from
105105
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
106-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
106+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
107107
* </li>
108108
* </ul>
109109
* @param jsonFactory JSON factory, which may be:
@@ -312,7 +312,10 @@ public Get set(String parameterName, Object value) {
312312
}
313313
}
314314
/**
315-
* Lists information about the supported locations for this service.
315+
* Lists information about the supported locations for this service. This method can be called in
316+
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
317+
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
318+
* public locations as well as private or other locations specifically visible to the project.
316319
*
317320
* Create a request for the method "locations.list".
318321
*
@@ -336,7 +339,10 @@ public class List extends NetworkServicesRequest<com.google.api.services.network
336339
java.util.regex.Pattern.compile("^projects/[^/]+$");
337340

338341
/**
339-
* Lists information about the supported locations for this service.
342+
* Lists information about the supported locations for this service. This method can be called in
343+
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
344+
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
345+
* public locations as well as private or other locations specifically visible to the project.
340346
*
341347
* Create a request for the method "locations.list".
342348
*
@@ -15824,8 +15830,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
1582415830
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
1582515831
* <li>Android: {@code newCompatibleTransport} from
1582615832
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
15827-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
15828-
* </li>
15833+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
1582915834
* </ul>
1583015835
* @param jsonFactory JSON factory, which may be:
1583115836
* <ul>

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,15 @@ public final class TlsRoute extends com.google.api.client.json.GenericJson {
9191
@com.google.api.client.util.Key
9292
private java.lang.String selfLink;
9393

94+
/**
95+
* Optional. TargetProxies defines a list of TargetTcpProxies this TlsRoute is attached to, as one
96+
* of the routing rules to route the requests served by the TargetTcpProxy. Each TargetTcpProxy
97+
* reference should match the pattern: `projects/locations/targetTcpProxies/`
98+
* The value may be {@code null}.
99+
*/
100+
@com.google.api.client.util.Key
101+
private java.util.List<java.lang.String> targetProxies;
102+
94103
/**
95104
* Output only. The timestamp when the resource was updated.
96105
* The value may be {@code null}.
@@ -246,6 +255,27 @@ public TlsRoute setSelfLink(java.lang.String selfLink) {
246255
return this;
247256
}
248257

258+
/**
259+
* Optional. TargetProxies defines a list of TargetTcpProxies this TlsRoute is attached to, as one
260+
* of the routing rules to route the requests served by the TargetTcpProxy. Each TargetTcpProxy
261+
* reference should match the pattern: `projects/locations/targetTcpProxies/`
262+
* @return value or {@code null} for none
263+
*/
264+
public java.util.List<java.lang.String> getTargetProxies() {
265+
return targetProxies;
266+
}
267+
268+
/**
269+
* Optional. TargetProxies defines a list of TargetTcpProxies this TlsRoute is attached to, as one
270+
* of the routing rules to route the requests served by the TargetTcpProxy. Each TargetTcpProxy
271+
* reference should match the pattern: `projects/locations/targetTcpProxies/`
272+
* @param targetProxies targetProxies or {@code null} for none
273+
*/
274+
public TlsRoute setTargetProxies(java.util.List<java.lang.String> targetProxies) {
275+
this.targetProxies = targetProxies;
276+
return this;
277+
}
278+
249279
/**
250280
* Output only. The timestamp when the resource was updated.
251281
* @return value or {@code null} for none

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-rev20251203-2.0.0</version>
12-
<name>Network Services API v1beta1-rev20251203-2.0.0</name>
11+
<version>v1beta1-rev20260204-2.0.0</version>
12+
<name>Network Services API v1beta1-rev20260204-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-rev20251203-2.0.0</version>
25+
<version>v1beta1-rev20260204-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-rev20251203-2.0.0'
38+
implementation 'com.google.apis:google-api-services-networkservices:v1beta1-rev20260204-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)