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
Name | Datatype | Description |
---|---|---|
jobsSummary | object | Summary of the replication job 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
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | resourceGroupName, subscriptionId, vaultName | Fetches the replication usages of the vault. |
SELECT
examples
Fetches the replication usages of the vault.
SELECT
jobsSummary,
monitoringSummary,
protectedItemCount,
recoveryPlanCount,
recoveryServicesProviderAuthType,
registeredServersCount
FROM azure.recovery_services.replication_usages
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';