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
The following fields are returned by SELECT
queries:
- get
- list_by_resource_group
- list_by_subscription
Name | Datatype | Description |
---|---|---|
location | string | The geo-location where the resource lives |
properties | object | Resource properties. |
tags | object | Resource tags. |
Lists all NetworkFabricControllers under the resource group.
Name | Datatype | Description |
---|---|---|
location | string | The geo-location where the resource lives |
properties | object | Resource properties. |
tags | object | Resource tags. |
Lists all NetworkFabricControllers under the subscription.
Name | Datatype | Description |
---|---|---|
location | string | The geo-location where the resource lives |
properties | object | Resource properties. |
tags | object | Resource tags. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , networkFabricControllerName | Shows the provisioning status of Network Fabric Controller. | |
list_by_resource_group | select | subscriptionId , resourceGroupName | Lists all the NetworkFabricControllers thats available in the resource group. | |
list_by_subscription | select | subscriptionId | Lists all the NetworkFabricControllers by subscription. | |
create | insert | subscriptionId , resourceGroupName , networkFabricControllerName , data__properties | Creates a Network Fabric Controller. | |
update | update | subscriptionId , resourceGroupName , networkFabricControllerName | Updates are currently not supported for the Network Fabric Controller resource. | |
delete | delete | subscriptionId , resourceGroupName , networkFabricControllerName | Deletes the Network Fabric Controller resource. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
networkFabricControllerName | string | Name of the Network Fabric Controller. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- get
- list_by_resource_group
- list_by_subscription
Shows the provisioning status of Network Fabric Controller.
SELECT
location,
properties,
tags
FROM azure.managed_network_fabric.network_fabric_controllers
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND networkFabricControllerName = '{{ networkFabricControllerName }}' -- required
;
Lists all the NetworkFabricControllers thats available in the resource group.
SELECT
location,
properties,
tags
FROM azure.managed_network_fabric.network_fabric_controllers
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
;
Lists all the NetworkFabricControllers by subscription.
SELECT
location,
properties,
tags
FROM azure.managed_network_fabric.network_fabric_controllers
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;
INSERT
examples
- create
- Manifest
Creates a Network Fabric Controller.
INSERT INTO azure.managed_network_fabric.network_fabric_controllers (
data__properties,
data__tags,
data__location,
subscriptionId,
resourceGroupName,
networkFabricControllerName
)
SELECT
'{{ properties }}' /* required */,
'{{ tags }}',
'{{ location }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ networkFabricControllerName }}'
RETURNING
location,
properties,
tags
;
# Description fields are for documentation purposes
- name: network_fabric_controllers
props:
- name: subscriptionId
value: string (uuid)
description: Required parameter for the network_fabric_controllers resource.
- name: resourceGroupName
value: string
description: Required parameter for the network_fabric_controllers resource.
- name: networkFabricControllerName
value: string
description: Required parameter for the network_fabric_controllers resource.
- name: properties
value: object
description: |
Resource properties.
- name: tags
value: object
description: |
Resource tags.
- name: location
value: string
description: |
The geo-location where the resource lives
UPDATE
examples
- update
Updates are currently not supported for the Network Fabric Controller resource.
UPDATE azure.managed_network_fabric.network_fabric_controllers
SET
data__properties = '{{ properties }}',
data__tags = '{{ tags }}'
WHERE
subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND networkFabricControllerName = '{{ networkFabricControllerName }}' --required
RETURNING
location,
properties,
tags;
DELETE
examples
- delete
Deletes the Network Fabric Controller resource.
DELETE FROM azure.managed_network_fabric.network_fabric_controllers
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND networkFabricControllerName = '{{ networkFabricControllerName }}' --required
;