blob: 6e62228f70a0a36f6f279cd91e2a3f47bc5ea841 [file] [log] [blame]
Yoshi Automation Botb6971b02020-11-26 17:16:03 -08001{
2 "mtlsRootUrl": "https://container.mtls.googleapis.com/",
3 "kind": "discovery#restDescription",
4 "icons": {
5 "x32": "http://www.google.com/images/icons/product/search-32.gif",
6 "x16": "http://www.google.com/images/icons/product/search-16.gif"
7 },
8 "schemas": {
9 "HttpCacheControlResponseHeader": {
10 "id": "HttpCacheControlResponseHeader",
11 "description": "RFC-2616: cache control support",
12 "type": "object",
13 "properties": {
14 "directive": {
15 "type": "string",
16 "description": "14.9 request and response directives"
17 },
18 "expires": {
19 "type": "string",
20 "description": "14.21 response cache expires, in RFC 1123 date format"
21 },
22 "age": {
23 "type": "string",
24 "format": "int64",
25 "description": "14.6 response cache age, in seconds since the response is generated"
26 }
27 }
28 },
29 "NodePool": {
30 "properties": {
31 "statusMessage": {
32 "description": "[Output only] Additional information about the current status of this node pool instance, if available.",
33 "type": "string"
34 },
35 "podIpv4CidrSize": {
36 "description": "[Output only] The pod CIDR block size per node in this node pool.",
37 "type": "integer",
38 "format": "int32"
39 },
40 "maxPodsConstraint": {
41 "description": "The constraint on the maximum number of pods that can be run simultaneously on a node in the node pool.",
42 "$ref": "MaxPodsConstraint"
43 },
44 "selfLink": {
45 "type": "string",
46 "description": "[Output only] Server-defined URL for the resource."
47 },
48 "instanceGroupUrls": {
49 "description": "[Output only] The resource URLs of the [managed instance groups](https://cloud.google.com/compute/docs/instance-groups/creating-groups-of-managed-instances) associated with this node pool.",
50 "items": {
51 "type": "string"
52 },
53 "type": "array"
54 },
55 "config": {
56 "$ref": "NodeConfig",
57 "description": "The node configuration of the pool."
58 },
59 "name": {
60 "description": "The name of the node pool.",
61 "type": "string"
62 },
63 "conditions": {
64 "type": "array",
65 "description": "Which conditions caused the current node pool state.",
66 "items": {
67 "$ref": "StatusCondition"
68 }
69 },
70 "autoscaling": {
71 "description": "Autoscaler configuration for this NodePool. Autoscaler is enabled only if a valid configuration is present.",
72 "$ref": "NodePoolAutoscaling"
73 },
74 "locations": {
75 "type": "array",
76 "items": {
77 "type": "string"
78 },
79 "description": "The list of Google Compute Engine [zones](https://cloud.google.com/compute/docs/zones#available) in which the NodePool's nodes should be located. If this value is unspecified during node pool creation, the [Cluster.Locations](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.locations.clusters#Cluster.FIELDS.locations) value will be used, instead. Warning: changing node pool locations will result in nodes being added and/or removed."
80 },
81 "status": {
82 "enumDescriptions": [
83 "Not set.",
84 "The PROVISIONING state indicates the node pool is being created.",
85 "The RUNNING state indicates the node pool has been created and is fully usable.",
86 "The RUNNING_WITH_ERROR state indicates the node pool has been created and is partially usable. Some error state has occurred and some functionality may be impaired. Customer may need to reissue a request or trigger a new update.",
87 "The RECONCILING state indicates that some work is actively being done on the node pool, such as upgrading node software. Details can be found in the `statusMessage` field.",
88 "The STOPPING state indicates the node pool is being deleted.",
89 "The ERROR state indicates the node pool may be unusable. Details can be found in the `statusMessage` field."
90 ],
91 "enum": [
92 "STATUS_UNSPECIFIED",
93 "PROVISIONING",
94 "RUNNING",
95 "RUNNING_WITH_ERROR",
96 "RECONCILING",
97 "STOPPING",
98 "ERROR"
99 ],
100 "type": "string",
101 "description": "[Output only] The status of the nodes in this pool instance."
102 },
103 "version": {
104 "description": "The version of the Kubernetes of this node.",
105 "type": "string"
106 },
107 "management": {
108 "description": "NodeManagement configuration for this NodePool.",
109 "$ref": "NodeManagement"
110 },
111 "initialNodeCount": {
112 "type": "integer",
113 "description": "The initial node count for the pool. You must ensure that your Compute Engine [resource quota](https://cloud.google.com/compute/quotas) is sufficient for this number of instances. You must also have available firewall and routes quota.",
114 "format": "int32"
115 },
116 "upgradeSettings": {
117 "description": "Upgrade settings control disruption and speed of the upgrade.",
118 "$ref": "UpgradeSettings"
119 }
120 },
121 "description": "NodePool contains the name and configuration for a cluster's node pool. Node pools are a set of nodes (i.e. VM's), with a common configuration and specification, under the control of the cluster master. They may have a set of Kubernetes labels applied to them, which may be used to reference them during pod scheduling. They may also be resized up or down, to accommodate the workload.",
122 "id": "NodePool",
123 "type": "object"
124 },
125 "BinaryAuthorization": {
126 "properties": {
127 "enabled": {
128 "type": "boolean",
129 "description": "Enable Binary Authorization for this cluster. If enabled, all container images will be validated by Google Binauthz."
130 }
131 },
132 "description": "Configuration for Binary Authorization.",
133 "id": "BinaryAuthorization",
134 "type": "object"
135 },
136 "HttpLoadBalancing": {
137 "description": "Configuration options for the HTTP (L7) load balancing controller addon, which makes it easy to set up HTTP load balancers for services in a cluster.",
138 "type": "object",
139 "id": "HttpLoadBalancing",
140 "properties": {
141 "disabled": {
142 "description": "Whether the HTTP Load Balancing controller is enabled in the cluster. When enabled, it runs a small pod in the cluster that manages the load balancers.",
143 "type": "boolean"
144 }
145 }
146 },
147 "SetAddonsConfigRequest": {
148 "description": "SetAddonsRequest sets the addons associated with the cluster.",
149 "type": "object",
150 "properties": {
151 "addonsConfig": {
152 "description": "Required. The desired configurations for the various addons available to run in the cluster.",
153 "$ref": "AddonsConfig"
154 },
155 "zone": {
156 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field.",
157 "type": "string"
158 },
159 "clusterId": {
160 "type": "string",
161 "description": "Required. Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field."
162 },
163 "projectId": {
164 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
165 "type": "string"
166 },
167 "name": {
168 "description": "The name (project, location, cluster) of the cluster to set addons. Specified in the format `projects/*/locations/*/clusters/*`.",
169 "type": "string"
170 }
171 },
172 "id": "SetAddonsConfigRequest"
173 },
174 "MaxPodsConstraint": {
175 "description": "Constraints applied to pods.",
176 "id": "MaxPodsConstraint",
177 "type": "object",
178 "properties": {
179 "maxPodsPerNode": {
180 "format": "int64",
181 "description": "Constraint enforced on the max num of pods per node.",
182 "type": "string"
183 }
184 }
185 },
186 "LegacyAbac": {
187 "id": "LegacyAbac",
188 "type": "object",
189 "description": "Configuration for the legacy Attribute Based Access Control authorization mode.",
190 "properties": {
191 "enabled": {
192 "description": "Whether the ABAC authorizer is enabled for this cluster. When enabled, identities in the system, including service accounts, nodes, and controllers, will have statically granted permissions beyond those provided by the RBAC configuration or IAM.",
193 "type": "boolean"
194 }
195 }
196 },
197 "UpdateMasterRequest": {
198 "description": "UpdateMasterRequest updates the master of the cluster.",
199 "id": "UpdateMasterRequest",
200 "properties": {
201 "clusterId": {
202 "type": "string",
203 "description": "Required. Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field."
204 },
205 "masterVersion": {
206 "type": "string",
207 "description": "Required. The Kubernetes version to change the master to. Users may specify either explicit versions offered by Kubernetes Engine or version aliases, which have the following behavior: - \"latest\": picks the highest valid Kubernetes version - \"1.X\": picks the highest valid patch+gke.N patch in the 1.X version - \"1.X.Y\": picks the highest valid gke.N patch in the 1.X.Y version - \"1.X.Y-gke.N\": picks an explicit Kubernetes version - \"-\": picks the default Kubernetes version"
208 },
209 "projectId": {
210 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
211 "type": "string"
212 },
213 "name": {
214 "type": "string",
215 "description": "The name (project, location, cluster) of the cluster to update. Specified in the format `projects/*/locations/*/clusters/*`."
216 },
217 "zone": {
218 "type": "string",
219 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field."
220 }
221 },
222 "type": "object"
223 },
224 "RecurringTimeWindow": {
225 "id": "RecurringTimeWindow",
226 "type": "object",
227 "description": "Represents an arbitrary window of time that recurs.",
228 "properties": {
229 "recurrence": {
230 "description": "An RRULE (https://tools.ietf.org/html/rfc5545#section-3.8.5.3) for how this window reccurs. They go on for the span of time between the start and end time. For example, to have something repeat every weekday, you'd use: `FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR` To repeat some window daily (equivalent to the DailyMaintenanceWindow): `FREQ=DAILY` For the first weekend of every month: `FREQ=MONTHLY;BYSETPOS=1;BYDAY=SA,SU` This specifies how frequently the window starts. Eg, if you wanted to have a 9-5 UTC-4 window every weekday, you'd use something like: ``` start time = 2019-01-01T09:00:00-0400 end time = 2019-01-01T17:00:00-0400 recurrence = FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR ``` Windows can span multiple days. Eg, to make the window encompass every weekend from midnight Saturday till the last minute of Sunday UTC: ``` start time = 2019-01-05T00:00:00Z end time = 2019-01-07T23:59:00Z recurrence = FREQ=WEEKLY;BYDAY=SA ``` Note the start and end time's specific dates are largely arbitrary except to specify duration of the window and when it first starts. The FREQ values of HOURLY, MINUTELY, and SECONDLY are not supported.",
231 "type": "string"
232 },
233 "window": {
234 "$ref": "TimeWindow",
235 "description": "The window of the first recurrence."
236 }
237 }
238 },
239 "MaintenanceWindow": {
240 "type": "object",
241 "properties": {
242 "maintenanceExclusions": {
243 "description": "Exceptions to maintenance window. Non-emergency maintenance should not occur in these windows.",
244 "additionalProperties": {
245 "$ref": "TimeWindow"
246 },
247 "type": "object"
248 },
249 "dailyMaintenanceWindow": {
250 "description": "DailyMaintenanceWindow specifies a daily maintenance operation window.",
251 "$ref": "DailyMaintenanceWindow"
252 },
253 "recurringWindow": {
254 "description": "RecurringWindow specifies some number of recurring time periods for maintenance to occur. The time windows may be overlapping. If no maintenance windows are set, maintenance can occur at any time.",
255 "$ref": "RecurringTimeWindow"
256 }
257 },
258 "description": "MaintenanceWindow defines the maintenance window to be used for the cluster.",
259 "id": "MaintenanceWindow"
260 },
261 "Metric": {
262 "type": "object",
263 "id": "Metric",
264 "properties": {
265 "doubleValue": {
266 "description": "For metrics with floating point value.",
267 "format": "double",
268 "type": "number"
269 },
270 "intValue": {
271 "description": "For metrics with integer value.",
272 "format": "int64",
273 "type": "string"
274 },
275 "stringValue": {
276 "type": "string",
277 "description": "For metrics with custom values (ratios, visual progress, etc.)."
278 },
279 "name": {
280 "description": "Required. Metric name, e.g., \"nodes total\", \"percent done\".",
281 "type": "string"
282 }
283 },
284 "description": "Progress metric is (string, int|float|string) pair."
285 },
286 "GcePersistentDiskCsiDriverConfig": {
287 "type": "object",
288 "description": "Configuration for the Compute Engine PD CSI driver. This option can only be enabled at cluster creation time.",
289 "properties": {
290 "enabled": {
291 "type": "boolean",
292 "description": "Whether the Compute Engine PD CSI driver is enabled for this cluster."
293 }
294 },
295 "id": "GcePersistentDiskCsiDriverConfig"
296 },
297 "ShieldedNodes": {
298 "id": "ShieldedNodes",
299 "type": "object",
300 "description": "Configuration of Shielded Nodes feature.",
301 "properties": {
302 "enabled": {
303 "type": "boolean",
304 "description": "Whether Shielded Nodes features are enabled on all nodes in this cluster."
305 }
306 }
307 },
308 "GetJSONWebKeysResponse": {
309 "properties": {
310 "keys": {
311 "type": "array",
312 "items": {
313 "$ref": "Jwk"
314 },
315 "description": "The public component of the keys used by the cluster to sign token requests."
316 },
317 "cacheHeader": {
318 "description": "OnePlatform automatically extracts this field and uses it to set the HTTP Cache-Control header.",
319 "$ref": "HttpCacheControlResponseHeader"
320 }
321 },
322 "description": "GetJSONWebKeysResponse is a valid JSON Web Key Set as specififed in rfc 7517",
323 "id": "GetJSONWebKeysResponse",
324 "type": "object"
325 },
326 "DnsCacheConfig": {
327 "id": "DnsCacheConfig",
328 "description": "Configuration for NodeLocal DNSCache",
329 "type": "object",
330 "properties": {
331 "enabled": {
332 "type": "boolean",
333 "description": "Whether NodeLocal DNSCache is enabled for this cluster."
334 }
335 }
336 },
337 "UpdateNodePoolRequest": {
338 "id": "UpdateNodePoolRequest",
339 "description": "SetNodePoolVersionRequest updates the version of a node pool.",
340 "properties": {
341 "linuxNodeConfig": {
342 "$ref": "LinuxNodeConfig",
343 "description": "Parameters that can be configured on Linux nodes."
344 },
345 "nodePoolId": {
346 "description": "Required. Deprecated. The name of the node pool to upgrade. This field has been deprecated and replaced by the name field.",
347 "type": "string"
348 },
349 "workloadMetadataConfig": {
350 "description": "The desired workload metadata config for the node pool.",
351 "$ref": "WorkloadMetadataConfig"
352 },
353 "name": {
354 "description": "The name (project, location, cluster, node pool) of the node pool to update. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`.",
355 "type": "string"
356 },
357 "upgradeSettings": {
358 "$ref": "UpgradeSettings",
359 "description": "Upgrade settings control disruption and speed of the upgrade."
360 },
361 "kubeletConfig": {
362 "$ref": "NodeKubeletConfig",
363 "description": "Node kubelet configs."
364 },
365 "clusterId": {
366 "description": "Required. Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
367 "type": "string"
368 },
369 "imageType": {
370 "type": "string",
371 "description": "Required. The desired image type for the node pool."
372 },
373 "locations": {
374 "description": "The desired list of Google Compute Engine [zones](https://cloud.google.com/compute/docs/zones#available) in which the node pool's nodes should be located. Changing the locations for a node pool will result in nodes being either created or removed from the node pool, depending on whether locations are being added or removed.",
375 "type": "array",
376 "items": {
377 "type": "string"
378 }
379 },
380 "nodeVersion": {
381 "type": "string",
382 "description": "Required. The Kubernetes version to change the nodes to (typically an upgrade). Users may specify either explicit versions offered by Kubernetes Engine or version aliases, which have the following behavior: - \"latest\": picks the highest valid Kubernetes version - \"1.X\": picks the highest valid patch+gke.N patch in the 1.X version - \"1.X.Y\": picks the highest valid gke.N patch in the 1.X.Y version - \"1.X.Y-gke.N\": picks an explicit Kubernetes version - \"-\": picks the Kubernetes master version"
383 },
384 "projectId": {
385 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
386 "type": "string"
387 },
388 "zone": {
389 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field.",
390 "type": "string"
391 }
392 },
393 "type": "object"
394 },
395 "CancelOperationRequest": {
396 "properties": {
397 "zone": {
398 "type": "string",
399 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation resides. This field has been deprecated and replaced by the name field."
400 },
401 "name": {
402 "type": "string",
403 "description": "The name (project, location, operation id) of the operation to cancel. Specified in the format `projects/*/locations/*/operations/*`."
404 },
405 "projectId": {
406 "type": "string",
407 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field."
408 },
409 "operationId": {
410 "description": "Required. Deprecated. The server-assigned `name` of the operation. This field has been deprecated and replaced by the name field.",
411 "type": "string"
412 }
413 },
414 "id": "CancelOperationRequest",
415 "type": "object",
416 "description": "CancelOperationRequest cancels a single operation."
417 },
418 "DatabaseEncryption": {
419 "id": "DatabaseEncryption",
420 "properties": {
421 "state": {
422 "description": "Denotes the state of etcd encryption.",
423 "enum": [
424 "UNKNOWN",
425 "ENCRYPTED",
426 "DECRYPTED"
427 ],
428 "enumDescriptions": [
429 "Should never be set",
430 "Secrets in etcd are encrypted.",
431 "Secrets in etcd are stored in plain text (at etcd level) - this is unrelated to Compute Engine level full disk encryption."
432 ],
433 "type": "string"
434 },
435 "keyName": {
436 "type": "string",
437 "description": "Name of CloudKMS key to use for the encryption of secrets in etcd. Ex. projects/my-project/locations/global/keyRings/my-ring/cryptoKeys/my-key"
438 }
439 },
440 "type": "object",
441 "description": "Configuration of etcd encryption."
442 },
443 "SetNodePoolAutoscalingRequest": {
444 "id": "SetNodePoolAutoscalingRequest",
445 "properties": {
446 "projectId": {
447 "type": "string",
448 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field."
449 },
450 "zone": {
451 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field.",
452 "type": "string"
453 },
454 "name": {
455 "description": "The name (project, location, cluster, node pool) of the node pool to set autoscaler settings. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`.",
456 "type": "string"
457 },
458 "clusterId": {
459 "description": "Required. Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
460 "type": "string"
461 },
462 "autoscaling": {
463 "description": "Required. Autoscaling configuration for the node pool.",
464 "$ref": "NodePoolAutoscaling"
465 },
466 "nodePoolId": {
467 "description": "Required. Deprecated. The name of the node pool to upgrade. This field has been deprecated and replaced by the name field.",
468 "type": "string"
469 }
470 },
471 "description": "SetNodePoolAutoscalingRequest sets the autoscaler settings of a node pool.",
472 "type": "object"
473 },
474 "UpgradeSettings": {
475 "type": "object",
476 "properties": {
477 "maxSurge": {
478 "description": "The maximum number of nodes that can be created beyond the current size of the node pool during the upgrade process.",
479 "format": "int32",
480 "type": "integer"
481 },
482 "maxUnavailable": {
483 "type": "integer",
484 "description": "The maximum number of nodes that can be simultaneously unavailable during the upgrade process. A node is considered available if its status is Ready.",
485 "format": "int32"
486 }
487 },
488 "description": "These upgrade settings control the level of parallelism and the level of disruption caused by an upgrade. maxUnavailable controls the number of nodes that can be simultaneously unavailable. maxSurge controls the number of additional nodes that can be added to the node pool temporarily for the time of the upgrade to increase the number of available nodes. (maxUnavailable + maxSurge) determines the level of parallelism (how many nodes are being upgraded at the same time). Note: upgrades inevitably introduce some disruption since workloads need to be moved from old nodes to new, upgraded ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the same time. This ensures that there are always at least 4 nodes available.",
489 "id": "UpgradeSettings"
490 },
491 "ConfigConnectorConfig": {
492 "properties": {
493 "enabled": {
494 "description": "Whether Cloud Connector is enabled for this cluster.",
495 "type": "boolean"
496 }
497 },
498 "description": "Configuration options for the Config Connector add-on.",
499 "id": "ConfigConnectorConfig",
500 "type": "object"
501 },
502 "PodSecurityPolicyConfig": {
503 "description": "Configuration for the PodSecurityPolicy feature.",
504 "id": "PodSecurityPolicyConfig",
505 "type": "object",
506 "properties": {
507 "enabled": {
508 "description": "Enable the PodSecurityPolicy controller for this cluster. If enabled, pods must be valid under a PodSecurityPolicy to be created.",
509 "type": "boolean"
510 }
511 }
512 },
513 "Operation": {
514 "description": "This operation resource represents operations that may have happened or are happening on the cluster. All fields are output only.",
515 "properties": {
516 "detail": {
517 "type": "string",
518 "description": "Detailed operation progress, if available."
519 },
520 "nodepoolConditions": {
521 "description": "Which conditions caused the current node pool state. Deprecated. Use field error instead.",
522 "items": {
523 "$ref": "StatusCondition"
524 },
525 "type": "array"
526 },
527 "zone": {
528 "description": "The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation is taking place. This field is deprecated, use location instead.",
529 "type": "string"
530 },
531 "operationType": {
532 "description": "The operation type.",
533 "type": "string",
534 "enumDescriptions": [
535 "Not set.",
536 "Cluster create.",
537 "Cluster delete.",
538 "A master upgrade.",
539 "A node upgrade.",
540 "Cluster repair.",
541 "Cluster update.",
542 "Node pool create.",
543 "Node pool delete.",
544 "Set node pool management.",
545 "Automatic node pool repair.",
546 "Automatic node upgrade.",
547 "Set labels.",
548 "Set/generate master auth materials",
549 "Set node pool size.",
550 "Updates network policy for a cluster.",
551 "Set the maintenance policy."
552 ],
553 "enum": [
554 "TYPE_UNSPECIFIED",
555 "CREATE_CLUSTER",
556 "DELETE_CLUSTER",
557 "UPGRADE_MASTER",
558 "UPGRADE_NODES",
559 "REPAIR_CLUSTER",
560 "UPDATE_CLUSTER",
561 "CREATE_NODE_POOL",
562 "DELETE_NODE_POOL",
563 "SET_NODE_POOL_MANAGEMENT",
564 "AUTO_REPAIR_NODES",
565 "AUTO_UPGRADE_NODES",
566 "SET_LABELS",
567 "SET_MASTER_AUTH",
568 "SET_NODE_POOL_SIZE",
569 "SET_NETWORK_POLICY",
570 "SET_MAINTENANCE_POLICY"
571 ]
572 },
573 "targetLink": {
574 "type": "string",
575 "description": "Server-defined URL for the target of the operation."
576 },
577 "name": {
578 "description": "The server-assigned ID for the operation.",
579 "type": "string"
580 },
581 "status": {
582 "type": "string",
583 "enumDescriptions": [
584 "Not set.",
585 "The operation has been created.",
586 "The operation is currently running.",
587 "The operation is done, either cancelled or completed.",
588 "The operation is aborting."
589 ],
590 "description": "The current status of the operation.",
591 "enum": [
592 "STATUS_UNSPECIFIED",
593 "PENDING",
594 "RUNNING",
595 "DONE",
596 "ABORTING"
597 ]
598 },
599 "error": {
600 "description": "The error result of the operation in case of failure.",
601 "$ref": "Status"
602 },
603 "progress": {
604 "description": "Output only. [Output only] Progress information for an operation.",
605 "readOnly": true,
606 "$ref": "OperationProgress"
607 },
608 "clusterConditions": {
609 "type": "array",
610 "items": {
611 "$ref": "StatusCondition"
612 },
613 "description": "Which conditions caused the current cluster state. Deprecated. Use field error instead."
614 },
615 "location": {
616 "type": "string",
617 "description": "[Output only] The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) or [region](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) in which the cluster resides."
618 },
619 "startTime": {
620 "type": "string",
621 "description": "[Output only] The time the operation started, in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text format."
622 },
623 "endTime": {
624 "type": "string",
625 "description": "[Output only] The time the operation completed, in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text format."
626 },
627 "selfLink": {
628 "type": "string",
629 "description": "Server-defined URL for the resource."
630 },
631 "statusMessage": {
632 "readOnly": true,
633 "type": "string",
634 "description": "Output only. If an error has occurred, a textual description of the error. Deprecated. Use field error instead."
635 }
636 },
637 "id": "Operation",
638 "type": "object"
639 },
640 "PrivateClusterConfig": {
641 "properties": {
642 "enablePrivateNodes": {
643 "description": "Whether nodes have internal IP addresses only. If enabled, all nodes are given only RFC 1918 private addresses and communicate with the master via private networking.",
644 "type": "boolean"
645 },
646 "masterGlobalAccessConfig": {
647 "description": "Controls master global access settings.",
648 "$ref": "PrivateClusterMasterGlobalAccessConfig"
649 },
650 "peeringName": {
651 "description": "Output only. The peering name in the customer VPC used by this cluster.",
652 "type": "string"
653 },
654 "masterIpv4CidrBlock": {
655 "description": "The IP range in CIDR notation to use for the hosted master network. This range will be used for assigning internal IP addresses to the master or set of masters, as well as the ILB VIP. This range must not overlap with any other ranges in use within the cluster's network.",
656 "type": "string"
657 },
658 "enablePrivateEndpoint": {
659 "type": "boolean",
660 "description": "Whether the master's internal IP address is used as the cluster endpoint."
661 },
662 "publicEndpoint": {
663 "description": "Output only. The external IP address of this cluster's master endpoint.",
664 "type": "string"
665 },
666 "privateEndpoint": {
667 "description": "Output only. The internal IP address of this cluster's master endpoint.",
668 "type": "string"
669 }
670 },
671 "description": "Configuration options for private clusters.",
672 "type": "object",
673 "id": "PrivateClusterConfig"
674 },
675 "AddonsConfig": {
676 "id": "AddonsConfig",
677 "properties": {
678 "dnsCacheConfig": {
679 "$ref": "DnsCacheConfig",
680 "description": "Configuration for NodeLocalDNS, a dns cache running on cluster nodes"
681 },
682 "cloudRunConfig": {
683 "$ref": "CloudRunConfig",
684 "description": "Configuration for the Cloud Run addon. The `IstioConfig` addon must be enabled in order to enable Cloud Run addon. This option can only be enabled at cluster creation time."
685 },
686 "horizontalPodAutoscaling": {
687 "$ref": "HorizontalPodAutoscaling",
688 "description": "Configuration for the horizontal pod autoscaling feature, which increases or decreases the number of replica pods a replication controller has based on the resource usage of the existing pods."
689 },
690 "istioConfig": {
691 "description": "Configuration for Istio, an open platform to connect, manage, and secure microservices.",
692 "$ref": "IstioConfig"
693 },
694 "networkPolicyConfig": {
695 "$ref": "NetworkPolicyConfig",
696 "description": "Configuration for NetworkPolicy. This only tracks whether the addon is enabled or not on the Master, it does not track whether network policy is enabled for the nodes."
697 },
698 "configConnectorConfig": {
699 "$ref": "ConfigConnectorConfig",
700 "description": "Configuration for the ConfigConnector add-on, a Kubernetes extension to manage hosted GCP services through the Kubernetes API"
701 },
702 "kalmConfig": {
703 "description": "Configuration for the KALM addon, which manages the lifecycle of k8s applications.",
704 "$ref": "KalmConfig"
705 },
706 "gcePersistentDiskCsiDriverConfig": {
707 "description": "Configuration for the Compute Engine Persistent Disk CSI driver.",
708 "$ref": "GcePersistentDiskCsiDriverConfig"
709 },
710 "kubernetesDashboard": {
711 "$ref": "KubernetesDashboard",
712 "description": "Configuration for the Kubernetes Dashboard. This addon is deprecated, and will be disabled in 1.15. It is recommended to use the Cloud Console to manage and monitor your Kubernetes clusters, workloads and applications. For more information, see: https://cloud.google.com/kubernetes-engine/docs/concepts/dashboards"
713 },
714 "httpLoadBalancing": {
715 "description": "Configuration for the HTTP (L7) load balancing controller addon, which makes it easy to set up HTTP load balancers for services in a cluster.",
716 "$ref": "HttpLoadBalancing"
717 }
718 },
719 "type": "object",
720 "description": "Configuration for the addons that can be automatically spun up in the cluster, enabling additional functionality."
721 },
722 "RollbackNodePoolUpgradeRequest": {
723 "type": "object",
724 "properties": {
725 "nodePoolId": {
726 "description": "Required. Deprecated. The name of the node pool to rollback. This field has been deprecated and replaced by the name field.",
727 "type": "string"
728 },
729 "projectId": {
730 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
731 "type": "string"
732 },
733 "zone": {
734 "type": "string",
735 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field."
736 },
737 "name": {
738 "type": "string",
739 "description": "The name (project, location, cluster, node pool id) of the node poll to rollback upgrade. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`."
740 },
741 "clusterId": {
742 "description": "Required. Deprecated. The name of the cluster to rollback. This field has been deprecated and replaced by the name field.",
743 "type": "string"
744 }
745 },
746 "description": "RollbackNodePoolUpgradeRequest rollbacks the previously Aborted or Failed NodePool upgrade. This will be an no-op if the last upgrade successfully completed.",
747 "id": "RollbackNodePoolUpgradeRequest"
748 },
749 "ListUsableSubnetworksResponse": {
750 "id": "ListUsableSubnetworksResponse",
751 "description": "ListUsableSubnetworksResponse is the response of ListUsableSubnetworksRequest.",
752 "type": "object",
753 "properties": {
754 "subnetworks": {
755 "type": "array",
756 "description": "A list of usable subnetworks in the specified network project.",
757 "items": {
758 "$ref": "UsableSubnetwork"
759 }
760 },
761 "nextPageToken": {
762 "description": "This token allows you to get the next page of results for list requests. If the number of results is larger than `page_size`, use the `next_page_token` as a value for the query parameter `page_token` in the next request. The value will become empty when there are no more pages.",
763 "type": "string"
764 }
765 }
766 },
767 "ClusterAutoscaling": {
768 "id": "ClusterAutoscaling",
769 "description": "ClusterAutoscaling contains global, per-cluster information required by Cluster Autoscaler to automatically adjust the size of the cluster and create/delete node pools based on the current needs.",
770 "type": "object",
771 "properties": {
772 "autoscalingProfile": {
773 "type": "string",
774 "enumDescriptions": [
775 "No change to autoscaling configuration.",
776 "Prioritize optimizing utilization of resources.",
777 "Use default (balanced) autoscaling configuration."
778 ],
779 "description": "Defines autoscaling behaviour.",
780 "enum": [
781 "PROFILE_UNSPECIFIED",
782 "OPTIMIZE_UTILIZATION",
783 "BALANCED"
784 ]
785 },
786 "resourceLimits": {
787 "type": "array",
788 "description": "Contains global constraints regarding minimum and maximum amount of resources in the cluster.",
789 "items": {
790 "$ref": "ResourceLimit"
791 }
792 },
793 "autoprovisioningNodePoolDefaults": {
794 "$ref": "AutoprovisioningNodePoolDefaults",
795 "description": "AutoprovisioningNodePoolDefaults contains defaults for a node pool created by NAP."
796 },
797 "autoprovisioningLocations": {
798 "description": "The list of Google Compute Engine [zones](https://cloud.google.com/compute/docs/zones#available) in which the NodePool's nodes can be created by NAP.",
799 "items": {
800 "type": "string"
801 },
802 "type": "array"
803 },
804 "enableNodeAutoprovisioning": {
805 "type": "boolean",
806 "description": "Enables automatic node pool creation and deletion."
807 }
808 }
809 },
810 "WorkloadIdentityConfig": {
811 "properties": {
812 "identityProvider": {
813 "description": "identity provider is the third party identity provider.",
814 "type": "string"
815 },
816 "identityNamespace": {
817 "description": "IAM Identity Namespace to attach all Kubernetes Service Accounts to.",
818 "type": "string"
819 },
820 "workloadPool": {
821 "type": "string",
822 "description": "The workload pool to attach all Kubernetes service accounts to."
823 }
824 },
825 "type": "object",
826 "id": "WorkloadIdentityConfig",
827 "description": "Configuration for the use of Kubernetes Service Accounts in GCP IAM policies."
828 },
829 "SetMasterAuthRequest": {
830 "id": "SetMasterAuthRequest",
831 "description": "SetMasterAuthRequest updates the admin password of a cluster.",
832 "type": "object",
833 "properties": {
834 "clusterId": {
835 "description": "Required. Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
836 "type": "string"
837 },
838 "action": {
839 "type": "string",
840 "description": "Required. The exact form of action to be taken on the master auth.",
841 "enum": [
842 "UNKNOWN",
843 "SET_PASSWORD",
844 "GENERATE_PASSWORD",
845 "SET_USERNAME"
846 ],
847 "enumDescriptions": [
848 "Operation is unknown and will error out.",
849 "Set the password to a user generated value.",
850 "Generate a new password and set it to that.",
851 "Set the username. If an empty username is provided, basic authentication is disabled for the cluster. If a non-empty username is provided, basic authentication is enabled, with either a provided password or a generated one."
852 ]
853 },
854 "name": {
855 "type": "string",
856 "description": "The name (project, location, cluster) of the cluster to set auth. Specified in the format `projects/*/locations/*/clusters/*`."
857 },
858 "zone": {
859 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field.",
860 "type": "string"
861 },
862 "update": {
863 "description": "Required. A description of the update.",
864 "$ref": "MasterAuth"
865 },
866 "projectId": {
867 "type": "string",
868 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field."
869 }
870 }
871 },
872 "StartIPRotationRequest": {
873 "id": "StartIPRotationRequest",
874 "properties": {
875 "name": {
876 "type": "string",
877 "description": "The name (project, location, cluster id) of the cluster to start IP rotation. Specified in the format `projects/*/locations/*/clusters/*`."
878 },
879 "zone": {
880 "type": "string",
881 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field."
882 },
883 "projectId": {
884 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://developers.google.com/console/help/new/#projectnumber). This field has been deprecated and replaced by the name field.",
885 "type": "string"
886 },
887 "clusterId": {
888 "type": "string",
889 "description": "Required. Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field."
890 },
891 "rotateCredentials": {
892 "type": "boolean",
893 "description": "Whether to rotate credentials during IP rotation."
894 }
895 },
896 "description": "StartIPRotationRequest creates a new IP for the cluster and then performs a node upgrade on each node pool to point to the new IP.",
897 "type": "object"
898 },
899 "TpuConfig": {
900 "type": "object",
901 "description": "Configuration for Cloud TPU.",
902 "properties": {
903 "ipv4CidrBlock": {
904 "type": "string",
905 "description": "IPv4 CIDR block reserved for Cloud TPU in the VPC."
906 },
907 "useServiceNetworking": {
908 "type": "boolean",
909 "description": "Whether to use service networking for Cloud TPU or not."
910 },
911 "enabled": {
912 "description": "Whether Cloud TPU integration is enabled or not.",
913 "type": "boolean"
914 }
915 },
916 "id": "TpuConfig"
917 },
918 "ListOperationsResponse": {
919 "description": "ListOperationsResponse is the result of ListOperationsRequest.",
920 "id": "ListOperationsResponse",
921 "type": "object",
922 "properties": {
923 "missingZones": {
924 "description": "If any zones are listed here, the list of operations returned may be missing the operations from those zones.",
925 "type": "array",
926 "items": {
927 "type": "string"
928 }
929 },
930 "operations": {
931 "type": "array",
932 "items": {
933 "$ref": "Operation"
934 },
935 "description": "A list of operations in the project in the specified zone."
936 }
937 }
938 },
939 "CreateNodePoolRequest": {
940 "properties": {
941 "parent": {
942 "type": "string",
943 "description": "The parent (project, location, cluster id) where the node pool will be created. Specified in the format `projects/*/locations/*/clusters/*`."
944 },
945 "clusterId": {
946 "description": "Required. Deprecated. The name of the cluster. This field has been deprecated and replaced by the parent field.",
947 "type": "string"
948 },
949 "projectId": {
950 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://developers.google.com/console/help/new/#projectnumber). This field has been deprecated and replaced by the parent field.",
951 "type": "string"
952 },
953 "zone": {
954 "type": "string",
955 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the parent field."
956 },
957 "nodePool": {
958 "$ref": "NodePool",
959 "description": "Required. The node pool to create."
960 }
961 },
962 "type": "object",
963 "description": "CreateNodePoolRequest creates a node pool for a cluster.",
964 "id": "CreateNodePoolRequest"
965 },
966 "BigQueryDestination": {
967 "description": "Parameters for using BigQuery as the destination of resource usage export.",
968 "id": "BigQueryDestination",
969 "properties": {
970 "datasetId": {
971 "description": "The ID of a BigQuery Dataset.",
972 "type": "string"
973 }
974 },
975 "type": "object"
976 },
977 "ConfidentialNodes": {
978 "id": "ConfidentialNodes",
979 "type": "object",
980 "properties": {
981 "enabled": {
982 "type": "boolean",
983 "description": "Whether Confidential Nodes feature is enabled for all nodes in this cluster."
984 }
985 },
986 "description": "ConfidentialNodes is configuration for the confidential nodes feature, which makes nodes run on confidential VMs."
987 },
988 "UsableSubnetworkSecondaryRange": {
989 "description": "Secondary IP range of a usable subnetwork.",
990 "type": "object",
991 "id": "UsableSubnetworkSecondaryRange",
992 "properties": {
993 "status": {
994 "enum": [
995 "UNKNOWN",
996 "UNUSED",
997 "IN_USE_SERVICE",
998 "IN_USE_SHAREABLE_POD",
999 "IN_USE_MANAGED_POD"
1000 ],
1001 "enumDescriptions": [
1002 "UNKNOWN is the zero value of the Status enum. It's not a valid status.",
1003 "UNUSED denotes that this range is unclaimed by any cluster.",
1004 "IN_USE_SERVICE denotes that this range is claimed by a cluster for services. It cannot be used for other clusters.",
1005 "IN_USE_SHAREABLE_POD denotes this range was created by the network admin and is currently claimed by a cluster for pods. It can only be used by other clusters as a pod range.",
1006 "IN_USE_MANAGED_POD denotes this range was created by GKE and is claimed for pods. It cannot be used for other clusters."
1007 ],
1008 "description": "This field is to determine the status of the secondary range programmably.",
1009 "type": "string"
1010 },
1011 "rangeName": {
1012 "description": "The name associated with this subnetwork secondary range, used when adding an alias IP range to a VM instance.",
1013 "type": "string"
1014 },
1015 "ipCidrRange": {
1016 "type": "string",
1017 "description": "The range of IP addresses belonging to this subnetwork secondary range."
1018 }
1019 }
1020 },
1021 "ListLocationsResponse": {
1022 "type": "object",
1023 "description": "ListLocationsResponse returns the list of all GKE locations and their recommendation state.",
1024 "properties": {
1025 "locations": {
1026 "type": "array",
1027 "description": "A full list of GKE locations.",
1028 "items": {
1029 "$ref": "Location"
1030 }
1031 },
1032 "nextPageToken": {
1033 "type": "string",
1034 "description": "Only return ListLocationsResponse that occur after the page_token. This value should be populated from the ListLocationsResponse.next_page_token if that response token was set (which happens when listing more Locations than fit in a single ListLocationsResponse)."
1035 }
1036 },
1037 "id": "ListLocationsResponse"
1038 },
1039 "VerticalPodAutoscaling": {
1040 "properties": {
1041 "enabled": {
1042 "type": "boolean",
1043 "description": "Enables vertical pod autoscaling."
1044 }
1045 },
1046 "id": "VerticalPodAutoscaling",
1047 "type": "object",
1048 "description": "VerticalPodAutoscaling contains global, per-cluster information required by Vertical Pod Autoscaler to automatically adjust the resources of pods controlled by it."
1049 },
1050 "UsableSubnetwork": {
1051 "type": "object",
1052 "description": "UsableSubnetwork resource returns the subnetwork name, its associated network and the primary CIDR range.",
1053 "properties": {
1054 "statusMessage": {
1055 "description": "A human readable status message representing the reasons for cases where the caller cannot use the secondary ranges under the subnet. For example if the secondary_ip_ranges is empty due to a permission issue, an insufficient permission message will be given by status_message.",
1056 "type": "string"
1057 },
1058 "subnetwork": {
1059 "description": "Subnetwork Name. Example: projects/my-project/regions/us-central1/subnetworks/my-subnet",
1060 "type": "string"
1061 },
1062 "secondaryIpRanges": {
1063 "type": "array",
1064 "description": "Secondary IP ranges.",
1065 "items": {
1066 "$ref": "UsableSubnetworkSecondaryRange"
1067 }
1068 },
1069 "network": {
1070 "description": "Network Name. Example: projects/my-project/global/networks/my-network",
1071 "type": "string"
1072 },
1073 "ipCidrRange": {
1074 "type": "string",
1075 "description": "The range of internal addresses that are owned by this subnetwork."
1076 }
1077 },
1078 "id": "UsableSubnetwork"
1079 },
1080 "NotificationConfig": {
1081 "properties": {
1082 "pubsub": {
1083 "description": "Notification config for Pub/Sub.",
1084 "$ref": "PubSub"
1085 }
1086 },
1087 "id": "NotificationConfig",
1088 "description": "NotificationConfig is the configuration of notifications.",
1089 "type": "object"
1090 },
1091 "LinuxNodeConfig": {
1092 "id": "LinuxNodeConfig",
1093 "type": "object",
1094 "properties": {
1095 "sysctls": {
1096 "description": "The Linux kernel parameters to be applied to the nodes and all pods running on the nodes. The following parameters are supported. net.core.netdev_max_backlog net.core.rmem_max net.core.wmem_default net.core.wmem_max net.core.optmem_max net.core.somaxconn net.ipv4.tcp_rmem net.ipv4.tcp_wmem net.ipv4.tcp_tw_reuse",
1097 "type": "object",
1098 "additionalProperties": {
1099 "type": "string"
1100 }
1101 }
1102 },
1103 "description": "Parameters that can be configured on Linux nodes."
1104 },
1105 "EphemeralStorageConfig": {
1106 "id": "EphemeralStorageConfig",
1107 "description": "EphemeralStorageConfig contains configuration for the ephemeral storage filesystem.",
1108 "properties": {
1109 "localSsdCount": {
1110 "description": "Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces. Each local SSD is 375 GB in size. If zero, it means to disable using local SSDs as ephemeral storage.",
1111 "type": "integer",
1112 "format": "int32"
1113 }
1114 },
1115 "type": "object"
1116 },
1117 "ClusterUpdate": {
1118 "description": "ClusterUpdate describes an update to the cluster. Exactly one update can be applied to a cluster with each request, so at most one field can be provided.",
1119 "type": "object",
1120 "properties": {
1121 "desiredClusterTelemetry": {
1122 "description": "The desired telemetry integration for the cluster.",
1123 "$ref": "ClusterTelemetry"
1124 },
1125 "desiredLoggingService": {
1126 "type": "string",
1127 "description": "The logging service the cluster should use to write logs. Currently available options: * `logging.googleapis.com/kubernetes` - The Cloud Logging service with a Kubernetes-native resource model * `logging.googleapis.com` - The legacy Cloud Logging service (no longer available as of GKE 1.15). * `none` - no logs will be exported from the cluster. If left as an empty string,`logging.googleapis.com/kubernetes` will be used for GKE 1.14+ or `logging.googleapis.com` for earlier versions."
1128 },
1129 "desiredClusterAutoscaling": {
1130 "$ref": "ClusterAutoscaling",
1131 "description": "Cluster-level autoscaling configuration."
1132 },
1133 "desiredWorkloadIdentityConfig": {
1134 "description": "Configuration for Workload Identity.",
1135 "$ref": "WorkloadIdentityConfig"
1136 },
1137 "desiredMasterAuthorizedNetworksConfig": {
1138 "description": "The desired configuration options for master authorized networks feature.",
1139 "$ref": "MasterAuthorizedNetworksConfig"
1140 },
1141 "desiredDefaultSnatStatus": {
1142 "description": "The desired status of whether to disable default sNAT for this cluster.",
1143 "$ref": "DefaultSnatStatus"
1144 },
1145 "desiredImageType": {
1146 "description": "The desired image type for the node pool. NOTE: Set the \"desired_node_pool\" field as well.",
1147 "type": "string"
1148 },
1149 "desiredResourceUsageExportConfig": {
1150 "description": "The desired configuration for exporting resource usage.",
1151 "$ref": "ResourceUsageExportConfig"
1152 },
1153 "desiredPrivateClusterConfig": {
1154 "description": "The desired private cluster configuration.",
1155 "$ref": "PrivateClusterConfig"
1156 },
1157 "desiredMasterVersion": {
1158 "description": "The Kubernetes version to change the master to. The only valid value is the latest supported version. Users may specify either explicit versions offered by Kubernetes Engine or version aliases, which have the following behavior: - \"latest\": picks the highest valid Kubernetes version - \"1.X\": picks the highest valid patch+gke.N patch in the 1.X version - \"1.X.Y\": picks the highest valid gke.N patch in the 1.X.Y version - \"1.X.Y-gke.N\": picks an explicit Kubernetes version - \"-\": picks the default Kubernetes version",
1159 "type": "string"
1160 },
1161 "desiredShieldedNodes": {
1162 "$ref": "ShieldedNodes",
1163 "description": "Configuration for Shielded Nodes."
1164 },
1165 "desiredPodSecurityPolicyConfig": {
1166 "$ref": "PodSecurityPolicyConfig",
1167 "description": "The desired configuration options for the PodSecurityPolicy feature."
1168 },
1169 "desiredBinaryAuthorization": {
1170 "description": "The desired configuration options for the Binary Authorization feature.",
1171 "$ref": "BinaryAuthorization"
1172 },
1173 "desiredAddonsConfig": {
1174 "description": "Configurations for the various addons available to run in the cluster.",
1175 "$ref": "AddonsConfig"
1176 },
1177 "desiredNodePoolId": {
1178 "description": "The node pool to be upgraded. This field is mandatory if \"desired_node_version\", \"desired_image_family\", \"desired_node_pool_autoscaling\", or \"desired_workload_metadata_config\" is specified and there is more than one node pool on the cluster.",
1179 "type": "string"
1180 },
1181 "desiredLocations": {
1182 "description": "The desired list of Google Compute Engine [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes should be located. This list must always include the cluster's primary zone. Warning: changing cluster locations will update the locations of all node pools and will result in nodes being added and/or removed.",
1183 "type": "array",
1184 "items": {
1185 "type": "string"
1186 }
1187 },
1188 "desiredNodeVersion": {
1189 "type": "string",
1190 "description": "The Kubernetes version to change the nodes to (typically an upgrade). Users may specify either explicit versions offered by Kubernetes Engine or version aliases, which have the following behavior: - \"latest\": picks the highest valid Kubernetes version - \"1.X\": picks the highest valid patch+gke.N patch in the 1.X version - \"1.X.Y\": picks the highest valid gke.N patch in the 1.X.Y version - \"1.X.Y-gke.N\": picks an explicit Kubernetes version - \"-\": picks the Kubernetes master version"
1191 },
1192 "desiredTpuConfig": {
1193 "description": "The desired Cloud TPU configuration.",
1194 "$ref": "TpuConfig"
1195 },
1196 "desiredVerticalPodAutoscaling": {
1197 "description": "Cluster-level Vertical Pod Autoscaling configuration.",
1198 "$ref": "VerticalPodAutoscaling"
1199 },
1200 "desiredNotificationConfig": {
1201 "$ref": "NotificationConfig",
1202 "description": "The desired notification configuration."
1203 },
1204 "desiredMonitoringService": {
1205 "description": "The monitoring service the cluster should use to write metrics. Currently available options: * \"monitoring.googleapis.com/kubernetes\" - The Cloud Monitoring service with a Kubernetes-native resource model * `monitoring.googleapis.com` - The legacy Cloud Monitoring service (no longer available as of GKE 1.15). * `none` - No metrics will be exported from the cluster. If left as an empty string,`monitoring.googleapis.com/kubernetes` will be used for GKE 1.14+ or `monitoring.googleapis.com` for earlier versions.",
1206 "type": "string"
1207 },
1208 "desiredReleaseChannel": {
1209 "$ref": "ReleaseChannel",
1210 "description": "The desired release channel configuration."
1211 },
1212 "desiredNodePoolAutoscaling": {
1213 "$ref": "NodePoolAutoscaling",
1214 "description": "Autoscaler configuration for the node pool specified in desired_node_pool_id. If there is only one pool in the cluster and desired_node_pool_id is not provided then the change applies to that single node pool."
1215 },
1216 "desiredIntraNodeVisibilityConfig": {
1217 "description": "The desired config of Intra-node visibility.",
1218 "$ref": "IntraNodeVisibilityConfig"
1219 },
1220 "desiredMaster": {
1221 "description": "Configuration for master components.",
1222 "$ref": "Master"
1223 },
1224 "desiredDatapathProvider": {
1225 "enumDescriptions": [
1226 "Default value.",
1227 "Use the IPTables implementation based on kube-proxy.",
1228 "Use the eBPF based GKE Dataplane V2 with additional features. See the [GKE Dataplane V2 documentation](https://cloud.google.com/kubernetes-enginw/docs/how-to/dataplane-v2) for more."
1229 ],
1230 "enum": [
1231 "DATAPATH_PROVIDER_UNSPECIFIED",
1232 "LEGACY_DATAPATH",
1233 "ADVANCED_DATAPATH"
1234 ],
1235 "type": "string",
1236 "description": "The desired datapath provider for the cluster."
1237 },
1238 "desiredDatabaseEncryption": {
1239 "$ref": "DatabaseEncryption",
1240 "description": "Configuration of etcd encryption."
1241 }
1242 },
1243 "id": "ClusterUpdate"
1244 },
1245 "AutoprovisioningNodePoolDefaults": {
1246 "id": "AutoprovisioningNodePoolDefaults",
1247 "description": "AutoprovisioningNodePoolDefaults contains defaults for a node pool created by NAP.",
1248 "properties": {
1249 "minCpuPlatform": {
1250 "type": "string",
1251 "description": "Minimum CPU platform to be used by this instance. The instance may be scheduled on the specified or newer CPU platform. Applicable values are the friendly names of CPU platforms, such as `minCpuPlatform: \"Intel Haswell\"` or `minCpuPlatform: \"Intel Sandy Bridge\"`. For more information, read [how to specify min CPU platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform) To unset the min cpu platform field pass \"automatic\" as field value."
1252 },
1253 "upgradeSettings": {
1254 "$ref": "UpgradeSettings",
1255 "description": "Upgrade settings control disruption and speed of the upgrade."
1256 },
1257 "management": {
1258 "description": "NodeManagement configuration for this NodePool.",
1259 "$ref": "NodeManagement"
1260 },
1261 "serviceAccount": {
1262 "type": "string",
1263 "description": "The Google Cloud Platform Service Account to be used by the node VMs. Specify the email address of the Service Account; otherwise, if no Service Account is specified, the \"default\" service account is used."
1264 },
1265 "oauthScopes": {
1266 "type": "array",
1267 "description": "The set of Google API scopes to be made available on all of the node VMs under the \"default\" service account. The following scopes are recommended, but not required, and by default are not included: * `https://www.googleapis.com/auth/compute` is required for mounting persistent storage on your nodes. * `https://www.googleapis.com/auth/devstorage.read_only` is required for communicating with **gcr.io** (the [Google Container Registry](https://cloud.google.com/container-registry/)). If unspecified, no scopes are added, unless Cloud Logging or Cloud Monitoring are enabled, in which case their required scopes will be added.",
1268 "items": {
1269 "type": "string"
1270 }
1271 },
1272 "shieldedInstanceConfig": {
1273 "description": "Shielded Instance options.",
1274 "$ref": "ShieldedInstanceConfig"
1275 },
1276 "bootDiskKmsKey": {
1277 "description": " The Customer Managed Encryption Key used to encrypt the boot disk attached to each node in the node pool. This should be of the form projects/[KEY_PROJECT_ID]/locations/[LOCATION]/keyRings/[RING_NAME]/cryptoKeys/[KEY_NAME]. For more information about protecting resources with Cloud KMS Keys please see: https://cloud.google.com/compute/docs/disks/customer-managed-encryption",
1278 "type": "string"
1279 },
1280 "diskSizeGb": {
1281 "type": "integer",
1282 "description": "Size of the disk attached to each node, specified in GB. The smallest allowed disk size is 10GB. If unspecified, the default disk size is 100GB.",
1283 "format": "int32"
1284 },
1285 "diskType": {
1286 "type": "string",
1287 "description": "Type of the disk attached to each node (e.g. 'pd-standard' or 'pd-ssd') If unspecified, the default disk type is 'pd-standard'"
1288 }
1289 },
1290 "type": "object"
1291 },
1292 "CreateClusterRequest": {
1293 "description": "CreateClusterRequest creates a cluster.",
1294 "properties": {
1295 "cluster": {
1296 "description": "Required. A [cluster resource](https://cloud.google.com/container-engine/reference/rest/v1beta1/projects.locations.clusters)",
1297 "$ref": "Cluster"
1298 },
1299 "zone": {
1300 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the parent field.",
1301 "type": "string"
1302 },
1303 "projectId": {
1304 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the parent field.",
1305 "type": "string"
1306 },
1307 "parent": {
1308 "description": "The parent (project and location) where the cluster will be created. Specified in the format `projects/*/locations/*`.",
1309 "type": "string"
1310 }
1311 },
1312 "id": "CreateClusterRequest",
1313 "type": "object"
1314 },
1315 "WorkloadMetadataConfig": {
1316 "properties": {
1317 "mode": {
1318 "type": "string",
1319 "enumDescriptions": [
1320 "Not set.",
1321 "Expose all Compute Engine metadata to pods.",
1322 "Run the GKE Metadata Server on this node. The GKE Metadata Server exposes a metadata API to workloads that is compatible with the V1 Compute Metadata APIs exposed by the Compute Engine and App Engine Metadata Servers. This feature can only be enabled if Workload Identity is enabled at the cluster level."
1323 ],
1324 "enum": [
1325 "MODE_UNSPECIFIED",
1326 "GCE_METADATA",
1327 "GKE_METADATA"
1328 ],
1329 "description": "Mode is the configuration for how to expose metadata to workloads running on the node pool."
1330 },
1331 "nodeMetadata": {
1332 "description": "NodeMetadata is the configuration for how to expose metadata to the workloads running on the node.",
1333 "enum": [
1334 "UNSPECIFIED",
1335 "SECURE",
1336 "EXPOSE",
1337 "GKE_METADATA_SERVER"
1338 ],
1339 "enumDescriptions": [
1340 "Not set.",
1341 "Prevent workloads not in hostNetwork from accessing certain VM metadata, specifically kube-env, which contains Kubelet credentials, and the instance identity token. Metadata concealment is a temporary security solution available while the bootstrapping process for cluster nodes is being redesigned with significant security improvements. This feature is scheduled to be deprecated in the future and later removed.",
1342 "Expose all VM metadata to pods.",
1343 "Run the GKE Metadata Server on this node. The GKE Metadata Server exposes a metadata API to workloads that is compatible with the V1 Compute Metadata APIs exposed by the Compute Engine and App Engine Metadata Servers. This feature can only be enabled if Workload Identity is enabled at the cluster level."
1344 ],
1345 "type": "string"
1346 }
1347 },
1348 "type": "object",
1349 "description": "WorkloadMetadataConfig defines the metadata configuration to expose to workloads on the node pool.",
1350 "id": "WorkloadMetadataConfig"
1351 },
1352 "SetMaintenancePolicyRequest": {
1353 "properties": {
1354 "projectId": {
1355 "description": "Required. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840).",
1356 "type": "string"
1357 },
1358 "maintenancePolicy": {
1359 "description": "Required. The maintenance policy to be set for the cluster. An empty field clears the existing maintenance policy.",
1360 "$ref": "MaintenancePolicy"
1361 },
1362 "name": {
1363 "description": "The name (project, location, cluster id) of the cluster to set maintenance policy. Specified in the format `projects/*/locations/*/clusters/*`.",
1364 "type": "string"
1365 },
1366 "zone": {
1367 "type": "string",
1368 "description": "Required. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides."
1369 },
1370 "clusterId": {
1371 "type": "string",
1372 "description": "Required. The name of the cluster to update."
1373 }
1374 },
1375 "type": "object",
1376 "id": "SetMaintenancePolicyRequest",
1377 "description": "SetMaintenancePolicyRequest sets the maintenance policy for a cluster."
1378 },
1379 "ReleaseChannelConfig": {
1380 "description": "ReleaseChannelConfig exposes configuration for a release channel.",
1381 "id": "ReleaseChannelConfig",
1382 "type": "object",
1383 "properties": {
1384 "defaultVersion": {
1385 "type": "string",
1386 "description": "The default version for newly created clusters on the channel."
1387 },
1388 "channel": {
1389 "enum": [
1390 "UNSPECIFIED",
1391 "RAPID",
1392 "REGULAR",
1393 "STABLE"
1394 ],
1395 "enumDescriptions": [
1396 "No channel specified.",
1397 "RAPID channel is offered on an early access basis for customers who want to test new releases. WARNING: Versions available in the RAPID Channel may be subject to unresolved issues with no known workaround and are not subject to any SLAs.",
1398 "Clusters subscribed to REGULAR receive versions that are considered GA quality. REGULAR is intended for production users who want to take advantage of new features.",
1399 "Clusters subscribed to STABLE receive versions that are known to be stable and reliable in production."
1400 ],
1401 "type": "string",
1402 "description": "The release channel this configuration applies to."
1403 },
1404 "validVersions": {
1405 "description": "List of valid versions for the channel.",
1406 "type": "array",
1407 "items": {
1408 "type": "string"
1409 }
1410 },
1411 "availableVersions": {
1412 "description": "Deprecated. This field has been deprecated and replaced with the valid_versions field.",
1413 "type": "array",
1414 "items": {
1415 "$ref": "AvailableVersion"
1416 }
1417 }
1418 }
1419 },
1420 "SetNodePoolSizeRequest": {
1421 "id": "SetNodePoolSizeRequest",
1422 "type": "object",
1423 "description": "SetNodePoolSizeRequest sets the size a node pool.",
1424 "properties": {
1425 "projectId": {
1426 "type": "string",
1427 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field."
1428 },
1429 "name": {
1430 "type": "string",
1431 "description": "The name (project, location, cluster, node pool id) of the node pool to set size. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`."
1432 },
1433 "zone": {
1434 "type": "string",
1435 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field."
1436 },
1437 "clusterId": {
1438 "type": "string",
1439 "description": "Required. Deprecated. The name of the cluster to update. This field has been deprecated and replaced by the name field."
1440 },
1441 "nodePoolId": {
1442 "description": "Required. Deprecated. The name of the node pool to update. This field has been deprecated and replaced by the name field.",
1443 "type": "string"
1444 },
1445 "nodeCount": {
1446 "format": "int32",
1447 "description": "Required. The desired node count for the pool.",
1448 "type": "integer"
1449 }
1450 }
1451 },
1452 "NodeConfig": {
1453 "properties": {
1454 "taints": {
1455 "description": "List of kubernetes taints to be applied to each node. For more information, including usage and the valid values, see: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/",
1456 "items": {
1457 "$ref": "NodeTaint"
1458 },
1459 "type": "array"
1460 },
1461 "oauthScopes": {
1462 "type": "array",
1463 "items": {
1464 "type": "string"
1465 },
1466 "description": "The set of Google API scopes to be made available on all of the node VMs under the \"default\" service account. The following scopes are recommended, but not required, and by default are not included: * `https://www.googleapis.com/auth/compute` is required for mounting persistent storage on your nodes. * `https://www.googleapis.com/auth/devstorage.read_only` is required for communicating with **gcr.io** (the [Google Container Registry](https://cloud.google.com/container-registry/)). If unspecified, no scopes are added, unless Cloud Logging or Cloud Monitoring are enabled, in which case their required scopes will be added."
1467 },
1468 "kubeletConfig": {
1469 "$ref": "NodeKubeletConfig",
1470 "description": "Node kubelet configs."
1471 },
1472 "reservationAffinity": {
1473 "description": "The optional reservation affinity. Setting this field will apply the specified [Zonal Compute Reservation](https://cloud.google.com/compute/docs/instances/reserving-zonal-resources) to this node pool.",
1474 "$ref": "ReservationAffinity"
1475 },
1476 "ephemeralStorageConfig": {
1477 "$ref": "EphemeralStorageConfig",
1478 "description": "Parameters for the ephemeral storage filesystem. If unspecified, ephemeral storage is backed by the boot disk."
1479 },
1480 "machineType": {
1481 "type": "string",
1482 "description": "The name of a Google Compute Engine [machine type](https://cloud.google.com/compute/docs/machine-types). If unspecified, the default machine type is `e2-medium`."
1483 },
1484 "serviceAccount": {
1485 "type": "string",
1486 "description": "The Google Cloud Platform Service Account to be used by the node VMs. Specify the email address of the Service Account; otherwise, if no Service Account is specified, the \"default\" service account is used."
1487 },
1488 "labels": {
1489 "type": "object",
1490 "additionalProperties": {
1491 "type": "string"
1492 },
1493 "description": "The map of Kubernetes labels (key/value pairs) to be applied to each node. These will added in addition to any default label(s) that Kubernetes may apply to the node. In case of conflict in label keys, the applied set may differ depending on the Kubernetes version -- it's best to assume the behavior is undefined and conflicts should be avoided. For more information, including usage and the valid values, see: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/"
1494 },
1495 "tags": {
1496 "items": {
1497 "type": "string"
1498 },
1499 "type": "array",
1500 "description": "The list of instance tags applied to all nodes. Tags are used to identify valid sources or targets for network firewalls and are specified by the client during cluster or node pool creation. Each tag within the list must comply with RFC1035."
1501 },
1502 "localSsdCount": {
1503 "type": "integer",
1504 "description": "The number of local SSD disks to be attached to the node. The limit for this value is dependent upon the maximum number of disks available on a machine per zone. See: https://cloud.google.com/compute/docs/disks/local-ssd for more information.",
1505 "format": "int32"
1506 },
1507 "nodeGroup": {
1508 "description": "Setting this field will assign instances of this pool to run on the specified node group. This is useful for running workloads on [sole tenant nodes](https://cloud.google.com/compute/docs/nodes/sole-tenant-nodes).",
1509 "type": "string"
1510 },
1511 "imageType": {
1512 "description": "The image type to use for this node. Note that for a given image type, the latest version of it will be used.",
1513 "type": "string"
1514 },
1515 "metadata": {
1516 "type": "object",
1517 "description": "The metadata key/value pairs assigned to instances in the cluster. Keys must conform to the regexp `[a-zA-Z0-9-_]+` and be less than 128 bytes in length. These are reflected as part of a URL in the metadata server. Additionally, to avoid ambiguity, keys must not conflict with any other metadata keys for the project or be one of the reserved keys: - \"cluster-location\" - \"cluster-name\" - \"cluster-uid\" - \"configure-sh\" - \"containerd-configure-sh\" - \"enable-oslogin\" - \"gci-ensure-gke-docker\" - \"gci-metrics-enabled\" - \"gci-update-strategy\" - \"instance-template\" - \"kube-env\" - \"startup-script\" - \"user-data\" - \"disable-address-manager\" - \"windows-startup-script-ps1\" - \"common-psm1\" - \"k8s-node-setup-psm1\" - \"install-ssh-psm1\" - \"user-profile-psm1\" The following keys are reserved for Windows nodes: - \"serial-port-logging-enable\" Values are free-form strings, and only have meaning as interpreted by the image running in the instance. The only restriction placed on them is that each value's size must be less than or equal to 32 KB. The total size of all keys and values must be less than 512 KB.",
1518 "additionalProperties": {
1519 "type": "string"
1520 }
1521 },
1522 "workloadMetadataConfig": {
1523 "$ref": "WorkloadMetadataConfig",
1524 "description": "The workload metadata configuration for this node."
1525 },
1526 "diskSizeGb": {
1527 "type": "integer",
1528 "description": "Size of the disk attached to each node, specified in GB. The smallest allowed disk size is 10GB. If unspecified, the default disk size is 100GB.",
1529 "format": "int32"
1530 },
1531 "minCpuPlatform": {
1532 "description": "Minimum CPU platform to be used by this instance. The instance may be scheduled on the specified or newer CPU platform. Applicable values are the friendly names of CPU platforms, such as `minCpuPlatform: \"Intel Haswell\"` or `minCpuPlatform: \"Intel Sandy Bridge\"`. For more information, read [how to specify min CPU platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform)",
1533 "type": "string"
1534 },
1535 "bootDiskKmsKey": {
1536 "description": " The Customer Managed Encryption Key used to encrypt the boot disk attached to each node in the node pool. This should be of the form projects/[KEY_PROJECT_ID]/locations/[LOCATION]/keyRings/[RING_NAME]/cryptoKeys/[KEY_NAME]. For more information about protecting resources with Cloud KMS Keys please see: https://cloud.google.com/compute/docs/disks/customer-managed-encryption",
1537 "type": "string"
1538 },
1539 "accelerators": {
1540 "description": "A list of hardware accelerators to be attached to each node. See https://cloud.google.com/compute/docs/gpus for more information about support for GPUs.",
1541 "items": {
1542 "$ref": "AcceleratorConfig"
1543 },
1544 "type": "array"
1545 },
1546 "linuxNodeConfig": {
1547 "description": "Parameters that can be configured on Linux nodes.",
1548 "$ref": "LinuxNodeConfig"
1549 },
1550 "preemptible": {
1551 "description": "Whether the nodes are created as preemptible VM instances. See: https://cloud.google.com/compute/docs/instances/preemptible for more inforamtion about preemptible VM instances.",
1552 "type": "boolean"
1553 },
1554 "shieldedInstanceConfig": {
1555 "description": "Shielded Instance options.",
1556 "$ref": "ShieldedInstanceConfig"
1557 },
1558 "sandboxConfig": {
1559 "$ref": "SandboxConfig",
1560 "description": "Sandbox configuration for this node."
1561 },
1562 "diskType": {
1563 "type": "string",
1564 "description": "Type of the disk attached to each node (e.g. 'pd-standard' or 'pd-ssd') If unspecified, the default disk type is 'pd-standard'"
1565 }
1566 },
1567 "id": "NodeConfig",
1568 "description": "Parameters that describe the nodes in a cluster.",
1569 "type": "object"
1570 },
1571 "HorizontalPodAutoscaling": {
1572 "properties": {
1573 "disabled": {
1574 "description": "Whether the Horizontal Pod Autoscaling feature is enabled in the cluster. When enabled, it ensures that metrics are collected into Stackdriver Monitoring.",
1575 "type": "boolean"
1576 }
1577 },
1578 "description": "Configuration options for the horizontal pod autoscaling feature, which increases or decreases the number of replica pods a replication controller has based on the resource usage of the existing pods.",
1579 "type": "object",
1580 "id": "HorizontalPodAutoscaling"
1581 },
1582 "AcceleratorConfig": {
1583 "properties": {
1584 "acceleratorType": {
1585 "type": "string",
1586 "description": "The accelerator type resource name. List of supported accelerators [here](https://cloud.google.com/compute/docs/gpus)"
1587 },
1588 "acceleratorCount": {
1589 "description": "The number of the accelerator cards exposed to an instance.",
1590 "type": "string",
1591 "format": "int64"
1592 }
1593 },
1594 "description": "AcceleratorConfig represents a Hardware Accelerator request.",
1595 "id": "AcceleratorConfig",
1596 "type": "object"
1597 },
1598 "NetworkPolicyConfig": {
1599 "properties": {
1600 "disabled": {
1601 "description": "Whether NetworkPolicy is enabled for this cluster.",
1602 "type": "boolean"
1603 }
1604 },
1605 "id": "NetworkPolicyConfig",
1606 "type": "object",
1607 "description": "Configuration for NetworkPolicy. This only tracks whether the addon is enabled or not on the Master, it does not track whether network policy is enabled for the nodes."
1608 },
1609 "KubernetesDashboard": {
1610 "type": "object",
1611 "id": "KubernetesDashboard",
1612 "description": "Configuration for the Kubernetes Dashboard.",
1613 "properties": {
1614 "disabled": {
1615 "description": "Whether the Kubernetes Dashboard is enabled for this cluster.",
1616 "type": "boolean"
1617 }
1618 }
1619 },
1620 "MasterAuth": {
1621 "properties": {
1622 "clusterCaCertificate": {
1623 "type": "string"
1624 },
1625 "clientKey": {
1626 "type": "string",
1627 "description": "[Output only] Base64-encoded private key used by clients to authenticate to the cluster endpoint."
1628 },
1629 "clientCertificate": {
1630 "description": "[Output only] Base64-encoded public certificate used by clients to authenticate to the cluster endpoint.",
1631 "type": "string"
1632 },
1633 "password": {
1634 "type": "string",
1635 "description": "The password to use for HTTP basic authentication to the master endpoint. Because the master endpoint is open to the Internet, you should create a strong password. If a password is provided for cluster creation, username must be non-empty. Warning: basic authentication is deprecated, and will be removed in GKE control plane versions 1.19 and newer. For a list of recommended authentication methods, see: https://cloud.google.com/kubernetes-engine/docs/how-to/api-server-authentication"
1636 },
1637 "username": {
1638 "type": "string",
1639 "description": "The username to use for HTTP basic authentication to the master endpoint. For clusters v1.6.0 and later, basic authentication can be disabled by leaving username unspecified (or setting it to the empty string). Warning: basic authentication is deprecated, and will be removed in GKE control plane versions 1.19 and newer. For a list of recommended authentication methods, see: https://cloud.google.com/kubernetes-engine/docs/how-to/api-server-authentication"
1640 },
1641 "clientCertificateConfig": {
1642 "description": "Configuration for client certificate authentication on the cluster. For clusters before v1.12, if no configuration is specified, a client certificate is issued.",
1643 "$ref": "ClientCertificateConfig"
1644 }
1645 },
1646 "id": "MasterAuth",
1647 "type": "object",
1648 "description": "The authentication information for accessing the master endpoint. Authentication can be done using HTTP basic auth or using client certificates."
1649 },
1650 "GetOpenIDConfigResponse": {
1651 "id": "GetOpenIDConfigResponse",
1652 "type": "object",
1653 "description": "GetOpenIDConfigResponse is an OIDC discovery document for the cluster. See the OpenID Connect Discovery 1.0 specification for details.",
1654 "properties": {
1655 "cacheHeader": {
1656 "description": "OnePlatform automatically extracts this field and uses it to set the HTTP Cache-Control header.",
1657 "$ref": "HttpCacheControlResponseHeader"
1658 },
1659 "subject_types_supported": {
1660 "type": "array",
1661 "description": "Supported subject types.",
1662 "items": {
1663 "type": "string"
1664 }
1665 },
1666 "grant_types": {
1667 "items": {
1668 "type": "string"
1669 },
1670 "type": "array",
1671 "description": "Supported grant types."
1672 },
1673 "claims_supported": {
1674 "items": {
1675 "type": "string"
1676 },
1677 "type": "array",
1678 "description": "Supported claims."
1679 },
1680 "jwks_uri": {
1681 "description": "JSON Web Key uri.",
1682 "type": "string"
1683 },
1684 "response_types_supported": {
1685 "items": {
1686 "type": "string"
1687 },
1688 "description": "Supported response types.",
1689 "type": "array"
1690 },
1691 "id_token_signing_alg_values_supported": {
1692 "type": "array",
1693 "description": "supported ID Token signing Algorithms.",
1694 "items": {
1695 "type": "string"
1696 }
1697 },
1698 "issuer": {
1699 "type": "string",
1700 "description": "OIDC Issuer."
1701 }
1702 }
1703 },
1704 "DailyMaintenanceWindow": {
1705 "description": "Time window specified for daily maintenance operations.",
1706 "id": "DailyMaintenanceWindow",
1707 "properties": {
1708 "startTime": {
1709 "description": "Time within the maintenance window to start the maintenance operations. It must be in format \"HH:MM\", where HH : [00-23] and MM : [00-59] GMT.",
1710 "type": "string"
1711 },
1712 "duration": {
1713 "type": "string",
1714 "description": "[Output only] Duration of the time window, automatically chosen to be smallest possible in the given scenario."
1715 }
1716 },
1717 "type": "object"
1718 },
1719 "NetworkConfig": {
1720 "properties": {
1721 "subnetwork": {
1722 "type": "string",
1723 "description": "Output only. The relative name of the Google Compute Engine [subnetwork](https://cloud.google.com/compute/docs/vpc) to which the cluster is connected. Example: projects/my-project/regions/us-central1/subnetworks/my-subnet"
1724 },
1725 "network": {
1726 "type": "string",
1727 "description": "Output only. The relative name of the Google Compute Engine network(https://cloud.google.com/compute/docs/networks-and-firewalls#networks) to which the cluster is connected. Example: projects/my-project/global/networks/my-network"
1728 },
1729 "defaultSnatStatus": {
1730 "$ref": "DefaultSnatStatus",
1731 "description": "Whether the cluster disables default in-node sNAT rules. In-node sNAT rules will be disabled when default_snat_status is disabled. When disabled is set to false, default IP masquerade rules will be applied to the nodes to prevent sNAT on cluster internal traffic."
1732 },
1733 "enableIntraNodeVisibility": {
1734 "description": "Whether Intra-node visibility is enabled for this cluster. This makes same node pod to pod traffic visible for VPC network.",
1735 "type": "boolean"
1736 },
1737 "datapathProvider": {
1738 "enum": [
1739 "DATAPATH_PROVIDER_UNSPECIFIED",
1740 "LEGACY_DATAPATH",
1741 "ADVANCED_DATAPATH"
1742 ],
1743 "enumDescriptions": [
1744 "Default value.",
1745 "Use the IPTables implementation based on kube-proxy.",
1746 "Use the eBPF based GKE Dataplane V2 with additional features. See the [GKE Dataplane V2 documentation](https://cloud.google.com/kubernetes-enginw/docs/how-to/dataplane-v2) for more."
1747 ],
1748 "description": "The desired datapath provider for this cluster. By default, uses the IPTables-based kube-proxy implementation.",
1749 "type": "string"
1750 }
1751 },
1752 "type": "object",
1753 "description": "NetworkConfig reports the relative names of network & subnetwork.",
1754 "id": "NetworkConfig"
1755 },
1756 "Jwk": {
1757 "type": "object",
1758 "properties": {
1759 "crv": {
1760 "type": "string",
1761 "description": "Used for ECDSA keys."
1762 },
1763 "x": {
1764 "type": "string",
1765 "description": "Used for ECDSA keys."
1766 },
1767 "y": {
1768 "type": "string",
1769 "description": "Used for ECDSA keys."
1770 },
1771 "e": {
1772 "type": "string",
1773 "description": "Used for RSA keys."
1774 },
1775 "kid": {
1776 "description": "Key ID.",
1777 "type": "string"
1778 },
1779 "kty": {
1780 "type": "string",
1781 "description": "Key Type."
1782 },
1783 "n": {
1784 "type": "string",
1785 "description": "Used for RSA keys."
1786 },
1787 "use": {
1788 "type": "string",
1789 "description": "Permitted uses for the public keys."
1790 },
1791 "alg": {
1792 "type": "string",
1793 "description": "Algorithm."
1794 }
1795 },
1796 "id": "Jwk",
1797 "description": "Jwk is a JSON Web Key as specified in RFC 7517"
1798 },
1799 "MaintenancePolicy": {
1800 "id": "MaintenancePolicy",
1801 "properties": {
1802 "resourceVersion": {
1803 "type": "string",
1804 "description": "A hash identifying the version of this policy, so that updates to fields of the policy won't accidentally undo intermediate changes (and so that users of the API unaware of some fields won't accidentally remove other fields). Make a `get()` request to the cluster to get the current resource version and include it with requests to set the policy."
1805 },
1806 "window": {
1807 "description": "Specifies the maintenance window in which maintenance may be performed.",
1808 "$ref": "MaintenanceWindow"
1809 }
1810 },
1811 "description": "MaintenancePolicy defines the maintenance policy to be used for the cluster.",
1812 "type": "object"
1813 },
1814 "SetLocationsRequest": {
1815 "type": "object",
1816 "id": "SetLocationsRequest",
1817 "properties": {
1818 "locations": {
1819 "type": "array",
1820 "items": {
1821 "type": "string"
1822 },
1823 "description": "Required. The desired list of Google Compute Engine [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes should be located. Changing the locations a cluster is in will result in nodes being either created or removed from the cluster, depending on whether locations are being added or removed. This list must always include the cluster's primary zone."
1824 },
1825 "clusterId": {
1826 "type": "string",
1827 "description": "Required. Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field."
1828 },
1829 "projectId": {
1830 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
1831 "type": "string"
1832 },
1833 "name": {
1834 "type": "string",
1835 "description": "The name (project, location, cluster) of the cluster to set locations. Specified in the format `projects/*/locations/*/clusters/*`."
1836 },
1837 "zone": {
1838 "type": "string",
1839 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field."
1840 }
1841 },
1842 "description": "SetLocationsRequest sets the locations of the cluster."
1843 },
1844 "PrivateClusterMasterGlobalAccessConfig": {
1845 "type": "object",
1846 "properties": {
1847 "enabled": {
1848 "type": "boolean",
1849 "description": "Whenever master is accessible globally or not."
1850 }
1851 },
1852 "description": "Configuration for controlling master global access settings.",
1853 "id": "PrivateClusterMasterGlobalAccessConfig"
1854 },
1855 "Master": {
1856 "type": "object",
1857 "description": "Master is the configuration for components on master.",
1858 "id": "Master",
1859 "properties": {}
1860 },
1861 "KalmConfig": {
1862 "properties": {
1863 "enabled": {
1864 "description": "Whether KALM is enabled for this cluster.",
1865 "type": "boolean"
1866 }
1867 },
1868 "description": "Configuration options for the KALM addon.",
1869 "id": "KalmConfig",
1870 "type": "object"
1871 },
1872 "StatusCondition": {
1873 "properties": {
1874 "canonicalCode": {
1875 "type": "string",
1876 "enumDescriptions": [
1877 "Not an error; returned on success HTTP Mapping: 200 OK",
1878 "The operation was cancelled, typically by the caller. HTTP Mapping: 499 Client Closed Request",
1879 "Unknown error. For example, this error may be returned when a `Status` value received from another address space belongs to an error space that is not known in this address space. Also errors raised by APIs that do not return enough error information may be converted to this error. HTTP Mapping: 500 Internal Server Error",
1880 "The client specified an invalid argument. Note that this differs from `FAILED_PRECONDITION`. `INVALID_ARGUMENT` indicates arguments that are problematic regardless of the state of the system (e.g., a malformed file name). HTTP Mapping: 400 Bad Request",
1881 "The deadline expired before the operation could complete. For operations that change the state of the system, this error may be returned even if the operation has completed successfully. For example, a successful response from a server could have been delayed long enough for the deadline to expire. HTTP Mapping: 504 Gateway Timeout",
1882 "Some requested entity (e.g., file or directory) was not found. Note to server developers: if a request is denied for an entire class of users, such as gradual feature rollout or undocumented allowlist, `NOT_FOUND` may be used. If a request is denied for some users within a class of users, such as user-based access control, `PERMISSION_DENIED` must be used. HTTP Mapping: 404 Not Found",
1883 "The entity that a client attempted to create (e.g., file or directory) already exists. HTTP Mapping: 409 Conflict",
1884 "The caller does not have permission to execute the specified operation. `PERMISSION_DENIED` must not be used for rejections caused by exhausting some resource (use `RESOURCE_EXHAUSTED` instead for those errors). `PERMISSION_DENIED` must not be used if the caller can not be identified (use `UNAUTHENTICATED` instead for those errors). This error code does not imply the request is valid or the requested entity exists or satisfies other pre-conditions. HTTP Mapping: 403 Forbidden",
1885 "The request does not have valid authentication credentials for the operation. HTTP Mapping: 401 Unauthorized",
1886 "Some resource has been exhausted, perhaps a per-user quota, or perhaps the entire file system is out of space. HTTP Mapping: 429 Too Many Requests",
1887 "The operation was rejected because the system is not in a state required for the operation's execution. For example, the directory to be deleted is non-empty, an rmdir operation is applied to a non-directory, etc. Service implementors can use the following guidelines to decide between `FAILED_PRECONDITION`, `ABORTED`, and `UNAVAILABLE`: (a) Use `UNAVAILABLE` if the client can retry just the failing call. (b) Use `ABORTED` if the client should retry at a higher level (e.g., when a client-specified test-and-set fails, indicating the client should restart a read-modify-write sequence). (c) Use `FAILED_PRECONDITION` if the client should not retry until the system state has been explicitly fixed. E.g., if an \"rmdir\" fails because the directory is non-empty, `FAILED_PRECONDITION` should be returned since the client should not retry unless the files are deleted from the directory. HTTP Mapping: 400 Bad Request",
1888 "The operation was aborted, typically due to a concurrency issue such as a sequencer check failure or transaction abort. See the guidelines above for deciding between `FAILED_PRECONDITION`, `ABORTED`, and `UNAVAILABLE`. HTTP Mapping: 409 Conflict",
1889 "The operation was attempted past the valid range. E.g., seeking or reading past end-of-file. Unlike `INVALID_ARGUMENT`, this error indicates a problem that may be fixed if the system state changes. For example, a 32-bit file system will generate `INVALID_ARGUMENT` if asked to read at an offset that is not in the range [0,2^32-1], but it will generate `OUT_OF_RANGE` if asked to read from an offset past the current file size. There is a fair bit of overlap between `FAILED_PRECONDITION` and `OUT_OF_RANGE`. We recommend using `OUT_OF_RANGE` (the more specific error) when it applies so that callers who are iterating through a space can easily look for an `OUT_OF_RANGE` error to detect when they are done. HTTP Mapping: 400 Bad Request",
1890 "The operation is not implemented or is not supported/enabled in this service. HTTP Mapping: 501 Not Implemented",
1891 "Internal errors. This means that some invariants expected by the underlying system have been broken. This error code is reserved for serious errors. HTTP Mapping: 500 Internal Server Error",
1892 "The service is currently unavailable. This is most likely a transient condition, which can be corrected by retrying with a backoff. Note that it is not always safe to retry non-idempotent operations. See the guidelines above for deciding between `FAILED_PRECONDITION`, `ABORTED`, and `UNAVAILABLE`. HTTP Mapping: 503 Service Unavailable",
1893 "Unrecoverable data loss or corruption. HTTP Mapping: 500 Internal Server Error"
1894 ],
1895 "enum": [
1896 "OK",
1897 "CANCELLED",
1898 "UNKNOWN",
1899 "INVALID_ARGUMENT",
1900 "DEADLINE_EXCEEDED",
1901 "NOT_FOUND",
1902 "ALREADY_EXISTS",
1903 "PERMISSION_DENIED",
1904 "UNAUTHENTICATED",
1905 "RESOURCE_EXHAUSTED",
1906 "FAILED_PRECONDITION",
1907 "ABORTED",
1908 "OUT_OF_RANGE",
1909 "UNIMPLEMENTED",
1910 "INTERNAL",
1911 "UNAVAILABLE",
1912 "DATA_LOSS"
1913 ],
1914 "description": "Canonical code of the condition."
1915 },
1916 "message": {
1917 "type": "string",
1918 "description": "Human-friendly representation of the condition"
1919 },
1920 "code": {
1921 "enum": [
1922 "UNKNOWN",
1923 "GCE_STOCKOUT",
1924 "GKE_SERVICE_ACCOUNT_DELETED",
1925 "GCE_QUOTA_EXCEEDED",
1926 "SET_BY_OPERATOR",
1927 "CLOUD_KMS_KEY_ERROR"
1928 ],
1929 "type": "string",
1930 "enumDescriptions": [
1931 "UNKNOWN indicates a generic condition.",
1932 "GCE_STOCKOUT indicates that Google Compute Engine resources are temporarily unavailable.",
1933 "GKE_SERVICE_ACCOUNT_DELETED indicates that the user deleted their robot service account.",
1934 "Google Compute Engine quota was exceeded.",
1935 "Cluster state was manually changed by an SRE due to a system logic error.",
1936 "Unable to perform an encrypt operation against the CloudKMS key used for etcd level encryption. More codes TBA"
1937 ],
1938 "description": "Machine-friendly representation of the condition Deprecated. Use canonical_code instead."
1939 }
1940 },
1941 "type": "object",
1942 "description": "StatusCondition describes why a cluster or a node pool has a certain status (e.g., ERROR or DEGRADED).",
1943 "id": "StatusCondition"
1944 },
1945 "AutoUpgradeOptions": {
1946 "type": "object",
1947 "id": "AutoUpgradeOptions",
1948 "description": "AutoUpgradeOptions defines the set of options for the user to control how the Auto Upgrades will proceed.",
1949 "properties": {
1950 "description": {
1951 "description": "[Output only] This field is set when upgrades are about to commence with the description of the upgrade.",
1952 "type": "string"
1953 },
1954 "autoUpgradeStartTime": {
1955 "type": "string",
1956 "description": "[Output only] This field is set when upgrades are about to commence with the approximate start time for the upgrades, in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text format."
1957 }
1958 }
1959 },
1960 "NetworkPolicy": {
1961 "id": "NetworkPolicy",
1962 "properties": {
1963 "enabled": {
1964 "description": "Whether network policy is enabled on the cluster.",
1965 "type": "boolean"
1966 },
1967 "provider": {
1968 "description": "The selected network policy provider.",
1969 "enum": [
1970 "PROVIDER_UNSPECIFIED",
1971 "CALICO"
1972 ],
1973 "type": "string",
1974 "enumDescriptions": [
1975 "Not set",
1976 "Tigera (Calico Felix)."
1977 ]
1978 }
1979 },
1980 "type": "object",
1981 "description": "Configuration options for the NetworkPolicy feature. https://kubernetes.io/docs/concepts/services-networking/networkpolicies/"
1982 },
1983 "ReleaseChannel": {
1984 "id": "ReleaseChannel",
1985 "type": "object",
1986 "description": "ReleaseChannel indicates which release channel a cluster is subscribed to. Release channels are arranged in order of risk. When a cluster is subscribed to a release channel, Google maintains both the master version and the node version. Node auto-upgrade defaults to true and cannot be disabled.",
1987 "properties": {
1988 "channel": {
1989 "description": "channel specifies which release channel the cluster is subscribed to.",
1990 "enum": [
1991 "UNSPECIFIED",
1992 "RAPID",
1993 "REGULAR",
1994 "STABLE"
1995 ],
1996 "enumDescriptions": [
1997 "No channel specified.",
1998 "RAPID channel is offered on an early access basis for customers who want to test new releases. WARNING: Versions available in the RAPID Channel may be subject to unresolved issues with no known workaround and are not subject to any SLAs.",
1999 "Clusters subscribed to REGULAR receive versions that are considered GA quality. REGULAR is intended for production users who want to take advantage of new features.",
2000 "Clusters subscribed to STABLE receive versions that are known to be stable and reliable in production."
2001 ],
2002 "type": "string"
2003 }
2004 }
2005 },
2006 "SetMonitoringServiceRequest": {
2007 "id": "SetMonitoringServiceRequest",
2008 "type": "object",
2009 "description": "SetMonitoringServiceRequest sets the monitoring service of a cluster.",
2010 "properties": {
2011 "name": {
2012 "type": "string",
2013 "description": "The name (project, location, cluster) of the cluster to set monitoring. Specified in the format `projects/*/locations/*/clusters/*`."
2014 },
2015 "zone": {
2016 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field.",
2017 "type": "string"
2018 },
2019 "clusterId": {
2020 "type": "string",
2021 "description": "Required. Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field."
2022 },
2023 "projectId": {
2024 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
2025 "type": "string"
2026 },
2027 "monitoringService": {
2028 "description": "Required. The monitoring service the cluster should use to write metrics. Currently available options: * \"monitoring.googleapis.com/kubernetes\" - The Cloud Monitoring service with a Kubernetes-native resource model * `monitoring.googleapis.com` - The legacy Cloud Monitoring service (no longer available as of GKE 1.15). * `none` - No metrics will be exported from the cluster. If left as an empty string,`monitoring.googleapis.com/kubernetes` will be used for GKE 1.14+ or `monitoring.googleapis.com` for earlier versions.",
2029 "type": "string"
2030 }
2031 }
2032 },
2033 "SetLabelsRequest": {
2034 "properties": {
2035 "resourceLabels": {
2036 "additionalProperties": {
2037 "type": "string"
2038 },
2039 "description": "Required. The labels to set for that cluster.",
2040 "type": "object"
2041 },
2042 "clusterId": {
2043 "description": "Required. Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field.",
2044 "type": "string"
2045 },
2046 "name": {
2047 "description": "The name (project, location, cluster id) of the cluster to set labels. Specified in the format `projects/*/locations/*/clusters/*`.",
2048 "type": "string"
2049 },
2050 "projectId": {
2051 "type": "string",
2052 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://developers.google.com/console/help/new/#projectnumber). This field has been deprecated and replaced by the name field."
2053 },
2054 "zone": {
2055 "type": "string",
2056 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field."
2057 },
2058 "labelFingerprint": {
2059 "type": "string",
2060 "description": "Required. The fingerprint of the previous set of labels for this resource, used to detect conflicts. The fingerprint is initially generated by Kubernetes Engine and changes after every request to modify or update labels. You must always provide an up-to-date fingerprint hash when updating or changing labels. Make a `get()` request to the resource to get the latest fingerprint."
2061 }
2062 },
2063 "id": "SetLabelsRequest",
2064 "type": "object",
2065 "description": "SetLabelsRequest sets the Google Cloud Platform labels on a Google Container Engine cluster, which will in turn set them for Google Compute Engine resources used by that cluster"
2066 },
2067 "CompleteIPRotationRequest": {
2068 "type": "object",
2069 "id": "CompleteIPRotationRequest",
2070 "description": "CompleteIPRotationRequest moves the cluster master back into single-IP mode.",
2071 "properties": {
2072 "name": {
2073 "type": "string",
2074 "description": "The name (project, location, cluster id) of the cluster to complete IP rotation. Specified in the format `projects/*/locations/*/clusters/*`."
2075 },
2076 "zone": {
2077 "type": "string",
2078 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field."
2079 },
2080 "projectId": {
2081 "type": "string",
2082 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://developers.google.com/console/help/new/#projectnumber). This field has been deprecated and replaced by the name field."
2083 },
2084 "clusterId": {
2085 "description": "Required. Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field.",
2086 "type": "string"
2087 }
2088 }
2089 },
2090 "SandboxConfig": {
2091 "description": "SandboxConfig contains configurations of the sandbox to use for the node.",
2092 "type": "object",
2093 "properties": {
2094 "sandboxType": {
2095 "description": "Type of the sandbox to use for the node (e.g. 'gvisor')",
2096 "type": "string"
2097 },
2098 "type": {
2099 "enum": [
2100 "UNSPECIFIED",
2101 "GVISOR"
2102 ],
2103 "enumDescriptions": [
2104 "Default value. This should not be used.",
2105 "Run sandbox using gvisor."
2106 ],
2107 "type": "string",
2108 "description": "Type of the sandbox to use for the node."
2109 }
2110 },
2111 "id": "SandboxConfig"
2112 },
2113 "ListNodePoolsResponse": {
2114 "properties": {
2115 "nodePools": {
2116 "type": "array",
2117 "items": {
2118 "$ref": "NodePool"
2119 },
2120 "description": "A list of node pools for a cluster."
2121 }
2122 },
2123 "id": "ListNodePoolsResponse",
2124 "description": "ListNodePoolsResponse is the result of ListNodePoolsRequest.",
2125 "type": "object"
2126 },
2127 "TimeWindow": {
2128 "id": "TimeWindow",
2129 "properties": {
2130 "startTime": {
2131 "type": "string",
2132 "format": "google-datetime",
2133 "description": "The time that the window first starts."
2134 },
2135 "endTime": {
2136 "format": "google-datetime",
2137 "type": "string",
2138 "description": "The time that the window ends. The end time should take place after the start time."
2139 }
2140 },
2141 "description": "Represents an arbitrary window of time.",
2142 "type": "object"
2143 },
2144 "OperationProgress": {
2145 "description": "Information about operation (or operation stage) progress.",
2146 "properties": {
2147 "status": {
2148 "type": "string",
2149 "enumDescriptions": [
2150 "Not set.",
2151 "The operation has been created.",
2152 "The operation is currently running.",
2153 "The operation is done, either cancelled or completed.",
2154 "The operation is aborting."
2155 ],
2156 "description": "Status of an operation stage. Unset for single-stage operations.",
2157 "enum": [
2158 "STATUS_UNSPECIFIED",
2159 "PENDING",
2160 "RUNNING",
2161 "DONE",
2162 "ABORTING"
2163 ]
2164 },
2165 "metrics": {
2166 "items": {
2167 "$ref": "Metric"
2168 },
2169 "type": "array",
2170 "description": "Progress metric bundle, for example: metrics: [{name: \"nodes done\", int_value: 15}, {name: \"nodes total\", int_value: 32}] or metrics: [{name: \"progress\", double_value: 0.56}, {name: \"progress scale\", double_value: 1.0}]"
2171 },
2172 "name": {
2173 "description": "A non-parameterized string describing an operation stage. Unset for single-stage operations.",
2174 "type": "string"
2175 },
2176 "stages": {
2177 "type": "array",
2178 "description": "Substages of an operation or a stage.",
2179 "items": {
2180 "$ref": "OperationProgress"
2181 }
2182 }
2183 },
2184 "id": "OperationProgress",
2185 "type": "object"
2186 },
2187 "ServerConfig": {
2188 "properties": {
2189 "validNodeVersions": {
2190 "type": "array",
2191 "description": "List of valid node upgrade target versions, in descending order.",
2192 "items": {
2193 "type": "string"
2194 }
2195 },
2196 "channels": {
2197 "type": "array",
2198 "items": {
2199 "$ref": "ReleaseChannelConfig"
2200 },
2201 "description": "List of release channel configurations."
2202 },
2203 "validMasterVersions": {
2204 "type": "array",
2205 "items": {
2206 "type": "string"
2207 },
2208 "description": "List of valid master versions, in descending order."
2209 },
2210 "validImageTypes": {
2211 "description": "List of valid image types.",
2212 "type": "array",
2213 "items": {
2214 "type": "string"
2215 }
2216 },
2217 "defaultClusterVersion": {
2218 "type": "string",
2219 "description": "Version of Kubernetes the service deploys by default."
2220 },
2221 "defaultImageType": {
2222 "type": "string",
2223 "description": "Default image type."
2224 }
2225 },
2226 "type": "object",
2227 "description": "Kubernetes Engine service configuration.",
2228 "id": "ServerConfig"
2229 },
2230 "ShieldedInstanceConfig": {
2231 "properties": {
2232 "enableIntegrityMonitoring": {
2233 "description": "Defines whether the instance has integrity monitoring enabled. Enables monitoring and attestation of the boot integrity of the instance. The attestation is performed against the integrity policy baseline. This baseline is initially derived from the implicitly trusted boot image when the instance is created.",
2234 "type": "boolean"
2235 },
2236 "enableSecureBoot": {
2237 "type": "boolean",
2238 "description": "Defines whether the instance has Secure Boot enabled. Secure Boot helps ensure that the system only runs authentic software by verifying the digital signature of all boot components, and halting the boot process if signature verification fails."
2239 }
2240 },
2241 "id": "ShieldedInstanceConfig",
2242 "description": "A set of Shielded Instance options.",
2243 "type": "object"
2244 },
2245 "NodeKubeletConfig": {
2246 "description": "Node kubelet configs.",
2247 "properties": {
2248 "cpuCfsQuota": {
2249 "description": "Enable CPU CFS quota enforcement for containers that specify CPU limits. This option is enabled by default which makes kubelet use CFS quota (https://www.kernel.org/doc/Documentation/scheduler/sched-bwc.txt) to enforce container CPU limits. Otherwise, CPU limits will not be enforced at all. Disable this option to mitigate CPU throttling problems while still having your pods to be in Guaranteed QoS class by specifying the CPU limits. The default value is 'true' if unspecified.",
2250 "type": "boolean"
2251 },
2252 "cpuCfsQuotaPeriod": {
2253 "description": "Set the CPU CFS quota period value 'cpu.cfs_period_us'. The string must be a sequence of decimal numbers, each with optional fraction and a unit suffix, such as \"300ms\". Valid time units are \"ns\", \"us\" (or \"µs\"), \"ms\", \"s\", \"m\", \"h\". The value must be a positive duration.",
2254 "type": "string"
2255 },
2256 "cpuManagerPolicy": {
2257 "type": "string",
2258 "description": "Control the CPU management policy on the node. See https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/ The following values are allowed. - \"none\": the default, which represents the existing scheduling behavior. - \"static\": allows pods with certain resource characteristics to be granted increased CPU affinity and exclusivity on the node. The default value is 'none' if unspecified."
2259 }
2260 },
2261 "type": "object",
2262 "id": "NodeKubeletConfig"
2263 },
2264 "IstioConfig": {
2265 "properties": {
2266 "auth": {
2267 "description": "The specified Istio auth mode, either none, or mutual TLS.",
2268 "type": "string",
2269 "enum": [
2270 "AUTH_NONE",
2271 "AUTH_MUTUAL_TLS"
2272 ],
2273 "enumDescriptions": [
2274 "auth not enabled",
2275 "auth mutual TLS enabled"
2276 ]
2277 },
2278 "disabled": {
2279 "description": "Whether Istio is enabled for this cluster.",
2280 "type": "boolean"
2281 }
2282 },
2283 "description": "Configuration options for Istio addon.",
2284 "type": "object",
2285 "id": "IstioConfig"
2286 },
2287 "AvailableVersion": {
2288 "properties": {
2289 "reason": {
2290 "description": "Reason for availability.",
2291 "type": "string"
2292 },
2293 "version": {
2294 "type": "string",
2295 "description": "Kubernetes version."
2296 }
2297 },
2298 "id": "AvailableVersion",
2299 "type": "object",
2300 "description": "Deprecated."
2301 },
2302 "Status": {
2303 "description": "The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors).",
2304 "properties": {
2305 "code": {
2306 "format": "int32",
2307 "type": "integer",
2308 "description": "The status code, which should be an enum value of google.rpc.Code."
2309 },
2310 "message": {
2311 "description": "A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.",
2312 "type": "string"
2313 },
2314 "details": {
2315 "description": "A list of messages that carry the error details. There is a common set of message types for APIs to use.",
2316 "items": {
2317 "type": "object",
2318 "additionalProperties": {
2319 "type": "any",
2320 "description": "Properties of the object. Contains field @type with type URL."
2321 }
2322 },
2323 "type": "array"
2324 }
2325 },
2326 "id": "Status",
2327 "type": "object"
2328 },
2329 "ReservationAffinity": {
2330 "description": "[ReservationAffinity](https://cloud.google.com/compute/docs/instances/reserving-zonal-resources) is the configuration of desired reservation which instances could take capacity from.",
2331 "properties": {
2332 "key": {
2333 "type": "string",
2334 "description": "Corresponds to the label key of a reservation resource. To target a SPECIFIC_RESERVATION by name, specify \"googleapis.com/reservation-name\" as the key and specify the name of your reservation as its value."
2335 },
2336 "consumeReservationType": {
2337 "description": "Corresponds to the type of reservation consumption.",
2338 "enumDescriptions": [
2339 "Default value. This should not be used.",
2340 "Do not consume from any reserved capacity.",
2341 "Consume any reservation available.",
2342 "Must consume from a specific reservation. Must specify key value fields for specifying the reservations."
2343 ],
2344 "enum": [
2345 "UNSPECIFIED",
2346 "NO_RESERVATION",
2347 "ANY_RESERVATION",
2348 "SPECIFIC_RESERVATION"
2349 ],
2350 "type": "string"
2351 },
2352 "values": {
2353 "type": "array",
2354 "description": "Corresponds to the label value(s) of reservation resource(s).",
2355 "items": {
2356 "type": "string"
2357 }
2358 }
2359 },
2360 "type": "object",
2361 "id": "ReservationAffinity"
2362 },
2363 "PubSub": {
2364 "description": "Pub/Sub specific notification config.",
2365 "id": "PubSub",
2366 "type": "object",
2367 "properties": {
2368 "enabled": {
2369 "description": "Enable notifications for Pub/Sub.",
2370 "type": "boolean"
2371 },
2372 "topic": {
2373 "type": "string",
2374 "description": "The desired Pub/Sub topic to which notifications will be sent by GKE. Format is `projects/{project}/topics/{topic}`."
2375 }
2376 }
2377 },
2378 "ConsumptionMeteringConfig": {
2379 "properties": {
2380 "enabled": {
2381 "description": "Whether to enable consumption metering for this cluster. If enabled, a second BigQuery table will be created to hold resource consumption records.",
2382 "type": "boolean"
2383 }
2384 },
2385 "id": "ConsumptionMeteringConfig",
2386 "type": "object",
2387 "description": "Parameters for controlling consumption metering."
2388 },
2389 "ResourceLimit": {
2390 "properties": {
2391 "resourceType": {
2392 "description": "Resource name \"cpu\", \"memory\" or gpu-specific string.",
2393 "type": "string"
2394 },
2395 "minimum": {
2396 "description": "Minimum amount of the resource in the cluster.",
2397 "type": "string",
2398 "format": "int64"
2399 },
2400 "maximum": {
2401 "format": "int64",
2402 "type": "string",
2403 "description": "Maximum amount of the resource in the cluster."
2404 }
2405 },
2406 "type": "object",
2407 "id": "ResourceLimit",
2408 "description": "Contains information about amount of some resource in the cluster. For memory, value should be in GB."
2409 },
2410 "ClusterTelemetry": {
2411 "description": "Telemetry integration for the cluster.",
2412 "type": "object",
2413 "id": "ClusterTelemetry",
2414 "properties": {
2415 "type": {
2416 "enumDescriptions": [
2417 "Not set.",
2418 "Monitoring integration is disabled.",
2419 "Monitoring integration is enabled.",
2420 "Only system components are monitored and logged."
2421 ],
2422 "type": "string",
2423 "description": "Type of the integration.",
2424 "enum": [
2425 "UNSPECIFIED",
2426 "DISABLED",
2427 "ENABLED",
2428 "SYSTEM_ONLY"
2429 ]
2430 }
2431 }
2432 },
2433 "MasterAuthorizedNetworksConfig": {
2434 "properties": {
2435 "enabled": {
2436 "description": "Whether or not master authorized networks is enabled.",
2437 "type": "boolean"
2438 },
2439 "cidrBlocks": {
2440 "description": "cidr_blocks define up to 10 external networks that could access Kubernetes master through HTTPS.",
2441 "type": "array",
2442 "items": {
2443 "$ref": "CidrBlock"
2444 }
2445 }
2446 },
2447 "description": "Configuration options for the master authorized networks feature. Enabled master authorized networks will disallow all external traffic to access Kubernetes master through HTTPS except traffic from the given CIDR blocks, Google Compute Engine Public IPs and Google Prod IPs.",
2448 "type": "object",
2449 "id": "MasterAuthorizedNetworksConfig"
2450 },
2451 "NodePoolAutoscaling": {
2452 "type": "object",
2453 "id": "NodePoolAutoscaling",
2454 "properties": {
2455 "enabled": {
2456 "type": "boolean",
2457 "description": "Is autoscaling enabled for this node pool."
2458 },
2459 "minNodeCount": {
2460 "format": "int32",
2461 "description": "Minimum number of nodes in the NodePool. Must be \u003e= 1 and \u003c= max_node_count.",
2462 "type": "integer"
2463 },
2464 "maxNodeCount": {
2465 "format": "int32",
2466 "description": "Maximum number of nodes in the NodePool. Must be \u003e= min_node_count. There has to enough quota to scale up the cluster.",
2467 "type": "integer"
2468 },
2469 "autoprovisioned": {
2470 "description": "Can this node pool be deleted automatically.",
2471 "type": "boolean"
2472 }
2473 },
2474 "description": "NodePoolAutoscaling contains information required by cluster autoscaler to adjust the size of the node pool to the current cluster usage."
2475 },
2476 "UpgradeEvent": {
2477 "description": "UpgradeEvent is a notification sent to customers by the cluster server when a resource is upgrading.",
2478 "id": "UpgradeEvent",
2479 "type": "object",
2480 "properties": {
2481 "currentVersion": {
2482 "description": "Required. The current version before the upgrade.",
2483 "type": "string"
2484 },
2485 "operation": {
2486 "type": "string",
2487 "description": "Required. The operation associated with this upgrade."
2488 },
2489 "operationStartTime": {
2490 "description": "Required. The time when the operation was started.",
2491 "type": "string",
2492 "format": "google-datetime"
2493 },
2494 "resourceType": {
2495 "enumDescriptions": [
2496 "Default value. This shouldn't be used.",
2497 "Master / control plane",
2498 "Node pool"
2499 ],
2500 "description": "Required. The resource type that is upgrading.",
2501 "enum": [
2502 "UPGRADE_RESOURCE_TYPE_UNSPECIFIED",
2503 "MASTER",
2504 "NODE_POOL"
2505 ],
2506 "type": "string"
2507 },
2508 "targetVersion": {
2509 "type": "string",
2510 "description": "Required. The target version for the upgrade."
2511 },
2512 "resource": {
2513 "description": "Optional. Optional relative path to the resource. For example in node pool upgrades, the relative path of the node pool.",
2514 "type": "string"
2515 }
2516 }
2517 },
2518 "Location": {
2519 "properties": {
2520 "type": {
2521 "type": "string",
2522 "description": "Contains the type of location this Location is for. Regional or Zonal.",
2523 "enum": [
2524 "LOCATION_TYPE_UNSPECIFIED",
2525 "ZONE",
2526 "REGION"
2527 ],
2528 "enumDescriptions": [
2529 "LOCATION_TYPE_UNSPECIFIED means the location type was not determined.",
2530 "A GKE Location where Zonal clusters can be created.",
2531 "A GKE Location where Regional clusters can be created."
2532 ]
2533 },
2534 "name": {
2535 "type": "string",
2536 "description": "Contains the name of the resource requested. Specified in the format `projects/*/locations/*`."
2537 },
2538 "recommended": {
2539 "description": "Whether the location is recomended for GKE cluster scheduling.",
2540 "type": "boolean"
2541 }
2542 },
2543 "id": "Location",
2544 "description": "Location returns the location name, and if the location is recommended for GKE cluster scheduling.",
2545 "type": "object"
2546 },
2547 "IPAllocationPolicy": {
2548 "properties": {
2549 "servicesSecondaryRangeName": {
2550 "description": "The name of the secondary range to be used as for the services CIDR block. The secondary range will be used for service ClusterIPs. This must be an existing secondary range associated with the cluster subnetwork. This field is only applicable with use_ip_aliases and create_subnetwork is false.",
2551 "type": "string"
2552 },
2553 "allowRouteOverlap": {
2554 "description": "If true, allow allocation of cluster CIDR ranges that overlap with certain kinds of network routes. By default we do not allow cluster CIDR ranges to intersect with any user declared routes. With allow_route_overlap == true, we allow overlapping with CIDR ranges that are larger than the cluster CIDR range. If this field is set to true, then cluster and services CIDRs must be fully-specified (e.g. `10.96.0.0/14`, but not `/14`), which means: 1) When `use_ip_aliases` is true, `cluster_ipv4_cidr_block` and `services_ipv4_cidr_block` must be fully-specified. 2) When `use_ip_aliases` is false, `cluster.cluster_ipv4_cidr` muse be fully-specified.",
2555 "type": "boolean"
2556 },
2557 "tpuIpv4CidrBlock": {
2558 "type": "string",
2559 "description": "The IP address range of the Cloud TPUs in this cluster. If unspecified, a range will be automatically chosen with the default size. This field is only applicable when `use_ip_aliases` is true. If unspecified, the range will use the default size. Set to /netmask (e.g. `/14`) to have a range chosen with a specific netmask. Set to a [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing) notation (e.g. `10.96.0.0/14`) from the RFC-1918 private networks (e.g. `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`) to pick a specific range to use. This field is deprecated, use cluster.tpu_config.ipv4_cidr_block instead."
2560 },
2561 "subnetworkName": {
2562 "description": "A custom subnetwork name to be used if `create_subnetwork` is true. If this field is empty, then an automatic name will be chosen for the new subnetwork.",
2563 "type": "string"
2564 },
2565 "useRoutes": {
2566 "description": "Whether routes will be used for pod IPs in the cluster. This is used in conjunction with use_ip_aliases. It cannot be true if use_ip_aliases is true. If both use_ip_aliases and use_routes are false, then the server picks the default IP allocation mode",
2567 "type": "boolean"
2568 },
2569 "servicesIpv4CidrBlock": {
2570 "description": "The IP address range of the services IPs in this cluster. If blank, a range will be automatically chosen with the default size. This field is only applicable when `use_ip_aliases` is true. Set to blank to have a range chosen with the default size. Set to /netmask (e.g. `/14`) to have a range chosen with a specific netmask. Set to a [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing) notation (e.g. `10.96.0.0/14`) from the RFC-1918 private networks (e.g. `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`) to pick a specific range to use.",
2571 "type": "string"
2572 },
2573 "servicesIpv4Cidr": {
2574 "description": "This field is deprecated, use services_ipv4_cidr_block.",
2575 "type": "string"
2576 },
2577 "clusterIpv4CidrBlock": {
2578 "description": "The IP address range for the cluster pod IPs. If this field is set, then `cluster.cluster_ipv4_cidr` must be left blank. This field is only applicable when `use_ip_aliases` is true. Set to blank to have a range chosen with the default size. Set to /netmask (e.g. `/14`) to have a range chosen with a specific netmask. Set to a [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing) notation (e.g. `10.96.0.0/14`) from the RFC-1918 private networks (e.g. `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`) to pick a specific range to use.",
2579 "type": "string"
2580 },
2581 "clusterIpv4Cidr": {
2582 "description": "This field is deprecated, use cluster_ipv4_cidr_block.",
2583 "type": "string"
2584 },
2585 "nodeIpv4Cidr": {
2586 "description": "This field is deprecated, use node_ipv4_cidr_block.",
2587 "type": "string"
2588 },
2589 "clusterSecondaryRangeName": {
2590 "description": "The name of the secondary range to be used for the cluster CIDR block. The secondary range will be used for pod IP addresses. This must be an existing secondary range associated with the cluster subnetwork. This field is only applicable with use_ip_aliases and create_subnetwork is false.",
2591 "type": "string"
2592 },
2593 "useIpAliases": {
2594 "description": "Whether alias IPs will be used for pod IPs in the cluster. This is used in conjunction with use_routes. It cannot be true if use_routes is true. If both use_ip_aliases and use_routes are false, then the server picks the default IP allocation mode",
2595 "type": "boolean"
2596 },
2597 "createSubnetwork": {
2598 "type": "boolean",
2599 "description": "Whether a new subnetwork will be created automatically for the cluster. This field is only applicable when `use_ip_aliases` is true."
2600 },
2601 "nodeIpv4CidrBlock": {
2602 "type": "string",
2603 "description": "The IP address range of the instance IPs in this cluster. This is applicable only if `create_subnetwork` is true. Set to blank to have a range chosen with the default size. Set to /netmask (e.g. `/14`) to have a range chosen with a specific netmask. Set to a [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing) notation (e.g. `10.96.0.0/14`) from the RFC-1918 private networks (e.g. `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`) to pick a specific range to use."
2604 }
2605 },
2606 "description": "Configuration for controlling how IPs are allocated in the cluster.",
2607 "id": "IPAllocationPolicy",
2608 "type": "object"
2609 },
2610 "NodeTaint": {
2611 "properties": {
2612 "key": {
2613 "type": "string",
2614 "description": "Key for taint."
2615 },
2616 "effect": {
2617 "type": "string",
2618 "description": "Effect for taint.",
2619 "enum": [
2620 "EFFECT_UNSPECIFIED",
2621 "NO_SCHEDULE",
2622 "PREFER_NO_SCHEDULE",
2623 "NO_EXECUTE"
2624 ],
2625 "enumDescriptions": [
2626 "Not set",
2627 "NoSchedule",
2628 "PreferNoSchedule",
2629 "NoExecute"
2630 ]
2631 },
2632 "value": {
2633 "description": "Value for taint.",
2634 "type": "string"
2635 }
2636 },
2637 "type": "object",
2638 "description": "Kubernetes taint is comprised of three fields: key, value, and effect. Effect can only be one of three types: NoSchedule, PreferNoSchedule or NoExecute. See [here](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration) for more information, including usage and the valid values.",
2639 "id": "NodeTaint"
2640 },
2641 "ClientCertificateConfig": {
2642 "description": "Configuration for client certificates on the cluster.",
2643 "id": "ClientCertificateConfig",
2644 "type": "object",
2645 "properties": {
2646 "issueClientCertificate": {
2647 "description": "Issue a client certificate.",
2648 "type": "boolean"
2649 }
2650 }
2651 },
2652 "Cluster": {
2653 "id": "Cluster",
2654 "properties": {
2655 "masterAuth": {
2656 "description": "The authentication information for accessing the master endpoint. If unspecified, the defaults are used: For clusters before v1.12, if master_auth is unspecified, `username` will be set to \"admin\", a random password will be generated, and a client certificate will be issued.",
2657 "$ref": "MasterAuth"
2658 },
2659 "currentNodeVersion": {
2660 "description": "[Output only] Deprecated, use [NodePool.version](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters.nodePools) instead. The current version of the node software components. If they are currently at multiple versions because they're in the process of being upgraded, this reflects the minimum version of all nodes.",
2661 "type": "string"
2662 },
2663 "expireTime": {
2664 "description": "[Output only] The time the cluster will be automatically deleted in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text format.",
2665 "type": "string"
2666 },
2667 "network": {
2668 "description": "The name of the Google Compute Engine [network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks) to which the cluster is connected. If left unspecified, the `default` network will be used. On output this shows the network ID instead of the name.",
2669 "type": "string"
2670 },
2671 "defaultMaxPodsConstraint": {
2672 "description": "The default constraint on the maximum number of pods that can be run simultaneously on a node in the node pool of this cluster. Only honored if cluster created with IP Alias support.",
2673 "$ref": "MaxPodsConstraint"
2674 },
2675 "labelFingerprint": {
2676 "type": "string",
2677 "description": "The fingerprint of the set of labels for this cluster."
2678 },
2679 "currentNodeCount": {
2680 "type": "integer",
2681 "description": "[Output only] The number of nodes currently in the cluster. Deprecated. Call Kubernetes API directly to retrieve node information.",
2682 "format": "int32"
2683 },
2684 "resourceUsageExportConfig": {
2685 "description": "Configuration for exporting resource usages. Resource usage export is disabled when this config unspecified.",
2686 "$ref": "ResourceUsageExportConfig"
2687 },
2688 "monitoringService": {
2689 "description": "The monitoring service the cluster should use to write metrics. Currently available options: * \"monitoring.googleapis.com/kubernetes\" - The Cloud Monitoring service with a Kubernetes-native resource model * `monitoring.googleapis.com` - The legacy Cloud Monitoring service (no longer available as of GKE 1.15). * `none` - No metrics will be exported from the cluster. If left as an empty string,`monitoring.googleapis.com/kubernetes` will be used for GKE 1.14+ or `monitoring.googleapis.com` for earlier versions.",
2690 "type": "string"
2691 },
2692 "podSecurityPolicyConfig": {
2693 "$ref": "PodSecurityPolicyConfig",
2694 "description": "Configuration for the PodSecurityPolicy feature."
2695 },
2696 "master": {
2697 "description": "Configuration for master components.",
2698 "$ref": "Master"
2699 },
2700 "releaseChannel": {
2701 "$ref": "ReleaseChannel",
2702 "description": "Release channel configuration."
2703 },
2704 "tpuConfig": {
2705 "$ref": "TpuConfig",
2706 "description": "Configuration for Cloud TPU support;"
2707 },
2708 "statusMessage": {
2709 "description": "[Output only] Additional information about the current status of this cluster, if available.",
2710 "type": "string"
2711 },
2712 "servicesIpv4Cidr": {
2713 "type": "string",
2714 "description": "[Output only] The IP address range of the Kubernetes services in this cluster, in [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing) notation (e.g. `1.2.3.4/29`). Service addresses are typically put in the last `/16` from the container CIDR."
2715 },
2716 "privateClusterConfig": {
2717 "$ref": "PrivateClusterConfig",
2718 "description": "Configuration for private cluster."
2719 },
2720 "description": {
2721 "type": "string",
2722 "description": "An optional description of this cluster."
2723 },
2724 "verticalPodAutoscaling": {
2725 "description": "Cluster-level Vertical Pod Autoscaling configuration.",
2726 "$ref": "VerticalPodAutoscaling"
2727 },
2728 "resourceLabels": {
2729 "additionalProperties": {
2730 "type": "string"
2731 },
2732 "type": "object",
2733 "description": "The resource labels for the cluster to use to annotate any related Google Compute Engine resources."
2734 },
2735 "createTime": {
2736 "description": "[Output only] The time the cluster was created, in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text format.",
2737 "type": "string"
2738 },
2739 "clusterIpv4Cidr": {
2740 "type": "string",
2741 "description": "The IP address range of the container pods in this cluster, in [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing) notation (e.g. `10.96.0.0/14`). Leave blank to have one automatically chosen or specify a `/14` block in `10.0.0.0/8`."
2742 },
2743 "initialClusterVersion": {
2744 "type": "string",
2745 "description": "The initial Kubernetes version for this cluster. Valid versions are those found in validMasterVersions returned by getServerConfig. The version can be upgraded over time; such upgrades are reflected in currentMasterVersion and currentNodeVersion. Users may specify either explicit versions offered by Kubernetes Engine or version aliases, which have the following behavior: - \"latest\": picks the highest valid Kubernetes version - \"1.X\": picks the highest valid patch+gke.N patch in the 1.X version - \"1.X.Y\": picks the highest valid gke.N patch in the 1.X.Y version - \"1.X.Y-gke.N\": picks an explicit Kubernetes version - \"\",\"-\": picks the default Kubernetes version"
2746 },
2747 "ipAllocationPolicy": {
2748 "$ref": "IPAllocationPolicy",
2749 "description": "Configuration for cluster IP allocation."
2750 },
2751 "binaryAuthorization": {
2752 "$ref": "BinaryAuthorization",
2753 "description": "Configuration for Binary Authorization."
2754 },
2755 "clusterTelemetry": {
2756 "description": "Telemetry integration for the cluster.",
2757 "$ref": "ClusterTelemetry"
2758 },
2759 "subnetwork": {
2760 "description": "The name of the Google Compute Engine [subnetwork](https://cloud.google.com/compute/docs/subnetworks) to which the cluster is connected. On output this shows the subnetwork ID instead of the name.",
2761 "type": "string"
2762 },
2763 "workloadIdentityConfig": {
2764 "description": "Configuration for the use of Kubernetes Service Accounts in GCP IAM policies.",
2765 "$ref": "WorkloadIdentityConfig"
2766 },
2767 "networkConfig": {
2768 "$ref": "NetworkConfig",
2769 "description": "Configuration for cluster networking."
2770 },
2771 "shieldedNodes": {
2772 "description": "Shielded Nodes configuration.",
2773 "$ref": "ShieldedNodes"
2774 },
2775 "notificationConfig": {
2776 "$ref": "NotificationConfig",
2777 "description": "Notification configuration of the cluster."
2778 },
2779 "privateCluster": {
2780 "type": "boolean",
2781 "description": "If this is a private cluster setup. Private clusters are clusters that, by default have no external IP addresses on the nodes and where nodes and the master communicate over private IP addresses. This field is deprecated, use private_cluster_config.enable_private_nodes instead."
2782 },
2783 "status": {
2784 "enumDescriptions": [
2785 "Not set.",
2786 "The PROVISIONING state indicates the cluster is being created.",
2787 "The RUNNING state indicates the cluster has been created and is fully usable.",
2788 "The RECONCILING state indicates that some work is actively being done on the cluster, such as upgrading the master or node software. Details can be found in the `statusMessage` field.",
2789 "The STOPPING state indicates the cluster is being deleted.",
2790 "The ERROR state indicates the cluster may be unusable. Details can be found in the `statusMessage` field.",
2791 "The DEGRADED state indicates the cluster requires user action to restore full functionality. Details can be found in the `statusMessage` field."
2792 ],
2793 "enum": [
2794 "STATUS_UNSPECIFIED",
2795 "PROVISIONING",
2796 "RUNNING",
2797 "RECONCILING",
2798 "STOPPING",
2799 "ERROR",
2800 "DEGRADED"
2801 ],
2802 "type": "string",
2803 "description": "[Output only] The current status of this cluster."
2804 },
2805 "databaseEncryption": {
2806 "description": "Configuration of etcd encryption.",
2807 "$ref": "DatabaseEncryption"
2808 },
2809 "confidentialNodes": {
2810 "description": "Configuration of Confidential Nodes",
2811 "$ref": "ConfidentialNodes"
2812 },
2813 "authenticatorGroupsConfig": {
2814 "description": "Configuration controlling RBAC group membership information.",
2815 "$ref": "AuthenticatorGroupsConfig"
2816 },
2817 "networkPolicy": {
2818 "$ref": "NetworkPolicy",
2819 "description": "Configuration options for the NetworkPolicy feature."
2820 },
2821 "masterIpv4CidrBlock": {
2822 "description": "The IP prefix in CIDR notation to use for the hosted master network. This prefix will be used for assigning private IP addresses to the master or set of masters, as well as the ILB VIP. This field is deprecated, use private_cluster_config.master_ipv4_cidr_block instead.",
2823 "type": "string"
2824 },
2825 "enableKubernetesAlpha": {
2826 "description": "Kubernetes alpha features are enabled on this cluster. This includes alpha API groups (e.g. v1beta1) and features that may not be production ready in the kubernetes version of the master and nodes. The cluster has no SLA for uptime and master/node upgrades are disabled. Alpha enabled clusters are automatically deleted thirty days after creation.",
2827 "type": "boolean"
2828 },
2829 "currentMasterVersion": {
2830 "description": "[Output only] The current software version of the master endpoint.",
2831 "type": "string"
2832 },
2833 "conditions": {
2834 "description": "Which conditions caused the current cluster state.",
2835 "type": "array",
2836 "items": {
2837 "$ref": "StatusCondition"
2838 }
2839 },
2840 "name": {
2841 "description": "The name of this cluster. The name must be unique within this project and location (e.g. zone or region), and can be up to 40 characters with the following restrictions: * Lowercase letters, numbers, and hyphens only. * Must start with a letter. * Must end with a number or a letter.",
2842 "type": "string"
2843 },
2844 "masterAuthorizedNetworksConfig": {
2845 "description": "The configuration options for master authorized networks feature.",
2846 "$ref": "MasterAuthorizedNetworksConfig"
2847 },
2848 "nodePools": {
2849 "description": "The node pools associated with this cluster. This field should not be set if \"node_config\" or \"initial_node_count\" are specified.",
2850 "type": "array",
2851 "items": {
2852 "$ref": "NodePool"
2853 }
2854 },
2855 "addonsConfig": {
2856 "$ref": "AddonsConfig",
2857 "description": "Configurations for the various addons available to run in the cluster."
2858 },
2859 "nodeIpv4CidrSize": {
2860 "format": "int32",
2861 "description": "[Output only] The size of the address space on each node for hosting containers. This is provisioned from within the `container_ipv4_cidr` range. This field will only be set when cluster is in route-based network mode.",
2862 "type": "integer"
2863 },
2864 "loggingService": {
2865 "type": "string",
2866 "description": "The logging service the cluster should use to write logs. Currently available options: * `logging.googleapis.com/kubernetes` - The Cloud Logging service with a Kubernetes-native resource model * `logging.googleapis.com` - The legacy Cloud Logging service (no longer available as of GKE 1.15). * `none` - no logs will be exported from the cluster. If left as an empty string,`logging.googleapis.com/kubernetes` will be used for GKE 1.14+ or `logging.googleapis.com` for earlier versions."
2867 },
2868 "autoscaling": {
2869 "$ref": "ClusterAutoscaling",
2870 "description": "Cluster-level autoscaling configuration."
2871 },
2872 "legacyAbac": {
2873 "$ref": "LegacyAbac",
2874 "description": "Configuration for the legacy ABAC authorization mode."
2875 },
2876 "selfLink": {
2877 "type": "string",
2878 "description": "[Output only] Server-defined URL for the resource."
2879 },
2880 "endpoint": {
2881 "type": "string",
2882 "description": "[Output only] The IP address of this cluster's master endpoint. The endpoint can be accessed from the internet at `https://username:password@endpoint/`. See the `masterAuth` property of this resource for username and password information."
2883 },
2884 "enableTpu": {
2885 "type": "boolean",
2886 "description": "Enable the ability to use Cloud TPUs in this cluster. This field is deprecated, use tpu_config.enabled instead."
2887 },
2888 "maintenancePolicy": {
2889 "description": "Configure the maintenance policy for this cluster.",
2890 "$ref": "MaintenancePolicy"
2891 },
2892 "zone": {
2893 "description": "[Output only] The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field is deprecated, use location instead.",
2894 "type": "string"
2895 },
2896 "initialNodeCount": {
2897 "format": "int32",
2898 "type": "integer",
2899 "description": "The number of nodes to create in this cluster. You must ensure that your Compute Engine [resource quota](https://cloud.google.com/compute/quotas) is sufficient for this number of instances. You must also have available firewall and routes quota. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"node_config\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. This field is deprecated, use node_pool.initial_node_count instead."
2900 },
2901 "locations": {
2902 "type": "array",
2903 "description": "The list of Google Compute Engine [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes should be located. This field provides a default value if [NodePool.Locations](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.locations.clusters.nodePools#NodePool.FIELDS.locations) are not specified during node pool creation. Warning: changing cluster locations will update the [NodePool.Locations](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.locations.clusters.nodePools#NodePool.FIELDS.locations) of all node pools and will result in nodes being added and/or removed.",
2904 "items": {
2905 "type": "string"
2906 }
2907 },
2908 "location": {
2909 "type": "string",
2910 "description": "[Output only] The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) or [region](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) in which the cluster resides."
2911 },
2912 "nodeConfig": {
2913 "$ref": "NodeConfig",
2914 "description": "Parameters used in creating the cluster's nodes. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"initial_node_count\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. For responses, this field will be populated with the node configuration of the first node pool. (For configuration of each node pool, see `node_pool.config`) If unspecified, the defaults are used. This field is deprecated, use node_pool.config instead."
2915 },
2916 "tpuIpv4CidrBlock": {
2917 "description": "[Output only] The IP address range of the Cloud TPUs in this cluster, in [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing) notation (e.g. `1.2.3.4/29`).",
2918 "type": "string"
2919 },
2920 "instanceGroupUrls": {
2921 "type": "array",
2922 "description": "Deprecated. Use node_pools.instance_group_urls.",
2923 "items": {
2924 "type": "string"
2925 }
2926 }
2927 },
2928 "description": "A Google Kubernetes Engine cluster.",
2929 "type": "object"
2930 },
2931 "ListClustersResponse": {
2932 "type": "object",
2933 "properties": {
2934 "missingZones": {
2935 "type": "array",
2936 "description": "If any zones are listed here, the list of clusters returned may be missing those zones.",
2937 "items": {
2938 "type": "string"
2939 }
2940 },
2941 "clusters": {
2942 "items": {
2943 "$ref": "Cluster"
2944 },
2945 "description": "A list of clusters in the project in the specified zone, or across all ones.",
2946 "type": "array"
2947 }
2948 },
2949 "description": "ListClustersResponse is the result of ListClustersRequest.",
2950 "id": "ListClustersResponse"
2951 },
2952 "SetNetworkPolicyRequest": {
2953 "type": "object",
2954 "properties": {
2955 "networkPolicy": {
2956 "description": "Required. Configuration options for the NetworkPolicy feature.",
2957 "$ref": "NetworkPolicy"
2958 },
2959 "clusterId": {
2960 "type": "string",
2961 "description": "Required. Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field."
2962 },
2963 "zone": {
2964 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field.",
2965 "type": "string"
2966 },
2967 "projectId": {
2968 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://developers.google.com/console/help/new/#projectnumber). This field has been deprecated and replaced by the name field.",
2969 "type": "string"
2970 },
2971 "name": {
2972 "description": "The name (project, location, cluster id) of the cluster to set networking policy. Specified in the format `projects/*/locations/*/clusters/*`.",
2973 "type": "string"
2974 }
2975 },
2976 "id": "SetNetworkPolicyRequest",
2977 "description": "SetNetworkPolicyRequest enables/disables network policy for a cluster."
2978 },
2979 "IntraNodeVisibilityConfig": {
2980 "id": "IntraNodeVisibilityConfig",
2981 "description": "IntraNodeVisibilityConfig contains the desired config of the intra-node visibility on this cluster.",
2982 "properties": {
2983 "enabled": {
2984 "description": "Enables intra node visibility for this cluster.",
2985 "type": "boolean"
2986 }
2987 },
2988 "type": "object"
2989 },
2990 "DefaultSnatStatus": {
2991 "properties": {
2992 "disabled": {
2993 "description": "Disables cluster default sNAT rules.",
2994 "type": "boolean"
2995 }
2996 },
2997 "description": "DefaultSnatStatus contains the desired state of whether default sNAT should be disabled on the cluster.",
2998 "id": "DefaultSnatStatus",
2999 "type": "object"
3000 },
3001 "UpdateClusterRequest": {
3002 "type": "object",
3003 "properties": {
3004 "update": {
3005 "$ref": "ClusterUpdate",
3006 "description": "Required. A description of the update."
3007 },
3008 "projectId": {
3009 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
3010 "type": "string"
3011 },
3012 "zone": {
3013 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field.",
3014 "type": "string"
3015 },
3016 "name": {
3017 "description": "The name (project, location, cluster) of the cluster to update. Specified in the format `projects/*/locations/*/clusters/*`.",
3018 "type": "string"
3019 },
3020 "clusterId": {
3021 "type": "string",
3022 "description": "Required. Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field."
3023 }
3024 },
3025 "description": "UpdateClusterRequest updates the settings of a cluster.",
3026 "id": "UpdateClusterRequest"
3027 },
3028 "Empty": {
3029 "properties": {},
3030 "description": "A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for `Empty` is empty JSON object `{}`.",
3031 "id": "Empty",
3032 "type": "object"
3033 },
3034 "AuthenticatorGroupsConfig": {
3035 "properties": {
3036 "securityGroup": {
3037 "description": "The name of the security group-of-groups to be used. Only relevant if enabled = true.",
3038 "type": "string"
3039 },
3040 "enabled": {
3041 "type": "boolean",
3042 "description": "Whether this cluster should return group membership lookups during authentication using a group of security groups."
3043 }
3044 },
3045 "id": "AuthenticatorGroupsConfig",
3046 "type": "object",
3047 "description": "Configuration for returning group information from authenticators."
3048 },
3049 "NodeManagement": {
3050 "id": "NodeManagement",
3051 "description": "NodeManagement defines the set of node management services turned on for the node pool.",
3052 "properties": {
3053 "autoUpgrade": {
3054 "description": "Whether the nodes will be automatically upgraded.",
3055 "type": "boolean"
3056 },
3057 "autoRepair": {
3058 "type": "boolean",
3059 "description": "Whether the nodes will be automatically repaired."
3060 },
3061 "upgradeOptions": {
3062 "description": "Specifies the Auto Upgrade knobs for the node pool.",
3063 "$ref": "AutoUpgradeOptions"
3064 }
3065 },
3066 "type": "object"
3067 },
3068 "SetNodePoolManagementRequest": {
3069 "type": "object",
3070 "properties": {
3071 "name": {
3072 "description": "The name (project, location, cluster, node pool id) of the node pool to set management properties. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`.",
3073 "type": "string"
3074 },
3075 "management": {
3076 "$ref": "NodeManagement",
3077 "description": "Required. NodeManagement configuration for the node pool."
3078 },
3079 "projectId": {
3080 "type": "string",
3081 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field."
3082 },
3083 "zone": {
3084 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field.",
3085 "type": "string"
3086 },
3087 "nodePoolId": {
3088 "type": "string",
3089 "description": "Required. Deprecated. The name of the node pool to update. This field has been deprecated and replaced by the name field."
3090 },
3091 "clusterId": {
3092 "description": "Required. Deprecated. The name of the cluster to update. This field has been deprecated and replaced by the name field.",
3093 "type": "string"
3094 }
3095 },
3096 "description": "SetNodePoolManagementRequest sets the node management properties of a node pool.",
3097 "id": "SetNodePoolManagementRequest"
3098 },
3099 "CloudRunConfig": {
3100 "id": "CloudRunConfig",
3101 "type": "object",
3102 "properties": {
3103 "loadBalancerType": {
3104 "description": "Which load balancer type is installed for Cloud Run.",
3105 "enum": [
3106 "LOAD_BALANCER_TYPE_UNSPECIFIED",
3107 "LOAD_BALANCER_TYPE_EXTERNAL",
3108 "LOAD_BALANCER_TYPE_INTERNAL"
3109 ],
3110 "type": "string",
3111 "enumDescriptions": [
3112 "Load balancer type for Cloud Run is unspecified.",
3113 "Install external load balancer for Cloud Run.",
3114 "Install internal load balancer for Cloud Run."
3115 ]
3116 },
3117 "disabled": {
3118 "type": "boolean",
3119 "description": "Whether Cloud Run addon is enabled for this cluster."
3120 }
3121 },
3122 "description": "Configuration options for the Cloud Run feature."
3123 },
3124 "SetLegacyAbacRequest": {
3125 "properties": {
3126 "name": {
3127 "description": "The name (project, location, cluster id) of the cluster to set legacy abac. Specified in the format `projects/*/locations/*/clusters/*`.",
3128 "type": "string"
3129 },
3130 "zone": {
3131 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field.",
3132 "type": "string"
3133 },
3134 "clusterId": {
3135 "type": "string",
3136 "description": "Required. Deprecated. The name of the cluster to update. This field has been deprecated and replaced by the name field."
3137 },
3138 "projectId": {
3139 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
3140 "type": "string"
3141 },
3142 "enabled": {
3143 "type": "boolean",
3144 "description": "Required. Whether ABAC authorization will be enabled in the cluster."
3145 }
3146 },
3147 "id": "SetLegacyAbacRequest",
3148 "type": "object",
3149 "description": "SetLegacyAbacRequest enables or disables the ABAC authorization mechanism for a cluster."
3150 },
3151 "CidrBlock": {
3152 "properties": {
3153 "cidrBlock": {
3154 "description": "cidr_block must be specified in CIDR notation.",
3155 "type": "string"
3156 },
3157 "displayName": {
3158 "description": "display_name is an optional field for users to identify CIDR blocks.",
3159 "type": "string"
3160 }
3161 },
3162 "description": "CidrBlock contains an optional name and one CIDR block.",
3163 "id": "CidrBlock",
3164 "type": "object"
3165 },
3166 "ResourceUsageExportConfig": {
3167 "properties": {
3168 "bigqueryDestination": {
3169 "$ref": "BigQueryDestination",
3170 "description": "Configuration to use BigQuery as usage export destination."
3171 },
3172 "consumptionMeteringConfig": {
3173 "$ref": "ConsumptionMeteringConfig",
3174 "description": "Configuration to enable resource consumption metering."
3175 },
3176 "enableNetworkEgressMetering": {
3177 "description": "Whether to enable network egress metering for this cluster. If enabled, a daemonset will be created in the cluster to meter network egress traffic.",
3178 "type": "boolean"
3179 }
3180 },
3181 "type": "object",
3182 "description": "Configuration for exporting cluster resource usages.",
3183 "id": "ResourceUsageExportConfig"
3184 },
3185 "SetLoggingServiceRequest": {
3186 "type": "object",
3187 "id": "SetLoggingServiceRequest",
3188 "properties": {
3189 "loggingService": {
3190 "type": "string",
3191 "description": "Required. The logging service the cluster should use to write logs. Currently available options: * `logging.googleapis.com/kubernetes` - The Cloud Logging service with a Kubernetes-native resource model * `logging.googleapis.com` - The legacy Cloud Logging service (no longer available as of GKE 1.15). * `none` - no logs will be exported from the cluster. If left as an empty string,`logging.googleapis.com/kubernetes` will be used for GKE 1.14+ or `logging.googleapis.com` for earlier versions."
3192 },
3193 "clusterId": {
3194 "description": "Required. Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
3195 "type": "string"
3196 },
3197 "projectId": {
3198 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
3199 "type": "string"
3200 },
3201 "name": {
3202 "description": "The name (project, location, cluster) of the cluster to set logging. Specified in the format `projects/*/locations/*/clusters/*`.",
3203 "type": "string"
3204 },
3205 "zone": {
3206 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field.",
3207 "type": "string"
3208 }
3209 },
3210 "description": "SetLoggingServiceRequest sets the logging service of a cluster."
3211 }
3212 },
3213 "discoveryVersion": "v1",
3214 "protocol": "rest",
3215 "id": "container:v1beta1",
3216 "ownerDomain": "google.com",
3217 "title": "Kubernetes Engine API",
3218 "version": "v1beta1",
3219 "basePath": "",
3220 "version_module": true,
3221 "auth": {
3222 "oauth2": {
3223 "scopes": {
3224 "https://www.googleapis.com/auth/cloud-platform": {
3225 "description": "View and manage your data across Google Cloud Platform services"
3226 }
3227 }
3228 }
3229 },
3230 "batchPath": "batch",
3231 "rootUrl": "https://container.googleapis.com/",
3232 "resources": {
3233 "projects": {
3234 "resources": {
3235 "locations": {
3236 "resources": {
3237 "operations": {
3238 "methods": {
3239 "cancel": {
3240 "id": "container.projects.locations.operations.cancel",
3241 "response": {
3242 "$ref": "Empty"
3243 },
3244 "httpMethod": "POST",
3245 "parameterOrder": [
3246 "name"
3247 ],
3248 "path": "v1beta1/{+name}:cancel",
3249 "parameters": {
3250 "name": {
3251 "pattern": "^projects/[^/]+/locations/[^/]+/operations/[^/]+$",
3252 "location": "path",
3253 "description": "The name (project, location, operation id) of the operation to cancel. Specified in the format `projects/*/locations/*/operations/*`.",
3254 "type": "string",
3255 "required": true
3256 }
3257 },
3258 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/operations/{operationsId}:cancel",
3259 "request": {
3260 "$ref": "CancelOperationRequest"
3261 },
3262 "description": "Cancels the specified operation.",
3263 "scopes": [
3264 "https://www.googleapis.com/auth/cloud-platform"
3265 ]
3266 },
3267 "get": {
3268 "parameters": {
3269 "name": {
3270 "type": "string",
3271 "location": "path",
3272 "description": "The name (project, location, operation id) of the operation to get. Specified in the format `projects/*/locations/*/operations/*`.",
3273 "pattern": "^projects/[^/]+/locations/[^/]+/operations/[^/]+$",
3274 "required": true
3275 },
3276 "projectId": {
3277 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
3278 "location": "query",
3279 "type": "string"
3280 },
3281 "operationId": {
3282 "type": "string",
3283 "location": "query",
3284 "description": "Required. Deprecated. The server-assigned `name` of the operation. This field has been deprecated and replaced by the name field."
3285 },
3286 "zone": {
3287 "type": "string",
3288 "location": "query",
3289 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field."
3290 }
3291 },
3292 "httpMethod": "GET",
3293 "scopes": [
3294 "https://www.googleapis.com/auth/cloud-platform"
3295 ],
3296 "id": "container.projects.locations.operations.get",
3297 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/operations/{operationsId}",
3298 "description": "Gets the specified operation.",
3299 "parameterOrder": [
3300 "name"
3301 ],
3302 "response": {
3303 "$ref": "Operation"
3304 },
3305 "path": "v1beta1/{+name}"
3306 },
3307 "list": {
3308 "parameters": {
3309 "parent": {
3310 "pattern": "^projects/[^/]+/locations/[^/]+$",
3311 "location": "path",
3312 "description": "The parent (project and location) where the operations will be listed. Specified in the format `projects/*/locations/*`. Location \"-\" matches all zones and all regions.",
3313 "type": "string",
3314 "required": true
3315 },
3316 "zone": {
3317 "location": "query",
3318 "type": "string",
3319 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) to return operations for, or `-` for all zones. This field has been deprecated and replaced by the parent field."
3320 },
3321 "projectId": {
3322 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the parent field.",
3323 "type": "string",
3324 "location": "query"
3325 }
3326 },
3327 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/operations",
3328 "description": "Lists all operations in a project in the specified zone or all zones.",
3329 "response": {
3330 "$ref": "ListOperationsResponse"
3331 },
3332 "httpMethod": "GET",
3333 "id": "container.projects.locations.operations.list",
3334 "scopes": [
3335 "https://www.googleapis.com/auth/cloud-platform"
3336 ],
3337 "path": "v1beta1/{+parent}/operations",
3338 "parameterOrder": [
3339 "parent"
3340 ]
3341 }
3342 }
3343 },
3344 "clusters": {
3345 "methods": {
3346 "updateMaster": {
3347 "scopes": [
3348 "https://www.googleapis.com/auth/cloud-platform"
3349 ],
3350 "description": "Updates the master for a specific cluster.",
3351 "parameterOrder": [
3352 "name"
3353 ],
3354 "response": {
3355 "$ref": "Operation"
3356 },
3357 "id": "container.projects.locations.clusters.updateMaster",
3358 "request": {
3359 "$ref": "UpdateMasterRequest"
3360 },
3361 "path": "v1beta1/{+name}:updateMaster",
3362 "httpMethod": "POST",
3363 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}:updateMaster",
3364 "parameters": {
3365 "name": {
3366 "type": "string",
3367 "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
3368 "required": true,
3369 "location": "path",
3370 "description": "The name (project, location, cluster) of the cluster to update. Specified in the format `projects/*/locations/*/clusters/*`."
3371 }
3372 }
3373 },
3374 "setLogging": {
3375 "parameters": {
3376 "name": {
3377 "location": "path",
3378 "type": "string",
3379 "description": "The name (project, location, cluster) of the cluster to set logging. Specified in the format `projects/*/locations/*/clusters/*`.",
3380 "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
3381 "required": true
3382 }
3383 },
3384 "response": {
3385 "$ref": "Operation"
3386 },
3387 "path": "v1beta1/{+name}:setLogging",
3388 "request": {
3389 "$ref": "SetLoggingServiceRequest"
3390 },
3391 "parameterOrder": [
3392 "name"
3393 ],
3394 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}:setLogging",
3395 "scopes": [
3396 "https://www.googleapis.com/auth/cloud-platform"
3397 ],
3398 "description": "Sets the logging service for a specific cluster.",
3399 "httpMethod": "POST",
3400 "id": "container.projects.locations.clusters.setLogging"
3401 },
3402 "setMaintenancePolicy": {
3403 "parameterOrder": [
3404 "name"
3405 ],
3406 "response": {
3407 "$ref": "Operation"
3408 },
3409 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}:setMaintenancePolicy",
3410 "parameters": {
3411 "name": {
3412 "description": "The name (project, location, cluster id) of the cluster to set maintenance policy. Specified in the format `projects/*/locations/*/clusters/*`.",
3413 "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
3414 "type": "string",
3415 "location": "path",
3416 "required": true
3417 }
3418 },
3419 "scopes": [
3420 "https://www.googleapis.com/auth/cloud-platform"
3421 ],
3422 "request": {
3423 "$ref": "SetMaintenancePolicyRequest"
3424 },
3425 "id": "container.projects.locations.clusters.setMaintenancePolicy",
3426 "httpMethod": "POST",
3427 "path": "v1beta1/{+name}:setMaintenancePolicy",
3428 "description": "Sets the maintenance policy for a cluster."
3429 },
3430 "create": {
3431 "response": {
3432 "$ref": "Operation"
3433 },
3434 "id": "container.projects.locations.clusters.create",
3435 "scopes": [
3436 "https://www.googleapis.com/auth/cloud-platform"
3437 ],
3438 "httpMethod": "POST",
3439 "parameterOrder": [
3440 "parent"
3441 ],
3442 "parameters": {
3443 "parent": {
3444 "type": "string",
3445 "description": "The parent (project and location) where the cluster will be created. Specified in the format `projects/*/locations/*`.",
3446 "pattern": "^projects/[^/]+/locations/[^/]+$",
3447 "required": true,
3448 "location": "path"
3449 }
3450 },
3451 "description": "Creates a cluster, consisting of the specified number and type of Google Compute Engine instances. By default, the cluster is created in the project's [default network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks). One firewall is added for the cluster. After cluster creation, the Kubelet creates routes for each node to allow the containers on that node to communicate with all other instances in the cluster. Finally, an entry is added to the project's global metadata indicating which CIDR range the cluster is using.",
3452 "path": "v1beta1/{+parent}/clusters",
3453 "request": {
3454 "$ref": "CreateClusterRequest"
3455 },
3456 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters"
3457 },
3458 "update": {
3459 "parameterOrder": [
3460 "name"
3461 ],
3462 "scopes": [
3463 "https://www.googleapis.com/auth/cloud-platform"
3464 ],
3465 "description": "Updates the settings for a specific cluster.",
3466 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}",
3467 "parameters": {
3468 "name": {
3469 "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
3470 "description": "The name (project, location, cluster) of the cluster to update. Specified in the format `projects/*/locations/*/clusters/*`.",
3471 "type": "string",
3472 "required": true,
3473 "location": "path"
3474 }
3475 },
3476 "path": "v1beta1/{+name}",
3477 "httpMethod": "PUT",
3478 "request": {
3479 "$ref": "UpdateClusterRequest"
3480 },
3481 "response": {
3482 "$ref": "Operation"
3483 },
3484 "id": "container.projects.locations.clusters.update"
3485 },
3486 "getJwks": {
3487 "parameterOrder": [
3488 "parent"
3489 ],
3490 "id": "container.projects.locations.clusters.getJwks",
3491 "parameters": {
3492 "parent": {
3493 "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
3494 "location": "path",
3495 "required": true,
3496 "type": "string",
3497 "description": "The cluster (project, location, cluster id) to get keys for. Specified in the format `projects/*/locations/*/clusters/*`."
3498 }
3499 },
3500 "description": "Gets the public component of the cluster signing keys in JSON Web Key format. This API is not yet intended for general use, and is not available for all clusters.",
3501 "response": {
3502 "$ref": "GetJSONWebKeysResponse"
3503 },
3504 "path": "v1beta1/{+parent}/jwks",
3505 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}/jwks",
3506 "httpMethod": "GET"
3507 },
3508 "get": {
3509 "parameterOrder": [
3510 "name"
3511 ],
3512 "id": "container.projects.locations.clusters.get",
3513 "httpMethod": "GET",
3514 "scopes": [
3515 "https://www.googleapis.com/auth/cloud-platform"
3516 ],
3517 "path": "v1beta1/{+name}",
3518 "response": {
3519 "$ref": "Cluster"
3520 },
3521 "description": "Gets the details for a specific cluster.",
3522 "parameters": {
3523 "clusterId": {
3524 "location": "query",
3525 "type": "string",
3526 "description": "Required. Deprecated. The name of the cluster to retrieve. This field has been deprecated and replaced by the name field."
3527 },
3528 "projectId": {
3529 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
3530 "location": "query",
3531 "type": "string"
3532 },
3533 "zone": {
3534 "location": "query",
3535 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field.",
3536 "type": "string"
3537 },
3538 "name": {
3539 "description": "The name (project, location, cluster) of the cluster to retrieve. Specified in the format `projects/*/locations/*/clusters/*`.",
3540 "required": true,
3541 "type": "string",
3542 "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
3543 "location": "path"
3544 }
3545 },
3546 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}"
3547 },
3548 "setNetworkPolicy": {
3549 "path": "v1beta1/{+name}:setNetworkPolicy",
3550 "scopes": [
3551 "https://www.googleapis.com/auth/cloud-platform"
3552 ],
3553 "id": "container.projects.locations.clusters.setNetworkPolicy",
3554 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}:setNetworkPolicy",
3555 "description": "Enables or disables Network Policy for a cluster.",
3556 "request": {
3557 "$ref": "SetNetworkPolicyRequest"
3558 },
3559 "httpMethod": "POST",
3560 "response": {
3561 "$ref": "Operation"
3562 },
3563 "parameters": {
3564 "name": {
3565 "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
3566 "location": "path",
3567 "type": "string",
3568 "description": "The name (project, location, cluster id) of the cluster to set networking policy. Specified in the format `projects/*/locations/*/clusters/*`.",
3569 "required": true
3570 }
3571 },
3572 "parameterOrder": [
3573 "name"
3574 ]
3575 },
3576 "setLegacyAbac": {
3577 "request": {
3578 "$ref": "SetLegacyAbacRequest"
3579 },
3580 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}:setLegacyAbac",
3581 "response": {
3582 "$ref": "Operation"
3583 },
3584 "description": "Enables or disables the ABAC authorization mechanism on a cluster.",
3585 "path": "v1beta1/{+name}:setLegacyAbac",
3586 "parameterOrder": [
3587 "name"
3588 ],
3589 "id": "container.projects.locations.clusters.setLegacyAbac",
3590 "httpMethod": "POST",
3591 "scopes": [
3592 "https://www.googleapis.com/auth/cloud-platform"
3593 ],
3594 "parameters": {
3595 "name": {
3596 "required": true,
3597 "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
3598 "description": "The name (project, location, cluster id) of the cluster to set legacy abac. Specified in the format `projects/*/locations/*/clusters/*`.",
3599 "location": "path",
3600 "type": "string"
3601 }
3602 }
3603 },
3604 "setResourceLabels": {
3605 "parameterOrder": [
3606 "name"
3607 ],
3608 "scopes": [
3609 "https://www.googleapis.com/auth/cloud-platform"
3610 ],
3611 "path": "v1beta1/{+name}:setResourceLabels",
3612 "parameters": {
3613 "name": {
3614 "description": "The name (project, location, cluster id) of the cluster to set labels. Specified in the format `projects/*/locations/*/clusters/*`.",
3615 "location": "path",
3616 "required": true,
3617 "type": "string",
3618 "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$"
3619 }
3620 },
3621 "description": "Sets labels on a cluster.",
3622 "response": {
3623 "$ref": "Operation"
3624 },
3625 "request": {
3626 "$ref": "SetLabelsRequest"
3627 },
3628 "id": "container.projects.locations.clusters.setResourceLabels",
3629 "httpMethod": "POST",
3630 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}:setResourceLabels"
3631 },
3632 "startIpRotation": {
3633 "path": "v1beta1/{+name}:startIpRotation",
3634 "request": {
3635 "$ref": "StartIPRotationRequest"
3636 },
3637 "description": "Starts master IP rotation.",
3638 "parameters": {
3639 "name": {
3640 "type": "string",
3641 "description": "The name (project, location, cluster id) of the cluster to start IP rotation. Specified in the format `projects/*/locations/*/clusters/*`.",
3642 "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
3643 "location": "path",
3644 "required": true
3645 }
3646 },
3647 "httpMethod": "POST",
3648 "response": {
3649 "$ref": "Operation"
3650 },
3651 "scopes": [
3652 "https://www.googleapis.com/auth/cloud-platform"
3653 ],
3654 "parameterOrder": [
3655 "name"
3656 ],
3657 "id": "container.projects.locations.clusters.startIpRotation",
3658 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}:startIpRotation"
3659 },
3660 "setLocations": {
3661 "request": {
3662 "$ref": "SetLocationsRequest"
3663 },
3664 "scopes": [
3665 "https://www.googleapis.com/auth/cloud-platform"
3666 ],
3667 "path": "v1beta1/{+name}:setLocations",
3668 "parameterOrder": [
3669 "name"
3670 ],
3671 "description": "Sets the locations for a specific cluster. Deprecated. Use [projects.locations.clusters.update](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters/update) instead.",
3672 "httpMethod": "POST",
3673 "parameters": {
3674 "name": {
3675 "description": "The name (project, location, cluster) of the cluster to set locations. Specified in the format `projects/*/locations/*/clusters/*`.",
3676 "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
3677 "type": "string",
3678 "location": "path",
3679 "required": true
3680 }
3681 },
3682 "id": "container.projects.locations.clusters.setLocations",
3683 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}:setLocations",
3684 "response": {
3685 "$ref": "Operation"
3686 }
3687 },
3688 "setMasterAuth": {
3689 "response": {
3690 "$ref": "Operation"
3691 },
3692 "request": {
3693 "$ref": "SetMasterAuthRequest"
3694 },
3695 "id": "container.projects.locations.clusters.setMasterAuth",
3696 "path": "v1beta1/{+name}:setMasterAuth",
3697 "parameters": {
3698 "name": {
3699 "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
3700 "type": "string",
3701 "description": "The name (project, location, cluster) of the cluster to set auth. Specified in the format `projects/*/locations/*/clusters/*`.",
3702 "required": true,
3703 "location": "path"
3704 }
3705 },
3706 "description": "Sets master auth materials. Currently supports changing the admin password or a specific cluster, either via password generation or explicitly setting the password.",
3707 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}:setMasterAuth",
3708 "scopes": [
3709 "https://www.googleapis.com/auth/cloud-platform"
3710 ],
3711 "httpMethod": "POST",
3712 "parameterOrder": [
3713 "name"
3714 ]
3715 },
3716 "delete": {
3717 "httpMethod": "DELETE",
3718 "response": {
3719 "$ref": "Operation"
3720 },
3721 "path": "v1beta1/{+name}",
3722 "id": "container.projects.locations.clusters.delete",
3723 "parameterOrder": [
3724 "name"
3725 ],
3726 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}",
3727 "description": "Deletes the cluster, including the Kubernetes endpoint and all worker nodes. Firewalls and routes that were configured during cluster creation are also deleted. Other Google Compute Engine resources that might be in use by the cluster, such as load balancer resources, are not deleted if they weren't present when the cluster was initially created.",
3728 "parameters": {
3729 "name": {
3730 "description": "The name (project, location, cluster) of the cluster to delete. Specified in the format `projects/*/locations/*/clusters/*`.",
3731 "required": true,
3732 "type": "string",
3733 "location": "path",
3734 "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$"
3735 },
3736 "zone": {
3737 "type": "string",
3738 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field.",
3739 "location": "query"
3740 },
3741 "projectId": {
3742 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
3743 "type": "string",
3744 "location": "query"
3745 },
3746 "clusterId": {
3747 "location": "query",
3748 "description": "Required. Deprecated. The name of the cluster to delete. This field has been deprecated and replaced by the name field.",
3749 "type": "string"
3750 }
3751 },
3752 "scopes": [
3753 "https://www.googleapis.com/auth/cloud-platform"
3754 ]
3755 },
3756 "setAddons": {
3757 "description": "Sets the addons for a specific cluster.",
3758 "id": "container.projects.locations.clusters.setAddons",
3759 "response": {
3760 "$ref": "Operation"
3761 },
3762 "scopes": [
3763 "https://www.googleapis.com/auth/cloud-platform"
3764 ],
3765 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}:setAddons",
3766 "httpMethod": "POST",
3767 "request": {
3768 "$ref": "SetAddonsConfigRequest"
3769 },
3770 "parameterOrder": [
3771 "name"
3772 ],
3773 "path": "v1beta1/{+name}:setAddons",
3774 "parameters": {
3775 "name": {
3776 "location": "path",
3777 "description": "The name (project, location, cluster) of the cluster to set addons. Specified in the format `projects/*/locations/*/clusters/*`.",
3778 "required": true,
3779 "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
3780 "type": "string"
3781 }
3782 }
3783 },
3784 "setMonitoring": {
3785 "path": "v1beta1/{+name}:setMonitoring",
3786 "description": "Sets the monitoring service for a specific cluster.",
3787 "request": {
3788 "$ref": "SetMonitoringServiceRequest"
3789 },
3790 "httpMethod": "POST",
3791 "parameterOrder": [
3792 "name"
3793 ],
3794 "scopes": [
3795 "https://www.googleapis.com/auth/cloud-platform"
3796 ],
3797 "id": "container.projects.locations.clusters.setMonitoring",
3798 "response": {
3799 "$ref": "Operation"
3800 },
3801 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}:setMonitoring",
3802 "parameters": {
3803 "name": {
3804 "required": true,
3805 "description": "The name (project, location, cluster) of the cluster to set monitoring. Specified in the format `projects/*/locations/*/clusters/*`.",
3806 "type": "string",
3807 "location": "path",
3808 "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$"
3809 }
3810 }
3811 },
3812 "completeIpRotation": {
3813 "id": "container.projects.locations.clusters.completeIpRotation",
3814 "path": "v1beta1/{+name}:completeIpRotation",
3815 "response": {
3816 "$ref": "Operation"
3817 },
3818 "scopes": [
3819 "https://www.googleapis.com/auth/cloud-platform"
3820 ],
3821 "parameterOrder": [
3822 "name"
3823 ],
3824 "httpMethod": "POST",
3825 "description": "Completes master IP rotation.",
3826 "parameters": {
3827 "name": {
3828 "type": "string",
3829 "location": "path",
3830 "required": true,
3831 "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
3832 "description": "The name (project, location, cluster id) of the cluster to complete IP rotation. Specified in the format `projects/*/locations/*/clusters/*`."
3833 }
3834 },
3835 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}:completeIpRotation",
3836 "request": {
3837 "$ref": "CompleteIPRotationRequest"
3838 }
3839 },
3840 "list": {
3841 "httpMethod": "GET",
3842 "parameters": {
3843 "projectId": {
3844 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the parent field.",
3845 "location": "query",
3846 "type": "string"
3847 },
3848 "parent": {
3849 "location": "path",
3850 "description": "The parent (project and location) where the clusters will be listed. Specified in the format `projects/*/locations/*`. Location \"-\" matches all zones and all regions.",
3851 "required": true,
3852 "pattern": "^projects/[^/]+/locations/[^/]+$",
3853 "type": "string"
3854 },
3855 "zone": {
3856 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides, or \"-\" for all zones. This field has been deprecated and replaced by the parent field.",
3857 "location": "query",
3858 "type": "string"
3859 }
3860 },
3861 "response": {
3862 "$ref": "ListClustersResponse"
3863 },
3864 "path": "v1beta1/{+parent}/clusters",
3865 "scopes": [
3866 "https://www.googleapis.com/auth/cloud-platform"
3867 ],
3868 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters",
3869 "description": "Lists all clusters owned by a project in either the specified zone or all zones.",
3870 "parameterOrder": [
3871 "parent"
3872 ],
3873 "id": "container.projects.locations.clusters.list"
3874 }
3875 },
3876 "resources": {
3877 "nodePools": {
3878 "methods": {
3879 "get": {
3880 "parameterOrder": [
3881 "name"
3882 ],
3883 "response": {
3884 "$ref": "NodePool"
3885 },
3886 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}/nodePools/{nodePoolsId}",
3887 "httpMethod": "GET",
3888 "parameters": {
3889 "zone": {
3890 "type": "string",
3891 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field.",
3892 "location": "query"
3893 },
3894 "nodePoolId": {
3895 "description": "Required. Deprecated. The name of the node pool. This field has been deprecated and replaced by the name field.",
3896 "type": "string",
3897 "location": "query"
3898 },
3899 "clusterId": {
3900 "description": "Required. Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field.",
3901 "type": "string",
3902 "location": "query"
3903 },
3904 "projectId": {
3905 "type": "string",
3906 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://developers.google.com/console/help/new/#projectnumber). This field has been deprecated and replaced by the name field.",
3907 "location": "query"
3908 },
3909 "name": {
3910 "type": "string",
3911 "description": "The name (project, location, cluster, node pool id) of the node pool to get. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`.",
3912 "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+/nodePools/[^/]+$",
3913 "location": "path",
3914 "required": true
3915 }
3916 },
3917 "scopes": [
3918 "https://www.googleapis.com/auth/cloud-platform"
3919 ],
3920 "description": "Retrieves the requested node pool.",
3921 "id": "container.projects.locations.clusters.nodePools.get",
3922 "path": "v1beta1/{+name}"
3923 },
3924 "setAutoscaling": {
3925 "path": "v1beta1/{+name}:setAutoscaling",
3926 "scopes": [
3927 "https://www.googleapis.com/auth/cloud-platform"
3928 ],
3929 "httpMethod": "POST",
3930 "parameters": {
3931 "name": {
3932 "type": "string",
3933 "location": "path",
3934 "description": "The name (project, location, cluster, node pool) of the node pool to set autoscaler settings. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`.",
3935 "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+/nodePools/[^/]+$",
3936 "required": true
3937 }
3938 },
3939 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}/nodePools/{nodePoolsId}:setAutoscaling",
3940 "id": "container.projects.locations.clusters.nodePools.setAutoscaling",
3941 "description": "Sets the autoscaling settings of a specific node pool.",
3942 "parameterOrder": [
3943 "name"
3944 ],
3945 "response": {
3946 "$ref": "Operation"
3947 },
3948 "request": {
3949 "$ref": "SetNodePoolAutoscalingRequest"
3950 }
3951 },
3952 "rollback": {
3953 "httpMethod": "POST",
3954 "description": "Rolls back a previously Aborted or Failed NodePool upgrade. This makes no changes if the last upgrade successfully completed.",
3955 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}/nodePools/{nodePoolsId}:rollback",
3956 "request": {
3957 "$ref": "RollbackNodePoolUpgradeRequest"
3958 },
3959 "parameters": {
3960 "name": {
3961 "required": true,
3962 "description": "The name (project, location, cluster, node pool id) of the node poll to rollback upgrade. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`.",
3963 "location": "path",
3964 "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+/nodePools/[^/]+$",
3965 "type": "string"
3966 }
3967 },
3968 "path": "v1beta1/{+name}:rollback",
3969 "id": "container.projects.locations.clusters.nodePools.rollback",
3970 "scopes": [
3971 "https://www.googleapis.com/auth/cloud-platform"
3972 ],
3973 "parameterOrder": [
3974 "name"
3975 ],
3976 "response": {
3977 "$ref": "Operation"
3978 }
3979 },
3980 "list": {
3981 "description": "Lists the node pools for a cluster.",
3982 "parameterOrder": [
3983 "parent"
3984 ],
3985 "response": {
3986 "$ref": "ListNodePoolsResponse"
3987 },
3988 "path": "v1beta1/{+parent}/nodePools",
3989 "httpMethod": "GET",
3990 "scopes": [
3991 "https://www.googleapis.com/auth/cloud-platform"
3992 ],
3993 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}/nodePools",
3994 "id": "container.projects.locations.clusters.nodePools.list",
3995 "parameters": {
3996 "projectId": {
3997 "type": "string",
3998 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://developers.google.com/console/help/new/#projectnumber). This field has been deprecated and replaced by the parent field.",
3999 "location": "query"
4000 },
4001 "parent": {
4002 "location": "path",
4003 "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
4004 "type": "string",
4005 "description": "The parent (project, location, cluster id) where the node pools will be listed. Specified in the format `projects/*/locations/*/clusters/*`.",
4006 "required": true
4007 },
4008 "zone": {
4009 "location": "query",
4010 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the parent field.",
4011 "type": "string"
4012 },
4013 "clusterId": {
4014 "description": "Required. Deprecated. The name of the cluster. This field has been deprecated and replaced by the parent field.",
4015 "location": "query",
4016 "type": "string"
4017 }
4018 }
4019 },
4020 "setManagement": {
4021 "path": "v1beta1/{+name}:setManagement",
4022 "response": {
4023 "$ref": "Operation"
4024 },
4025 "request": {
4026 "$ref": "SetNodePoolManagementRequest"
4027 },
4028 "parameterOrder": [
4029 "name"
4030 ],
4031 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}/nodePools/{nodePoolsId}:setManagement",
4032 "id": "container.projects.locations.clusters.nodePools.setManagement",
4033 "httpMethod": "POST",
4034 "description": "Sets the NodeManagement options for a node pool.",
4035 "scopes": [
4036 "https://www.googleapis.com/auth/cloud-platform"
4037 ],
4038 "parameters": {
4039 "name": {
4040 "required": true,
4041 "type": "string",
4042 "location": "path",
4043 "description": "The name (project, location, cluster, node pool id) of the node pool to set management properties. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`.",
4044 "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+/nodePools/[^/]+$"
4045 }
4046 }
4047 },
4048 "update": {
4049 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}/nodePools/{nodePoolsId}",
4050 "path": "v1beta1/{+name}",
4051 "id": "container.projects.locations.clusters.nodePools.update",
4052 "parameters": {
4053 "name": {
4054 "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+/nodePools/[^/]+$",
4055 "type": "string",
4056 "required": true,
4057 "description": "The name (project, location, cluster, node pool) of the node pool to update. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`.",
4058 "location": "path"
4059 }
4060 },
4061 "response": {
4062 "$ref": "Operation"
4063 },
4064 "scopes": [
4065 "https://www.googleapis.com/auth/cloud-platform"
4066 ],
4067 "request": {
4068 "$ref": "UpdateNodePoolRequest"
4069 },
4070 "description": "Updates the version and/or image type of a specific node pool.",
4071 "parameterOrder": [
4072 "name"
4073 ],
4074 "httpMethod": "PUT"
4075 },
4076 "delete": {
4077 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}/nodePools/{nodePoolsId}",
4078 "response": {
4079 "$ref": "Operation"
4080 },
4081 "parameterOrder": [
4082 "name"
4083 ],
4084 "path": "v1beta1/{+name}",
4085 "description": "Deletes a node pool from a cluster.",
4086 "parameters": {
4087 "name": {
4088 "type": "string",
4089 "location": "path",
4090 "description": "The name (project, location, cluster, node pool id) of the node pool to delete. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`.",
4091 "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+/nodePools/[^/]+$",
4092 "required": true
4093 },
4094 "zone": {
4095 "type": "string",
4096 "location": "query",
4097 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field."
4098 },
4099 "projectId": {
4100 "location": "query",
4101 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://developers.google.com/console/help/new/#projectnumber). This field has been deprecated and replaced by the name field.",
4102 "type": "string"
4103 },
4104 "clusterId": {
4105 "description": "Required. Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field.",
4106 "type": "string",
4107 "location": "query"
4108 },
4109 "nodePoolId": {
4110 "type": "string",
4111 "description": "Required. Deprecated. The name of the node pool to delete. This field has been deprecated and replaced by the name field.",
4112 "location": "query"
4113 }
4114 },
4115 "httpMethod": "DELETE",
4116 "scopes": [
4117 "https://www.googleapis.com/auth/cloud-platform"
4118 ],
4119 "id": "container.projects.locations.clusters.nodePools.delete"
4120 },
4121 "create": {
4122 "path": "v1beta1/{+parent}/nodePools",
4123 "response": {
4124 "$ref": "Operation"
4125 },
4126 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}/nodePools",
4127 "parameterOrder": [
4128 "parent"
4129 ],
4130 "scopes": [
4131 "https://www.googleapis.com/auth/cloud-platform"
4132 ],
4133 "parameters": {
4134 "parent": {
4135 "location": "path",
4136 "required": true,
4137 "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
4138 "description": "The parent (project, location, cluster id) where the node pool will be created. Specified in the format `projects/*/locations/*/clusters/*`.",
4139 "type": "string"
4140 }
4141 },
4142 "httpMethod": "POST",
4143 "id": "container.projects.locations.clusters.nodePools.create",
4144 "description": "Creates a node pool for a cluster.",
4145 "request": {
4146 "$ref": "CreateNodePoolRequest"
4147 }
4148 },
4149 "setSize": {
4150 "id": "container.projects.locations.clusters.nodePools.setSize",
4151 "httpMethod": "POST",
4152 "parameterOrder": [
4153 "name"
4154 ],
4155 "request": {
4156 "$ref": "SetNodePoolSizeRequest"
4157 },
4158 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}/nodePools/{nodePoolsId}:setSize",
4159 "response": {
4160 "$ref": "Operation"
4161 },
4162 "parameters": {
4163 "name": {
4164 "required": true,
4165 "location": "path",
4166 "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+/nodePools/[^/]+$",
4167 "description": "The name (project, location, cluster, node pool id) of the node pool to set size. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`.",
4168 "type": "string"
4169 }
4170 },
4171 "scopes": [
4172 "https://www.googleapis.com/auth/cloud-platform"
4173 ],
4174 "description": "Sets the size for a specific node pool.",
4175 "path": "v1beta1/{+name}:setSize"
4176 }
4177 }
4178 },
4179 "well-known": {
4180 "methods": {
4181 "getOpenid-configuration": {
4182 "parameters": {
4183 "parent": {
4184 "description": "The cluster (project, location, cluster id) to get the discovery document for. Specified in the format `projects/*/locations/*/clusters/*`.",
4185 "location": "path",
4186 "type": "string",
4187 "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
4188 "required": true
4189 }
4190 },
4191 "response": {
4192 "$ref": "GetOpenIDConfigResponse"
4193 },
4194 "path": "v1beta1/{+parent}/.well-known/openid-configuration",
4195 "id": "container.projects.locations.clusters.well-known.getOpenid-configuration",
4196 "description": "Gets the OIDC discovery document for the cluster. See the [OpenID Connect Discovery 1.0 specification](https://openid.net/specs/openid-connect-discovery-1_0.html) for details. This API is not yet intended for general use, and is not available for all clusters.",
4197 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}/.well-known/openid-configuration",
4198 "parameterOrder": [
4199 "parent"
4200 ],
4201 "httpMethod": "GET"
4202 }
4203 }
4204 }
4205 }
4206 }
4207 },
4208 "methods": {
4209 "getServerConfig": {
4210 "path": "v1beta1/{+name}/serverConfig",
4211 "parameters": {
4212 "name": {
4213 "required": true,
4214 "location": "path",
4215 "description": "The name (project and location) of the server config to get, specified in the format `projects/*/locations/*`.",
4216 "pattern": "^projects/[^/]+/locations/[^/]+$",
4217 "type": "string"
4218 },
4219 "zone": {
4220 "type": "string",
4221 "location": "query",
4222 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) to return operations for. This field has been deprecated and replaced by the name field."
4223 },
4224 "projectId": {
4225 "location": "query",
4226 "type": "string",
4227 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field."
4228 }
4229 },
4230 "response": {
4231 "$ref": "ServerConfig"
4232 },
4233 "id": "container.projects.locations.getServerConfig",
4234 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/serverConfig",
4235 "scopes": [
4236 "https://www.googleapis.com/auth/cloud-platform"
4237 ],
4238 "httpMethod": "GET",
4239 "parameterOrder": [
4240 "name"
4241 ],
4242 "description": "Returns configuration info about the Google Kubernetes Engine service."
4243 },
4244 "list": {
4245 "flatPath": "v1beta1/projects/{projectsId}/locations",
4246 "id": "container.projects.locations.list",
4247 "description": "Fetches locations that offer Google Kubernetes Engine.",
4248 "parameterOrder": [
4249 "parent"
4250 ],
4251 "response": {
4252 "$ref": "ListLocationsResponse"
4253 },
4254 "parameters": {
4255 "parent": {
4256 "description": "Required. Contains the name of the resource requested. Specified in the format `projects/*`.",
4257 "type": "string",
4258 "required": true,
4259 "pattern": "^projects/[^/]+$",
4260 "location": "path"
4261 }
4262 },
4263 "path": "v1beta1/{+parent}/locations",
4264 "scopes": [
4265 "https://www.googleapis.com/auth/cloud-platform"
4266 ],
4267 "httpMethod": "GET"
4268 }
4269 }
4270 },
4271 "zones": {
4272 "methods": {
4273 "getServerconfig": {
4274 "id": "container.projects.zones.getServerconfig",
4275 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/serverconfig",
4276 "response": {
4277 "$ref": "ServerConfig"
4278 },
4279 "httpMethod": "GET",
4280 "scopes": [
4281 "https://www.googleapis.com/auth/cloud-platform"
4282 ],
4283 "parameters": {
4284 "projectId": {
4285 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
4286 "location": "path",
4287 "type": "string",
4288 "required": true
4289 },
4290 "zone": {
4291 "required": true,
4292 "type": "string",
4293 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) to return operations for. This field has been deprecated and replaced by the name field.",
4294 "location": "path"
4295 },
4296 "name": {
4297 "location": "query",
4298 "type": "string",
4299 "description": "The name (project and location) of the server config to get, specified in the format `projects/*/locations/*`."
4300 }
4301 },
4302 "description": "Returns configuration info about the Google Kubernetes Engine service.",
4303 "parameterOrder": [
4304 "projectId",
4305 "zone"
4306 ],
4307 "path": "v1beta1/projects/{projectId}/zones/{zone}/serverconfig"
4308 }
4309 },
4310 "resources": {
4311 "operations": {
4312 "methods": {
4313 "get": {
4314 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/operations/{operationId}",
4315 "parameters": {
4316 "name": {
4317 "location": "query",
4318 "description": "The name (project, location, operation id) of the operation to get. Specified in the format `projects/*/locations/*/operations/*`.",
4319 "type": "string"
4320 },
4321 "projectId": {
4322 "type": "string",
4323 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
4324 "required": true,
4325 "location": "path"
4326 },
4327 "operationId": {
4328 "type": "string",
4329 "required": true,
4330 "description": "Required. Deprecated. The server-assigned `name` of the operation. This field has been deprecated and replaced by the name field.",
4331 "location": "path"
4332 },
4333 "zone": {
4334 "required": true,
4335 "type": "string",
4336 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field.",
4337 "location": "path"
4338 }
4339 },
4340 "description": "Gets the specified operation.",
4341 "httpMethod": "GET",
4342 "scopes": [
4343 "https://www.googleapis.com/auth/cloud-platform"
4344 ],
4345 "id": "container.projects.zones.operations.get",
4346 "response": {
4347 "$ref": "Operation"
4348 },
4349 "path": "v1beta1/projects/{projectId}/zones/{zone}/operations/{operationId}",
4350 "parameterOrder": [
4351 "projectId",
4352 "zone",
4353 "operationId"
4354 ]
4355 },
4356 "cancel": {
4357 "request": {
4358 "$ref": "CancelOperationRequest"
4359 },
4360 "path": "v1beta1/projects/{projectId}/zones/{zone}/operations/{operationId}:cancel",
4361 "scopes": [
4362 "https://www.googleapis.com/auth/cloud-platform"
4363 ],
4364 "response": {
4365 "$ref": "Empty"
4366 },
4367 "httpMethod": "POST",
4368 "parameters": {
4369 "zone": {
4370 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation resides. This field has been deprecated and replaced by the name field.",
4371 "type": "string",
4372 "location": "path",
4373 "required": true
4374 },
4375 "operationId": {
4376 "location": "path",
4377 "type": "string",
4378 "required": true,
4379 "description": "Required. Deprecated. The server-assigned `name` of the operation. This field has been deprecated and replaced by the name field."
4380 },
4381 "projectId": {
4382 "required": true,
4383 "location": "path",
4384 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
4385 "type": "string"
4386 }
4387 },
4388 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/operations/{operationId}:cancel",
4389 "description": "Cancels the specified operation.",
4390 "id": "container.projects.zones.operations.cancel",
4391 "parameterOrder": [
4392 "projectId",
4393 "zone",
4394 "operationId"
4395 ]
4396 },
4397 "list": {
4398 "description": "Lists all operations in a project in the specified zone or all zones.",
4399 "id": "container.projects.zones.operations.list",
4400 "parameters": {
4401 "projectId": {
4402 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the parent field.",
4403 "required": true,
4404 "location": "path",
4405 "type": "string"
4406 },
4407 "parent": {
4408 "location": "query",
4409 "type": "string",
4410 "description": "The parent (project and location) where the operations will be listed. Specified in the format `projects/*/locations/*`. Location \"-\" matches all zones and all regions."
4411 },
4412 "zone": {
4413 "type": "string",
4414 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) to return operations for, or `-` for all zones. This field has been deprecated and replaced by the parent field.",
4415 "required": true,
4416 "location": "path"
4417 }
4418 },
4419 "scopes": [
4420 "https://www.googleapis.com/auth/cloud-platform"
4421 ],
4422 "response": {
4423 "$ref": "ListOperationsResponse"
4424 },
4425 "parameterOrder": [
4426 "projectId",
4427 "zone"
4428 ],
4429 "httpMethod": "GET",
4430 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/operations",
4431 "path": "v1beta1/projects/{projectId}/zones/{zone}/operations"
4432 }
4433 }
4434 },
4435 "clusters": {
4436 "resources": {
4437 "nodePools": {
4438 "methods": {
4439 "autoscaling": {
4440 "response": {
4441 "$ref": "Operation"
4442 },
4443 "parameters": {
4444 "nodePoolId": {
4445 "description": "Required. Deprecated. The name of the node pool to upgrade. This field has been deprecated and replaced by the name field.",
4446 "location": "path",
4447 "required": true,
4448 "type": "string"
4449 },
4450 "projectId": {
4451 "type": "string",
4452 "required": true,
4453 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
4454 "location": "path"
4455 },
4456 "clusterId": {
4457 "location": "path",
4458 "type": "string",
4459 "required": true,
4460 "description": "Required. Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field."
4461 },
4462 "zone": {
4463 "location": "path",
4464 "required": true,
4465 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field.",
4466 "type": "string"
4467 }
4468 },
4469 "httpMethod": "POST",
4470 "description": "Sets the autoscaling settings of a specific node pool.",
4471 "request": {
4472 "$ref": "SetNodePoolAutoscalingRequest"
4473 },
4474 "scopes": [
4475 "https://www.googleapis.com/auth/cloud-platform"
4476 ],
4477 "id": "container.projects.zones.clusters.nodePools.autoscaling",
4478 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}/autoscaling",
4479 "parameterOrder": [
4480 "projectId",
4481 "zone",
4482 "clusterId",
4483 "nodePoolId"
4484 ],
4485 "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}/autoscaling"
4486 },
4487 "setSize": {
4488 "parameterOrder": [
4489 "projectId",
4490 "zone",
4491 "clusterId",
4492 "nodePoolId"
4493 ],
4494 "parameters": {
4495 "zone": {
4496 "location": "path",
4497 "type": "string",
4498 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field.",
4499 "required": true
4500 },
4501 "nodePoolId": {
4502 "location": "path",
4503 "required": true,
4504 "description": "Required. Deprecated. The name of the node pool to update. This field has been deprecated and replaced by the name field.",
4505 "type": "string"
4506 },
4507 "clusterId": {
4508 "location": "path",
4509 "required": true,
4510 "description": "Required. Deprecated. The name of the cluster to update. This field has been deprecated and replaced by the name field.",
4511 "type": "string"
4512 },
4513 "projectId": {
4514 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
4515 "type": "string",
4516 "location": "path",
4517 "required": true
4518 }
4519 },
4520 "id": "container.projects.zones.clusters.nodePools.setSize",
4521 "httpMethod": "POST",
4522 "response": {
4523 "$ref": "Operation"
4524 },
4525 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}/setSize",
4526 "scopes": [
4527 "https://www.googleapis.com/auth/cloud-platform"
4528 ],
4529 "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}/setSize",
4530 "description": "Sets the size for a specific node pool.",
4531 "request": {
4532 "$ref": "SetNodePoolSizeRequest"
4533 }
4534 },
4535 "delete": {
4536 "httpMethod": "DELETE",
4537 "response": {
4538 "$ref": "Operation"
4539 },
4540 "scopes": [
4541 "https://www.googleapis.com/auth/cloud-platform"
4542 ],
4543 "parameterOrder": [
4544 "projectId",
4545 "zone",
4546 "clusterId",
4547 "nodePoolId"
4548 ],
4549 "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}",
4550 "description": "Deletes a node pool from a cluster.",
4551 "parameters": {
4552 "nodePoolId": {
4553 "location": "path",
4554 "description": "Required. Deprecated. The name of the node pool to delete. This field has been deprecated and replaced by the name field.",
4555 "type": "string",
4556 "required": true
4557 },
4558 "zone": {
4559 "location": "path",
4560 "type": "string",
4561 "required": true,
4562 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field."
4563 },
4564 "clusterId": {
4565 "description": "Required. Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field.",
4566 "required": true,
4567 "location": "path",
4568 "type": "string"
4569 },
4570 "name": {
4571 "description": "The name (project, location, cluster, node pool id) of the node pool to delete. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`.",
4572 "location": "query",
4573 "type": "string"
4574 },
4575 "projectId": {
4576 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://developers.google.com/console/help/new/#projectnumber). This field has been deprecated and replaced by the name field.",
4577 "required": true,
4578 "location": "path",
4579 "type": "string"
4580 }
4581 },
4582 "id": "container.projects.zones.clusters.nodePools.delete",
4583 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}"
4584 },
4585 "create": {
4586 "parameterOrder": [
4587 "projectId",
4588 "zone",
4589 "clusterId"
4590 ],
4591 "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools",
4592 "request": {
4593 "$ref": "CreateNodePoolRequest"
4594 },
4595 "id": "container.projects.zones.clusters.nodePools.create",
4596 "description": "Creates a node pool for a cluster.",
4597 "httpMethod": "POST",
4598 "parameters": {
4599 "projectId": {
4600 "required": true,
4601 "location": "path",
4602 "type": "string",
4603 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://developers.google.com/console/help/new/#projectnumber). This field has been deprecated and replaced by the parent field."
4604 },
4605 "clusterId": {
4606 "location": "path",
4607 "description": "Required. Deprecated. The name of the cluster. This field has been deprecated and replaced by the parent field.",
4608 "type": "string",
4609 "required": true
4610 },
4611 "zone": {
4612 "required": true,
4613 "location": "path",
4614 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the parent field.",
4615 "type": "string"
4616 }
4617 },
4618 "scopes": [
4619 "https://www.googleapis.com/auth/cloud-platform"
4620 ],
4621 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools",
4622 "response": {
4623 "$ref": "Operation"
4624 }
4625 },
4626 "get": {
4627 "id": "container.projects.zones.clusters.nodePools.get",
4628 "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}",
4629 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}",
4630 "description": "Retrieves the requested node pool.",
4631 "scopes": [
4632 "https://www.googleapis.com/auth/cloud-platform"
4633 ],
4634 "httpMethod": "GET",
4635 "response": {
4636 "$ref": "NodePool"
4637 },
4638 "parameterOrder": [
4639 "projectId",
4640 "zone",
4641 "clusterId",
4642 "nodePoolId"
4643 ],
4644 "parameters": {
4645 "nodePoolId": {
4646 "description": "Required. Deprecated. The name of the node pool. This field has been deprecated and replaced by the name field.",
4647 "location": "path",
4648 "type": "string",
4649 "required": true
4650 },
4651 "clusterId": {
4652 "required": true,
4653 "location": "path",
4654 "description": "Required. Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field.",
4655 "type": "string"
4656 },
4657 "zone": {
4658 "type": "string",
4659 "location": "path",
4660 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field.",
4661 "required": true
4662 },
4663 "projectId": {
4664 "required": true,
4665 "type": "string",
4666 "location": "path",
4667 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://developers.google.com/console/help/new/#projectnumber). This field has been deprecated and replaced by the name field."
4668 },
4669 "name": {
4670 "type": "string",
4671 "location": "query",
4672 "description": "The name (project, location, cluster, node pool id) of the node pool to get. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`."
4673 }
4674 }
4675 },
4676 "setManagement": {
4677 "parameterOrder": [
4678 "projectId",
4679 "zone",
4680 "clusterId",
4681 "nodePoolId"
4682 ],
4683 "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}/setManagement",
4684 "description": "Sets the NodeManagement options for a node pool.",
4685 "request": {
4686 "$ref": "SetNodePoolManagementRequest"
4687 },
4688 "parameters": {
4689 "projectId": {
4690 "location": "path",
4691 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
4692 "required": true,
4693 "type": "string"
4694 },
4695 "zone": {
4696 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field.",
4697 "type": "string",
4698 "required": true,
4699 "location": "path"
4700 },
4701 "nodePoolId": {
4702 "description": "Required. Deprecated. The name of the node pool to update. This field has been deprecated and replaced by the name field.",
4703 "location": "path",
4704 "type": "string",
4705 "required": true
4706 },
4707 "clusterId": {
4708 "description": "Required. Deprecated. The name of the cluster to update. This field has been deprecated and replaced by the name field.",
4709 "location": "path",
4710 "required": true,
4711 "type": "string"
4712 }
4713 },
4714 "httpMethod": "POST",
4715 "scopes": [
4716 "https://www.googleapis.com/auth/cloud-platform"
4717 ],
4718 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}/setManagement",
4719 "response": {
4720 "$ref": "Operation"
4721 },
4722 "id": "container.projects.zones.clusters.nodePools.setManagement"
4723 },
4724 "update": {
4725 "response": {
4726 "$ref": "Operation"
4727 },
4728 "request": {
4729 "$ref": "UpdateNodePoolRequest"
4730 },
4731 "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}/update",
4732 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}/update",
4733 "parameters": {
4734 "clusterId": {
4735 "required": true,
4736 "description": "Required. Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
4737 "type": "string",
4738 "location": "path"
4739 },
4740 "projectId": {
4741 "required": true,
4742 "location": "path",
4743 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
4744 "type": "string"
4745 },
4746 "zone": {
4747 "required": true,
4748 "type": "string",
4749 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field.",
4750 "location": "path"
4751 },
4752 "nodePoolId": {
4753 "description": "Required. Deprecated. The name of the node pool to upgrade. This field has been deprecated and replaced by the name field.",
4754 "type": "string",
4755 "location": "path",
4756 "required": true
4757 }
4758 },
4759 "description": "Updates the version and/or image type of a specific node pool.",
4760 "parameterOrder": [
4761 "projectId",
4762 "zone",
4763 "clusterId",
4764 "nodePoolId"
4765 ],
4766 "id": "container.projects.zones.clusters.nodePools.update",
4767 "scopes": [
4768 "https://www.googleapis.com/auth/cloud-platform"
4769 ],
4770 "httpMethod": "POST"
4771 },
4772 "list": {
4773 "description": "Lists the node pools for a cluster.",
4774 "parameters": {
4775 "clusterId": {
4776 "type": "string",
4777 "required": true,
4778 "description": "Required. Deprecated. The name of the cluster. This field has been deprecated and replaced by the parent field.",
4779 "location": "path"
4780 },
4781 "projectId": {
4782 "type": "string",
4783 "required": true,
4784 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://developers.google.com/console/help/new/#projectnumber). This field has been deprecated and replaced by the parent field.",
4785 "location": "path"
4786 },
4787 "zone": {
4788 "type": "string",
4789 "required": true,
4790 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the parent field.",
4791 "location": "path"
4792 },
4793 "parent": {
4794 "location": "query",
4795 "description": "The parent (project, location, cluster id) where the node pools will be listed. Specified in the format `projects/*/locations/*/clusters/*`.",
4796 "type": "string"
4797 }
4798 },
4799 "scopes": [
4800 "https://www.googleapis.com/auth/cloud-platform"
4801 ],
4802 "parameterOrder": [
4803 "projectId",
4804 "zone",
4805 "clusterId"
4806 ],
4807 "httpMethod": "GET",
4808 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools",
4809 "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools",
4810 "response": {
4811 "$ref": "ListNodePoolsResponse"
4812 },
4813 "id": "container.projects.zones.clusters.nodePools.list"
4814 },
4815 "rollback": {
4816 "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}:rollback",
4817 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}:rollback",
4818 "parameters": {
4819 "projectId": {
4820 "required": true,
4821 "location": "path",
4822 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
4823 "type": "string"
4824 },
4825 "zone": {
4826 "location": "path",
4827 "type": "string",
4828 "required": true,
4829 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field."
4830 },
4831 "nodePoolId": {
4832 "location": "path",
4833 "description": "Required. Deprecated. The name of the node pool to rollback. This field has been deprecated and replaced by the name field.",
4834 "required": true,
4835 "type": "string"
4836 },
4837 "clusterId": {
4838 "type": "string",
4839 "description": "Required. Deprecated. The name of the cluster to rollback. This field has been deprecated and replaced by the name field.",
4840 "location": "path",
4841 "required": true
4842 }
4843 },
4844 "description": "Rolls back a previously Aborted or Failed NodePool upgrade. This makes no changes if the last upgrade successfully completed.",
4845 "httpMethod": "POST",
4846 "response": {
4847 "$ref": "Operation"
4848 },
4849 "parameterOrder": [
4850 "projectId",
4851 "zone",
4852 "clusterId",
4853 "nodePoolId"
4854 ],
4855 "id": "container.projects.zones.clusters.nodePools.rollback",
4856 "scopes": [
4857 "https://www.googleapis.com/auth/cloud-platform"
4858 ],
4859 "request": {
4860 "$ref": "RollbackNodePoolUpgradeRequest"
4861 }
4862 }
4863 }
4864 }
4865 },
4866 "methods": {
4867 "get": {
4868 "scopes": [
4869 "https://www.googleapis.com/auth/cloud-platform"
4870 ],
4871 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}",
4872 "response": {
4873 "$ref": "Cluster"
4874 },
4875 "id": "container.projects.zones.clusters.get",
4876 "httpMethod": "GET",
4877 "parameterOrder": [
4878 "projectId",
4879 "zone",
4880 "clusterId"
4881 ],
4882 "description": "Gets the details for a specific cluster.",
4883 "parameters": {
4884 "name": {
4885 "description": "The name (project, location, cluster) of the cluster to retrieve. Specified in the format `projects/*/locations/*/clusters/*`.",
4886 "type": "string",
4887 "location": "query"
4888 },
4889 "zone": {
4890 "location": "path",
4891 "type": "string",
4892 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field.",
4893 "required": true
4894 },
4895 "clusterId": {
4896 "type": "string",
4897 "location": "path",
4898 "description": "Required. Deprecated. The name of the cluster to retrieve. This field has been deprecated and replaced by the name field.",
4899 "required": true
4900 },
4901 "projectId": {
4902 "type": "string",
4903 "location": "path",
4904 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
4905 "required": true
4906 }
4907 },
4908 "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}"
4909 },
4910 "setMaintenancePolicy": {
4911 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:setMaintenancePolicy",
4912 "parameters": {
4913 "projectId": {
4914 "type": "string",
4915 "location": "path",
4916 "required": true,
4917 "description": "Required. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840)."
4918 },
4919 "zone": {
4920 "type": "string",
4921 "location": "path",
4922 "required": true,
4923 "description": "Required. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides."
4924 },
4925 "clusterId": {
4926 "type": "string",
4927 "description": "Required. The name of the cluster to update.",
4928 "location": "path",
4929 "required": true
4930 }
4931 },
4932 "scopes": [
4933 "https://www.googleapis.com/auth/cloud-platform"
4934 ],
4935 "description": "Sets the maintenance policy for a cluster.",
4936 "id": "container.projects.zones.clusters.setMaintenancePolicy",
4937 "response": {
4938 "$ref": "Operation"
4939 },
4940 "request": {
4941 "$ref": "SetMaintenancePolicyRequest"
4942 },
4943 "httpMethod": "POST",
4944 "parameterOrder": [
4945 "projectId",
4946 "zone",
4947 "clusterId"
4948 ],
4949 "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:setMaintenancePolicy"
4950 },
4951 "delete": {
4952 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}",
4953 "description": "Deletes the cluster, including the Kubernetes endpoint and all worker nodes. Firewalls and routes that were configured during cluster creation are also deleted. Other Google Compute Engine resources that might be in use by the cluster, such as load balancer resources, are not deleted if they weren't present when the cluster was initially created.",
4954 "id": "container.projects.zones.clusters.delete",
4955 "parameterOrder": [
4956 "projectId",
4957 "zone",
4958 "clusterId"
4959 ],
4960 "scopes": [
4961 "https://www.googleapis.com/auth/cloud-platform"
4962 ],
4963 "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}",
4964 "parameters": {
4965 "clusterId": {
4966 "required": true,
4967 "description": "Required. Deprecated. The name of the cluster to delete. This field has been deprecated and replaced by the name field.",
4968 "location": "path",
4969 "type": "string"
4970 },
4971 "zone": {
4972 "location": "path",
4973 "required": true,
4974 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field.",
4975 "type": "string"
4976 },
4977 "name": {
4978 "location": "query",
4979 "type": "string",
4980 "description": "The name (project, location, cluster) of the cluster to delete. Specified in the format `projects/*/locations/*/clusters/*`."
4981 },
4982 "projectId": {
4983 "type": "string",
4984 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
4985 "location": "path",
4986 "required": true
4987 }
4988 },
4989 "httpMethod": "DELETE",
4990 "response": {
4991 "$ref": "Operation"
4992 }
4993 },
4994 "logging": {
4995 "description": "Sets the logging service for a specific cluster.",
4996 "parameters": {
4997 "projectId": {
4998 "location": "path",
4999 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
5000 "required": true,
5001 "type": "string"
5002 },
5003 "clusterId": {
5004 "location": "path",
5005 "required": true,
5006 "description": "Required. Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
5007 "type": "string"
5008 },
5009 "zone": {
5010 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field.",
5011 "type": "string",
5012 "required": true,
5013 "location": "path"
5014 }
5015 },
5016 "httpMethod": "POST",
5017 "response": {
5018 "$ref": "Operation"
5019 },
5020 "parameterOrder": [
5021 "projectId",
5022 "zone",
5023 "clusterId"
5024 ],
5025 "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/logging",
5026 "id": "container.projects.zones.clusters.logging",
5027 "request": {
5028 "$ref": "SetLoggingServiceRequest"
5029 },
5030 "scopes": [
5031 "https://www.googleapis.com/auth/cloud-platform"
5032 ],
5033 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/logging"
5034 },
5035 "completeIpRotation": {
5036 "response": {
5037 "$ref": "Operation"
5038 },
5039 "httpMethod": "POST",
5040 "scopes": [
5041 "https://www.googleapis.com/auth/cloud-platform"
5042 ],
5043 "id": "container.projects.zones.clusters.completeIpRotation",
5044 "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:completeIpRotation",
5045 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:completeIpRotation",
5046 "parameters": {
5047 "clusterId": {
5048 "type": "string",
5049 "location": "path",
5050 "description": "Required. Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field.",
5051 "required": true
5052 },
5053 "projectId": {
5054 "type": "string",
5055 "required": true,
5056 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://developers.google.com/console/help/new/#projectnumber). This field has been deprecated and replaced by the name field.",
5057 "location": "path"
5058 },
5059 "zone": {
5060 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field.",
5061 "type": "string",
5062 "required": true,
5063 "location": "path"
5064 }
5065 },
5066 "request": {
5067 "$ref": "CompleteIPRotationRequest"
5068 },
5069 "parameterOrder": [
5070 "projectId",
5071 "zone",
5072 "clusterId"
5073 ],
5074 "description": "Completes master IP rotation."
5075 },
5076 "addons": {
5077 "parameterOrder": [
5078 "projectId",
5079 "zone",
5080 "clusterId"
5081 ],
5082 "description": "Sets the addons for a specific cluster.",
5083 "request": {
5084 "$ref": "SetAddonsConfigRequest"
5085 },
5086 "id": "container.projects.zones.clusters.addons",
5087 "httpMethod": "POST",
5088 "scopes": [
5089 "https://www.googleapis.com/auth/cloud-platform"
5090 ],
5091 "parameters": {
5092 "clusterId": {
5093 "type": "string",
5094 "required": true,
5095 "description": "Required. Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
5096 "location": "path"
5097 },
5098 "projectId": {
5099 "required": true,
5100 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
5101 "location": "path",
5102 "type": "string"
5103 },
5104 "zone": {
5105 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field.",
5106 "type": "string",
5107 "required": true,
5108 "location": "path"
5109 }
5110 },
5111 "response": {
5112 "$ref": "Operation"
5113 },
5114 "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/addons",
5115 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/addons"
5116 },
5117 "startIpRotation": {
5118 "scopes": [
5119 "https://www.googleapis.com/auth/cloud-platform"
5120 ],
5121 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:startIpRotation",
5122 "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:startIpRotation",
5123 "request": {
5124 "$ref": "StartIPRotationRequest"
5125 },
5126 "description": "Starts master IP rotation.",
5127 "parameterOrder": [
5128 "projectId",
5129 "zone",
5130 "clusterId"
5131 ],
5132 "parameters": {
5133 "clusterId": {
5134 "type": "string",
5135 "required": true,
5136 "description": "Required. Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field.",
5137 "location": "path"
5138 },
5139 "zone": {
5140 "location": "path",
5141 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field.",
5142 "required": true,
5143 "type": "string"
5144 },
5145 "projectId": {
5146 "type": "string",
5147 "location": "path",
5148 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://developers.google.com/console/help/new/#projectnumber). This field has been deprecated and replaced by the name field.",
5149 "required": true
5150 }
5151 },
5152 "response": {
5153 "$ref": "Operation"
5154 },
5155 "id": "container.projects.zones.clusters.startIpRotation",
5156 "httpMethod": "POST"
5157 },
5158 "monitoring": {
5159 "id": "container.projects.zones.clusters.monitoring",
5160 "response": {
5161 "$ref": "Operation"
5162 },
5163 "description": "Sets the monitoring service for a specific cluster.",
5164 "scopes": [
5165 "https://www.googleapis.com/auth/cloud-platform"
5166 ],
5167 "parameterOrder": [
5168 "projectId",
5169 "zone",
5170 "clusterId"
5171 ],
5172 "parameters": {
5173 "projectId": {
5174 "location": "path",
5175 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
5176 "required": true,
5177 "type": "string"
5178 },
5179 "zone": {
5180 "location": "path",
5181 "required": true,
5182 "type": "string",
5183 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field."
5184 },
5185 "clusterId": {
5186 "description": "Required. Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
5187 "location": "path",
5188 "required": true,
5189 "type": "string"
5190 }
5191 },
5192 "httpMethod": "POST",
5193 "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/monitoring",
5194 "request": {
5195 "$ref": "SetMonitoringServiceRequest"
5196 },
5197 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/monitoring"
5198 },
5199 "legacyAbac": {
5200 "parameters": {
5201 "clusterId": {
5202 "type": "string",
5203 "location": "path",
5204 "required": true,
5205 "description": "Required. Deprecated. The name of the cluster to update. This field has been deprecated and replaced by the name field."
5206 },
5207 "projectId": {
5208 "type": "string",
5209 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
5210 "required": true,
5211 "location": "path"
5212 },
5213 "zone": {
5214 "required": true,
5215 "location": "path",
5216 "type": "string",
5217 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field."
5218 }
5219 },
5220 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/legacyAbac",
5221 "description": "Enables or disables the ABAC authorization mechanism on a cluster.",
5222 "parameterOrder": [
5223 "projectId",
5224 "zone",
5225 "clusterId"
5226 ],
5227 "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/legacyAbac",
5228 "scopes": [
5229 "https://www.googleapis.com/auth/cloud-platform"
5230 ],
5231 "httpMethod": "POST",
5232 "response": {
5233 "$ref": "Operation"
5234 },
5235 "id": "container.projects.zones.clusters.legacyAbac",
5236 "request": {
5237 "$ref": "SetLegacyAbacRequest"
5238 }
5239 },
5240 "setMasterAuth": {
5241 "response": {
5242 "$ref": "Operation"
5243 },
5244 "parameters": {
5245 "clusterId": {
5246 "location": "path",
5247 "description": "Required. Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
5248 "required": true,
5249 "type": "string"
5250 },
5251 "zone": {
5252 "type": "string",
5253 "required": true,
5254 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field.",
5255 "location": "path"
5256 },
5257 "projectId": {
5258 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
5259 "type": "string",
5260 "location": "path",
5261 "required": true
5262 }
5263 },
5264 "parameterOrder": [
5265 "projectId",
5266 "zone",
5267 "clusterId"
5268 ],
5269 "scopes": [
5270 "https://www.googleapis.com/auth/cloud-platform"
5271 ],
5272 "id": "container.projects.zones.clusters.setMasterAuth",
5273 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:setMasterAuth",
5274 "httpMethod": "POST",
5275 "description": "Sets master auth materials. Currently supports changing the admin password or a specific cluster, either via password generation or explicitly setting the password.",
5276 "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:setMasterAuth",
5277 "request": {
5278 "$ref": "SetMasterAuthRequest"
5279 }
5280 },
5281 "resourceLabels": {
5282 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/resourceLabels",
5283 "scopes": [
5284 "https://www.googleapis.com/auth/cloud-platform"
5285 ],
5286 "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/resourceLabels",
5287 "id": "container.projects.zones.clusters.resourceLabels",
5288 "description": "Sets labels on a cluster.",
5289 "parameterOrder": [
5290 "projectId",
5291 "zone",
5292 "clusterId"
5293 ],
5294 "httpMethod": "POST",
5295 "request": {
5296 "$ref": "SetLabelsRequest"
5297 },
5298 "response": {
5299 "$ref": "Operation"
5300 },
5301 "parameters": {
5302 "zone": {
5303 "required": true,
5304 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field.",
5305 "location": "path",
5306 "type": "string"
5307 },
5308 "projectId": {
5309 "required": true,
5310 "type": "string",
5311 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://developers.google.com/console/help/new/#projectnumber). This field has been deprecated and replaced by the name field.",
5312 "location": "path"
5313 },
5314 "clusterId": {
5315 "required": true,
5316 "location": "path",
5317 "type": "string",
5318 "description": "Required. Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field."
5319 }
5320 }
5321 },
5322 "update": {
5323 "parameterOrder": [
5324 "projectId",
5325 "zone",
5326 "clusterId"
5327 ],
5328 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}",
5329 "description": "Updates the settings for a specific cluster.",
5330 "scopes": [
5331 "https://www.googleapis.com/auth/cloud-platform"
5332 ],
5333 "id": "container.projects.zones.clusters.update",
5334 "request": {
5335 "$ref": "UpdateClusterRequest"
5336 },
5337 "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}",
5338 "parameters": {
5339 "projectId": {
5340 "type": "string",
5341 "location": "path",
5342 "required": true,
5343 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field."
5344 },
5345 "clusterId": {
5346 "description": "Required. Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
5347 "type": "string",
5348 "location": "path",
5349 "required": true
5350 },
5351 "zone": {
5352 "type": "string",
5353 "location": "path",
5354 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field.",
5355 "required": true
5356 }
5357 },
5358 "response": {
5359 "$ref": "Operation"
5360 },
5361 "httpMethod": "PUT"
5362 },
5363 "setNetworkPolicy": {
5364 "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:setNetworkPolicy",
5365 "request": {
5366 "$ref": "SetNetworkPolicyRequest"
5367 },
5368 "parameters": {
5369 "projectId": {
5370 "required": true,
5371 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://developers.google.com/console/help/new/#projectnumber). This field has been deprecated and replaced by the name field.",
5372 "location": "path",
5373 "type": "string"
5374 },
5375 "clusterId": {
5376 "type": "string",
5377 "location": "path",
5378 "required": true,
5379 "description": "Required. Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field."
5380 },
5381 "zone": {
5382 "type": "string",
5383 "required": true,
5384 "location": "path",
5385 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field."
5386 }
5387 },
5388 "parameterOrder": [
5389 "projectId",
5390 "zone",
5391 "clusterId"
5392 ],
5393 "scopes": [
5394 "https://www.googleapis.com/auth/cloud-platform"
5395 ],
5396 "response": {
5397 "$ref": "Operation"
5398 },
5399 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:setNetworkPolicy",
5400 "httpMethod": "POST",
5401 "id": "container.projects.zones.clusters.setNetworkPolicy",
5402 "description": "Enables or disables Network Policy for a cluster."
5403 },
5404 "master": {
5405 "response": {
5406 "$ref": "Operation"
5407 },
5408 "id": "container.projects.zones.clusters.master",
5409 "httpMethod": "POST",
5410 "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/master",
5411 "parameters": {
5412 "zone": {
5413 "required": true,
5414 "type": "string",
5415 "location": "path",
5416 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field."
5417 },
5418 "clusterId": {
5419 "type": "string",
5420 "description": "Required. Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
5421 "required": true,
5422 "location": "path"
5423 },
5424 "projectId": {
5425 "required": true,
5426 "location": "path",
5427 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
5428 "type": "string"
5429 }
5430 },
5431 "request": {
5432 "$ref": "UpdateMasterRequest"
5433 },
5434 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/master",
5435 "scopes": [
5436 "https://www.googleapis.com/auth/cloud-platform"
5437 ],
5438 "description": "Updates the master for a specific cluster.",
5439 "parameterOrder": [
5440 "projectId",
5441 "zone",
5442 "clusterId"
5443 ]
5444 },
5445 "locations": {
5446 "request": {
5447 "$ref": "SetLocationsRequest"
5448 },
5449 "scopes": [
5450 "https://www.googleapis.com/auth/cloud-platform"
5451 ],
5452 "id": "container.projects.zones.clusters.locations",
5453 "httpMethod": "POST",
5454 "description": "Sets the locations for a specific cluster. Deprecated. Use [projects.locations.clusters.update](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters/update) instead.",
5455 "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/locations",
5456 "parameterOrder": [
5457 "projectId",
5458 "zone",
5459 "clusterId"
5460 ],
5461 "response": {
5462 "$ref": "Operation"
5463 },
5464 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/locations",
5465 "parameters": {
5466 "clusterId": {
5467 "description": "Required. Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
5468 "type": "string",
5469 "location": "path",
5470 "required": true
5471 },
5472 "projectId": {
5473 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
5474 "location": "path",
5475 "type": "string",
5476 "required": true
5477 },
5478 "zone": {
5479 "location": "path",
5480 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the name field.",
5481 "required": true,
5482 "type": "string"
5483 }
5484 }
5485 },
5486 "create": {
5487 "response": {
5488 "$ref": "Operation"
5489 },
5490 "httpMethod": "POST",
5491 "parameters": {
5492 "projectId": {
5493 "required": true,
5494 "type": "string",
5495 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the parent field.",
5496 "location": "path"
5497 },
5498 "zone": {
5499 "location": "path",
5500 "type": "string",
5501 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the parent field.",
5502 "required": true
5503 }
5504 },
5505 "request": {
5506 "$ref": "CreateClusterRequest"
5507 },
5508 "id": "container.projects.zones.clusters.create",
5509 "parameterOrder": [
5510 "projectId",
5511 "zone"
5512 ],
5513 "scopes": [
5514 "https://www.googleapis.com/auth/cloud-platform"
5515 ],
5516 "description": "Creates a cluster, consisting of the specified number and type of Google Compute Engine instances. By default, the cluster is created in the project's [default network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks). One firewall is added for the cluster. After cluster creation, the Kubelet creates routes for each node to allow the containers on that node to communicate with all other instances in the cluster. Finally, an entry is added to the project's global metadata indicating which CIDR range the cluster is using.",
5517 "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters",
5518 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters"
5519 },
5520 "list": {
5521 "id": "container.projects.zones.clusters.list",
5522 "response": {
5523 "$ref": "ListClustersResponse"
5524 },
5525 "parameters": {
5526 "projectId": {
5527 "type": "string",
5528 "location": "path",
5529 "required": true,
5530 "description": "Required. Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the parent field."
5531 },
5532 "zone": {
5533 "location": "path",
5534 "required": true,
5535 "type": "string",
5536 "description": "Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides, or \"-\" for all zones. This field has been deprecated and replaced by the parent field."
5537 },
5538 "parent": {
5539 "description": "The parent (project and location) where the clusters will be listed. Specified in the format `projects/*/locations/*`. Location \"-\" matches all zones and all regions.",
5540 "location": "query",
5541 "type": "string"
5542 }
5543 },
5544 "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters",
5545 "scopes": [
5546 "https://www.googleapis.com/auth/cloud-platform"
5547 ],
5548 "description": "Lists all clusters owned by a project in either the specified zone or all zones.",
5549 "parameterOrder": [
5550 "projectId",
5551 "zone"
5552 ],
5553 "httpMethod": "GET",
5554 "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters"
5555 }
5556 }
5557 }
5558 }
5559 },
5560 "aggregated": {
5561 "resources": {
5562 "usableSubnetworks": {
5563 "methods": {
5564 "list": {
5565 "description": "Lists subnetworks that can be used for creating clusters in a project.",
5566 "parameterOrder": [
5567 "parent"
5568 ],
5569 "scopes": [
5570 "https://www.googleapis.com/auth/cloud-platform"
5571 ],
5572 "response": {
5573 "$ref": "ListUsableSubnetworksResponse"
5574 },
5575 "flatPath": "v1beta1/projects/{projectsId}/aggregated/usableSubnetworks",
5576 "parameters": {
5577 "pageToken": {
5578 "description": "Specifies a page token to use. Set this to the nextPageToken returned by previous list requests to get the next page of results.",
5579 "location": "query",
5580 "type": "string"
5581 },
5582 "pageSize": {
5583 "type": "integer",
5584 "description": "The max number of results per page that should be returned. If the number of available results is larger than `page_size`, a `next_page_token` is returned which can be used to get the next page of results in subsequent requests. Acceptable values are 0 to 500, inclusive. (Default: 500)",
5585 "format": "int32",
5586 "location": "query"
5587 },
5588 "parent": {
5589 "description": "Required. The parent project where subnetworks are usable. Specified in the format `projects/*`.",
5590 "pattern": "^projects/[^/]+$",
5591 "type": "string",
5592 "required": true,
5593 "location": "path"
5594 },
5595 "filter": {
5596 "location": "query",
5597 "type": "string",
5598 "description": "Filtering currently only supports equality on the networkProjectId and must be in the form: \"networkProjectId=[PROJECTID]\", where `networkProjectId` is the project which owns the listed subnetworks. This defaults to the parent project ID."
5599 }
5600 },
5601 "path": "v1beta1/{+parent}/aggregated/usableSubnetworks",
5602 "id": "container.projects.aggregated.usableSubnetworks.list",
5603 "httpMethod": "GET"
5604 }
5605 }
5606 }
5607 }
5608 }
5609 }
5610 }
5611 },
5612 "ownerName": "Google",
5613 "canonicalName": "Container",
5614 "documentationLink": "https://cloud.google.com/container-engine/",
5615 "name": "container",
5616 "servicePath": "",
5617 "parameters": {
5618 "prettyPrint": {
5619 "location": "query",
5620 "default": "true",
5621 "description": "Returns response with indentations and line breaks.",
5622 "type": "boolean"
5623 },
5624 "quotaUser": {
5625 "location": "query",
5626 "type": "string",
5627 "description": "Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters."
5628 },
5629 "fields": {
5630 "location": "query",
5631 "type": "string",
5632 "description": "Selector specifying which fields to include in a partial response."
5633 },
5634 "access_token": {
5635 "location": "query",
5636 "type": "string",
5637 "description": "OAuth access token."
5638 },
5639 "upload_protocol": {
5640 "location": "query",
5641 "description": "Upload protocol for media (e.g. \"raw\", \"multipart\").",
5642 "type": "string"
5643 },
5644 "callback": {
5645 "location": "query",
5646 "description": "JSONP",
5647 "type": "string"
5648 },
5649 "$.xgafv": {
5650 "type": "string",
5651 "enumDescriptions": [
5652 "v1 error format",
5653 "v2 error format"
5654 ],
5655 "enum": [
5656 "1",
5657 "2"
5658 ],
5659 "description": "V1 error format.",
5660 "location": "query"
5661 },
5662 "key": {
5663 "type": "string",
5664 "description": "API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.",
5665 "location": "query"
5666 },
5667 "alt": {
5668 "type": "string",
5669 "location": "query",
5670 "description": "Data format for response.",
5671 "enum": [
5672 "json",
5673 "media",
5674 "proto"
5675 ],
5676 "enumDescriptions": [
5677 "Responses with Content-Type of application/json",
5678 "Media download with context-dependent Content-Type",
5679 "Responses with Content-Type of application/x-protobuf"
5680 ],
5681 "default": "json"
5682 },
5683 "uploadType": {
5684 "type": "string",
5685 "description": "Legacy upload protocol for media (e.g. \"media\", \"multipart\").",
5686 "location": "query"
5687 },
5688 "oauth_token": {
5689 "description": "OAuth 2.0 token for the current user.",
5690 "location": "query",
5691 "type": "string"
5692 }
5693 },
5694 "description": "Builds and manages container-based applications, powered by the open source Kubernetes technology.",
5695 "revision": "20201029",
5696 "fullyEncodeReservedExpansion": true,
5697 "baseUrl": "https://container.googleapis.com/"
5698}