arthur-client 1.4.1267__py3-none-any.whl → 1.4.1269__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.
@@ -57,6 +57,7 @@ from arthur_client.api_bindings.exceptions import ApiAttributeError
57
57
  from arthur_client.api_bindings.exceptions import ApiException
58
58
 
59
59
  # import models into sdk package
60
+ from arthur_client.api_bindings.models.aggregation_kind import AggregationKind
60
61
  from arthur_client.api_bindings.models.aggregation_metric_type import AggregationMetricType
61
62
  from arthur_client.api_bindings.models.aggregation_spec import AggregationSpec
62
63
  from arthur_client.api_bindings.models.aggregation_spec_schema import AggregationSpecSchema
@@ -0,0 +1,12 @@
1
+ # AggregationKind
2
+
3
+
4
+ ## Enum
5
+
6
+ * `DEFAULT` (value: `'default'`)
7
+
8
+ * `CUSTOM` (value: `'custom'`)
9
+
10
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
11
+
12
+
@@ -8,6 +8,8 @@ Name | Type | Description | Notes
8
8
  **aggregation_id** | **str** | Unique identifier of the aggregation. |
9
9
  **aggregation_init_args** | [**List[MetricsArgSpec]**](MetricsArgSpec.md) | List of arguments to the aggregation's init function. |
10
10
  **aggregation_args** | [**List[MetricsArgSpec]**](MetricsArgSpec.md) | List of arguments to the aggregation's aggregate function. |
11
+ **aggregation_kind** | [**AggregationKind**](AggregationKind.md) | Type of aggregation to use for the metric spec. | [optional]
12
+ **aggregation_version** | **int** | | [optional]
11
13
 
12
14
  ## Example
13
15
 
@@ -14,6 +14,7 @@
14
14
 
15
15
 
16
16
  # import models into model package
17
+ from arthur_client.api_bindings.models.aggregation_kind import AggregationKind
17
18
  from arthur_client.api_bindings.models.aggregation_metric_type import AggregationMetricType
18
19
  from arthur_client.api_bindings.models.aggregation_spec import AggregationSpec
19
20
  from arthur_client.api_bindings.models.aggregation_spec_schema import AggregationSpecSchema
@@ -0,0 +1,37 @@
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 json
17
+ from enum import Enum
18
+ from typing_extensions import Self
19
+
20
+
21
+ class AggregationKind(str, Enum):
22
+ """
23
+ AggregationKind
24
+ """
25
+
26
+ """
27
+ allowed enum values
28
+ """
29
+ DEFAULT = 'default'
30
+ CUSTOM = 'custom'
31
+
32
+ @classmethod
33
+ def from_json(cls, json_str: str) -> Self:
34
+ """Create an instance of AggregationKind from a JSON string"""
35
+ return cls(json.loads(json_str))
36
+
37
+
@@ -17,8 +17,9 @@ import pprint
17
17
  import re # noqa: F401
18
18
  import json
19
19
 
20
- from pydantic import BaseModel, ConfigDict, Field, StrictStr
21
- from typing import Any, ClassVar, Dict, List
20
+ from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr
21
+ from typing import Any, ClassVar, Dict, List, Optional
22
+ from arthur_client.api_bindings.models.aggregation_kind import AggregationKind
22
23
  from arthur_client.api_bindings.models.metrics_arg_spec import MetricsArgSpec
23
24
  from typing import Optional, Set
24
25
  from typing_extensions import Self
@@ -30,7 +31,9 @@ class AggregationSpec(BaseModel):
30
31
  aggregation_id: StrictStr = Field(description="Unique identifier of the aggregation.")
31
32
  aggregation_init_args: List[MetricsArgSpec] = Field(description="List of arguments to the aggregation's init function.")
32
33
  aggregation_args: List[MetricsArgSpec] = Field(description="List of arguments to the aggregation's aggregate function.")
33
- __properties: ClassVar[List[str]] = ["aggregation_id", "aggregation_init_args", "aggregation_args"]
34
+ aggregation_kind: Optional[AggregationKind] = Field(default=None, description="Type of aggregation to use for the metric spec.")
35
+ aggregation_version: Optional[StrictInt] = None
36
+ __properties: ClassVar[List[str]] = ["aggregation_id", "aggregation_init_args", "aggregation_args", "aggregation_kind", "aggregation_version"]
34
37
 
