Skip to content

Commit 22b06ad

Browse files
chore: regenerate gkehub client
1 parent 38c1764 commit 22b06ad

File tree

75 files changed

+2648
-451
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+2648
-451
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-rev20260119-2.0.0</version>
25+
<version>v1-rev20260126-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-rev20260119-2.0.0'
38+
implementation 'com.google.apis:google-api-services-gkehub:v1-rev20260126-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: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public class GKEHub extends com.google.api.client.googleapis.services.json.Abstr
103103
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
104104
* <li>Android: {@code newCompatibleTransport} from
105105
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
106-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
106+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
107107
* </li>
108108
* </ul>
109109
* @param jsonFactory JSON factory, which may be:
@@ -576,7 +576,10 @@ public Get set(String parameterName, Object value) {
576576
}
577577
}
578578
/**
579-
* Lists information about the supported locations for this service.
579+
* Lists information about the supported locations for this service. This method can be called in
580+
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
581+
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
582+
* public locations as well as private or other locations specifically visible to the project.
580583
*
581584
* Create a request for the method "locations.list".
582585
*
@@ -600,7 +603,10 @@ public class List extends GKEHubRequest<com.google.api.services.gkehub.v1.model.
600603
java.util.regex.Pattern.compile("^projects/[^/]+$");
601604

602605
/**
603-
* Lists information about the supported locations for this service.
606+
* Lists information about the supported locations for this service. This method can be called in
607+
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
608+
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
609+
* public locations as well as private or other locations specifically visible to the project.
604610
*
605611
* Create a request for the method "locations.list".
606612
*
@@ -10818,8 +10824,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
1081810824
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
1081910825
* <li>Android: {@code newCompatibleTransport} from
1082010826
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
10821-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
10822-
* </li>
10827+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
1082310828
* </ul>
1082410829
* @param jsonFactory JSON factory, which may be:
1082510830
* <ul>

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,13 @@ public final class CommonFeatureSpec extends com.google.api.client.json.GenericJ
7171
@com.google.api.client.util.Key
7272
private RBACRoleBindingActuationFeatureSpec rbacrolebindingactuation;
7373

74+
/**
75+
* Workload Identity feature spec.
76+
* The value may be {@code null}.
77+
*/
78+
@com.google.api.client.util.Key
79+
private WorkloadIdentityFeatureSpec workloadidentity;
80+
7481
/**
7582
* Appdevexperience specific spec.
7683
* @return value or {@code null} for none
@@ -173,6 +180,23 @@ public CommonFeatureSpec setRbacrolebindingactuation(RBACRoleBindingActuationFea
173180
return this;
174181
}
175182

183+
/**
184+
* Workload Identity feature spec.
185+
* @return value or {@code null} for none
186+
*/
187+
public WorkloadIdentityFeatureSpec getWorkloadidentity() {
188+
return workloadidentity;
189+
}
190+
191+
/**
192+
* Workload Identity feature spec.
193+
* @param workloadidentity workloadidentity or {@code null} for none
194+
*/
195+
public CommonFeatureSpec setWorkloadidentity(WorkloadIdentityFeatureSpec workloadidentity) {
196+
this.workloadidentity = workloadidentity;
197+
return this;
198+
}
199+
176200
@Override
177201
public CommonFeatureSpec set(String fieldName, Object value) {
178202
return (CommonFeatureSpec) super.set(fieldName, value);

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,13 @@ public final class CommonFeatureState extends com.google.api.client.json.Generic
6464
@com.google.api.client.util.Key
6565
private FeatureState state;
6666

67+
/**
68+
* WorkloadIdentity fleet-level state.
69+
* The value may be {@code null}.
70+
*/
71+
@com.google.api.client.util.Key
72+
private WorkloadIdentityFeatureState workloadidentity;
73+
6774
/**
6875
* Appdevexperience specific state.
6976
* @return value or {@code null} for none
@@ -149,6 +156,23 @@ public CommonFeatureState setState(FeatureState state) {
149156
return this;
150157
}
151158

159+
/**
160+
* WorkloadIdentity fleet-level state.
161+
* @return value or {@code null} for none
162+
*/
163+
public WorkloadIdentityFeatureState getWorkloadidentity() {
164+
return workloadidentity;
165+
}
166+
167+
/**
168+
* WorkloadIdentity fleet-level state.
169+
* @param workloadidentity workloadidentity or {@code null} for none
170+
*/
171+
public CommonFeatureState setWorkloadidentity(WorkloadIdentityFeatureState workloadidentity) {
172+
this.workloadidentity = workloadidentity;
173+
return this;
174+
}
175+
152176
@Override
153177
public CommonFeatureState set(String fieldName, Object value) {
154178
return (CommonFeatureState) super.set(fieldName, value);

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

Lines changed: 45 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,21 @@
3030
public final class ConfigManagementConfigSync extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* Optional. Configuration for deployment overrides.
33+
* Optional. Configuration for deployment overrides. Applies only to Config Sync deployments with
34+
* containers that are not a root or namespace reconciler: `reconciler-manager`, `otel-collector`,
35+
* `resource-group-controller-manager`, `admission-webhook`. To override a root or namespace
36+
* reconciler, use the rootsync or reposync fields at https://docs.cloud.google.com/kubernetes-
37+
* engine/config-sync/docs/reference/rootsync-reposync-fields#override-resources instead.
3438
* The value may be {@code null}.
3539
*/
3640
@com.google.api.client.util.Key
3741
private java.util.List<ConfigManagementDeploymentOverride> deploymentOverrides;
3842

3943
/**
40-
* Optional. Enables the installation of ConfigSync. If set to true, ConfigSync resources will be
41-
* created and the other ConfigSync fields will be applied if exist. If set to false, all other
42-
* ConfigSync fields will be ignored, ConfigSync resources will be deleted. If omitted, ConfigSync
43-
* resources will be managed depends on the presence of the git or oci field.
44+
* Optional. Enables the installation of Config Sync. If set to true, the Feature will manage
45+
* Config Sync resources, and apply the other ConfigSync fields if they exist. If set to false,
46+
* the Feature will ignore all other ConfigSync fields and delete the Config Sync resources. If
47+
* omitted, ConfigSync is considered enabled if the git or oci field is present.
4448
* The value may be {@code null}.
4549
*/
4650
@com.google.api.client.util.Key
@@ -76,14 +80,18 @@ public final class ConfigManagementConfigSync extends com.google.api.client.json
7680

7781
/**
7882
* Optional. Set to true to enable the Config Sync admission webhook to prevent drifts. If set to
79-
* `false`, disables the Config Sync admission webhook and does not prevent drifts.
83+
* false, disables the Config Sync admission webhook and does not prevent drifts. Defaults to
84+
* false. See https://docs.cloud.google.com/kubernetes-engine/config-sync/docs/how-to/prevent-
85+
* config-drift for details.
8086
* The value may be {@code null}.
8187
*/
8288
@com.google.api.client.util.Key
8389
private java.lang.Boolean preventDrift;
8490

8591
/**
86-
* Optional. Specifies whether the Config Sync Repo is in "hierarchical" or "unstructured" mode.
92+
* Optional. Specifies whether the Config Sync repo is in `hierarchical` or `unstructured` mode.
93+
* Defaults to `hierarchical`. See https://docs.cloud.google.com/kubernetes-engine/config-
94+
* sync/docs/concepts/configs#organize-configs for an explanation.
8795
* The value may be {@code null}.
8896
*/
8997
@com.google.api.client.util.Key
@@ -97,15 +105,23 @@ public final class ConfigManagementConfigSync extends com.google.api.client.json
97105
private java.lang.Boolean stopSyncing;
98106

99107
/**
100-
* Optional. Configuration for deployment overrides.
108+
* Optional. Configuration for deployment overrides. Applies only to Config Sync deployments with
109+
* containers that are not a root or namespace reconciler: `reconciler-manager`, `otel-collector`,
110+
* `resource-group-controller-manager`, `admission-webhook`. To override a root or namespace
111+
* reconciler, use the rootsync or reposync fields at https://docs.cloud.google.com/kubernetes-
112+
* engine/config-sync/docs/reference/rootsync-reposync-fields#override-resources instead.
101113
* @return value or {@code null} for none
102114
*/
103115
public java.util.List<ConfigManagementDeploymentOverride> getDeploymentOverrides() {
104116
return deploymentOverrides;
105117
}
106118

107119
/**
108-
* Optional. Configuration for deployment overrides.
120+
* Optional. Configuration for deployment overrides. Applies only to Config Sync deployments with
121+
* containers that are not a root or namespace reconciler: `reconciler-manager`, `otel-collector`,
122+
* `resource-group-controller-manager`, `admission-webhook`. To override a root or namespace
123+
* reconciler, use the rootsync or reposync fields at https://docs.cloud.google.com/kubernetes-
124+
* engine/config-sync/docs/reference/rootsync-reposync-fields#override-resources instead.
109125
* @param deploymentOverrides deploymentOverrides or {@code null} for none
110126
*/
111127
public ConfigManagementConfigSync setDeploymentOverrides(java.util.List<ConfigManagementDeploymentOverride> deploymentOverrides) {
@@ -114,21 +130,21 @@ public ConfigManagementConfigSync setDeploymentOverrides(java.util.List<ConfigMa
114130
}
115131

116132
/**
117-
* Optional. Enables the installation of ConfigSync. If set to true, ConfigSync resources will be
118-
* created and the other ConfigSync fields will be applied if exist. If set to false, all other
119-
* ConfigSync fields will be ignored, ConfigSync resources will be deleted. If omitted, ConfigSync
120-
* resources will be managed depends on the presence of the git or oci field.
133+
* Optional. Enables the installation of Config Sync. If set to true, the Feature will manage
134+
* Config Sync resources, and apply the other ConfigSync fields if they exist. If set to false,
135+
* the Feature will ignore all other ConfigSync fields and delete the Config Sync resources. If
136+
* omitted, ConfigSync is considered enabled if the git or oci field is present.
121137
* @return value or {@code null} for none
122138
*/
123139
public java.lang.Boolean getEnabled() {
124140
return enabled;
125141
}
126142

127143
/**
128-
* Optional. Enables the installation of ConfigSync. If set to true, ConfigSync resources will be
129-
* created and the other ConfigSync fields will be applied if exist. If set to false, all other
130-
* ConfigSync fields will be ignored, ConfigSync resources will be deleted. If omitted, ConfigSync
131-
* resources will be managed depends on the presence of the git or oci field.
144+
* Optional. Enables the installation of Config Sync. If set to true, the Feature will manage
145+
* Config Sync resources, and apply the other ConfigSync fields if they exist. If set to false,
146+
* the Feature will ignore all other ConfigSync fields and delete the Config Sync resources. If
147+
* omitted, ConfigSync is considered enabled if the git or oci field is present.
132148
* @param enabled enabled or {@code null} for none
133149
*/
134150
public ConfigManagementConfigSync setEnabled(java.lang.Boolean enabled) {
@@ -203,7 +219,9 @@ public ConfigManagementConfigSync setOci(ConfigManagementOciConfig oci) {
203219

204220
/**
205221
* Optional. Set to true to enable the Config Sync admission webhook to prevent drifts. If set to
206-
* `false`, disables the Config Sync admission webhook and does not prevent drifts.
222+
* false, disables the Config Sync admission webhook and does not prevent drifts. Defaults to
223+
* false. See https://docs.cloud.google.com/kubernetes-engine/config-sync/docs/how-to/prevent-
224+
* config-drift for details.
207225
* @return value or {@code null} for none
208226
*/
209227
public java.lang.Boolean getPreventDrift() {
@@ -212,7 +230,9 @@ public java.lang.Boolean getPreventDrift() {
212230

213231
/**
214232
* Optional. Set to true to enable the Config Sync admission webhook to prevent drifts. If set to
215-
* `false`, disables the Config Sync admission webhook and does not prevent drifts.
233+
* false, disables the Config Sync admission webhook and does not prevent drifts. Defaults to
234+
* false. See https://docs.cloud.google.com/kubernetes-engine/config-sync/docs/how-to/prevent-
235+
* config-drift for details.
216236
* @param preventDrift preventDrift or {@code null} for none
217237
*/
218238
public ConfigManagementConfigSync setPreventDrift(java.lang.Boolean preventDrift) {
@@ -221,15 +241,19 @@ public ConfigManagementConfigSync setPreventDrift(java.lang.Boolean preventDrift
221241
}
222242

223243
/**
224-
* Optional. Specifies whether the Config Sync Repo is in "hierarchical" or "unstructured" mode.
244+
* Optional. Specifies whether the Config Sync repo is in `hierarchical` or `unstructured` mode.
245+
* Defaults to `hierarchical`. See https://docs.cloud.google.com/kubernetes-engine/config-
246+
* sync/docs/concepts/configs#organize-configs for an explanation.
225247
* @return value or {@code null} for none
226248
*/
227249
public java.lang.String getSourceFormat() {
228250
return sourceFormat;
229251
}
230252

231253
/**
232-
* Optional. Specifies whether the Config Sync Repo is in "hierarchical" or "unstructured" mode.
254+
* Optional. Specifies whether the Config Sync repo is in `hierarchical` or `unstructured` mode.
255+
* Defaults to `hierarchical`. See https://docs.cloud.google.com/kubernetes-engine/config-
256+
* sync/docs/concepts/configs#organize-configs for an explanation.
233257
* @param sourceFormat sourceFormat or {@code null} for none
234258
*/
235259
public ConfigManagementConfigSync setSourceFormat(java.lang.String sourceFormat) {

0 commit comments

Comments
 (0)