watchers_topologies
Creates, updates, deletes, gets or lists a watchers_topologies
resource.
Overview
Name | watchers_topologies |
Type | Resource |
Id | azure.network.watchers_topologies |
Fields
The following fields are returned by SELECT
queries:
- get
Request successful. The operation returns the topology of resource group.
Name | Datatype | Description |
---|---|---|
id | string | GUID representing the operation id. |
createdDateTime | string (date-time) | The datetime when the topology was initially created for the resource group. |
lastModified | string (date-time) | The datetime when the topology was last modified. |
resources | array | A list of topology resources. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceGroupName , networkWatcherName , subscriptionId | Gets 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.
Name | Datatype | Description |
---|---|---|
networkWatcherName | string | The name of the network watcher. |
resourceGroupName | string | The name of the resource group. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- get
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
;