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

The following fields are returned by SELECT queries:

Request successful. The operation returns the topology of resource group.

NameDatatypeDescription
idstringGUID representing the operation id.
createdDateTimestring (date-time)The datetime when the topology was initially created for the resource group.
lastModifiedstring (date-time)The datetime when the topology was last modified.
resourcesarrayA list of topology resources.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, networkWatcherName, subscriptionIdGets the current network topology by resource group.

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
networkWatcherNamestringThe name of the network watcher.
resourceGroupNamestringThe name of the resource group.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Gets the current network topology by resource group.

SELECT
id,
createdDateTime,
lastModified,
resources
FROM azure.network.watchers_topologies
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND networkWatcherName = '{{ networkWatcherName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;