arthur-client 1.4.1238__py3-none-any.whl → 1.4.1240__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.
@@ -78,6 +78,7 @@ from arthur_client.api_bindings.models.base_column_parameter_schema import BaseC
78
78
  from arthur_client.api_bindings.models.base_column_parameter_schema_allowed_column_types_inner import BaseColumnParameterSchemaAllowedColumnTypesInner
79
79
  from arthur_client.api_bindings.models.base_dataset_parameter_schema import BaseDatasetParameterSchema
80
80
  from arthur_client.api_bindings.models.base_literal_parameter_schema import BaseLiteralParameterSchema
81
+ from arthur_client.api_bindings.models.base_reported_aggregation import BaseReportedAggregation
81
82
  from arthur_client.api_bindings.models.base_role import BaseRole
82
83
  from arthur_client.api_bindings.models.bound_member import BoundMember
83
84
  from arthur_client.api_bindings.models.bound_member_kind import BoundMemberKind
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
11
11
  **metric_type** | [**AggregationMetricType**](AggregationMetricType.md) | Return type of the aggregations aggregate function. |
12
12
  **init_args** | [**List[AggregationSpecSchemaInitArgsInner]**](AggregationSpecSchemaInitArgsInner.md) | List of parameters to the aggregation's init function. |
13
13
  **aggregate_args** | [**List[AggregationSpecSchemaInitArgsInner]**](AggregationSpecSchemaInitArgsInner.md) | List of parameters to the aggregation's aggregate function. |
14
+ **reported_aggregations** | [**List[BaseReportedAggregation]**](BaseReportedAggregation.md) | List of aggregations reported by the metric. |
14
15
 
15
16
  ## Example
16
17
 
@@ -0,0 +1,30 @@
1
+ # BaseReportedAggregation
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **metric_name** | **str** | Name of the reported aggregation metric. |
9
+ **description** | **str** | Description of the reported aggregation metric and what it aggregates. |
10
+
11
+ ## Example
12
+
13
+ ```python
14
+ from arthur_client.api_bindings.models.base_reported_aggregation import BaseReportedAggregation
15
+
16
+ # TODO update the JSON string below
17
+ json = "{}"
18
+ # create an instance of BaseReportedAggregation from a JSON string
19
+ base_reported_aggregation_instance = BaseReportedAggregation.from_json(json)
20
+ # print the JSON string representation of the object
21
+ print(BaseReportedAggregation.to_json())
22
+
23
+ # convert the object into a dict
24
+ base_reported_aggregation_dict = base_reported_aggregation_instance.to_dict()
25
+ # create an instance of BaseReportedAggregation from a dict
26
+ base_reported_aggregation_from_dict = BaseReportedAggregation.from_dict(base_reported_aggregation_dict)
27
+ ```
28
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
29
+
30
+
@@ -35,6 +35,7 @@ from arthur_client.api_bindings.models.base_column_parameter_schema import BaseC
35
35
  from arthur_client.api_bindings.models.base_column_parameter_schema_allowed_column_types_inner import BaseColumnParameterSchemaAllowedColumnTypesInner
36
36
  from arthur_client.api_bindings.models.base_dataset_parameter_schema import BaseDatasetParameterSchema
37
37
  from arthur_client.api_bindings.models.base_literal_parameter_schema import BaseLiteralParameterSchema
38
+ from arthur_client.api_bindings.models.base_reported_aggregation import BaseReportedAggregation
38
39
  from arthur_client.api_bindings.models.base_role import BaseRole
39
40
  from arthur_client.api_bindings.models.bound_member import BoundMember
40
41
  from arthur_client.api_bindings.models.bound_member_kind import BoundMemberKind
@@ -21,6 +21,7 @@ from pydantic import BaseModel, ConfigDict, Field, StrictStr
21
21
  from typing import Any, ClassVar, Dict, List
22
22
  from arthur_client.api_bindings.models.aggregation_metric_type import AggregationMetricType
23
23
  from arthur_client.api_bindings.models.aggregation_spec_schema_init_args_inner import AggregationSpecSchemaInitArgsInner
24
+ from arthur_client.api_bindings.models.base_reported_aggregation import BaseReportedAggregation
24
25
  from typing import Optional, Set
25
26
  from typing_extensions import Self
26
27
 
@@ -34,7 +35,8 @@ class AggregationSpecSchema(BaseModel):
34
35
  metric_type: AggregationMetricType = Field(description="Return type of the aggregations aggregate function.")
