Skip to content

Commit 2406f36

Browse files
1 parent c999629 commit 2406f36

File tree

18 files changed

+273
-27
lines changed

18 files changed

+273
-27
lines changed

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

clients/google-api-services-gkehub/v1/2.0.0/com/google/api/services/gkehub/v1/GKEHub.java

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1326,6 +1326,32 @@ public Get setName(java.lang.String name) {
13261326
return this;
13271327
}
13281328

1329+
/**
1330+
* Optional. If set to true, the response will return partial results when some regions
1331+
* are unreachable and the unreachable field in Feature proto will be populated. If set to
1332+
* false, the request will fail when some regions are unreachable.
1333+
*/
1334+
@com.google.api.client.util.Key
1335+
private java.lang.Boolean returnPartialSuccess;
1336+
1337+
/** Optional. If set to true, the response will return partial results when some regions are
1338+
unreachable and the unreachable field in Feature proto will be populated. If set to false, the
1339+
request will fail when some regions are unreachable.
1340+
*/
1341+
public java.lang.Boolean getReturnPartialSuccess() {
1342+
return returnPartialSuccess;
1343+
}
1344+
1345+
/**
1346+
* Optional. If set to true, the response will return partial results when some regions
1347+
* are unreachable and the unreachable field in Feature proto will be populated. If set to
1348+
* false, the request will fail when some regions are unreachable.
1349+
*/
1350+
public Get setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
1351+
this.returnPartialSuccess = returnPartialSuccess;
1352+
return this;
1353+
}
1354+
13291355
@Override
13301356
public Get set(String parameterName, Object value) {
13311357
return (Get) super.set(parameterName, value);
@@ -1771,6 +1797,32 @@ public List setPageToken(java.lang.String pageToken) {
17711797
return this;
17721798
}
17731799

1800+
/**
1801+
* Optional. If set to true, the response will return partial results when some regions
1802+
* are unreachable and the unreachable field in Feature proto will be populated. If set to
1803+
* false, the request will fail when some regions are unreachable.
1804+
*/
1805+
@com.google.api.client.util.Key
1806+
private java.lang.Boolean returnPartialSuccess;
1807+
1808+
/** Optional. If set to true, the response will return partial results when some regions are
1809+
unreachable and the unreachable field in Feature proto will be populated. If set to false, the
1810+
request will fail when some regions are unreachable.
1811+
*/
1812+
public java.lang.Boolean getReturnPartialSuccess() {
1813+
return returnPartialSuccess;
1814+
}
1815+
1816+
/**
1817+
* Optional. If set to true, the response will return partial results when some regions
1818+
* are unreachable and the unreachable field in Feature proto will be populated. If set to
1819+
* false, the request will fail when some regions are unreachable.
1820+
*/
1821+
public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
1822+
this.returnPartialSuccess = returnPartialSuccess;
1823+
return this;
1824+
}
1825+
17741826
@Override
17751827
public List set(String parameterName, Object value) {
17761828
return (List) super.set(parameterName, value);

clients/google-api-services-gkehub/v1/2.0.0/com/google/api/services/gkehub/v1/model/ConfigManagementMembershipSpec.java

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ public final class ConfigManagementMembershipSpec extends com.google.api.client.
6363
private java.lang.String management;
6464

6565
/**
66-
* Policy Controller configuration for the cluster.
66+
* Policy Controller configuration for the cluster. Deprecated: Configuring Policy Controller
67+
* through the configmanagement feature is no longer recommended. Use the policycontroller feature
68+
* instead.
6769
* The value may be {@code null}.
6870
*/
6971
@com.google.api.client.util.Key
@@ -153,15 +155,19 @@ public ConfigManagementMembershipSpec setManagement(java.lang.String management)
153155
}
154156

155157
/**
156-
* Policy Controller configuration for the cluster.
158+
* Policy Controller configuration for the cluster. Deprecated: Configuring Policy Controller
159+
* through the configmanagement feature is no longer recommended. Use the policycontroller feature
160+
* instead.
157161
* @return value or {@code null} for none
158162
*/
159163
public ConfigManagementPolicyController getPolicyController() {
160164
return policyController;
161165
}
162166

