config
Creates, updates, deletes, gets or lists a config
resource.
Overview
Name | config |
Type | Resource |
Id | google.clouddeploy.config |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Name of the configuration. |
defaultSkaffoldVersion | string | Default Skaffold version that is assigned when a Release is created without specifying a Skaffold version. |
supportedVersions | array | All supported versions of Skaffold. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get_config | SELECT | locationsId, projectsId | Gets the configuration for a location. |
SELECT
examples
Gets the configuration for a location.
SELECT
name,
defaultSkaffoldVersion,
supportedVersions
FROM google.clouddeploy.config
WHERE locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';