resource_navigation_links
Creates, updates, deletes, gets or lists a resource_navigation_links resource.
Overview
| Name | resource_navigation_links |
| Type | Resource |
| Id | azure.network.resource_navigation_links |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
id | string | Resource ID. |
name | string | Name of the resource that is unique within a resource group. This name can be used to access the resource. |
etag | string | A unique read-only string that changes whenever the resource is updated. |
link | string | Link to the external resource. |
linkedResourceType | string | Resource type of the linked resource. |
provisioningState | string | The provisioning state of the resource navigation link resource. Known values are: "Failed", "Succeeded", "Canceled", "Creating", "Updating", and "Deleting". (Failed, Succeeded, Canceled, Creating, Updating, Deleting) |
type | string | Resource type. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | resource_group_name, virtual_network_name, subnet_name, subscription_id | Gets 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.
| Name | Datatype | Description |
|---|---|---|
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subnet_name | string | The name of the subnet. Required. |
subscription_id | string | |
virtual_network_name | string | The name of the virtual network. Required. |
SELECT examples
- list
Gets a list of resource navigation links for a subnet.
SELECT
id,
name,
etag,
link,
linkedResourceType,
provisioningState,
type
FROM azure.network.resource_navigation_links
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND virtual_network_name = '{{ virtual_network_name }}' -- required
AND subnet_name = '{{ subnet_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;