replication_usages
Creates, updates, deletes, gets or lists a replication_usages
resource.
Overview
Name | replication_usages |
Type | Resource |
Id | azure.recovery_services.replication_usages |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
jobsSummary | object | Summary of the replication jobs data for this vault. |
monitoringSummary | object | Summary of the replication monitoring data for this vault. |
protectedItemCount | integer | Number of replication protected items for this vault. |
recoveryPlanCount | integer | Number of replication recovery plans for this vault. |
recoveryServicesProviderAuthType | integer | The authentication type of recovery service providers in the vault. |
registeredServersCount | integer | Number of servers registered to this vault. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , vaultName | Fetches the replication usages of 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 |
---|---|---|
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
vaultName | string | The name of the recovery services vault. |
SELECT
examples
- list
Fetches the replication usages of the vault.
SELECT
jobsSummary,
monitoringSummary,
protectedItemCount,
recoveryPlanCount,
recoveryServicesProviderAuthType,
registeredServersCount
FROM azure.recovery_services.replication_usages
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND vaultName = '{{ vaultName }}' -- required
;