-
Notifications
You must be signed in to change notification settings - Fork 264
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Promote BackupDR Backup and Data Source to GA (#12435)
[upstream:a5b703532272a4c25c473c12dc59764a5408a954] Signed-off-by: Modular Magician <[email protected]>
- Loading branch information
1 parent
a040d9e
commit 2ae1319
Showing
4 changed files
with
65 additions
and
1 deletion.
There are no files selected for viewing
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,6 @@ | ||
```release-note: enhancement | ||
backupdr: promoted datasource`google_backup_dr_data_source` to ga. | ||
``` | ||
```release-note: enhancement | ||
backupdr: promoted datasource`google_backup_dr_backup` to ga. | ||
``` |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
subcategory: "Backup and DR Backup" | ||
description: |- | ||
Get information about a Backupdr Backup. | ||
--- | ||
|
||
# google_backup_dr_backup | ||
|
||
A Backup and DR Backup. | ||
|
||
## Example Usage | ||
|
||
```hcl | ||
data "google_backup_dr_backup" "foo" { | ||
location = "us-central1" | ||
project = "project-test" | ||
data_source_id = "ds-test" | ||
backup_vault_id = "bv-test" | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
||
* `location` - (Required) The location in which the Backup belongs. | ||
* `project` - (Required) The Google Cloud Project in which the Backup belongs. | ||
* `data_source_id` - (Required) The ID of the Data Source in which the Backup belongs. | ||
* `backup_vault_id` - (Required) The ID of the Backup Vault of the Data Source in which the Backup belongs. |
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,29 @@ | ||
--- | ||
subcategory: "Backup and DR Data Source" | ||
description: |- | ||
Get information about a Backupdr Data Source. | ||
--- | ||
|
||
# google_backup_dr_data_source | ||
|
||
A Backup and DR Data Source. | ||
|
||
## Example Usage | ||
|
||
```hcl | ||
data "google_backup_dr_data_source" "foo" { | ||
location = "us-central1" | ||
project = "project-test" | ||
data_source_id = "ds-test" | ||
backup_vault_id = "bv-test" | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
||
* `location` - (Required) The location in which the Data Source belongs. | ||
* `project` - (Required) The Google Cloud Project in which the Data Source belongs. | ||
* `data_source_id` - (Required) The ID of the Data Source. | ||
* `backup_vault_id` - (Required) The ID of the Backup Vault in which the Data Source belongs. |