arthur-client 1.4.1514__py3-none-any.whl → 1.4.1516__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.

Potentially problematic release.


This version of arthur-client might be problematic. Click here for more details.

@@ -19,7 +19,6 @@ import json
19
19
 
20
20
  from pydantic import BaseModel, ConfigDict, Field, StrictStr
21
21
  from typing import Any, ClassVar, Dict, List, Optional
22
- from typing_extensions import Annotated
23
22
  from arthur_client.api_bindings.models.custom_aggregation_version_spec_schema_aggregate_args_inner import CustomAggregationVersionSpecSchemaAggregateArgsInner
24
23
  from arthur_client.api_bindings.models.reported_custom_aggregation import ReportedCustomAggregation
25
24
  from typing import Optional, Set
@@ -29,7 +28,7 @@ class PostCustomAggregationSpecSchema(BaseModel):
29
28
  """
30
29
  PostCustomAggregationSpecSchema
31
30
  """ # noqa: E501
32
- reported_aggregations: Annotated[List[ReportedCustomAggregation], Field(min_length=1)] = Field(description="Metadata for every aggregation the custom aggregation reports.")
31
+ reported_aggregations: List[ReportedCustomAggregation] = Field(description="Metadata for every aggregation the custom aggregation reports.")
33
32
  aggregate_args: List[CustomAggregationVersionSpecSchemaAggregateArgsInner] = Field(description="List of parameters to the custom aggregation's query function.")
34
33
  sql: StrictStr = Field(description="DuckDBSQL query for the custom aggregation.")
35
34
  name: StrictStr = Field(description="Name of the custom aggregation function.")
@@ -19,7 +19,6 @@ import json
19
19
 
20
20
  from pydantic import BaseModel, ConfigDict, Field, StrictStr
21
21
  from typing import Any, ClassVar, Dict, List
22
- from typing_extensions import Annotated
23
22
  from arthur_client.api_bindings.models.custom_aggregation_version_spec_schema_aggregate_args_inner import CustomAggregationVersionSpecSchemaAggregateArgsInner
24
23
  from arthur_client.api_bindings.models.reported_custom_aggregation import ReportedCustomAggregation
25
24
  from typing import Optional, Set
@@ -29,7 +28,7 @@ class PutCustomAggregationSpecSchema(BaseModel):
29
28
  """
30
29
  PutCustomAggregationSpecSchema
31
30
  """ # noqa: E501
32
- reported_aggregations: Annotated[List[ReportedCustomAggregation], Field(min_length=1)] = Field(description="Metadata for every aggregation the custom aggregation reports.")
31
+ reported_aggregations: List[ReportedCustomAggregation] = Field(description="Metadata for every aggregation the custom aggregation reports.")
33
32
  aggregate_args: List[CustomAggregationVersionSpecSchemaAggregateArgsInner] = Field(description="List of parameters to the custom aggregation's query function.")
34
33
  sql: StrictStr = Field(description="DuckDBSQL query for the custom aggregation.")
