Skip to main content

managed_environments_workload_profile_states

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

Overview

Namemanaged_environments_workload_profile_states
TypeResource
Idazure.container_apps.managed_environments_workload_profile_states

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
propertiesobjectWorkload Profile resource specific properties.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, environmentNameGet all workload Profile States for a Managed Environment.

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
environmentNamestringName of the Managed Environment.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Get all workload Profile States for a Managed Environment.

SELECT
properties
FROM azure.container_apps.managed_environments_workload_profile_states
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND environmentName = '{{ environmentName }}' -- required
;