@@ -2194,6 +2194,7 @@ def start_activity(
2194
2194
need to. Contact Temporal before setting this value.
2195
2195
versioning_intent: When using the Worker Versioning feature, specifies whether this Activity
2196
2196
should run on a worker with a compatible Build Id or not.
2197
+ Deprecated: Use Worker Deployment versioning instead.
2197
2198
summary: A single-line fixed summary for this activity that may appear in UI/CLI.
2198
2199
This can be in single-line Temporal markdown format.
2199
2200
priority: Priority of the activity.
@@ -4161,6 +4162,7 @@ async def start_child_workflow(
4161
4162
form of this is DEPRECATED.
4162
4163
versioning_intent: When using the Worker Versioning feature, specifies whether this Child
4163
4164
Workflow should run on a worker with a compatible Build Id or not.
4165
+ Deprecated: Use Worker Deployment versioning instead.
4164
4166
static_summary: A single-line fixed summary for this child workflow execution that may appear
4165
4167
in the UI/CLI. This can be in single-line Temporal markdown format.
4166
4168
static_details: General fixed details for this child workflow execution that may appear in
@@ -4624,6 +4626,7 @@ def continue_as_new(
4624
4626
DEPRECATED.
4625
4627
versioning_intent: When using the Worker Versioning feature, specifies whether this Workflow
4626
4628
should Continue-as-New onto a worker with a compatible Build Id or not.
4629
+ Deprecated: Use Worker Deployment versioning instead.
4627
4630
4628
4631
Returns:
4629
4632
Never returns, always raises a :py:class:`ContinueAsNewError`.
@@ -5056,6 +5059,9 @@ class VersioningIntent(Enum):
5056
5059
Where this type is accepted optionally, an unset value indicates that the SDK should choose the
5057
5060
most sensible default behavior for the type of command, accounting for whether the command will
5058
5061
be run on the same task queue as the current worker.
5062
+
5063
+ .. deprecated::
5064
+ Use Worker Deployment versioning instead.
5059
5065
"""
5060
5066
5061
5067
COMPATIBLE = 1
0 commit comments