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