Skip to main content

sign_in_settings

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

Overview

Namesign_in_settings
TypeResource
Idazure.api_management.sign_in_settings

Fields

NameDatatypeDescription
enabledtextfield from the properties object
resourceGroupNametextfield from the properties object
serviceNametextfield from the properties object
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTresourceGroupName, serviceName, subscriptionIdGet Sign In Settings for the Portal
create_or_updateINSERTresourceGroupName, serviceName, subscriptionIdCreate or Update Sign-In settings.
updateUPDATEIf-Match, resourceGroupName, serviceName, subscriptionIdUpdate Sign-In settings.

SELECT examples

Get Sign In Settings for the Portal

SELECT
enabled,
resourceGroupName,
serviceName,
subscriptionId
FROM azure.api_management.vw_sign_in_settings
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND serviceName = '{{ serviceName }}'
AND subscriptionId = '{{ subscriptionId }}';

INSERT example

Use the following StackQL query and manifest file to create a new sign_in_settings resource.

/*+ create */
INSERT INTO azure.api_management.sign_in_settings (
resourceGroupName,
serviceName,
subscriptionId,
properties
)
SELECT
'{{ resourceGroupName }}',
'{{ serviceName }}',
'{{ subscriptionId }}',
'{{ properties }}'
;

UPDATE example

Updates a sign_in_settings resource.

/*+ update */
UPDATE azure.api_management.sign_in_settings
SET
properties = '{{ properties }}'
WHERE
If-Match = '{{ If-Match }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND serviceName = '{{ serviceName }}'
AND subscriptionId = '{{ subscriptionId }}';