Skip to main content

private_link_hubs

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

Overview

Nameprivate_link_hubs
TypeResource
Idazure.synapse.private_link_hubs

Fields

The following fields are returned by SELECT queries:

PrivateLinkHub resource details

NameDatatypeDescription
locationstringThe geo-location where the resource lives
propertiesobjectPrivateLinkHub resource properties
tagsobjectResource tags.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectGets a privateLinkHub
list_by_resource_groupselectReturns a list of privateLinkHubs in a resource group
listselectsubscriptionIdReturns a list of privateLinkHubs in a subscription
create_or_updateinsertCreates or updates a privateLinkHub
updateupdateUpdates a privateLinkHub
deletedeleteDeletes a privateLinkHub

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
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Gets a privateLinkHub

SELECT
location,
properties,
tags
FROM azure.synapse.private_link_hubs
;

INSERT examples

Creates or updates a privateLinkHub

INSERT INTO azure.synapse.private_link_hubs (
data__tags,
data__location,
data__properties
)
SELECT
'{{ tags }}',
'{{ location }}',
'{{ properties }}'
RETURNING
location,
properties,
tags
;

UPDATE examples

Updates a privateLinkHub

UPDATE azure.synapse.private_link_hubs
SET
data__tags = '{{ tags }}'
RETURNING
location,
properties,
tags;

DELETE examples

Deletes a privateLinkHub

DELETE FROM azure.synapse.private_link_hubs
;