Skip to main content

network_fabrics_topologies

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

Overview

Namenetwork_fabrics_topologies
TypeResource
Idazure.managed_network_fabric.network_fabrics_topologies

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
configurationStatestringGets the configuration state.
errorobjectThe error object.
urlstringURL for the details of the response.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, networkFabricNameGets Topology of the underlying resources in the given Network Fabric instance.

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
networkFabricNamestringName of the Network Fabric.
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

Gets Topology of the underlying resources in the given Network Fabric instance.

SELECT
configurationState,
error,
url
FROM azure.managed_network_fabric.network_fabrics_topologies
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND networkFabricName = '{{ networkFabricName }}' -- required
;