Skip to main content

watchers_topologies

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

Overview

Namewatchers_topologies
TypeResource
Idazure.network.watchers_topologies

Fields

NameDatatypeDescription
idstringGUID representing the operation id.
createdDateTimestringThe datetime when the topology was initially created for the resource group.
lastModifiedstringThe datetime when the topology was last modified.
resourcesarrayA list of topology resources.

Methods

NameAccessible byRequired ParamsDescription
getSELECTnetworkWatcherName, resourceGroupName, subscriptionIdGets 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 }}';