Skip to main content

snapshot_settings

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

Overview

Namesnapshot_settings
TypeResource
Idgoogle.compute.snapshot_settings

Fields

NameDatatypeDescription
storageLocationobject

Methods

NameAccessible byRequired ParamsDescription
getSELECTprojectGet snapshot settings.
patchUPDATEprojectPatch 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 }}';