network_fabric_controllers
Creates, updates, deletes, gets or lists a network_fabric_controllers
resource.
Overview
Name | network_fabric_controllers |
Type | Resource |
Id | azure.managed_network_fabric.network_fabric_controllers |
Fields
- vw_network_fabric_controllers
- network_fabric_controllers
Name | Datatype | Description |
---|---|---|
annotation | text | field from the properties object |
infrastructure_express_route_connections | text | field from the properties object |
infrastructure_services | text | field from the properties object |
ipv4_address_space | text | field from the properties object |
ipv6_address_space | text | field from the properties object |
is_workload_management_network_enabled | text | field from the properties object |
location | text | The geo-location where the resource lives |
managed_resource_group_configuration | text | field from the properties object |
networkFabricControllerName | text | field from the properties object |
network_fabric_ids | text | field from the properties object |
nfc_sku | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | Resource tags. |
tenant_internet_gateway_ids | text | field from the properties object |
workload_express_route_connections | text | field from the properties object |
workload_management_network | text | field from the properties object |
workload_services | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
location | string | The geo-location where the resource lives |
properties | object | NetworkFabricControllerProperties defines the resource properties. |
tags | object | Resource tags. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | networkFabricControllerName, resourceGroupName, subscriptionId | Shows the provisioning status of Network Fabric Controller. |
list_by_resource_group | SELECT | resourceGroupName, subscriptionId | Lists all the NetworkFabricControllers thats available in the resource group. |
list_by_subscription | SELECT | subscriptionId | Lists all the NetworkFabricControllers by subscription. |
create | INSERT | networkFabricControllerName, resourceGroupName, subscriptionId, data__properties | Creates a Network Fabric Controller. |
delete | DELETE | networkFabricControllerName, resourceGroupName, subscriptionId | Deletes the Network Fabric Controller resource. |
update | UPDATE | networkFabricControllerName, resourceGroupName, subscriptionId | Updates are currently not supported for the Network Fabric Controller resource. |
SELECT
examples
Lists all the NetworkFabricControllers by subscription.
- vw_network_fabric_controllers
- network_fabric_controllers
SELECT
annotation,
infrastructure_express_route_connections,
infrastructure_services,
ipv4_address_space,
ipv6_address_space,
is_workload_management_network_enabled,
location,
managed_resource_group_configuration,
networkFabricControllerName,
network_fabric_ids,
nfc_sku,
provisioning_state,
resourceGroupName,
subscriptionId,
tags,
tenant_internet_gateway_ids,
workload_express_route_connections,
workload_management_network,
workload_services
FROM azure.managed_network_fabric.vw_network_fabric_controllers
WHERE subscriptionId = '{{ subscriptionId }}';
SELECT
location,
properties,
tags
FROM azure.managed_network_fabric.network_fabric_controllers
WHERE subscriptionId = '{{ subscriptionId }}';
INSERT
example
Use the following StackQL query and manifest file to create a new network_fabric_controllers
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.managed_network_fabric.network_fabric_controllers (
networkFabricControllerName,
resourceGroupName,
subscriptionId,
data__properties,
properties,
tags,
location
)
SELECT
'{{ networkFabricControllerName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ data__properties }}',
'{{ properties }}',
'{{ tags }}',
'{{ location }}'
;
- name: your_resource_model_name
props:
- name: properties
value:
- name: annotation
value: string
- name: infrastructureExpressRouteConnections
value:
- - name: expressRouteCircuitId
value: string
- name: expressRouteAuthorizationKey
value: string
- name: workloadExpressRouteConnections
value:
- - name: expressRouteCircuitId
value: string
- name: expressRouteAuthorizationKey
value: string
- name: infrastructureServices
value:
- name: ipv4AddressSpaces
value:
- string
- name: ipv6AddressSpaces
value:
- string
- name: managedResourceGroupConfiguration
value:
- name: name
value: string
- name: location
value: string
- name: networkFabricIds
value:
- []
- name: workloadManagementNetwork
value: boolean
- name: isWorkloadManagementNetworkEnabled
value: string
- name: tenantInternetGatewayIds
value:
- []
- name: ipv4AddressSpace
value: string
- name: ipv6AddressSpace
value: string
- name: nfcSku
value: string
- name: provisioningState
value: []
- name: tags
value: object
- name: location
value: string
UPDATE
example
Updates a network_fabric_controllers
resource.
/*+ update */
UPDATE azure.managed_network_fabric.network_fabric_controllers
SET
properties = '{{ properties }}',
tags = '{{ tags }}'
WHERE
networkFabricControllerName = '{{ networkFabricControllerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
DELETE
example
Deletes the specified network_fabric_controllers
resource.
/*+ delete */
DELETE FROM azure.managed_network_fabric.network_fabric_controllers
WHERE networkFabricControllerName = '{{ networkFabricControllerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';