Skip to content

Commit

Permalink
Promote BackupDR Backup and Data Source to GA (#12435)
Browse files Browse the repository at this point in the history
[upstream:a5b703532272a4c25c473c12dc59764a5408a954]

Signed-off-by: Modular Magician <[email protected]>
  • Loading branch information
modular-magician committed Dec 12, 2024
1 parent a040d9e commit 2ae1319
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .changelog/12435.txt
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.
```
2 changes: 1 addition & 1 deletion google-beta/provider/provider_mmv1_resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,9 @@ var handwrittenDatasources = map[string]*schema.Resource{
"google_apphub_application": apphub.DataSourceGoogleApphubApplication(),
"google_apphub_discovered_service": apphub.DataSourceApphubDiscoveredService(),
"google_backup_dr_management_server": backupdr.DataSourceGoogleCloudBackupDRService(),
"google_backup_dr_backup": backupdr.DataSourceGoogleCloudBackupDRBackup(),
"google_backup_dr_backup_plan_association": backupdr.DataSourceGoogleCloudBackupDRBackupPlanAssociation(),
"google_backup_dr_backup_plan": backupdr.DataSourceGoogleCloudBackupDRBackupPlan(),
"google_backup_dr_backup": backupdr.DataSourceGoogleCloudBackupDRBackup(),
"google_backup_dr_data_source": backupdr.DataSourceGoogleCloudBackupDRDataSource(),
"google_backup_dr_backup_vault": backupdr.DataSourceGoogleCloudBackupDRBackupVault(),
"google_beyondcorp_app_connection": beyondcorp.DataSourceGoogleBeyondcorpAppConnection(),
Expand Down
29 changes: 29 additions & 0 deletions website/docs/d/backup_dr_backup.html.markdown
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.
29 changes: 29 additions & 0 deletions website/docs/d/backup_dr_data_source.html.markdown
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.

0 comments on commit 2ae1319

Please sign in to comment.