backup_configs
Creates, updates, deletes, gets or lists a backup_configs resource.
Overview
| Name | backup_configs |
| Type | Resource |
| Id | google.netapp.backup_configs |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | projectsId, locationsId, storagePoolsId | pageSize, orderBy, pageToken, filter | Lists backup configurations for all volumes in an ONTAP-mode Storage Pool. |
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 | |
filter | string | |
orderBy | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT examples
- list
Lists backup configurations for all volumes in an ONTAP-mode Storage Pool.
SELECT
*
FROM google.netapp.backup_configs
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND storagePoolsId = '{{ storagePoolsId }}' -- required
AND pageSize = '{{ pageSize }}'
AND orderBy = '{{ orderBy }}'
AND pageToken = '{{ pageToken }}'
AND filter = '{{ filter }}'
;