Skip to main content

tenant_settings

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

Overview

Nametenant_settings
TypeResource
Idazure.api_management.tenant_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.
settingsobjectTenant settings.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, service_name, settings_type, subscription_idGet tenant settings.
list_by_serviceselectresource_group_name, service_name, subscription_id$filterPublic 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.

NameDatatypeDescription
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
service_namestringThe name of the API Management service. Required.
settings_typestringThe identifier of the settings. "public" Required.
subscription_idstring
$filterstringNot used. Default value is None.

SELECT examples

Get tenant settings.

SELECT
id,
name,
settings,
systemData,
type
FROM azure.api_management.tenant_settings
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND service_name = '{{ service_name }}' -- required
AND settings_type = '{{ settings_type }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;