container_groups_outbound_network_dependencies_endpoints
Creates, updates, deletes, gets or lists a container_groups_outbound_network_dependencies_endpoints resource.
Overview
| Name | container_groups_outbound_network_dependencies_endpoints |
| Type | Resource |
| Id | azure.container_instances.container_groups_outbound_network_dependencies_endpoints |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, resourceGroupName, containerGroupName | 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. |
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 |
|---|---|---|
containerGroupName | string | The name of the container group. |
resourceGroupName | string | The name of the resource group. |
subscriptionId | string | Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT examples
- get
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
;