service_association_links
Creates, updates, deletes, gets or lists a service_association_links
resource.
Overview
Name | service_association_links |
Type | Resource |
Id | azure.network.service_association_links |
Fields
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. |
properties | object | Properties of ServiceAssociationLink. |
type | string | Resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | resourceGroupName, subnetName, subscriptionId, virtualNetworkName | Gets 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 }}';