replication_vault_settings
Creates, updates, deletes, gets or lists a replication_vault_settings
resource.
Overview
Name | replication_vault_settings |
Type | Resource |
Id | azure.recovery_services_site_recovery.replication_vault_settings |
Fields
- vw_replication_vault_settings
- replication_vault_settings
Name | Datatype | Description |
---|---|---|
id | text | Resource Id |
name | text | Resource Name |
location | text | Resource Location |
migration_solution_id | text | field from the properties object |
resourceGroupName | text | field from the properties object |
resourceName | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | Resource Type |
vaultSettingName | text | field from the properties object |
vmware_to_azure_provider_type | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id |
name | string | Resource Name |
location | string | Resource Location |
properties | object | Vault setting properties. |
type | string | Resource Type |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | resourceGroupName, resourceName, subscriptionId, vaultSettingName | Gets the vault setting. This includes the Migration Hub connection settings. |
list | SELECT | resourceGroupName, resourceName, subscriptionId | Gets the list of vault setting. This includes the Migration Hub connection settings. |
create | INSERT | resourceGroupName, resourceName, subscriptionId, vaultSettingName, data__properties | The operation to configure vault setting. |
SELECT
examples
Gets the list of vault setting. This includes the Migration Hub connection settings.
- vw_replication_vault_settings
- replication_vault_settings
SELECT
id,
name,
location,
migration_solution_id,
resourceGroupName,
resourceName,
subscriptionId,
type,
vaultSettingName,
vmware_to_azure_provider_type
FROM azure.recovery_services_site_recovery.vw_replication_vault_settings
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
type
FROM azure.recovery_services_site_recovery.replication_vault_settings
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';
INSERT
example
Use the following StackQL query and manifest file to create a new replication_vault_settings
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.recovery_services_site_recovery.replication_vault_settings (
resourceGroupName,
resourceName,
subscriptionId,
vaultSettingName,
data__properties,
properties
)
SELECT
'{{ resourceGroupName }}',
'{{ resourceName }}',
'{{ subscriptionId }}',
'{{ vaultSettingName }}',
'{{ data__properties }}',
'{{ properties }}'
;
- name: your_resource_model_name
props:
- name: properties
value:
- name: migrationSolutionId
value: string
- name: vmwareToAzureProviderType
value: string