Skip to main content

ingestion_private_endpoint_connections

Creates, updates, deletes, gets or lists an ingestion_private_endpoint_connections resource.

Overview

Nameingestion_private_endpoint_connections
TypeResource
Idazure.purview.ingestion_private_endpoint_connections

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringGets or sets the identifier.
namestringGets or sets the name.
propertiesobjectThe connection identifier.
systemDataobjectMetadata pertaining to creation and last modification of the resource.
typestringGets or sets the type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, accountNameapi-versionLists all ingestion private endpoint connections

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
accountNamestringThe name of the account.
resourceGroupNamestringThe resource group name.
subscriptionIdstringThe subscription identifier
api-versionstringThe api version to use.

SELECT examples

Lists all ingestion private endpoint connections

SELECT
id,
name,
properties,
systemData,
type
FROM azure.purview.ingestion_private_endpoint_connections
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND accountName = '{{ accountName }}' -- required
AND api-version = '{{ api-version }}'
;