arthur-client 1.4.1305__py3-none-any.whl → 1.4.1307__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 +1 -0
- arthur_client/api_bindings/api/custom_aggregations_v1_api.py +299 -0
- arthur_client/api_bindings/docs/CustomAggregationsV1Api.md +82 -0
- arthur_client/api_bindings/docs/PatchCustomAggregationSpecSchema.md +30 -0
- arthur_client/api_bindings/docs/PermissionName.md +2 -0
- arthur_client/api_bindings/models/__init__.py +1 -0
- arthur_client/api_bindings/models/patch_custom_aggregation_spec_schema.py +99 -0
- arthur_client/api_bindings/models/permission_name.py +1 -0
- arthur_client/api_bindings/test/test_custom_aggregations_v1_api.py +7 -0
- arthur_client/api_bindings/test/test_patch_custom_aggregation_spec_schema.py +52 -0
- arthur_client/api_bindings_README.md +2 -0
- {arthur_client-1.4.1305.dist-info → arthur_client-1.4.1307.dist-info}/METADATA +1 -1
- {arthur_client-1.4.1305.dist-info → arthur_client-1.4.1307.dist-info}/RECORD +14 -11
- {arthur_client-1.4.1305.dist-info → arthur_client-1.4.1307.dist-info}/WHEEL +0 -0
@@ -209,6 +209,7 @@ from arthur_client.api_bindings.models.pii_config import PIIConfig
|
|
209
209
|
from arthur_client.api_bindings.models.pagination import Pagination
|
210
210
|
from arthur_client.api_bindings.models.patch_alert_rule import PatchAlertRule
|
211
211
|
from arthur_client.api_bindings.models.patch_connector_spec import PatchConnectorSpec
|
212
|
+
from arthur_client.api_bindings.models.patch_custom_aggregation_spec_schema import PatchCustomAggregationSpecSchema
|
212
213
|
from arthur_client.api_bindings.models.patch_data_plane import PatchDataPlane
|
213
214
|
from arthur_client.api_bindings.models.patch_data_plane_capabilities import PatchDataPlaneCapabilities
|
214
215
|
from arthur_client.api_bindings.models.patch_dataset import PatchDataset
|
@@ -20,6 +20,7 @@ from pydantic import Field, StrictBool, StrictInt, StrictStr
|
|
20
20
|
from typing import Optional
|
21
21
|
from typing_extensions import Annotated
|
22
22
|
from arthur_client.api_bindings.models.custom_aggregation_spec_schema import CustomAggregationSpecSchema
|
23
|
+
from arthur_client.api_bindings.models.patch_custom_aggregation_spec_schema import PatchCustomAggregationSpecSchema
|
23
24
|
from arthur_client.api_bindings.models.post_custom_aggregation_spec_schema import PostCustomAggregationSpecSchema
|
24
25
|
from arthur_client.api_bindings.models.put_custom_aggregation_spec_schema import PutCustomAggregationSpecSchema
|
25
26
|
from arthur_client.api_bindings.models.resource_list_custom_aggregation_spec_schema import ResourceListCustomAggregationSpecSchema
|
@@ -921,6 +922,304 @@ class CustomAggregationsV1Api:
|
|
921
922
|
|
922
923
|
|
923
924
|
|
925
|
+
@validate_call
|
926
|
+
def patch_custom_aggregation(
|
927
|
+
self,
|
928
|
+
custom_aggregation_id: StrictStr,
|
929
|
+
patch_custom_aggregation_spec_schema: PatchCustomAggregationSpecSchema,
|
930
|
+
_request_timeout: Union[
|
931
|
+
None,
|
932
|
+
Annotated[StrictFloat, Field(gt=0)],
|
933
|
+
Tuple[
|
934
|
+
Annotated[StrictFloat, Field(gt=0)],
|
935
|
+
Annotated[StrictFloat, Field(gt=0)]
|
936
|
+
]
|
937
|
+
] = None,
|
938
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
939
|
+
_content_type: Optional[StrictStr] = None,
|
940
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
941
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
942
|
+
) -> CustomAggregationSpecSchema:
|
943
|
+
"""Patch Custom Aggregation
|
944
|
+
|
945
|
+
Requires custom_aggregation_update permission.
|
946
|
+
|
947
|
+
:param custom_aggregation_id: (required)
|
948
|
+
:type custom_aggregation_id: str
|
949
|
+
:param patch_custom_aggregation_spec_schema: (required)
|
950
|
+
:type patch_custom_aggregation_spec_schema: PatchCustomAggregationSpecSchema
|
951
|
+
:param _request_timeout: timeout setting for this request. If one
|
952
|
+
number provided, it will be total request
|
953
|
+
timeout. It can also be a pair (tuple) of
|
954
|
+
(connection, read) timeouts.
|
955
|
+
:type _request_timeout: int, tuple(int, int), optional
|
956
|
+
:param _request_auth: set to override the auth_settings for an a single
|
957
|
+
request; this effectively ignores the
|
958
|
+
authentication in the spec for a single request.
|
959
|
+
:type _request_auth: dict, optional
|
960
|
+
:param _content_type: force content-type for the request.
|
961
|
+
:type _content_type: str, Optional
|
962
|
+
:param _headers: set to override the headers for a single
|
963
|
+
request; this effectively ignores the headers
|
964
|
+
in the spec for a single request.
|
965
|
+
:type _headers: dict, optional
|
966
|
+
:param _host_index: set to override the host_index for a single
|
967
|
+
request; this effectively ignores the host_index
|
968
|
+
in the spec for a single request.
|
969
|
+
:type _host_index: int, optional
|
970
|
+
:return: Returns the result object.
|
971
|
+
""" # noqa: E501
|
972
|
+
|
973
|
+
_param = self._patch_custom_aggregation_serialize(
|
974
|
+
custom_aggregation_id=custom_aggregation_id,
|
975
|
+
patch_custom_aggregation_spec_schema=patch_custom_aggregation_spec_schema,
|
976
|
+
_request_auth=_request_auth,
|
977
|
+
_content_type=_content_type,
|
978
|
+
_headers=_headers,
|
979
|
+
_host_index=_host_index
|
980
|
+
)
|
981
|
+
|
982
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
983
|
+
'200': "CustomAggregationSpecSchema",
|
984
|
+
'500': "InternalServerError",
|
985
|
+
'404': "NotFoundError",
|
986
|
+
'422': "HTTPValidationError",
|
987
|
+
}
|
988
|
+
response_data = self.api_client.call_api(
|
989
|
+
*_param,
|
990
|
+
_request_timeout=_request_timeout
|
991
|
+
)
|
992
|
+
response_data.read()
|
993
|
+
return self.api_client.response_deserialize(
|
994
|
+
response_data=response_data,
|
995
|
+
response_types_map=_response_types_map,
|
996
|
+
).data
|
997
|
+
|
998
|
+
|
999
|
+
@validate_call
|
1000
|
+
def patch_custom_aggregation_with_http_info(
|
1001
|
+
self,
|
1002
|
+
custom_aggregation_id: StrictStr,
|
1003
|
+
patch_custom_aggregation_spec_schema: PatchCustomAggregationSpecSchema,
|
1004
|
+
_request_timeout: Union[
|
1005
|
+
None,
|
1006
|
+
Annotated[StrictFloat, Field(gt=0)],
|
1007
|
+
Tuple[
|
1008
|
+
Annotated[StrictFloat, Field(gt=0)],
|
1009
|
+
Annotated[StrictFloat, Field(gt=0)]
|
1010
|
+
]
|
1011
|
+
] = None,
|
1012
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
1013
|
+
_content_type: Optional[StrictStr] = None,
|
1014
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
1015
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
1016
|
+
) -> ApiResponse[CustomAggregationSpecSchema]:
|
1017
|
+
"""Patch Custom Aggregation
|
1018
|
+
|
1019
|
+
Requires custom_aggregation_update permission.
|
1020
|
+
|
1021
|
+
:param custom_aggregation_id: (required)
|
1022
|
+
:type custom_aggregation_id: str
|
1023
|
+
:param patch_custom_aggregation_spec_schema: (required)
|
1024
|
+
:type patch_custom_aggregation_spec_schema: PatchCustomAggregationSpecSchema
|
1025
|
+
:param _request_timeout: timeout setting for this request. If one
|
1026
|
+
number provided, it will be total request
|
1027
|
+
timeout. It can also be a pair (tuple) of
|
1028
|
+
(connection, read) timeouts.
|
1029
|
+
:type _request_timeout: int, tuple(int, int), optional
|
1030
|
+
:param _request_auth: set to override the auth_settings for an a single
|
1031
|
+
request; this effectively ignores the
|
1032
|
+
authentication in the spec for a single request.
|
1033
|
+
:type _request_auth: dict, optional
|
1034
|
+
:param _content_type: force content-type for the request.
|
1035
|
+
:type _content_type: str, Optional
|
1036
|
+
:param _headers: set to override the headers for a single
|
1037
|
+
request; this effectively ignores the headers
|
1038
|
+
in the spec for a single request.
|
1039
|
+
:type _headers: dict, optional
|
1040
|
+
:param _host_index: set to override the host_index for a single
|
1041
|
+
request; this effectively ignores the host_index
|
1042
|
+
in the spec for a single request.
|
1043
|
+
:type _host_index: int, optional
|
1044
|
+
:return: Returns the result object.
|
1045
|
+
""" # noqa: E501
|
1046
|
+
|
1047
|
+
_param = self._patch_custom_aggregation_serialize(
|
1048
|
+
custom_aggregation_id=custom_aggregation_id,
|
1049
|
+
patch_custom_aggregation_spec_schema=patch_custom_aggregation_spec_schema,
|
1050
|
+
_request_auth=_request_auth,
|
1051
|
+
_content_type=_content_type,
|
1052
|
+
_headers=_headers,
|
1053
|
+
_host_index=_host_index
|
1054
|
+
)
|
1055
|
+
|
1056
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
1057
|
+
'200': "CustomAggregationSpecSchema",
|
1058
|
+
'500': "InternalServerError",
|
1059
|
+
'404': "NotFoundError",
|
1060
|
+
'422': "HTTPValidationError",
|
1061
|
+
}
|
1062
|
+
response_data = self.api_client.call_api(
|
1063
|
+
*_param,
|
1064
|
+
_request_timeout=_request_timeout
|
1065
|
+
)
|
1066
|
+
response_data.read()
|
1067
|
+
return self.api_client.response_deserialize(
|
1068
|
+
response_data=response_data,
|
1069
|
+
response_types_map=_response_types_map,
|
1070
|
+
)
|
1071
|
+
|
1072
|
+
|
1073
|
+
@validate_call
|
1074
|
+
def patch_custom_aggregation_without_preload_content(
|
1075
|
+
self,
|
1076
|
+
custom_aggregation_id: StrictStr,
|
1077
|
+
patch_custom_aggregation_spec_schema: PatchCustomAggregationSpecSchema,
|
1078
|
+
_request_timeout: Union[
|
1079
|
+
None,
|
1080
|
+
Annotated[StrictFloat, Field(gt=0)],
|
1081
|
+
Tuple[
|
1082
|
+
Annotated[StrictFloat, Field(gt=0)],
|
1083
|
+
Annotated[StrictFloat, Field(gt=0)]
|
1084
|
+
]
|
1085
|
+
] = None,
|
1086
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
1087
|
+
_content_type: Optional[StrictStr] = None,
|
1088
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
1089
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
1090
|
+
) -> RESTResponseType:
|
1091
|
+
"""Patch Custom Aggregation
|
1092
|
+
|
1093
|
+
Requires custom_aggregation_update permission.
|
1094
|
+
|
1095
|
+
:param custom_aggregation_id: (required)
|
1096
|
+
:type custom_aggregation_id: str
|
1097
|
+
:param patch_custom_aggregation_spec_schema: (required)
|
1098
|
+
:type patch_custom_aggregation_spec_schema: PatchCustomAggregationSpecSchema
|
1099
|
+
:param _request_timeout: timeout setting for this request. If one
|
1100
|
+
number provided, it will be total request
|
1101
|
+
timeout. It can also be a pair (tuple) of
|
1102
|
+
(connection, read) timeouts.
|
1103
|
+
:type _request_timeout: int, tuple(int, int), optional
|
1104
|
+
:param _request_auth: set to override the auth_settings for an a single
|
1105
|
+
request; this effectively ignores the
|
1106
|
+
authentication in the spec for a single request.
|
1107
|
+
:type _request_auth: dict, optional
|
1108
|
+
:param _content_type: force content-type for the request.
|
1109
|
+
:type _content_type: str, Optional
|
1110
|
+
:param _headers: set to override the headers for a single
|
1111
|
+
request; this effectively ignores the headers
|
1112
|
+
in the spec for a single request.
|
1113
|
+
:type _headers: dict, optional
|
1114
|
+
:param _host_index: set to override the host_index for a single
|
1115
|
+
request; this effectively ignores the host_index
|
1116
|
+
in the spec for a single request.
|
1117
|
+
:type _host_index: int, optional
|
1118
|
+
:return: Returns the result object.
|
1119
|
+
""" # noqa: E501
|
1120
|
+
|
1121
|
+
_param = self._patch_custom_aggregation_serialize(
|
1122
|
+
custom_aggregation_id=custom_aggregation_id,
|
1123
|
+
patch_custom_aggregation_spec_schema=patch_custom_aggregation_spec_schema,
|
1124
|
+
_request_auth=_request_auth,
|
1125
|
+
_content_type=_content_type,
|
1126
|
+
_headers=_headers,
|
1127
|
+
_host_index=_host_index
|
1128
|
+
)
|
1129
|
+
|
1130
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
1131
|
+
'200': "CustomAggregationSpecSchema",
|
1132
|
+
'500': "InternalServerError",
|
1133
|
+
'404': "NotFoundError",
|
1134
|
+
'422': "HTTPValidationError",
|
1135
|
+
}
|
1136
|
+
response_data = self.api_client.call_api(
|
1137
|
+
*_param,
|
1138
|
+
_request_timeout=_request_timeout
|
1139
|
+
)
|
1140
|
+
return response_data.response
|
1141
|
+
|
1142
|
+
|
1143
|
+
def _patch_custom_aggregation_serialize(
|
1144
|
+
self,
|
1145
|
+
custom_aggregation_id,
|
1146
|
+
patch_custom_aggregation_spec_schema,
|
1147
|
+
_request_auth,
|
1148
|
+
_content_type,
|
1149
|
+
_headers,
|
1150
|
+
_host_index,
|
1151
|
+
) -> RequestSerialized:
|
1152
|
+
|
1153
|
+
_host = None
|
1154
|
+
|
1155
|
+
_collection_formats: Dict[str, str] = {
|
1156
|
+
}
|
1157
|
+
|
1158
|
+
_path_params: Dict[str, str] = {}
|
1159
|
+
_query_params: List[Tuple[str, str]] = []
|
1160
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
1161
|
+
_form_params: List[Tuple[str, str]] = []
|
1162
|
+
_files: Dict[
|
1163
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
1164
|
+
] = {}
|
1165
|
+
_body_params: Optional[bytes] = None
|
1166
|
+
|
1167
|
+
# process the path parameters
|
1168
|
+
if custom_aggregation_id is not None:
|
1169
|
+
_path_params['custom_aggregation_id'] = custom_aggregation_id
|
1170
|
+
# process the query parameters
|
1171
|
+
# process the header parameters
|
1172
|
+
# process the form parameters
|
1173
|
+
# process the body parameter
|
1174
|
+
if patch_custom_aggregation_spec_schema is not None:
|
1175
|
+
_body_params = patch_custom_aggregation_spec_schema
|
1176
|
+
|
1177
|
+
|
1178
|
+
# set the HTTP header `Accept`
|
1179
|
+
if 'Accept' not in _header_params:
|
1180
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
1181
|
+
[
|
1182
|
+
'application/json'
|
1183
|
+
]
|
1184
|
+
)
|
1185
|
+
|
1186
|
+
# set the HTTP header `Content-Type`
|
1187
|
+
if _content_type:
|
1188
|
+
_header_params['Content-Type'] = _content_type
|
1189
|
+
else:
|
1190
|
+
_default_content_type = (
|
1191
|
+
self.api_client.select_header_content_type(
|
1192
|
+
[
|
1193
|
+
'application/json'
|
1194
|
+
]
|
1195
|
+
)
|
1196
|
+
)
|
1197
|
+
if _default_content_type is not None:
|
1198
|
+
_header_params['Content-Type'] = _default_content_type
|
1199
|
+
|
1200
|
+
# authentication setting
|
1201
|
+
_auth_settings: List[str] = [
|
1202
|
+
'OAuth2AuthorizationCode'
|
1203
|
+
]
|
1204
|
+
|
1205
|
+
return self.api_client.param_serialize(
|
1206
|
+
method='PATCH',
|
1207
|
+
resource_path='/api/v1/custom_aggregations/{custom_aggregation_id}',
|
1208
|
+
path_params=_path_params,
|
1209
|
+
query_params=_query_params,
|
1210
|
+
header_params=_header_params,
|
1211
|
+
body=_body_params,
|
1212
|
+
post_params=_form_params,
|
1213
|
+
files=_files,
|
1214
|
+
auth_settings=_auth_settings,
|
1215
|
+
collection_formats=_collection_formats,
|
1216
|
+
_host=_host,
|
1217
|
+
_request_auth=_request_auth
|
1218
|
+
)
|
1219
|
+
|
1220
|
+
|
1221
|
+
|
1222
|
+
|
924
1223
|
@validate_call
|
925
1224
|
def post_custom_aggregation(
|
926
1225
|
self,
|
@@ -7,6 +7,7 @@ Method | HTTP request | Description
|
|
7
7
|
[**delete_custom_aggregation**](CustomAggregationsV1Api.md#delete_custom_aggregation) | **DELETE** /api/v1/custom_aggregations/{custom_aggregation_id} | Delete Custom Aggregation.
|
8
8
|
[**get_custom_aggregation**](CustomAggregationsV1Api.md#get_custom_aggregation) | **GET** /api/v1/custom_aggregations/{custom_aggregation_id} | Get Custom Aggregation By Id.
|
9
9
|
[**get_custom_aggregations_for_workspace**](CustomAggregationsV1Api.md#get_custom_aggregations_for_workspace) | **GET** /api/v1/workspaces/{workspace_id}/custom_aggregations | Get Custom Aggregation.
|
10
|
+
[**patch_custom_aggregation**](CustomAggregationsV1Api.md#patch_custom_aggregation) | **PATCH** /api/v1/custom_aggregations/{custom_aggregation_id} | Patch Custom Aggregation
|
10
11
|
[**post_custom_aggregation**](CustomAggregationsV1Api.md#post_custom_aggregation) | **POST** /api/v1/workspaces/{workspace_id}/custom_aggregations | Post Custom Aggregation.
|
11
12
|
[**put_custom_aggregation**](CustomAggregationsV1Api.md#put_custom_aggregation) | **PUT** /api/v1/custom_aggregations/{custom_aggregation_id} | Update Custom Aggregation By Id.
|
12
13
|
[**validate_custom_aggregation**](CustomAggregationsV1Api.md#validate_custom_aggregation) | **POST** /api/v1/workspaces/{workspace_id}/validate_custom_aggregation | Validate A Custom Aggregation Before Creation.
|
@@ -251,6 +252,87 @@ Name | Type | Description | Notes
|
|
251
252
|
|
252
253
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
253
254
|
|
255
|
+
# **patch_custom_aggregation**
|
256
|
+
> CustomAggregationSpecSchema patch_custom_aggregation(custom_aggregation_id, patch_custom_aggregation_spec_schema)
|
257
|
+
|
258
|
+
Patch Custom Aggregation
|
259
|
+
|
260
|
+
Requires custom_aggregation_update permission.
|
261
|
+
|
262
|
+
### Example
|
263
|
+
|
264
|
+
* OAuth Authentication (OAuth2AuthorizationCode):
|
265
|
+
|
266
|
+
```python
|
267
|
+
import arthur_client.api_bindings
|
268
|
+
from arthur_client.api_bindings.models.custom_aggregation_spec_schema import CustomAggregationSpecSchema
|
269
|
+
from arthur_client.api_bindings.models.patch_custom_aggregation_spec_schema import PatchCustomAggregationSpecSchema
|
270
|
+
from arthur_client.api_bindings.rest import ApiException
|
271
|
+
from pprint import pprint
|
272
|
+
|
273
|
+
# Defining the host is optional and defaults to http://localhost
|
274
|
+
# See configuration.py for a list of all supported configuration parameters.
|
275
|
+
configuration = arthur_client.api_bindings.Configuration(
|
276
|
+
host = "http://localhost"
|
277
|
+
)
|
278
|
+
|
279
|
+
# The client must configure the authentication and authorization parameters
|
280
|
+
# in accordance with the API server security policy.
|
281
|
+
# Examples for each auth method are provided below, use the example that
|
282
|
+
# satisfies your auth use case.
|
283
|
+
|
284
|
+
configuration.access_token = os.environ["ACCESS_TOKEN"]
|
285
|
+
|
286
|
+
# Enter a context with an instance of the API client
|
287
|
+
with arthur_client.api_bindings.ApiClient(configuration) as api_client:
|
288
|
+
# Create an instance of the API class
|
289
|
+
api_instance = arthur_client.api_bindings.CustomAggregationsV1Api(api_client)
|
290
|
+
custom_aggregation_id = 'custom_aggregation_id_example' # str |
|
291
|
+
patch_custom_aggregation_spec_schema = arthur_client.api_bindings.PatchCustomAggregationSpecSchema() # PatchCustomAggregationSpecSchema |
|
292
|
+
|
293
|
+
try:
|
294
|
+
# Patch Custom Aggregation
|
295
|
+
api_response = api_instance.patch_custom_aggregation(custom_aggregation_id, patch_custom_aggregation_spec_schema)
|
296
|
+
print("The response of CustomAggregationsV1Api->patch_custom_aggregation:\n")
|
297
|
+
pprint(api_response)
|
298
|
+
except Exception as e:
|
299
|
+
print("Exception when calling CustomAggregationsV1Api->patch_custom_aggregation: %s\n" % e)
|
300
|
+
```
|
301
|
+
|
302
|
+
|
303
|
+
|
304
|
+
### Parameters
|
305
|
+
|
306
|
+
|
307
|
+
Name | Type | Description | Notes
|
308
|
+
------------- | ------------- | ------------- | -------------
|
309
|
+
**custom_aggregation_id** | **str**| |
|
310
|
+
**patch_custom_aggregation_spec_schema** | [**PatchCustomAggregationSpecSchema**](PatchCustomAggregationSpecSchema.md)| |
|
311
|
+
|
312
|
+
### Return type
|
313
|
+
|
314
|
+
[**CustomAggregationSpecSchema**](CustomAggregationSpecSchema.md)
|
315
|
+
|
316
|
+
### Authorization
|
317
|
+
|
318
|
+
[OAuth2AuthorizationCode](../README.md#OAuth2AuthorizationCode)
|
319
|
+
|
320
|
+
### HTTP request headers
|
321
|
+
|
322
|
+
- **Content-Type**: application/json
|
323
|
+
- **Accept**: application/json
|
324
|
+
|
325
|
+
### HTTP response details
|
326
|
+
|
327
|
+
| Status code | Description | Response headers |
|
328
|
+
|-------------|-------------|------------------|
|
329
|
+
**200** | Successful Response | - |
|
330
|
+
**500** | Internal Server Error | - |
|
331
|
+
**404** | Not Found | - |
|
332
|
+
**422** | Validation Error | - |
|
333
|
+
|
334
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
335
|
+
|
254
336
|
# **post_custom_aggregation**
|
255
337
|
> CustomAggregationSpecSchema post_custom_aggregation(workspace_id, post_custom_aggregation_spec_schema)
|
256
338
|
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# PatchCustomAggregationSpecSchema
|
2
|
+
|
3
|
+
|
4
|
+
## Properties
|
5
|
+
|
6
|
+
Name | Type | Description | Notes
|
7
|
+
------------ | ------------- | ------------- | -------------
|
8
|
+
**name** | **str** | | [optional]
|
9
|
+
**description** | **str** | | [optional]
|
10
|
+
|
11
|
+
## Example
|
12
|
+
|
13
|
+
```python
|
14
|
+
from arthur_client.api_bindings.models.patch_custom_aggregation_spec_schema import PatchCustomAggregationSpecSchema
|
15
|
+
|
16
|
+
# TODO update the JSON string below
|
17
|
+
json = "{}"
|
18
|
+
# create an instance of PatchCustomAggregationSpecSchema from a JSON string
|
19
|
+
patch_custom_aggregation_spec_schema_instance = PatchCustomAggregationSpecSchema.from_json(json)
|
20
|
+
# print the JSON string representation of the object
|
21
|
+
print(PatchCustomAggregationSpecSchema.to_json())
|
22
|
+
|
23
|
+
# convert the object into a dict
|
24
|
+
patch_custom_aggregation_spec_schema_dict = patch_custom_aggregation_spec_schema_instance.to_dict()
|
25
|
+
# create an instance of PatchCustomAggregationSpecSchema from a dict
|
26
|
+
patch_custom_aggregation_spec_schema_from_dict = PatchCustomAggregationSpecSchema.from_dict(patch_custom_aggregation_spec_schema_dict)
|
27
|
+
```
|
28
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
29
|
+
|
30
|
+
|
@@ -281,6 +281,8 @@
|
|
281
281
|
|
282
282
|
* `CUSTOM_AGGREGATION_DELETE` (value: `'custom_aggregation_delete'`)
|
283
283
|
|
284
|
+
* `CUSTOM_AGGREGATION_UPDATE` (value: `'custom_aggregation_update'`)
|
285
|
+
|
284
286
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
285
287
|
|
286
288
|
|
@@ -166,6 +166,7 @@ from arthur_client.api_bindings.models.pii_config import PIIConfig
|
|
166
166
|
from arthur_client.api_bindings.models.pagination import Pagination
|
167
167
|
from arthur_client.api_bindings.models.patch_alert_rule import PatchAlertRule
|
168
168
|
from arthur_client.api_bindings.models.patch_connector_spec import PatchConnectorSpec
|
169
|
+
from arthur_client.api_bindings.models.patch_custom_aggregation_spec_schema import PatchCustomAggregationSpecSchema
|
169
170
|
from arthur_client.api_bindings.models.patch_data_plane import PatchDataPlane
|
170
171
|
from arthur_client.api_bindings.models.patch_data_plane_capabilities import PatchDataPlaneCapabilities
|
171
172
|
from arthur_client.api_bindings.models.patch_dataset import PatchDataset
|
@@ -0,0 +1,99 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
"""
|
4
|
+
Arthur Scope
|
5
|
+
|
6
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
7
|
+
|
8
|
+
The version of the OpenAPI document: 0.1.0
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
10
|
+
|
11
|
+
Do not edit the class manually.
|
12
|
+
""" # noqa: E501
|
13
|
+
|
14
|
+
|
15
|
+
from __future__ import annotations
|
16
|
+
import pprint
|
17
|
+
import re # noqa: F401
|
18
|
+
import json
|
19
|
+
|
20
|
+
from pydantic import BaseModel, ConfigDict, StrictStr
|
21
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
22
|
+
from typing import Optional, Set
|
23
|
+
from typing_extensions import Self
|
24
|
+
|
25
|
+
class PatchCustomAggregationSpecSchema(BaseModel):
|
26
|
+
"""
|
27
|
+
PatchCustomAggregationSpecSchema
|
28
|
+
""" # noqa: E501
|
29
|
+
name: Optional[StrictStr] = None
|
30
|
+
description: Optional[StrictStr] = None
|
31
|
+
__properties: ClassVar[List[str]] = ["name", "description"]
|
32
|
+
|
33
|
+
model_config = ConfigDict(
|
34
|
+
populate_by_name=True,
|
35
|
+
validate_assignment=True,
|
36
|
+
protected_namespaces=(),
|
37
|
+
)
|
38
|
+
|
39
|
+
|
40
|
+
def to_str(self) -> str:
|
41
|
+
"""Returns the string representation of the model using alias"""
|
42
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
43
|
+
|
44
|
+
def to_json(self) -> str:
|
45
|
+
"""Returns the JSON representation of the model using alias"""
|
46
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
47
|
+
return json.dumps(self.to_dict())
|
48
|
+
|
49
|
+
@classmethod
|
50
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
51
|
+
"""Create an instance of PatchCustomAggregationSpecSchema from a JSON string"""
|
52
|
+
return cls.from_dict(json.loads(json_str))
|
53
|
+
|
54
|
+
def to_dict(self) -> Dict[str, Any]:
|
55
|
+
"""Return the dictionary representation of the model using alias.
|
56
|
+
|
57
|
+
This has the following differences from calling pydantic's
|
58
|
+
`self.model_dump(by_alias=True)`:
|
59
|
+
|
60
|
+
* `None` is only added to the output dict for nullable fields that
|
61
|
+
were set at model initialization. Other fields with value `None`
|
62
|
+
are ignored.
|
63
|
+
"""
|
64
|
+
excluded_fields: Set[str] = set([
|
65
|
+
])
|
66
|
+
|
67
|
+
_dict = self.model_dump(
|
68
|
+
by_alias=True,
|
69
|
+
exclude=excluded_fields,
|
70
|
+
exclude_none=True,
|
71
|
+
)
|
72
|
+
# set to None if name (nullable) is None
|
73
|
+
# and model_fields_set contains the field
|
74
|
+
if self.name is None and "name" in self.model_fields_set:
|
75
|
+
_dict['name'] = None
|
76
|
+
|
77
|
+
# set to None if description (nullable) is None
|
78
|
+
# and model_fields_set contains the field
|
79
|
+
if self.description is None and "description" in self.model_fields_set:
|
80
|
+
_dict['description'] = None
|
81
|
+
|
82
|
+
return _dict
|
83
|
+
|
84
|
+
@classmethod
|
85
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
86
|
+
"""Create an instance of PatchCustomAggregationSpecSchema from a dict"""
|
87
|
+
if obj is None:
|
88
|
+
return None
|
89
|
+
|
90
|
+
if not isinstance(obj, dict):
|
91
|
+
return cls.model_validate(obj)
|
92
|
+
|
93
|
+
_obj = cls.model_validate({
|
94
|
+
"name": obj.get("name"),
|
95
|
+
"description": obj.get("description")
|
96
|
+
})
|
97
|
+
return _obj
|
98
|
+
|
99
|
+
|
@@ -165,6 +165,7 @@ class PermissionName(str, Enum):
|
|
165
165
|
CUSTOM_AGGREGATION_READ = 'custom_aggregation_read'
|
166
166
|
CUSTOM_AGGREGATION_PUT = 'custom_aggregation_put'
|
167
167
|
CUSTOM_AGGREGATION_DELETE = 'custom_aggregation_delete'
|
168
|
+
CUSTOM_AGGREGATION_UPDATE = 'custom_aggregation_update'
|
168
169
|
|
169
170
|
@classmethod
|
170
171
|
def from_json(cls, json_str: str) -> Self:
|
@@ -47,6 +47,13 @@ class TestCustomAggregationsV1Api(unittest.TestCase):
|
|
47
47
|
"""
|
48
48
|
pass
|
49
49
|
|
50
|
+
def test_patch_custom_aggregation(self) -> None:
|
51
|
+
"""Test case for patch_custom_aggregation
|
52
|
+
|
53
|
+
Patch Custom Aggregation
|
54
|
+
"""
|
55
|
+
pass
|
56
|
+
|
50
57
|
def test_post_custom_aggregation(self) -> None:
|
51
58
|
"""Test case for post_custom_aggregation
|
52
59
|
|
@@ -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.patch_custom_aggregation_spec_schema import PatchCustomAggregationSpecSchema
|
18
|
+
|
19
|
+
class TestPatchCustomAggregationSpecSchema(unittest.TestCase):
|
20
|
+
"""PatchCustomAggregationSpecSchema 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) -> PatchCustomAggregationSpecSchema:
|
29
|
+
"""Test PatchCustomAggregationSpecSchema
|
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 `PatchCustomAggregationSpecSchema`
|
34
|
+
"""
|
35
|
+
model = PatchCustomAggregationSpecSchema()
|
36
|
+
if include_optional:
|
37
|
+
return PatchCustomAggregationSpecSchema(
|
38
|
+
name = '',
|
39
|
+
description = ''
|
40
|
+
)
|
41
|
+
else:
|
42
|
+
return PatchCustomAggregationSpecSchema(
|
43
|
+
)
|
44
|
+
"""
|
45
|
+
|
46
|
+
def testPatchCustomAggregationSpecSchema(self):
|
47
|
+
"""Test PatchCustomAggregationSpecSchema"""
|
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()
|
@@ -101,6 +101,7 @@ Class | Method | HTTP request | Description
|
|
101
101
|
*CustomAggregationsV1Api* | [**delete_custom_aggregation**](arthur_client/api_bindings/docs/CustomAggregationsV1Api.md#delete_custom_aggregation) | **DELETE** /api/v1/custom_aggregations/{custom_aggregation_id} | Delete Custom Aggregation.
|
102
102
|
*CustomAggregationsV1Api* | [**get_custom_aggregation**](arthur_client/api_bindings/docs/CustomAggregationsV1Api.md#get_custom_aggregation) | **GET** /api/v1/custom_aggregations/{custom_aggregation_id} | Get Custom Aggregation By Id.
|
103
103
|
*CustomAggregationsV1Api* | [**get_custom_aggregations_for_workspace**](arthur_client/api_bindings/docs/CustomAggregationsV1Api.md#get_custom_aggregations_for_workspace) | **GET** /api/v1/workspaces/{workspace_id}/custom_aggregations | Get Custom Aggregation.
|
104
|
+
*CustomAggregationsV1Api* | [**patch_custom_aggregation**](arthur_client/api_bindings/docs/CustomAggregationsV1Api.md#patch_custom_aggregation) | **PATCH** /api/v1/custom_aggregations/{custom_aggregation_id} | Patch Custom Aggregation
|
104
105
|
*CustomAggregationsV1Api* | [**post_custom_aggregation**](arthur_client/api_bindings/docs/CustomAggregationsV1Api.md#post_custom_aggregation) | **POST** /api/v1/workspaces/{workspace_id}/custom_aggregations | Post Custom Aggregation.
|
105
106
|
*CustomAggregationsV1Api* | [**put_custom_aggregation**](arthur_client/api_bindings/docs/CustomAggregationsV1Api.md#put_custom_aggregation) | **PUT** /api/v1/custom_aggregations/{custom_aggregation_id} | Update Custom Aggregation By Id.
|
106
107
|
*CustomAggregationsV1Api* | [**validate_custom_aggregation**](arthur_client/api_bindings/docs/CustomAggregationsV1Api.md#validate_custom_aggregation) | **POST** /api/v1/workspaces/{workspace_id}/validate_custom_aggregation | Validate A Custom Aggregation Before Creation.
|
@@ -374,6 +375,7 @@ Class | Method | HTTP request | Description
|
|
374
375
|
- [Pagination](arthur_client/api_bindings/docs/Pagination.md)
|
375
376
|
- [PatchAlertRule](arthur_client/api_bindings/docs/PatchAlertRule.md)
|
376
377
|
- [PatchConnectorSpec](arthur_client/api_bindings/docs/PatchConnectorSpec.md)
|
378
|
+
- [PatchCustomAggregationSpecSchema](arthur_client/api_bindings/docs/PatchCustomAggregationSpecSchema.md)
|
377
379
|
- [PatchDataPlane](arthur_client/api_bindings/docs/PatchDataPlane.md)
|
378
380
|
- [PatchDataPlaneCapabilities](arthur_client/api_bindings/docs/PatchDataPlaneCapabilities.md)
|
379
381
|
- [PatchDataset](arthur_client/api_bindings/docs/PatchDataset.md)
|
@@ -1,13 +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=
|
3
|
+
arthur_client/api_bindings/__init__.py,sha256=EWT4YgfxupPVZWhkfYHPvB_PslSNvwg8cJ3hLSNOtBo,28059
|
4
4
|
arthur_client/api_bindings/api/__init__.py,sha256=LUOVle03SD-ZkuW_-wPOHEZTW8kF_VfVPzT8DsFBKIg,2112
|
5
5
|
arthur_client/api_bindings/api/alert_rules_v1_api.py,sha256=6bvhsumFswvhaf9Wik6heiIoYgnqy3foQ8i-K7rJWdQ,77212
|
6
6
|
arthur_client/api_bindings/api/alerts_v1_api.py,sha256=RVP4gZUK70I7rn2B9xSeN3CRJaix3C14BLQAVvVTh2Q,41291
|
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=
|
10
|
+
arthur_client/api_bindings/api/custom_aggregations_v1_api.py,sha256=nFD2yjbjn6L78BQnslizmMl6fKcU2orCyTat9M_kbxs,86429
|
11
11
|
arthur_client/api_bindings/api/data_plane_associations_v1_api.py,sha256=16sLHbpsgOO2TtUqLpXsHO5dbLkjHw8R0p6zir-61z0,72612
|
12
12
|
arthur_client/api_bindings/api/data_planes_v1_api.py,sha256=v-1GgCyTa3r1ns3l-vWN1eoVzueOdZOQRfaca0BY9WI,72069
|
13
13
|
arthur_client/api_bindings/api/data_retrieval_v1_api.py,sha256=jzxN8pcdtbgJN9SnwhCCmGhN4FOlkCdmFmW1WLkv0R8,97319
|
@@ -87,7 +87,7 @@ arthur_client/api_bindings/docs/Credentials.md,sha256=QEShs4tAwQUpULYbYFKMjsg94T
|
|
87
87
|
arthur_client/api_bindings/docs/CustomAggregationSpecSchema.md,sha256=zXp48Z-ZSCTzMaSyCiPmjjh9iwmT68QxKjhNsH8ds6M,1849
|
88
88
|
arthur_client/api_bindings/docs/CustomAggregationVersionSpecSchema.md,sha256=fUQoc5uZdjgGSmQAYCtYI8jHMrINzeDXndePwhb2Ugw,1850
|
89
89
|
arthur_client/api_bindings/docs/CustomAggregationVersionSpecSchemaAggregateArgsInner.md,sha256=XMeXdYAgBuur7E52g3kAD6dRjloB31U_h6RcC3DtwTI,2443
|
90
|
-
arthur_client/api_bindings/docs/CustomAggregationsV1Api.md,sha256=
|
90
|
+
arthur_client/api_bindings/docs/CustomAggregationsV1Api.md,sha256=l8AAwBQhayn4kmBSx1pLkX-9_zfFBKeetDLPpnjyqRk,22201
|
91
91
|
arthur_client/api_bindings/docs/DType.md,sha256=SGDBKxZMAyuKluZciLOLK5u9vP_OcJkUBtvPGPbyn48,483
|
92
92
|
arthur_client/api_bindings/docs/DataPlane.md,sha256=TQ6TTMJ5KgaP27NvtrVRAD9klwJ4TPddRVrhUzV2-cM,1356
|
93
93
|
arthur_client/api_bindings/docs/DataPlaneAssociation.md,sha256=j79bQmqthx-3CQiCaxmXXsfLxxXmsaWvYxnnvyrv_Rg,1353
|
@@ -203,6 +203,7 @@ arthur_client/api_bindings/docs/PIIConfig.md,sha256=UmJrbF13Dga3_Vg6ezmoUA4YmMDv
|
|
203
203
|
arthur_client/api_bindings/docs/Pagination.md,sha256=QcHVuXM1U5kEaU2_YbtT4cHXS02DIB0m41YBGIZ7Dwk,1119
|
204
204
|
arthur_client/api_bindings/docs/PatchAlertRule.md,sha256=Z8i5PSPIt8HH_cauZa9gLWRKYTakMITW7wYNGZgV6d4,1274
|
205
205
|
arthur_client/api_bindings/docs/PatchConnectorSpec.md,sha256=2GrPGQ_vAOvqOq0Qbjw0azt1dYwpTtwfI4MGHdq6KQ0,1161
|
206
|
+
arthur_client/api_bindings/docs/PatchCustomAggregationSpecSchema.md,sha256=xntLVUEVsTVfgT2vUM0Ar670nTjTOXAJnfwWfPpw5gQ,1196
|
206
207
|
arthur_client/api_bindings/docs/PatchDataPlane.md,sha256=JxtdjmQmCH-fx88XFjgFQzkThdRi21Al5nZv1yAcL5s,1050
|
207
208
|
arthur_client/api_bindings/docs/PatchDataPlaneCapabilities.md,sha256=F6yELNqKu650unBLphPH9F9uBB4fev49pJVO4ktKeCc,1080
|
208
209
|
arthur_client/api_bindings/docs/PatchDataset.md,sha256=p_3adxciIFbf0g75CTFJmhpP1ZbQZfXEBNVTSamNH4c,1050
|
@@ -218,7 +219,7 @@ arthur_client/api_bindings/docs/PatchUser.md,sha256=Fcd1053Y23aSfdqZED6IyRnU9ANE
|
|
218
219
|
arthur_client/api_bindings/docs/PatchWebhook.md,sha256=jHwNOM3SJiLhhbytRcaoEe3jPoMlBRPBxztE3IVQHfI,1002
|
219
220
|
arthur_client/api_bindings/docs/PatchWorkspace.md,sha256=eE29MZcSAT7B-uaqTI0G5J7AWAifqSxAgtOVOd8rVAY,912
|
220
221
|
arthur_client/api_bindings/docs/Permission.md,sha256=EiAeK7f_rgOlGja6RJ4iRtxh9ayDKMWkoU3Pho_GJBo,1070
|
221
|
-
arthur_client/api_bindings/docs/PermissionName.md,sha256=
|
222
|
+
arthur_client/api_bindings/docs/PermissionName.md,sha256=YatoBBH06dmVkO_tYLNu6fjRN_28A_iQXTXfioftwYg,9492
|
222
223
|
arthur_client/api_bindings/docs/PermissionRequestItem.md,sha256=CAxi_zbsM7R9aEEQUOULS4xAnTouK4-bTzD1zu_WDdg,1230
|
223
224
|
arthur_client/api_bindings/docs/PermissionResponseItem.md,sha256=yCRdqfZWrwO7GmmgwCHJmefNTTXWgAVyJhsFI8vUoSE,1332
|
224
225
|
arthur_client/api_bindings/docs/PermissionsRequest.md,sha256=kLsczcoS-LvL3N55hx7mYUkt26Djyo_sI5vymKG7Nco,1119
|
@@ -356,7 +357,7 @@ arthur_client/api_bindings/docs/Workspace.md,sha256=G4pN-rx4iU2-sxOhF-1Fp6QbHYrr
|
|
356
357
|
arthur_client/api_bindings/docs/WorkspaceSort.md,sha256=g2lRzcM9sBnHufImJj3fvRQYgiQRt885iYZc7OkE9Mk,299
|
357
358
|
arthur_client/api_bindings/docs/WorkspacesV1Api.md,sha256=WM4FbbGbsiekeP2VnFE1Em0gT9-rXb45aBoqPTiBDqI,14011
|
358
359
|
arthur_client/api_bindings/exceptions.py,sha256=yy0Uot-WkcM6-PbNo2KDnrKAUL_PFmeCTD2tvq_gFp4,5977
|
359
|
-
arthur_client/api_bindings/models/__init__.py,sha256=
|
360
|
+
arthur_client/api_bindings/models/__init__.py,sha256=FK5M8iaH6OCsLRAHNlsy1NdB0JJUIuFYGkoRRpuLQxA,25343
|
360
361
|
arthur_client/api_bindings/models/aggregation_kind.py,sha256=HS-dSt_0CD9T47N_A6wU0BkR1D57zjE24IkwEJqPQVY,765
|
361
362
|
arthur_client/api_bindings/models/aggregation_metric_type.py,sha256=USKpDqhX4TQ4lqIoHOp3q70mydsf1u_zc1EKus9QhYo,783
|
362
363
|
arthur_client/api_bindings/models/aggregation_spec.py,sha256=-MpHK2VeaKjUlbrYMGe1ZMtrqh5lQwdAnoV-LuzPNUw,4825
|
@@ -508,6 +509,7 @@ arthur_client/api_bindings/models/organization.py,sha256=BQJHXIGcrmcGQrxD4JhIEBl
|
|
508
509
|
arthur_client/api_bindings/models/pagination.py,sha256=XWpYUWgFJIYmtJ3bMOqGlu6ganeK4wUxpZ8mCPC1d1Q,3118
|
509
510
|
arthur_client/api_bindings/models/patch_alert_rule.py,sha256=87iP9nydTCjFiNkWmUHXcJ9GF-eyPg3QbV2t-TZE1pA,5488
|
510
511
|
arthur_client/api_bindings/models/patch_connector_spec.py,sha256=eMGYyqwUlnyEHD0EAgIiW8H0W9aVTHcKy1f0B-pa8QE,3755
|
512
|
+
arthur_client/api_bindings/models/patch_custom_aggregation_spec_schema.py,sha256=u63m3xPPMqXdVUmCwjc7bI3duQvJ3i3VypT7ubB8FtY,3112
|
511
513
|
arthur_client/api_bindings/models/patch_data_plane.py,sha256=mwNIQ4XC6fnyYuUcD3DErp7ymJRqfg67aVH1HHG9AJ8,3773
|
512
514
|
arthur_client/api_bindings/models/patch_data_plane_capabilities.py,sha256=MVLSPbKUO7kDAJpR6HIrso7rJYofeXjGMsq66OtU7Gk,2833
|
513
515
|
arthur_client/api_bindings/models/patch_dataset.py,sha256=h_BpFBRlM36TcS-qxB5a8wkzQOBNw3GJPDt484bl5m4,3920
|
@@ -523,7 +525,7 @@ arthur_client/api_bindings/models/patch_user.py,sha256=Q_RqYiqCFjWsHfTWK0RqpdKpJ
|
|
523
525
|
arthur_client/api_bindings/models/patch_webhook.py,sha256=Nck18gezSVXn3Tsn2FgbmaVWvlajrm_rRY1Lt7XKRtU,3571
|
524
526
|
arthur_client/api_bindings/models/patch_workspace.py,sha256=oX4U-aAgTlCZr5Xor8tyZWBZBll5BwgCeqNXyfC4rAc,2530
|
525
527
|
arthur_client/api_bindings/models/permission.py,sha256=w-7TJQxENx0-ydmU_0ur9cP0WcF4hBqggRKbGSlSM-U,3004
|
526
|
-
arthur_client/api_bindings/models/permission_name.py,sha256=
|
528
|
+
arthur_client/api_bindings/models/permission_name.py,sha256=_KbdS73Q4fNghE87uTKUZJT7aut9YxEvklIQo0FW_DU,8616
|
527
529
|
arthur_client/api_bindings/models/permission_request_item.py,sha256=eDI23WHf9UHR0MO-Zharyz-nF7M37SxYsHB1vkaQzdI,3086
|
528
530
|
arthur_client/api_bindings/models/permission_response_item.py,sha256=kMBj_O-lse6TUPmjHOiBNX8S9cTSuZrzk24a42Nh4RU,3264
|
529
531
|
arthur_client/api_bindings/models/permissions_request.py,sha256=RNtY39w0PapomLkkoHBLgNWGtgvgV8dodjCFmHqq28Q,3312
|
@@ -710,7 +712,7 @@ arthur_client/api_bindings/test/test_credentials.py,sha256=On6gHmoXdPMBHI9LfSjur
|
|
710
712
|
arthur_client/api_bindings/test/test_custom_aggregation_spec_schema.py,sha256=tkUkezHmiLbc4MyNM8v_-5g42DfaZ6axOwIVGQeWWnI,5791
|
711
713
|
arthur_client/api_bindings/test/test_custom_aggregation_version_spec_schema.py,sha256=SbsnhfaeG8W-5BuRP6FAQ2ez7HWMHT7qrzNuO_CB16Q,4578
|
712
714
|
arthur_client/api_bindings/test/test_custom_aggregation_version_spec_schema_aggregate_args_inner.py,sha256=iSSd2eAM62aW_We0ffrSajwtgI5xirnXTlKFgn0QF-w,2557
|
713
|
-
arthur_client/api_bindings/test/test_custom_aggregations_v1_api.py,sha256=
|
715
|
+
arthur_client/api_bindings/test/test_custom_aggregations_v1_api.py,sha256=8tM6bevg-L5gJXGAOgILRZtoR9Uak4FAM52BOMMzaMA,1911
|
714
716
|
arthur_client/api_bindings/test/test_d_type.py,sha256=ggQt2A4GYsNd4PamoDQQqWmTAp3OzCIIIpHPe3M37PE,665
|
715
717
|
arthur_client/api_bindings/test/test_data_plane.py,sha256=bTCu2pfq-bq97YwJlDAGORRgvCBNfs6hL6SMVh_ASrE,2587
|
716
718
|
arthur_client/api_bindings/test/test_data_plane_association.py,sha256=gFQW6Xv_rpX7H0HYAtWICGRcKHRo6CVgx9c8hMXip0g,3321
|
@@ -825,6 +827,7 @@ arthur_client/api_bindings/test/test_organizations_v1_api.py,sha256=TTfSjE5CglzA
|
|
825
827
|
arthur_client/api_bindings/test/test_pagination.py,sha256=BbXHwIKBnD3tjns5RIpbCyChdGAuLkuT8qEfAQQC00g,1521
|
826
828
|
arthur_client/api_bindings/test/test_patch_alert_rule.py,sha256=CpfoJj5bVedgG5uDc1vh_qL-bwCpKW3Ir6yZYGvcVDg,1834
|
827
829
|
arthur_client/api_bindings/test/test_patch_connector_spec.py,sha256=DLdqndTHw0-b9F9OqjVYA4mXpKu5PtEOPbEgSlsregI,1699
|
830
|
+
arthur_client/api_bindings/test/test_patch_custom_aggregation_spec_schema.py,sha256=DttMPtYfwwqOh9mq-dtHxz_ZjKxZ4ioV4CibM_MW1as,1651
|
828
831
|
arthur_client/api_bindings/test/test_patch_data_plane.py,sha256=RYCW6M4lzviZwc6PRQYQfOMiwounQw4p5U6WYK33gTE,1602
|
829
832
|
arthur_client/api_bindings/test/test_patch_data_plane_capabilities.py,sha256=f4HtWziMzOPGwmBFT2peXESjEVOmonUhmzmSa4b2on8,1556
|
830
833
|
arthur_client/api_bindings/test/test_patch_dataset.py,sha256=SWwK00W3heN1IQcO8_fVBvz9zdGB85_5dkCy4J8cLBM,1779
|
@@ -978,13 +981,13 @@ arthur_client/api_bindings/test/test_webhooks_v1_api.py,sha256=7x3pb2tZdXbnSAI-w
|
|
978
981
|
arthur_client/api_bindings/test/test_workspace.py,sha256=hDjh6CQ8oHTVk_X3fb_wKVPp_cY9bQFAGmNh7qMKpIw,1918
|
979
982
|
arthur_client/api_bindings/test/test_workspace_sort.py,sha256=PDxv__jzX9VXu54ExqHJTLHRn9XKwGVwYjZ4OdFBmLk,721
|
980
983
|
arthur_client/api_bindings/test/test_workspaces_v1_api.py,sha256=_EdT96HqIQWQ64Oy11CEP4LqcJhZPB_EYzCYbhceJG0,1345
|
981
|
-
arthur_client/api_bindings_README.md,sha256=
|
984
|
+
arthur_client/api_bindings_README.md,sha256=k6Q54TxBsWOHjha_bHlDXPrUuK8tzd8HQn4FW783HlQ,54592
|
982
985
|
arthur_client/auth/__init__.py,sha256=f4XqpGe9d1V0xlocq2JlNtd8l_GUoUOy6_1yTMCBsc0,210
|
983
986
|
arthur_client/auth/constants.py,sha256=lIEdf1UujvAZhueQ8WZGjd3ErcJlCmrXRxjRhTRNb18,38
|
984
987
|
arthur_client/auth/device_authorizer.py,sha256=bJMIZRjkwQwoSWTLEp7OoXM2MytO3ADSD97Qlc1accA,2598
|
985
988
|
arthur_client/auth/discovery.py,sha256=hR0MglzRWHdwyi72If5hTnjO50fDJhquP_DD7OzjIQQ,1188
|
986
989
|
arthur_client/auth/oauth_api_config.py,sha256=MB-bwm6Qo_USZD_4KVId6d_v5OtLBphwBjMjslVjTlo,1348
|
987
990
|
arthur_client/auth/session.py,sha256=wCriib5ajfm1e1WTL_QXVCJmEOrGwQg_0v91e5qrC6g,2649
|
988
|
-
arthur_client-1.4.
|
989
|
-
arthur_client-1.4.
|
990
|
-
arthur_client-1.4.
|
991
|
+
arthur_client-1.4.1307.dist-info/METADATA,sha256=E05ge1xZNWEl095H3QaHgdqkus44RuRlTg8Ljv4MxTA,1730
|
992
|
+
arthur_client-1.4.1307.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
993
|
+
arthur_client-1.4.1307.dist-info/RECORD,,
|
File without changes
|