Skip to main content

logical_networks

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

Overview

Namelogical_networks
TypeResource
Idazure_stack.fabric_admin.logical_networks

Fields

NameDatatypeDescription
idtextURI of the resource.
nametextName of the resource.
locationtextThe region where the resource is located.
logicalNetworktextfield from the properties object
metadatatextfield from the properties object
network_virtualization_enabledtextfield from the properties object
resourceGroupNametextfield from the properties object
subnetstextfield from the properties object
subscriptionIdtextfield from the properties object
tagstextList of key-value pairs.
typetextType of resource.

Methods

NameAccessible byRequired ParamsDescription
getSELECTlocation, logicalNetwork, resourceGroupName, subscriptionIdReturns the requested logical network.
listSELECTlocation, resourceGroupName, subscriptionIdReturns a list of all logical networks at a location.

SELECT examples

Returns a list of all logical networks at a location.

SELECT
id,
name,
location,
logicalNetwork,
metadata,
network_virtualization_enabled,
resourceGroupName,
subnets,
subscriptionId,
tags,
type
FROM azure_stack.fabric_admin.vw_logical_networks
WHERE location = '{{ location }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';