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
The following fields are returned by SELECT queries:
- list
Request successful. The operation returns a list of service association links for the subnet.
| 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 | Resource navigation link properties format. |
type | string | Resource type. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | resourceGroupName, virtualNetworkName, subnetName, subscriptionId | Gets 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.
| Name | Datatype | Description |
|---|---|---|
resourceGroupName | string | The name of the resource group. |
subnetName | string | The name of the subnet. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
virtualNetworkName | string | The name of the virtual network. |
SELECT examples
- list
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
;