Skip to main content

backup_configs

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

Overview

Namebackup_configs
TypeResource
Idgoogle.netapp.backup_configs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectprojectsId, locationsId, storagePoolsIdpageSize, orderBy, pageToken, filterLists 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.

NameDatatypeDescription
locationsIdstring
projectsIdstring
storagePoolsIdstring
filterstring
orderBystring
pageSizeinteger (int32)
pageTokenstring

SELECT examples

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 }}'
;