Skip to main content

resource_navigation_links

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

Overview

Nameresource_navigation_links
TypeResource
Idazure.network.resource_navigation_links

Fields

The following fields are returned by SELECT queries:

Request successful. The operation returns a list of resource navigation links for the subnet.

NameDatatypeDescription
idstringResource ID.
namestringName of the resource that is unique within a resource group. This name can be used to access the resource.
etagstringA unique read-only string that changes whenever the resource is updated.
propertiesobjectResource navigation link properties format.
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, virtualNetworkName, subnetName, subscriptionIdGets a list of resource navigation links for a subnet.

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

SELECT examples

Gets a list of resource navigation links for a subnet.

SELECT
id,
name,
etag,
properties,
type
FROM azure.network.resource_navigation_links
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND virtualNetworkName = '{{ virtualNetworkName }}' -- required
AND subnetName = '{{ subnetName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;