Skip to main content

service_association_links

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

Overview

Nameservice_association_links
TypeResource
Idazure.network.service_association_links

Fields

The following fields are returned by SELECT queries:

Request successful. The operation returns a list of service association 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 service association 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 service association links for a subnet.

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