Skip to main content

portal_settings

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

Overview

Nameportal_settings
TypeResource
Idazure.api_management.portal_settings

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
enabledbooleanRedirect Anonymous users to the Sign-In page.
subscriptionsobjectSubscriptions delegation settings.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
termsOfServiceobjectTerms of service contract properties.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".
urlstringA delegation Url.
userRegistrationobjectUser registration delegation settings.
validationKeystringA base64-encoded validation key to validate, that a request is coming from Azure API Management.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_serviceselectresource_group_name, service_name, subscription_idLists a collection of portalsettings defined within a service instance..

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
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
service_namestringThe name of the API Management service. Required.
subscription_idstring

SELECT examples

Lists a collection of portalsettings defined within a service instance..

SELECT
id,
name,
enabled,
subscriptions,
systemData,
termsOfService,
type,
url,
userRegistration,
validationKey
FROM azure.api_management.portal_settings
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND service_name = '{{ service_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;