Skip to main content

sign_up_settings

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

Overview

Namesign_up_settings
TypeResource
Idazure.api_management.sign_up_settings

Fields

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

Methods

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

SELECT examples

Get Sign Up Settings for the Portal

SELECT
enabled,
resourceGroupName,
serviceName,
subscriptionId,
terms_of_service
FROM azure.api_management.vw_sign_up_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_up_settings resource.

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

UPDATE example

Updates a sign_up_settings resource.

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