Skip to main content

monitors_sso_details

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

Overview

Namemonitors_sso_details
TypeResource
Idazure_isv.dynatrace.monitors_sso_details

Fields

The following fields are returned by SELECT queries:

ARM operation completed successfully.

NameDatatypeDescription
aadDomainsarrayarray of Aad(azure active directory) domains
adminUsersarrayArray of admin user emails.
isSsoEnabledstringWhether the SSO is enabled for this resource or not.
metadataUrlstringURL for Azure AD metadata
singleSignOnUrlstringThe login URL specific to this Dynatrace Environment

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, monitorName

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
monitorNamestringMonitor resource name
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

ARM operation completed successfully.

SELECT
aadDomains,
adminUsers,
isSsoEnabled,
metadataUrl,
singleSignOnUrl
FROM azure_isv.dynatrace.monitors_sso_details
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND monitorName = '{{ monitorName }}' -- required
;