watchers_topologies
Creates, updates, deletes, gets or lists a watchers_topologies
resource.
Overview
Name | watchers_topologies |
Type | Resource |
Id | azure.network.watchers_topologies |
Fields
Name | Datatype | Description |
---|---|---|
id | string | GUID representing the operation id. |
createdDateTime | string | The datetime when the topology was initially created for the resource group. |
lastModified | string | The datetime when the topology was last modified. |
resources | array | A list of topology resources. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | networkWatcherName, resourceGroupName, subscriptionId | Gets the current network topology by resource group. |
SELECT
examples
Gets the current network topology by resource group.
SELECT
id,
createdDateTime,
lastModified,
resources
FROM azure.network.watchers_topologies
WHERE networkWatcherName = '{{ networkWatcherName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';