Skip to main content

azure_ad_only_authentications

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

Overview

Nameazure_ad_only_authentications
TypeResource
Idazure.synapse.azure_ad_only_authentications

Fields

NameDatatypeDescription
azureADOnlyAuthenticationNametextfield from the properties object
azure_ad_only_authenticationtextfield from the properties object
creation_datetextfield from the properties object
resourceGroupNametextfield from the properties object
statetextfield from the properties object
subscriptionIdtextfield from the properties object
workspaceNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTazureADOnlyAuthenticationName, resourceGroupName, subscriptionId, workspaceNameGets a Azure Active Directory only authentication property
listSELECTresourceGroupName, subscriptionId, workspaceNameGets a list of Azure Active Directory only authentication property for a workspace
createINSERTazureADOnlyAuthenticationName, resourceGroupName, subscriptionId, workspaceNameCreate or Update a Azure Active Directory only authentication property for the workspaces

SELECT examples

Gets a list of Azure Active Directory only authentication property for a workspace

SELECT
azureADOnlyAuthenticationName,
azure_ad_only_authentication,
creation_date,
resourceGroupName,
state,
subscriptionId,
workspaceName
FROM azure.synapse.vw_azure_ad_only_authentications
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';

INSERT example

Use the following StackQL query and manifest file to create a new azure_ad_only_authentications resource.

/*+ create */
INSERT INTO azure.synapse.azure_ad_only_authentications (
azureADOnlyAuthenticationName,
resourceGroupName,
subscriptionId,
workspaceName,
properties
)
SELECT
'{{ azureADOnlyAuthenticationName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ workspaceName }}',
'{{ properties }}'
;