Skip to main content

managed_private_endpoints

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

Overview

Namemanaged_private_endpoints
TypeResource
Idazure.kusto.managed_private_endpoints

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe name that was checked.
messagestringMessage indicating an unavailable name due to a conflict, or a description of the naming rules that are violated.
nameAvailablebooleanSpecifies a Boolean value that indicates if the name is available.
reasonstringMessage providing the reason why the given name is invalid. Known values are: "Invalid" and "AlreadyExists". (Invalid, AlreadyExists)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
check_name_availabilityselectresource_group_name, cluster_name, subscription_idChecks that the managed private endpoints resource name is valid and is not already in use.
getselectresource_group_name, cluster_name, managed_private_endpoint_name, subscription_idGets a managed private endpoint.
listselectresource_group_name, cluster_name, subscription_idReturns the list of managed private endpoints.
create_or_updateinsertresource_group_name, cluster_name, managed_private_endpoint_name, subscription_idCreates a managed private endpoint.
updateupdateresource_group_name, cluster_name, managed_private_endpoint_name, subscription_idUpdates a managed private endpoint.
create_or_updatereplaceresource_group_name, cluster_name, managed_private_endpoint_name, subscription_idCreates a managed private endpoint.
deletedeleteresource_group_name, cluster_name, managed_private_endpoint_name, subscription_idDeletes a managed private endpoint.

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
cluster_namestringThe name of the Kusto cluster. Required.
managed_private_endpoint_namestringThe name of the managed private endpoint. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring

SELECT examples

Checks that the managed private endpoints resource name is valid and is not already in use.

SELECT
name,
message,
nameAvailable,
reason
FROM azure.kusto.managed_private_endpoints
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND cluster_name = '{{ cluster_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;

INSERT examples

Creates a managed private endpoint.

INSERT INTO azure.kusto.managed_private_endpoints (
properties,
resource_group_name,
cluster_name,
managed_private_endpoint_name,
subscription_id
)
SELECT
'{{ properties }}',
'{{ resource_group_name }}',
'{{ cluster_name }}',
'{{ managed_private_endpoint_name }}',
'{{ subscription_id }}'
RETURNING
id,
name,
properties,
systemData,
type
;

UPDATE examples

Updates a managed private endpoint.

UPDATE azure.kusto.managed_private_endpoints
SET
properties = '{{ properties }}'
WHERE
resource_group_name = '{{ resource_group_name }}' --required
AND cluster_name = '{{ cluster_name }}' --required
AND managed_private_endpoint_name = '{{ managed_private_endpoint_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
RETURNING
id,
name,
properties,
systemData,
type;

REPLACE examples

Creates a managed private endpoint.

REPLACE azure.kusto.managed_private_endpoints
SET
properties = '{{ properties }}'
WHERE
resource_group_name = '{{ resource_group_name }}' --required
AND cluster_name = '{{ cluster_name }}' --required
AND managed_private_endpoint_name = '{{ managed_private_endpoint_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
RETURNING
id,
name,
properties,
systemData,
type;

DELETE examples

Deletes a managed private endpoint.

DELETE FROM azure.kusto.managed_private_endpoints
WHERE resource_group_name = '{{ resource_group_name }}' --required
AND cluster_name = '{{ cluster_name }}' --required
AND managed_private_endpoint_name = '{{ managed_private_endpoint_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
;