vw_replication_vault_settings
Creates, updates, deletes, gets or lists a vw_replication_vault_settings
resource.
Overview
Name | vw_replication_vault_settings |
Type | View |
Id | azure.recovery_services_site_recovery.vw_replication_vault_settings |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
type as type,
JSON_EXTRACT(properties, '$.migrationSolutionId') as "migration_solution_id",
JSON_EXTRACT(properties, '$.vmwareToAzureProviderType') as "vmware_to_azure_provider_type",
subscriptionId,
resourceGroupName,
resourceName,
vaultSettingName
FROM azure.recovery_services_site_recovery.replication_vault_settings
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND resourceName = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
json_extract_path_text(properties, '$.migrationSolutionId') as "migration_solution_id",
json_extract_path_text(properties, '$.vmwareToAzureProviderType') as "vmware_to_azure_provider_type",
subscriptionId,
resourceGroupName,
resourceName,
vaultSettingName
FROM azure.recovery_services_site_recovery.replication_vault_settings
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND resourceName = 'replace-me';