Skip to main content

single_sign_on_configurations

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

Overview

Namesingle_sign_on_configurations
TypeResource
Idazure_isv.datadog.single_sign_on_configurations

Fields

NameDatatypeDescription
idtextARM id of the resource.
nametextName of the configuration.
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
typetextThe type of the resource.

Methods

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

SELECT examples

SELECT
id,
name,
configurationName,
enterprise_app_id,
monitorName,
provisioning_state,
resourceGroupName,
single_sign_on_state,
single_sign_on_url,
subscriptionId,
system_data,
type
FROM azure_isv.datadog.vw_single_sign_on_configurations
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_on_configurations resource.

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