replication_storage_classifications
Creates, updates, deletes, gets or lists a replication_storage_classifications
resource.
Overview
Name | replication_storage_classifications |
Type | Resource |
Id | azure.recovery_services_site_recovery.replication_storage_classifications |
Fields
- vw_replication_storage_classifications
- replication_storage_classifications
Name | Datatype | Description |
---|---|---|
id | text | Resource Id |
name | text | Resource Name |
fabricName | text | field from the properties object |
friendly_name | text | field from the properties object |
location | text | Resource Location |
resourceGroupName | text | field from the properties object |
resourceName | text | field from the properties object |
storageClassificationName | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | Resource Type |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id |
name | string | Resource Name |
location | string | Resource Location |
properties | object | Storage object properties. |
type | string | Resource Type |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | fabricName, resourceGroupName, resourceName, storageClassificationName, subscriptionId | Gets the details of the specified storage classification. |
list | SELECT | resourceGroupName, resourceName, subscriptionId | Lists the storage classifications in the vault. |
list_by_replication_fabrics | SELECT | fabricName, resourceGroupName, resourceName, subscriptionId | Lists the storage classifications available in the specified fabric. |
SELECT
examples
Lists the storage classifications in the vault.
- vw_replication_storage_classifications
- replication_storage_classifications
SELECT
id,
name,
fabricName,
friendly_name,
location,
resourceGroupName,
resourceName,
storageClassificationName,
subscriptionId,
type
FROM azure.recovery_services_site_recovery.vw_replication_storage_classifications
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
type
FROM azure.recovery_services_site_recovery.replication_storage_classifications
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';