Skip to main content

subnet_service_association_links

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

Overview

Namesubnet_service_association_links
TypeResource
Idazure.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:

NameAccessible byRequired ParamsOptional ParamsDescription
deletedeletesubscriptionId, resourceGroupName, virtualNetworkName, subnetNameDelete 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.

NameDatatypeDescription
resourceGroupNamestringThe name of the resource group.
subnetNamestringThe name of the subnet.
subscriptionIdstringSubscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
virtualNetworkNamestringThe name of the virtual network.

DELETE examples

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
;