Skip to content

Commit 256b8aa

Browse files
1 parent 7f276e5 commit 256b8aa

File tree

6 files changed

+39
-12
lines changed

6 files changed

+39
-12
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-rev20240814-2.0.0</version>
25+
<version>v1-rev20240905-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-rev20240814-2.0.0'
38+
implementation 'com.google.apis:google-api-services-container:v1-rev20240905-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,14 @@ public final class AdditionalPodNetworkConfig extends com.google.api.client.json
3838
@com.google.api.client.util.Key
3939
private MaxPodsConstraint maxPodsPerNode;
4040

41+
/**
42+
* The name of the network attachment for pods to communicate to; cannot be specified along with
43+
* subnetwork or secondary_pod_range.
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private java.lang.String networkAttachment;
48+
4149
/**
4250
* The name of the secondary range on the subnet which provides IP address for this pod range.
4351
* The value may be {@code null}.
@@ -69,6 +77,25 @@ public AdditionalPodNetworkConfig setMaxPodsPerNode(MaxPodsConstraint maxPodsPer
6977
return this;
7078
}
7179

80+
/**
81+
* The name of the network attachment for pods to communicate to; cannot be specified along with
82+
* subnetwork or secondary_pod_range.
83+
* @return value or {@code null} for none
84+
*/
85+
public java.lang.String getNetworkAttachment() {
86+
return networkAttachment;
87+
}
88+
89+
/**
90+
* The name of the network attachment for pods to communicate to; cannot be specified along with
91+
* subnetwork or secondary_pod_range.
92+
* @param networkAttachment networkAttachment or {@code null} for none
93+
*/
94+
public AdditionalPodNetworkConfig setNetworkAttachment(java.lang.String networkAttachment) {
95+
this.networkAttachment = networkAttachment;
96+
return this;
97+
}
98+
7299
/**
73100
* The name of the secondary range on the subnet which provides IP address for this pod range.
74101
* @return value or {@code null} for none

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
public final class GetJSONWebKeysResponse extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* OnePlatform automatically extracts this field and uses it to set the HTTP Cache-Control header.
34+
* For HTTP requests, this field is automatically extracted into the Cache-Control HTTP header.
3535
* The value may be {@code null}.
3636
*/
3737
@com.google.api.client.util.Key
@@ -45,15 +45,15 @@ public final class GetJSONWebKeysResponse extends com.google.api.client.json.Gen
4545
private java.util.List<Jwk> keys;
4646

4747
/**
48-
* OnePlatform automatically extracts this field and uses it to set the HTTP Cache-Control header.
48+
* For HTTP requests, this field is automatically extracted into the Cache-Control HTTP header.
4949
* @return value or {@code null} for none
5050
*/
5151
public HttpCacheControlResponseHeader getCacheHeader() {
5252
return cacheHeader;
5353
}
5454

5555
/**
56-
* OnePlatform automatically extracts this field and uses it to set the HTTP Cache-Control header.
56+
* For HTTP requests, this field is automatically extracted into the Cache-Control HTTP header.
5757
* @param cacheHeader cacheHeader or {@code null} for none
5858
*/
5959
public GetJSONWebKeysResponse setCacheHeader(HttpCacheControlResponseHeader cacheHeader) {

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
public final class GetOpenIDConfigResponse extends com.google.api.client.json.GenericJson {
3333

3434
/**
35-
* OnePlatform automatically extracts this field and uses it to set the HTTP Cache-Control header.
35+
* For HTTP requests, this field is automatically extracted into the Cache-Control HTTP header.
3636
* The value may be {@code null}.
3737
*/
3838
@com.google.api.client.util.Key
@@ -88,15 +88,15 @@ public final class GetOpenIDConfigResponse extends com.google.api.client.json.Ge
8888
private java.util.List<java.lang.String> subjectTypesSupported;
8989

9090
/**
91-
* OnePlatform automatically extracts this field and uses it to set the HTTP Cache-Control header.
91+
* For HTTP requests, this field is automatically extracted into the Cache-Control HTTP header.
9292
* @return value or {@code null} for none
9393
*/
9494
public HttpCacheControlResponseHeader getCacheHeader() {
9595
return cacheHeader;
9696
}
9797

9898
/**
99-
* OnePlatform automatically extracts this field and uses it to set the HTTP Cache-Control header.
99+
* For HTTP requests, this field is automatically extracted into the Cache-Control HTTP header.
100100
* @param cacheHeader cacheHeader or {@code null} for none
101101
*/
102102
public GetOpenIDConfigResponse setCacheHeader(HttpCacheControlResponseHeader cacheHeader) {

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-rev20240814-2.0.0</version>
12-
<name>Kubernetes Engine API v1-rev20240814-2.0.0</name>
11+
<version>v1-rev20240905-2.0.0</version>
12+
<name>Kubernetes Engine API v1-rev20240905-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-rev20240814-2.0.0</version>
25+
<version>v1-rev20240905-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-rev20240814-2.0.0'
38+
implementation 'com.google.apis:google-api-services-container:v1-rev20240905-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)