monitors_sso_details
Creates, updates, deletes, gets or lists a monitors_sso_details
resource.
Overview
Name | monitors_sso_details |
Type | Resource |
Id | azure_isv.dynatrace.monitors_sso_details |
Fields
The following fields are returned by SELECT
queries:
- get
ARM operation completed successfully.
Name | Datatype | Description |
---|---|---|
aadDomains | array | array of Aad(azure active directory) domains |
adminUsers | array | Array of admin user emails. |
isSsoEnabled | string | Whether the SSO is enabled for this resource or not. |
metadataUrl | string | URL for Azure AD metadata |
singleSignOnUrl | string | The login URL specific to this Dynatrace Environment |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , 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.
Name | Datatype | Description |
---|---|---|
monitorName | string | Monitor resource name |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- get
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
;