replication_logical_networks
Creates, updates, deletes, gets or lists a replication_logical_networks
resource.
Overview
Name | replication_logical_networks |
Type | Resource |
Id | azure.recovery_services_site_recovery.replication_logical_networks |
Fields
- vw_replication_logical_networks
- replication_logical_networks
Name | Datatype | Description |
---|---|---|
id | text | Resource Id |
name | text | Resource Name |
fabricName | text | field from the properties object |
friendly_name | text | field from the properties object |
location | text | Resource Location |
logicalNetworkName | text | field from the properties object |
logical_network_definitions_status | text | field from the properties object |
logical_network_usage | text | field from the properties object |
network_virtualization_status | 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 |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id |
name | string | Resource Name |
location | string | Resource Location |
properties | object | Logical Network Properties. |
type | string | Resource Type |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | fabricName, logicalNetworkName, resourceGroupName, resourceName, subscriptionId | Gets the details of a logical network. |
list_by_replication_fabrics | SELECT | fabricName, resourceGroupName, resourceName, subscriptionId | Lists all the logical networks of the Azure Site Recovery fabric. |
SELECT
examples
Lists all the logical networks of the Azure Site Recovery fabric.
- vw_replication_logical_networks
- replication_logical_networks
SELECT
id,
name,
fabricName,
friendly_name,
location,
logicalNetworkName,
logical_network_definitions_status,
logical_network_usage,
network_virtualization_status,
resourceGroupName,
resourceName,
subscriptionId,
type
FROM azure.recovery_services_site_recovery.vw_replication_logical_networks
WHERE fabricName = '{{ fabricName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
type
FROM azure.recovery_services_site_recovery.replication_logical_networks
WHERE fabricName = '{{ fabricName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';