mac_address_pools
Creates, updates, deletes, gets or lists a mac_address_pools
resource.
Overview
Name | mac_address_pools |
Type | Resource |
Id | azure_stack.fabric_admin.mac_address_pools |
Fields
- vw_mac_address_pools
- mac_address_pools
Name | Datatype | Description |
---|---|---|
id | text | URI of the resource. |
name | text | Name of the resource. |
end_mac_address | text | field from the properties object |
location | text | The region where the resource is located. |
macAddressPool | text | field from the properties object |
metadata | text | field from the properties object |
number_of_allocated_mac_addresses | text | field from the properties object |
number_of_available_mac_addresses | text | field from the properties object |
resourceGroupName | text | field from the properties object |
start_mac_address | 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 MAC address pool. |
tags | object | List of key-value pairs. |
type | string | Type of resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, macAddressPool, resourceGroupName, subscriptionId | Returns the requested MAC address pool. |
list | SELECT | location, resourceGroupName, subscriptionId | Returns a list of all MAC address pools at a location. |
SELECT
examples
Returns a list of all MAC address pools at a location.
- vw_mac_address_pools
- mac_address_pools
SELECT
id,
name,
end_mac_address,
location,
macAddressPool,
metadata,
number_of_allocated_mac_addresses,
number_of_available_mac_addresses,
resourceGroupName,
start_mac_address,
subscriptionId,
tags,
type
FROM azure_stack.fabric_admin.vw_mac_address_pools
WHERE location = '{{ location }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure_stack.fabric_admin.mac_address_pools
WHERE location = '{{ location }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';