Skip to main content

replication_logical_networks

Creates, updates, deletes, gets or lists a replication_logical_networks resource.

Overview

Namereplication_logical_networks
TypeResource
Idazure.recovery_services_site_recovery.replication_logical_networks

Fields

NameDatatypeDescription
idtextResource Id
nametextResource Name
fabricNametextfield from the properties object
friendly_nametextfield from the properties object
locationtextResource Location
logicalNetworkNametextfield from the properties object
logical_network_definitions_statustextfield from the properties object
logical_network_usagetextfield from the properties object
network_virtualization_statustextfield from the properties object
resourceGroupNametextfield from the properties object
resourceNametextfield from the properties object
subscriptionIdtextfield from the properties object
typetextResource Type

Methods

NameAccessible byRequired ParamsDescription
getSELECTfabricName, logicalNetworkName, resourceGroupName, resourceName, subscriptionIdGets the details of a logical network.
list_by_replication_fabricsSELECTfabricName, resourceGroupName, resourceName, subscriptionIdLists all the logical networks of the Azure Site Recovery fabric.

SELECT examples

Lists all the logical networks of the Azure Site Recovery fabric.

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 }}';