Skip to content

Commit 12f4f88

Browse files
chore: regenerate gkehub client
1 parent 5ec85f7 commit 12f4f88

File tree

73 files changed

+2634
-430
lines changed

Some content is hidden

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

73 files changed

+2634
-430
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: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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
*

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) {

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

Lines changed: 30 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -37,28 +37,34 @@ public final class ConfigManagementContainerOverride extends com.google.api.clie
3737
private java.lang.String containerName;
3838

3939
/**
40-
* Optional. The cpu limit of the container.
40+
* Optional. The cpu limit of the container. Use the following CPU resource units:
41+
* https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#meaning-of-cpu.
4142
* The value may be {@code null}.
4243
*/
4344
@com.google.api.client.util.Key
4445
private java.lang.String cpuLimit;
4546

4647
/**
47-
* Optional. The cpu request of the container.
48+
* Optional. The cpu request of the container. Use the following CPU resource units:
49+
* https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#meaning-of-cpu.
4850
* The value may be {@code null}.
4951
*/
5052
@com.google.api.client.util.Key
5153
private java.lang.String cpuRequest;
5254

5355
/**
54-
* Optional. The memory limit of the container.
56+
* Optional. The memory limit of the container. Use the following memory resource units:
57+
* https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#meaning-of-
58+
* memory.
5559
* The value may be {@code null}.
5660
*/
5761
@com.google.api.client.util.Key
5862
private java.lang.String memoryLimit;
5963

6064
/**
61-
* Optional. The memory request of the container.
65+
* Optional. The memory request of the container. Use the following memory resource units:
66+
* https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#meaning-of-
67+
* memory.
6268
* The value may be {@code null}.
6369
*/
6470
@com.google.api.client.util.Key
@@ -82,15 +88,17 @@ public ConfigManagementContainerOverride setContainerName(java.lang.String conta
8288
}
8389

8490
/**
85-
* Optional. The cpu limit of the container.
91+
* Optional. The cpu limit of the container. Use the following CPU resource units:
92+
* https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#meaning-of-cpu.
8693
* @return value or {@code null} for none
8794
*/
8895
public java.lang.String getCpuLimit() {
8996
return cpuLimit;
9097
}
9198

9299
/**
93-
* Optional. The cpu limit of the container.
100+
* Optional. The cpu limit of the container. Use the following CPU resource units:
101+
* https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#meaning-of-cpu.
94102
* @param cpuLimit cpuLimit or {@code null} for none
95103
*/
96104
public ConfigManagementContainerOverride setCpuLimit(java.lang.String cpuLimit) {
@@ -99,15 +107,17 @@ public ConfigManagementContainerOverride setCpuLimit(java.lang.String cpuLimit)
99107
}
100108

101109
/**
102-
* Optional. The cpu request of the container.
110+
* Optional. The cpu request of the container. Use the following CPU resource units:
111+
* https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#meaning-of-cpu.
103112
* @return value or {@code null} for none
104113
*/
105114
public java.lang.String getCpuRequest() {
106115
return cpuRequest;
107116
}
108117

109118
/**
110-
* Optional. The cpu request of the container.
119+
* Optional. The cpu request of the container. Use the following CPU resource units:
120+
* https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#meaning-of-cpu.
111121
* @param cpuRequest cpuRequest or {@code null} for none
112122
*/
113123
public ConfigManagementContainerOverride setCpuRequest(java.lang.String cpuRequest) {
@@ -116,15 +126,19 @@ public ConfigManagementContainerOverride setCpuRequest(java.lang.String cpuReque
116126
}
117127

118128
/**
119-
* Optional. The memory limit of the container.
129+
* Optional. The memory limit of the container. Use the following memory resource units:
130+
* https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#meaning-of-
131+
* memory.
120132
* @return value or {@code null} for none
121133
*/
122134
public java.lang.String getMemoryLimit() {
123135
return memoryLimit;
124136
}
125137

126138
/**
127-
* Optional. The memory limit of the container.
139+
* Optional. The memory limit of the container. Use the following memory resource units:
140+
* https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#meaning-of-
141+
* memory.
128142
* @param memoryLimit memoryLimit or {@code null} for none
129143
*/
130144
public ConfigManagementContainerOverride setMemoryLimit(java.lang.String memoryLimit) {
@@ -133,15 +147,19 @@ public ConfigManagementContainerOverride setMemoryLimit(java.lang.String memoryL
133147
}
134148

135149
/**
136-
* Optional. The memory request of the container.
150+
* Optional. The memory request of the container. Use the following memory resource units:
151+
* https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#meaning-of-
152+
* memory.
137153
* @return value or {@code null} for none
138154
*/
139155
public java.lang.String getMemoryRequest() {
140156
return memoryRequest;
141157
}
142158

143159
/**
144-
* Optional. The memory request of the container.
160+
* Optional. The memory request of the container. Use the following memory resource units:
161+
* https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#meaning-of-
162+
* memory.
145163
* @param memoryRequest memoryRequest or {@code null} for none
146164
*/
147165
public ConfigManagementContainerOverride setMemoryRequest(java.lang.String memoryRequest) {

0 commit comments

Comments
 (0)