watchers_next_hops
Creates, updates, deletes, gets or lists a watchers_next_hops
resource.
Overview
Name | watchers_next_hops |
Type | Resource |
Id | azure.network.watchers_next_hops |
Fields
The following fields are returned by SELECT
queries:
- get
Request successful. The operation returns the next hop from the VM.
Name | Datatype | Description |
---|---|---|
nextHopIpAddress | string | Next hop IP Address. |
nextHopType | string | Next hop type. |
routeTableId | string | The resource identifier for the route table associated with the route being returned. If the route being returned does not correspond to any user created routes then this field will be the string 'System Route'. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceGroupName , networkWatcherName , subscriptionId | Gets the next hop from the specified VM. |
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 next hop from the specified VM.
SELECT
nextHopIpAddress,
nextHopType,
routeTableId
FROM azure.network.watchers_next_hops
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND networkWatcherName = '{{ networkWatcherName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;