@@ -936,9 +936,6 @@ async def execute_update_with_start_workflow(
936936 the call will not return successfully until the update has been delivered to a
937937 worker.
938938
939- .. warning::
940- This API is experimental
941-
942939 Args:
943940 update: Update function or name on the workflow. arg: Single argument to the
944941 update.
@@ -5354,11 +5351,7 @@ class StartWorkflowUpdateInput:
53545351
53555352@dataclass
53565353class UpdateWithStartUpdateWorkflowInput :
5357- """Update input for :py:meth:`OutboundInterceptor.start_update_with_start_workflow`.
5358-
5359- .. warning::
5360- This API is experimental
5361- """
5354+ """Update input for :py:meth:`OutboundInterceptor.start_update_with_start_workflow`."""
53625355
53635356 update_id : Optional [str ]
53645357 update : str
@@ -5372,11 +5365,7 @@ class UpdateWithStartUpdateWorkflowInput:
53725365
53735366@dataclass
53745367class UpdateWithStartStartWorkflowInput :
5375- """StartWorkflow input for :py:meth:`OutboundInterceptor.start_update_with_start_workflow`.
5376-
5377- .. warning::
5378- This API is experimental
5379- """
5368+ """StartWorkflow input for :py:meth:`OutboundInterceptor.start_update_with_start_workflow`."""
53805369
53815370 # Similar to StartWorkflowInput but without e.g. run_id, start_signal,
53825371 # start_signal_args, request_eager_start.
@@ -5412,11 +5401,7 @@ class UpdateWithStartStartWorkflowInput:
54125401
54135402@dataclass
54145403class StartWorkflowUpdateWithStartInput :
5415- """Input for :py:meth:`OutboundInterceptor.start_update_with_start_workflow`.
5416-
5417- .. warning::
5418- This API is experimental
5419- """
5404+ """Input for :py:meth:`OutboundInterceptor.start_update_with_start_workflow`."""
54205405
54215406 start_workflow_input : UpdateWithStartStartWorkflowInput
54225407 update_workflow_input : UpdateWithStartUpdateWorkflowInput
@@ -5690,11 +5675,7 @@ async def start_workflow_update(
56905675 async def start_update_with_start_workflow (
56915676 self , input : StartWorkflowUpdateWithStartInput
56925677 ) -> WorkflowUpdateHandle [Any ]:
5693- """Called for every :py:meth:`Client.start_update_with_start_workflow` and :py:meth:`Client.execute_update_with_start_workflow` call.
5694-
5695- .. warning::
5696- This API is experimental
5697- """
5678+ """Called for every :py:meth:`Client.start_update_with_start_workflow` and :py:meth:`Client.execute_update_with_start_workflow` call."""
56985679 return await self .next .start_update_with_start_workflow (input )
56995680
57005681 ### Async activity calls
0 commit comments