Skip to content

Commit b8d6fe9

Browse files
1 parent 4469961 commit b8d6fe9

File tree

4 files changed

+34
-7
lines changed

4 files changed

+34
-7
lines changed

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

clients/google-api-services-trafficdirector/v3/2.0.0/com/google/api/services/trafficdirector/v3/model/SocketAddress.java

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.trafficdirector.v3.model;
1818

1919
/**
20-
* [#next-free-field: 7]
20+
* [#next-free-field: 8]
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the Traffic Director API. For a detailed explanation see:
@@ -60,6 +60,14 @@ public final class SocketAddress extends com.google.api.client.json.GenericJson
6060
@com.google.api.client.util.Key
6161
private java.lang.String namedPort;
6262

63+
/**
64+
* The Linux network namespace to bind the socket to. If this is set, Envoy will create the socket
65+
* in the specified network namespace. Only supported on Linux. [#not-implemented-hide:]
66+
* The value may be {@code null}.
67+
*/
68+
@com.google.api.client.util.Key
69+
private java.lang.String networkNamespaceFilepath;
70+
6371
/**
6472
* The value may be {@code null}.
6573
*/
@@ -153,6 +161,25 @@ public SocketAddress setNamedPort(java.lang.String namedPort) {
153161
return this;
154162
}
155163

164+
/**
165+
* The Linux network namespace to bind the socket to. If this is set, Envoy will create the socket
166+
* in the specified network namespace. Only supported on Linux. [#not-implemented-hide:]
167+
* @return value or {@code null} for none
168+
*/
169+
public java.lang.String getNetworkNamespaceFilepath() {
170+
return networkNamespaceFilepath;
171+
}
172+
173+
/**
174+
* The Linux network namespace to bind the socket to. If this is set, Envoy will create the socket
175+
* in the specified network namespace. Only supported on Linux. [#not-implemented-hide:]
176+
* @param networkNamespaceFilepath networkNamespaceFilepath or {@code null} for none
177+
*/
178+
public SocketAddress setNetworkNamespaceFilepath(java.lang.String networkNamespaceFilepath) {
179+
this.networkNamespaceFilepath = networkNamespaceFilepath;
180+
return this;
181+
}
182+
156183
/**
157184
* @return value or {@code null} for none
158185
*/

clients/google-api-services-trafficdirector/v3/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-trafficdirector</artifactId>
11-
<version>v3-rev20250206-2.0.0</version>
12-
<name>Traffic Director API v3-rev20250206-2.0.0</name>
11+
<version>v3-rev20250423-2.0.0</version>
12+
<name>Traffic Director API v3-rev20250423-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)