35
38
  model_config = ConfigDict(
36
39
  populate_by_name=True,
@@ -85,6 +88,11 @@ class AggregationSpec(BaseModel):
85
88
  if _item_aggregation_args:
86
89
  _items.append(_item_aggregation_args.to_dict())
87
90
  _dict['aggregation_args'] = _items
91
+ # set to None if aggregation_version (nullable) is None
92
+ # and model_fields_set contains the field
93
+ if self.aggregation_version is None and "aggregation_version" in self.model_fields_set:
94
+ _dict['aggregation_version'] = None
95
+
88
96
  return _dict
89
97
 
90
98
  @classmethod
@@ -99,7 +107,9 @@ class AggregationSpec(BaseModel):
99
107
  _obj = cls.model_validate({
100
108
  "aggregation_id": obj.get("aggregation_id"),
101
109
  "aggregation_init_args": [MetricsArgSpec.from_dict(_item) for _item in obj["aggregation_init_args"]] if obj.get("aggregation_init_args") is not None else None,
102
- "aggregation_args": [MetricsArgSpec.from_dict(_item) for _item in obj["aggregation_args"]] if obj.get("aggregation_args") is not None else None
110
+ "aggregation_args": [MetricsArgSpec.from_dict(_item) for _item in obj["aggregation_args"]] if obj.get("aggregation_args") is not None else None,
111
+ "aggregation_kind": obj.get("aggregation_kind"),
112
+ "aggregation_version": obj.get("aggregation_version")
103
113
  })
104
114
  return _obj
105
115
 
@@ -0,0 +1,33 @@
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.aggregation_kind import AggregationKind
18
+
19
+ class TestAggregationKind(unittest.TestCase):
20
+ """AggregationKind unit test stubs"""
21
+
22
+ def setUp(self):
23
+ pass
24
+
25
+ def tearDown(self):
26
+ pass
27
+
28
+ def testAggregationKind(self):
29
+ """Test AggregationKind"""
30
+ # inst = AggregationKind()
31
+
32
+ if __name__ == '__main__':
33
+ unittest.main()
@@ -45,7 +45,9 @@ class TestAggregationSpec(unittest.TestCase):
45
45
  arthur_client.api_bindings.models.metrics_arg_spec.MetricsArgSpec(
46
46
  arg_key = '',
47
47
  arg_value = null, )
48
- ]
48
+ ],
49
+ aggregation_kind = 'default',
50
+ aggregation_version = 56
49
51
  )
50
52
  else:
51
53
  return AggregationSpec(
@@ -68,7 +68,9 @@ class TestModel(unittest.TestCase):
68
68
  arthur_client.api_bindings.models.metrics_arg_spec.MetricsArgSpec(
69
69
  arg_key = '',
70
70
  arg_value = null, )
71
- ], )
71
+ ],
72
+ aggregation_kind = 'default',
73
+ aggregation_version = 56, )
72
74
  ],
73
75
  id = '', ),
74
76
  schedule = arthur_client.api_bindings.models.model_metrics_schedule.ModelMetricsSchedule(
@@ -108,7 +110,9 @@ class TestModel(unittest.TestCase):
108
110
  arthur_client.api_bindings.models.metrics_arg_spec.MetricsArgSpec(
109
111
  arg_key = '',
110
112
  arg_value = null, )
111
- ], )
113
+ ],
114
+ aggregation_kind = 'default',
115
+ aggregation_version = 56, )
112
116
  ],
113
117
  id = '', ),
114
118
  model_problem_types = [
@@ -47,7 +47,9 @@ class TestModelMetricSpec(unittest.TestCase):
47
47
  arthur_client.api_bindings.models.metrics_arg_spec.MetricsArgSpec(
48
48
  arg_key = '',
49
49
  arg_value = null, )
50
- ], )
50
+ ],
51
+ aggregation_kind = 'default',
52
+ aggregation_version = 56, )
51
53
  ],
