sign_in_settings
Creates, updates, deletes, gets or lists a sign_in_settings
resource.
Overview
Name | sign_in_settings |
Type | Resource |
Id | azure.api_management.sign_in_settings |
Fields
The following fields are returned by SELECT
queries:
- get
Sign-In settings.
Name | Datatype | Description |
---|---|---|
properties | object | Sign-in settings contract properties. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceGroupName , serviceName , subscriptionId | Get Sign In Settings for the Portal | |
create_or_update | insert | resourceGroupName , serviceName , subscriptionId | If-Match | Create or Update Sign-In settings. |
update | update | resourceGroupName , serviceName , If-Match , subscriptionId | Update Sign-In settings. |
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 |
---|---|---|
If-Match | string | ETag of the Entity. ETag should match the current entity state from the header response of the GET request or it should be * for unconditional update. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
serviceName | string | The name of the API Management service. |
subscriptionId | string | The ID of the target subscription. |
If-Match | string | ETag of the Entity. Not required when creating an entity, but required when updating an entity. |
SELECT
examples
- get
Get Sign In Settings for the Portal
SELECT
properties
FROM azure.api_management.sign_in_settings
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND serviceName = '{{ serviceName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;
INSERT
examples
- create_or_update
- Manifest
Create or Update Sign-In settings.
INSERT INTO azure.api_management.sign_in_settings (
data__properties,
resourceGroupName,
serviceName,
subscriptionId,
If-Match
)
SELECT
'{{ properties }}',
'{{ resourceGroupName }}',
'{{ serviceName }}',
'{{ subscriptionId }}',
'{{ If-Match }}'
RETURNING
properties
;
# Description fields are for documentation purposes
- name: sign_in_settings
props:
- name: resourceGroupName
value: string
description: Required parameter for the sign_in_settings resource.
- name: serviceName
value: string
description: Required parameter for the sign_in_settings resource.
- name: subscriptionId
value: string
description: Required parameter for the sign_in_settings resource.
- name: properties
value: object
description: |
Sign-in settings contract properties.
- name: If-Match
value: string
description: ETag of the Entity. Not required when creating an entity, but required when updating an entity.
UPDATE
examples
- update
Update Sign-In settings.
UPDATE azure.api_management.sign_in_settings
SET
data__properties = '{{ properties }}'
WHERE
resourceGroupName = '{{ resourceGroupName }}' --required
AND serviceName = '{{ serviceName }}' --required
AND If-Match = '{{ If-Match }}' --required
AND subscriptionId = '{{ subscriptionId }}' --required;