network_fabrics_topologies
Creates, updates, deletes, gets or lists a network_fabrics_topologies
resource.
Overview
Name | network_fabrics_topologies |
Type | Resource |
Id | azure.managed_network_fabric.network_fabrics_topologies |
Fields
The following fields are returned by SELECT
queries:
- get
Name | Datatype | Description |
---|---|---|
configurationState | string | Gets the configuration state. |
error | object | The error object. |
url | string | URL for the details of the response. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , networkFabricName | Gets 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.
Name | Datatype | Description |
---|---|---|
networkFabricName | string | Name of the Network Fabric. |
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
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
;