35
34
  __properties: ClassVar[List[str]] = ["reported_aggregations", "aggregate_args", "sql"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: arthur-client
3
- Version: 1.4.1514
3
+ Version: 1.4.1516
4
4
  Summary: Arthur Python API Client Library
5
5
  License: MIT
6
6
  Keywords: api arthur client ArthurAI sdk ml model monitoring
@@ -535,7 +535,7 @@ arthur_client/api_bindings/models/post_alert.py,sha256=PX6zWD7TrHcBIGTGhCePCXmP8
535
535
  arthur_client/api_bindings/models/post_alert_rule.py,sha256=8t6pq6XlBZaicYSzaIYyxDpWm0TenX0LYwEinlB9-qI,4348
536
536
  arthur_client/api_bindings/models/post_alerts.py,sha256=N9DYhMTPkH-A4Bcw5-RfNcJfkLzj-RvHlEHbxis4Emk,3066
537
537
  arthur_client/api_bindings/models/post_connector_spec.py,sha256=CsUtXNUrN5OEWDIaela9B3Ls1t1sj9ndnhBj-8S6Qwg,3919
538
- arthur_client/api_bindings/models/post_custom_aggregation_spec_schema.py,sha256=NgjFclSWxI5DLuYHtOl2YK_NC-cE00pTfZOfjLZ2_RI,4952
538
+ arthur_client/api_bindings/models/post_custom_aggregation_spec_schema.py,sha256=VxduaqQmilqHvIViTxJn3OVCy_kcYJggIQPDbegJ2Ac,4880
539
539
  arthur_client/api_bindings/models/post_data_plane.py,sha256=TfM4YQqdCnW7B13flqU9S2kED-lv8dvg3SB56gBKdyI,3221
540
540
  arthur_client/api_bindings/models/post_data_plane_association.py,sha256=mEdP-ff6nLfCkj80jW0YGW0RWKJXOySnQRPJTbydX9g,2736
541
541
  arthur_client/api_bindings/models/post_data_retrieval_operation.py,sha256=E1Ck6p6wh28OhKsBDBnRlzEeQO-Q8HsTNWECLpzKuV4,4307
@@ -572,7 +572,7 @@ arthur_client/api_bindings/models/project_bound_resource_metadata.py,sha256=vwu3
572
572
  arthur_client/api_bindings/models/project_sort.py,sha256=nWloC34xi160fMgSODHUd2LOSibZ8mr7YjjMqyBWVjA,785
573
573
  arthur_client/api_bindings/models/put_available_dataset.py,sha256=S4zcKo75CZ2KTk5Al8Iwhsr9HYSjI0NXuMOi1vD4Xns,5415
574
574
  arthur_client/api_bindings/models/put_available_datasets.py,sha256=lHO9O_vR6x9QYDZccVcR7-YDjFK_dkuE_VRkQ49u6Yk,3230
575
- arthur_client/api_bindings/models/put_custom_aggregation_spec_schema.py,sha256=SuSxxY-h0aNCbPOdGzgt3EDp5ESsmWqYp6NBxF-lM0o,4472
575
+ arthur_client/api_bindings/models/put_custom_aggregation_spec_schema.py,sha256=bNSkf2pT1Kd7uXOy4HAxnTjbrLlAyqjSBrTy5IB9AiY,4400
576
576
  arthur_client/api_bindings/models/put_dataset_schema.py,sha256=PWVbLSRrr62_Jc71srZRwQ7FXxaGY6LyF4kuvj4TS44,3097
577
577
  arthur_client/api_bindings/models/put_job_state.py,sha256=ZSgzbLEu06NqTpBzdVI8jYNZxVeoDR-J1aPgLfmmVBg,2599
578
578
  arthur_client/api_bindings/models/put_model_metric_spec.py,sha256=fFJL-OVYgL4zd9x7tNd-Lfjo3QARSPI3ICsXYn0hM2M,3205
@@ -988,6 +988,6 @@ arthur_client/auth/device_authorizer.py,sha256=gVUYQA7F--lSorrW7lYibWK5Pnhuygh1V
988
988
  arthur_client/auth/discovery.py,sha256=M-ZJGVxn14lC3eZ6KVifTU6fiFLnq4kenVhp0pFZsnM,1274
989
989
  arthur_client/auth/oauth_api_config.py,sha256=K4UiyWm3ioBkARouNaXS5Iy8dI3YgkvSfORe-nyeKug,1418
990
990
  arthur_client/auth/session.py,sha256=b8AXauCkGn4H-gFzP8Y3cCIwuxGuygLQNB4tGi1Y8-4,2730
991
- arthur_client-1.4.1514.dist-info/METADATA,sha256=LruiQ0gaMOamDDxHXB2qpZU9x85i06DJ6DvrLybdNCc,1730
992
- arthur_client-1.4.1514.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
993
- arthur_client-1.4.1514.dist-info/RECORD,,
991
+ arthur_client-1.4.1516.dist-info/METADATA,sha256=1vP4wKRLMBCideingb6EwGHCsgNvIjYPTZVkhv7vWko,1730
992
+ arthur_client-1.4.1516.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
993
+ arthur_client-1.4.1516.dist-info/RECORD,,