available_workload_profiles
Creates, updates, deletes, gets or lists an available_workload_profiles resource.
Overview
| Name | available_workload_profiles |
| Type | Resource |
| Id | azure.container_apps.available_workload_profiles |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
location | string | Region of the workload profile. |
properties | object | Revision resource specific properties |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, location | Get 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.
| Name | Datatype | Description |
|---|---|---|
location | string | The name of the Azure region. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT examples
- get
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
;