snapshot_settings
Creates, updates, deletes, gets or lists a snapshot_settings
resource.
Overview
Name | snapshot_settings |
Type | Resource |
Id | google.compute.snapshot_settings |
Fields
Name | Datatype | Description |
---|---|---|
storageLocation | object |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | project | Get snapshot settings. |
patch | UPDATE | project | Patch snapshot settings. |
SELECT
examples
Get snapshot settings.
SELECT
storageLocation
FROM google.compute.snapshot_settings
WHERE project = '{{ project }}';
UPDATE
example
Updates a snapshot_settings
resource.
/*+ update */
UPDATE google.compute.snapshot_settings
SET
storageLocation = '{{ storageLocation }}'
WHERE
project = '{{ project }}';