Skip to main content

clusters_ons

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

Overview

Nameclusters_ons
TypeResource
Idgoogle.container.clusters_ons

Fields

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

Methods

NameAccessible byRequired ParamsDescription
projects_zones_clusters_addonsINSERTclusterId, projectId, zoneSets the addons for a specific cluster.

INSERT example

Use the following StackQL query and manifest file to create a new clusters_ons resource.

/*+ create */
INSERT INTO google.container.clusters_ons (
clusterId,
projectId,
zone,
projectId,
zone,
clusterId,
addonsConfig,
name
)
SELECT
'{{ clusterId }}',
'{{ projectId }}',
'{{ zone }}',
'{{ projectId }}',
'{{ zone }}',
'{{ clusterId }}',
'{{ addonsConfig }}',
'{{ name }}'
;