managed_private_endpoints
Creates, updates, deletes, gets or lists a managed_private_endpoints
resource.
Overview
Name | managed_private_endpoints |
Type | Resource |
Id | azure.data_factory.managed_private_endpoints |
Fields
- vw_managed_private_endpoints
- managed_private_endpoints
Name | Datatype | Description |
---|---|---|
id | text | The resource identifier. |
name | text | The resource name. |
connection_state | text | field from the properties object |
etag | text | Etag identifies change in the resource. |
factoryName | text | field from the properties object |
fqdns | text | field from the properties object |
group_id | text | field from the properties object |
is_reserved | text | field from the properties object |
managedPrivateEndpointName | text | field from the properties object |
managedVirtualNetworkName | text | field from the properties object |
private_link_resource_id | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | The resource type. |
Name | Datatype | Description |
---|---|---|
id | string | The resource identifier. |
name | string | The resource name. |
etag | string | Etag identifies change in the resource. |
properties | object | Properties of a managed private endpoint |
type | string | The resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | factoryName, managedPrivateEndpointName, managedVirtualNetworkName, resourceGroupName, subscriptionId | Gets a managed private endpoint. |
list_by_factory | SELECT | factoryName, managedVirtualNetworkName, resourceGroupName, subscriptionId | Lists managed private endpoints. |
create_or_update | INSERT | factoryName, managedPrivateEndpointName, managedVirtualNetworkName, resourceGroupName, subscriptionId, data__properties | Creates or updates a managed private endpoint. |
delete | DELETE | factoryName, managedPrivateEndpointName, managedVirtualNetworkName, resourceGroupName, subscriptionId | Deletes a managed private endpoint. |
SELECT
examples
Lists managed private endpoints.
- vw_managed_private_endpoints
- managed_private_endpoints
SELECT
id,
name,
connection_state,
etag,
factoryName,
fqdns,
group_id,
is_reserved,
managedPrivateEndpointName,
managedVirtualNetworkName,
private_link_resource_id,
provisioning_state,
resourceGroupName,
subscriptionId,
type
FROM azure.data_factory.vw_managed_private_endpoints
WHERE factoryName = '{{ factoryName }}'
AND managedVirtualNetworkName = '{{ managedVirtualNetworkName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
etag,
properties,
type
FROM azure.data_factory.managed_private_endpoints
WHERE factoryName = '{{ factoryName }}'
AND managedVirtualNetworkName = '{{ managedVirtualNetworkName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
INSERT
example
Use the following StackQL query and manifest file to create a new managed_private_endpoints
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.data_factory.managed_private_endpoints (
factoryName,
managedPrivateEndpointName,
managedVirtualNetworkName,
resourceGroupName,
subscriptionId,
data__properties,
properties
)
SELECT
'{{ factoryName }}',
'{{ managedPrivateEndpointName }}',
'{{ managedVirtualNetworkName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ data__properties }}',
'{{ properties }}'
;
- name: your_resource_model_name
props:
- name: id
value: string
- name: name
value: string
- name: type
value: string
- name: etag
value: string
- name: properties
value:
- name: connectionState
value:
- name: actionsRequired
value: string
- name: description
value: string
- name: status
value: string
- name: fqdns
value:
- string
- name: groupId
value: string
- name: isReserved
value: boolean
- name: privateLinkResourceId
value: string
- name: provisioningState
value: string
DELETE
example
Deletes the specified managed_private_endpoints
resource.
/*+ delete */
DELETE FROM azure.data_factory.managed_private_endpoints
WHERE factoryName = '{{ factoryName }}'
AND managedPrivateEndpointName = '{{ managedPrivateEndpointName }}'
AND managedVirtualNetworkName = '{{ managedVirtualNetworkName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';