private_endpoint_connection_controllers
Creates, updates, deletes, gets or lists a private_endpoint_connection_controllers
resource.
Overview
Name | private_endpoint_connection_controllers |
Type | Resource |
Id | azure.migrate.private_endpoint_connection_controllers |
Fields
- vw_private_endpoint_connection_controllers
- private_endpoint_connection_controllers
Name | Datatype | Description |
---|---|---|
group_ids | text | field from the properties object |
peConnectionName | text | field from the properties object |
private_endpoint | text | field from the properties object |
private_link_service_connection_state | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
siteName | text | field from the properties object |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | PrivateEndpointConnectionProperties V2 |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | peConnectionName, resourceGroupName, siteName, subscriptionId | Gets the private link resource. |
list_by_master_site | SELECT | resourceGroupName, siteName, subscriptionId | Gets the private link resource. |
create | INSERT | peConnectionName, resourceGroupName, siteName, subscriptionId | Gets the private link resource. |
delete | DELETE | peConnectionName, resourceGroupName, siteName, subscriptionId | Deletes the private link resource. |
SELECT
examples
Gets the private link resource.
- vw_private_endpoint_connection_controllers
- private_endpoint_connection_controllers
SELECT
group_ids,
peConnectionName,
private_endpoint,
private_link_service_connection_state,
provisioning_state,
resourceGroupName,
siteName,
subscriptionId
FROM azure.migrate.vw_private_endpoint_connection_controllers
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
properties
FROM azure.migrate.private_endpoint_connection_controllers
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}';
INSERT
example
Use the following StackQL query and manifest file to create a new private_endpoint_connection_controllers
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.migrate.private_endpoint_connection_controllers (
peConnectionName,
resourceGroupName,
siteName,
subscriptionId,
properties
)
SELECT
'{{ peConnectionName }}',
'{{ resourceGroupName }}',
'{{ siteName }}',
'{{ subscriptionId }}',
'{{ properties }}'
;
- name: your_resource_model_name
props:
- name: properties
value:
- name: groupIds
value:
- string
- name: provisioningState
value: []
- name: privateEndpoint
value:
- name: id
value: string
- name: privateLinkServiceConnectionState
value:
- name: status
value: []
- name: description
value: string
- name: actionsRequired
value: string
DELETE
example
Deletes the specified private_endpoint_connection_controllers
resource.
/*+ delete */
DELETE FROM azure.migrate.private_endpoint_connection_controllers
WHERE peConnectionName = '{{ peConnectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}';