Skip to main content

profiles_supported_optimization_types

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

Overview

Nameprofiles_supported_optimization_types
TypeResource
Idazure.cdn.profiles_supported_optimization_types

Fields

The following fields are returned by SELECT queries:

OK. The request has succeeded.

NameDatatypeDescription
supportedOptimizationTypesarraySupported optimization types for a profile.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, profileName, subscriptionIdGets the supported optimization types for the current profile. A user can create an endpoint with an optimization type from the listed values.

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
profileNamestringName of the Azure Front Door Standard or Azure Front Door Premium or CDN profile which is unique within the resource group.
resourceGroupNamestringName of the Resource group within the Azure subscription.
subscriptionIdstringAzure Subscription ID.

SELECT examples

Gets the supported optimization types for the current profile. A user can create an endpoint with an optimization type from the listed values.

SELECT
supportedOptimizationTypes
FROM azure.cdn.profiles_supported_optimization_types
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND profileName = '{{ profileName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;