arthur-client 1.4.1055__py3-none-any.whl → 1.4.1187__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.
- arthur_client/api_bindings/__init__.py +5 -1
- arthur_client/api_bindings/api/alert_rules_v1_api.py +303 -0
- arthur_client/api_bindings/api/datasets_v1_api.py +3 -0
- arthur_client/api_bindings/docs/AggregationSpecSchemaInitArgsInner.md +1 -1
- arthur_client/api_bindings/docs/Alert.md +1 -0
- arthur_client/api_bindings/docs/AlertRule.md +1 -0
- arthur_client/api_bindings/docs/AlertRuleInterval.md +30 -0
- arthur_client/api_bindings/docs/AlertRuleSQLValidationResp.md +32 -0
- arthur_client/api_bindings/docs/AlertRulesV1Api.md +83 -0
- arthur_client/api_bindings/docs/DType.md +2 -0
- arthur_client/api_bindings/docs/DatasetLocatorFieldDataType.md +2 -0
- arthur_client/api_bindings/docs/DatasetsV1Api.md +1 -0
- arthur_client/api_bindings/docs/IntervalUnit.md +16 -0
- arthur_client/api_bindings/docs/Items1.md +1 -1
- arthur_client/api_bindings/docs/MetricsColumnListParameterSchema.md +4 -0
- arthur_client/api_bindings/docs/MetricsColumnListParameterSchemaAllowedColumnTypesInner.md +31 -0
- arthur_client/api_bindings/docs/MetricsColumnParameterSchema.md +1 -1
- arthur_client/api_bindings/docs/ObjectType.md +1 -1
- arthur_client/api_bindings/docs/PatchAlertRule.md +1 -0
- arthur_client/api_bindings/docs/PostAlert.md +1 -0
- arthur_client/api_bindings/docs/PostAlertRule.md +1 -0
- arthur_client/api_bindings/docs/PostMetricsQuery.md +1 -0
- arthur_client/api_bindings/docs/ValidateAlertRuleQueryReq.md +29 -0
- arthur_client/api_bindings/models/__init__.py +5 -1
- arthur_client/api_bindings/models/alert.py +7 -1
- arthur_client/api_bindings/models/alert_rule.py +7 -1
- arthur_client/api_bindings/models/alert_rule_interval.py +90 -0
- arthur_client/api_bindings/models/alert_rule_sql_validation_resp.py +93 -0
- arthur_client/api_bindings/models/d_type.py +1 -0
- arthur_client/api_bindings/models/dataset_locator_field_data_type.py +1 -0
- arthur_client/api_bindings/models/interval_unit.py +39 -0
- arthur_client/api_bindings/models/metrics_column_list_parameter_schema.py +24 -2
- arthur_client/api_bindings/models/{metrics_column_parameter_schema_allowed_column_types_inner.py → metrics_column_list_parameter_schema_allowed_column_types_inner.py} +7 -7
- arthur_client/api_bindings/models/metrics_column_parameter_schema.py +3 -3
- arthur_client/api_bindings/models/object_type.py +3 -3
- arthur_client/api_bindings/models/patch_alert_rule.py +12 -1
- arthur_client/api_bindings/models/post_alert.py +7 -1
- arthur_client/api_bindings/models/post_alert_rule.py +7 -1
- arthur_client/api_bindings/models/post_metrics_query.py +12 -1
- arthur_client/api_bindings/models/validate_alert_rule_query_req.py +87 -0
- arthur_client/api_bindings/test/test_alert.py +6 -0
- arthur_client/api_bindings/test/test_alert_rule.py +6 -0
- arthur_client/api_bindings/test/test_alert_rule_interval.py +54 -0
- arthur_client/api_bindings/test/test_alert_rule_sql_validation_resp.py +58 -0
- arthur_client/api_bindings/test/test_alert_rules_v1_api.py +7 -0
- arthur_client/api_bindings/test/test_created_alerts.py +6 -0
- arthur_client/api_bindings/test/test_infinite_resource_list_alert.py +6 -0
- arthur_client/api_bindings/test/test_interval_unit.py +33 -0
- arthur_client/api_bindings/test/test_metrics_column_list_parameter_schema.py +10 -1
- arthur_client/api_bindings/test/{test_metrics_column_parameter_schema_allowed_column_types_inner.py → test_metrics_column_list_parameter_schema_allowed_column_types_inner.py} +11 -11
- arthur_client/api_bindings/test/test_patch_alert_rule.py +3 -0
- arthur_client/api_bindings/test/test_post_alert.py +6 -0
- arthur_client/api_bindings/test/test_post_alert_rule.py +6 -0
- arthur_client/api_bindings/test/test_post_alerts.py +6 -0
- arthur_client/api_bindings/test/test_post_metrics_query.py +3 -0
- arthur_client/api_bindings/test/test_resource_list_alert_rule.py +6 -0
- arthur_client/api_bindings/test/test_validate_alert_rule_query_req.py +52 -0
- arthur_client/api_bindings_README.md +6 -1
- {arthur_client-1.4.1055.dist-info → arthur_client-1.4.1187.dist-info}/METADATA +1 -1
- {arthur_client-1.4.1055.dist-info → arthur_client-1.4.1187.dist-info}/RECORD +61 -49
- arthur_client/api_bindings/docs/MetricsColumnParameterSchemaAllowedColumnTypesInner.md +0 -31
- {arthur_client-1.4.1055.dist-info → arthur_client-1.4.1187.dist-info}/WHEEL +0 -0
@@ -39,6 +39,9 @@ class TestPostMetricsQuery(unittest.TestCase):
|
|
39
39
|
time_range = arthur_client.api_bindings.models.post_metrics_query_time_range.PostMetricsQueryTimeRange(
|
40
40
|
start = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
|
41
41
|
end = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), ),
|
42
|
+
interval = arthur_client.api_bindings.models.alert_rule_interval.AlertRuleInterval(
|
43
|
+
unit = 'seconds',
|
44
|
+
count = 56, ),
|
42
45
|
limit = 56,
|
43
46
|
result_filter = None
|
44
47
|
)
|
@@ -47,6 +47,9 @@ class TestResourceListAlertRule(unittest.TestCase):
|
|
47
47
|
bound = 'upper_bound',
|
48
48
|
query = '',
|
49
49
|
metric_name = '',
|
50
|
+
interval = arthur_client.api_bindings.models.alert_rule_interval.AlertRuleInterval(
|
51
|
+
unit = 'seconds',
|
52
|
+
count = 56, ),
|
50
53
|
last_updated_by_user = arthur_client.api_bindings.models.user.User(
|
51
54
|
created_at = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
|
52
55
|
updated_at = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
|
@@ -86,6 +89,9 @@ class TestResourceListAlertRule(unittest.TestCase):
|
|
86
89
|
bound = 'upper_bound',
|
87
90
|
query = '',
|
88
91
|
metric_name = '',
|
92
|
+
interval = arthur_client.api_bindings.models.alert_rule_interval.AlertRuleInterval(
|
93
|
+
unit = 'seconds',
|
94
|
+
count = 56, ),
|
89
95
|
last_updated_by_user = arthur_client.api_bindings.models.user.User(
|
90
96
|
created_at = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
|
91
97
|
updated_at = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
|
@@ -0,0 +1,52 @@
|
|
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.validate_alert_rule_query_req import ValidateAlertRuleQueryReq
|
18
|
+
|
19
|
+
class TestValidateAlertRuleQueryReq(unittest.TestCase):
|
20
|
+
"""ValidateAlertRuleQueryReq 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) -> ValidateAlertRuleQueryReq:
|
29
|
+
"""Test ValidateAlertRuleQueryReq
|
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 `ValidateAlertRuleQueryReq`
|
34
|
+
"""
|
35
|
+
model = ValidateAlertRuleQueryReq()
|
36
|
+
if include_optional:
|
37
|
+
return ValidateAlertRuleQueryReq(
|
38
|
+
query = ''
|
39
|
+
)
|
40
|
+
else:
|
41
|
+
return ValidateAlertRuleQueryReq(
|
42
|
+
query = '',
|
43
|
+
)
|
44
|
+
"""
|
45
|
+
|
46
|
+
def testValidateAlertRuleQueryReq(self):
|
47
|
+
"""Test ValidateAlertRuleQueryReq"""
|
48
|
+
# inst_req_only = self.make_instance(include_optional=False)
|
49
|
+
# inst_req_and_optional = self.make_instance(include_optional=True)
|
50
|
+
|
51
|
+
if __name__ == '__main__':
|
52
|
+
unittest.main()
|
@@ -72,6 +72,7 @@ Class | Method | HTTP request | Description
|
|
72
72
|
*AlertRulesV1Api* | [**get_alert_rule**](arthur_client/api_bindings/docs/AlertRulesV1Api.md#get_alert_rule) | **GET** /api/v1/alert_rules/{alert_rule_id} | Get Alert Rule By Id
|
73
73
|
*AlertRulesV1Api* | [**get_model_alert_rules**](arthur_client/api_bindings/docs/AlertRulesV1Api.md#get_model_alert_rules) | **GET** /api/v1/models/{model_id}/alert_rules | Get Model Alert Rules
|
74
74
|
*AlertRulesV1Api* | [**patch_alert_rule**](arthur_client/api_bindings/docs/AlertRulesV1Api.md#patch_alert_rule) | **PATCH** /api/v1/alert_rules/{alert_rule_id} | Update Model Alert Rule
|
75
|
+
*AlertRulesV1Api* | [**post_alert_rule_query_validation**](arthur_client/api_bindings/docs/AlertRulesV1Api.md#post_alert_rule_query_validation) | **POST** /api/v1/models/{model_id}/alert_rule_query_validation | Validate A Model Alert Rule Query
|
75
76
|
*AlertRulesV1Api* | [**post_model_alert_rule**](arthur_client/api_bindings/docs/AlertRulesV1Api.md#post_model_alert_rule) | **POST** /api/v1/models/{model_id}/alert_rules | Create Model Alert Rule
|
76
77
|
*AlertsV1Api* | [**get_alert**](arthur_client/api_bindings/docs/AlertsV1Api.md#get_alert) | **GET** /api/v1/alerts/{alert_id} | Get Alert By Id
|
77
78
|
*AlertsV1Api* | [**get_model_alerts**](arthur_client/api_bindings/docs/AlertsV1Api.md#get_model_alerts) | **GET** /api/v1/models/{model_id}/alerts | Get Model Alerts
|
@@ -222,7 +223,9 @@ Class | Method | HTTP request | Description
|
|
222
223
|
- [AlertBound](arthur_client/api_bindings/docs/AlertBound.md)
|
223
224
|
- [AlertCheckJobSpec](arthur_client/api_bindings/docs/AlertCheckJobSpec.md)
|
224
225
|
- [AlertRule](arthur_client/api_bindings/docs/AlertRule.md)
|
226
|
+
- [AlertRuleInterval](arthur_client/api_bindings/docs/AlertRuleInterval.md)
|
225
227
|
- [AlertRuleNotificationWebhook](arthur_client/api_bindings/docs/AlertRuleNotificationWebhook.md)
|
228
|
+
- [AlertRuleSQLValidationResp](arthur_client/api_bindings/docs/AlertRuleSQLValidationResp.md)
|
226
229
|
- [AlertRuleSort](arthur_client/api_bindings/docs/AlertRuleSort.md)
|
227
230
|
- [AlertSort](arthur_client/api_bindings/docs/AlertSort.md)
|
228
231
|
- [AlertWebhookCalled](arthur_client/api_bindings/docs/AlertWebhookCalled.md)
|
@@ -299,6 +302,7 @@ Class | Method | HTTP request | Description
|
|
299
302
|
- [InfiniteResourceListAlert](arthur_client/api_bindings/docs/InfiniteResourceListAlert.md)
|
300
303
|
- [InfiniteResourceListJob](arthur_client/api_bindings/docs/InfiniteResourceListJob.md)
|
301
304
|
- [InternalServerError](arthur_client/api_bindings/docs/InternalServerError.md)
|
305
|
+
- [IntervalUnit](arthur_client/api_bindings/docs/IntervalUnit.md)
|
302
306
|
- [InviteNewUser](arthur_client/api_bindings/docs/InviteNewUser.md)
|
303
307
|
- [Items](arthur_client/api_bindings/docs/Items.md)
|
304
308
|
- [Items1](arthur_client/api_bindings/docs/Items1.md)
|
@@ -324,8 +328,8 @@ Class | Method | HTTP request | Description
|
|
324
328
|
- [MetricsArgSpec](arthur_client/api_bindings/docs/MetricsArgSpec.md)
|
325
329
|
- [MetricsCalculationJobSpec](arthur_client/api_bindings/docs/MetricsCalculationJobSpec.md)
|
326
330
|
- [MetricsColumnListParameterSchema](arthur_client/api_bindings/docs/MetricsColumnListParameterSchema.md)
|
331
|
+
- [MetricsColumnListParameterSchemaAllowedColumnTypesInner](arthur_client/api_bindings/docs/MetricsColumnListParameterSchemaAllowedColumnTypesInner.md)
|
327
332
|
- [MetricsColumnParameterSchema](arthur_client/api_bindings/docs/MetricsColumnParameterSchema.md)
|
328
|
-
- [MetricsColumnParameterSchemaAllowedColumnTypesInner](arthur_client/api_bindings/docs/MetricsColumnParameterSchemaAllowedColumnTypesInner.md)
|
329
333
|
- [MetricsDatasetParameterSchema](arthur_client/api_bindings/docs/MetricsDatasetParameterSchema.md)
|
330
334
|
- [MetricsLiteralParameterSchema](arthur_client/api_bindings/docs/MetricsLiteralParameterSchema.md)
|
331
335
|
- [MetricsQueryResult](arthur_client/api_bindings/docs/MetricsQueryResult.md)
|
@@ -478,6 +482,7 @@ Class | Method | HTTP request | Description
|
|
478
482
|
- [UserServiceAccountCredentials](arthur_client/api_bindings/docs/UserServiceAccountCredentials.md)
|
479
483
|
- [UserSort](arthur_client/api_bindings/docs/UserSort.md)
|
480
484
|
- [UserType](arthur_client/api_bindings/docs/UserType.md)
|
485
|
+
- [ValidateAlertRuleQueryReq](arthur_client/api_bindings/docs/ValidateAlertRuleQueryReq.md)
|
481
486
|
- [ValidationError](arthur_client/api_bindings/docs/ValidationError.md)
|
482
487
|
- [ValidationErrorLocInner](arthur_client/api_bindings/docs/ValidationErrorLocInner.md)
|
483
488
|
- [Webhook](arthur_client/api_bindings/docs/Webhook.md)
|
@@ -1,8 +1,8 @@
|
|
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=
|
3
|
+
arthur_client/api_bindings/__init__.py,sha256=4HiUPPWyH7oZTq5ls0ecCWu2PQ9MNxt2n2DjLc0jIeE,25909
|
4
4
|
arthur_client/api_bindings/api/__init__.py,sha256=MUjLq8gwbi48A655ZpaVaf0L9YE1hNBWxVlWRnZ340Q,2018
|
5
|
-
arthur_client/api_bindings/api/alert_rules_v1_api.py,sha256=
|
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
|
7
7
|
arthur_client/api_bindings/api/authorization_v1_api.py,sha256=lLy6XudG2GmSXAQXgPsrYfFII5VFqnVYLYwD9uEQO1U,168399
|
8
8
|
arthur_client/api_bindings/api/connector_schemas_v1_api.py,sha256=i6lDybpWt4OTaG95n8KSrBixP1Bu1JRuk8Tk2760sRM,21818
|
@@ -10,7 +10,7 @@ arthur_client/api_bindings/api/connectors_v1_api.py,sha256=RvPRetrR0n7d8eoyUorqt
|
|
10
10
|
arthur_client/api_bindings/api/data_plane_associations_v1_api.py,sha256=16sLHbpsgOO2TtUqLpXsHO5dbLkjHw8R0p6zir-61z0,72612
|
11
11
|
arthur_client/api_bindings/api/data_planes_v1_api.py,sha256=v-1GgCyTa3r1ns3l-vWN1eoVzueOdZOQRfaca0BY9WI,72069
|
12
12
|
arthur_client/api_bindings/api/data_retrieval_v1_api.py,sha256=jzxN8pcdtbgJN9SnwhCCmGhN4FOlkCdmFmW1WLkv0R8,97319
|
13
|
-
arthur_client/api_bindings/api/datasets_v1_api.py,sha256=
|
13
|
+
arthur_client/api_bindings/api/datasets_v1_api.py,sha256=Cv6viMcsDkS1JNVUqYCVNk_mxzcwsgnKQ5SKlOC3_EA,173856
|
14
14
|
arthur_client/api_bindings/api/default_api.py,sha256=PQLPiheDpRr7veZzHlwPvJX1me5QwZZpXZsgyZPoXuw,10592
|
15
15
|
arthur_client/api_bindings/api/feature_flags_v1_api.py,sha256=PRotgww8FLORomBQGj-v2bqvfMwfHoW48mlPP9zj7HQ,10550
|
16
16
|
arthur_client/api_bindings/api/groups_v1_api.py,sha256=vCIf6HnslrTocrP1L8FhLwiAZGmx2J7Wi5IC3wVZNjQ,111703
|
@@ -34,14 +34,16 @@ arthur_client/api_bindings/configuration.py,sha256=fMuF7CsSXY90OPLWc4aySWpKtGtjP
|
|
34
34
|
arthur_client/api_bindings/docs/AggregationMetricType.md,sha256=6hEXFM-9byb66vDncISF7YWnKEDUVSuAGas0V1nLSgs,265
|
35
35
|
arthur_client/api_bindings/docs/AggregationSpec.md,sha256=w2eUWxapFrQYtvGBD57UGaz1xfBugQm_70s46RM6eVs,1224
|
36
36
|
arthur_client/api_bindings/docs/AggregationSpecSchema.md,sha256=7hoOLynhI5Vyl2uRC_mvX4qHurztp4Uwyrkk6lovnQw,1655
|
37
|
-
arthur_client/api_bindings/docs/AggregationSpecSchemaInitArgsInner.md,sha256=
|
38
|
-
arthur_client/api_bindings/docs/Alert.md,sha256=
|
37
|
+
arthur_client/api_bindings/docs/AggregationSpecSchemaInitArgsInner.md,sha256=v_Iuzn9KwkPPtzAN4U4K1k1YRrKHYq9jjxthYNl-LFo,2321
|
38
|
+
arthur_client/api_bindings/docs/Alert.md,sha256=CUCbUFpm3vIGHLIrvGprVCcf9M70Nv0Z645zHBDBLEw,1771
|
39
39
|
arthur_client/api_bindings/docs/AlertBound.md,sha256=aCigWEZ-3MIYVs8eOtJn0E986Pv1vEzv4wbU1Zidovg,272
|
40
40
|
arthur_client/api_bindings/docs/AlertCheckJobSpec.md,sha256=bAchz8IiGtaYvxu4BZBGs-cOKQBT13tHiCtSEUAsIZE,1281
|
41
|
-
arthur_client/api_bindings/docs/AlertRule.md,sha256=
|
41
|
+
arthur_client/api_bindings/docs/AlertRule.md,sha256=dMoHDzNO8lqTvHzFTLM_72xPWScvraxWpUPdLIEjArw,1796
|
42
|
+
arthur_client/api_bindings/docs/AlertRuleInterval.md,sha256=3JM5sgcQ7JvRDOUmfTJHjlVy5_X6B1Q0rF5X12VDIiY,1093
|
42
43
|
arthur_client/api_bindings/docs/AlertRuleNotificationWebhook.md,sha256=RKOUoh1H9ox-qESGrQRcZBqDpyfpdWpK13tHZunGYto,1131
|
44
|
+
arthur_client/api_bindings/docs/AlertRuleSQLValidationResp.md,sha256=usXh0UtslR538FcqI_ZsVTvrph7h8JB5B8zqbJZNhbY,1435
|
43
45
|
arthur_client/api_bindings/docs/AlertRuleSort.md,sha256=df0Defh6lOJ995Mf4PdvnIZJZL56zYTJ4aBUXy3JTDA,259
|
44
|
-
arthur_client/api_bindings/docs/AlertRulesV1Api.md,sha256=
|
46
|
+
arthur_client/api_bindings/docs/AlertRulesV1Api.md,sha256=GPHTaxWW_97M7BzMeYtw4Y8ggpszW_gvCVMSsAu67e4,18915
|
45
47
|
arthur_client/api_bindings/docs/AlertSort.md,sha256=h3GNFcnPACs1HIS_w4UpSY3Z6y9nzAUsL0Skby74qrI,265
|
46
48
|
arthur_client/api_bindings/docs/AlertWebhookCalled.md,sha256=XOWFNzxt8_LjdOmRqfh5R8-cfbxTq9yUVmG8Tbly7MA,1161
|
47
49
|
arthur_client/api_bindings/docs/AlertsV1Api.md,sha256=b8TOxeSnSHh81h0Jk82iqGpsPXPTtNaJFVcgbOgVG4A,9875
|
@@ -75,7 +77,7 @@ arthur_client/api_bindings/docs/CreateModelLinkTaskJobSpec.md,sha256=op1mnZnm6xU
|
|
75
77
|
arthur_client/api_bindings/docs/CreateModelTaskJobSpec.md,sha256=-K858RIGM5sV98jHgU2T8XsxaC-gLawXCSDzwjy4jyY,1382
|
76
78
|
arthur_client/api_bindings/docs/CreatedAlerts.md,sha256=7Bd0IKW-OhLLMT3PB_ta9WQp-VS-x-gCoFh9AAg4t14,1019
|
77
79
|
arthur_client/api_bindings/docs/Credentials.md,sha256=QEShs4tAwQUpULYbYFKMjsg94TWdw_PjzXX5IiwZGvc,1023
|
78
|
-
arthur_client/api_bindings/docs/DType.md,sha256=
|
80
|
+
arthur_client/api_bindings/docs/DType.md,sha256=SGDBKxZMAyuKluZciLOLK5u9vP_OcJkUBtvPGPbyn48,483
|
79
81
|
arthur_client/api_bindings/docs/DataPlane.md,sha256=TQ6TTMJ5KgaP27NvtrVRAD9klwJ4TPddRVrhUzV2-cM,1356
|
80
82
|
arthur_client/api_bindings/docs/DataPlaneAssociation.md,sha256=j79bQmqthx-3CQiCaxmXXsfLxxXmsaWvYxnnvyrv_Rg,1353
|
81
83
|
arthur_client/api_bindings/docs/DataPlaneAssociationSort.md,sha256=Cj0b-yMpHWhoxs7NOsE__AbJ52Uin-PU7yATaDYvWSM,282
|
@@ -97,7 +99,7 @@ arthur_client/api_bindings/docs/DatasetJoinSpec.md,sha256=xRx2UUDiDKgBWe2NXXfiKg
|
|
97
99
|
arthur_client/api_bindings/docs/DatasetListType.md,sha256=wAmHtHqaRaOgVUe2tBMOc4jJGYqltGcivm4IBwXzq9c,1122
|
98
100
|
arthur_client/api_bindings/docs/DatasetLocator.md,sha256=jjxL9CK2hJpFcdehaqNzagvgnHfsQT4RsiSdDc8HbI0,1045
|
99
101
|
arthur_client/api_bindings/docs/DatasetLocatorField.md,sha256=UZvM0hVAcE-eRcY1QWUO4hB_CEqkAi-MhLv9sMeICiE,1047
|
100
|
-
arthur_client/api_bindings/docs/DatasetLocatorFieldDataType.md,sha256=
|
102
|
+
arthur_client/api_bindings/docs/DatasetLocatorFieldDataType.md,sha256=RBKUFB_Yyxh-ouVwBbK7nsTwi2Hd-eIDRfQzCHJJU74,337
|
101
103
|
arthur_client/api_bindings/docs/DatasetLocatorSchema.md,sha256=R5xbNocwz_OTJ89yovKPg4eq91UYcAPucOu4u40KuPg,1112
|
102
104
|
arthur_client/api_bindings/docs/DatasetLocatorSchemaField.md,sha256=LBFlk7SojJZ1iWFT4Ax2dr_wuUB45oxVXsD0-zLtLik,1397
|
103
105
|
arthur_client/api_bindings/docs/DatasetObjectType.md,sha256=DD5jkXYY3TpFgUyD3ua5RLW96ZTxmVqCDs9korZlHco,1172
|
@@ -105,7 +107,7 @@ arthur_client/api_bindings/docs/DatasetReference.md,sha256=yx1QssxQRjVfuoaxsbai2
|
|
105
107
|
arthur_client/api_bindings/docs/DatasetScalarType.md,sha256=4Rd2vV9Wku1xvD2EJnnUMafGJMs_NssWDMEZXE1RsmE,1148
|
106
108
|
arthur_client/api_bindings/docs/DatasetSchema.md,sha256=dMkTO-S2hr5sEgHkraBsLLoOt_-ZiDBlb1KikLJqlIA,1013
|
107
109
|
arthur_client/api_bindings/docs/DatasetsSort.md,sha256=wVePgYxyAJwUYb61_qqGgwohBapA_WYgwD8Ez55OoWQ,270
|
108
|
-
arthur_client/api_bindings/docs/DatasetsV1Api.md,sha256=
|
110
|
+
arthur_client/api_bindings/docs/DatasetsV1Api.md,sha256=hxgS6Y4j8yJXE6v-Ec8zULlw4Vl91gq51AWObBG_oSw,43002
|
109
111
|
arthur_client/api_bindings/docs/DefaultApi.md,sha256=ZdNg7QYC28cMm7AHg0Qj6S4X0jzlcXshs5vvAnP8nAs,2074
|
110
112
|
arthur_client/api_bindings/docs/Definition.md,sha256=_2iFOJbfKMQH4cGX5zeCYSs6OAMSHOsbM8En74M3bh4,1149
|
111
113
|
arthur_client/api_bindings/docs/DeleteGroupMembership.md,sha256=iVpp-NX2n7BiJHYVTpKpo9xREN83t5YuEkDe0FmnZdI,1041
|
@@ -128,9 +130,10 @@ arthur_client/api_bindings/docs/InfinitePagination.md,sha256=_r57sy0xxyvR9TlpYpy
|
|
128
130
|
arthur_client/api_bindings/docs/InfiniteResourceListAlert.md,sha256=QoHRnGdPnVglrDupKBzsCU1TfaXGv-YanBUh8ZDZwso,1178
|
129
131
|
arthur_client/api_bindings/docs/InfiniteResourceListJob.md,sha256=siUOj_Z4O7B4TwfQoCeBCpciRRIwgMRI3gaoxG18f-k,1148
|
130
132
|
arthur_client/api_bindings/docs/InternalServerError.md,sha256=vYhyw-Y99DkO_nT02h44weXiYO_V-iggGvfVNcRXonk,1010
|
133
|
+
arthur_client/api_bindings/docs/IntervalUnit.md,sha256=xD8mN9lPGR865sbWlwRPZ0J20LwM3No80P90jkzXKfs,316
|
131
134
|
arthur_client/api_bindings/docs/InviteNewUser.md,sha256=DTVW_9dz0q8WKRq7jIqvjhcM6S3VcP7DZsNN6gqOP4o,1042
|
132
135
|
arthur_client/api_bindings/docs/Items.md,sha256=6NfVWmfG9rKptJRFlYWeJQcSO7bR2nQmVs_bYyq0Zl8,1084
|
133
|
-
arthur_client/api_bindings/docs/Items1.md,sha256=
|
136
|
+
arthur_client/api_bindings/docs/Items1.md,sha256=ZTHEl9SSL6WgqZ682TcSJaY-EGswHVzjBriHqTEPWp4,989
|
134
137
|
arthur_client/api_bindings/docs/Job.md,sha256=FPUAaNjI_B5mGhhkDccRuAO4Yn_83HnfDA_AuyXfKLA,1916
|
135
138
|
arthur_client/api_bindings/docs/JobDequeueParameters.md,sha256=KIFpSS8j6vMdZ23yIf7mRSRg8IAS1L5aMTzhBNFPIOw,1032
|
136
139
|
arthur_client/api_bindings/docs/JobError.md,sha256=HpjBclWmW6OGU9PjivT4az27wGEI-_IFb5fdlBUNRHQ,846
|
@@ -154,9 +157,9 @@ arthur_client/api_bindings/docs/ListType.md,sha256=ztaokXUwUYWKNv8Z2A3i_MSdFBYAe
|
|
154
157
|
arthur_client/api_bindings/docs/MetricFunctionsV1Api.md,sha256=dAeNGY1XG_DqdtJfU0DbvNOaQQ9qpBujJDGG0FfKVqw,2697
|
155
158
|
arthur_client/api_bindings/docs/MetricsArgSpec.md,sha256=tXKn0IqDwU5F28UrdZ2xbDIAHd4IZIElvPm-fybDXTQ,953
|
156
159
|
arthur_client/api_bindings/docs/MetricsCalculationJobSpec.md,sha256=XzInYXAf7yN861tKg3tqpGfpInLR8soASVTASdKFvAE,1338
|
157
|
-
arthur_client/api_bindings/docs/MetricsColumnListParameterSchema.md,sha256=
|
158
|
-
arthur_client/api_bindings/docs/
|
159
|
-
arthur_client/api_bindings/docs/
|
160
|
+
arthur_client/api_bindings/docs/MetricsColumnListParameterSchema.md,sha256=PW2yrQPHFfBXRB0xNOvRPjyKkWz1wI83-frWpNbeGok,2126
|
161
|
+
arthur_client/api_bindings/docs/MetricsColumnListParameterSchemaAllowedColumnTypesInner.md,sha256=5qhUcT0pXy6DP4wrcq3J3_17S4rjjner2jgXaiq3H1s,1674
|
162
|
+
arthur_client/api_bindings/docs/MetricsColumnParameterSchema.md,sha256=L3I3xibjKz17UjEnPIZaVDn6jBLQt4pkY2FG5eevnaE,2063
|
160
163
|
arthur_client/api_bindings/docs/MetricsDatasetParameterSchema.md,sha256=dwNiK6-44gXMjF3URZXNsaUPw72Jt_OuX4KWU0OWN30,1516
|
161
164
|
arthur_client/api_bindings/docs/MetricsLiteralParameterSchema.md,sha256=txuWGOEzA4KCPaeQckfyNRba5g9rrp1hjcYNF-PC1Y8,1507
|
162
165
|
arthur_client/api_bindings/docs/MetricsQueryResult.md,sha256=GHdkcCH5JnrmFkAPimqvicgqt4AoGtGCoA6gcsPFQog,999
|
@@ -179,13 +182,13 @@ arthur_client/api_bindings/docs/NumericMetric.md,sha256=R9YyZ_3T5zdK5N5y4KiApG0s
|
|
179
182
|
arthur_client/api_bindings/docs/NumericPoint.md,sha256=a7prp88r4v5pAbmk__MTqbDPX9eV1I5o_5uypgSw7Co,1043
|
180
183
|
arthur_client/api_bindings/docs/NumericTimeSeries.md,sha256=NQDmwpC4Y0i5CtY7WXi1s-4K4SY0XYa2j1p3JS-sGVU,1189
|
181
184
|
arthur_client/api_bindings/docs/OAuthV1Api.md,sha256=UwihljAFoSvnuryn7iNU41_z-mgmdS7cL0aIvp9hWyU,2092
|
182
|
-
arthur_client/api_bindings/docs/ObjectType.md,sha256=
|
185
|
+
arthur_client/api_bindings/docs/ObjectType.md,sha256=iBrbSq7dvGqYvItyR8PPhj0iQExuxxbsoSboGZ0KK-k,965
|
183
186
|
arthur_client/api_bindings/docs/ObjectValue.md,sha256=GNJXvyHxnTDzKh-sjeGqK0JQG0_Gckxlao8iIaB9jL8,1168
|
184
187
|
arthur_client/api_bindings/docs/Organization.md,sha256=UO7M6iC1ti8oyot2thudh6qEdIxluDZrPZOjGpi8bTc,1109
|
185
188
|
arthur_client/api_bindings/docs/OrganizationsV1Api.md,sha256=EfyHSkLgWWMJoTqrgDd3MYwUGR8pOJoJEJexJW9oob8,7380
|
186
189
|
arthur_client/api_bindings/docs/PIIConfig.md,sha256=UmJrbF13Dga3_Vg6ezmoUA4YmMDvKnnIdwF5rcWH0UY,961
|
187
190
|
arthur_client/api_bindings/docs/Pagination.md,sha256=QcHVuXM1U5kEaU2_YbtT4cHXS02DIB0m41YBGIZ7Dwk,1119
|
188
|
-
arthur_client/api_bindings/docs/PatchAlertRule.md,sha256=
|
191
|
+
arthur_client/api_bindings/docs/PatchAlertRule.md,sha256=Z8i5PSPIt8HH_cauZa9gLWRKYTakMITW7wYNGZgV6d4,1274
|
189
192
|
arthur_client/api_bindings/docs/PatchConnectorSpec.md,sha256=2GrPGQ_vAOvqOq0Qbjw0azt1dYwpTtwfI4MGHdq6KQ0,1161
|
190
193
|
arthur_client/api_bindings/docs/PatchDataPlane.md,sha256=JxtdjmQmCH-fx88XFjgFQzkThdRi21Al5nZv1yAcL5s,1050
|
191
194
|
arthur_client/api_bindings/docs/PatchDataPlaneCapabilities.md,sha256=F6yELNqKu650unBLphPH9F9uBB4fev49pJVO4ktKeCc,1080
|
@@ -207,8 +210,8 @@ arthur_client/api_bindings/docs/PermissionRequestItem.md,sha256=CAxi_zbsM7R9aEEQ
|
|
207
210
|
arthur_client/api_bindings/docs/PermissionResponseItem.md,sha256=yCRdqfZWrwO7GmmgwCHJmefNTTXWgAVyJhsFI8vUoSE,1332
|
208
211
|
arthur_client/api_bindings/docs/PermissionsRequest.md,sha256=kLsczcoS-LvL3N55hx7mYUkt26Djyo_sI5vymKG7Nco,1119
|
209
212
|
arthur_client/api_bindings/docs/PermissionsResponse.md,sha256=E-HgmKsg5tLR5CxJwS-baiGQhXjOr-dcoDvcRpYHhVg,1016
|
210
|
-
arthur_client/api_bindings/docs/PostAlert.md,sha256=
|
211
|
-
arthur_client/api_bindings/docs/PostAlertRule.md,sha256=
|
213
|
+
arthur_client/api_bindings/docs/PostAlert.md,sha256=ut76qXdNo4uiIBMk_YGdMeeO7VL4WtCP5fBDZkG4bfg,1399
|
214
|
+
arthur_client/api_bindings/docs/PostAlertRule.md,sha256=U7iaJkAjr7d64Ee7Y15D4R6MC3vdtpH4b_Jj5tF9JgY,1555
|
212
215
|
arthur_client/api_bindings/docs/PostAlerts.md,sha256=mIa5fYJIMyAA4lLKXoxz8zkf9feGs5w07uJE065jceM,897
|
213
216
|
arthur_client/api_bindings/docs/PostConnectorSpec.md,sha256=mKyNkabBOjaD_xRGUXNw0BqHRV9P97hgMYHNFj5Ceo8,1419
|
214
217
|
arthur_client/api_bindings/docs/PostDataPlane.md,sha256=NvhmTXJvzZ_iMzag5j1unK9B-vpdQRFXtmGkof6onbw,1083
|
@@ -225,7 +228,7 @@ arthur_client/api_bindings/docs/PostJobBatch.md,sha256=rv7R3ovfeuUe05S3AEC-I4tu1
|
|
225
228
|
arthur_client/api_bindings/docs/PostJobKind.md,sha256=brOiDfnaaz9bQpNKsYcWZjTo4lJm1Lc-aIvLh8M1a-4,644
|
226
229
|
arthur_client/api_bindings/docs/PostJobSpec.md,sha256=sJCmiHMXNoO58mmTIt5SVvrkRAV2OCpMW6lpiPcPF7M,1592
|
227
230
|
arthur_client/api_bindings/docs/PostLinkTaskRequest.md,sha256=k-QUiU3ZSkxGlG7YVIz--yulTMgGuFGFPJnxjFhjuhQ,1216
|
228
|
-
arthur_client/api_bindings/docs/PostMetricsQuery.md,sha256=
|
231
|
+
arthur_client/api_bindings/docs/PostMetricsQuery.md,sha256=pPzxWrcizKdL1UsA8V_SK8ocT8nHyOMjLnK_xxvG5ec,1333
|
229
232
|
arthur_client/api_bindings/docs/PostMetricsQueryResultFilter.md,sha256=tUVkdP07u7wUclxg_v5fVo3_4PnWQ3vvlpTnRMO8Jgo,1446
|
230
233
|
arthur_client/api_bindings/docs/PostMetricsQueryResultFilterAndGroup.md,sha256=CEcLsyGNLKI1MaDcHdnGvgoIifhQ_E_uIimRhis60_g,1399
|
231
234
|
arthur_client/api_bindings/docs/PostMetricsQueryResultFilterAndGroupAndInner.md,sha256=fwoyhOd6JCPmJPHgag4_41Oss8F2_azVz_A7xnxUUfg,2109
|
@@ -319,6 +322,7 @@ arthur_client/api_bindings/docs/UserServiceAccountCredentials.md,sha256=Hvtk2CBO
|
|
319
322
|
arthur_client/api_bindings/docs/UserSort.md,sha256=wwyER3cyP1iGmefPUTZtSiNuddVZS6zRj6j1ww4ii2c,324
|
320
323
|
arthur_client/api_bindings/docs/UserType.md,sha256=SwWOMIR-sezDkjWsBf_7JlFZllO3kjuuNOhR6F-p_vw,304
|
321
324
|
arthur_client/api_bindings/docs/UsersV1Api.md,sha256=HLLawoKZdQkTMbPGSzDZ5CJOpO7-HTEF6p1241iSCzo,27527
|
325
|
+
arthur_client/api_bindings/docs/ValidateAlertRuleQueryReq.md,sha256=VBeKw2v7Amg9C_JvlrWJFmNuZem2M4n45hIZZE7_ivg,1080
|
322
326
|
arthur_client/api_bindings/docs/ValidationError.md,sha256=nj_0Vd3M9y9d-ThIuGPi8asWbngZQEvMtBclAqNLrXQ,1007
|
323
327
|
arthur_client/api_bindings/docs/ValidationErrorLocInner.md,sha256=ZtpauOydT4wkQoEEH7S50fz1lRr5fNiBcoqTxC8N55A,994
|
324
328
|
arthur_client/api_bindings/docs/Webhook.md,sha256=6IXcU9be7zHNCRgGc06jbMciug3bbFko3wIt4PMjIUo,1277
|
@@ -330,17 +334,19 @@ arthur_client/api_bindings/docs/Workspace.md,sha256=G4pN-rx4iU2-sxOhF-1Fp6QbHYrr
|
|
330
334
|
arthur_client/api_bindings/docs/WorkspaceSort.md,sha256=g2lRzcM9sBnHufImJj3fvRQYgiQRt885iYZc7OkE9Mk,299
|
331
335
|
arthur_client/api_bindings/docs/WorkspacesV1Api.md,sha256=WM4FbbGbsiekeP2VnFE1Em0gT9-rXb45aBoqPTiBDqI,14011
|
332
336
|
arthur_client/api_bindings/exceptions.py,sha256=yy0Uot-WkcM6-PbNo2KDnrKAUL_PFmeCTD2tvq_gFp4,5977
|
333
|
-
arthur_client/api_bindings/models/__init__.py,sha256=
|
337
|
+
arthur_client/api_bindings/models/__init__.py,sha256=FdsaC_UjlvQCygBe8MAy6NNFYjA6JeqpH8lovcaSNZE,23287
|
334
338
|
arthur_client/api_bindings/models/aggregation_metric_type.py,sha256=USKpDqhX4TQ4lqIoHOp3q70mydsf1u_zc1EKus9QhYo,783
|
335
339
|
arthur_client/api_bindings/models/aggregation_spec.py,sha256=mbCw-IPV4mUA9f8WtSZL9acjSu3L4pCcTsofxxf2Mq8,4110
|
336
340
|
arthur_client/api_bindings/models/aggregation_spec_schema.py,sha256=wLNgL29Edgv7JbpSxkVd8sX6vJ-5GkRVCjG26_hOTUQ,4626
|
337
341
|
arthur_client/api_bindings/models/aggregation_spec_schema_init_args_inner.py,sha256=x2rmtaasa05h5VaKLk1nSuwaAyUfE4d0FNAaJgEOfFI,7540
|
338
|
-
arthur_client/api_bindings/models/alert.py,sha256=
|
342
|
+
arthur_client/api_bindings/models/alert.py,sha256=g4XpIrIq_txJHAYxdnrSxrHDkwVqIPpMzkKXNf1IsP0,5968
|
339
343
|
arthur_client/api_bindings/models/alert_bound.py,sha256=iobunYuV7vKLg6EryqI3MftCkYrmeJtRC7ATONCfztU,768
|
340
344
|
arthur_client/api_bindings/models/alert_check_job_spec.py,sha256=dJnsLFbfvdM9AYUWAubMoOQ79dU4FhFtHHyy3Ux1WtY,3595
|
341
|
-
arthur_client/api_bindings/models/alert_rule.py,sha256=
|
345
|
+
arthur_client/api_bindings/models/alert_rule.py,sha256=vQ3Du59UVlXXZoIG60jOwbRlDD1zuH7Jxck2zBbhiMc,6230
|
346
|
+
arthur_client/api_bindings/models/alert_rule_interval.py,sha256=qrQywuEYO7WbArhxYVSBkrwEtCUAlTsl0CmI4EFnN2M,2777
|
342
347
|
arthur_client/api_bindings/models/alert_rule_notification_webhook.py,sha256=Oi6c_34jdVqT_WU76wrs8kla3-kNdD7rVEZDouSHaAc,2669
|
343
348
|
arthur_client/api_bindings/models/alert_rule_sort.py,sha256=ewtr9F3cttc4VpoCZcgOLd18zQUanhV18D0D0RLbmaQ,761
|
349
|
+
arthur_client/api_bindings/models/alert_rule_sql_validation_resp.py,sha256=hCnF05ih5-qjaO6nYjNjUGAX9wBgAzlJQXe1IPrpA6E,3324
|
344
350
|
arthur_client/api_bindings/models/alert_sort.py,sha256=4su0uTugb5QPxuLc25VTJDe9rrVK1S2glB_uki-pJYY,759
|
345
351
|
arthur_client/api_bindings/models/alert_webhook_called.py,sha256=mS8MReYoEjyVgi2MBDettj_vFd_3AEi9QiLmg4J7Pj8,3251
|
346
352
|
arthur_client/api_bindings/models/available_dataset.py,sha256=s7EZQR-x_nCWBXgbWMq7E4AHa6mPNi37YQDUaudAh_A,6343
|
@@ -370,7 +376,7 @@ arthur_client/api_bindings/models/create_model_link_task_job_spec.py,sha256=i3zJ
|
|
370
376
|
arthur_client/api_bindings/models/create_model_task_job_spec.py,sha256=TPPIjbVjMiGlGfBLHnmuR8t-QvJE20o5F4j7E1GXjbA,4428
|
371
377
|
arthur_client/api_bindings/models/created_alerts.py,sha256=VpMIFjZJONB41YTMTdyHrFwi330Ijsvp1e3tMJmLDJY,3951
|
372
378
|
arthur_client/api_bindings/models/credentials.py,sha256=LV3hHfzAKsH52pv4hClJJTUhveybeFz1qAzfpmNjoaI,5120
|
373
|
-
arthur_client/api_bindings/models/d_type.py,sha256=
|
379
|
+
arthur_client/api_bindings/models/d_type.py,sha256=DkkurJHk6BAYxilYGXvr3Okw59-jMiFd6BqREi0fi4E,889
|
374
380
|
arthur_client/api_bindings/models/data_plane.py,sha256=AkYbN-MWNsgdU49tgm4eER3CsRnjRE4TEuguXOWPhb0,4261
|
375
381
|
arthur_client/api_bindings/models/data_plane_association.py,sha256=P6EWXt-IM90xPsf9f3w3jEmCao8NlPljkE0UmGH71Ks,4375
|
376
382
|
arthur_client/api_bindings/models/data_plane_association_sort.py,sha256=PaRZV90wjsWum3SDKgWxd-QEJ458Ik-cD9w_fNNoSMo,806
|
@@ -389,7 +395,7 @@ arthur_client/api_bindings/models/dataset_join_spec.py,sha256=miO48LjsVPp8LGMjIN
|
|
389
395
|
arthur_client/api_bindings/models/dataset_list_type.py,sha256=KliLYKPpYeyC-tQ2xLPXmcghtRlWPleIqQRl0Hm47gI,3509
|
390
396
|
arthur_client/api_bindings/models/dataset_locator.py,sha256=ns2DnkWQBe5Ue32YwzaT0vWYN8jgCBoJ9LPal3nDl3U,3127
|
391
397
|
arthur_client/api_bindings/models/dataset_locator_field.py,sha256=3XQTw9-Ay9wt5NyyQt16LsUQvCktbJPKpWrFzaXn7jw,2678
|
392
|
-
arthur_client/api_bindings/models/dataset_locator_field_data_type.py,sha256=
|
398
|
+
arthur_client/api_bindings/models/dataset_locator_field_data_type.py,sha256=vIk0HrBhBCxuuezvzDSfQLz1_4FlEBz78o3rDlrZdvs,847
|
393
399
|
arthur_client/api_bindings/models/dataset_locator_schema.py,sha256=NqE9UUuBfXM583w1cit3jh0PzAKWuy71zeegohyxrK4,3147
|
394
400
|
arthur_client/api_bindings/models/dataset_locator_schema_field.py,sha256=Ii8DqaZwIim17_fAxNb4idt0aQSGHfcuxAE6ZRecZyE,3547
|
395
401
|
arthur_client/api_bindings/models/dataset_object_type.py,sha256=mNW7fQMl-yBXEAi2cbv9yz6Oe68TuNHh8MZWW0U5Er8,3878
|
@@ -416,6 +422,7 @@ arthur_client/api_bindings/models/infinite_pagination.py,sha256=v4US1ii-Jn-mN-t-
|
|
416
422
|
arthur_client/api_bindings/models/infinite_resource_list_alert.py,sha256=NB49sy7D5jkA9psEn-RmG5zcvOYki5E-ts-HYzefBmI,3516
|
417
423
|
arthur_client/api_bindings/models/infinite_resource_list_job.py,sha256=6krUBqoRyZlONZITFq3pd9mSDS1afX8JvAYpTcCZ314,3500
|
418
424
|
arthur_client/api_bindings/models/internal_server_error.py,sha256=CSFjhuEhPdT25KHc9KEfcCYOLnGs2_sP0shqTl_dmm8,2613
|
425
|
+
arthur_client/api_bindings/models/interval_unit.py,sha256=JLnP1dXdLyPlenmV8vAQWxCqFRjGzi3fGyrai7ZLFYY,796
|
419
426
|
arthur_client/api_bindings/models/invite_new_user.py,sha256=VVnNDiv1RsLvcm0LQbSROUjaCwDn4E4RbLrObwhhLAg,3575
|
420
427
|
arthur_client/api_bindings/models/items.py,sha256=1JDvcrgNi4G_ZWm2qy8BeO0BgoC9AT-cKdgMChi1RcA,5848
|
421
428
|
arthur_client/api_bindings/models/items1.py,sha256=bSEF-8FANstkXQKfXvQ04WV_a3wmTU7NM8VQHKMo1_I,5537
|
@@ -440,9 +447,9 @@ arthur_client/api_bindings/models/list_datasets_job_spec.py,sha256=d9LF0Os3ysWWs
|
|
440
447
|
arthur_client/api_bindings/models/list_type.py,sha256=fjOdliv8riPiKHJJUaAuJy885gTAjjyNXu3qOT7KOCk,2799
|
441
448
|
arthur_client/api_bindings/models/metrics_arg_spec.py,sha256=wbR1Wnzq3gqhbEhmh3JYdUr_MBpFO7dfdvINNODLPhg,2859
|
442
449
|
arthur_client/api_bindings/models/metrics_calculation_job_spec.py,sha256=MyFAelowMrhjTUm23x98GRvCZjlDbr38jak4S4rth-Y,3532
|
443
|
-
arthur_client/api_bindings/models/metrics_column_list_parameter_schema.py,sha256=
|
444
|
-
arthur_client/api_bindings/models/
|
445
|
-
arthur_client/api_bindings/models/
|
450
|
+
arthur_client/api_bindings/models/metrics_column_list_parameter_schema.py,sha256=_afdM6UzsqxrA0ogUQUjIEATjqQTYd4TNGE_WdrkZjA,5810
|
451
|
+
arthur_client/api_bindings/models/metrics_column_list_parameter_schema_allowed_column_types_inner.py,sha256=dhciTOJ5kCINFmluY4s4-gyIGCY7rAToMzRwsS4DERE,5880
|
452
|
+
arthur_client/api_bindings/models/metrics_column_parameter_schema.py,sha256=lrkAPYoVkHswBjxuih62LRu0OgwB01exxyDxwZItYc0,5774
|
446
453
|
arthur_client/api_bindings/models/metrics_dataset_parameter_schema.py,sha256=EnwlhOkcsqb06wP4XOdaIlqBMPbAhFBKKUv-MrPsZQ4,4167
|
447
454
|
arthur_client/api_bindings/models/metrics_literal_parameter_schema.py,sha256=CuKwkXqP9sJc7YXwrTNDK1qsC5fa0rScdE3qfIdHmcY,3900
|
448
455
|
arthur_client/api_bindings/models/metrics_query_result.py,sha256=xnfYYBocFqpeRMOVqlrbRyvcd1NJREotAI-iFOFYoEo,2585
|
@@ -462,11 +469,11 @@ arthur_client/api_bindings/models/not_found_error.py,sha256=n-XQUZEqEkKm32MJ-m3o
|
|
462
469
|
arthur_client/api_bindings/models/numeric_metric.py,sha256=EwaYrBTF8OFx6SwBUR0c3z9OU0qvmI6Yo50b-qgbN-c,3278
|
463
470
|
arthur_client/api_bindings/models/numeric_point.py,sha256=rKsENbmx9V5ELANWr2oEeybTr22IrfirJ_kCR0LSl2g,2815
|
464
471
|
arthur_client/api_bindings/models/numeric_time_series.py,sha256=bx1tvpLImSkpVrqxkrZAfQ7JLM3lDNnDXQ4UW7Snp8c,3784
|
465
|
-
arthur_client/api_bindings/models/object_type.py,sha256=
|
472
|
+
arthur_client/api_bindings/models/object_type.py,sha256=SvqE9TNP9NWw2fGpwTiX1AtqC19OldWlnDr3wPGXjTE,3347
|
466
473
|
arthur_client/api_bindings/models/object_value.py,sha256=1PAW7DkHAFXTgxJzxOnmwfwXrTPIhLXwY-FXeiZTo50,5890
|
467
474
|
arthur_client/api_bindings/models/organization.py,sha256=BQJHXIGcrmcGQrxD4JhIEBlaaazysZ5nYdPZM9W1N_o,2991
|
468
475
|
arthur_client/api_bindings/models/pagination.py,sha256=XWpYUWgFJIYmtJ3bMOqGlu6ganeK4wUxpZ8mCPC1d1Q,3118
|
469
|
-
arthur_client/api_bindings/models/patch_alert_rule.py,sha256=
|
476
|
+
arthur_client/api_bindings/models/patch_alert_rule.py,sha256=87iP9nydTCjFiNkWmUHXcJ9GF-eyPg3QbV2t-TZE1pA,5488
|
470
477
|
arthur_client/api_bindings/models/patch_connector_spec.py,sha256=eMGYyqwUlnyEHD0EAgIiW8H0W9aVTHcKy1f0B-pa8QE,3755
|
471
478
|
arthur_client/api_bindings/models/patch_data_plane.py,sha256=mwNIQ4XC6fnyYuUcD3DErp7ymJRqfg67aVH1HHG9AJ8,3773
|
472
479
|
arthur_client/api_bindings/models/patch_data_plane_capabilities.py,sha256=MVLSPbKUO7kDAJpR6HIrso7rJYofeXjGMsq66OtU7Gk,2833
|
@@ -489,8 +496,8 @@ arthur_client/api_bindings/models/permission_response_item.py,sha256=kMBj_O-lse6
|
|
489
496
|
arthur_client/api_bindings/models/permissions_request.py,sha256=RNtY39w0PapomLkkoHBLgNWGtgvgV8dodjCFmHqq28Q,3312
|
490
497
|
arthur_client/api_bindings/models/permissions_response.py,sha256=DR2oPzkg35AP4W6EltHouvfFFZmSF_3xgsYzZdXMazc,3083
|
491
498
|
arthur_client/api_bindings/models/pii_config.py,sha256=vjsbgtwi__zmbfCc38FCj3aKbcIZJKJUMhiTJi6qgY4,3620
|
492
|
-
arthur_client/api_bindings/models/post_alert.py,sha256=
|
493
|
-
arthur_client/api_bindings/models/post_alert_rule.py,sha256=
|
499
|
+
arthur_client/api_bindings/models/post_alert.py,sha256=PX6zWD7TrHcBIGTGhCePCXmP8unvpALTLynotn65Stc,4731
|
500
|
+
arthur_client/api_bindings/models/post_alert_rule.py,sha256=8t6pq6XlBZaicYSzaIYyxDpWm0TenX0LYwEinlB9-qI,4348
|
494
501
|
arthur_client/api_bindings/models/post_alerts.py,sha256=N9DYhMTPkH-A4Bcw5-RfNcJfkLzj-RvHlEHbxis4Emk,3066
|
495
502
|
arthur_client/api_bindings/models/post_connector_spec.py,sha256=CsUtXNUrN5OEWDIaela9B3Ls1t1sj9ndnhBj-8S6Qwg,3919
|
496
503
|
arthur_client/api_bindings/models/post_data_plane.py,sha256=TfM4YQqdCnW7B13flqU9S2kED-lv8dvg3SB56gBKdyI,3221
|
@@ -507,7 +514,7 @@ arthur_client/api_bindings/models/post_job_batch.py,sha256=jNd1be66SEQzxaXl6parI
|
|
507
514
|
arthur_client/api_bindings/models/post_job_kind.py,sha256=lBG5zzx--Fiwg--cgt923O7r91lK_7dTkYnlOjqmXXY,1090
|
508
515
|
arthur_client/api_bindings/models/post_job_spec.py,sha256=EMnM7uiFQhTzEVq4k9fj_rZ2sLwX2o9GkgYTW8n0rD0,8633
|
509
516
|
arthur_client/api_bindings/models/post_link_task_request.py,sha256=3YwcBRU45tOr6IoFpp9qYlFO3jFsNrOoq2poWDuX_9c,3248
|
510
|
-
arthur_client/api_bindings/models/post_metrics_query.py,sha256=
|
517
|
+
arthur_client/api_bindings/models/post_metrics_query.py,sha256=h5QAOL1R_b1SwQjuLqp3AZ3TdPDpmLQpYx1QmIs3fxI,4638
|
511
518
|
arthur_client/api_bindings/models/post_metrics_query_result_filter.py,sha256=XkaNAdAO4MnzjIuCO2pxrX1m_AWJmwgk9enKOQxDxYk,3236
|
512
519
|
arthur_client/api_bindings/models/post_metrics_query_result_filter_and_group.py,sha256=M0aLObBvTDBd62zb5CXHWJ5YH4bCdwsB2G6_Si1EkcA,3414
|
513
520
|
arthur_client/api_bindings/models/post_metrics_query_result_filter_and_group_and_inner.py,sha256=1a5sHJ3hRP2o8ygXQrYjhOKx9Oqg51yHsH6RttMozpE,6881
|
@@ -595,6 +602,7 @@ arthur_client/api_bindings/models/user_credentials.py,sha256=EfUMAguJoZBFxUY81mP
|
|
595
602
|
arthur_client/api_bindings/models/user_service_account_credentials.py,sha256=efpQNlMHdPU4x607xgCaBcjLKK6XU47xvJE6hAQ1l9M,5706
|
596
603
|
arthur_client/api_bindings/models/user_sort.py,sha256=I7WwH9B9G46681oGjcG-Oa-cHASpTDhqVcXBKfNPuZs,796
|
597
604
|
arthur_client/api_bindings/models/user_type.py,sha256=mdMxrQ317Q_Td13CRUcbLVLTN02sjQb_d-5aX4LWRRw,786
|
605
|
+
arthur_client/api_bindings/models/validate_alert_rule_query_req.py,sha256=yIeLjNXOLBFJQUYHr9knyuGa7hMZqzYF06GR4yKqs-o,2584
|
598
606
|
arthur_client/api_bindings/models/validation_error.py,sha256=6Md73455ytqjNUJlm67qevzPxIumEHcp92aur5XJy5s,3113
|
599
607
|
arthur_client/api_bindings/models/validation_error_loc_inner.py,sha256=HxkBA9FcJbXz201j-MgNcDAnOc_BIWlcnFEcZ04-JOw,4890
|
600
608
|
arthur_client/api_bindings/models/webhook.py,sha256=sL-3bl5SVcyAndDlj1N8QgkA0H4KJXfc22g4I4IqvrQ,4195
|
@@ -609,13 +617,15 @@ arthur_client/api_bindings/test/test_aggregation_metric_type.py,sha256=OgYPLHZt7
|
|
609
617
|
arthur_client/api_bindings/test/test_aggregation_spec.py,sha256=oHSv8SRUHsqMC7SctzuTdE6kWn5qFtTpjTZQzor2N2Y,2387
|
610
618
|
arthur_client/api_bindings/test/test_aggregation_spec_schema.py,sha256=z46J7Gj9fi2X2VhR7oe9kVErp-K7gCcIS-FKNQatNL8,2030
|
611
619
|
arthur_client/api_bindings/test/test_aggregation_spec_schema_init_args_inner.py,sha256=B_yqZnB_MyjQfFoVujW6xX0p-kJX48FDUZxtjdycKJA,2377
|
612
|
-
arthur_client/api_bindings/test/test_alert.py,sha256=
|
620
|
+
arthur_client/api_bindings/test/test_alert.py,sha256=3xc2qHhy5RLkE0wNGFhJHArU5yC9oAZRhxNVBmWVDhU,3015
|
613
621
|
arthur_client/api_bindings/test/test_alert_bound.py,sha256=_HMCB2rLWmIKFhY4WgJGsic4Qx1d7mMyIKe8GfzvcXU,700
|
614
622
|
arthur_client/api_bindings/test/test_alert_check_job_spec.py,sha256=61dW9Jmp8BcIJY4oWqtdgr-WeZ15D93L9SxsXVi5S6E,2017
|
615
|
-
arthur_client/api_bindings/test/test_alert_rule.py,sha256=
|
623
|
+
arthur_client/api_bindings/test/test_alert_rule.py,sha256=nI8K5H12etEaPyTdkMz_c4AbPF79JlTLoEBu_ftfGOU,3753
|
624
|
+
arthur_client/api_bindings/test/test_alert_rule_interval.py,sha256=A6p__kDXf5wXZ3jQWc08jcealM7OyNnDe0e_A-mMhUk,1532
|
616
625
|
arthur_client/api_bindings/test/test_alert_rule_notification_webhook.py,sha256=vn6Zl1uA-KutWUNdDaRQPjV1mGf3SmIB1SKS8rk2ydE,1645
|
617
626
|
arthur_client/api_bindings/test/test_alert_rule_sort.py,sha256=TWzavUuFlJLfdjrIBJFMTRuyURPyRjTYKCOwphDA8rA,722
|
618
|
-
arthur_client/api_bindings/test/
|
627
|
+
arthur_client/api_bindings/test/test_alert_rule_sql_validation_resp.py,sha256=al4tcJjObEgwSlBugOagio6jgK3NJvMpFKDc9X1xRmU,1886
|
628
|
+
arthur_client/api_bindings/test/test_alert_rules_v1_api.py,sha256=Uim5Ok-Gk7x7XXg5vUj9-TyRUSs1SA5rSgqP9LiREgc,1601
|
619
629
|
arthur_client/api_bindings/test/test_alert_sort.py,sha256=i88ZHFxB4AOYNuY_NhvEcUfFCHOn7budLxIy5nOfi-Y,693
|
620
630
|
arthur_client/api_bindings/test/test_alert_webhook_called.py,sha256=xqpZbSCH_RkkboVVe-7afZNzga6WCo5TrDPBMFh-dks,2190
|
621
631
|
arthur_client/api_bindings/test/test_alerts_v1_api.py,sha256=AKxLoDArYFD_cPCWpoJPjaK1Wp6MKsoUCnID2kL-CP4,1056
|
@@ -647,7 +657,7 @@ arthur_client/api_bindings/test/test_connectors_sort.py,sha256=OnZw_eXfXWSHVXQBQ
|
|
647
657
|
arthur_client/api_bindings/test/test_connectors_v1_api.py,sha256=ZMJ2VW4enjxiq1gswUyu2hTAx8A7nEUnmGE3Xq9_CNo,1680
|
648
658
|
arthur_client/api_bindings/test/test_create_model_link_task_job_spec.py,sha256=i11iQgIpSG925IJRoUdi6APT0AcJNE8y3wsPohO12no,1739
|
649
659
|
arthur_client/api_bindings/test/test_create_model_task_job_spec.py,sha256=jJjdNCbZIT5LnXXfKcBor0ZTlXkza-eYSLIXgrK7N6A,2410
|
650
|
-
arthur_client/api_bindings/test/test_created_alerts.py,sha256=
|
660
|
+
arthur_client/api_bindings/test/test_created_alerts.py,sha256=rclyfnHDkLFY7syziyTbGqIwMQV87WzhmH-hKf2Z-z4,4440
|
651
661
|
arthur_client/api_bindings/test/test_credentials.py,sha256=On6gHmoXdPMBHI9LfSjurRuvaqkRrozffz4JcbN7Hps,1532
|
652
662
|
arthur_client/api_bindings/test/test_d_type.py,sha256=ggQt2A4GYsNd4PamoDQQqWmTAp3OzCIIIpHPe3M37PE,665
|
653
663
|
arthur_client/api_bindings/test/test_data_plane.py,sha256=bTCu2pfq-bq97YwJlDAGORRgvCBNfs6hL6SMVh_ASrE,2587
|
@@ -699,9 +709,10 @@ arthur_client/api_bindings/test/test_groups_v1_api.py,sha256=KVu0TxKi3Hx8WQTlwGQ
|
|
699
709
|
arthur_client/api_bindings/test/test_health_status.py,sha256=ZMUxRpH0G_R0Tlltr3zGcMxz9-qRuwk8b_xUfFf9RiU,1379
|
700
710
|
arthur_client/api_bindings/test/test_http_validation_error.py,sha256=_dw6I_i-q58LXuuNOPTR_kW99LTHWfhFCiJti5v4szs,1739
|
701
711
|
arthur_client/api_bindings/test/test_infinite_pagination.py,sha256=oRFjv0AYCgaMDuYgTEbfKkm333g9Eb3m8iV9EpYSy2I,1478
|
702
|
-
arthur_client/api_bindings/test/test_infinite_resource_list_alert.py,sha256=
|
712
|
+
arthur_client/api_bindings/test/test_infinite_resource_list_alert.py,sha256=2pXe8TSD_v9-UgNkyZ4_NRVNvbtBJRlyQD76xgjunHE,4337
|
703
713
|
arthur_client/api_bindings/test/test_infinite_resource_list_job.py,sha256=4PVaX0nmjqHCp8FhZiE-V5SptkTmOQYM4KNFufFcORM,5885
|
704
714
|
arthur_client/api_bindings/test/test_internal_server_error.py,sha256=D1N0qDqU0kEFI7j1-p4-NU9Wo5Khb-nBIoqExTN-xTk,1482
|
715
|
+
arthur_client/api_bindings/test/test_interval_unit.py,sha256=CrZEOZjwuHT1G5L_ng0rTI9ftooGQfL6cLu2LBSVfl0,714
|
705
716
|
arthur_client/api_bindings/test/test_invite_new_user.py,sha256=6DtLJ1cmW2OOJ9oUE7ejnGOzwnZQLJELxLQYMvImFys,1740
|
706
717
|
arthur_client/api_bindings/test/test_items.py,sha256=HeJEdh7RotCh8rcQhub2lDRh2hOrhHdI7ANi7CqVUoY,1707
|
707
718
|
arthur_client/api_bindings/test/test_items1.py,sha256=996pJjlhSlGChoIuF4js9a24seeozxVKWV4NVRCJTWc,1574
|
@@ -728,9 +739,9 @@ arthur_client/api_bindings/test/test_list_type.py,sha256=wqrXlMWBg-m_5--hshlH3IT
|
|
728
739
|
arthur_client/api_bindings/test/test_metric_functions_v1_api.py,sha256=IoTo744ERBSbo3N6Uqh7LmS5-Q6yCwSIGisUG5b--1I,876
|
729
740
|
arthur_client/api_bindings/test/test_metrics_arg_spec.py,sha256=xywNmlrxNeLV6WGiEGOTuJVOlI3tLCXO6GcueXzR_EA,1500
|
730
741
|
arthur_client/api_bindings/test/test_metrics_calculation_job_spec.py,sha256=edsaqFJ-B0TBDkbtQz3HgtGu-DpwVI5OcIP9C-9OQvk,2073
|
731
|
-
arthur_client/api_bindings/test/test_metrics_column_list_parameter_schema.py,sha256=
|
742
|
+
arthur_client/api_bindings/test/test_metrics_column_list_parameter_schema.py,sha256=zT00t145k8OwBD8dPxyEwBHiTdje3d_50Gii6yF8JUg,2207
|
743
|
+
arthur_client/api_bindings/test/test_metrics_column_list_parameter_schema_allowed_column_types_inner.py,sha256=qbMlXegIXcXk4plabUO2NkRwqc0X3L9FXnj_AiJSuis,2170
|
732
744
|
arthur_client/api_bindings/test/test_metrics_column_parameter_schema.py,sha256=_wAfRvsxiAvZ_6pU-jAMaebAzQtjB4GZS0vQG3V_S80,2153
|
733
|
-
arthur_client/api_bindings/test/test_metrics_column_parameter_schema_allowed_column_types_inner.py,sha256=gwMvfWhXsZwR1wnHp0rha8P0AVKgQuGNF-fbNjmd3Ow,2121
|
734
745
|
arthur_client/api_bindings/test/test_metrics_dataset_parameter_schema.py,sha256=chri02qFy7j0gtdhNnNO6_bbq0KeoOLB9iSZaP6py6E,1893
|
735
746
|
arthur_client/api_bindings/test/test_metrics_literal_parameter_schema.py,sha256=w5KQVVOlJ084IGTxHHOBjsoOZmnzt8S96dJvIHuWE5Y,1936
|
736
747
|
arthur_client/api_bindings/test/test_metrics_query_result.py,sha256=-bw8wZoQs7lJfkWXV61_xnxqk1hYf7qGyl9rmrDHeWQ,1682
|
@@ -758,7 +769,7 @@ arthur_client/api_bindings/test/test_object_value.py,sha256=maIMjkClu1ldpBItpo5M
|
|
758
769
|
arthur_client/api_bindings/test/test_organization.py,sha256=afidLazkn7KOoH70z8gUy2VvCno2vo3nyXfhwvt0h_A,1878
|
759
770
|
arthur_client/api_bindings/test/test_organizations_v1_api.py,sha256=TTfSjE5CglzA83--422hAUXjfTi_9iN_nidjvNCZwcw,1137
|
760
771
|
arthur_client/api_bindings/test/test_pagination.py,sha256=BbXHwIKBnD3tjns5RIpbCyChdGAuLkuT8qEfAQQC00g,1521
|
761
|
-
arthur_client/api_bindings/test/test_patch_alert_rule.py,sha256=
|
772
|
+
arthur_client/api_bindings/test/test_patch_alert_rule.py,sha256=CpfoJj5bVedgG5uDc1vh_qL-bwCpKW3Ir6yZYGvcVDg,1834
|
762
773
|
arthur_client/api_bindings/test/test_patch_connector_spec.py,sha256=DLdqndTHw0-b9F9OqjVYA4mXpKu5PtEOPbEgSlsregI,1699
|
763
774
|
arthur_client/api_bindings/test/test_patch_data_plane.py,sha256=RYCW6M4lzviZwc6PRQYQfOMiwounQw4p5U6WYK33gTE,1602
|
764
775
|
arthur_client/api_bindings/test/test_patch_data_plane_capabilities.py,sha256=f4HtWziMzOPGwmBFT2peXESjEVOmonUhmzmSa4b2on8,1556
|
@@ -781,9 +792,9 @@ arthur_client/api_bindings/test/test_permission_response_item.py,sha256=H_HYgueU
|
|
781
792
|
arthur_client/api_bindings/test/test_permissions_request.py,sha256=ETBhpf_spRW_5vgDDD-mx2uRFEObqqTTZkMsiVk6-wo,2053
|
782
793
|
arthur_client/api_bindings/test/test_permissions_response.py,sha256=v9u8Z5PVWOXvD4UZed5Ofc-1U8z71LiLqc2eNlPSBZo,2151
|
783
794
|
arthur_client/api_bindings/test/test_pii_config.py,sha256=axIAiBbZ7K_sMze9wINDuGuUx-u-ESiauHszC3m3nXs,1522
|
784
|
-
arthur_client/api_bindings/test/test_post_alert.py,sha256=
|
785
|
-
arthur_client/api_bindings/test/test_post_alert_rule.py,sha256=
|
786
|
-
arthur_client/api_bindings/test/test_post_alerts.py,sha256=
|
795
|
+
arthur_client/api_bindings/test/test_post_alert.py,sha256=xmhxEHjLnAGvTjFeyhV_1GMRr7QLbBcQae3CqzUNh0A,2320
|
796
|
+
arthur_client/api_bindings/test/test_post_alert_rule.py,sha256=BKQPwatOhL-mEEgc3uyEkCgnHDtawkgkytlWn3oslRU,2159
|
797
|
+
arthur_client/api_bindings/test/test_post_alerts.py,sha256=E5mNiIZqnDWwEXrHGu0UgZPp_nS4vCmKa3IptygM78g,2915
|
787
798
|
arthur_client/api_bindings/test/test_post_connector_spec.py,sha256=zm6t8neoUmUG1VZP12VnDKDASclQor5hCgla83kqdu4,2090
|
788
799
|
arthur_client/api_bindings/test/test_post_data_plane.py,sha256=Ih1oKJykD_Ajjd1Pnh_WSWWVGPFpz2i8u59f71f69X0,1640
|
789
800
|
arthur_client/api_bindings/test/test_post_data_plane_association.py,sha256=9UlCOBGcQ4nWtPcC4xRdedKGLNEPf-qdd7RR1Or9UOQ,1631
|
@@ -799,7 +810,7 @@ arthur_client/api_bindings/test/test_post_job_batch.py,sha256=GgNS3spC4mAjnxvrkT
|
|
799
810
|
arthur_client/api_bindings/test/test_post_job_kind.py,sha256=F_OC6lTyqDN4BaVyLe91wQDJ2rjCdCY1-kVLCTE19Tk,708
|
800
811
|
arthur_client/api_bindings/test/test_post_job_spec.py,sha256=H5wLW7zLiOmUDMM4uQma_ZsJrQsxT8Bq-wSFhXTwna0,2544
|
801
812
|
arthur_client/api_bindings/test/test_post_link_task_request.py,sha256=2nsBOAX-HUBeo5fwS8SgbzS5gdcAUG4GUiSXRae8tJA,1607
|
802
|
-
arthur_client/api_bindings/test/test_post_metrics_query.py,sha256=
|
813
|
+
arthur_client/api_bindings/test/test_post_metrics_query.py,sha256=koHm-7rO_JkBOexh82mrg0tqJ5aRj-pAp7bPpDM0OSc,2360
|
803
814
|
arthur_client/api_bindings/test/test_post_metrics_query_result_filter.py,sha256=30ezlorRXXnDQCvVnjjSZlU5MU_SPT_2pOkegb4WX44,1734
|
804
815
|
arthur_client/api_bindings/test/test_post_metrics_query_result_filter_and_group.py,sha256=50Trd1PmHfsFVbWq6KDYz8jpjpk16Q5d3-1cVj6PIug,1792
|
805
816
|
arthur_client/api_bindings/test/test_post_metrics_query_result_filter_and_group_and_inner.py,sha256=-yQHYWhrpSKJ7xG1NVql8o2FlKYrRfNmZjhZrIqF5zQ,2232
|
@@ -835,7 +846,7 @@ arthur_client/api_bindings/test/test_register_user.py,sha256=__AJ5xIy18xPu6NOXpK
|
|
835
846
|
arthur_client/api_bindings/test/test_registration_v1_api.py,sha256=HHZwOHPkUBHUuoXBJPITnvUcJleKgPO7AD1xrJlbve4,821
|
836
847
|
arthur_client/api_bindings/test/test_resource_kind.py,sha256=LpDGag2GPVDMC7MzXEsNcWA4zyWqAQdrolAOQof5ACk,714
|
837
848
|
arthur_client/api_bindings/test/test_resource_list_aggregation_spec_schema.py,sha256=bYwDIhtCqmWLG0dbO5WGcN2YAyOpMh2QcMCd1VlNpSE,3128
|
838
|
-
arthur_client/api_bindings/test/test_resource_list_alert_rule.py,sha256=
|
849
|
+
arthur_client/api_bindings/test/test_resource_list_alert_rule.py,sha256=M2mfPs68VXKl075luM_2s447p2hIbJw8-cN6Pv0NmM0,5875
|
839
850
|
arthur_client/api_bindings/test/test_resource_list_available_dataset.py,sha256=cpQk91vzjLRg60XRMWLWdyHrKo67-Ij_b6dYkNw5v6A,6967
|
840
851
|
arthur_client/api_bindings/test/test_resource_list_connector_spec.py,sha256=TdAHCROu_6B7DDo-WCC7nZsoukVpn8Hu1sp8Qjxcnx8,6091
|
841
852
|
arthur_client/api_bindings/test/test_resource_list_connector_type.py,sha256=js4V1ZEAM_oinXZ3oYeTGxqv20dNp08hO1KcGfRwV-c,2139
|
@@ -893,6 +904,7 @@ arthur_client/api_bindings/test/test_user_service_account_credentials.py,sha256=
|
|
893
904
|
arthur_client/api_bindings/test/test_user_sort.py,sha256=5KwCKgZarzGu0wtkKst-KN-XeBsgZCabEvtNWVE81gY,686
|
894
905
|
arthur_client/api_bindings/test/test_user_type.py,sha256=SsMaFNmiOld-q_Lyzp7s3hOaps2EI8nEL7EptBKw5mE,686
|
895
906
|
arthur_client/api_bindings/test/test_users_v1_api.py,sha256=iChzEwcJNb3eWGe7TcyJIEx3T6BeMCervqdQ9YzQ5-A,2155
|
907
|
+
arthur_client/api_bindings/test/test_validate_alert_rule_query_req.py,sha256=zEMs8wt_fdV8RLg37HtzOLFJAXVFkjVxkm5lezeVYE8,1562
|
896
908
|
arthur_client/api_bindings/test/test_validation_error.py,sha256=_7kB1ntL9AVYkLJ0W9IyouymCyE690d__ZLMBETlFPU,1633
|
897
909
|
arthur_client/api_bindings/test/test_validation_error_loc_inner.py,sha256=VOHPWIP_lTFSytq2LJcOz0a_Bm6W9TPJHSaOth6Lim4,1482
|
898
910
|
arthur_client/api_bindings/test/test_webhook.py,sha256=r6U3YpaTxzZdC4dr-FxL_LILZZQ_-i3TLe0v3WV-1bM,2818
|
@@ -903,13 +915,13 @@ arthur_client/api_bindings/test/test_webhooks_v1_api.py,sha256=7x3pb2tZdXbnSAI-w
|
|
903
915
|
arthur_client/api_bindings/test/test_workspace.py,sha256=hDjh6CQ8oHTVk_X3fb_wKVPp_cY9bQFAGmNh7qMKpIw,1918
|
904
916
|
arthur_client/api_bindings/test/test_workspace_sort.py,sha256=PDxv__jzX9VXu54ExqHJTLHRn9XKwGVwYjZ4OdFBmLk,721
|
905
917
|
arthur_client/api_bindings/test/test_workspaces_v1_api.py,sha256=_EdT96HqIQWQ64Oy11CEP4LqcJhZPB_EYzCYbhceJG0,1345
|
906
|
-
arthur_client/api_bindings_README.md,sha256=
|
918
|
+
arthur_client/api_bindings_README.md,sha256=dJ1l7ThPPF-DL4xTBcE5R-0M7mE4uvZLD1bFZpQYitY,50778
|
907
919
|
arthur_client/auth/__init__.py,sha256=f4XqpGe9d1V0xlocq2JlNtd8l_GUoUOy6_1yTMCBsc0,210
|
908
920
|
arthur_client/auth/constants.py,sha256=lIEdf1UujvAZhueQ8WZGjd3ErcJlCmrXRxjRhTRNb18,38
|
909
921
|
arthur_client/auth/device_authorizer.py,sha256=bJMIZRjkwQwoSWTLEp7OoXM2MytO3ADSD97Qlc1accA,2598
|
910
922
|
arthur_client/auth/discovery.py,sha256=hR0MglzRWHdwyi72If5hTnjO50fDJhquP_DD7OzjIQQ,1188
|
911
923
|
arthur_client/auth/oauth_api_config.py,sha256=MB-bwm6Qo_USZD_4KVId6d_v5OtLBphwBjMjslVjTlo,1348
|
912
924
|
arthur_client/auth/session.py,sha256=wCriib5ajfm1e1WTL_QXVCJmEOrGwQg_0v91e5qrC6g,2649
|
913
|
-
arthur_client-1.4.
|
914
|
-
arthur_client-1.4.
|
915
|
-
arthur_client-1.4.
|
925
|
+
arthur_client-1.4.1187.dist-info/METADATA,sha256=p3zmRWJzjlh6-syKSOywq2JTAKWrONxJm5785U9glmM,1731
|
926
|
+
arthur_client-1.4.1187.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
927
|
+
arthur_client-1.4.1187.dist-info/RECORD,,
|
@@ -1,31 +0,0 @@
|
|
1
|
-
# MetricsColumnParameterSchemaAllowedColumnTypesInner
|
2
|
-
|
3
|
-
|
4
|
-
## Properties
|
5
|
-
|
6
|
-
Name | Type | Description | Notes
|
7
|
-
------------ | ------------- | ------------- | -------------
|
8
|
-
**dtype** | [**DType**](DType.md) | |
|
9
|
-
**object** | [**Dict[str, MetricsColumnParameterSchemaAllowedColumnTypesInner]**](MetricsColumnParameterSchemaAllowedColumnTypesInner.md) | |
|
10
|
-
**items** | [**Items1**](Items1.md) | |
|
11
|
-
|
12
|
-
## Example
|
13
|
-
|
14
|
-
```python
|
15
|
-
from arthur_client.api_bindings.models.metrics_column_parameter_schema_allowed_column_types_inner import MetricsColumnParameterSchemaAllowedColumnTypesInner
|
16
|
-
|
17
|
-
# TODO update the JSON string below
|
18
|
-
json = "{}"
|
19
|
-
# create an instance of MetricsColumnParameterSchemaAllowedColumnTypesInner from a JSON string
|
20
|
-
metrics_column_parameter_schema_allowed_column_types_inner_instance = MetricsColumnParameterSchemaAllowedColumnTypesInner.from_json(json)
|
21
|
-
# print the JSON string representation of the object
|
22
|
-
print(MetricsColumnParameterSchemaAllowedColumnTypesInner.to_json())
|
23
|
-
|
24
|
-
# convert the object into a dict
|
25
|
-
metrics_column_parameter_schema_allowed_column_types_inner_dict = metrics_column_parameter_schema_allowed_column_types_inner_instance.to_dict()
|
26
|
-
# create an instance of MetricsColumnParameterSchemaAllowedColumnTypesInner from a dict
|
27
|
-
metrics_column_parameter_schema_allowed_column_types_inner_from_dict = MetricsColumnParameterSchemaAllowedColumnTypesInner.from_dict(metrics_column_parameter_schema_allowed_column_types_inner_dict)
|
28
|
-
```
|
29
|
-
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
30
|
-
|
31
|
-
|
File without changes
|