Skip to main content

available_workload_profiles

Creates, updates, deletes, gets or lists an available_workload_profiles resource.

Overview

Nameavailable_workload_profiles
TypeResource
Idazure.container_apps.available_workload_profiles

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
locationstringRegion of the workload profile.
propertiesobjectRevision resource specific properties

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, locationGet all available workload profiles for a location.

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
locationstringThe name of the Azure region.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Get all available workload profiles for a location.

SELECT
location,
properties
FROM azure.container_apps.available_workload_profiles
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
;