cribl-control-plane 0.0.14__py3-none-any.whl → 0.0.16__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 cribl-control-plane might be problematic. Click here for more details.
- cribl_control_plane/_version.py +3 -3
- cribl_control_plane/{outputs.py → destinations.py} +69 -71
- cribl_control_plane/models/__init__.py +5329 -8
- cribl_control_plane/models/createinputop.py +19253 -2
- cribl_control_plane/models/createoutputop.py +20578 -4
- cribl_control_plane/models/createoutputtestbyidop.py +2 -2
- cribl_control_plane/models/createpipelineop.py +24 -0
- cribl_control_plane/models/deleteoutputbyidop.py +2 -2
- cribl_control_plane/models/deleteoutputpqbyidop.py +2 -2
- cribl_control_plane/models/deletepipelinebyidop.py +37 -0
- cribl_control_plane/models/getoutputbyidop.py +2 -2
- cribl_control_plane/models/getoutputpqbyidop.py +2 -2
- cribl_control_plane/models/getoutputsamplesbyidop.py +2 -2
- cribl_control_plane/models/getpipelinebyidop.py +37 -0
- cribl_control_plane/models/inputconfluentcloud.py +5 -3
- cribl_control_plane/models/inputcriblhttp.py +5 -3
- cribl_control_plane/models/inputcribllakehttp.py +5 -3
- cribl_control_plane/models/inputcribltcp.py +5 -3
- cribl_control_plane/models/inputdatadogagent.py +5 -3
- cribl_control_plane/models/inputedgeprometheus.py +5 -3
- cribl_control_plane/models/inputelastic.py +5 -3
- cribl_control_plane/models/inputeventhub.py +5 -3
- cribl_control_plane/models/inputfirehose.py +5 -3
- cribl_control_plane/models/inputgooglepubsub.py +5 -3
- cribl_control_plane/models/inputgrafana_union.py +10 -6
- cribl_control_plane/models/inputhttp.py +5 -3
- cribl_control_plane/models/inputhttpraw.py +5 -3
- cribl_control_plane/models/inputjournalfiles.py +5 -3
- cribl_control_plane/models/inputkafka.py +5 -3
- cribl_control_plane/models/inputkinesis.py +5 -3
- cribl_control_plane/models/inputloki.py +5 -3
- cribl_control_plane/models/inputmodeldriventelemetry.py +6 -5
- cribl_control_plane/models/inputmsk.py +5 -3
- cribl_control_plane/models/inputnetflow.py +5 -3
- cribl_control_plane/models/inputoffice365mgmt.py +5 -3
- cribl_control_plane/models/inputoffice365msgtrace.py +5 -5
- cribl_control_plane/models/inputoffice365service.py +5 -5
- cribl_control_plane/models/inputopentelemetry.py +5 -3
- cribl_control_plane/models/inputprometheus.py +5 -3
- cribl_control_plane/models/inputprometheusrw.py +5 -3
- cribl_control_plane/models/inputrawudp.py +5 -3
- cribl_control_plane/models/inputsnmp.py +5 -3
- cribl_control_plane/models/inputsplunk.py +5 -3
- cribl_control_plane/models/inputsplunkhec.py +5 -3
- cribl_control_plane/models/inputsplunksearch.py +5 -3
- cribl_control_plane/models/inputsqs.py +5 -3
- cribl_control_plane/models/inputtcp.py +5 -3
- cribl_control_plane/models/inputtcpjson.py +5 -3
- cribl_control_plane/models/inputwef.py +5 -3
- cribl_control_plane/models/inputwiz.py +5 -3
- cribl_control_plane/models/inputzscalerhec.py +5 -3
- cribl_control_plane/models/listoutputop.py +2 -2
- cribl_control_plane/models/listpipelineop.py +24 -0
- cribl_control_plane/models/pipeline.py +70 -0
- cribl_control_plane/models/pipelinefunctionconf.py +53 -0
- cribl_control_plane/models/routes.py +6 -6
- cribl_control_plane/models/updateoutputbyidop.py +4 -4
- cribl_control_plane/models/updatepipelinebyidop.py +47 -0
- cribl_control_plane/pipelines.py +903 -0
- cribl_control_plane/routes_sdk.py +8 -4
- cribl_control_plane/sdk.py +7 -5
- cribl_control_plane/sources.py +8 -10
- {cribl_control_plane-0.0.14.dist-info → cribl_control_plane-0.0.16.dist-info}/METADATA +20 -12
- {cribl_control_plane-0.0.14.dist-info → cribl_control_plane-0.0.16.dist-info}/RECORD +65 -57
- {cribl_control_plane-0.0.14.dist-info → cribl_control_plane-0.0.16.dist-info}/WHEEL +0 -0
cribl_control_plane/_version.py
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
import importlib.metadata
|
|
4
4
|
|
|
5
5
|
__title__: str = "cribl-control-plane"
|
|
6
|
-
__version__: str = "0.0.
|
|
7
|
-
__openapi_doc_version__: str = "4.14.0-alpha.
|
|
6
|
+
__version__: str = "0.0.16"
|
|
7
|
+
__openapi_doc_version__: str = "4.14.0-alpha.1753455755620-93e72132"
|
|
8
8
|
__gen_version__: str = "2.660.0"
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.0.
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.0.16 2.660.0 4.14.0-alpha.1753455755620-93e72132 cribl-control-plane"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
|
@@ -9,10 +9,8 @@ from cribl_control_plane.utils.unmarshal_json_response import unmarshal_json_res
|
|
|
9
9
|
from typing import Any, List, Mapping, Optional, Union, cast
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
class
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
def list_output(
|
|
12
|
+
class Destinations(BaseSDK):
|
|
13
|
+
def list_destination(
|
|
16
14
|
self,
|
|
17
15
|
*,
|
|
18
16
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
@@ -20,9 +18,9 @@ class Outputs(BaseSDK):
|
|
|
20
18
|
timeout_ms: Optional[int] = None,
|
|
21
19
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
22
20
|
) -> models.ListOutputResponse:
|
|
23
|
-
r"""Get a list of
|
|
21
|
+
r"""Get a list of Destination objects
|
|
24
22
|
|
|
25
|
-
Get a list of
|
|
23
|
+
Get a list of Destination objects
|
|
26
24
|
|
|
27
25
|
:param retries: Override the default retry configuration for this method
|
|
28
26
|
:param server_url: Override the default server URL for this method
|
|
@@ -92,7 +90,7 @@ class Outputs(BaseSDK):
|
|
|
92
90
|
|
|
93
91
|
raise errors.APIError("Unexpected response received", http_res)
|
|
94
92
|
|
|
95
|
-
async def
|
|
93
|
+
async def list_destination_async(
|
|
96
94
|
self,
|
|
97
95
|
*,
|
|
98
96
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
@@ -100,9 +98,9 @@ class Outputs(BaseSDK):
|
|
|
100
98
|
timeout_ms: Optional[int] = None,
|
|
101
99
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
102
100
|
) -> models.ListOutputResponse:
|
|
103
|
-
r"""Get a list of
|
|
101
|
+
r"""Get a list of Destination objects
|
|
104
102
|
|
|
105
|
-
Get a list of
|
|
103
|
+
Get a list of Destination objects
|
|
106
104
|
|
|
107
105
|
:param retries: Override the default retry configuration for this method
|
|
108
106
|
:param server_url: Override the default server URL for this method
|
|
@@ -172,18 +170,18 @@ class Outputs(BaseSDK):
|
|
|
172
170
|
|
|
173
171
|
raise errors.APIError("Unexpected response received", http_res)
|
|
174
172
|
|
|
175
|
-
def
|
|
173
|
+
def create_destination(
|
|
176
174
|
self,
|
|
177
175
|
*,
|
|
178
|
-
request: Union[models.
|
|
176
|
+
request: Union[models.CreateOutputRequest, models.CreateOutputRequestTypedDict],
|
|
179
177
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
180
178
|
server_url: Optional[str] = None,
|
|
181
179
|
timeout_ms: Optional[int] = None,
|
|
182
180
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
183
181
|
) -> models.CreateOutputResponse:
|
|
184
|
-
r"""Create
|
|
182
|
+
r"""Create Destination
|
|
185
183
|
|
|
186
|
-
Create
|
|
184
|
+
Create Destination
|
|
187
185
|
|
|
188
186
|
:param request: The request object to send.
|
|
189
187
|
:param retries: Override the default retry configuration for this method
|
|
@@ -202,8 +200,8 @@ class Outputs(BaseSDK):
|
|
|
202
200
|
base_url = self._get_url(base_url, url_variables)
|
|
203
201
|
|
|
204
202
|
if not isinstance(request, BaseModel):
|
|
205
|
-
request = utils.unmarshal(request, models.
|
|
206
|
-
request = cast(models.
|
|
203
|
+
request = utils.unmarshal(request, models.CreateOutputRequest)
|
|
204
|
+
request = cast(models.CreateOutputRequest, request)
|
|
207
205
|
|
|
208
206
|
req = self._build_request(
|
|
209
207
|
method="POST",
|
|
@@ -219,7 +217,7 @@ class Outputs(BaseSDK):
|
|
|
219
217
|
http_headers=http_headers,
|
|
220
218
|
security=self.sdk_configuration.security,
|
|
221
219
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
222
|
-
request, False, False, "json", models.
|
|
220
|
+
request, False, False, "json", models.CreateOutputRequest
|
|
223
221
|
),
|
|
224
222
|
timeout_ms=timeout_ms,
|
|
225
223
|
)
|
|
@@ -262,18 +260,18 @@ class Outputs(BaseSDK):
|
|
|
262
260
|
|
|
263
261
|
raise errors.APIError("Unexpected response received", http_res)
|
|
264
262
|
|
|
265
|
-
async def
|
|
263
|
+
async def create_destination_async(
|
|
266
264
|
self,
|
|
267
265
|
*,
|
|
268
|
-
request: Union[models.
|
|
266
|
+
request: Union[models.CreateOutputRequest, models.CreateOutputRequestTypedDict],
|
|
269
267
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
270
268
|
server_url: Optional[str] = None,
|
|
271
269
|
timeout_ms: Optional[int] = None,
|
|
272
270
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
273
271
|
) -> models.CreateOutputResponse:
|
|
274
|
-
r"""Create
|
|
272
|
+
r"""Create Destination
|
|
275
273
|
|
|
276
|
-
Create
|
|
274
|
+
Create Destination
|
|
277
275
|
|
|
278
276
|
:param request: The request object to send.
|
|
279
277
|
:param retries: Override the default retry configuration for this method
|
|
@@ -292,8 +290,8 @@ class Outputs(BaseSDK):
|
|
|
292
290
|
base_url = self._get_url(base_url, url_variables)
|
|
293
291
|
|
|
294
292
|
if not isinstance(request, BaseModel):
|
|
295
|
-
request = utils.unmarshal(request, models.
|
|
296
|
-
request = cast(models.
|
|
293
|
+
request = utils.unmarshal(request, models.CreateOutputRequest)
|
|
294
|
+
request = cast(models.CreateOutputRequest, request)
|
|
297
295
|
|
|
298
296
|
req = self._build_request_async(
|
|
299
297
|
method="POST",
|
|
@@ -309,7 +307,7 @@ class Outputs(BaseSDK):
|
|
|
309
307
|
http_headers=http_headers,
|
|
310
308
|
security=self.sdk_configuration.security,
|
|
311
309
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
312
|
-
request, False, False, "json", models.
|
|
310
|
+
request, False, False, "json", models.CreateOutputRequest
|
|
313
311
|
),
|
|
314
312
|
timeout_ms=timeout_ms,
|
|
315
313
|
)
|
|
@@ -352,7 +350,7 @@ class Outputs(BaseSDK):
|
|
|
352
350
|
|
|
353
351
|
raise errors.APIError("Unexpected response received", http_res)
|
|
354
352
|
|
|
355
|
-
def
|
|
353
|
+
def get_destination_by_id(
|
|
356
354
|
self,
|
|
357
355
|
*,
|
|
358
356
|
id: str,
|
|
@@ -361,9 +359,9 @@ class Outputs(BaseSDK):
|
|
|
361
359
|
timeout_ms: Optional[int] = None,
|
|
362
360
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
363
361
|
) -> models.GetOutputByIDResponse:
|
|
364
|
-
r"""Get
|
|
362
|
+
r"""Get Destination by ID
|
|
365
363
|
|
|
366
|
-
Get
|
|
364
|
+
Get Destination by ID
|
|
367
365
|
|
|
368
366
|
:param id: Unique ID to GET
|
|
369
367
|
:param retries: Override the default retry configuration for this method
|
|
@@ -439,7 +437,7 @@ class Outputs(BaseSDK):
|
|
|
439
437
|
|
|
440
438
|
raise errors.APIError("Unexpected response received", http_res)
|
|
441
439
|
|
|
442
|
-
async def
|
|
440
|
+
async def get_destination_by_id_async(
|
|
443
441
|
self,
|
|
444
442
|
*,
|
|
445
443
|
id: str,
|
|
@@ -448,9 +446,9 @@ class Outputs(BaseSDK):
|
|
|
448
446
|
timeout_ms: Optional[int] = None,
|
|
449
447
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
450
448
|
) -> models.GetOutputByIDResponse:
|
|
451
|
-
r"""Get
|
|
449
|
+
r"""Get Destination by ID
|
|
452
450
|
|
|
453
|
-
Get
|
|
451
|
+
Get Destination by ID
|
|
454
452
|
|
|
455
453
|
:param id: Unique ID to GET
|
|
456
454
|
:param retries: Override the default retry configuration for this method
|
|
@@ -526,7 +524,7 @@ class Outputs(BaseSDK):
|
|
|
526
524
|
|
|
527
525
|
raise errors.APIError("Unexpected response received", http_res)
|
|
528
526
|
|
|
529
|
-
def
|
|
527
|
+
def update_destination_by_id(
|
|
530
528
|
self,
|
|
531
529
|
*,
|
|
532
530
|
id: str,
|
|
@@ -536,12 +534,12 @@ class Outputs(BaseSDK):
|
|
|
536
534
|
timeout_ms: Optional[int] = None,
|
|
537
535
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
538
536
|
) -> models.UpdateOutputByIDResponse:
|
|
539
|
-
r"""Update
|
|
537
|
+
r"""Update Destination
|
|
540
538
|
|
|
541
|
-
Update
|
|
539
|
+
Update Destination
|
|
542
540
|
|
|
543
541
|
:param id: Unique ID to PATCH
|
|
544
|
-
:param output:
|
|
542
|
+
:param output: Destination object to be updated
|
|
545
543
|
:param retries: Override the default retry configuration for this method
|
|
546
544
|
:param server_url: Override the default server URL for this method
|
|
547
545
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
@@ -619,7 +617,7 @@ class Outputs(BaseSDK):
|
|
|
619
617
|
|
|
620
618
|
raise errors.APIError("Unexpected response received", http_res)
|
|
621
619
|
|
|
622
|
-
async def
|
|
620
|
+
async def update_destination_by_id_async(
|
|
623
621
|
self,
|
|
624
622
|
*,
|
|
625
623
|
id: str,
|
|
@@ -629,12 +627,12 @@ class Outputs(BaseSDK):
|
|
|
629
627
|
timeout_ms: Optional[int] = None,
|
|
630
628
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
631
629
|
) -> models.UpdateOutputByIDResponse:
|
|
632
|
-
r"""Update
|
|
630
|
+
r"""Update Destination
|
|
633
631
|
|
|
634
|
-
Update
|
|
632
|
+
Update Destination
|
|
635
633
|
|
|
636
634
|
:param id: Unique ID to PATCH
|
|
637
|
-
:param output:
|
|
635
|
+
:param output: Destination object to be updated
|
|
638
636
|
:param retries: Override the default retry configuration for this method
|
|
639
637
|
:param server_url: Override the default server URL for this method
|
|
640
638
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
@@ -712,7 +710,7 @@ class Outputs(BaseSDK):
|
|
|
712
710
|
|
|
713
711
|
raise errors.APIError("Unexpected response received", http_res)
|
|
714
712
|
|
|
715
|
-
def
|
|
713
|
+
def delete_destination_by_id(
|
|
716
714
|
self,
|
|
717
715
|
*,
|
|
718
716
|
id: str,
|
|
@@ -721,9 +719,9 @@ class Outputs(BaseSDK):
|
|
|
721
719
|
timeout_ms: Optional[int] = None,
|
|
722
720
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
723
721
|
) -> models.DeleteOutputByIDResponse:
|
|
724
|
-
r"""Delete
|
|
722
|
+
r"""Delete Destination
|
|
725
723
|
|
|
726
|
-
Delete
|
|
724
|
+
Delete Destination
|
|
727
725
|
|
|
728
726
|
:param id: Unique ID to DELETE
|
|
729
727
|
:param retries: Override the default retry configuration for this method
|
|
@@ -799,7 +797,7 @@ class Outputs(BaseSDK):
|
|
|
799
797
|
|
|
800
798
|
raise errors.APIError("Unexpected response received", http_res)
|
|
801
799
|
|
|
802
|
-
async def
|
|
800
|
+
async def delete_destination_by_id_async(
|
|
803
801
|
self,
|
|
804
802
|
*,
|
|
805
803
|
id: str,
|
|
@@ -808,9 +806,9 @@ class Outputs(BaseSDK):
|
|
|
808
806
|
timeout_ms: Optional[int] = None,
|
|
809
807
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
810
808
|
) -> models.DeleteOutputByIDResponse:
|
|
811
|
-
r"""Delete
|
|
809
|
+
r"""Delete Destination
|
|
812
810
|
|
|
813
|
-
Delete
|
|
811
|
+
Delete Destination
|
|
814
812
|
|
|
815
813
|
:param id: Unique ID to DELETE
|
|
816
814
|
:param retries: Override the default retry configuration for this method
|
|
@@ -886,7 +884,7 @@ class Outputs(BaseSDK):
|
|
|
886
884
|
|
|
887
885
|
raise errors.APIError("Unexpected response received", http_res)
|
|
888
886
|
|
|
889
|
-
def
|
|
887
|
+
def delete_destination_pq_by_id(
|
|
890
888
|
self,
|
|
891
889
|
*,
|
|
892
890
|
id: str,
|
|
@@ -899,7 +897,7 @@ class Outputs(BaseSDK):
|
|
|
899
897
|
|
|
900
898
|
Clears destination persistent queue
|
|
901
899
|
|
|
902
|
-
:param id:
|
|
900
|
+
:param id: Destination Id
|
|
903
901
|
:param retries: Override the default retry configuration for this method
|
|
904
902
|
:param server_url: Override the default server URL for this method
|
|
905
903
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
@@ -973,7 +971,7 @@ class Outputs(BaseSDK):
|
|
|
973
971
|
|
|
974
972
|
raise errors.APIError("Unexpected response received", http_res)
|
|
975
973
|
|
|
976
|
-
async def
|
|
974
|
+
async def delete_destination_pq_by_id_async(
|
|
977
975
|
self,
|
|
978
976
|
*,
|
|
979
977
|
id: str,
|
|
@@ -986,7 +984,7 @@ class Outputs(BaseSDK):
|
|
|
986
984
|
|
|
987
985
|
Clears destination persistent queue
|
|
988
986
|
|
|
989
|
-
:param id:
|
|
987
|
+
:param id: Destination Id
|
|
990
988
|
:param retries: Override the default retry configuration for this method
|
|
991
989
|
:param server_url: Override the default server URL for this method
|
|
992
990
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
@@ -1060,7 +1058,7 @@ class Outputs(BaseSDK):
|
|
|
1060
1058
|
|
|
1061
1059
|
raise errors.APIError("Unexpected response received", http_res)
|
|
1062
1060
|
|
|
1063
|
-
def
|
|
1061
|
+
def get_destination_pq_by_id(
|
|
1064
1062
|
self,
|
|
1065
1063
|
*,
|
|
1066
1064
|
id: str,
|
|
@@ -1069,11 +1067,11 @@ class Outputs(BaseSDK):
|
|
|
1069
1067
|
timeout_ms: Optional[int] = None,
|
|
1070
1068
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
1071
1069
|
) -> models.GetOutputPqByIDResponse:
|
|
1072
|
-
r"""Retrieves status of latest clear PQ job for
|
|
1070
|
+
r"""Retrieves status of latest clear PQ job for a destination
|
|
1073
1071
|
|
|
1074
|
-
Retrieves status of latest clear PQ job for
|
|
1072
|
+
Retrieves status of latest clear PQ job for a destination
|
|
1075
1073
|
|
|
1076
|
-
:param id:
|
|
1074
|
+
:param id: Destination Id
|
|
1077
1075
|
:param retries: Override the default retry configuration for this method
|
|
1078
1076
|
:param server_url: Override the default server URL for this method
|
|
1079
1077
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
@@ -1147,7 +1145,7 @@ class Outputs(BaseSDK):
|
|
|
1147
1145
|
|
|
1148
1146
|
raise errors.APIError("Unexpected response received", http_res)
|
|
1149
1147
|
|
|
1150
|
-
async def
|
|
1148
|
+
async def get_destination_pq_by_id_async(
|
|
1151
1149
|
self,
|
|
1152
1150
|
*,
|
|
1153
1151
|
id: str,
|
|
@@ -1156,11 +1154,11 @@ class Outputs(BaseSDK):
|
|
|
1156
1154
|
timeout_ms: Optional[int] = None,
|
|
1157
1155
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
1158
1156
|
) -> models.GetOutputPqByIDResponse:
|
|
1159
|
-
r"""Retrieves status of latest clear PQ job for
|
|
1157
|
+
r"""Retrieves status of latest clear PQ job for a destination
|
|
1160
1158
|
|
|
1161
|
-
Retrieves status of latest clear PQ job for
|
|
1159
|
+
Retrieves status of latest clear PQ job for a destination
|
|
1162
1160
|
|
|
1163
|
-
:param id:
|
|
1161
|
+
:param id: Destination Id
|
|
1164
1162
|
:param retries: Override the default retry configuration for this method
|
|
1165
1163
|
:param server_url: Override the default server URL for this method
|
|
1166
1164
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
@@ -1234,7 +1232,7 @@ class Outputs(BaseSDK):
|
|
|
1234
1232
|
|
|
1235
1233
|
raise errors.APIError("Unexpected response received", http_res)
|
|
1236
1234
|
|
|
1237
|
-
def
|
|
1235
|
+
def get_destination_samples_by_id(
|
|
1238
1236
|
self,
|
|
1239
1237
|
*,
|
|
1240
1238
|
id: str,
|
|
@@ -1243,11 +1241,11 @@ class Outputs(BaseSDK):
|
|
|
1243
1241
|
timeout_ms: Optional[int] = None,
|
|
1244
1242
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
1245
1243
|
) -> models.GetOutputSamplesByIDResponse:
|
|
1246
|
-
r"""Retrieve samples data for the specified
|
|
1244
|
+
r"""Retrieve samples data for the specified destination. Used to get sample data for the test action.
|
|
1247
1245
|
|
|
1248
|
-
Retrieve samples data for the specified
|
|
1246
|
+
Retrieve samples data for the specified destination. Used to get sample data for the test action.
|
|
1249
1247
|
|
|
1250
|
-
:param id:
|
|
1248
|
+
:param id: Destination Id
|
|
1251
1249
|
:param retries: Override the default retry configuration for this method
|
|
1252
1250
|
:param server_url: Override the default server URL for this method
|
|
1253
1251
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
@@ -1323,7 +1321,7 @@ class Outputs(BaseSDK):
|
|
|
1323
1321
|
|
|
1324
1322
|
raise errors.APIError("Unexpected response received", http_res)
|
|
1325
1323
|
|
|
1326
|
-
async def
|
|
1324
|
+
async def get_destination_samples_by_id_async(
|
|
1327
1325
|
self,
|
|
1328
1326
|
*,
|
|
1329
1327
|
id: str,
|
|
@@ -1332,11 +1330,11 @@ class Outputs(BaseSDK):
|
|
|
1332
1330
|
timeout_ms: Optional[int] = None,
|
|
1333
1331
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
1334
1332
|
) -> models.GetOutputSamplesByIDResponse:
|
|
1335
|
-
r"""Retrieve samples data for the specified
|
|
1333
|
+
r"""Retrieve samples data for the specified destination. Used to get sample data for the test action.
|
|
1336
1334
|
|
|
1337
|
-
Retrieve samples data for the specified
|
|
1335
|
+
Retrieve samples data for the specified destination. Used to get sample data for the test action.
|
|
1338
1336
|
|
|
1339
|
-
:param id:
|
|
1337
|
+
:param id: Destination Id
|
|
1340
1338
|
:param retries: Override the default retry configuration for this method
|
|
1341
1339
|
:param server_url: Override the default server URL for this method
|
|
1342
1340
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
@@ -1412,7 +1410,7 @@ class Outputs(BaseSDK):
|
|
|
1412
1410
|
|
|
1413
1411
|
raise errors.APIError("Unexpected response received", http_res)
|
|
1414
1412
|
|
|
1415
|
-
def
|
|
1413
|
+
def create_destination_test_by_id(
|
|
1416
1414
|
self,
|
|
1417
1415
|
*,
|
|
1418
1416
|
id: str,
|
|
@@ -1422,11 +1420,11 @@ class Outputs(BaseSDK):
|
|
|
1422
1420
|
timeout_ms: Optional[int] = None,
|
|
1423
1421
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
1424
1422
|
) -> models.CreateOutputTestByIDResponse:
|
|
1425
|
-
r"""Send sample data to
|
|
1423
|
+
r"""Send sample data to a destination to validate configuration or test connectivity
|
|
1426
1424
|
|
|
1427
|
-
Send sample data to
|
|
1425
|
+
Send sample data to a destination to validate configuration or test connectivity
|
|
1428
1426
|
|
|
1429
|
-
:param id:
|
|
1427
|
+
:param id: Destination Id
|
|
1430
1428
|
:param events:
|
|
1431
1429
|
:param retries: Override the default retry configuration for this method
|
|
1432
1430
|
:param server_url: Override the default server URL for this method
|
|
@@ -1513,7 +1511,7 @@ class Outputs(BaseSDK):
|
|
|
1513
1511
|
|
|
1514
1512
|
raise errors.APIError("Unexpected response received", http_res)
|
|
1515
1513
|
|
|
1516
|
-
async def
|
|
1514
|
+
async def create_destination_test_by_id_async(
|
|
1517
1515
|
self,
|
|
1518
1516
|
*,
|
|
1519
1517
|
id: str,
|
|
@@ -1523,11 +1521,11 @@ class Outputs(BaseSDK):
|
|
|
1523
1521
|
timeout_ms: Optional[int] = None,
|
|
1524
1522
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
1525
1523
|
) -> models.CreateOutputTestByIDResponse:
|
|
1526
|
-
r"""Send sample data to
|
|
1524
|
+
r"""Send sample data to a destination to validate configuration or test connectivity
|
|
1527
1525
|
|
|
1528
|
-
Send sample data to
|
|
1526
|
+
Send sample data to a destination to validate configuration or test connectivity
|
|
1529
1527
|
|
|
1530
|
-
:param id:
|
|
1528
|
+
:param id: Destination Id
|
|
1531
1529
|
:param events:
|
|
1532
1530
|
:param retries: Override the default retry configuration for this method
|
|
1533
1531
|
:param server_url: Override the default server URL for this method
|