Skip to main content

replication_networks

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

Overview

Namereplication_networks
TypeResource
Idazure.recovery_services_site_recovery.replication_networks

Fields

NameDatatypeDescription
idtextResource Id
nametextResource Name
fabricNametextfield from the properties object
fabric_typetextfield from the properties object
friendly_nametextfield from the properties object
locationtextResource Location
networkNametextfield from the properties object
network_typetextfield from the properties object
resourceGroupNametextfield from the properties object
resourceNametextfield from the properties object
subnetstextfield from the properties object
subscriptionIdtextfield from the properties object
typetextResource Type

Methods

NameAccessible byRequired ParamsDescription
getSELECTfabricName, networkName, resourceGroupName, resourceName, subscriptionIdGets the details of a network.
listSELECTresourceGroupName, resourceName, subscriptionIdLists the networks available in a vault.
list_by_replication_fabricsSELECTfabricName, resourceGroupName, resourceName, subscriptionIdLists the networks available for a fabric.

SELECT examples

Lists the networks available in a vault.

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