subnet_service_association_links
Creates, updates, deletes, gets or lists a subnet_service_association_links resource.
Overview
| Name | subnet_service_association_links |
| Type | Resource |
| Id | azure.container_instances.subnet_service_association_links |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
delete | delete | subscriptionId, resourceGroupName, virtualNetworkName, subnetName | Delete container group virtual network association links. The operation does not delete other resources provided by the user. |
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 | Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
virtualNetworkName | string | The name of the virtual network. |
DELETE examples
- delete
Delete container group virtual network association links. The operation does not delete other resources provided by the user.
DELETE FROM azure.container_instances.subnet_service_association_links
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND virtualNetworkName = '{{ virtualNetworkName }}' --required
AND subnetName = '{{ subnetName }}' --required
;