replication_networks
Creates, updates, deletes, gets or lists a replication_networks
resource.
Overview
Name | replication_networks |
Type | Resource |
Id | azure.recovery_services_site_recovery.replication_networks |
Fields
- vw_replication_networks
- replication_networks
Name | Datatype | Description |
---|---|---|
id | text | Resource Id |
name | text | Resource Name |
fabricName | text | field from the properties object |
fabric_type | text | field from the properties object |
friendly_name | text | field from the properties object |
location | text | Resource Location |
networkName | text | field from the properties object |
network_type | text | field from the properties object |
resourceGroupName | text | field from the properties object |
resourceName | text | field from the properties object |
subnets | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | Resource Type |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id |
name | string | Resource Name |
location | string | Resource Location |
properties | object | Network Properties. |
type | string | Resource Type |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | fabricName, networkName, resourceGroupName, resourceName, subscriptionId | Gets the details of a network. |
list | SELECT | resourceGroupName, resourceName, subscriptionId | Lists the networks available in a vault. |
list_by_replication_fabrics | SELECT | fabricName, resourceGroupName, resourceName, subscriptionId | Lists the networks available for a fabric. |
SELECT
examples
Lists the networks available in a vault.
- vw_replication_networks
- replication_networks
SELECT
id,
name,
fabricName,
fabric_type,
friendly_name,
location,
networkName,
network_type,
resourceGroupName,
resourceName,
subnets,
subscriptionId,
type
FROM azure.recovery_services_site_recovery.vw_replication_networks
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
type
FROM azure.recovery_services_site_recovery.replication_networks
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';