35
36
  init_args: List[AggregationSpecSchemaInitArgsInner] = Field(description="List of parameters to the aggregation's init function.")
36
37
  aggregate_args: List[AggregationSpecSchemaInitArgsInner] = Field(description="List of parameters to the aggregation's aggregate function.")
37
- __properties: ClassVar[List[str]] = ["name", "id", "description", "metric_type", "init_args", "aggregate_args"]
38
+ reported_aggregations: List[BaseReportedAggregation] = Field(description="List of aggregations reported by the metric.")
39
+ __properties: ClassVar[List[str]] = ["name", "id", "description", "metric_type", "init_args", "aggregate_args", "reported_aggregations"]
38
40
 
39
41
  model_config = ConfigDict(
40
42
  populate_by_name=True,
@@ -89,6 +91,13 @@ class AggregationSpecSchema(BaseModel):
89
91
  if _item_aggregate_args:
90
92
  _items.append(_item_aggregate_args.to_dict())
91
93
  _dict['aggregate_args'] = _items
94
+ # override the default output from pydantic by calling `to_dict()` of each item in reported_aggregations (list)
95
+ _items = []
96
+ if self.reported_aggregations:
97
+ for _item_reported_aggregations in self.reported_aggregations:
98
+ if _item_reported_aggregations:
99
+ _items.append(_item_reported_aggregations.to_dict())
100
+ _dict['reported_aggregations'] = _items
92
101
  return _dict
93
102
 
94
103
  @classmethod
@@ -106,7 +115,8 @@ class AggregationSpecSchema(BaseModel):
106
115
  "description": obj.get("description"),
107
116
  "metric_type": obj.get("metric_type"),
108
117
  "init_args": [AggregationSpecSchemaInitArgsInner.from_dict(_item) for _item in obj["init_args"]] if obj.get("init_args") is not None else None,
109
- "aggregate_args": [AggregationSpecSchemaInitArgsInner.from_dict(_item) for _item in obj["aggregate_args"]] if obj.get("aggregate_args") is not None else None
118
+ "aggregate_args": [AggregationSpecSchemaInitArgsInner.from_dict(_item) for _item in obj["aggregate_args"]] if obj.get("aggregate_args") is not None else None,
119
+ "reported_aggregations": [BaseReportedAggregation.from_dict(_item) for _item in obj["reported_aggregations"]] if obj.get("reported_aggregations") is not None else None
110
120
  })
111
121
  return _obj
112
122
 
@@ -0,0 +1,89 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Arthur Scope
5
+
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+
8
+ The version of the OpenAPI document: 0.1.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ from __future__ import annotations
16
+ import pprint
17
+ import re # noqa: F401
18
+ import json
19
+
20
+ from pydantic import BaseModel, ConfigDict, Field, StrictStr
21
+ from typing import Any, ClassVar, Dict, List
22
+ from typing import Optional, Set
23
+ from typing_extensions import Self
24
+
25
+ class BaseReportedAggregation(BaseModel):
26
+ """
27
+ BaseReportedAggregation
28
+ """ # noqa: E501
29
+ metric_name: StrictStr = Field(description="Name of the reported aggregation metric.")
30
+ description: StrictStr = Field(description="Description of the reported aggregation metric and what it aggregates.")
31
+ __properties: ClassVar[List[str]] = ["metric_name", "description"]
32
+
33
+ model_config = ConfigDict(
34
+ populate_by_name=True,
35
+ validate_assignment=True,
36
+ protected_namespaces=(),
37
+ )
38
+
39
+
40
+ def to_str(self) -> str:
41
+ """Returns the string representation of the model using alias"""
42
+ return pprint.pformat(self.model_dump(by_alias=True))
43
+
44
+ def to_json(self) -> str:
45
+ """Returns the JSON representation of the model using alias"""
46
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
47
+ return json.dumps(self.to_dict())
48
+
49
+ @classmethod
50
+ def from_json(cls, json_str: str) -> Optional[Self]:
51
+ """Create an instance of BaseReportedAggregation from a JSON string"""
52
+ return cls.from_dict(json.loads(json_str))
53
+
54
+ def to_dict(self) -> Dict[str, Any]:
55
+ """Return the dictionary representation of the model using alias.
56
+
57
+ This has the following differences from calling pydantic's
58
+ `self.model_dump(by_alias=True)`:
59
+
60
+ * `None` is only added to the output dict for nullable fields that
61
+ were set at model initialization. Other fields with value `None`
62
+ are ignored.
63
+ """
64
+ excluded_fields: Set[str] = set([
65
+ ])
66
+
67
+ _dict = self.model_dump(
68
+ by_alias=True,
69
+ exclude=excluded_fields,
70
+ exclude_none=True,
71
+ )
72
+ return _dict
73
+
74
+ @classmethod
75
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
76
+ """Create an instance of BaseReportedAggregation from a dict"""
77
+ if obj is None:
78
+ return None
79
+
80
+ if not isinstance(obj, dict):
81
+ return cls.model_validate(obj)
82
+
83
+ _obj = cls.model_validate({
84
+ "metric_name": obj.get("metric_name"),
85
+ "description": obj.get("description")
86
+ })
87
+ return _obj
88
+
89
+
@@ -44,6 +44,11 @@ class TestAggregationSpecSchema(unittest.TestCase):
44
44
  ],
