Skip to main content

network_fabric_controllers

Creates, updates, deletes, gets or lists a network_fabric_controllers resource.

Overview

Namenetwork_fabric_controllers
TypeResource
Idazure.managed_network_fabric.network_fabric_controllers

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
locationstringThe geo-location where the resource lives
propertiesobjectResource properties.
tagsobjectResource tags.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, networkFabricControllerNameShows the provisioning status of Network Fabric Controller.
list_by_resource_groupselectsubscriptionId, resourceGroupNameLists all the NetworkFabricControllers thats available in the resource group.
list_by_subscriptionselectsubscriptionIdLists all the NetworkFabricControllers by subscription.
createinsertsubscriptionId, resourceGroupName, networkFabricControllerName, data__propertiesCreates a Network Fabric Controller.
updateupdatesubscriptionId, resourceGroupName, networkFabricControllerNameUpdates are currently not supported for the Network Fabric Controller resource.
deletedeletesubscriptionId, resourceGroupName, networkFabricControllerNameDeletes 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.

NameDatatypeDescription
networkFabricControllerNamestringName of the Network Fabric Controller.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

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
;

INSERT examples

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
;

UPDATE examples

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

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
;