prefect-client 3.3.3.dev1__py3-none-any.whl → 3.3.4.dev1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
prefect/_build_info.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # Generated by versioningit
2
- __version__ = "3.3.3.dev1"
3
- __build_date__ = "2025-04-04 08:08:08.629815+00:00"
4
- __git_commit__ = "cf8d1ca6f0eb2e922c48162b40454fd5b1cfb192"
2
+ __version__ = "3.3.4.dev1"
3
+ __build_date__ = "2025-04-08 08:08:41.971107+00:00"
4
+ __git_commit__ = "e7fa0e30c362e23a55ba2f2362b850e34954236f"
5
5
  __dirty__ = False
@@ -2,6 +2,7 @@ from __future__ import annotations
2
2
 
3
3
  from collections.abc import Iterable
4
4
  from typing import TYPE_CHECKING, Any, Union
5
+ from uuid import UUID
5
6
 
6
7
  from httpx import HTTPStatusError, RequestError
7
8
 
@@ -10,7 +11,6 @@ from prefect.exceptions import ObjectNotFound
10
11
 
11
12
  if TYPE_CHECKING:
12
13
  import datetime
13
- from uuid import UUID
14
14
 
15
15
  from prefect.client.schemas import FlowRun
16
16
  from prefect.client.schemas.actions import (
@@ -28,6 +28,7 @@ if TYPE_CHECKING:
28
28
  )
29
29
  from prefect.client.schemas.objects import (
30
30
  ConcurrencyOptions,
31
+ DeploymentBranchingOptions,
31
32
  DeploymentSchedule,
32
33
  VersionInfo,
33
34
  )
@@ -46,7 +47,7 @@ if TYPE_CHECKING:
46
47
  class DeploymentClient(BaseClient):
47
48
  def create_deployment(
48
49
  self,
49
- flow_id: "UUID",
50
+ flow_id: UUID,
50
51
  name: str,
51
52
  version: str | None = None,
52
53
  version_info: "VersionInfo | None" = None,
@@ -58,10 +59,10 @@ class DeploymentClient(BaseClient):
58
59
  work_queue_name: str | None = None,
59
60
  work_pool_name: str | None = None,
60
61
  tags: list[str] | None = None,
61
- storage_document_id: "UUID | None" = None,
62
+ storage_document_id: UUID | None = None,
62
63
  path: str | None = None,
63
64
  entrypoint: str | None = None,
64
- infrastructure_document_id: "UUID | None" = None,
65
+ infrastructure_document_id: UUID | None = None,
65
66
  parameter_openapi_schema: dict[str, Any] | None = None,
66
67
  paused: bool | None = None,
67
68
  pull_steps: list[dict[str, Any]] | None = None,
@@ -70,7 +71,7 @@ class DeploymentClient(BaseClient):
70
71
  branch: str | None = None,
71
72
  base: UUID | None = None,
72
73
  root: UUID | None = None,
73
- ) -> "UUID":
74
+ ) -> UUID:
74
75
  """
75
76
  Create a deployment.
76
77
 
@@ -94,7 +95,6 @@ class DeploymentClient(BaseClient):
94
95
  Returns:
95
96
  the ID of the deployment in the backend
96
97
  """
97
- from uuid import UUID
98
98
 
99
99
  from prefect.client.schemas.actions import DeploymentCreate
100
100
 
@@ -166,7 +166,7 @@ class DeploymentClient(BaseClient):
166
166
 
167
167
  return UUID(deployment_id)
168
168
 
169
- def set_deployment_paused_state(self, deployment_id: "UUID", paused: bool) -> None:
169
+ def set_deployment_paused_state(self, deployment_id: UUID, paused: bool) -> None:
170
170
  self.request(
171
171
  "PATCH",
172
172
  "/deployments/{id}",
@@ -176,7 +176,7 @@ class DeploymentClient(BaseClient):
176
176
 
177
177
  def update_deployment(
178
178
  self,
179
- deployment_id: "UUID",
179
+ deployment_id: UUID,
180
180
  deployment: "DeploymentUpdate",
181
181
  ) -> None:
182
182
  self.request(
@@ -190,12 +190,10 @@ class DeploymentClient(BaseClient):
190
190
  ),
191
191
  )
192
192
 
193
- def _create_deployment_from_schema(self, schema: "DeploymentCreate") -> "UUID":
193
+ def _create_deployment_from_schema(self, schema: "DeploymentCreate") -> UUID:
194
194
  """
195
195
  Create a deployment from a prepared `DeploymentCreate` schema.
196
196
  """