163167
/**
164-
* Policy Controller configuration for the cluster.
168+
* Policy Controller configuration for the cluster. Deprecated: Configuring Policy Controller
169+
* through the configmanagement feature is no longer recommended. Use the policycontroller feature
170+
* instead.
165171
* @param policyController policyController or {@code null} for none
166172
*/
167173
public ConfigManagementMembershipSpec setPolicyController(ConfigManagementPolicyController policyController) {

clients/google-api-services-gkehub/v1/2.0.0/com/google/api/services/gkehub/v1/model/Feature.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,13 @@ public final class Feature extends com.google.api.client.json.GenericJson {
137137
@com.google.api.client.util.Key
138138
private CommonFeatureState state;
139139

140+
/**
141+
* Output only. List of locations that could not be reached while fetching this feature.
142+
* The value may be {@code null}.
143+
*/
144+
@com.google.api.client.util.Key
145+
private java.util.List<java.lang.String> unreachable;
146+
140147
/**
141148
* Output only. When the Feature resource was last updated.
142149
* The value may be {@code null}.
@@ -396,6 +403,23 @@ public Feature setState(CommonFeatureState state) {
396403
return this;
397404
}
398405

406+
/**
407+
* Output only. List of locations that could not be reached while fetching this feature.
408+
* @return value or {@code null} for none
409+
*/
410+
public java.util.List<java.lang.String> getUnreachable() {
411+
return unreachable;
412+
}
413+
414+
/**
415+
* Output only. List of locations that could not be reached while fetching this feature.
416+
* @param unreachable unreachable or {@code null} for none
417+
*/
418+
public Feature setUnreachable(java.util.List<java.lang.String> unreachable) {
419+
this.unreachable = unreachable;
420+
return this;
421+
}
422+
399423
/**
400424
* Output only. When the Feature resource was last updated.
401425
* @return value or {@code null} for none

clients/google-api-services-gkehub/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-gkehub</artifactId>
11-
<version>v1-rev20240706-2.0.0</version>
12-
<name>GKE Hub API v1-rev20240706-2.0.0</name>
11+
<version>v1-rev20240727-2.0.0</version>
12+
<name>GKE Hub API v1-rev20240727-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-gkehub/v1alpha/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-gkehub</artifactId>
25-
<version>v1alpha-rev20240706-2.0.0</version>
25+
<version>v1alpha-rev20240727-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-gkehub:v1alpha-rev20240706-2.0.0'
38+
implementation 'com.google.apis:google-api-services-gkehub:v1alpha-rev20240727-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-gkehub/v1alpha/2.0.0/com/google/api/services/gkehub/v1alpha/GKEHub.java

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1326,6 +1326,32 @@ public Get setName(java.lang.String name) {
13261326
return this;
13271327
}
13281328

1329+
/**
1330+
* Optional. If set to true, the response will return partial results when some regions
1331+
* are unreachable and the unreachable field in Feature proto will be populated. If set to
1332+
* false, the request will fail when some regions are unreachable.
1333+
*/
1334+
@com.google.api.client.util.Key
1335+
private java.lang.Boolean returnPartialSuccess;
1336+
1337+
/** Optional. If set to true, the response will return partial results when some regions are
1338+
unreachable and the unreachable field in Feature proto will be populated. If set to false, the
1339+
request will fail when some regions are unreachable.
1340+
*/
1341+
public java.lang.Boolean getReturnPartialSuccess() {
1342+
return returnPartialSuccess;
1343+
}
1344+
1345+
/**
1346+
* Optional. If set to true, the response will return partial results when some regions
1347+
* are unreachable and the unreachable field in Feature proto will be populated. If set to
1348+
* false, the request will fail when some regions are unreachable.
1349+
*/
1350+
public Get setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
1351+
this.returnPartialSuccess = returnPartialSuccess;
1352+
return this;
1353+
}
1354+
13291355
@Override
13301356
public Get set(String parameterName, Object value) {
13311357
return (Get) super.set(parameterName, value);
@@ -1771,6 +1797,32 @@ public List setPageToken(java.lang.String pageToken) {
17711797
return this;
17721798
}
17731799

1800+
/**
1801+
* Optional. If set to true, the response will return partial results when some regions
1802+
* are unreachable and the unreachable field in Feature proto will be populated. If set to
1803+
* false, the request will fail when some regions are unreachable.
1804+
*/
1805+
@com.google.api.client.util.Key
1806+
private java.lang.Boolean returnPartialSuccess;
1807+
1808+
/** Optional. If set to true, the response will return partial results when some regions are
1809+
unreachable and the unreachable field in Feature proto will be populated. If set to false, the
1810+
request will fail when some regions are unreachable.
1811+
*/
1812+
public java.lang.Boolean getReturnPartialSuccess() {
1813+
return returnPartialSuccess;
1814+
}
1815+
1816+
/**
1817+
* Optional. If set to true, the response will return partial results when some regions
1818+
* are unreachable and the unreachable field in Feature proto will be populated. If set to
1819+
* false, the request will fail when some regions are unreachable.
1820+
*/
1821+
public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
1822+
this.returnPartialSuccess = returnPartialSuccess;
1823+
return this;
1824+
}
1825+
17741826
@Override
17751827
public List set(String parameterName, Object value) {
17761828
return (List) super.set(parameterName, value);

clients/google-api-services-gkehub/v1alpha/2.0.0/com/google/api/services/gkehub/v1alpha/model/ConfigManagementMembershipSpec.java

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,9 @@ public final class ConfigManagementMembershipSpec extends com.google.api.client.
7171
private java.lang.String management;
7272

7373
/**
74-
* Policy Controller configuration for the cluster.
74+
* Policy Controller configuration for the cluster. Deprecated: Configuring Policy Controller
75+
* through the configmanagement feature is no longer recommended. Use the policycontroller feature
76+
* instead.
7577
* The value may be {@code null}.
7678
*/
7779
@com.google.api.client.util.Key
@@ -180,15 +182,19 @@ public ConfigManagementMembershipSpec setManagement(java.lang.String management)
180182
}
181183

182184
/**
183-
* Policy Controller configuration for the cluster.
185+
* Policy Controller configuration for the cluster. Deprecated: Configuring Policy Controller
186+
* through the configmanagement feature is no longer recommended. Use the policycontroller feature
187+
* instead.
184188
* @return value or {@code null} for none
185189
*/
186190
public ConfigManagementPolicyController getPolicyController() {
187191
return policyController;
188192
}
189193

190194
/**
191-
* Policy Controller configuration for the cluster.
195+
* Policy Controller configuration for the cluster. Deprecated: Configuring Policy Controller
196+
* through the configmanagement feature is no longer recommended. Use the policycontroller feature
197+
* instead.
192198
* @param policyController policyController or {@code null} for none
193199
*/
194200
public ConfigManagementMembershipSpec setPolicyController(ConfigManagementPolicyController policyController) {

clients/google-api-services-gkehub/v1alpha/2.0.0/com/google/api/services/gkehub/v1alpha/model/Feature.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,13 @@ public final class Feature extends com.google.api.client.json.GenericJson {
137137
@com.google.api.client.util.Key
138138
private CommonFeatureState state;
139139

140+
/**
141+
* Output only. List of locations that could not be reached while fetching this feature.
142+
* The value may be {@code null}.
143+
*/
144+
@com.google.api.client.util.Key
145+
private java.util.List<java.lang.String> unreachable;
146+
140147
/**
141148
* Output only. When the Feature resource was last updated.
142149
* The value may be {@code null}.
@@ -396,6 +403,23 @@ public Feature setState(CommonFeatureState state) {
396403
return this;
397404
}
398405

406+
/**
407+
* Output only. List of locations that could not be reached while fetching this feature.
408+
* @return value or {@code null} for none
409+
*/
410+
public java.util.List<java.lang.String> getUnreachable() {
411+
return unreachable;
412+
}
413+
414+
/**
415+
* Output only. List of locations that could not be reached while fetching this feature.
416+
* @param unreachable unreachable or {@code null} for none
417+
*/
418+
public Feature setUnreachable(java.util.List<java.lang.String> unreachable) {
419+
this.unreachable = unreachable;
420+
return this;
421+
}
422+
399423
/**
400424
* Output only. When the Feature resource was last updated.
401425
* @return value or {@code null} for none

0 commit comments

Comments
 (0)