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:

Lists a collection of Portal Settings entities.

NameDatatypeDescription
propertiesobjectPortal Settings contract properties.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_serviceselectresourceGroupName, serviceName, subscriptionIdLists 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
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
serviceNamestringThe name of the API Management service.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

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

SELECT
properties
FROM azure.api_management.portal_settings
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND serviceName = '{{ serviceName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;