@@ -28,14 +28,11 @@ class Action(str, Enum, metaclass=CaseInsensitiveEnumMeta):
2828
2929class ActiveRevisionsMode (str , Enum , metaclass = CaseInsensitiveEnumMeta ):
3030 """ActiveRevisionsMode controls how active revisions are handled for the Container app:
31-
32-
3331 .. raw:: html
34-
3532 <list><item>Single: Only one revision can be active at a time. Traffic weights cannot be
36- used. This is the default.</item><item>Multiple: Multiple revisions can be active, including
37- optional traffic weights and labels.</item><item>Labels: Only revisions with labels are active.
38- Traffic weights can be applied to labels.</item></list>.
33+ used. This is the default.</item><item>Multiple: Multiple revisions can be active, including
34+ optional traffic weights and labels.</item><item>Labels: Only revisions with labels are active.
35+ Traffic weights can be applied to labels.</item></list>.
3936 """
4037
4138 MULTIPLE = "Multiple"
@@ -133,16 +130,6 @@ class CheckNameAvailabilityReason(str, Enum, metaclass=CaseInsensitiveEnumMeta):
133130 ALREADY_EXISTS = "AlreadyExists"
134131
135132
136- class ConnectedEnvironmentDaprComponentProvisioningState (str , Enum , metaclass = CaseInsensitiveEnumMeta ):
137- """Provisioning state of the Connected Environment Dapr Component."""
138-
139- SUCCEEDED = "Succeeded"
140- FAILED = "Failed"
141- CANCELED = "Canceled"
142- IN_PROGRESS = "InProgress"
143- DELETING = "Deleting"
144-
145-
146133class ConnectedEnvironmentProvisioningState (str , Enum , metaclass = CaseInsensitiveEnumMeta ):
147134 """Provisioning state of the Kubernetes Environment."""
148135
@@ -230,6 +217,16 @@ class CreatedByType(str, Enum, metaclass=CaseInsensitiveEnumMeta):
230217 KEY = "Key"
231218
232219
220+ class DaprComponentProvisioningState (str , Enum , metaclass = CaseInsensitiveEnumMeta ):
221+ """Provisioning state of the Connected Environment Dapr Component."""
222+
223+ SUCCEEDED = "Succeeded"
224+ FAILED = "Failed"
225+ CANCELED = "Canceled"
226+ IN_PROGRESS = "InProgress"
227+ DELETING = "Deleting"
228+
229+
233230class DetectionStatus (str , Enum , metaclass = CaseInsensitiveEnumMeta ):
234231 """The status of the patch detection."""
235232
@@ -401,12 +398,12 @@ class JobRunningState(str, Enum, metaclass=CaseInsensitiveEnumMeta):
401398
402399
403400class Kind (str , Enum , metaclass = CaseInsensitiveEnumMeta ):
404- """Metadata used to render different experiences for resources of the same type; e.g. WorkflowApp
405- is a kind of Microsoft.App/ContainerApps type. If supported, the resource provider must
406- validate and persist this value.
401+ """Metadata to represent the container app kind, representing if a container app is workflowapp or
402+ functionapp.
407403 """
408404
409405 WORKFLOWAPP = "workflowapp"
406+ FUNCTIONAPP = "functionapp"
410407
411408
412409class Level (str , Enum , metaclass = CaseInsensitiveEnumMeta ):
@@ -670,6 +667,14 @@ class WorkflowHealthState(str, Enum, metaclass=CaseInsensitiveEnumMeta):
670667 UNKNOWN = "Unknown"
671668
672669
670+ class WorkflowKind (str , Enum , metaclass = CaseInsensitiveEnumMeta ):
671+ """Gets the logic app hybrid workflow kind."""
672+
673+ STATEFUL = "Stateful"
674+ STATELESS = "Stateless"
675+ AGENTIC = "Agentic"
676+
677+
673678class WorkflowState (str , Enum , metaclass = CaseInsensitiveEnumMeta ):
674679 """The workflow state."""
675680
0 commit comments