Skip to main content

single_sign_ons

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

Overview

Namesingle_sign_ons
TypeResource
Idazure_isv.logz.single_sign_ons

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringARM id of the resource.
namestringName of the configuration.
propertiesobject
systemDataobjectMetadata pertaining to creation and last modification of the resource.
typestringThe type of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, monitorName, configurationName
listselectsubscriptionId, resourceGroupName, monitorName
create_or_updateinsertsubscriptionId, 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.

NameDatatypeDescription
configurationNamestring
monitorNamestringMonitor resource name
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Success

SELECT
id,
name,
properties,
systemData,
type
FROM azure_isv.logz.single_sign_ons
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND monitorName = '{{ monitorName }}' -- required
AND configurationName = '{{ configurationName }}' -- required
;

INSERT examples

No description available.

INSERT INTO azure_isv.logz.single_sign_ons (
data__properties,
subscriptionId,
resourceGroupName,
monitorName,
configurationName
)
SELECT
'{{ properties }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ monitorName }}',
'{{ configurationName }}'
RETURNING
id,
name,
properties,
systemData,
type
;