ingestion_private_endpoint_connections
Creates, updates, deletes, gets or lists an ingestion_private_endpoint_connections
resource.
Overview
Name | ingestion_private_endpoint_connections |
Type | Resource |
Id | azure.purview.ingestion_private_endpoint_connections |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
id | string | Gets or sets the identifier. |
name | string | Gets or sets the name. |
properties | object | The connection identifier. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | Gets or sets the type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , accountName | api-version | Lists 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.
Name | Datatype | Description |
---|---|---|
accountName | string | The name of the account. |
resourceGroupName | string | The resource group name. |
subscriptionId | string | The subscription identifier |
api-version | string | The api version to use. |
SELECT
examples
- list
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 }}'
;