arthur-client 1.4.1233__py3-none-any.whl → 1.4.1235__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 +13 -1
- arthur_client/api_bindings/api/__init__.py +1 -0
- arthur_client/api_bindings/api/custom_aggregations_v1_api.py +1477 -0
- arthur_client/api_bindings/docs/AggregationSpecSchemaInitArgsInner.md +2 -2
- arthur_client/api_bindings/docs/BaseColumnParameterSchema.md +36 -0
- arthur_client/api_bindings/docs/BaseColumnParameterSchemaAllowedColumnTypesInner.md +31 -0
- arthur_client/api_bindings/docs/BaseDatasetParameterSchema.md +33 -0
- arthur_client/api_bindings/docs/BaseLiteralParameterSchema.md +33 -0
- arthur_client/api_bindings/docs/CustomAggregationSpecSchema.md +38 -0
- arthur_client/api_bindings/docs/CustomAggregationSpecSchemaAggregateArgsInner.md +38 -0
- arthur_client/api_bindings/docs/CustomAggregationsV1Api.md +410 -0
- arthur_client/api_bindings/docs/Items1.md +1 -1
- arthur_client/api_bindings/docs/MetricsColumnListParameterSchema.md +2 -2
- arthur_client/api_bindings/docs/MetricsColumnParameterSchema.md +2 -2
- arthur_client/api_bindings/docs/MetricsDatasetParameterSchema.md +1 -1
- arthur_client/api_bindings/docs/MetricsLiteralParameterSchema.md +1 -1
- arthur_client/api_bindings/docs/ObjectType.md +1 -1
- arthur_client/api_bindings/docs/PermissionName.md +10 -0
- arthur_client/api_bindings/docs/PostCustomAggregationSpecSchema.md +33 -0
- arthur_client/api_bindings/docs/PutCustomAggregationSpecSchema.md +33 -0
- arthur_client/api_bindings/docs/ReportedCustomAggregation.md +34 -0
- arthur_client/api_bindings/docs/ResourceKind.md +2 -0
- arthur_client/api_bindings/docs/RuleType.md +0 -4
- arthur_client/api_bindings/docs/ValidationOutcome.md +13 -0
- arthur_client/api_bindings/docs/ValidationResult.md +31 -0
- arthur_client/api_bindings/docs/ValidationResults.md +30 -0
- arthur_client/api_bindings/models/__init__.py +12 -1
- arthur_client/api_bindings/models/base_column_parameter_schema.py +125 -0
- arthur_client/api_bindings/models/{metrics_column_list_parameter_schema_allowed_column_types_inner.py → base_column_parameter_schema_allowed_column_types_inner.py} +7 -7
- arthur_client/api_bindings/models/base_dataset_parameter_schema.py +111 -0
- arthur_client/api_bindings/models/base_literal_parameter_schema.py +106 -0
- arthur_client/api_bindings/models/custom_aggregation_spec_schema.py +126 -0
- arthur_client/api_bindings/models/custom_aggregation_spec_schema_aggregate_args_inner.py +149 -0
- arthur_client/api_bindings/models/metrics_column_list_parameter_schema.py +7 -7
- arthur_client/api_bindings/models/metrics_column_parameter_schema.py +7 -7
- arthur_client/api_bindings/models/metrics_dataset_parameter_schema.py +4 -4
- arthur_client/api_bindings/models/metrics_literal_parameter_schema.py +4 -4
- arthur_client/api_bindings/models/object_type.py +3 -3
- arthur_client/api_bindings/models/permission_name.py +5 -0
- arthur_client/api_bindings/models/post_custom_aggregation_spec_schema.py +111 -0
- arthur_client/api_bindings/models/put_custom_aggregation_spec_schema.py +111 -0
- arthur_client/api_bindings/models/reported_custom_aggregation.py +98 -0
- arthur_client/api_bindings/models/resource_kind.py +1 -0
- arthur_client/api_bindings/models/rule_type.py +0 -2
- arthur_client/api_bindings/models/validation_outcome.py +37 -0
- arthur_client/api_bindings/models/validation_result.py +90 -0
- arthur_client/api_bindings/models/validation_results.py +95 -0
- arthur_client/api_bindings/test/test_aggregation_spec_schema_init_args_inner.py +1 -1
- arthur_client/api_bindings/test/test_base_column_parameter_schema.py +66 -0
- arthur_client/api_bindings/test/{test_metrics_column_list_parameter_schema_allowed_column_types_inner.py → test_base_column_parameter_schema_allowed_column_types_inner.py} +11 -11
- arthur_client/api_bindings/test/test_base_dataset_parameter_schema.py +58 -0
- arthur_client/api_bindings/test/test_base_literal_parameter_schema.py +59 -0
- arthur_client/api_bindings/test/test_custom_aggregation_spec_schema.py +118 -0
- arthur_client/api_bindings/test/test_custom_aggregation_spec_schema_aggregate_args_inner.py +69 -0
- arthur_client/api_bindings/test/test_custom_aggregations_v1_api.py +66 -0
- arthur_client/api_bindings/test/test_metrics_column_list_parameter_schema.py +2 -2
- arthur_client/api_bindings/test/test_metrics_column_parameter_schema.py +2 -2
- arthur_client/api_bindings/test/test_metrics_dataset_parameter_schema.py +2 -2
- arthur_client/api_bindings/test/test_metrics_literal_parameter_schema.py +2 -2
- arthur_client/api_bindings/test/test_post_custom_aggregation_spec_schema.py +84 -0
- arthur_client/api_bindings/test/test_put_custom_aggregation_spec_schema.py +84 -0
- arthur_client/api_bindings/test/test_reported_custom_aggregation.py +66 -0
- arthur_client/api_bindings/test/test_validation_outcome.py +33 -0
- arthur_client/api_bindings/test/test_validation_result.py +54 -0
- arthur_client/api_bindings/test/test_validation_results.py +60 -0
- arthur_client/api_bindings_README.md +17 -1
- {arthur_client-1.4.1233.dist-info → arthur_client-1.4.1235.dist-info}/METADATA +1 -1
- {arthur_client-1.4.1233.dist-info → arthur_client-1.4.1235.dist-info}/RECORD +69 -33
- arthur_client/api_bindings/docs/MetricsColumnListParameterSchemaAllowedColumnTypesInner.md +0 -31
- {arthur_client-1.4.1233.dist-info → arthur_client-1.4.1235.dist-info}/WHEEL +0 -0
@@ -1,12 +1,13 @@
|
|
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=
|
4
|
-
arthur_client/api_bindings/api/__init__.py,sha256=
|
3
|
+
arthur_client/api_bindings/__init__.py,sha256=yGYjcjbYvCSjc1E6GP6jnmio5Hmmb8h5t6hwsZJscS0,27117
|
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
|
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
|
9
9
|
arthur_client/api_bindings/api/connectors_v1_api.py,sha256=RvPRetrR0n7d8eoyUorqtzpsS5sqUZkhS4dQwIte6Pc,87533
|
10
|
+
arthur_client/api_bindings/api/custom_aggregations_v1_api.py,sha256=tDsJ27hsdFkPB6ETiUBBGL10CiZGjMdzQsYelPOidOM,59378
|
10
11
|
arthur_client/api_bindings/api/data_plane_associations_v1_api.py,sha256=16sLHbpsgOO2TtUqLpXsHO5dbLkjHw8R0p6zir-61z0,72612
|
11
12
|
arthur_client/api_bindings/api/data_planes_v1_api.py,sha256=v-1GgCyTa3r1ns3l-vWN1eoVzueOdZOQRfaca0BY9WI,72069
|
12
13
|
arthur_client/api_bindings/api/data_retrieval_v1_api.py,sha256=jzxN8pcdtbgJN9SnwhCCmGhN4FOlkCdmFmW1WLkv0R8,97319
|
@@ -34,7 +35,7 @@ arthur_client/api_bindings/configuration.py,sha256=fMuF7CsSXY90OPLWc4aySWpKtGtjP
|
|
34
35
|
arthur_client/api_bindings/docs/AggregationMetricType.md,sha256=6hEXFM-9byb66vDncISF7YWnKEDUVSuAGas0V1nLSgs,265
|
35
36
|
arthur_client/api_bindings/docs/AggregationSpec.md,sha256=w2eUWxapFrQYtvGBD57UGaz1xfBugQm_70s46RM6eVs,1224
|
36
37
|
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/AggregationSpecSchemaInitArgsInner.md,sha256=ibXBn7uJ1LOsUgfyoBqYtdiGJ3oOXn553g6WIfJzCqY,2307
|
38
39
|
arthur_client/api_bindings/docs/Alert.md,sha256=CUCbUFpm3vIGHLIrvGprVCcf9M70Nv0Z645zHBDBLEw,1771
|
39
40
|
arthur_client/api_bindings/docs/AlertBound.md,sha256=aCigWEZ-3MIYVs8eOtJn0E986Pv1vEzv4wbU1Zidovg,272
|
40
41
|
arthur_client/api_bindings/docs/AlertCheckJobSpec.md,sha256=bAchz8IiGtaYvxu4BZBGs-cOKQBT13tHiCtSEUAsIZE,1281
|
@@ -51,6 +52,10 @@ arthur_client/api_bindings/docs/AuthorizationV1Api.md,sha256=SffIkpnaIF7Mf6cjn0c
|
|
51
52
|
arthur_client/api_bindings/docs/AvailableDataset.md,sha256=e20fD_f5Agjt9AFYMteBumnBMH-zgtFMiN_SWvZZF4M,1596
|
52
53
|
arthur_client/api_bindings/docs/AvailableDatasetsSort.md,sha256=dNxbEZVcwLv00vIMnBaQCf3yWcNKkQXR39NoC2Z7dMw,307
|
53
54
|
arthur_client/api_bindings/docs/BadRequestError.md,sha256=e7YXklnqBRX7Jei2L0_RejHFt9kMU3ueLqabStgqRh0,948
|
55
|
+
arthur_client/api_bindings/docs/BaseColumnParameterSchema.md,sha256=KCp2u1H6t8EqabtnJApHntWVkeA_AEqiwtsITzYSx9M,1905
|
56
|
+
arthur_client/api_bindings/docs/BaseColumnParameterSchemaAllowedColumnTypesInner.md,sha256=9lNL1NknrJNpyFUAnHDNaHT_bfT0aULGTcvesXv2DWI,1563
|
57
|
+
arthur_client/api_bindings/docs/BaseDatasetParameterSchema.md,sha256=nmHDBEMnUskbXNrXp9X8ymHr1a6tkDmXLIBftTP-F9M,1372
|
58
|
+
arthur_client/api_bindings/docs/BaseLiteralParameterSchema.md,sha256=3wxTSPse9Wm8JC5dHOZjmumXJwutBdBF3zpDmvy_GCg,1363
|
54
59
|
arthur_client/api_bindings/docs/BaseRole.md,sha256=o1r3EFJORBpdc6GO09UjL6nJlkica7ewidWhYZLnoaI,971
|
55
60
|
arthur_client/api_bindings/docs/BoundMember.md,sha256=iK46AKpxJ6l3mJzqoWnGg1dLpCZDRbCw4t83K6xCC3A,922
|
56
61
|
arthur_client/api_bindings/docs/BoundMemberKind.md,sha256=c9F6NAc73bTE4k6Hq2svCIoU6OE3HQbelNFNzEuigBE,251
|
@@ -77,6 +82,9 @@ arthur_client/api_bindings/docs/CreateModelLinkTaskJobSpec.md,sha256=op1mnZnm6xU
|
|
77
82
|
arthur_client/api_bindings/docs/CreateModelTaskJobSpec.md,sha256=-K858RIGM5sV98jHgU2T8XsxaC-gLawXCSDzwjy4jyY,1382
|
78
83
|
arthur_client/api_bindings/docs/CreatedAlerts.md,sha256=7Bd0IKW-OhLLMT3PB_ta9WQp-VS-x-gCoFh9AAg4t14,1019
|
79
84
|
arthur_client/api_bindings/docs/Credentials.md,sha256=QEShs4tAwQUpULYbYFKMjsg94TWdw_PjzXX5IiwZGvc,1023
|
85
|
+
arthur_client/api_bindings/docs/CustomAggregationSpecSchema.md,sha256=yX5CiA5qnBpoq7aWjl8ByLOyaHSld4b0F9SdftH1gmA,2050
|
86
|
+
arthur_client/api_bindings/docs/CustomAggregationSpecSchemaAggregateArgsInner.md,sha256=qpjytmLnZD6l_qfU0vNfdEz4wdH21VBs1jdjk37ya_g,2346
|
87
|
+
arthur_client/api_bindings/docs/CustomAggregationsV1Api.md,sha256=1smkOMKCuZTfIzQVyVO1SRSokz06h1_oZPpnFJGmz_M,15106
|
80
88
|
arthur_client/api_bindings/docs/DType.md,sha256=SGDBKxZMAyuKluZciLOLK5u9vP_OcJkUBtvPGPbyn48,483
|
81
89
|
arthur_client/api_bindings/docs/DataPlane.md,sha256=TQ6TTMJ5KgaP27NvtrVRAD9klwJ4TPddRVrhUzV2-cM,1356
|
82
90
|
arthur_client/api_bindings/docs/DataPlaneAssociation.md,sha256=j79bQmqthx-3CQiCaxmXXsfLxxXmsaWvYxnnvyrv_Rg,1353
|
@@ -133,7 +141,7 @@ arthur_client/api_bindings/docs/InternalServerError.md,sha256=vYhyw-Y99DkO_nT02h
|
|
133
141
|
arthur_client/api_bindings/docs/IntervalUnit.md,sha256=xD8mN9lPGR865sbWlwRPZ0J20LwM3No80P90jkzXKfs,316
|
134
142
|
arthur_client/api_bindings/docs/InviteNewUser.md,sha256=DTVW_9dz0q8WKRq7jIqvjhcM6S3VcP7DZsNN6gqOP4o,1042
|
135
143
|
arthur_client/api_bindings/docs/Items.md,sha256=6NfVWmfG9rKptJRFlYWeJQcSO7bR2nQmVs_bYyq0Zl8,1084
|
136
|
-
arthur_client/api_bindings/docs/Items1.md,sha256=
|
144
|
+
arthur_client/api_bindings/docs/Items1.md,sha256=7ap29j2Iu9r3rvANhBVcQD2EooVp4mwuG3zkDSXm3fw,975
|
137
145
|
arthur_client/api_bindings/docs/Job.md,sha256=FPUAaNjI_B5mGhhkDccRuAO4Yn_83HnfDA_AuyXfKLA,1916
|
138
146
|
arthur_client/api_bindings/docs/JobDequeueParameters.md,sha256=KIFpSS8j6vMdZ23yIf7mRSRg8IAS1L5aMTzhBNFPIOw,1032
|
139
147
|
arthur_client/api_bindings/docs/JobError.md,sha256=HpjBclWmW6OGU9PjivT4az27wGEI-_IFb5fdlBUNRHQ,846
|
@@ -157,11 +165,10 @@ arthur_client/api_bindings/docs/ListType.md,sha256=ztaokXUwUYWKNv8Z2A3i_MSdFBYAe
|
|
157
165
|
arthur_client/api_bindings/docs/MetricFunctionsV1Api.md,sha256=dAeNGY1XG_DqdtJfU0DbvNOaQQ9qpBujJDGG0FfKVqw,2697
|
158
166
|
arthur_client/api_bindings/docs/MetricsArgSpec.md,sha256=tXKn0IqDwU5F28UrdZ2xbDIAHd4IZIElvPm-fybDXTQ,953
|
159
167
|
arthur_client/api_bindings/docs/MetricsCalculationJobSpec.md,sha256=XzInYXAf7yN861tKg3tqpGfpInLR8soASVTASdKFvAE,1338
|
160
|
-
arthur_client/api_bindings/docs/MetricsColumnListParameterSchema.md,sha256=
|
161
|
-
arthur_client/api_bindings/docs/
|
162
|
-
arthur_client/api_bindings/docs/
|
163
|
-
arthur_client/api_bindings/docs/
|
164
|
-
arthur_client/api_bindings/docs/MetricsLiteralParameterSchema.md,sha256=txuWGOEzA4KCPaeQckfyNRba5g9rrp1hjcYNF-PC1Y8,1507
|
168
|
+
arthur_client/api_bindings/docs/MetricsColumnListParameterSchema.md,sha256=DFOL6fLqEjEIxK7TKA2T1eYsH_amSf8Rxm8DB3-i7aA,2112
|
169
|
+
arthur_client/api_bindings/docs/MetricsColumnParameterSchema.md,sha256=SS8TfF_3AyUWW7P1bE7y6zYsGujEjexhItrCtltyRoM,2049
|
170
|
+
arthur_client/api_bindings/docs/MetricsDatasetParameterSchema.md,sha256=O-E0rx1s7O-DUlSgluF_h9dCzMDP4_oOS2TMtqrjvW8,1516
|
171
|
+
arthur_client/api_bindings/docs/MetricsLiteralParameterSchema.md,sha256=k_YwuqLv_oHZfeNLZhsnMid634IJiu28VFVuglmoABE,1507
|
165
172
|
arthur_client/api_bindings/docs/MetricsQueryResult.md,sha256=GHdkcCH5JnrmFkAPimqvicgqt4AoGtGCoA6gcsPFQog,999
|
166
173
|
arthur_client/api_bindings/docs/MetricsResultFilterOp.md,sha256=hdSX0a5VAtoWtHSobh58VzZvBKMNx0-8BcNstT8mnBw,527
|
167
174
|
arthur_client/api_bindings/docs/MetricsUpload.md,sha256=ue9_U191l2E4dJ88ZzeY5fPF3bTd0yhDredlo2VBT0Y,1090
|
@@ -182,7 +189,7 @@ arthur_client/api_bindings/docs/NumericMetric.md,sha256=R9YyZ_3T5zdK5N5y4KiApG0s
|
|
182
189
|
arthur_client/api_bindings/docs/NumericPoint.md,sha256=a7prp88r4v5pAbmk__MTqbDPX9eV1I5o_5uypgSw7Co,1043
|
183
190
|
arthur_client/api_bindings/docs/NumericTimeSeries.md,sha256=NQDmwpC4Y0i5CtY7WXi1s-4K4SY0XYa2j1p3JS-sGVU,1189
|
184
191
|
arthur_client/api_bindings/docs/OAuthV1Api.md,sha256=UwihljAFoSvnuryn7iNU41_z-mgmdS7cL0aIvp9hWyU,2092
|
185
|
-
arthur_client/api_bindings/docs/ObjectType.md,sha256=
|
192
|
+
arthur_client/api_bindings/docs/ObjectType.md,sha256=OwfGfAOMmT4-WqarHQndxUUcQjGdGMZdBLL9wq6NCok,951
|
186
193
|
arthur_client/api_bindings/docs/ObjectValue.md,sha256=GNJXvyHxnTDzKh-sjeGqK0JQG0_Gckxlao8iIaB9jL8,1168
|
187
194
|
arthur_client/api_bindings/docs/Organization.md,sha256=UO7M6iC1ti8oyot2thudh6qEdIxluDZrPZOjGpi8bTc,1109
|
188
195
|
arthur_client/api_bindings/docs/OrganizationsV1Api.md,sha256=EfyHSkLgWWMJoTqrgDd3MYwUGR8pOJoJEJexJW9oob8,7380
|
@@ -205,7 +212,7 @@ arthur_client/api_bindings/docs/PatchUser.md,sha256=Fcd1053Y23aSfdqZED6IyRnU9ANE
|
|
205
212
|
arthur_client/api_bindings/docs/PatchWebhook.md,sha256=jHwNOM3SJiLhhbytRcaoEe3jPoMlBRPBxztE3IVQHfI,1002
|
206
213
|
arthur_client/api_bindings/docs/PatchWorkspace.md,sha256=eE29MZcSAT7B-uaqTI0G5J7AWAifqSxAgtOVOd8rVAY,912
|
207
214
|
arthur_client/api_bindings/docs/Permission.md,sha256=EiAeK7f_rgOlGja6RJ4iRtxh9ayDKMWkoU3Pho_GJBo,1070
|
208
|
-
arthur_client/api_bindings/docs/PermissionName.md,sha256=
|
215
|
+
arthur_client/api_bindings/docs/PermissionName.md,sha256=VfX0dszKfq6QjjXCHiFIZhLiw5HDAWCp3cEpp5Jot_s,9268
|
209
216
|
arthur_client/api_bindings/docs/PermissionRequestItem.md,sha256=CAxi_zbsM7R9aEEQUOULS4xAnTouK4-bTzD1zu_WDdg,1230
|
210
217
|
arthur_client/api_bindings/docs/PermissionResponseItem.md,sha256=yCRdqfZWrwO7GmmgwCHJmefNTTXWgAVyJhsFI8vUoSE,1332
|
211
218
|
arthur_client/api_bindings/docs/PermissionsRequest.md,sha256=kLsczcoS-LvL3N55hx7mYUkt26Djyo_sI5vymKG7Nco,1119
|
@@ -214,6 +221,7 @@ arthur_client/api_bindings/docs/PostAlert.md,sha256=ut76qXdNo4uiIBMk_YGdMeeO7VL4
|
|
214
221
|
arthur_client/api_bindings/docs/PostAlertRule.md,sha256=U7iaJkAjr7d64Ee7Y15D4R6MC3vdtpH4b_Jj5tF9JgY,1555
|
215
222
|
arthur_client/api_bindings/docs/PostAlerts.md,sha256=mIa5fYJIMyAA4lLKXoxz8zkf9feGs5w07uJE065jceM,897
|
216
223
|
arthur_client/api_bindings/docs/PostConnectorSpec.md,sha256=mKyNkabBOjaD_xRGUXNw0BqHRV9P97hgMYHNFj5Ceo8,1419
|
224
|
+
arthur_client/api_bindings/docs/PostCustomAggregationSpecSchema.md,sha256=0ZHuUwQNOeRYmCiU4x3UCqvhmYqE99U2CPKPXIPmn3o,1703
|
217
225
|
arthur_client/api_bindings/docs/PostDataPlane.md,sha256=NvhmTXJvzZ_iMzag5j1unK9B-vpdQRFXtmGkof6onbw,1083
|
218
226
|
arthur_client/api_bindings/docs/PostDataPlaneAssociation.md,sha256=wYEFF5hHRSVMoXFTGJ_TMw2PxTrOqhap3R11CalY_G4,1111
|
219
227
|
arthur_client/api_bindings/docs/PostDataRetrievalOperation.md,sha256=6zJCOBm2ZVUWousu2PMbIFxMbsDbPOAupf8zZ9G17r0,1481
|
@@ -251,6 +259,7 @@ arthur_client/api_bindings/docs/ProjectSort.md,sha256=iFXFjFD8_fTaz6Z9Yfy5Vut3yh
|
|
251
259
|
arthur_client/api_bindings/docs/ProjectsV1Api.md,sha256=x5umzdzqEq2l308_AIETjdiPf-QG-MNOwbtV0syrzEY,13991
|
252
260
|
arthur_client/api_bindings/docs/PutAvailableDataset.md,sha256=dJhbLhEDRFSB5JG_5gbI9657RCUWlWgwy2O64M0mlF8,1310
|
253
261
|
arthur_client/api_bindings/docs/PutAvailableDatasets.md,sha256=cNGoR7bLCK__8m3M_m-m9cetVZPntLt1OrOSAvvOAQs,1076
|
262
|
+
arthur_client/api_bindings/docs/PutCustomAggregationSpecSchema.md,sha256=K8PYSOuqlHoBShvEBVnjYr_e5KQh5H3O7EaQVJqa434,1690
|
254
263
|
arthur_client/api_bindings/docs/PutDatasetSchema.md,sha256=bZPWz_3BOVk6waISDlpnvYDHzBn2lOY0G9N1ilZSJg8,1003
|
255
264
|
arthur_client/api_bindings/docs/PutJobState.md,sha256=3bmpD1js4RS_zqLlaKlxrMwjuia090f10co5LET1SHs,912
|
256
265
|
arthur_client/api_bindings/docs/PutModelMetricSpec.md,sha256=gwSHpZ8etfNCKNOrSozsqe0SJQPAxRGl6u9TyXCrUSw,1059
|
@@ -262,7 +271,8 @@ arthur_client/api_bindings/docs/RegenerateTaskValidationKeyJobSpec.md,sha256=4q6
|
|
262
271
|
arthur_client/api_bindings/docs/RegexConfig.md,sha256=A08WWZIrqHPczWveH-dzY9v-izpEMrfiEGSqXq9g6BQ,986
|
263
272
|
arthur_client/api_bindings/docs/RegisterUser.md,sha256=cIpAGl5FQ4MDMuXYsmo_SmkK8GHfapEpEOZiY0dT2Mc,886
|
264
273
|
arthur_client/api_bindings/docs/RegistrationV1Api.md,sha256=mpE3tEZzdBdOVm49IPK3_de9qG7cgNvmU93acAzU6SE,2431
|
265
|
-
arthur_client/api_bindings/docs/
|
274
|
+
arthur_client/api_bindings/docs/ReportedCustomAggregation.md,sha256=LH1rGYMAp3if6zb8hA1ZVQWbXBAMrDSxOE8Gqcff1eQ,1657
|
275
|
+
arthur_client/api_bindings/docs/ResourceKind.md,sha256=_psRc8CAhX2Yo1rNzKr3UA7gGyiLueMoNFfy-u3xoas,862
|
266
276
|
arthur_client/api_bindings/docs/ResourceListAggregationSpecSchema.md,sha256=-5g8i4XUXm1kkGR1emlXST3Ty_sZ6z4Ip14j-wQnFZU,1304
|
267
277
|
arthur_client/api_bindings/docs/ResourceListAlertRule.md,sha256=wRuq77fBtndgeta-de8EesYmjoY6DINZM7vRynMzCC0,1118
|
268
278
|
arthur_client/api_bindings/docs/ResourceListAvailableDataset.md,sha256=Av2oG_DumcCJZfsEggS_-6_D6pgptPg_dlRgkPL5dfQ,1223
|
@@ -293,7 +303,7 @@ arthur_client/api_bindings/docs/RolesV1Api.md,sha256=nqIOUf-x3JTyT1Lbh5bQCVwY2V6
|
|
293
303
|
arthur_client/api_bindings/docs/RuleResponse.md,sha256=PrAYsH_0YRHAyGLt7ppzL3XP9bZdY7_PONq5g8hiLOk,1486
|
294
304
|
arthur_client/api_bindings/docs/RuleResponseConfig.md,sha256=HVk5lzGsAO6c-ya58rWI57RfrhRRVFUfteMrQSxWlVY,1696
|
295
305
|
arthur_client/api_bindings/docs/RuleScope.md,sha256=e8j2icHfXrxgrBDONLOmCkIpvzjR4JkL21mwpmutNt0,249
|
296
|
-
arthur_client/api_bindings/docs/RuleType.md,sha256=
|
306
|
+
arthur_client/api_bindings/docs/RuleType.md,sha256=6DHI4rS8FKEB3jPhuDgal5EfXVkcNx_DylPNFq6ITE8,542
|
297
307
|
arthur_client/api_bindings/docs/ScalarType.md,sha256=8NcbDO8vrTAVvOF3rUySp_4ZL5DlpyswOks6l-FN9x0,853
|
298
308
|
arthur_client/api_bindings/docs/ScheduleJobsJobSpec.md,sha256=p7jAx7W8yzL6TVwXyZUVBGb9ZrVXLpf3hvX4SdhnLZQ,1190
|
299
309
|
arthur_client/api_bindings/docs/SchemaInspectionJobSpec.md,sha256=lR5aaMf0M8pvXSYA-6Z5IspLwxgp7O8J8P-9aBAmikg,1246
|
@@ -325,6 +335,9 @@ arthur_client/api_bindings/docs/UsersV1Api.md,sha256=HLLawoKZdQkTMbPGSzDZ5CJOpO7
|
|
325
335
|
arthur_client/api_bindings/docs/ValidateAlertRuleQueryReq.md,sha256=VBeKw2v7Amg9C_JvlrWJFmNuZem2M4n45hIZZE7_ivg,1080
|
326
336
|
arthur_client/api_bindings/docs/ValidationError.md,sha256=nj_0Vd3M9y9d-ThIuGPi8asWbngZQEvMtBclAqNLrXQ,1007
|
327
337
|
arthur_client/api_bindings/docs/ValidationErrorLocInner.md,sha256=ZtpauOydT4wkQoEEH7S50fz1lRr5fNiBcoqTxC8N55A,994
|
338
|
+
arthur_client/api_bindings/docs/ValidationOutcome.md,sha256=wbHKjLbJUd4FSpagX8KDoMExL9ov9OwK9pr0sB8Zr6o,311
|
339
|
+
arthur_client/api_bindings/docs/ValidationResult.md,sha256=gBOiAqvOtkhB9oogUgsVh6_Rk2hjAZl3uV2Y1ft3oUs,1150
|
340
|
+
arthur_client/api_bindings/docs/ValidationResults.md,sha256=gnUuHqDIcS0t6T0wDiT0ArIiSxhEp1NsaD1IbbgSDHA,1071
|
328
341
|
arthur_client/api_bindings/docs/Webhook.md,sha256=6IXcU9be7zHNCRgGc06jbMciug3bbFko3wIt4PMjIUo,1277
|
329
342
|
arthur_client/api_bindings/docs/WebhookResponse.md,sha256=goLf6MzUsRL0FPOSvmz8wxvr0eiuMwAXTzbSK-D8Mjs,939
|
330
343
|
arthur_client/api_bindings/docs/WebhookResult.md,sha256=oQv0ODFZ2NQ-GffoXmltFExYKkGG1mv4bmHPWJmPc5U,941
|
@@ -334,7 +347,7 @@ arthur_client/api_bindings/docs/Workspace.md,sha256=G4pN-rx4iU2-sxOhF-1Fp6QbHYrr
|
|
334
347
|
arthur_client/api_bindings/docs/WorkspaceSort.md,sha256=g2lRzcM9sBnHufImJj3fvRQYgiQRt885iYZc7OkE9Mk,299
|
335
348
|
arthur_client/api_bindings/docs/WorkspacesV1Api.md,sha256=WM4FbbGbsiekeP2VnFE1Em0gT9-rXb45aBoqPTiBDqI,14011
|
336
349
|
arthur_client/api_bindings/exceptions.py,sha256=yy0Uot-WkcM6-PbNo2KDnrKAUL_PFmeCTD2tvq_gFp4,5977
|
337
|
-
arthur_client/api_bindings/models/__init__.py,sha256=
|
350
|
+
arthur_client/api_bindings/models/__init__.py,sha256=zdyHxzoZzyn6BhS5gl8xPcU3-YVq0TOebyM-Y6BQUc8,24401
|
338
351
|
arthur_client/api_bindings/models/aggregation_metric_type.py,sha256=USKpDqhX4TQ4lqIoHOp3q70mydsf1u_zc1EKus9QhYo,783
|
339
352
|
arthur_client/api_bindings/models/aggregation_spec.py,sha256=mbCw-IPV4mUA9f8WtSZL9acjSu3L4pCcTsofxxf2Mq8,4110
|
340
353
|
arthur_client/api_bindings/models/aggregation_spec_schema.py,sha256=wLNgL29Edgv7JbpSxkVd8sX6vJ-5GkRVCjG26_hOTUQ,4626
|
@@ -352,6 +365,10 @@ arthur_client/api_bindings/models/alert_webhook_called.py,sha256=mS8MReYoEjyVgi2
|
|
352
365
|
arthur_client/api_bindings/models/available_dataset.py,sha256=s7EZQR-x_nCWBXgbWMq7E4AHa6mPNi37YQDUaudAh_A,6343
|
353
366
|
arthur_client/api_bindings/models/available_datasets_sort.py,sha256=YtRm774EaUfmA0glgrGvRvRz1sgfx69isoOtH5BdYe8,815
|
354
367
|
arthur_client/api_bindings/models/bad_request_error.py,sha256=zcnIjQgRFVe5OQnavEGGwAePfDdQK0zxTWJVXYDgUVM,2577
|
368
|
+
arthur_client/api_bindings/models/base_column_parameter_schema.py,sha256=QMOdKGMiEUKlUg1KQr97-YEWzCyBdFOTJCePn90Bx2c,5510
|
369
|
+
arthur_client/api_bindings/models/base_column_parameter_schema_allowed_column_types_inner.py,sha256=5FxVd5gDDX8Z9uW4zusLA3Cm-xiEsImAjWaqJIOVcaA,5831
|
370
|
+
arthur_client/api_bindings/models/base_dataset_parameter_schema.py,sha256=40XwojDDvI4luQbN1ZRr1gP0U3mNnhrATk5oaHdpG2M,3920
|
371
|
+
arthur_client/api_bindings/models/base_literal_parameter_schema.py,sha256=Q45XMom1PBk5A9FBSTLQLlKjqEJVil8sXhEwoXXNAiQ,3653
|
355
372
|
arthur_client/api_bindings/models/base_role.py,sha256=ADSbaBWj71pZGMsFMfjXOCKXy6jRU0cWZzfHzL_kX2Q,3009
|
356
373
|
arthur_client/api_bindings/models/bound_member.py,sha256=n0BaOssF_HywYv_EtHqYpqLQzLAy-1shszVgVbUZwSs,2625
|
357
374
|
arthur_client/api_bindings/models/bound_member_kind.py,sha256=osjo6iZteKM0n546-e7qZyoTJUMTuhKhi7wr49ekkU8,757
|
@@ -376,6 +393,8 @@ arthur_client/api_bindings/models/create_model_link_task_job_spec.py,sha256=i3zJ
|
|
376
393
|
arthur_client/api_bindings/models/create_model_task_job_spec.py,sha256=TPPIjbVjMiGlGfBLHnmuR8t-QvJE20o5F4j7E1GXjbA,4428
|
377
394
|
arthur_client/api_bindings/models/created_alerts.py,sha256=VpMIFjZJONB41YTMTdyHrFwi330Ijsvp1e3tMJmLDJY,3951
|
378
395
|
arthur_client/api_bindings/models/credentials.py,sha256=LV3hHfzAKsH52pv4hClJJTUhveybeFz1qAzfpmNjoaI,5120
|
396
|
+
arthur_client/api_bindings/models/custom_aggregation_spec_schema.py,sha256=9zwID2SazNe8ZvunsdT9JKYfLYZzuQias_IWuO-rpyw,5777
|
397
|
+
arthur_client/api_bindings/models/custom_aggregation_spec_schema_aggregate_args_inner.py,sha256=9QqCi8f6GYIMNdGGz6JUxWFEMpBxdtkpevMfzt_nDGE,6431
|
379
398
|
arthur_client/api_bindings/models/d_type.py,sha256=DkkurJHk6BAYxilYGXvr3Okw59-jMiFd6BqREi0fi4E,889
|
380
399
|
arthur_client/api_bindings/models/data_plane.py,sha256=AkYbN-MWNsgdU49tgm4eER3CsRnjRE4TEuguXOWPhb0,4261
|
381
400
|
arthur_client/api_bindings/models/data_plane_association.py,sha256=P6EWXt-IM90xPsf9f3w3jEmCao8NlPljkE0UmGH71Ks,4375
|
@@ -447,11 +466,10 @@ arthur_client/api_bindings/models/list_datasets_job_spec.py,sha256=d9LF0Os3ysWWs
|
|
447
466
|
arthur_client/api_bindings/models/list_type.py,sha256=fjOdliv8riPiKHJJUaAuJy885gTAjjyNXu3qOT7KOCk,2799
|
448
467
|
arthur_client/api_bindings/models/metrics_arg_spec.py,sha256=wbR1Wnzq3gqhbEhmh3JYdUr_MBpFO7dfdvINNODLPhg,2859
|
449
468
|
arthur_client/api_bindings/models/metrics_calculation_job_spec.py,sha256=MyFAelowMrhjTUm23x98GRvCZjlDbr38jak4S4rth-Y,3532
|
450
|
-
arthur_client/api_bindings/models/metrics_column_list_parameter_schema.py,sha256=
|
451
|
-
arthur_client/api_bindings/models/
|
452
|
-
arthur_client/api_bindings/models/
|
453
|
-
arthur_client/api_bindings/models/
|
454
|
-
arthur_client/api_bindings/models/metrics_literal_parameter_schema.py,sha256=CuKwkXqP9sJc7YXwrTNDK1qsC5fa0rScdE3qfIdHmcY,3900
|
469
|
+
arthur_client/api_bindings/models/metrics_column_list_parameter_schema.py,sha256=IZtr_Ycy7VQGVrcMLO0nruZqYnE1mAIapKWBYCJpd6o,5781
|
470
|
+
arthur_client/api_bindings/models/metrics_column_parameter_schema.py,sha256=YU65tH3gtRZZ8P9ueA9aNCdJERRPMS2FD9zMmAK8C24,5745
|
471
|
+
arthur_client/api_bindings/models/metrics_dataset_parameter_schema.py,sha256=HCKW53MnfT4eFdtsytg5k-8CX1JK4bz9Ggr29WteRso,4167
|
472
|
+
arthur_client/api_bindings/models/metrics_literal_parameter_schema.py,sha256=zEDq0jtnsOF9xZFvo7YFkK3pu1IRV2AVv7upoaW6VVg,3900
|
455
473
|
arthur_client/api_bindings/models/metrics_query_result.py,sha256=xnfYYBocFqpeRMOVqlrbRyvcd1NJREotAI-iFOFYoEo,2585
|
456
474
|
arthur_client/api_bindings/models/metrics_result_filter_op.py,sha256=7tzoEQuAWFvGPXeI9_mus6qJEWKnusHPLsJA_Tj_wWo,985
|
457
475
|
arthur_client/api_bindings/models/metrics_upload.py,sha256=ak9kakL1YbS7TuZpuvHu9ZvQiW5VsE7OmocY0Uj46vI,3191
|
@@ -469,7 +487,7 @@ arthur_client/api_bindings/models/not_found_error.py,sha256=n-XQUZEqEkKm32MJ-m3o
|
|
469
487
|
arthur_client/api_bindings/models/numeric_metric.py,sha256=EwaYrBTF8OFx6SwBUR0c3z9OU0qvmI6Yo50b-qgbN-c,3278
|
470
488
|
arthur_client/api_bindings/models/numeric_point.py,sha256=rKsENbmx9V5ELANWr2oEeybTr22IrfirJ_kCR0LSl2g,2815
|
471
489
|
arthur_client/api_bindings/models/numeric_time_series.py,sha256=bx1tvpLImSkpVrqxkrZAfQ7JLM3lDNnDXQ4UW7Snp8c,3784
|
472
|
-
arthur_client/api_bindings/models/object_type.py,sha256=
|
490
|
+
arthur_client/api_bindings/models/object_type.py,sha256=NV0FjLKUjjBrCMj9oSjVFC7q5mClM0LSB3W1uTcFBBY,3318
|
473
491
|
arthur_client/api_bindings/models/object_value.py,sha256=1PAW7DkHAFXTgxJzxOnmwfwXrTPIhLXwY-FXeiZTo50,5890
|
474
492
|
arthur_client/api_bindings/models/organization.py,sha256=BQJHXIGcrmcGQrxD4JhIEBlaaazysZ5nYdPZM9W1N_o,2991
|
475
493
|
arthur_client/api_bindings/models/pagination.py,sha256=XWpYUWgFJIYmtJ3bMOqGlu6ganeK4wUxpZ8mCPC1d1Q,3118
|
@@ -490,7 +508,7 @@ arthur_client/api_bindings/models/patch_user.py,sha256=Q_RqYiqCFjWsHfTWK0RqpdKpJ
|
|
490
508
|
arthur_client/api_bindings/models/patch_webhook.py,sha256=Nck18gezSVXn3Tsn2FgbmaVWvlajrm_rRY1Lt7XKRtU,3571
|
491
509
|
arthur_client/api_bindings/models/patch_workspace.py,sha256=oX4U-aAgTlCZr5Xor8tyZWBZBll5BwgCeqNXyfC4rAc,2530
|
492
510
|
arthur_client/api_bindings/models/permission.py,sha256=w-7TJQxENx0-ydmU_0ur9cP0WcF4hBqggRKbGSlSM-U,3004
|
493
|
-
arthur_client/api_bindings/models/permission_name.py,sha256=
|
511
|
+
arthur_client/api_bindings/models/permission_name.py,sha256=heLQAxBdf0LO6Lzkccd1UkdhRryDfkvw3MjxzMf1iak,8422
|
494
512
|
arthur_client/api_bindings/models/permission_request_item.py,sha256=eDI23WHf9UHR0MO-Zharyz-nF7M37SxYsHB1vkaQzdI,3086
|
495
513
|
arthur_client/api_bindings/models/permission_response_item.py,sha256=kMBj_O-lse6TUPmjHOiBNX8S9cTSuZrzk24a42Nh4RU,3264
|
496
514
|
arthur_client/api_bindings/models/permissions_request.py,sha256=RNtY39w0PapomLkkoHBLgNWGtgvgV8dodjCFmHqq28Q,3312
|
@@ -500,6 +518,7 @@ arthur_client/api_bindings/models/post_alert.py,sha256=PX6zWD7TrHcBIGTGhCePCXmP8
|
|
500
518
|
arthur_client/api_bindings/models/post_alert_rule.py,sha256=8t6pq6XlBZaicYSzaIYyxDpWm0TenX0LYwEinlB9-qI,4348
|
501
519
|
arthur_client/api_bindings/models/post_alerts.py,sha256=N9DYhMTPkH-A4Bcw5-RfNcJfkLzj-RvHlEHbxis4Emk,3066
|
502
520
|
arthur_client/api_bindings/models/post_connector_spec.py,sha256=CsUtXNUrN5OEWDIaela9B3Ls1t1sj9ndnhBj-8S6Qwg,3919
|
521
|
+
arthur_client/api_bindings/models/post_custom_aggregation_spec_schema.py,sha256=jCxBoYpHR9BvYojBzjFKnXFoEnEfQiMu_S40pgY3o4E,4691
|
503
522
|
arthur_client/api_bindings/models/post_data_plane.py,sha256=TfM4YQqdCnW7B13flqU9S2kED-lv8dvg3SB56gBKdyI,3221
|
504
523
|
arthur_client/api_bindings/models/post_data_plane_association.py,sha256=mEdP-ff6nLfCkj80jW0YGW0RWKJXOySnQRPJTbydX9g,2736
|
505
524
|
arthur_client/api_bindings/models/post_data_retrieval_operation.py,sha256=E1Ck6p6wh28OhKsBDBnRlzEeQO-Q8HsTNWECLpzKuV4,4307
|
@@ -536,6 +555,7 @@ arthur_client/api_bindings/models/project_bound_resource_metadata.py,sha256=vwu3
|
|
536
555
|
arthur_client/api_bindings/models/project_sort.py,sha256=nWloC34xi160fMgSODHUd2LOSibZ8mr7YjjMqyBWVjA,785
|
537
556
|
arthur_client/api_bindings/models/put_available_dataset.py,sha256=S4zcKo75CZ2KTk5Al8Iwhsr9HYSjI0NXuMOi1vD4Xns,5415
|
538
557
|
arthur_client/api_bindings/models/put_available_datasets.py,sha256=lHO9O_vR6x9QYDZccVcR7-YDjFK_dkuE_VRkQ49u6Yk,3230
|
558
|
+
arthur_client/api_bindings/models/put_custom_aggregation_spec_schema.py,sha256=XBFnYMX9o6kpX9w_Mjlo-yXFZte9F9vtGjKTVPaz2Vw,4687
|
539
559
|
arthur_client/api_bindings/models/put_dataset_schema.py,sha256=PWVbLSRrr62_Jc71srZRwQ7FXxaGY6LyF4kuvj4TS44,3097
|
540
560
|
arthur_client/api_bindings/models/put_job_state.py,sha256=ZSgzbLEu06NqTpBzdVI8jYNZxVeoDR-J1aPgLfmmVBg,2599
|
541
561
|
arthur_client/api_bindings/models/put_model_metric_spec.py,sha256=fFJL-OVYgL4zd9x7tNd-Lfjo3QARSPI3ICsXYn0hM2M,3205
|
@@ -546,7 +566,8 @@ arthur_client/api_bindings/models/put_task_state_cache_request.py,sha256=0uNVaeD
|
|
546
566
|
arthur_client/api_bindings/models/regenerate_task_validation_key_job_spec.py,sha256=W4mqBE924ZvcPt7OJNP9IcCpmRUP2LkKOonP3AzgxmA,3234
|
547
567
|
arthur_client/api_bindings/models/regex_config.py,sha256=y_miFKVjeqFGoF-O2Eo4Xt7wdBWbTzVWvZI8ZJfSXHA,2661
|
548
568
|
arthur_client/api_bindings/models/register_user.py,sha256=n7yUSYBkZs1QH_jnqODH-Ht9_bffV99ftyenywDDjeo,2521
|
549
|
-
arthur_client/api_bindings/models/
|
569
|
+
arthur_client/api_bindings/models/reported_custom_aggregation.py,sha256=CkL_LC2S3XPulRm2xZE_iDPOdARojxUSkZcD6-2roT8,3710
|
570
|
+
arthur_client/api_bindings/models/resource_kind.py,sha256=MuJw_N3fhMNlLTqzxEYMLp12eg81i7SFtlPeNExNUeg,1212
|
550
571
|
arthur_client/api_bindings/models/resource_list_aggregation_spec_schema.py,sha256=GrJWMUvFqfPSgoYrNkShTdxLafGNnaXpNXHcoWwra6Y,3581
|
551
572
|
arthur_client/api_bindings/models/resource_list_alert_rule.py,sha256=_gQ8Q9sGZ413rGw2dKx7Ij9BBYuKhDE3RZOBbZabCLQ,3484
|
552
573
|
arthur_client/api_bindings/models/resource_list_available_dataset.py,sha256=Gr0-bASPp3LRDbsgUJyFtTKfe9hAZOdwjg4bWuIEmIY,3540
|
@@ -576,7 +597,7 @@ arthur_client/api_bindings/models/role_sort.py,sha256=tnFgMGKLKBqPJ3Mtq78v03Q1nw
|
|
576
597
|
arthur_client/api_bindings/models/rule_response.py,sha256=TOlG3j4RTImJBa8VkCNPEtc_eZkedxHjN6XjHinP4lk,4607
|
577
598
|
arthur_client/api_bindings/models/rule_response_config.py,sha256=hOWfa_gU5nnPYEOyeats61juwiBB0pmRU7mW3jXLW6U,7254
|
578
599
|
arthur_client/api_bindings/models/rule_scope.py,sha256=PPwbxg4xCT8CxaddgR_hcJktYeAKKlQ7RXsH-KBU7Lw,743
|
579
|
-
arthur_client/api_bindings/models/rule_type.py,sha256=
|
600
|
+
arthur_client/api_bindings/models/rule_type.py,sha256=CP44aMompXxVPKZ951ipkvmFbFCOjv1OgJsICfeDPkA,984
|
580
601
|
arthur_client/api_bindings/models/scalar_type.py,sha256=uHj_BG0x3WwJWzzhOZ4M1i6JJ0KBjhIAgXFkwg1xC7o,2509
|
581
602
|
arthur_client/api_bindings/models/schedule_jobs_job_spec.py,sha256=S75JHtQV3VvJ58TPEUoBtfQ68odSCySONyJ2Io5CYpA,3335
|
582
603
|
arthur_client/api_bindings/models/schema_inspection_job_spec.py,sha256=yKpGEstb0ze_F-jajJd8V9Dfulr4wv5BDUoZ19gnNBk,3352
|
@@ -605,6 +626,9 @@ arthur_client/api_bindings/models/user_type.py,sha256=mdMxrQ317Q_Td13CRUcbLVLTN0
|
|
605
626
|
arthur_client/api_bindings/models/validate_alert_rule_query_req.py,sha256=yIeLjNXOLBFJQUYHr9knyuGa7hMZqzYF06GR4yKqs-o,2584
|
606
627
|
arthur_client/api_bindings/models/validation_error.py,sha256=6Md73455ytqjNUJlm67qevzPxIumEHcp92aur5XJy5s,3113
|
607
628
|
arthur_client/api_bindings/models/validation_error_loc_inner.py,sha256=HxkBA9FcJbXz201j-MgNcDAnOc_BIWlcnFEcZ04-JOw,4890
|
629
|
+
arthur_client/api_bindings/models/validation_outcome.py,sha256=MVKUy0nHfiC6vg-ObSQXwOpX-s0J1KHDaIVtmThnpjE,803
|
630
|
+
arthur_client/api_bindings/models/validation_result.py,sha256=OYEWH3cIm7UImR-VYVB1NBA2eUmL2KVKlyJ-ekoCRKA,2946
|
631
|
+
arthur_client/api_bindings/models/validation_results.py,sha256=3TYr5fVvhruEJ899FNSDV2O9Eumz6_A5oqYrvK4Yj2A,3202
|
608
632
|
arthur_client/api_bindings/models/webhook.py,sha256=sL-3bl5SVcyAndDlj1N8QgkA0H4KJXfc22g4I4IqvrQ,4195
|
609
633
|
arthur_client/api_bindings/models/webhook_response.py,sha256=poo2YDV6j13cUNGKosvtvy_IH59rwR3jj1BiPfO0-N4,3073
|
610
634
|
arthur_client/api_bindings/models/webhook_result.py,sha256=FuUQRBWavJj4oG7FMips8RnFRe6hSpR3vYl80Mgn_6I,3328
|
@@ -616,7 +640,7 @@ arthur_client/api_bindings/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
|
|
616
640
|
arthur_client/api_bindings/test/test_aggregation_metric_type.py,sha256=OgYPLHZt7XwRlkpSwKWv1bpd92KFJXLms6PbEp7DyzA,778
|
617
641
|
arthur_client/api_bindings/test/test_aggregation_spec.py,sha256=oHSv8SRUHsqMC7SctzuTdE6kWn5qFtTpjTZQzor2N2Y,2387
|
618
642
|
arthur_client/api_bindings/test/test_aggregation_spec_schema.py,sha256=z46J7Gj9fi2X2VhR7oe9kVErp-K7gCcIS-FKNQatNL8,2030
|
619
|
-
arthur_client/api_bindings/test/test_aggregation_spec_schema_init_args_inner.py,sha256=
|
643
|
+
arthur_client/api_bindings/test/test_aggregation_spec_schema_init_args_inner.py,sha256=Tglc-ZPkPkd0gy8cRtI9jx1jLMlTjhPU4Edd0rtcBh4,2377
|
620
644
|
arthur_client/api_bindings/test/test_alert.py,sha256=3xc2qHhy5RLkE0wNGFhJHArU5yC9oAZRhxNVBmWVDhU,3015
|
621
645
|
arthur_client/api_bindings/test/test_alert_bound.py,sha256=_HMCB2rLWmIKFhY4WgJGsic4Qx1d7mMyIKe8GfzvcXU,700
|
622
646
|
arthur_client/api_bindings/test/test_alert_check_job_spec.py,sha256=61dW9Jmp8BcIJY4oWqtdgr-WeZ15D93L9SxsXVi5S6E,2017
|
@@ -633,6 +657,10 @@ arthur_client/api_bindings/test/test_authorization_v1_api.py,sha256=1_XN_P4jVUJI
|
|
633
657
|
arthur_client/api_bindings/test/test_available_dataset.py,sha256=FkvxzRk57wudgBIdAUKlnVLohiqAayyJMHyMhRo0PnM,3714
|
634
658
|
arthur_client/api_bindings/test/test_available_datasets_sort.py,sha256=blZ4ODf-dJSCy_MLlc51fOm2KEwexdT3sM7isW_pf1Y,778
|
635
659
|
arthur_client/api_bindings/test/test_bad_request_error.py,sha256=bknirLoM-v_gzCtdWbz66bh_pnVI-MB7pGuj-MKC14Q,1424
|
660
|
+
arthur_client/api_bindings/test/test_base_column_parameter_schema.py,sha256=wrFK7m-W7hhPBkeAh1fRnCHeURWtRMN1QgGHelbFTFs,2084
|
661
|
+
arthur_client/api_bindings/test/test_base_column_parameter_schema_allowed_column_types_inner.py,sha256=IHpFK3rlX0PcqU9PjCjO6zOaWaNbv7F8Xc6bsfuk14s,2085
|
662
|
+
arthur_client/api_bindings/test/test_base_dataset_parameter_schema.py,sha256=gvOEEMfBG_lDKW2Vb-itzViKiDw4ijf0_FWo6X2wyJg,1824
|
663
|
+
arthur_client/api_bindings/test/test_base_literal_parameter_schema.py,sha256=pq2NEOrbO4-be9D7uwH-xzzTuLDRqZfBiMIhdYtAA7U,1867
|
636
664
|
arthur_client/api_bindings/test/test_base_role.py,sha256=2l128_gt_2txTMvvD11VxkYsXZoYMkFcP3amoCo2kFE,1471
|
637
665
|
arthur_client/api_bindings/test/test_bound_member.py,sha256=ZJB9MQHfWpXsbSMzeGDchJWStSFkdXY-E72XEnTRAtM,1439
|
638
666
|
arthur_client/api_bindings/test/test_bound_member_kind.py,sha256=ISiKxpkUPKevr3NBinOPVys6IBklYxvb7YCWWyK-fxM,736
|
@@ -659,6 +687,9 @@ arthur_client/api_bindings/test/test_create_model_link_task_job_spec.py,sha256=i
|
|
659
687
|
arthur_client/api_bindings/test/test_create_model_task_job_spec.py,sha256=jJjdNCbZIT5LnXXfKcBor0ZTlXkza-eYSLIXgrK7N6A,2410
|
660
688
|
arthur_client/api_bindings/test/test_created_alerts.py,sha256=rclyfnHDkLFY7syziyTbGqIwMQV87WzhmH-hKf2Z-z4,4440
|
661
689
|
arthur_client/api_bindings/test/test_credentials.py,sha256=On6gHmoXdPMBHI9LfSjurRuvaqkRrozffz4JcbN7Hps,1532
|
690
|
+
arthur_client/api_bindings/test/test_custom_aggregation_spec_schema.py,sha256=xAzXpr7VPaZrfn33-XdOlWbN0Yows34IvgsRRErGThg,4647
|
691
|
+
arthur_client/api_bindings/test/test_custom_aggregation_spec_schema_aggregate_args_inner.py,sha256=1LKjR6TY4sfYgGlC3Kwhww5quxCgwbtx8ZbP6YE3Kj8,2472
|
692
|
+
arthur_client/api_bindings/test/test_custom_aggregations_v1_api.py,sha256=OQMLzfa19cTeLy5J6OYnh0DfEcJf6pb313wtK5tveQ0,1560
|
662
693
|
arthur_client/api_bindings/test/test_d_type.py,sha256=ggQt2A4GYsNd4PamoDQQqWmTAp3OzCIIIpHPe3M37PE,665
|
663
694
|
arthur_client/api_bindings/test/test_data_plane.py,sha256=bTCu2pfq-bq97YwJlDAGORRgvCBNfs6hL6SMVh_ASrE,2587
|
664
695
|
arthur_client/api_bindings/test/test_data_plane_association.py,sha256=gFQW6Xv_rpX7H0HYAtWICGRcKHRo6CVgx9c8hMXip0g,3321
|
@@ -739,11 +770,10 @@ arthur_client/api_bindings/test/test_list_type.py,sha256=wqrXlMWBg-m_5--hshlH3IT
|
|
739
770
|
arthur_client/api_bindings/test/test_metric_functions_v1_api.py,sha256=IoTo744ERBSbo3N6Uqh7LmS5-Q6yCwSIGisUG5b--1I,876
|
740
771
|
arthur_client/api_bindings/test/test_metrics_arg_spec.py,sha256=xywNmlrxNeLV6WGiEGOTuJVOlI3tLCXO6GcueXzR_EA,1500
|
741
772
|
arthur_client/api_bindings/test/test_metrics_calculation_job_spec.py,sha256=edsaqFJ-B0TBDkbtQz3HgtGu-DpwVI5OcIP9C-9OQvk,2073
|
742
|
-
arthur_client/api_bindings/test/test_metrics_column_list_parameter_schema.py,sha256=
|
743
|
-
arthur_client/api_bindings/test/
|
744
|
-
arthur_client/api_bindings/test/
|
745
|
-
arthur_client/api_bindings/test/
|
746
|
-
arthur_client/api_bindings/test/test_metrics_literal_parameter_schema.py,sha256=w5KQVVOlJ084IGTxHHOBjsoOZmnzt8S96dJvIHuWE5Y,1936
|
773
|
+
arthur_client/api_bindings/test/test_metrics_column_list_parameter_schema.py,sha256=tqqGCmWroEOrNqYmYFKCQNWGvg96JU2N4ARjWgdx9ps,2207
|
774
|
+
arthur_client/api_bindings/test/test_metrics_column_parameter_schema.py,sha256=9o5UD2uauhDZQvqUirEQunREe6up5b4lYbPjAh654rQ,2153
|
775
|
+
arthur_client/api_bindings/test/test_metrics_dataset_parameter_schema.py,sha256=79kiKMeN4wd9HxRJRpsv5a0Bag53VAWzoyX4UJ-_C7g,1893
|
776
|
+
arthur_client/api_bindings/test/test_metrics_literal_parameter_schema.py,sha256=vE-GSOgIPYvozJM_8BHPrJJNNzqxixkLjpu4kkyobLM,1936
|
747
777
|
arthur_client/api_bindings/test/test_metrics_query_result.py,sha256=-bw8wZoQs7lJfkWXV61_xnxqk1hYf7qGyl9rmrDHeWQ,1682
|
748
778
|
arthur_client/api_bindings/test/test_metrics_result_filter_op.py,sha256=N0iR76dCldkQDP6V1PhaTs_mAOpZbap4rxIcpKVGY5k,779
|
749
779
|
arthur_client/api_bindings/test/test_metrics_upload.py,sha256=U1VYTVVGkxoREOGsrMe1VV-sEBkKqUKS2Lw5RoxD4k8,1511
|
@@ -796,6 +826,7 @@ arthur_client/api_bindings/test/test_post_alert.py,sha256=xmhxEHjLnAGvTjFeyhV_1G
|
|
796
826
|
arthur_client/api_bindings/test/test_post_alert_rule.py,sha256=BKQPwatOhL-mEEgc3uyEkCgnHDtawkgkytlWn3oslRU,2159
|
797
827
|
arthur_client/api_bindings/test/test_post_alerts.py,sha256=E5mNiIZqnDWwEXrHGu0UgZPp_nS4vCmKa3IptygM78g,2915
|
798
828
|
arthur_client/api_bindings/test/test_post_connector_spec.py,sha256=zm6t8neoUmUG1VZP12VnDKDASclQor5hCgla83kqdu4,2090
|
829
|
+
arthur_client/api_bindings/test/test_post_custom_aggregation_spec_schema.py,sha256=HzMDFHaV_Eif5dR1UsHAxOPGIlHQ8dc27c7eBO4wqvU,2940
|
799
830
|
arthur_client/api_bindings/test/test_post_data_plane.py,sha256=Ih1oKJykD_Ajjd1Pnh_WSWWVGPFpz2i8u59f71f69X0,1640
|
800
831
|
arthur_client/api_bindings/test/test_post_data_plane_association.py,sha256=9UlCOBGcQ4nWtPcC4xRdedKGLNEPf-qdd7RR1Or9UOQ,1631
|
801
832
|
arthur_client/api_bindings/test/test_post_data_retrieval_operation.py,sha256=NVP050td_KKDTb-IJm7wU25NsncHN3ekce1kvGyEog0,2446
|
@@ -833,6 +864,7 @@ arthur_client/api_bindings/test/test_project_sort.py,sha256=I9teH1Abe7VYTER-98yT
|
|
833
864
|
arthur_client/api_bindings/test/test_projects_v1_api.py,sha256=EiuldEelo2yghpk11AAyo-dkVIa7XrhqQfEF4BnhJcQ,1304
|
834
865
|
arthur_client/api_bindings/test/test_put_available_dataset.py,sha256=8qvhVjybF02c8C8Z9CEkXwfqkH6p5gUxFPgTuc47DFE,2683
|
835
866
|
arthur_client/api_bindings/test/test_put_available_datasets.py,sha256=kaVkP6Cgxt_l4ypvLug5CxET4itmMNKEOj03EOO_9OA,4660
|
867
|
+
arthur_client/api_bindings/test/test_put_custom_aggregation_spec_schema.py,sha256=CHSvhn3i3mLFsB02dmQVQrun4PO4P1K7rxpKVWqfb40,2928
|
836
868
|
arthur_client/api_bindings/test/test_put_dataset_schema.py,sha256=gZ0_bgVEh2IlGlOqWHfDZA7pGy3M5-uBOCHZwEn0Fl0,2080
|
837
869
|
arthur_client/api_bindings/test/test_put_job_state.py,sha256=ikAboikA12w2ClaHjWJBlZT7KCSyA2_ldjmb50Y0Nfw,1412
|
838
870
|
arthur_client/api_bindings/test/test_put_model_metric_spec.py,sha256=_zc567CX9adjqyDHNkR3GXgWKg62kVmcEmP_4T2VC4U,2907
|
@@ -844,6 +876,7 @@ arthur_client/api_bindings/test/test_regenerate_task_validation_key_job_spec.py,
|
|
844
876
|
arthur_client/api_bindings/test/test_regex_config.py,sha256=2SyjRnhR5x2omyGYne7vxinwDqTM4SpoWtQHCbjdD7k,1497
|
845
877
|
arthur_client/api_bindings/test/test_register_user.py,sha256=__AJ5xIy18xPu6NOXpKI5iBwTRr9FE-jDe73xl9HpDM,1403
|
846
878
|
arthur_client/api_bindings/test/test_registration_v1_api.py,sha256=HHZwOHPkUBHUuoXBJPITnvUcJleKgPO7AD1xrJlbve4,821
|
879
|
+
arthur_client/api_bindings/test/test_reported_custom_aggregation.py,sha256=fCXzz9uxVmPuERWra4g4lW2MTXAxTIq7pnBc0rDeX0U,2036
|
847
880
|
arthur_client/api_bindings/test/test_resource_kind.py,sha256=LpDGag2GPVDMC7MzXEsNcWA4zyWqAQdrolAOQof5ACk,714
|
848
881
|
arthur_client/api_bindings/test/test_resource_list_aggregation_spec_schema.py,sha256=bYwDIhtCqmWLG0dbO5WGcN2YAyOpMh2QcMCd1VlNpSE,3128
|
849
882
|
arthur_client/api_bindings/test/test_resource_list_alert_rule.py,sha256=M2mfPs68VXKl075luM_2s447p2hIbJw8-cN6Pv0NmM0,5875
|
@@ -907,6 +940,9 @@ arthur_client/api_bindings/test/test_users_v1_api.py,sha256=iChzEwcJNb3eWGe7TcyJ
|
|
907
940
|
arthur_client/api_bindings/test/test_validate_alert_rule_query_req.py,sha256=zEMs8wt_fdV8RLg37HtzOLFJAXVFkjVxkm5lezeVYE8,1562
|
908
941
|
arthur_client/api_bindings/test/test_validation_error.py,sha256=_7kB1ntL9AVYkLJ0W9IyouymCyE690d__ZLMBETlFPU,1633
|
909
942
|
arthur_client/api_bindings/test/test_validation_error_loc_inner.py,sha256=VOHPWIP_lTFSytq2LJcOz0a_Bm6W9TPJHSaOth6Lim4,1482
|
943
|
+
arthur_client/api_bindings/test/test_validation_outcome.py,sha256=oYc8gedSe1zISQJI1J9IUAlqP6-n0mSH7C3mqviBoWU,749
|
944
|
+
arthur_client/api_bindings/test/test_validation_result.py,sha256=e_Pz2fZ-Il9b7ab4vH_XVKj9AsWLovtsDTSc2mbaTCE,1575
|
945
|
+
arthur_client/api_bindings/test/test_validation_results.py,sha256=xE6E56q3IoxfkcgFEbjZC4Lru2JI6nC9moVqEVOgIfA,1929
|
910
946
|
arthur_client/api_bindings/test/test_webhook.py,sha256=r6U3YpaTxzZdC4dr-FxL_LILZZQ_-i3TLe0v3WV-1bM,2818
|
911
947
|
arthur_client/api_bindings/test/test_webhook_response.py,sha256=kzQdwO_87-LvX8fYgOX9AhAPK2VWqDtzMP_aVZwt17E,1513
|
912
948
|
arthur_client/api_bindings/test/test_webhook_result.py,sha256=EEC03VW_8wludKIxzBai6Tu7qAsAWNrLgQT3q9iiO80,1759
|
@@ -915,13 +951,13 @@ arthur_client/api_bindings/test/test_webhooks_v1_api.py,sha256=7x3pb2tZdXbnSAI-w
|
|
915
951
|
arthur_client/api_bindings/test/test_workspace.py,sha256=hDjh6CQ8oHTVk_X3fb_wKVPp_cY9bQFAGmNh7qMKpIw,1918
|
916
952
|
arthur_client/api_bindings/test/test_workspace_sort.py,sha256=PDxv__jzX9VXu54ExqHJTLHRn9XKwGVwYjZ4OdFBmLk,721
|
917
953
|
arthur_client/api_bindings/test/test_workspaces_v1_api.py,sha256=_EdT96HqIQWQ64Oy11CEP4LqcJhZPB_EYzCYbhceJG0,1345
|
918
|
-
arthur_client/api_bindings_README.md,sha256=
|
954
|
+
arthur_client/api_bindings_README.md,sha256=vjfDSzYNdr8cxNc0k5EQJolEfta3gys4sf5IXlApGaE,53024
|
919
955
|
arthur_client/auth/__init__.py,sha256=f4XqpGe9d1V0xlocq2JlNtd8l_GUoUOy6_1yTMCBsc0,210
|
920
956
|
arthur_client/auth/constants.py,sha256=lIEdf1UujvAZhueQ8WZGjd3ErcJlCmrXRxjRhTRNb18,38
|
921
957
|
arthur_client/auth/device_authorizer.py,sha256=bJMIZRjkwQwoSWTLEp7OoXM2MytO3ADSD97Qlc1accA,2598
|
922
958
|
arthur_client/auth/discovery.py,sha256=hR0MglzRWHdwyi72If5hTnjO50fDJhquP_DD7OzjIQQ,1188
|
923
959
|
arthur_client/auth/oauth_api_config.py,sha256=MB-bwm6Qo_USZD_4KVId6d_v5OtLBphwBjMjslVjTlo,1348
|
924
960
|
arthur_client/auth/session.py,sha256=wCriib5ajfm1e1WTL_QXVCJmEOrGwQg_0v91e5qrC6g,2649
|
925
|
-
arthur_client-1.4.
|
926
|
-
arthur_client-1.4.
|
927
|
-
arthur_client-1.4.
|
961
|
+
arthur_client-1.4.1235.dist-info/METADATA,sha256=YHCrBiMgavEDxhMKlABJqmtEbJvUBBZIx5xktgNXPDg,1730
|
962
|
+
arthur_client-1.4.1235.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
963
|
+
arthur_client-1.4.1235.dist-info/RECORD,,
|
@@ -1,31 +0,0 @@
|
|
1
|
-
# MetricsColumnListParameterSchemaAllowedColumnTypesInner
|
2
|
-
|
3
|
-
|
4
|
-
## Properties
|
5
|
-
|
6
|
-
Name | Type | Description | Notes
|
7
|
-
------------ | ------------- | ------------- | -------------
|
8
|
-
**dtype** | [**DType**](DType.md) | |
|
9
|
-
**object** | [**Dict[str, MetricsColumnListParameterSchemaAllowedColumnTypesInner]**](MetricsColumnListParameterSchemaAllowedColumnTypesInner.md) | |
|
10
|
-
**items** | [**Items1**](Items1.md) | |
|
11
|
-
|
12
|
-
## Example
|
13
|
-
|
14
|
-
```python
|
15
|
-
from arthur_client.api_bindings.models.metrics_column_list_parameter_schema_allowed_column_types_inner import MetricsColumnListParameterSchemaAllowedColumnTypesInner
|
16
|
-
|
17
|
-
# TODO update the JSON string below
|
18
|
-
json = "{}"
|
19
|
-
# create an instance of MetricsColumnListParameterSchemaAllowedColumnTypesInner from a JSON string
|
20
|
-
metrics_column_list_parameter_schema_allowed_column_types_inner_instance = MetricsColumnListParameterSchemaAllowedColumnTypesInner.from_json(json)
|
21
|
-
# print the JSON string representation of the object
|
22
|
-
print(MetricsColumnListParameterSchemaAllowedColumnTypesInner.to_json())
|
23
|
-
|
24
|
-
# convert the object into a dict
|
25
|
-
metrics_column_list_parameter_schema_allowed_column_types_inner_dict = metrics_column_list_parameter_schema_allowed_column_types_inner_instance.to_dict()
|
26
|
-
# create an instance of MetricsColumnListParameterSchemaAllowedColumnTypesInner from a dict
|
27
|
-
metrics_column_list_parameter_schema_allowed_column_types_inner_from_dict = MetricsColumnListParameterSchemaAllowedColumnTypesInner.from_dict(metrics_column_list_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
|