logical_networks
Creates, updates, deletes, gets or lists a logical_networks
resource.
Overview
Name | logical_networks |
Type | Resource |
Id | azure_stack.fabric_admin.logical_networks |
Fields
- vw_logical_networks
- logical_networks
Name | Datatype | Description |
---|---|---|
id | text | URI of the resource. |
name | text | Name of the resource. |
location | text | The region where the resource is located. |
logicalNetwork | text | field from the properties object |
metadata | text | field from the properties object |
network_virtualization_enabled | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subnets | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | List of key-value pairs. |
type | text | Type of resource. |
Name | Datatype | Description |
---|---|---|
id | string | URI of the resource. |
name | string | Name of the resource. |
location | string | The region where the resource is located. |
properties | object | Properties of a logical network. |
tags | object | List of key-value pairs. |
type | string | Type of resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, logicalNetwork, resourceGroupName, subscriptionId | Returns the requested logical network. |
list | SELECT | location, resourceGroupName, subscriptionId | Returns a list of all logical networks at a location. |
SELECT
examples
Returns a list of all logical networks at a location.
- vw_logical_networks
- logical_networks
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 }}';
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure_stack.fabric_admin.logical_networks
WHERE location = '{{ location }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';