Skip to main content

managed_environment_private_endpoint_connections

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

Overview

Namemanaged_environment_private_endpoint_connections
TypeResource
Idazure.container_apps.managed_environment_private_endpoint_connections

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstring (arm-id)Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
namestringThe name of the resource
propertiesobjectResource properties.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, environmentName, privateEndpointConnectionName
listselectsubscriptionId, resourceGroupName, environmentName
create_or_updateinsertsubscriptionId, resourceGroupName, environmentName, privateEndpointConnectionName
deletedeletesubscriptionId, resourceGroupName, environmentName, privateEndpointConnectionName

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
environmentNamestringName of the Managed Environment.
privateEndpointConnectionNamestringThe name of the private endpoint connection associated with the Azure resource.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

OK

SELECT
id,
name,
properties,
systemData,
type
FROM azure.container_apps.managed_environment_private_endpoint_connections
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND environmentName = '{{ environmentName }}' -- required
AND privateEndpointConnectionName = '{{ privateEndpointConnectionName }}' -- required
;

INSERT examples

No description available.

INSERT INTO azure.container_apps.managed_environment_private_endpoint_connections (
data__properties,
subscriptionId,
resourceGroupName,
environmentName,
privateEndpointConnectionName
)
SELECT
'{{ properties }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ environmentName }}',
'{{ privateEndpointConnectionName }}'
RETURNING
id,
name,
properties,
systemData,
type
;

DELETE examples

No description available.

DELETE FROM azure.container_apps.managed_environment_private_endpoint_connections
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND environmentName = '{{ environmentName }}' --required
AND privateEndpointConnectionName = '{{ privateEndpointConnectionName }}' --required
;