Skip to main content

container_groups_outbound_network_dependencies_endpoints

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

Overview

Namecontainer_groups_outbound_network_dependencies_endpoints
TypeResource
Idazure.container_instances.container_groups_outbound_network_dependencies_endpoints

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, containerGroupNameGets all the network dependencies for this container group to allow complete control of network setting and configuration. For container groups, this will always be an empty list.

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
containerGroupNamestringThe name of the container group.
resourceGroupNamestringThe name of the resource group.
subscriptionIdstringSubscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

Gets all the network dependencies for this container group to allow complete control of network setting and configuration. For container groups, this will always be an empty list.

SELECT
*
FROM azure.container_instances.container_groups_outbound_network_dependencies_endpoints
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND containerGroupName = '{{ containerGroupName }}' -- required
;