-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
David MICHENEAU
committed
Oct 10, 2023
1 parent
1e546e9
commit 7b2807d
Showing
12 changed files
with
266 additions
and
162 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
```release-note:feature | ||
`resource/cloudavenue_backup` - New resource to manage NetBackup feature. | ||
``` | ||
|
||
```release-note:feature | ||
`datasource/cloudavenue_backup` - New datasource to manage NetBackup feature. | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
--- | ||
page_title: "cloudavenue_backup Data Source - cloudavenue" | ||
subcategory: "Backup" | ||
description: |- | ||
The cloudavenue_backup data source allows you to retrieve information about a backup of NetBackup solution. | ||
--- | ||
|
||
# cloudavenue_backup (Data Source) | ||
|
||
The `cloudavenue_backup` data source allows you to retrieve information about a backup of NetBackup solution. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "cloudavenue_backup" "example" { | ||
type = "vdc" | ||
target_name = data.cloudavenue_vdc.example.name | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `type` (String) Scope of the backup. | ||
|
||
### Optional | ||
|
||
- `id` (Number) The ID of the backup. | ||
- `target_id` (String) The ID of the target. A target can be a VDC, a VApp or a VM. | ||
- `target_name` (String) The name of the target. A target can be a VDC, a VApp or a VM. | ||
|
||
### Read-Only | ||
|
||
- `policies` (Attributes Set) The backup policies of the target. (see [below for nested schema](#nestedatt--policies)) | ||
|
||
<a id="nestedatt--policies"></a> | ||
### Nested Schema for `policies` | ||
|
||
Read-Only: | ||
|
||
- `policy_id` (Number) The ID of the backup policy. | ||
- `policy_name` (String) The name of the backup policy. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
data "cloudavenue_backup" "example" { | ||
type = "vdc" | ||
target_name = data.cloudavenue_vdc.example.name | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.