Skip to main content

single_sign_ons

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

Overview

Namesingle_sign_ons
TypeResource
Idazure_isv.dynatrace.single_sign_ons

Fields

NameDatatypeDescription
aad_domainstextfield from the properties object
configurationNametextfield from the properties object
enterprise_app_idtextfield from the properties object
monitorNametextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
single_sign_on_statetextfield from the properties object
single_sign_on_urltextfield from the properties object
subscriptionIdtextfield from the properties object
system_datatextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTconfigurationName, monitorName, resourceGroupName, subscriptionId
listSELECTmonitorName, resourceGroupName, subscriptionId
create_or_updateINSERTconfigurationName, monitorName, resourceGroupName, subscriptionId, data__properties

SELECT examples

SELECT
aad_domains,
configurationName,
enterprise_app_id,
monitorName,
provisioning_state,
resourceGroupName,
single_sign_on_state,
single_sign_on_url,
subscriptionId,
system_data
FROM azure_isv.dynatrace.vw_single_sign_ons
WHERE monitorName = '{{ monitorName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';

INSERT example

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

/*+ create */
INSERT INTO azure_isv.dynatrace.single_sign_ons (
configurationName,
monitorName,
resourceGroupName,
subscriptionId,
data__properties,
properties
)
SELECT
'{{ configurationName }}',
'{{ monitorName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ data__properties }}',
'{{ properties }}'
;