Skip to main content

sql_pool_replication_links

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

Overview

Namesql_pool_replication_links
TypeResource
Idazure.synapse.sql_pool_replication_links

Fields

NameDatatypeDescription
is_termination_allowedtextfield from the properties object
linkIdtextfield from the properties object
locationtextLocation of the workspace that contains this firewall rule.
partner_databasetextfield from the properties object
partner_locationtextfield from the properties object
partner_roletextfield from the properties object
partner_servertextfield from the properties object
percent_completetextfield from the properties object
replication_modetextfield from the properties object
replication_statetextfield from the properties object
resourceGroupNametextfield from the properties object
roletextfield from the properties object
sqlPoolNametextfield from the properties object
start_timetextfield from the properties object
subscriptionIdtextfield from the properties object
typetextType of resource this is.
workspaceNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
get_by_nameSELECTlinkId, resourceGroupName, sqlPoolName, subscriptionId, workspaceNameGet SQL pool replication link by name.
listSELECTresourceGroupName, sqlPoolName, subscriptionId, workspaceNameLists a Sql pool's replication links.

SELECT examples

Lists a Sql pool's replication links.

SELECT
is_termination_allowed,
linkId,
location,
partner_database,
partner_location,
partner_role,
partner_server,
percent_complete,
replication_mode,
replication_state,
resourceGroupName,
role,
sqlPoolName,
start_time,
subscriptionId,
type,
workspaceName
FROM azure.synapse.vw_sql_pool_replication_links
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND sqlPoolName = '{{ sqlPoolName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';