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

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.
propertiesobjectProperties of ServiceAssociationLink.
typestringResource type.

Methods

NameAccessible byRequired ParamsDescription
listSELECTresourceGroupName, subnetName, subscriptionId, virtualNetworkNameGets a list of service association links for a subnet.

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 }}'
AND subnetName = '{{ subnetName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND virtualNetworkName = '{{ virtualNetworkName }}';