azure_ad_only_authentications
Creates, updates, deletes, gets or lists a azure_ad_only_authentications
resource.
Overview
Name | azure_ad_only_authentications |
Type | Resource |
Id | azure.synapse.azure_ad_only_authentications |
Fields
- vw_azure_ad_only_authentications
- azure_ad_only_authentications
Name | Datatype | Description |
---|---|---|
azureADOnlyAuthenticationName | text | field from the properties object |
azure_ad_only_authentication | text | field from the properties object |
creation_date | text | field from the properties object |
resourceGroupName | text | field from the properties object |
state | text | field from the properties object |
subscriptionId | text | field from the properties object |
workspaceName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Properties of a active directory only authentication. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | azureADOnlyAuthenticationName, resourceGroupName, subscriptionId, workspaceName | Gets a Azure Active Directory only authentication property |
list | SELECT | resourceGroupName, subscriptionId, workspaceName | Gets a list of Azure Active Directory only authentication property for a workspace |
create | INSERT | azureADOnlyAuthenticationName, resourceGroupName, subscriptionId, workspaceName | Create 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
- vw_azure_ad_only_authentications
- azure_ad_only_authentications
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 }}';
SELECT
properties
FROM azure.synapse.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.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.synapse.azure_ad_only_authentications (
azureADOnlyAuthenticationName,
resourceGroupName,
subscriptionId,
workspaceName,
properties
)
SELECT
'{{ azureADOnlyAuthenticationName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ workspaceName }}',
'{{ properties }}'
;
- name: your_resource_model_name
props:
- name: properties
value:
- name: azureADOnlyAuthentication
value: boolean
- name: state
value: string
- name: creationDate
value: string