single_sign_on_configurations
Creates, updates, deletes, gets or lists a single_sign_on_configurations resource.
Overview
| Name | single_sign_on_configurations |
| Type | Resource |
| Id | azure_isv.datadog.single_sign_on_configurations |
Fields
The following fields are returned by SELECT queries:
- get
- list
| Name | Datatype | Description |
|---|---|---|
id | string | ARM id of the resource. |
name | string | Name of the configuration. |
enterpriseAppId | string | The Id of the Enterprise App used for Single sign-on. |
provisioningState | string | Known values are: "Accepted", "Creating", "Updating", "Deleting", "Succeeded", "Failed", "Canceled", "Deleted", and "NotSpecified". |
singleSignOnState | string | Various states of the SSO resource. Known values are: "Initial", "Enable", "Disable", and "Existing". |
singleSignOnUrl | string | The login URL specific to this Datadog Organization. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | The type of the resource. |
| Name | Datatype | Description |
|---|---|---|
id | string | ARM id of the resource. |
name | string | Name of the configuration. |
enterpriseAppId | string | The Id of the Enterprise App used for Single sign-on. |
provisioningState | string | Known values are: "Accepted", "Creating", "Updating", "Deleting", "Succeeded", "Failed", "Canceled", "Deleted", and "NotSpecified". |
singleSignOnState | string | Various states of the SSO resource. Known values are: "Initial", "Enable", "Disable", and "Existing". |
singleSignOnUrl | string | The login URL specific to this Datadog Organization. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | The type of the resource. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_group_name, monitor_name, configuration_name, subscription_id | Gets the datadog single sign-on resource for the given Monitor. Gets the datadog single sign-on resource for the given Monitor. | |
list | select | resource_group_name, monitor_name, subscription_id | List the single sign-on configurations for a given monitor resource. List the single sign-on configurations for a given monitor resource. | |
create_or_update | insert | resource_group_name, monitor_name, configuration_name, subscription_id | Configures single-sign-on for this resource. Configures single-sign-on for this resource. | |
create_or_update | replace | resource_group_name, monitor_name, configuration_name, subscription_id | Configures single-sign-on for this resource. Configures single-sign-on for this resource. |
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 |
|---|---|---|
configuration_name | string | Configuration name. Required. |
monitor_name | string | Monitor resource name. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string |
SELECT examples
- get
- list
Gets the datadog single sign-on resource for the given Monitor. Gets the datadog single sign-on resource for the given Monitor.
SELECT
id,
name,
enterpriseAppId,
provisioningState,
singleSignOnState,
singleSignOnUrl,
systemData,
type
FROM azure_isv.datadog.single_sign_on_configurations
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
;
List the single sign-on configurations for a given monitor resource. List the single sign-on configurations for a given monitor resource.
SELECT
id,
name,
enterpriseAppId,
provisioningState,
singleSignOnState,
singleSignOnUrl,
systemData,
type
FROM azure_isv.datadog.single_sign_on_configurations
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND monitor_name = '{{ monitor_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
INSERT examples
- create_or_update
- Manifest
Configures single-sign-on for this resource. Configures single-sign-on for this resource.
INSERT INTO azure_isv.datadog.single_sign_on_configurations (
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
;
# Description fields are for documentation purposes
- name: single_sign_on_configurations
props:
- name: resource_group_name
value: "{{ resource_group_name }}"
description: Required parameter for the single_sign_on_configurations resource.
- name: monitor_name
value: "{{ monitor_name }}"
description: Required parameter for the single_sign_on_configurations resource.
- name: configuration_name
value: "{{ configuration_name }}"
description: Required parameter for the single_sign_on_configurations resource.
- name: subscription_id
value: "{{ subscription_id }}"
description: Required parameter for the single_sign_on_configurations resource.
- name: properties
description: |
:vartype properties: ~azure.mgmt.datadog.models.DatadogSingleSignOnProperties
value:
provisioningState: "{{ provisioningState }}"
singleSignOnState: "{{ singleSignOnState }}"
enterpriseAppId: "{{ enterpriseAppId }}"
singleSignOnUrl: "{{ singleSignOnUrl }}"
REPLACE examples
- create_or_update
Configures single-sign-on for this resource. Configures single-sign-on for this resource.
REPLACE azure_isv.datadog.single_sign_on_configurations
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;