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
- vw_single_sign_on_configurations
- single_sign_on_configurations
Name | Datatype | Description |
---|---|---|
id | text | ARM id of the resource. |
name | text | Name of the configuration. |
configurationName | text | field from the properties object |
enterprise_app_id | text | field from the properties object |
monitorName | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
single_sign_on_state | text | field from the properties object |
single_sign_on_url | text | field from the properties object |
subscriptionId | text | field from the properties object |
system_data | text | field from the properties object |
type | text | 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
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | configurationName, monitorName, resourceGroupName, subscriptionId | |
list | SELECT | monitorName, resourceGroupName, subscriptionId | |
create_or_update | INSERT | configurationName, monitorName, resourceGroupName, subscriptionId |
SELECT
examples
- vw_single_sign_on_configurations
- single_sign_on_configurations
SELECT
id,
name,
configurationName,
enterprise_app_id,
monitorName,
provisioning_state,
resourceGroupName,
single_sign_on_state,
single_sign_on_url,
subscriptionId,
system_data,
type
FROM azure_isv.datadog.vw_single_sign_on_configurations
WHERE monitorName = '{{ monitorName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties,
systemData,
type
FROM azure_isv.datadog.single_sign_on_configurations
WHERE monitorName = '{{ monitorName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
INSERT
example
Use the following StackQL query and manifest file to create a new single_sign_on_configurations
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure_isv.datadog.single_sign_on_configurations (
configurationName,
monitorName,
resourceGroupName,
subscriptionId,
properties
)
SELECT
'{{ configurationName }}',
'{{ monitorName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ properties }}'
;
- name: your_resource_model_name
props:
- name: id
value: string
- name: name
value: string
- name: type
value: string
- name: properties
value:
- name: provisioningState
value: []
- name: singleSignOnState
value: []
- name: enterpriseAppId
value: string
- name: singleSignOnUrl
value: string
- name: systemData
value:
- name: createdBy
value: string
- name: createdByType
value: string
- name: createdAt
value: string
- name: lastModifiedBy
value: string
- name: lastModifiedByType
value: string
- name: lastModifiedAt
value: string