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
The following fields are returned by SELECT
queries:
- get
- list_by_replication_fabrics
- list
Name | Datatype | Description |
---|---|---|
id | string | Resource Id |
name | string | Resource Name |
location | string | Resource Location |
properties | object | Properties of the storage object. |
type | string | Resource Type |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id |
name | string | Resource Name |
location | string | Resource Location |
properties | object | Properties of the storage object. |
type | string | Resource Type |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id |
name | string | Resource Name |
location | string | Resource Location |
properties | object | Properties of the storage object. |
type | string | Resource Type |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceName , resourceGroupName , subscriptionId , fabricName , storageClassificationName | api-version | Gets the details of the specified storage classification. |
list_by_replication_fabrics | select | resourceName , resourceGroupName , subscriptionId , fabricName | api-version | Lists the storage classifications available in the specified fabric. |
list | select | resourceName , resourceGroupName , subscriptionId | api-version | Lists the storage classifications in the vault. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
fabricName | string | Site name of interest. |
resourceGroupName | string | The name of the resource group where the recovery services vault is present. |
resourceName | string | The name of the recovery services vault. |
storageClassificationName | string | Storage classification name. |
subscriptionId | string | The subscription Id. |
api-version | string | Client Api Version. |
SELECT
examples
- get
- list_by_replication_fabrics
- list
Gets the details of the specified storage classification.
SELECT
id,
name,
location,
properties,
type
FROM azure.recovery_services_site_recovery.replication_storage_classifications
WHERE resourceName = '{{ resourceName }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND fabricName = '{{ fabricName }}' -- required
AND storageClassificationName = '{{ storageClassificationName }}' -- required
AND api-version = '{{ api-version }}'
;
Lists the storage classifications available in the specified fabric.
SELECT
id,
name,
location,
properties,
type
FROM azure.recovery_services_site_recovery.replication_storage_classifications
WHERE resourceName = '{{ resourceName }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND fabricName = '{{ fabricName }}' -- required
AND api-version = '{{ api-version }}'
;
Lists the storage classifications in the vault.
SELECT
id,
name,
location,
properties,
type
FROM azure.recovery_services_site_recovery.replication_storage_classifications
WHERE resourceName = '{{ resourceName }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND api-version = '{{ api-version }}'
;