storage_pools_backup_config
Creates, updates, deletes, gets or lists a storage_pools_backup_config resource.
Overview
| Name | storage_pools_backup_config |
| Type | Resource |
| Id | google.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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
update_backup_config | update | projectsId, locationsId, storagePoolsId | Updates 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.
| Name | Datatype | Description |
|---|---|---|
locationsId | string | |
projectsId | string | |
storagePoolsId | string |
UPDATE examples
- update_backup_config
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;