Skip to main content

storage_pools_backup_config

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

Overview

Namestorage_pools_backup_config
TypeResource
Idgoogle.netapp.storage_pools_backup_config

Fields

The following fields are returned by SELECT queries:

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

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
update_backup_configupdateprojectsId, locationsId, storagePoolsIdUpdates the backup configuration for an ONTAP-mode volume.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
locationsIdstring
projectsIdstring
storagePoolsIdstring

UPDATE examples

Updates the backup configuration for an ONTAP-mode volume.

UPDATE google.netapp.storage_pools_backup_config
SET
data__volumeUuid = '{{ volumeUuid }}',
data__backupConfig = '{{ backupConfig }}',
data__updateMask = '{{ updateMask }}'
WHERE
projectsId = '{{ projectsId }}' --required
AND locationsId = '{{ locationsId }}' --required
AND storagePoolsId = '{{ storagePoolsId }}' --required
RETURNING
name,
done,
error,
metadata,
response;