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. |
properties | object | |
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. |
properties | object | |
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 | subscriptionId , resourceGroupName , monitorName , configurationName | ||
list | select | subscriptionId , resourceGroupName , monitorName | ||
create_or_update | insert | subscriptionId , resourceGroupName , monitorName , configurationName |
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 |
---|---|---|
configurationName | string | Configuration name |
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
- list
Success
SELECT
id,
name,
properties,
systemData,
type
FROM azure_isv.datadog.single_sign_on_configurations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND monitorName = '{{ monitorName }}' -- required
AND configurationName = '{{ configurationName }}' -- required
;
Success
SELECT
id,
name,
properties,
systemData,
type
FROM azure_isv.datadog.single_sign_on_configurations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND monitorName = '{{ monitorName }}' -- required
;
INSERT
examples
- create_or_update
- Manifest
No description available.
INSERT INTO azure_isv.datadog.single_sign_on_configurations (
data__properties,
subscriptionId,
resourceGroupName,
monitorName,
configurationName
)
SELECT
'{{ properties }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ monitorName }}',
'{{ configurationName }}'
RETURNING
id,
name,
properties,
systemData,
type
;
# Description fields are for documentation purposes
- name: single_sign_on_configurations
props:
- name: subscriptionId
value: string
description: Required parameter for the single_sign_on_configurations resource.
- name: resourceGroupName
value: string
description: Required parameter for the single_sign_on_configurations resource.
- name: monitorName
value: string
description: Required parameter for the single_sign_on_configurations resource.
- name: configurationName
value: string
description: Required parameter for the single_sign_on_configurations resource.
- name: properties
value: object