Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-networkservices</artifactId>
<version>v1-rev20251203-2.0.0</version>
<version>v1-rev20260204-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-networkservices:v1-rev20251203-2.0.0'
implementation 'com.google.apis:google-api-services-networkservices:v1-rev20260204-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public class NetworkServices extends com.google.api.client.googleapis.services.j
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </li>
* </ul>
* @param jsonFactory JSON factory, which may be:
Expand Down Expand Up @@ -312,7 +312,10 @@ public Get set(String parameterName, Object value) {
}
}
/**
* Lists information about the supported locations for this service.
* Lists information about the supported locations for this service. This method can be called in
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
* public locations as well as private or other locations specifically visible to the project.
*
* Create a request for the method "locations.list".
*
Expand All @@ -336,7 +339,10 @@ public class List extends NetworkServicesRequest<com.google.api.services.network
java.util.regex.Pattern.compile("^projects/[^/]+$");

/**
* Lists information about the supported locations for this service.
* Lists information about the supported locations for this service. This method can be called in
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
* public locations as well as private or other locations specifically visible to the project.
*
* Create a request for the method "locations.list".
*
Expand Down Expand Up @@ -16408,8 +16414,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* </li>
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </ul>
* @param jsonFactory JSON factory, which may be:
* <ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,15 @@ public final class TlsRoute extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private java.lang.String selfLink;

/**
* Optional. TargetProxies defines a list of TargetTcpProxies this TlsRoute is attached to, as one
* of the routing rules to route the requests served by the TargetTcpProxy. Each TargetTcpProxy
* reference should match the pattern: `projects/locations/targetTcpProxies/`
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<java.lang.String> targetProxies;

/**
* Output only. The timestamp when the resource was updated.
* The value may be {@code null}.
Expand Down Expand Up @@ -246,6 +255,27 @@ public TlsRoute setSelfLink(java.lang.String selfLink) {
return this;
}

/**
* Optional. TargetProxies defines a list of TargetTcpProxies this TlsRoute is attached to, as one
* of the routing rules to route the requests served by the TargetTcpProxy. Each TargetTcpProxy
* reference should match the pattern: `projects/locations/targetTcpProxies/`
* @return value or {@code null} for none
*/
public java.util.List<java.lang.String> getTargetProxies() {
return targetProxies;
}

/**
* Optional. TargetProxies defines a list of TargetTcpProxies this TlsRoute is attached to, as one
* of the routing rules to route the requests served by the TargetTcpProxy. Each TargetTcpProxy
* reference should match the pattern: `projects/locations/targetTcpProxies/`
* @param targetProxies targetProxies or {@code null} for none
*/
public TlsRoute setTargetProxies(java.util.List<java.lang.String> targetProxies) {
this.targetProxies = targetProxies;
return this;
}

/**
* Output only. The timestamp when the resource was updated.
* @return value or {@code null} for none
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-networkservices</artifactId>
<version>v1-rev20251203-2.0.0</version>
<name>Network Services API v1-rev20251203-2.0.0</name>
<version>v1-rev20260204-2.0.0</version>
<name>Network Services API v1-rev20260204-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-networkservices/v1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-networkservices</artifactId>
<version>v1-rev20251203-2.0.0</version>
<version>v1-rev20260204-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-networkservices:v1-rev20251203-2.0.0'
implementation 'com.google.apis:google-api-services-networkservices:v1-rev20260204-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-networkservices</artifactId>
<version>v1beta1-rev20251203-2.0.0</version>
<version>v1beta1-rev20260204-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-networkservices:v1beta1-rev20251203-2.0.0'
implementation 'com.google.apis:google-api-services-networkservices:v1beta1-rev20260204-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public class NetworkServices extends com.google.api.client.googleapis.services.j
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </li>
* </ul>
* @param jsonFactory JSON factory, which may be:
Expand Down Expand Up @@ -312,7 +312,10 @@ public Get set(String parameterName, Object value) {
}
}
/**
* Lists information about the supported locations for this service.
* Lists information about the supported locations for this service. This method can be called in
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
* public locations as well as private or other locations specifically visible to the project.
*
* Create a request for the method "locations.list".
*
Expand All @@ -336,7 +339,10 @@ public class List extends NetworkServicesRequest<com.google.api.services.network
java.util.regex.Pattern.compile("^projects/[^/]+$");

/**
* Lists information about the supported locations for this service.
* Lists information about the supported locations for this service. This method can be called in
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
* public locations as well as private or other locations specifically visible to the project.
*
* Create a request for the method "locations.list".
*
Expand Down Expand Up @@ -15824,8 +15830,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* </li>
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </ul>
* @param jsonFactory JSON factory, which may be:
* <ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,15 @@ public final class TlsRoute extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private java.lang.String selfLink;

/**
* Optional. TargetProxies defines a list of TargetTcpProxies this TlsRoute is attached to, as one
* of the routing rules to route the requests served by the TargetTcpProxy. Each TargetTcpProxy
* reference should match the pattern: `projects/locations/targetTcpProxies/`
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<java.lang.String> targetProxies;

/**
* Output only. The timestamp when the resource was updated.
* The value may be {@code null}.
Expand Down Expand Up @@ -246,6 +255,27 @@ public TlsRoute setSelfLink(java.lang.String selfLink) {
return this;
}

/**
* Optional. TargetProxies defines a list of TargetTcpProxies this TlsRoute is attached to, as one
* of the routing rules to route the requests served by the TargetTcpProxy. Each TargetTcpProxy
* reference should match the pattern: `projects/locations/targetTcpProxies/`
* @return value or {@code null} for none
*/
public java.util.List<java.lang.String> getTargetProxies() {
return targetProxies;
}

/**
* Optional. TargetProxies defines a list of TargetTcpProxies this TlsRoute is attached to, as one
* of the routing rules to route the requests served by the TargetTcpProxy. Each TargetTcpProxy
* reference should match the pattern: `projects/locations/targetTcpProxies/`
* @param targetProxies targetProxies or {@code null} for none
*/
public TlsRoute setTargetProxies(java.util.List<java.lang.String> targetProxies) {
this.targetProxies = targetProxies;
return this;
}

/**
* Output only. The timestamp when the resource was updated.
* @return value or {@code null} for none
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-networkservices</artifactId>
<version>v1beta1-rev20251203-2.0.0</version>
<name>Network Services API v1beta1-rev20251203-2.0.0</name>
<version>v1beta1-rev20260204-2.0.0</version>
<name>Network Services API v1beta1-rev20260204-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-networkservices</artifactId>
<version>v1beta1-rev20251203-2.0.0</version>
<version>v1beta1-rev20260204-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-networkservices:v1beta1-rev20251203-2.0.0'
implementation 'com.google.apis:google-api-services-networkservices:v1beta1-rev20260204-2.0.0'
}
```

Expand Down
Loading