45
45
  aggregate_args = [
46
46
  null
47
+ ],
48
+ reported_aggregations = [
49
+ arthur_client.api_bindings.models.base_reported_aggregation.BaseReportedAggregation(
50
+ metric_name = '',
51
+ description = '', )
47
52
  ]
48
53
  )
49
54
  else:
@@ -58,6 +63,11 @@ class TestAggregationSpecSchema(unittest.TestCase):
58
63
  aggregate_args = [
59
64
  null
60
65
  ],
66
+ reported_aggregations = [
67
+ arthur_client.api_bindings.models.base_reported_aggregation.BaseReportedAggregation(
68
+ metric_name = '',
69
+ description = '', )
70
+ ],
61
71
  )
62
72
  """
63
73
 
@@ -0,0 +1,54 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Arthur Scope
5
+
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+
8
+ The version of the OpenAPI document: 0.1.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ import unittest
16
+
17
+ from arthur_client.api_bindings.models.base_reported_aggregation import BaseReportedAggregation
18
+
19
+ class TestBaseReportedAggregation(unittest.TestCase):
20
+ """BaseReportedAggregation unit test stubs"""
21
+
22
+ def setUp(self):
23
+ pass
24
+
25
+ def tearDown(self):
26
+ pass
27
+
28
+ def make_instance(self, include_optional) -> BaseReportedAggregation:
29
+ """Test BaseReportedAggregation
30
+ include_optional is a boolean, when False only required
31
+ params are included, when True both required and
32
+ optional params are included """
33
+ # uncomment below to create an instance of `BaseReportedAggregation`
34
+ """
35
+ model = BaseReportedAggregation()
36
+ if include_optional:
37
+ return BaseReportedAggregation(
38
+ metric_name = '',
39
+ description = ''
40
+ )
41
+ else:
42
+ return BaseReportedAggregation(
43
+ metric_name = '',
44
+ description = '',
45
+ )
46
+ """
47
+
48
+ def testBaseReportedAggregation(self):
49
+ """Test BaseReportedAggregation"""
50
+ # inst_req_only = self.make_instance(include_optional=False)
51
+ # inst_req_and_optional = self.make_instance(include_optional=True)
52
+
53
+ if __name__ == '__main__':
54
+ unittest.main()
@@ -46,6 +46,11 @@ class TestResourceListAggregationSpecSchema(unittest.TestCase):
46
46
  ],
47
47
  aggregate_args = [
48
48
  null
49
+ ],
50
+ reported_aggregations = [
51
+ arthur_client.api_bindings.models.base_reported_aggregation.BaseReportedAggregation(
52
+ metric_name = '',
53
+ description = '', )
49
54
  ], )
50
55
  ],
51
56
  pagination = arthur_client.api_bindings.models.pagination.Pagination(
@@ -67,6 +72,11 @@ class TestResourceListAggregationSpecSchema(unittest.TestCase):
67
72
  ],
68
73
  aggregate_args = [
69
74
  null
75
+ ],
76
+ reported_aggregations = [
77
+ arthur_client.api_bindings.models.base_reported_aggregation.BaseReportedAggregation(
78
+ metric_name = '',
79
+ description = '', )
70
80
  ], )
71
81
  ],
72
82
  pagination = arthur_client.api_bindings.models.pagination.Pagination(
@@ -241,6 +241,7 @@ Class | Method | HTTP request | Description
241
241
  - [BaseColumnParameterSchemaAllowedColumnTypesInner](arthur_client/api_bindings/docs/BaseColumnParameterSchemaAllowedColumnTypesInner.md)
242
242
  - [BaseDatasetParameterSchema](arthur_client/api_bindings/docs/BaseDatasetParameterSchema.md)
243
243
  - [BaseLiteralParameterSchema](arthur_client/api_bindings/docs/BaseLiteralParameterSchema.md)
244
+ - [BaseReportedAggregation](arthur_client/api_bindings/docs/BaseReportedAggregation.md)
244
245
  - [BaseRole](arthur_client/api_bindings/docs/BaseRole.md)
245
246
  - [BoundMember](arthur_client/api_bindings/docs/BoundMember.md)
246
247
  - [BoundMemberKind](arthur_client/api_bindings/docs/BoundMemberKind.md)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: arthur-client
3
- Version: 1.4.1238
3
+ Version: 1.4.1240
4
4
  Summary: Arthur Python API Client Library
5
5
  License: MIT
6
6
  Keywords: api arthur client ArthurAI sdk ml model monitoring
@@ -1,6 +1,6 @@
1
1
  arthur_client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  arthur_client/__version__.py,sha256=s-q1tbKb80MgXByJ0ZY3IK-bWeC7AxqtoU_ZYmsb-qk,25
3
- arthur_client/api_bindings/__init__.py,sha256=yGYjcjbYvCSjc1E6GP6jnmio5Hmmb8h5t6hwsZJscS0,27117
3
+ arthur_client/api_bindings/__init__.py,sha256=ovo49JT-t9g3gCCb4ZBwRxpEvKcCH5LxhqqJjr1TfA0,27213
4
4
  arthur_client/api_bindings/api/__init__.py,sha256=LUOVle03SD-ZkuW_-wPOHEZTW8kF_VfVPzT8DsFBKIg,2112
5
5
  arthur_client/api_bindings/api/alert_rules_v1_api.py,sha256=6bvhsumFswvhaf9Wik6heiIoYgnqy3foQ8i-K7rJWdQ,77212
6
6
  arthur_client/api_bindings/api/alerts_v1_api.py,sha256=RVP4gZUK70I7rn2B9xSeN3CRJaix3C14BLQAVvVTh2Q,41291
@@ -34,7 +34,7 @@ arthur_client/api_bindings/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gj
34
34
  arthur_client/api_bindings/configuration.py,sha256=fMuF7CsSXY90OPLWc4aySWpKtGtjPCmWUkIH5ARpQGI,15339
35
35
  arthur_client/api_bindings/docs/AggregationMetricType.md,sha256=6hEXFM-9byb66vDncISF7YWnKEDUVSuAGas0V1nLSgs,265
36
36
  arthur_client/api_bindings/docs/AggregationSpec.md,sha256=w2eUWxapFrQYtvGBD57UGaz1xfBugQm_70s46RM6eVs,1224
37
- arthur_client/api_bindings/docs/AggregationSpecSchema.md,sha256=7hoOLynhI5Vyl2uRC_mvX4qHurztp4Uwyrkk6lovnQw,1655
37
+ arthur_client/api_bindings/docs/AggregationSpecSchema.md,sha256=PyU_9ea0_fNf0Lu0zllObajIS5_b1cDDxIN1coqz6mM,1797
38
38
  arthur_client/api_bindings/docs/AggregationSpecSchemaInitArgsInner.md,sha256=ibXBn7uJ1LOsUgfyoBqYtdiGJ3oOXn553g6WIfJzCqY,2307
39
39
  arthur_client/api_bindings/docs/Alert.md,sha256=CUCbUFpm3vIGHLIrvGprVCcf9M70Nv0Z645zHBDBLEw,1771
40
40
  arthur_client/api_bindings/docs/AlertBound.md,sha256=aCigWEZ-3MIYVs8eOtJn0E986Pv1vEzv4wbU1Zidovg,272
@@ -56,6 +56,7 @@ arthur_client/api_bindings/docs/BaseColumnParameterSchema.md,sha256=KCp2u1H6t8Eq
56
56
  arthur_client/api_bindings/docs/BaseColumnParameterSchemaAllowedColumnTypesInner.md,sha256=9lNL1NknrJNpyFUAnHDNaHT_bfT0aULGTcvesXv2DWI,1563
57
57
  arthur_client/api_bindings/docs/BaseDatasetParameterSchema.md,sha256=nmHDBEMnUskbXNrXp9X8ymHr1a6tkDmXLIBftTP-F9M,1372
58
58
  arthur_client/api_bindings/docs/BaseLiteralParameterSchema.md,sha256=3wxTSPse9Wm8JC5dHOZjmumXJwutBdBF3zpDmvy_GCg,1363
59
+ arthur_client/api_bindings/docs/BaseReportedAggregation.md,sha256=bC1hgMmdyhVr0QowJ5I83pWhIkrBEDTqLIQy0QaZvXc,1162
59
60
  arthur_client/api_bindings/docs/BaseRole.md,sha256=o1r3EFJORBpdc6GO09UjL6nJlkica7ewidWhYZLnoaI,971
60
61
  arthur_client/api_bindings/docs/BoundMember.md,sha256=iK46AKpxJ6l3mJzqoWnGg1dLpCZDRbCw4t83K6xCC3A,922
61
62
  arthur_client/api_bindings/docs/BoundMemberKind.md,sha256=c9F6NAc73bTE4k6Hq2svCIoU6OE3HQbelNFNzEuigBE,251
@@ -347,10 +348,10 @@ arthur_client/api_bindings/docs/Workspace.md,sha256=G4pN-rx4iU2-sxOhF-1Fp6QbHYrr
347
348
  arthur_client/api_bindings/docs/WorkspaceSort.md,sha256=g2lRzcM9sBnHufImJj3fvRQYgiQRt885iYZc7OkE9Mk,299
348
349
  arthur_client/api_bindings/docs/WorkspacesV1Api.md,sha256=WM4FbbGbsiekeP2VnFE1Em0gT9-rXb45aBoqPTiBDqI,14011
349
350
  arthur_client/api_bindings/exceptions.py,sha256=yy0Uot-WkcM6-PbNo2KDnrKAUL_PFmeCTD2tvq_gFp4,5977
350
- arthur_client/api_bindings/models/__init__.py,sha256=zdyHxzoZzyn6BhS5gl8xPcU3-YVq0TOebyM-Y6BQUc8,24401
351
+ arthur_client/api_bindings/models/__init__.py,sha256=EVZPO5-a2gZidCUBQ7viSIuJeUoOM_GWbZ4qQ1ML-OQ,24497
351
352
  arthur_client/api_bindings/models/aggregation_metric_type.py,sha256=USKpDqhX4TQ4lqIoHOp3q70mydsf1u_zc1EKus9QhYo,783
352
353
  arthur_client/api_bindings/models/aggregation_spec.py,sha256=mbCw-IPV4mUA9f8WtSZL9acjSu3L4pCcTsofxxf2Mq8,4110
353
- arthur_client/api_bindings/models/aggregation_spec_schema.py,sha256=wLNgL29Edgv7JbpSxkVd8sX6vJ-5GkRVCjG26_hOTUQ,4626
354
+ arthur_client/api_bindings/models/aggregation_spec_schema.py,sha256=GR6ia-6kEPFc0KtrY0b4TrkooRvNDHP-kNbPbT2o4jQ,5480
354
355
  arthur_client/api_bindings/models/aggregation_spec_schema_init_args_inner.py,sha256=x2rmtaasa05h5VaKLk1nSuwaAyUfE4d0FNAaJgEOfFI,7540
355
356
  arthur_client/api_bindings/models/alert.py,sha256=g4XpIrIq_txJHAYxdnrSxrHDkwVqIPpMzkKXNf1IsP0,5968
356
357
  arthur_client/api_bindings/models/alert_bound.py,sha256=iobunYuV7vKLg6EryqI3MftCkYrmeJtRC7ATONCfztU,768
@@ -369,6 +370,7 @@ arthur_client/api_bindings/models/base_column_parameter_schema.py,sha256=QMOdKGM
369
370
  arthur_client/api_bindings/models/base_column_parameter_schema_allowed_column_types_inner.py,sha256=5FxVd5gDDX8Z9uW4zusLA3Cm-xiEsImAjWaqJIOVcaA,5831
370
371
  arthur_client/api_bindings/models/base_dataset_parameter_schema.py,sha256=40XwojDDvI4luQbN1ZRr1gP0U3mNnhrATk5oaHdpG2M,3920
371
372
  arthur_client/api_bindings/models/base_literal_parameter_schema.py,sha256=Q45XMom1PBk5A9FBSTLQLlKjqEJVil8sXhEwoXXNAiQ,3653
373
+ arthur_client/api_bindings/models/base_reported_aggregation.py,sha256=VxffDTKrATSD3wnc3hFMt_psHRRTeWcrYQMH5lv5nQo,2799
372
374
  arthur_client/api_bindings/models/base_role.py,sha256=ADSbaBWj71pZGMsFMfjXOCKXy6jRU0cWZzfHzL_kX2Q,3009
373
375
  arthur_client/api_bindings/models/bound_member.py,sha256=n0BaOssF_HywYv_EtHqYpqLQzLAy-1shszVgVbUZwSs,2625
374
376
  arthur_client/api_bindings/models/bound_member_kind.py,sha256=osjo6iZteKM0n546-e7qZyoTJUMTuhKhi7wr49ekkU8,757
@@ -639,7 +641,7 @@ arthur_client/api_bindings/rest.py,sha256=us_sthHHXrRAnGdug4ZYIOMOUdjnA44beN36m_
639
641
  arthur_client/api_bindings/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
640
642
  arthur_client/api_bindings/test/test_aggregation_metric_type.py,sha256=OgYPLHZt7XwRlkpSwKWv1bpd92KFJXLms6PbEp7DyzA,778
641
643
  arthur_client/api_bindings/test/test_aggregation_spec.py,sha256=oHSv8SRUHsqMC7SctzuTdE6kWn5qFtTpjTZQzor2N2Y,2387
642
- arthur_client/api_bindings/test/test_aggregation_spec_schema.py,sha256=z46J7Gj9fi2X2VhR7oe9kVErp-K7gCcIS-FKNQatNL8,2030
644
+ arthur_client/api_bindings/test/test_aggregation_spec_schema.py,sha256=MaA73w5jxf1ci1kLJsmZ5E5GC81ixFqRqx1_sN2_8cU,2544
643
645
  arthur_client/api_bindings/test/test_aggregation_spec_schema_init_args_inner.py,sha256=Tglc-ZPkPkd0gy8cRtI9jx1jLMlTjhPU4Edd0rtcBh4,2377
644
646
  arthur_client/api_bindings/test/test_alert.py,sha256=3xc2qHhy5RLkE0wNGFhJHArU5yC9oAZRhxNVBmWVDhU,3015
645
647
  arthur_client/api_bindings/test/test_alert_bound.py,sha256=_HMCB2rLWmIKFhY4WgJGsic4Qx1d7mMyIKe8GfzvcXU,700
@@ -661,6 +663,7 @@ arthur_client/api_bindings/test/test_base_column_parameter_schema.py,sha256=wrFK
661
663
  arthur_client/api_bindings/test/test_base_column_parameter_schema_allowed_column_types_inner.py,sha256=IHpFK3rlX0PcqU9PjCjO6zOaWaNbv7F8Xc6bsfuk14s,2085
662
664
  arthur_client/api_bindings/test/test_base_dataset_parameter_schema.py,sha256=gvOEEMfBG_lDKW2Vb-itzViKiDw4ijf0_FWo6X2wyJg,1824
663
665
  arthur_client/api_bindings/test/test_base_literal_parameter_schema.py,sha256=pq2NEOrbO4-be9D7uwH-xzzTuLDRqZfBiMIhdYtAA7U,1867
666
+ arthur_client/api_bindings/test/test_base_reported_aggregation.py,sha256=ZXnhCatHtuRy26JaVp2X6yo69epql12SU851JbTFHNA,1616
664
667
  arthur_client/api_bindings/test/test_base_role.py,sha256=2l128_gt_2txTMvvD11VxkYsXZoYMkFcP3amoCo2kFE,1471
665
668
  arthur_client/api_bindings/test/test_bound_member.py,sha256=ZJB9MQHfWpXsbSMzeGDchJWStSFkdXY-E72XEnTRAtM,1439
666
669
  arthur_client/api_bindings/test/test_bound_member_kind.py,sha256=ISiKxpkUPKevr3NBinOPVys6IBklYxvb7YCWWyK-fxM,736
@@ -878,7 +881,7 @@ arthur_client/api_bindings/test/test_register_user.py,sha256=__AJ5xIy18xPu6NOXpK
878
881
  arthur_client/api_bindings/test/test_registration_v1_api.py,sha256=HHZwOHPkUBHUuoXBJPITnvUcJleKgPO7AD1xrJlbve4,821
879
882
  arthur_client/api_bindings/test/test_reported_custom_aggregation.py,sha256=fCXzz9uxVmPuERWra4g4lW2MTXAxTIq7pnBc0rDeX0U,2036
880
883
  arthur_client/api_bindings/test/test_resource_kind.py,sha256=LpDGag2GPVDMC7MzXEsNcWA4zyWqAQdrolAOQof5ACk,714
881
- arthur_client/api_bindings/test/test_resource_list_aggregation_spec_schema.py,sha256=bYwDIhtCqmWLG0dbO5WGcN2YAyOpMh2QcMCd1VlNpSE,3128
884
+ arthur_client/api_bindings/test/test_resource_list_aggregation_spec_schema.py,sha256=eLWGxb4fHA6v8umk8pbPBUMFm7u90024IHeRcSoTlqg,3724
882
885
  arthur_client/api_bindings/test/test_resource_list_alert_rule.py,sha256=M2mfPs68VXKl075luM_2s447p2hIbJw8-cN6Pv0NmM0,5875
883
886
  arthur_client/api_bindings/test/test_resource_list_available_dataset.py,sha256=cpQk91vzjLRg60XRMWLWdyHrKo67-Ij_b6dYkNw5v6A,6967
884
887
  arthur_client/api_bindings/test/test_resource_list_connector_spec.py,sha256=TdAHCROu_6B7DDo-WCC7nZsoukVpn8Hu1sp8Qjxcnx8,6091
@@ -951,13 +954,13 @@ arthur_client/api_bindings/test/test_webhooks_v1_api.py,sha256=7x3pb2tZdXbnSAI-w
951
954
  arthur_client/api_bindings/test/test_workspace.py,sha256=hDjh6CQ8oHTVk_X3fb_wKVPp_cY9bQFAGmNh7qMKpIw,1918
952
955
  arthur_client/api_bindings/test/test_workspace_sort.py,sha256=PDxv__jzX9VXu54ExqHJTLHRn9XKwGVwYjZ4OdFBmLk,721
953
956
  arthur_client/api_bindings/test/test_workspaces_v1_api.py,sha256=_EdT96HqIQWQ64Oy11CEP4LqcJhZPB_EYzCYbhceJG0,1345
954
- arthur_client/api_bindings_README.md,sha256=vjfDSzYNdr8cxNc0k5EQJolEfta3gys4sf5IXlApGaE,53024
957
+ arthur_client/api_bindings_README.md,sha256=FIOJVWTQ5eQkxmwe-nZJ7SVlC7l_QZ8UIZxovy1c9xg,53113
955
958
  arthur_client/auth/__init__.py,sha256=f4XqpGe9d1V0xlocq2JlNtd8l_GUoUOy6_1yTMCBsc0,210
956
959
  arthur_client/auth/constants.py,sha256=lIEdf1UujvAZhueQ8WZGjd3ErcJlCmrXRxjRhTRNb18,38
957
960
  arthur_client/auth/device_authorizer.py,sha256=bJMIZRjkwQwoSWTLEp7OoXM2MytO3ADSD97Qlc1accA,2598
958
961
  arthur_client/auth/discovery.py,sha256=hR0MglzRWHdwyi72If5hTnjO50fDJhquP_DD7OzjIQQ,1188
959
962
  arthur_client/auth/oauth_api_config.py,sha256=MB-bwm6Qo_USZD_4KVId6d_v5OtLBphwBjMjslVjTlo,1348
960
963
  arthur_client/auth/session.py,sha256=wCriib5ajfm1e1WTL_QXVCJmEOrGwQg_0v91e5qrC6g,2649
961
- arthur_client-1.4.1238.dist-info/METADATA,sha256=MOHVqXGk7CPC9Ozt70gsNtZ7-VAV8-EdjF2AyIvlP9Q,1730
962
- arthur_client-1.4.1238.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
963
- arthur_client-1.4.1238.dist-info/RECORD,,
964
+ arthur_client-1.4.1240.dist-info/METADATA,sha256=WwML9hz-HI4EtIW29kuTFVqh_rReMKzDEBqQAQmvHE0,1730
965
+ arthur_client-1.4.1240.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
966
+ arthur_client-1.4.1240.dist-info/RECORD,,