Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/17555.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:enhancement
netapp: added `ontap_source` field to `google_netapp_backup` resource (beta)
```
20 changes: 20 additions & 0 deletions website/docs/r/netapp_backup.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,11 @@ The following arguments are supported:
there will be a new snapshot taken to initiate the backup creation.
Format: `projects/{{projectId}}/locations/{{location}}/volumes/{{volumename}}/snapshots/{{snapshotname}}``

* `ontap_source` -
(Optional, [Beta](../guides/provider_versions.html.markdown))
Details of the ONTAP source volume and snapshot.
Structure is [documented below](#nested_ontap_source).

* `project` - (Optional) The ID of the project in which the resource belongs.
If it is not provided, the provider project is used.

Expand All @@ -141,6 +146,21 @@ The following arguments are supported:
When set to "DELETE", deleting the resource is allowed.


<a name="nested_ontap_source"></a>The `ontap_source` block supports:

* `storage_pool` -
(Required)
Name of the storage pool. This must be specified for creating backups for ONTAP mode volumes.
Format: `projects/{{project}}/locations/{{location}}/storagePools/{{storage_pool_id}}`

* `volume_uuid` -
(Required)
The UUID of the ONTAP source volume.

* `snapshot_uuid` -
(Optional)
The UUID of the ONTAP source snapshot.

## Attributes Reference

In addition to the arguments listed above, the following computed attributes are exported:
Expand Down
Loading