197
- from uuid import UUID
198
-
199
197
  # TODO: We are likely to remove this method once we have considered the
200
198
  # packaging interface for deployments further.
201
199
  response = self.request(
@@ -209,7 +207,7 @@ class DeploymentClient(BaseClient):
209
207
 
210
208
  def read_deployment(
211
209
  self,
212
- deployment_id: Union["UUID", str],
210
+ deployment_id: Union[UUID, str],
213
211
  ) -> "DeploymentResponse":
214
212
  """
215
213
  Query the Prefect API for a deployment by id.
@@ -220,7 +218,6 @@ class DeploymentClient(BaseClient):
220
218
  Returns:
221
219
  a [Deployment model][prefect.client.schemas.objects.Deployment] representation of the deployment
222
220
  """
223
- from uuid import UUID
224
221
 
225
222
  from prefect.client.schemas.responses import DeploymentResponse
226
223
 
@@ -346,7 +343,7 @@ class DeploymentClient(BaseClient):
346
343
 
347
344
  def delete_deployment(
348
345
  self,
349
- deployment_id: "UUID",
346
+ deployment_id: UUID,
350
347
  ) -> None:
351
348
  """
352
349
  Delete deployment by id.
@@ -371,7 +368,7 @@ class DeploymentClient(BaseClient):
371
368
 
372
369
  def create_deployment_schedules(
373
370
  self,
374
- deployment_id: "UUID",
371
+ deployment_id: UUID,
375
372
  schedules: list[tuple["SCHEDULE_TYPES", bool]],
376
373
  ) -> list["DeploymentSchedule"]:
377
374
  """
@@ -410,7 +407,7 @@ class DeploymentClient(BaseClient):
410
407
 
411
408
  def read_deployment_schedules(
412
409
  self,
413
- deployment_id: "UUID",
410
+ deployment_id: UUID,
414
411
  ) -> list["DeploymentSchedule"]:
415
412
  """
416
413
  Query the Prefect API for a deployment's schedules.
@@ -438,8 +435,8 @@ class DeploymentClient(BaseClient):
438
435
 
439
436
  def update_deployment_schedule(
440
437
  self,
441
- deployment_id: "UUID",
442
- schedule_id: "UUID",
438
+ deployment_id: UUID,
439
+ schedule_id: UUID,
443
440
  active: bool | None = None,
444
441
  schedule: "SCHEDULE_TYPES | None" = None,
445
442
  ) -> None:
@@ -478,8 +475,8 @@ class DeploymentClient(BaseClient):
478
475
 
479
476
  def delete_deployment_schedule(
480
477
  self,
481
- deployment_id: "UUID",
482
- schedule_id: "UUID",
478
+ deployment_id: UUID,
479
+ schedule_id: UUID,
483
480
  ) -> None:
484
481
  """
485
482
  Delete a deployment schedule.
@@ -505,7 +502,7 @@ class DeploymentClient(BaseClient):
505
502
 
506
503
  def get_scheduled_flow_runs_for_deployments(
507
504
  self,
508
- deployment_ids: list["UUID"],
505
+ deployment_ids: list[UUID],
509
506
  scheduled_before: "datetime.datetime | None" = None,
510
507
  limit: int | None = None,
511
508
  ) -> list["FlowRunResponse"]:
@@ -527,7 +524,7 @@ class DeploymentClient(BaseClient):
527
524
 
528
525
  def create_flow_run_from_deployment(
529
526
  self,
530
- deployment_id: "UUID",
527
+ deployment_id: UUID,
531
528
  *,
532
529
  parameters: dict[str, Any] | None = None,
533
530
  context: dict[str, Any] | None = None,
@@ -535,7 +532,7 @@ class DeploymentClient(BaseClient):
535
532
  name: str | None = None,
536
533
  tags: Iterable[str] | None = None,
537
534
  idempotency_key: str | None = None,
538
- parent_task_run_id: "UUID | None" = None,
535
+ parent_task_run_id: UUID | None = None,
539
536
  work_queue_name: str | None = None,
540
537
  job_variables: dict[str, Any] | None = None,
541
538
  labels: "KeyValueLabelsField | None" = None,
@@ -604,11 +601,33 @@ class DeploymentClient(BaseClient):
604
601
  )
605
602
  return FlowRun.model_validate(response.json())
606
603
 
604
+ def create_deployment_branch(
605
+ self,
606
+ deployment_id: UUID,
607
+ branch: str,
608
+ options: "DeploymentBranchingOptions | None" = None,
609
+ overrides: "DeploymentUpdate | None" = None,
610
+ ) -> UUID:
611
+ from prefect.client.schemas.actions import DeploymentBranch
612
+ from prefect.client.schemas.objects import DeploymentBranchingOptions
613
+
614
+ response = self.request(
615
+ "POST",
616
+ "/deployments/{id}/branch",
617
+ path_params={"id": deployment_id},
618
+ json=DeploymentBranch(
619
+ branch=branch,
620
+ options=options or DeploymentBranchingOptions(),
621
+ overrides=overrides,
622
+ ).model_dump(mode="json", exclude_unset=True),
623
+ )
624
+ return UUID(response.json().get("id"))
625
+
607
626
 
608
627
  class DeploymentAsyncClient(BaseAsyncClient):
609
628
  async def create_deployment(
610
629
  self,
611
- flow_id: "UUID",
630
+ flow_id: UUID,
612
631
  name: str,
613
632
  version: str | None = None,
614
633
  version_info: "VersionInfo | None" = None,
@@ -620,10 +639,10 @@ class DeploymentAsyncClient(BaseAsyncClient):
620
639
  work_queue_name: str | None = None,
621
640
  work_pool_name: str | None = None,
622
641
  tags: list[str] | None = None,
623
- storage_document_id: "UUID | None" = None,
642
+ storage_document_id: UUID | None = None,
624
643
  path: str | None = None,
625
644
  entrypoint: str | None = None,
626
- infrastructure_document_id: "UUID | None" = None,
645
+ infrastructure_document_id: UUID | None = None,
627
646
  parameter_openapi_schema: dict[str, Any] | None = None,
628
647
  paused: bool | None = None,
629
648
  pull_steps: list[dict[str, Any]] | None = None,
@@ -632,7 +651,7 @@ class DeploymentAsyncClient(BaseAsyncClient):
632
651
  branch: str | None = None,
633
652
  base: UUID | None = None,
634
653
  root: UUID | None = None,
635
- ) -> "UUID":
654
+ ) -> UUID:
636
655
  """
637
656
  Create a deployment.
638
657
 
@@ -656,7 +675,6 @@ class DeploymentAsyncClient(BaseAsyncClient):
656
675
  Returns:
657
676
  the ID of the deployment in the backend
658
677
  """
