arthur-client 1.4.1517__py3-none-any.whl → 1.4.1518__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.
Potentially problematic release.
This version of arthur-client might be problematic. Click here for more details.
- arthur_client/api_bindings/api/custom_aggregations_v1_api.py +17 -0
- arthur_client/api_bindings/docs/CustomAggregationsV1Api.md +4 -2
- {arthur_client-1.4.1517.dist-info → arthur_client-1.4.1518.dist-info}/METADATA +1 -1
- {arthur_client-1.4.1517.dist-info → arthur_client-1.4.1518.dist-info}/RECORD +5 -5
- {arthur_client-1.4.1517.dist-info → arthur_client-1.4.1518.dist-info}/WHEEL +0 -0
|
@@ -624,6 +624,7 @@ class CustomAggregationsV1Api:
|
|
|
624
624
|
workspace_id: StrictStr,
|
|
625
625
|
page: Annotated[Optional[StrictInt], Field(description="The page number to fetch.")] = None,
|
|
626
626
|
page_size: Annotated[Optional[StrictInt], Field(description="The number of items per page.")] = None,
|
|
627
|
+
search: Annotated[Optional[StrictStr], Field(description="Search for custom aggregations by aggregation name or description.")] = None,
|
|
627
628
|
_request_timeout: Union[
|
|
628
629
|
None,
|
|
629
630
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -647,6 +648,8 @@ class CustomAggregationsV1Api:
|
|
|
647
648
|
:type page: int
|
|
648
649
|
:param page_size: The number of items per page.
|
|
649
650
|
:type page_size: int
|
|
651
|
+
:param search: Search for custom aggregations by aggregation name or description.
|
|
652
|
+
:type search: str
|
|
650
653
|
:param _request_timeout: timeout setting for this request. If one
|
|
651
654
|
number provided, it will be total request
|
|
652
655
|
timeout. It can also be a pair (tuple) of
|
|
@@ -673,6 +676,7 @@ class CustomAggregationsV1Api:
|
|
|
673
676
|
workspace_id=workspace_id,
|
|
674
677
|
page=page,
|
|
675
678
|
page_size=page_size,
|
|
679
|
+
search=search,
|
|
676
680
|
_request_auth=_request_auth,
|
|
677
681
|
_content_type=_content_type,
|
|
678
682
|
_headers=_headers,
|
|
@@ -702,6 +706,7 @@ class CustomAggregationsV1Api:
|
|
|
702
706
|
workspace_id: StrictStr,
|
|
703
707
|
page: Annotated[Optional[StrictInt], Field(description="The page number to fetch.")] = None,
|
|
704
708
|
page_size: Annotated[Optional[StrictInt], Field(description="The number of items per page.")] = None,
|
|
709
|
+
search: Annotated[Optional[StrictStr], Field(description="Search for custom aggregations by aggregation name or description.")] = None,
|
|
705
710
|
_request_timeout: Union[
|
|
706
711
|
None,
|
|
707
712
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -725,6 +730,8 @@ class CustomAggregationsV1Api:
|
|
|
725
730
|
:type page: int
|
|
726
731
|
:param page_size: The number of items per page.
|
|
727
732
|
:type page_size: int
|
|
733
|
+
:param search: Search for custom aggregations by aggregation name or description.
|
|
734
|
+
:type search: str
|
|
728
735
|
:param _request_timeout: timeout setting for this request. If one
|
|
729
736
|
number provided, it will be total request
|
|
730
737
|
timeout. It can also be a pair (tuple) of
|
|
@@ -751,6 +758,7 @@ class CustomAggregationsV1Api:
|
|
|
751
758
|
workspace_id=workspace_id,
|
|
752
759
|
page=page,
|
|
753
760
|
page_size=page_size,
|
|
761
|
+
search=search,
|
|
754
762
|
_request_auth=_request_auth,
|
|
755
763
|
_content_type=_content_type,
|
|
756
764
|
_headers=_headers,
|
|
@@ -780,6 +788,7 @@ class CustomAggregationsV1Api:
|
|
|
780
788
|
workspace_id: StrictStr,
|
|
781
789
|
page: Annotated[Optional[StrictInt], Field(description="The page number to fetch.")] = None,
|
|
782
790
|
page_size: Annotated[Optional[StrictInt], Field(description="The number of items per page.")] = None,
|
|
791
|
+
search: Annotated[Optional[StrictStr], Field(description="Search for custom aggregations by aggregation name or description.")] = None,
|
|
783
792
|
_request_timeout: Union[
|
|
784
793
|
None,
|
|
785
794
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -803,6 +812,8 @@ class CustomAggregationsV1Api:
|
|
|
803
812
|
:type page: int
|
|
804
813
|
:param page_size: The number of items per page.
|
|
805
814
|
:type page_size: int
|
|
815
|
+
:param search: Search for custom aggregations by aggregation name or description.
|
|
816
|
+
:type search: str
|
|
806
817
|
:param _request_timeout: timeout setting for this request. If one
|
|
807
818
|
number provided, it will be total request
|
|
808
819
|
timeout. It can also be a pair (tuple) of
|
|
@@ -829,6 +840,7 @@ class CustomAggregationsV1Api:
|
|
|
829
840
|
workspace_id=workspace_id,
|
|
830
841
|
page=page,
|
|
831
842
|
page_size=page_size,
|
|
843
|
+
search=search,
|
|
832
844
|
_request_auth=_request_auth,
|
|
833
845
|
_content_type=_content_type,
|
|
834
846
|
_headers=_headers,
|
|
@@ -853,6 +865,7 @@ class CustomAggregationsV1Api:
|
|
|
853
865
|
workspace_id,
|
|
854
866
|
page,
|
|
855
867
|
page_size,
|
|
868
|
+
search,
|
|
856
869
|
_request_auth,
|
|
857
870
|
_content_type,
|
|
858
871
|
_headers,
|
|
@@ -885,6 +898,10 @@ class CustomAggregationsV1Api:
|
|
|
885
898
|
|
|
886
899
|
_query_params.append(('page_size', page_size))
|
|
887
900
|
|
|
901
|
+
if search is not None:
|
|
902
|
+
|
|
903
|
+
_query_params.append(('search', search))
|
|
904
|
+
|
|
888
905
|
# process the header parameters
|
|
889
906
|
# process the form parameters
|
|
890
907
|
# process the body parameter
|
|
@@ -171,7 +171,7 @@ Name | Type | Description | Notes
|
|
|
171
171
|
[[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)
|
|
172
172
|
|
|
173
173
|
# **get_custom_aggregations_for_workspace**
|
|
174
|
-
> ResourceListCustomAggregationSpecSchema get_custom_aggregations_for_workspace(workspace_id, page=page, page_size=page_size)
|
|
174
|
+
> ResourceListCustomAggregationSpecSchema get_custom_aggregations_for_workspace(workspace_id, page=page, page_size=page_size, search=search)
|
|
175
175
|
|
|
176
176
|
Get Custom Aggregation.
|
|
177
177
|
|
|
@@ -207,10 +207,11 @@ with arthur_client.api_bindings.ApiClient(configuration) as api_client:
|
|
|
207
207
|
workspace_id = 'workspace_id_example' # str |
|
|
208
208
|
page = 1 # int | The page number to fetch. (optional) (default to 1)
|
|
209
209
|
page_size = 10 # int | The number of items per page. (optional) (default to 10)
|
|
210
|
+
search = 'search_example' # str | Search for custom aggregations by aggregation name or description. (optional)
|
|
210
211
|
|
|
211
212
|
try:
|
|
212
213
|
# Get Custom Aggregation.
|
|
213
|
-
api_response = api_instance.get_custom_aggregations_for_workspace(workspace_id, page=page, page_size=page_size)
|
|
214
|
+
api_response = api_instance.get_custom_aggregations_for_workspace(workspace_id, page=page, page_size=page_size, search=search)
|
|
214
215
|
print("The response of CustomAggregationsV1Api->get_custom_aggregations_for_workspace:\n")
|
|
215
216
|
pprint(api_response)
|
|
216
217
|
except Exception as e:
|
|
@@ -227,6 +228,7 @@ Name | Type | Description | Notes
|
|
|
227
228
|
**workspace_id** | **str**| |
|
|
228
229
|
**page** | **int**| The page number to fetch. | [optional] [default to 1]
|
|
229
230
|
**page_size** | **int**| The number of items per page. | [optional] [default to 10]
|
|
231
|
+
**search** | **str**| Search for custom aggregations by aggregation name or description. | [optional]
|
|
230
232
|
|
|
231
233
|
### Return type
|
|
232
234
|
|
|
@@ -7,7 +7,7 @@ arthur_client/api_bindings/api/alerts_v1_api.py,sha256=RVP4gZUK70I7rn2B9xSeN3CRJ
|
|
|
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=7wRWXQLJFqM593ryTGXwIE7NsC5yCflfoY2-9KKMOZ8,87416
|
|
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=cd-t0xFaf2u7Mxj33p8FMTHCAOq3Q3u9GbPeALKFno4,22451
|
|
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
|
|
@@ -988,6 +988,6 @@ arthur_client/auth/device_authorizer.py,sha256=gVUYQA7F--lSorrW7lYibWK5Pnhuygh1V
|
|
|
988
988
|
arthur_client/auth/discovery.py,sha256=M-ZJGVxn14lC3eZ6KVifTU6fiFLnq4kenVhp0pFZsnM,1274
|
|
989
989
|
arthur_client/auth/oauth_api_config.py,sha256=K4UiyWm3ioBkARouNaXS5Iy8dI3YgkvSfORe-nyeKug,1418
|
|
990
990
|
arthur_client/auth/session.py,sha256=b8AXauCkGn4H-gFzP8Y3cCIwuxGuygLQNB4tGi1Y8-4,2730
|
|
991
|
-
arthur_client-1.4.
|
|
992
|
-
arthur_client-1.4.
|
|
993
|
-
arthur_client-1.4.
|
|
991
|
+
arthur_client-1.4.1518.dist-info/METADATA,sha256=LXigC1zW196SommMOR1QBwOKMDxzjmbI6qJG2EkXHBc,1730
|
|
992
|
+
arthur_client-1.4.1518.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
993
|
+
arthur_client-1.4.1518.dist-info/RECORD,,
|
|
File without changes
|