52
54
  id = ''
53
55
  )
@@ -65,7 +67,9 @@ class TestModelMetricSpec(unittest.TestCase):
65
67
  arthur_client.api_bindings.models.metrics_arg_spec.MetricsArgSpec(
66
68
  arg_key = '',
67
69
  arg_value = null, )
68
- ], )
70
+ ],
71
+ aggregation_kind = 'default',
72
+ aggregation_version = 56, )
69
73
  ],
70
74
  id = '',
71
75
  )
@@ -51,7 +51,9 @@ class TestPostModel(unittest.TestCase):
51
51
  arthur_client.api_bindings.models.metrics_arg_spec.MetricsArgSpec(
52
52
  arg_key = '',
53
53
  arg_value = null, )
54
- ], )
54
+ ],
55
+ aggregation_kind = 'default',
56
+ aggregation_version = 56, )
55
57
  ], ),
56
58
  dataset_ids = [
57
59
  ''
@@ -47,7 +47,9 @@ class TestPutModelMetricSpec(unittest.TestCase):
47
47
  arthur_client.api_bindings.models.metrics_arg_spec.MetricsArgSpec(
48
48
  arg_key = '',
49
49
  arg_value = null, )
50
- ], )
50
+ ],
51
+ aggregation_kind = 'default',
52
+ aggregation_version = 56, )
51
53
  ]
52
54
  )
53
55
  else:
@@ -64,7 +66,9 @@ class TestPutModelMetricSpec(unittest.TestCase):
64
66
  arthur_client.api_bindings.models.metrics_arg_spec.MetricsArgSpec(
65
67
  arg_key = '',
66
68
  arg_value = null, )
67
- ], )
69
+ ],
70
+ aggregation_kind = 'default',
71
+ aggregation_version = 56, )
68
72
  ],
69
73
  )