659
- from uuid import UUID
660
678
 
661
679
  from prefect.client.schemas.actions import DeploymentCreate
662
680
 
@@ -729,7 +747,7 @@ class DeploymentAsyncClient(BaseAsyncClient):
729
747
  return UUID(deployment_id)
730
748
 
731
749
  async def set_deployment_paused_state(
732
- self, deployment_id: "UUID", paused: bool
750
+ self, deployment_id: UUID, paused: bool
733
751
  ) -> None:
734
752
  await self.request(
735
753
  "PATCH",
@@ -740,7 +758,7 @@ class DeploymentAsyncClient(BaseAsyncClient):
740
758
 
741
759
  async def update_deployment(
742
760
  self,
743
- deployment_id: "UUID",
761
+ deployment_id: UUID,
744
762
  deployment: "DeploymentUpdate",
745
763
  ) -> None:
746
764
  await self.request(
@@ -754,13 +772,10 @@ class DeploymentAsyncClient(BaseAsyncClient):
754
772
  ),
755
773
  )
756
774
 
757
- async def _create_deployment_from_schema(
758
- self, schema: "DeploymentCreate"
759
- ) -> "UUID":
775
+ async def _create_deployment_from_schema(self, schema: "DeploymentCreate") -> UUID:
760
776
  """
761
777
  Create a deployment from a prepared `DeploymentCreate` schema.
762
778
  """
763
- from uuid import UUID
764
779
 
765
780
  # TODO: We are likely to remove this method once we have considered the
766
781
  # packaging interface for deployments further.
@@ -775,7 +790,7 @@ class DeploymentAsyncClient(BaseAsyncClient):
775
790
 
776
791
  async def read_deployment(
777
792
  self,
778
- deployment_id: Union["UUID", str],
793
+ deployment_id: Union[UUID, str],
779
794
  ) -> "DeploymentResponse":
780
795
  """
781
796
  Query the Prefect API for a deployment by id.
@@ -786,7 +801,6 @@ class DeploymentAsyncClient(BaseAsyncClient):
786
801
  Returns:
787
802
  a [Deployment model][prefect.client.schemas.objects.Deployment] representation of the deployment
788
803
  """
