Skip to content

Commit 73a68cf

Browse files
1 parent 664157f commit 73a68cf

File tree

4 files changed

+36
-6
lines changed

4 files changed

+36
-6
lines changed

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

clients/google-api-services-container/v1/2.0.0/com/google/api/services/container/model/NodeNetworkConfig.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,15 @@
3030
@SuppressWarnings("javadoc")
3131
public final class NodeNetworkConfig extends com.google.api.client.json.GenericJson {
3232

33+
/**
34+
* Immutable. The accelerator network profile for the node pool. For now the only valid value is
35+
* "auto". If specified, the network configuration of the nodes in this node pool will be managed
36+
* by this profile for the supported machine types, zone, etc.
37+
* The value may be {@code null}.
38+
*/
39+
@com.google.api.client.util.Key
40+
private java.lang.String acceleratorNetworkProfile;
41+
3342
/**
3443
* We specify the additional node networks for this node pool using this list. Each node network
3544
* corresponds to an additional interface
@@ -151,6 +160,27 @@ public final class NodeNetworkConfig extends com.google.api.client.json.GenericJ
151160
@com.google.api.client.util.Key
152161
private java.lang.String subnetwork;
153162

163+
/**
164+
* Immutable. The accelerator network profile for the node pool. For now the only valid value is
165+
* "auto". If specified, the network configuration of the nodes in this node pool will be managed
166+
* by this profile for the supported machine types, zone, etc.
167+
* @return value or {@code null} for none
168+
*/
169+
public java.lang.String getAcceleratorNetworkProfile() {
170+
return acceleratorNetworkProfile;
171+
}
172+
173+
/**
174+
* Immutable. The accelerator network profile for the node pool. For now the only valid value is
175+
* "auto". If specified, the network configuration of the nodes in this node pool will be managed
176+
* by this profile for the supported machine types, zone, etc.
177+
* @param acceleratorNetworkProfile acceleratorNetworkProfile or {@code null} for none
178+
*/
179+
public NodeNetworkConfig setAcceleratorNetworkProfile(java.lang.String acceleratorNetworkProfile) {
180+
this.acceleratorNetworkProfile = acceleratorNetworkProfile;
181+
return this;
182+
}
183+
154184
/**
155185
* We specify the additional node networks for this node pool using this list. Each node network
156186
* corresponds to an additional interface

clients/google-api-services-container/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-container</artifactId>
11-
<version>v1-rev20260323-2.0.0</version>
12-
<name>Kubernetes Engine API v1-rev20260323-2.0.0</name>
11+
<version>v1-rev20260324-2.0.0</version>
12+
<name>Kubernetes Engine API v1-rev20260324-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)