@@ -1040,10 +1040,7 @@ def __post_init__(self):
10401040
10411041
10421042class VersioningBehavior (IntEnum ):
1043- """Specifies when a workflow might move from a worker of one Build Id to another.
1044-
1045- WARNING: Experimental API.
1046- """
1043+ """Specifies when a workflow might move from a worker of one Build Id to another."""
10471044
10481045 UNSPECIFIED = (
10491046 temporalio .api .enums .v1 .VersioningBehavior .VERSIONING_BEHAVIOR_UNSPECIFIED
@@ -1061,10 +1058,7 @@ class VersioningBehavior(IntEnum):
10611058
10621059@dataclass (frozen = True )
10631060class WorkerDeploymentVersion :
1064- """Represents the version of a specific worker deployment.
1065-
1066- WARNING: Experimental API.
1067- """
1061+ """Represents the version of a specific worker deployment."""
10681062
10691063 deployment_name : str
10701064 build_id : str
@@ -1094,11 +1088,7 @@ def _to_proto(self) -> temporalio.api.deployment.v1.WorkerDeploymentVersion:
10941088
10951089
10961090class VersioningOverride (ABC ):
1097- """Represents the override of a worker's versioning behavior for a workflow execution.
1098-
1099- .. warning::
1100- Experimental API.
1101- """
1091+ """Represents the override of a worker's versioning behavior for a workflow execution."""
11021092
11031093 @abstractmethod
11041094 def _to_proto (self ) -> temporalio .api .workflow .v1 .VersioningOverride :
@@ -1108,11 +1098,7 @@ def _to_proto(self) -> temporalio.api.workflow.v1.VersioningOverride:
11081098
11091099@dataclass (frozen = True )
11101100class PinnedVersioningOverride (VersioningOverride ):
1111- """Workflow will be pinned to a specific deployment version.
1112-
1113- .. warning::
1114- Experimental API.
1115- """
1101+ """Workflow will be pinned to a specific deployment version."""
11161102
11171103 version : WorkerDeploymentVersion
11181104
@@ -1131,11 +1117,7 @@ def _to_proto(self) -> temporalio.api.workflow.v1.VersioningOverride:
11311117
11321118@dataclass (frozen = True )
11331119class AutoUpgradeVersioningOverride (VersioningOverride ):
1134- """The workflow will auto-upgrade to the current deployment version on the next workflow task.
1135-
1136- .. warning::
1137- Experimental API.
1138- """
1120+ """The workflow will auto-upgrade to the current deployment version on the next workflow task."""
11391121
11401122 def _to_proto (self ) -> temporalio .api .workflow .v1 .VersioningOverride :
11411123 """Convert to proto representation."""
0 commit comments