789
- from uuid import UUID
790
804
 
791
805
  from prefect.client.schemas.responses import DeploymentResponse
792
806
 
@@ -912,7 +926,7 @@ class DeploymentAsyncClient(BaseAsyncClient):
912
926
 
913
927
  async def delete_deployment(
914
928
  self,
915
- deployment_id: "UUID",
929
+ deployment_id: UUID,
916
930
  ) -> None:
917
931
  """
918
932
  Delete deployment by id.
@@ -937,7 +951,7 @@ class DeploymentAsyncClient(BaseAsyncClient):
937
951
 
938
952
  async def create_deployment_schedules(
939
953
  self,
940
- deployment_id: "UUID",
954
+ deployment_id: UUID,
941
955
  schedules: list[tuple["SCHEDULE_TYPES", bool]],
942
956
  ) -> list["DeploymentSchedule"]:
943
957
  """
@@ -976,7 +990,7 @@ class DeploymentAsyncClient(BaseAsyncClient):
976
990
 
977
991
  async def read_deployment_schedules(
978
992
  self,
979
- deployment_id: "UUID",
993
+ deployment_id: UUID,
980
994
  ) -> list["DeploymentSchedule"]:
981
995
  """
982
996
  Query the Prefect API for a deployment's schedules.
@@ -1004,8 +1018,8 @@ class DeploymentAsyncClient(BaseAsyncClient):
1004
1018
 
1005
1019
  async def update_deployment_schedule(
1006
1020
  self,
1007
- deployment_id: "UUID",
1008
- schedule_id: "UUID",
1021
+ deployment_id: UUID,
1022
+ schedule_id: UUID,
1009
1023
  active: bool | None = None,
1010
1024
  schedule: "SCHEDULE_TYPES | None" = None,
1011
1025
  ) -> None:
@@ -1044,8 +1058,8 @@ class DeploymentAsyncClient(BaseAsyncClient):
1044
1058
 
1045
1059
  async def delete_deployment_schedule(
1046
1060
  self,
1047
- deployment_id: "UUID",
1048
- schedule_id: "UUID",
1061
+ deployment_id: UUID,
1062
+ schedule_id: UUID,
1049
1063
  ) -> None:
1050
1064
  """
1051
1065
  Delete a deployment schedule.
@@ -1071,7 +1085,7 @@ class DeploymentAsyncClient(BaseAsyncClient):
1071
1085
 
1072
1086
  async def get_scheduled_flow_runs_for_deployments(
1073
1087
  self,
1074
- deployment_ids: list["UUID"],
1088
+ deployment_ids: list[UUID],
1075
1089
  scheduled_before: "datetime.datetime | None" = None,
1076
1090
  limit: int | None = None,
1077
1091
  ) -> list["FlowRun"]:
@@ -1093,7 +1107,7 @@ class DeploymentAsyncClient(BaseAsyncClient):
1093
1107
 
1094
1108
  async def create_flow_run_from_deployment(
1095
1109
  self,
1096
- deployment_id: "UUID",
1110
+ deployment_id: UUID,
1097
1111
  *,
1098
1112
  parameters: dict[str, Any] | None = None,
1099
1113
  context: dict[str, Any] | None = None,
@@ -1101,7 +1115,7 @@ class DeploymentAsyncClient(BaseAsyncClient):
1101
1115
  name: str | None = None,
1102
1116
  tags: Iterable[str] | None = None,
1103
1117
  idempotency_key: str | None = None,
1104
- parent_task_run_id: "UUID | None" = None,
1118
+ parent_task_run_id: UUID | None = None,
1105
1119
  work_queue_name: str | None = None,
1106
1120
  job_variables: dict[str, Any] | None = None,
1107
1121
  labels: "KeyValueLabelsField | None" = None,
@@ -1169,3 +1183,25 @@ class DeploymentAsyncClient(BaseAsyncClient):
1169
1183
  json=flow_run_create.model_dump(mode="json", exclude_unset=True),
1170
1184
  )
1171
1185
  return FlowRun.model_validate(response.json())
