Skip to main content

clusters_master

Creates, updates, deletes, gets or lists a clusters_master resource.

Overview

Nameclusters_master
TypeResource
Idgoogle.container.clusters_master

Fields

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

NameAccessible byRequired ParamsDescription
projects_locations_clusters_update_masterUPDATEclustersId, locationsId, projectsIdUpdates the master for a specific cluster.

UPDATE example

Updates a clusters_master resource.

/*+ update */
UPDATE google.container.clusters_master
SET
projectId = '{{ projectId }}',
zone = '{{ zone }}',
clusterId = '{{ clusterId }}',
masterVersion = '{{ masterVersion }}',
name = '{{ name }}'
WHERE
clustersId = '{{ clustersId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';