70
74
  """
@@ -70,7 +70,9 @@ class TestResourceListModel(unittest.TestCase):
70
70
  arthur_client.api_bindings.models.metrics_arg_spec.MetricsArgSpec(
71
71
  arg_key = '',
72
72
  arg_value = null, )
73
- ], )
73
+ ],
74
+ aggregation_kind = 'default',
75
+ aggregation_version = 56, )
74
76
  ],
75
77
  id = '', ),
76
78
  schedule = arthur_client.api_bindings.models.model_metrics_schedule.ModelMetricsSchedule(
@@ -132,7 +134,9 @@ class TestResourceListModel(unittest.TestCase):
132
134
  arthur_client.api_bindings.models.metrics_arg_spec.MetricsArgSpec(
133
135
  arg_key = '',
134
136
  arg_value = null, )
135
- ], )
137
+ ],
138
+ aggregation_kind = 'default',
139
+ aggregation_version = 56, )
136
140
  ],
137
141
  id = '', ),
138
142
  schedule = arthur_client.api_bindings.models.model_metrics_schedule.ModelMetricsSchedule(
@@ -222,6 +222,7 @@ Class | Method | HTTP request | Description
222
222
 
223
223
  ## Documentation For Models
224
224
 
225
+ - [AggregationKind](arthur_client/api_bindings/docs/AggregationKind.md)
225
226
  - [AggregationMetricType](arthur_client/api_bindings/docs/AggregationMetricType.md)
226
227
  - [AggregationSpec](arthur_client/api_bindings/docs/AggregationSpec.md)
227
228
  - [AggregationSpecSchema](arthur_client/api_bindings/docs/AggregationSpecSchema.md)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: arthur-client
3
- Version: 1.4.1267
3
+ Version: 1.4.1269
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=XXaFPaEpGdOKs6D_1VGhu3aT7yLn4sNhiSR3s-VndCI,27729
3
+ arthur_client/api_bindings/__init__.py,sha256=-mBjCjcj9Lz25XD5Q_vBq-SKz9JMK-0OXbphPbk6POU,27808
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
@@ -32,8 +32,9 @@ arthur_client/api_bindings/api/workspaces_v1_api.py,sha256=D1t3rPLtL90d7w86peDa1
32
32
  arthur_client/api_bindings/api_client.py,sha256=v_hzWJliSvCmsZ2nzW_yu_GFcRGV_ZuFEJyqd6IOTQo,27544
33
33
  arthur_client/api_bindings/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
34
34
  arthur_client/api_bindings/configuration.py,sha256=fMuF7CsSXY90OPLWc4aySWpKtGtjPCmWUkIH5ARpQGI,15339
35
+ arthur_client/api_bindings/docs/AggregationKind.md,sha256=Cs2w295lMGqeDwdpeIke5X7NpqDIpY8WxkfMwVcFLPQ,259
35
36
  arthur_client/api_bindings/docs/AggregationMetricType.md,sha256=6hEXFM-9byb66vDncISF7YWnKEDUVSuAGas0V1nLSgs,265
36
- arthur_client/api_bindings/docs/AggregationSpec.md,sha256=w2eUWxapFrQYtvGBD57UGaz1xfBugQm_70s46RM6eVs,1224
37
+ arthur_client/api_bindings/docs/AggregationSpec.md,sha256=qC7OiKEtUcJyEshcmnyDSc47DeU7Cw_Zvp3tzyBkPko,1404
37
38
  arthur_client/api_bindings/docs/AggregationSpecSchema.md,sha256=PyU_9ea0_fNf0Lu0zllObajIS5_b1cDDxIN1coqz6mM,1797
38
39
  arthur_client/api_bindings/docs/AggregationSpecSchemaInitArgsInner.md,sha256=ibXBn7uJ1LOsUgfyoBqYtdiGJ3oOXn553g6WIfJzCqY,2307
39
40
  arthur_client/api_bindings/docs/Alert.md,sha256=CUCbUFpm3vIGHLIrvGprVCcf9M70Nv0Z645zHBDBLEw,1771
@@ -354,9 +355,10 @@ arthur_client/api_bindings/docs/Workspace.md,sha256=G4pN-rx4iU2-sxOhF-1Fp6QbHYrr
354
355
  arthur_client/api_bindings/docs/WorkspaceSort.md,sha256=g2lRzcM9sBnHufImJj3fvRQYgiQRt885iYZc7OkE9Mk,299
355
356
  arthur_client/api_bindings/docs/WorkspacesV1Api.md,sha256=WM4FbbGbsiekeP2VnFE1Em0gT9-rXb45aBoqPTiBDqI,14011
356
357
  arthur_client/api_bindings/exceptions.py,sha256=yy0Uot-WkcM6-PbNo2KDnrKAUL_PFmeCTD2tvq_gFp4,5977
357
- arthur_client/api_bindings/models/__init__.py,sha256=Y7g6yfFVsicXaT8iV1KgdkK_-yqC4-hvp_ZKcp4iwlI,25013
358
+ arthur_client/api_bindings/models/__init__.py,sha256=oWgRWEq7ae6WTimgIQO1cxwWqODy3ZCgbZeUf7lybG8,25092
359
+ arthur_client/api_bindings/models/aggregation_kind.py,sha256=HS-dSt_0CD9T47N_A6wU0BkR1D57zjE24IkwEJqPQVY,765
358
360
  arthur_client/api_bindings/models/aggregation_metric_type.py,sha256=USKpDqhX4TQ4lqIoHOp3q70mydsf1u_zc1EKus9QhYo,783
359
- arthur_client/api_bindings/models/aggregation_spec.py,sha256=mbCw-IPV4mUA9f8WtSZL9acjSu3L4pCcTsofxxf2Mq8,4110
361
+ arthur_client/api_bindings/models/aggregation_spec.py,sha256=-MpHK2VeaKjUlbrYMGe1ZMtrqh5lQwdAnoV-LuzPNUw,4825
360
362
  arthur_client/api_bindings/models/aggregation_spec_schema.py,sha256=GR6ia-6kEPFc0KtrY0b4TrkooRvNDHP-kNbPbT2o4jQ,5480
361
363
  arthur_client/api_bindings/models/aggregation_spec_schema_init_args_inner.py,sha256=x2rmtaasa05h5VaKLk1nSuwaAyUfE4d0FNAaJgEOfFI,7540
362
364
  arthur_client/api_bindings/models/alert.py,sha256=g4XpIrIq_txJHAYxdnrSxrHDkwVqIPpMzkKXNf1IsP0,5968
@@ -651,8 +653,9 @@ arthur_client/api_bindings/models/workspace.py,sha256=wChiUoX8ttdJ33xXUIUxoIGYRf
651
653
  arthur_client/api_bindings/models/workspace_sort.py,sha256=lcJqTdmUuqPHz0oS_RV5MN3TKi0-GFU0rVLMvqHI2PE,791
652
654
  arthur_client/api_bindings/rest.py,sha256=us_sthHHXrRAnGdug4ZYIOMOUdjnA44beN36m_mxrPk,9429
653
655
  arthur_client/api_bindings/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
656
+ arthur_client/api_bindings/test/test_aggregation_kind.py,sha256=kf44B02RF-vSexrTSpP2GmBCF92KB3K-t020mINwJdc,735
654
657
  arthur_client/api_bindings/test/test_aggregation_metric_type.py,sha256=OgYPLHZt7XwRlkpSwKWv1bpd92KFJXLms6PbEp7DyzA,778
655
- arthur_client/api_bindings/test/test_aggregation_spec.py,sha256=oHSv8SRUHsqMC7SctzuTdE6kWn5qFtTpjTZQzor2N2Y,2387
658
+ arthur_client/api_bindings/test/test_aggregation_spec.py,sha256=0s34nNfmM5U0eGOX9ToOvRzUbVV-D2Pu9AhHcP1e-Ws,2475
656
659
  arthur_client/api_bindings/test/test_aggregation_spec_schema.py,sha256=MaA73w5jxf1ci1kLJsmZ5E5GC81ixFqRqx1_sN2_8cU,2544
657
660
  arthur_client/api_bindings/test/test_aggregation_spec_schema_init_args_inner.py,sha256=Tglc-ZPkPkd0gy8cRtI9jx1jLMlTjhPU4Edd0rtcBh4,2377
658
661
  arthur_client/api_bindings/test/test_alert.py,sha256=3xc2qHhy5RLkE0wNGFhJHArU5yC9oAZRhxNVBmWVDhU,3015
@@ -799,8 +802,8 @@ arthur_client/api_bindings/test/test_metrics_upload_result.py,sha256=BE8R9kuMeSv
799
802
  arthur_client/api_bindings/test/test_metrics_v1_api.py,sha256=gu67NJP-fII01_r2JaZs5paJ6O_SsLfEglxtbESQ5Qg,1315
800
803
  arthur_client/api_bindings/test/test_metrics_version.py,sha256=Wyu6-Hd04jf201JhDVuuYpVTR555jHAxVpyXxIeTNqg,2369
801
804
  arthur_client/api_bindings/test/test_metrics_versions_sort.py,sha256=mUYzxMEFBb5RsFTJ6jNLM6CspOvqNmwLy-VmOZpvlzI,764
802
- arthur_client/api_bindings/test/test_model.py,sha256=TXqShLk1hG7pdePoW1DBGATik7gGYSB19p2ZFEBz8N4,5623
803
- arthur_client/api_bindings/test/test_model_metric_spec.py,sha256=oTO68aMq0665Dpiffmus01EEYBOx8FnWObHHkAvVkXg,2920
805
+ arthur_client/api_bindings/test/test_model.py,sha256=9JhWNFTJE8SN4mO70T4DQqMC-8-7gksZQEgOZgDDHo0,5851
806
+ arthur_client/api_bindings/test/test_model_metric_spec.py,sha256=gPNETGDsM17HyRok1kIf0XaF4zqtY8bhiQ441oKdaDE,3132
804
807
  arthur_client/api_bindings/test/test_model_metrics_schedule.py,sha256=GmtCSRiUqPCSvpg6RsBUiZG1ukbeG0sjcm4vAKG3v5Q,1667
805
808
  arthur_client/api_bindings/test/test_model_problem_type.py,sha256=3mPXfi4r_9QihNxGMDAKzcxkFfJv4LO-X63eXV7Y8wQ,743
806
809
  arthur_client/api_bindings/test/test_models_sort.py,sha256=trbk2vGoiqlDcYrV1PLaB9RrAeCYjSm6yx_FtzsTccI,700
@@ -867,7 +870,7 @@ arthur_client/api_bindings/test/test_post_metrics_query_result_filter_or_group.p
867
870
  arthur_client/api_bindings/test/test_post_metrics_query_result_filter_or_group_or_inner.py,sha256=CSA1J8trgmR-_KIGmIs95L1nZYGXZb_ARs1WfXcHjWE,2208
868
871
  arthur_client/api_bindings/test/test_post_metrics_query_time_range.py,sha256=AKGiRlg8vavs5g0pf478j15rH6QRCrEIyOhDUiQeb_U,1910
869
872
  arthur_client/api_bindings/test/test_post_metrics_versions.py,sha256=ZGkFlsblAjQN2tar_apRmiQjF1t6liBTqn8-vexKWRo,1860
870
- arthur_client/api_bindings/test/test_post_model.py,sha256=cwuJFe_lsPu09epXdq_CEpK5_c7iRP8--dFo3wab6t0,2509
873
+ arthur_client/api_bindings/test/test_post_model.py,sha256=uUzZZxvVUhhOv2OCXU3W5-XsfGopJfJmRgoHgDyAbWc,2623
871
874
  arthur_client/api_bindings/test/test_post_project.py,sha256=rnVtp0jcZPcUtETMiou6zd1imSyeuhCS7Q12dad2Shs,1423
872
875
  arthur_client/api_bindings/test/test_post_role_binding.py,sha256=uVZ3KRSm7sQHFWSy0yY1W9Q1UYryPWfJMHkt8EkF4FY,1505
873
876
  arthur_client/api_bindings/test/test_post_service_account.py,sha256=D-gaM2SJxDxJGKlZbelVGs7QqUfRjYDxiFmcfcfVXWA,1474
@@ -885,7 +888,7 @@ arthur_client/api_bindings/test/test_put_available_datasets.py,sha256=kaVkP6Cgxt
885
888
  arthur_client/api_bindings/test/test_put_custom_aggregation_spec_schema.py,sha256=bU8skPKzrCr4U1AoPBDBwljBO3IQoYx33JJoMagNYIs,2894
886
889
  arthur_client/api_bindings/test/test_put_dataset_schema.py,sha256=gZ0_bgVEh2IlGlOqWHfDZA7pGy3M5-uBOCHZwEn0Fl0,2080
887
890
  arthur_client/api_bindings/test/test_put_job_state.py,sha256=ikAboikA12w2ClaHjWJBlZT7KCSyA2_ldjmb50Y0Nfw,1412
888
- arthur_client/api_bindings/test/test_put_model_metric_spec.py,sha256=_zc567CX9adjqyDHNkR3GXgWKg62kVmcEmP_4T2VC4U,2907
891
+ arthur_client/api_bindings/test/test_put_model_metric_spec.py,sha256=kHXGqsSunXTA0m8uB6JizE8p6MHypytFL9JqYfwLTqc,3119
889
892
  arthur_client/api_bindings/test/test_put_model_metrics_schedule.py,sha256=2abARHScbB5C7wEVy9ywhDcMjT98sQ1CKnMmJZjEqLk,1654
890
893
  arthur_client/api_bindings/test/test_put_retrieved_data.py,sha256=DaR1_JftXKr4qA-RaLjdJat0KzHiYbsbA3PUGB5Vf2w,1456
891
894
  arthur_client/api_bindings/test/test_put_task_connection_info.py,sha256=_O1FjmxhlesJ3-6qnDtnfoOxg3d-8KMynNYuCeII0Kk,1953
@@ -912,7 +915,7 @@ arthur_client/api_bindings/test/test_resource_list_job_error.py,sha256=4Af_jJBM-
912
915
  arthur_client/api_bindings/test/test_resource_list_job_log.py,sha256=XrjObxp3c0vciEhnmU7pbaBTrPSq1vvdkwQ-14678LI,2539
913
916
  arthur_client/api_bindings/test/test_resource_list_job_run.py,sha256=3mOEeU3UJUfClZT8MkPbD8qKLoq8IP5WJWb5KXNUui4,2935
914
917
  arthur_client/api_bindings/test/test_resource_list_metrics_version.py,sha256=69g1I5CsYdOMGsTSstoIaEoaonmgaRURKcMn9_7bGVM,3373
915
- arthur_client/api_bindings/test/test_resource_list_model.py,sha256=O7S1D7YmIPaFz_t7zyunL1QmLAY4mYt6YlxTiBQwfqw,8310
918
+ arthur_client/api_bindings/test/test_resource_list_model.py,sha256=oYeDl6AX1wuX7PYBoUtPW2FRDeOiWWR-mGAEBycm19w,8570
916
919
  arthur_client/api_bindings/test/test_resource_list_permission.py,sha256=j8G-TLk_KoPrDyled7J2Hr-cgPYJ0vDMlYNk8EsulTg,2498
917
920
  arthur_client/api_bindings/test/test_resource_list_project.py,sha256=B7C270TkjJ1sRXFYJ8NLGxajoPshS4vS5E52ZPBNs_M,3024
918
921
  arthur_client/api_bindings/test/test_resource_list_role.py,sha256=MKpOHiiPrhUuG1M2ENw-qYTaNqdh_JjleCZyaTPLJl0,3664
@@ -972,13 +975,13 @@ arthur_client/api_bindings/test/test_webhooks_v1_api.py,sha256=7x3pb2tZdXbnSAI-w
972
975
  arthur_client/api_bindings/test/test_workspace.py,sha256=hDjh6CQ8oHTVk_X3fb_wKVPp_cY9bQFAGmNh7qMKpIw,1918
973
976
  arthur_client/api_bindings/test/test_workspace_sort.py,sha256=PDxv__jzX9VXu54ExqHJTLHRn9XKwGVwYjZ4OdFBmLk,721
974
977
  arthur_client/api_bindings/test/test_workspaces_v1_api.py,sha256=_EdT96HqIQWQ64Oy11CEP4LqcJhZPB_EYzCYbhceJG0,1345
975
- arthur_client/api_bindings_README.md,sha256=cp0q1L3HgqyHkXc4wwxkpCFm8U18Q-SZsLU2KZ2H1bI,54052
978
+ arthur_client/api_bindings_README.md,sha256=LyxrTDMqu9feYv5qL7Q-ovIPfW-wPsaxlyglUlOxL1U,54125
976
979
  arthur_client/auth/__init__.py,sha256=f4XqpGe9d1V0xlocq2JlNtd8l_GUoUOy6_1yTMCBsc0,210
977
980
  arthur_client/auth/constants.py,sha256=lIEdf1UujvAZhueQ8WZGjd3ErcJlCmrXRxjRhTRNb18,38
978
981
  arthur_client/auth/device_authorizer.py,sha256=bJMIZRjkwQwoSWTLEp7OoXM2MytO3ADSD97Qlc1accA,2598
979
982
  arthur_client/auth/discovery.py,sha256=hR0MglzRWHdwyi72If5hTnjO50fDJhquP_DD7OzjIQQ,1188
980
983
  arthur_client/auth/oauth_api_config.py,sha256=MB-bwm6Qo_USZD_4KVId6d_v5OtLBphwBjMjslVjTlo,1348
981
984
  arthur_client/auth/session.py,sha256=wCriib5ajfm1e1WTL_QXVCJmEOrGwQg_0v91e5qrC6g,2649
982
- arthur_client-1.4.1267.dist-info/METADATA,sha256=o_t-ngm5xXIHgdDNeAwbChQmOJiBpDYU1VL9-qR2Iw4,1730
983
- arthur_client-1.4.1267.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
984
- arthur_client-1.4.1267.dist-info/RECORD,,
985
+ arthur_client-1.4.1269.dist-info/METADATA,sha256=jLRPmgSh3kz1QCZ4YUaytzNSajE7-THxrDVis09XIkU,1730
986
+ arthur_client-1.4.1269.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
987
+ arthur_client-1.4.1269.dist-info/RECORD,,