Skip to content

Commit

Permalink
restore source resource and data sources docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Haroon-Dweikat-Ntx committed Dec 24, 2024
1 parent a5d739b commit 2e6bbb0
Show file tree
Hide file tree
Showing 2 changed files with 167 additions and 0 deletions.
78 changes: 78 additions & 0 deletions website/docs/d/restore_source_v2.html.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
---
layout: "nutanix"
page_title: "NUTANIX: nutanix_restore_source_v2 "
sidebar_current: "docs-nutanix-restore-source-v2"
description: |-
Retrieves the restore source from the PE cache store and returns the restore source configuration and external identifier to the user.
---

# nutanix_restore_source_v2

Retrieves the restore source from the PE cache store and returns the restore source configuration and external identifier to the user.


## Example Usage

```hcl
data "nutanix_restore_source_v2" "example"{
ext_id = "<restore_source_uuid>"
}
```

## Argument Reference
The following arguments are supported:

* `ext_id`: -(Required) A globally unique identifier of an instance that is suitable for external consumption.

## Attributes Reference
The following attributes are exported:

* `tenant_id`: - A globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
* `ext_id`: - A globally unique identifier of an instance that is suitable for external consumption.
* `links`: - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
* `location`: - Location of the backup target. For example, a cluster or an object store endpoint, such as AWS s3.

### Location
The location argument exports the following:

* `cluster_location`: - A boolean value indicating whether to enable lockdown mode for a cluster.
* `object_store_location`: - Currently representing the build information to be used for the cluster creation.

#### Cluster Location
The `cluster_location` argument exports the following:

* `config`: - Cluster reference of the remote cluster to be connected.
* `config.ext_id`: - Cluster UUID of a remote cluster.
* `config.name`: - Name of the cluster.

#### Object Store Location
The `object_store_location` argument exports the following:

* `provider_config`: - The base model of S3 object store endpoint where domain manager is backed up.
* `backup_policy`: - Backup policy for the object store provided.

##### Provider Config
The `provider_config` argument exports the following:

* `bucket_name`: - The bucket name of the object store endpoint where backup data of domain manager is to be stored.
* `region`: - The region name of the object store endpoint where backup data of domain manager is stored. Default is `us-east-1`.
* `credentials`: - Secret credentials model for the object store containing access key ID and secret access key.

###### Credentials
The `credentials` argument exports the following:

* `access_key_id`: - Access key ID for the object store provided for backup target.
* `secret_access_key`: - Secret access key for the object store provided for backup target.

##### Backup Policy
The `backup_policy` argument exports the following:

* `rpo_in_minutes`: - RPO interval in minutes at which the backup will be taken. The Value should be in the range of 60 to 1440.



See detailed information in [Nutanix Restore Source Docs](https://developers.nutanix.com/api-reference?namespace=prism&version=v4.0#tag/DomainManager/operation/getRestoreSourceById).
89 changes: 89 additions & 0 deletions website/docs/r/restore_source_v2.html.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
---
layout: "nutanix"
page_title: "NUTANIX: nutanix_restore_source_v2"
sidebar_current: "docs-nutanix-restore-source-v2"
description: |-
Creates a restore source pointing to a cluster or object store to restore the domain manager. The created restore source is intended to be deleted after use. If the restore source is not deleted using the deleteRestoreSource API, then it is auto-deleted after sometime. Also note that a restore source will not contain a backup policy. It is only used to access the backup data at the location from where the Prism Central may be restored. Credentials used to access the restore source are not validated at the time of creation of the restore source. They are validated when the restore source is used to fetch data.
---

# nutanix_restore_source_v2

Create a restore source pointing to a cluster or object store to restore the domain manager. The created restore source is intended to be deleted after use. If the restore source is not deleted using the deleteRestoreSource API, then it is auto-deleted after sometime. Also note that a restore source will not contain a backup policy. It is only used to access the backup data at the location from where the Prism Central may be restored. Credentials used to access the restore source are not validated at the time of creation of the restore source. They are validated when the restore source is used to fetch data.


## Example Usage

```hcl
resource "nutanix_restore_source_v2" "example"{
location {
cluster_location {
config {
ext_id = "cluster uuid"
}
}
object_store_location {
provider_config {
bucket_name = "bucket name"
region = "region"
credentials {
access_key_id = "id"
secret_access_key = "key"
}
}
backup_policy {
rpo_in_minutes = 0
}
}
}
}
```

## Argument Reference
The following arguments are supported:

* `location`: -(Required) Location of the backup target. For example, a cluster or an object store endpoint, such as AWS s3.

### Location
The location argument supports the following:
> one of the following is required:
* `cluster_location`: -(Optional) A boolean value indicating whether to enable lockdown mode for a cluster.
* `object_store_location`: -(Optional) Currently representing the build information to be used for the cluster creation.

#### Cluster Location
The `cluster_location` argument supports the following:

* `config`: -(Required) Cluster reference of the remote cluster to be connected.
* `config.ext_id`: -(Required) Cluster UUID of a remote cluster.

#### Object Store Location
The `object_store_location` argument supports the following:

* `provider_config`: -(Required) The base model of S3 object store endpoint where domain manager is backed up.
* `backup_policy`: -(Optional) Backup policy for the object store provided.

##### Provider Config
The `provider_config` argument supports the following:

* `bucket_name`: -(Required) The bucket name of the object store endpoint where backup data of domain manager is to be stored.
* `region`: -(Optional) The region name of the object store endpoint where backup data of domain manager is stored. Default is `us-east-1`.
* `credentials`: -(Optional) Secret credentials model for the object store containing access key ID and secret access key.

###### Credentials
The `credentials` argument supports the following:

* `access_key_id`: -(Required) Access key ID for the object store provided for backup target.
* `secret_access_key`: -(Required) Secret access key for the object store provided for backup target.

##### Backup Policy
The `backup_policy` argument supports the following:

* `rpo_in_minutes`: -(Required) RPO interval in minutes at which the backup will be taken. The Value should be in the range of 60 to 1440.



See detailed information in [Nutanix Restore Source Docs](https://developers.nutanix.com/api-reference?namespace=prism&version=v4.0#tag/DomainManager/operation/createRestoreSource).

0 comments on commit 2e6bbb0

Please sign in to comment.