managed_private_endpoints
Creates, updates, deletes, gets or lists a managed_private_endpoints
resource.
Overview
Name | managed_private_endpoints |
Type | Resource |
Id | azure.dashboard.managed_private_endpoints |
Fields
- vw_managed_private_endpoints
- managed_private_endpoints
Name | Datatype | Description |
---|---|---|
connection_state | text | field from the properties object |
group_ids | text | field from the properties object |
location | text | The geo-location where the resource lives |
managedPrivateEndpointName | text | field from the properties object |
private_link_resource_id | text | field from the properties object |
private_link_resource_region | text | field from the properties object |
private_link_service_private_ip | text | field from the properties object |
private_link_service_url | text | field from the properties object |
provisioning_state | text | field from the properties object |
request_message | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | Resource tags. |
workspaceName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
location | string | The geo-location where the resource lives |
properties | object | Properties specific to the managed private endpoint. |
tags | object | Resource tags. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | managedPrivateEndpointName, resourceGroupName, subscriptionId, workspaceName | |
list | SELECT | resourceGroupName, subscriptionId, workspaceName | |
create | INSERT | managedPrivateEndpointName, resourceGroupName, subscriptionId, workspaceName | |
delete | DELETE | managedPrivateEndpointName, resourceGroupName, subscriptionId, workspaceName | |
update | UPDATE | managedPrivateEndpointName, resourceGroupName, subscriptionId, workspaceName | |
refresh | EXEC | resourceGroupName, subscriptionId, workspaceName |
SELECT
examples
- vw_managed_private_endpoints
- managed_private_endpoints
SELECT
connection_state,
group_ids,
location,
managedPrivateEndpointName,
private_link_resource_id,
private_link_resource_region,
private_link_service_private_ip,
private_link_service_url,
provisioning_state,
request_message,
resourceGroupName,
subscriptionId,
tags,
workspaceName
FROM azure.dashboard.vw_managed_private_endpoints
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';
SELECT
location,
properties,
tags
FROM azure.dashboard.managed_private_endpoints
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';
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.dashboard.managed_private_endpoints (
managedPrivateEndpointName,
resourceGroupName,
subscriptionId,
workspaceName,
tags,
location,
properties
)
SELECT
'{{ managedPrivateEndpointName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ workspaceName }}',
'{{ tags }}',
'{{ location }}',
'{{ properties }}'
;
- name: your_resource_model_name
props:
- name: tags
value: object
- name: location
value: string
- name: properties
value:
- name: provisioningState
value: []
- name: privateLinkResourceId
value: string
- name: privateLinkResourceRegion
value: string
- name: groupIds
value:
- string
- name: requestMessage
value: string
- name: connectionState
value:
- name: status
value: []
- name: description
value: string
- name: privateLinkServiceUrl
value: string
- name: privateLinkServicePrivateIP
value: string
UPDATE
example
Updates a managed_private_endpoints
resource.
/*+ update */
UPDATE azure.dashboard.managed_private_endpoints
SET
tags = '{{ tags }}'
WHERE
managedPrivateEndpointName = '{{ managedPrivateEndpointName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';
DELETE
example
Deletes the specified managed_private_endpoints
resource.
/*+ delete */
DELETE FROM azure.dashboard.managed_private_endpoints
WHERE managedPrivateEndpointName = '{{ managedPrivateEndpointName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';