Skip to main content

sql_pool_connection_policies

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

Overview

Namesql_pool_connection_policies
TypeResource
Idazure.synapse.sql_pool_connection_policies

Fields

NameDatatypeDescription
connectionPolicyNametextfield from the properties object
kindtextResource kind.
locationtextResource location.
proxy_dns_nametextfield from the properties object
proxy_porttextfield from the properties object
redirection_statetextfield from the properties object
resourceGroupNametextfield from the properties object
security_enabled_accesstextfield from the properties object
sqlPoolNametextfield from the properties object
statetextfield from the properties object
subscriptionIdtextfield from the properties object
use_server_defaulttextfield from the properties object
visibilitytextfield from the properties object
workspaceNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTconnectionPolicyName, resourceGroupName, sqlPoolName, subscriptionId, workspaceNameGet a Sql pool's connection policy, which is used with table auditing.

SELECT examples

Get a Sql pool's connection policy, which is used with table auditing.

SELECT
connectionPolicyName,
kind,
location,
proxy_dns_name,
proxy_port,
redirection_state,
resourceGroupName,
security_enabled_access,
sqlPoolName,
state,
subscriptionId,
use_server_default,
visibility,
workspaceName
FROM azure.synapse.vw_sql_pool_connection_policies
WHERE connectionPolicyName = '{{ connectionPolicyName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND sqlPoolName = '{{ sqlPoolName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';