Skip to main content

single_sign_on

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

Overview

Namesingle_sign_on
TypeResource
Idazure_isv.dynatrace.single_sign_on

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
aadDomainsarrayarray of Aad(azure active directory) domains.
enterpriseAppIdstringVersion of the Dynatrace agent installed on the VM.
provisioningStatestringProvisioning state of the resource. Known values are: "Accepted", "Creating", "Updating", "Deleting", "Succeeded", "Failed", "Canceled", "Deleted", and "NotSpecified".
singleSignOnStatestringState of Single Sign On. Known values are: "Initial", "Enable", "Disable", and "Existing".
singleSignOnUrlstringThe login URL specific to this Dynatrace Environment.
systemDataobjectSystem metadata for this resource.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, monitor_name, configuration_name, subscription_idGet a DynatraceSingleSignOnResource. Get a DynatraceSingleSignOnResource.
listselectresource_group_name, monitor_name, subscription_idList all DynatraceSingleSignOnResource by monitorName. List all DynatraceSingleSignOnResource by monitorName.
create_or_updateinsertresource_group_name, monitor_name, configuration_name, subscription_idCreate a DynatraceSingleSignOnResource. Create a DynatraceSingleSignOnResource.
create_or_updatereplaceresource_group_name, monitor_name, configuration_name, subscription_idCreate a DynatraceSingleSignOnResource. Create a DynatraceSingleSignOnResource.

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
configuration_namestringSingle Sign On Configuration Name. Required.
monitor_namestringMonitor resource name. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring

SELECT examples

Get a DynatraceSingleSignOnResource. Get a DynatraceSingleSignOnResource.

SELECT
id,
name,
aadDomains,
enterpriseAppId,
provisioningState,
singleSignOnState,
singleSignOnUrl,
systemData,
type
FROM azure_isv.dynatrace.single_sign_on
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND monitor_name = '{{ monitor_name }}' -- required
AND configuration_name = '{{ configuration_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;

INSERT examples

Create a DynatraceSingleSignOnResource. Create a DynatraceSingleSignOnResource.

INSERT INTO azure_isv.dynatrace.single_sign_on (
properties,
resource_group_name,
monitor_name,
configuration_name,
subscription_id
)
SELECT
'{{ properties }}',
'{{ resource_group_name }}',
'{{ monitor_name }}',
'{{ configuration_name }}',
'{{ subscription_id }}'
RETURNING
id,
name,
properties,
systemData,
type
;

REPLACE examples

Create a DynatraceSingleSignOnResource. Create a DynatraceSingleSignOnResource.

REPLACE azure_isv.dynatrace.single_sign_on
SET
properties = '{{ properties }}'
WHERE
resource_group_name = '{{ resource_group_name }}' --required
AND monitor_name = '{{ monitor_name }}' --required
AND configuration_name = '{{ configuration_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
RETURNING
id,
name,
properties,
systemData,
type;