1186
+
1187
+ async def create_deployment_branch(
1188
+ self,
1189
+ deployment_id: UUID,
1190
+ branch: str,
1191
+ options: "DeploymentBranchingOptions | None" = None,
1192
+ overrides: "DeploymentUpdate | None" = None,
1193
+ ) -> UUID:
1194
+ from prefect.client.schemas.actions import DeploymentBranch
1195
+ from prefect.client.schemas.objects import DeploymentBranchingOptions
1196
+
1197
+ response = await self.request(
1198
+ "POST",
1199
+ "/deployments/{id}/branch",
1200
+ path_params={"id": deployment_id},
1201
+ json=DeploymentBranch(
1202
+ branch=branch,
1203
+ options=options or DeploymentBranchingOptions(),
1204
+ overrides=overrides,
1205
+ ).model_dump(mode="json", exclude_unset=True),
1206
+ )
1207
+ return UUID(response.json().get("id"))
@@ -46,6 +46,7 @@ ServerRoutes = Literal[
46
46
  "/csrf-token",
47
47
  "/deployments/",
48
48
  "/deployments/{id}",
49
+ "/deployments/{id}/branch",
49
50
  "/deployments/{id}/create_flow_run",
50
51
  "/deployments/{id}/pause_deployment",
51
52
  "/deployments/{id}/resume_deployment",
@@ -373,6 +373,25 @@ class DeploymentUpdate(ActionBaseModel):
373
373
  jsonschema.validate(self.job_variables, variables_schema)
374
374
 
375
375
 
376
+ class DeploymentBranch(ActionBaseModel):
377
+ branch: str = Field(..., description="Name of the branch to create")
378
+ options: objects.DeploymentBranchingOptions = Field(
379
+ default_factory=objects.DeploymentBranchingOptions,
380
+ description="Configuration options for how the deployment should be branched",
381
+ )
382
+ overrides: Optional[DeploymentUpdate] = Field(
383
+ default=None,
384
+ description="Optional values to override in the branched deployment",
385
+ )
386
+
387
+ @field_validator("branch")
388
+ @classmethod
389
+ def validate_branch_length(cls, v: str) -> str:
390
+ if len(v.strip()) < 1:
391
+ raise ValueError("Branch name cannot be empty or contain only whitespace")
392
+ return v
393
+
394
+
376
395
  class FlowRunUpdate(ActionBaseModel):
377
396
  """Data used by the Prefect REST API to update a flow run."""
378
397
 
@@ -3,6 +3,7 @@ from __future__ import annotations
3
3
  import datetime
4
4
  import warnings
5
5
  from collections.abc import Callable, Mapping
6
+ from enum import Enum
6
7
  from functools import partial
7
8
  from typing import (
8
9
  TYPE_CHECKING,
@@ -1107,6 +1108,19 @@ class VersionInfo(PrefectBaseModel, extra="allow"):
1107
1108
  version: str = Field(default=..., description="The version of the deployment.")
1108
1109
 
1109
1110
 
1111
+ class BranchingScheduleHandling(str, Enum):
1112
+ KEEP = "keep"
1113
+ REMOVE = "remove"
1114
+ INACTIVE = "inactive"
1115
+
1116
+
1117
+ class DeploymentBranchingOptions(ObjectBaseModel):
1118
+ schedule_handling: BranchingScheduleHandling = Field(
1119
+ default=BranchingScheduleHandling.REMOVE,
1120
+ description="Whether to keep, remove, or set inactive the existing schedules when branching",
1121
+ )
1122
+
1123
+
1110
1124
  class Deployment(ObjectBaseModel):
1111
1125
  """An ORM representation of deployment data."""
1112
1126
 
@@ -308,6 +308,8 @@ class FlowRunResponse(ObjectBaseModel):
308
308
 
309
309
  class DeploymentResponse(ObjectBaseModel):
310
310
  name: str = Field(default=..., description="The name of the deployment.")
311
+
312
+ # Versionining
311
313
  version: Optional[str] = Field(
312
314
  default=None, description="An optional version for the deployment."
313
315
  )
@@ -317,6 +319,18 @@ class DeploymentResponse(ObjectBaseModel):
317
319
  version_info: Optional[objects.VersionInfo] = Field(
318
320
  default=None, description="A description of this version of the deployment."
319
321
  )
322
+
323
+ # Branching
324
+ branch: Optional[str] = Field(
325
+ default=None, description="The branch of the deployment."
326
+ )
327
+ base: Optional[UUID] = Field(
328
+ default=None, description="The base deployment of the deployment."
329
+ )
330
+ root: Optional[UUID] = Field(
331
+ default=None, description="The root deployment of the deployment."
332
+ )
333
+
320
334
  description: Optional[str] = Field(
321
335
  default=None, description="A description for the deployment."
322
336
  )
@@ -438,6 +452,15 @@ class DeploymentResponse(ObjectBaseModel):
438
452
  "prefect.resource.name": self.name,
439
453
  }
440
454
 
455
+ if self.branch:
456
+ labels["prefect.deployment.branch"] = self.branch
457
+
458
+ if self.base:
459
+ labels["prefect.deployment.base"] = f"prefect.deployment.{self.base}"
460
+
461
+ if self.root:
462
+ labels["prefect.deployment.root"] = f"prefect.deployment.{self.root}"
463
+
441
464
  if self.version_id and self.version_info:
442
465
  labels["prefect.deployment.version-id"] = str(self.version_id)
443
466
  labels["prefect.deployment.version-type"] = self.version_info.type
@@ -48,7 +48,7 @@ from prefect.server.schemas.responses import (
48
48
  )
49
49
  from prefect.server.utilities.server import PrefectRouter
50
50
  from prefect.types import DateTime
51
- from prefect.types._datetime import now
51
+ from prefect.types._datetime import earliest_possible_datetime, now
52
52
  from prefect.utilities import schema_tools
53
53
 
54
54
  if TYPE_CHECKING:
@@ -353,7 +353,7 @@ async def read_flow_run_graph_v1(
353
353
  async def read_flow_run_graph_v2(
354
354
  flow_run_id: UUID = Path(..., description="The flow run id", alias="id"),
355
355
  since: datetime.datetime = Query(
356
- default=jsonable_encoder(datetime.datetime.min),
356
+ default=jsonable_encoder(earliest_possible_datetime()),
357
357
  description="Only include runs that start or end after this time.",
358
358
  ),
359
359
  db: PrefectDBInterface = Depends(provide_database_interface),
@@ -50,7 +50,7 @@ class ServerEventsSettings(PrefectBaseSettings):
50
50
  )
51
51
 
52
52
  maximum_related_resources: int = Field(
53
- default=500,
53
+ default=100,
54
54
  description="The maximum number of related resources an Event may have.",
55
55
  validation_alias=AliasChoices(
56
56
  AliasPath("maximum_related_resources"),
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: prefect-client
3
- Version: 3.3.3.dev1
3
+ Version: 3.3.4.dev1
4
4
  Summary: Workflow orchestration and management.
5
5
  Project-URL: Changelog, https://github.com/PrefectHQ/prefect/releases
6
6
  Project-URL: Documentation, https://docs.prefect.io
@@ -1,7 +1,7 @@
1
1
  prefect/.prefectignore,sha256=awSprvKT0vI8a64mEOLrMxhxqcO-b0ERQeYpA2rNKVQ,390
2
2
  prefect/__init__.py,sha256=iCdcC5ZmeewikCdnPEP6YBAjPNV5dvfxpYCTpw30Hkw,3685
3
3
  prefect/__main__.py,sha256=WFjw3kaYJY6pOTA7WDOgqjsz8zUEUZHCcj3P5wyVa-g,66
4
- prefect/_build_info.py,sha256=1v_7G1GtnkkZe_J8uxG6qsaa1fWnVzFj2SR5ASzo6Mg,185
4
+ prefect/_build_info.py,sha256=2Pg1IEi5FsuRLEykz7XzfYljFlnC_rYFwHfjBtrMjhA,185
5
5
  prefect/_result_records.py,sha256=S6QmsODkehGVSzbMm6ig022PYbI6gNKz671p_8kBYx4,7789
6
6
  prefect/_waiters.py,sha256=Ia2ITaXdHzevtyWIgJoOg95lrEXQqNEOquHvw3T33UQ,9026
7
7
  prefect/agent.py,sha256=dPvG1jDGD5HSH7aM2utwtk6RaJ9qg13XjkA0lAIgQmY,287
@@ -84,7 +84,7 @@ prefect/client/subscriptions.py,sha256=b2gjoWjrTjshnv_s6zlPN3t0JIe2EKAdMqEzj3-kc
84
84
  prefect/client/utilities.py,sha256=UEJD6nwYg2mD8-GSmru-E2ofXaBlmSFZ2-8T_5rIK6c,3472
85
85
  prefect/client/orchestration/__init__.py,sha256=1GHRA9-JWPBX6oSVNytQ1qL6epFeslRT2oBgZdFDJ68,60807
86
86
  prefect/client/orchestration/base.py,sha256=HM6ryHBZSzuHoCFQM9u5qR5k1dN9Bbr_ah6z1UPNbZQ,1542
87
- prefect/client/orchestration/routes.py,sha256=JFG1OWUBfrxPKW8Q7XWItlhOrSZ67IOySSoFZ6mxzm0,4364
87
+ prefect/client/orchestration/routes.py,sha256=FHG9xyop_eXp6wtg0Fp0G14J6lO8UVsdnhGY5qvnJ9k,4396
88
88
  prefect/client/orchestration/_artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
89
89
  prefect/client/orchestration/_artifacts/client.py,sha256=0GEM4rJWeedKR2xVgWQcX6DpLyn0zKFJF9nfRCQ4tpM,8855
90
90
  prefect/client/orchestration/_automations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -98,7 +98,7 @@ prefect/client/orchestration/_blocks_types/client.py,sha256=alA4xD-yp3mycAbzMyRu
98
98
  prefect/client/orchestration/_concurrency_limits/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
99
99
  prefect/client/orchestration/_concurrency_limits/client.py,sha256=r_oyY7hQbgyG1rntwe7WWcsraQHBKhk6MOPFUAHWiVc,23678
100
100
  prefect/client/orchestration/_deployments/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
101
- prefect/client/orchestration/_deployments/client.py,sha256=GmKUbUB0gdFoPzp7zZVf1kQilErzhW09ivZPZ05-Zew,41548
101
+ prefect/client/orchestration/_deployments/client.py,sha256=I2-RhU15lbEI1_JX_-WJErfp3lkvTCJHja-p4y8hzLA,42923
102
102
  prefect/client/orchestration/_flow_runs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
103
103
  prefect/client/orchestration/_flow_runs/client.py,sha256=fjh5J-LG8tsny7BGYEvynbuGuHDAudYHpx-PamL0GYQ,32220
104
104
  prefect/client/orchestration/_flows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -110,10 +110,10 @@ prefect/client/orchestration/_variables/client.py,sha256=wKBbZBLGgs5feDCil-xxKt3
110
110
  prefect/client/orchestration/_work_pools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
111
111
  prefect/client/orchestration/_work_pools/client.py,sha256=s1DfUQQBgB2sLiVVPhLNTlkueUDE6uFsh4mAzcSA1OE,19881
112
112
  prefect/client/schemas/__init__.py,sha256=InZcDzdeWA2oaV0TlyvoMcyLcbi_aaqU1U9D6Gx-eoU,2747
113
- prefect/client/schemas/actions.py,sha256=n8f-qNQs-mSca_zYdpZSR4A4OwnT6pylkjVc2VwFZBc,33684
113
+ prefect/client/schemas/actions.py,sha256=e4I21SQZt0zSIxdHgPox269eUUOPHzcv0xytgsmyKqY,34403
114
114
  prefect/client/schemas/filters.py,sha256=zaiDkalrIpKjd38V4aP1GHlqD24KTPCZiKtPyX69ZWE,36607
115
- prefect/client/schemas/objects.py,sha256=qEV2lIdK6JGGhNsAiUDsvtPbjdIZZABqdjnA8cMsnak,58999
116
- prefect/client/schemas/responses.py,sha256=9x8gP2O52xEf40EbnSKaKwxS1vIg347t8CqgHGMYCNg,16664
115
+ prefect/client/schemas/objects.py,sha256=nyaodVdbZIl-p5e7BvF5olPoiHZkymXkn7nFkFnXqXA,59402
116
+ prefect/client/schemas/responses.py,sha256=Zdcx7jlIaluEa2uYIOE5mK1HsJvWPErRAcaWM20oY_I,17336
117
117
  prefect/client/schemas/schedules.py,sha256=sxLFk0SmFY7X1Y9R9HyGDqOS3U5NINBWTciUU7vTTic,14836
118
118
  prefect/client/schemas/sorting.py,sha256=L-2Mx-igZPtsUoRUguTcG3nIEstMEMPD97NwPM2Ox5s,2579
119
119
  prefect/client/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -209,7 +209,7 @@ prefect/server/api/deployments.py,sha256=d-GAbVP3T0RVkkz6VN5nsQN7XU7fTjQg-vzYxuo
209
209
  prefect/server/api/events.py,sha256=3-Qdt6ORxFv3nLoogQqvd72zEulJSoAmcqZto2OULuk,9907
210
210
  prefect/server/api/flow_run_notification_policies.py,sha256=F8xNm6bgZTC3nFe9xCUJS4NlU9tLXZ8fShtJqmhT2m4,4828
211
211
  prefect/server/api/flow_run_states.py,sha256=lIdxVE9CqLgtDCuH9bTaKkzHNL81FPrr11liPzvONrw,1661
212
- prefect/server/api/flow_runs.py,sha256=W_9S7MGrTnUnY5NJdjn13LKdRWeUcyzj8lKx0i1BfH0,33709
212
+ prefect/server/api/flow_runs.py,sha256=Lmb165fLbN4DioxjxgDYaAJ5Qxj771iRYaqn-hYq9KM,33744
213
213
  prefect/server/api/flows.py,sha256=Bz0ISh-9oY0W1X3mqA631_8678pQ6tuRGMpSgWAfxOc,7018
214
214
  prefect/server/api/logs.py,sha256=0z78tM2B5sRgJWYRWJn5lHhRoLtZB_OU3C-uALV8tOs,1571
215
215
  prefect/server/api/middleware.py,sha256=WkyuyeJIfo9Q0GAIVU5gO6yIGNVwoHwuBah5AB5oUyw,2733
@@ -261,7 +261,7 @@ prefect/settings/models/server/api.py,sha256=fhj9pt6RGtUHkyriaTPto4NnOwJD4XWLdIy
261
261
  prefect/settings/models/server/database.py,sha256=Ilw452gS4L1L4tk53JP-G080JblPVdWzdSVxhfuXcXQ,11156
262
262
  prefect/settings/models/server/deployments.py,sha256=LjWQr2U1mjItYhuuLqMT_QQ7P4KHqC-tKFfA-rEKefs,898
263
263
  prefect/settings/models/server/ephemeral.py,sha256=rh8Py5Nxh-gq9KgfB7CDnIgT_nuOuv59OrLGuhMIGmk,1043
264
- prefect/settings/models/server/events.py,sha256=s766htbPv2yx7w-09i8BrtAZ_js--AtHYtvXeK7puIk,5578
264
+ prefect/settings/models/server/events.py,sha256=9rdlbLz9SIg_easm1UcFTfX1seS935Xtv5d9y3r39Eo,5578
265
265
  prefect/settings/models/server/flow_run_graph.py,sha256=PuAZqqdu6fzvrbUgXZzyntUH_Ii_bP7qezgcgvW7ULk,1146
266
266
  prefect/settings/models/server/root.py,sha256=Dk_Zx4eGUy1h2cAetDKphnd6TWhDrK6DHOLJxdP7e1Y,5215
267
267
  prefect/settings/models/server/services.py,sha256=8CXfs4EKrJkrSUYxI1Om4uUtyYJ-WGhqjRafpAYALjQ,18610
@@ -316,7 +316,7 @@ prefect/workers/cloud.py,sha256=dPvG1jDGD5HSH7aM2utwtk6RaJ9qg13XjkA0lAIgQmY,287
316
316
  prefect/workers/process.py,sha256=uxOwcqA2Ps-V-W6WeSdKCQMINrCxBEVx1K1Un8pb7vs,8973
317
317
  prefect/workers/server.py,sha256=2pmVeJZiVbEK02SO6BEZaBIvHMsn6G8LzjW8BXyiTtk,1952
318
318
  prefect/workers/utilities.py,sha256=VfPfAlGtTuDj0-Kb8WlMgAuOfgXCdrGAnKMapPSBrwc,2483
319
- prefect_client-3.3.3.dev1.dist-info/METADATA,sha256=WlCSo0IoVks5TpfKQFqnzyaAAl2aW-5hZxDR3YlMp8s,7456
320
- prefect_client-3.3.3.dev1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
321
- prefect_client-3.3.3.dev1.dist-info/licenses/LICENSE,sha256=MCxsn8osAkzfxKC4CC_dLcUkU8DZLkyihZ8mGs3Ah3Q,11357
322
- prefect_client-3.3.3.dev1.dist-info/RECORD,,
319
+ prefect_client-3.3.4.dev1.dist-info/METADATA,sha256=5BgLyqTxygTCFTnegdpPXAoVXruWXZ7DW_Fw_hDmBxM,7456
320
+ prefect_client-3.3.4.dev1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
321
+ prefect_client-3.3.4.dev1.dist-info/licenses/LICENSE,sha256=MCxsn8osAkzfxKC4CC_dLcUkU8DZLkyihZ8mGs3Ah3Q,11357
322
+ prefect_client-3.3.4.dev1.dist-info/RECORD,,