-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdata_streaming.yaml
1073 lines (980 loc) · 30.6 KB
/
data_streaming.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.3
info:
title: Data Streaming - OpenAPI
description: |
The Data Streaming API allows you to manage your existing data streamings and templates.
Data Streaming allows you to feed your stream processing, SIEM, and big data platforms with the event logs from your applications on Azion in real time.
license:
name: MIT
url: https://github.com/aziontech/azionapi-openapi/blob/main/LICENSE.md
version: 1.0.0
externalDocs:
description: See the documentation of Data Streaming for more information.
url: https://www.azion.com/en/documentation/products/data-streaming/
servers:
- description: Production
url: https://api.azionapi.net
security:
- tokenAuth: []
tags:
- name: Data Streaming
paths:
/data_streaming/streamings:
get:
tags:
- Data Streaming
summary: List all exist data streamings
description: Use the GET method to list all data streamings, both active and inactive, and its properties.
operationId: ListDataStreamings
responses:
'200':
description: Successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/DataStreamingResponseWithResults'
'400':
description: Bad Request
'401':
description: Unauthorized
'403':
description: Forbidden
'404':
description: Not Found
'406':
description: Not Acceptable
'429':
description: Too Many Requests
'500':
description: Internal Server Error
post:
tags:
- Data Streaming
summary: Create a new data streaming
description: Create a new data streaming.
operationId: CreateNewDataStreaming
requestBody:
required: true
content:
application/json:
schema:
oneOf:
- $ref: '#/components/schemas/DataStreamingPostBody'
- $ref: '#/components/schemas/StandardDataStreamingPostBody'
- $ref: '#/components/schemas/CustomDataStreamingPostBody'
responses:
'201':
description: Created successfully
content:
application/json:
schema:
oneOf:
- $ref: '#/components/schemas/CreateDataStreamingResponse'
- $ref: '#/components/schemas/CreateCustomDataStreamingResponse'
'400':
description: Bad Request
'401':
description: Unauthorized
'403':
description: Forbidden
'404':
description: Not Found
'406':
description: Not Acceptable
'429':
description: Too Many Requests
'500':
description: Internal Server Error
/data_streaming/domains:
get:
tags:
- Data Streaming Domain
summary: List all domains used on data streaming
description: Use the GET method to list all available domains that can be used on Data Streaming operations.
operationId: ListDataStreaming
parameters:
- in: query
name: name
description: Domain's name in data streaming
required: false
schema:
type: string
- in: query
name: streaming_id
required: false
schema:
format: int64
type: integer
- in: query
name: selected
required: false
schema:
type: boolean
responses:
'200':
description: Successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/DataStreamingsDomainResponse'
'400':
description: Bad Request
'401':
description: Unauthorized
'403':
description: Forbidden
'404':
description: Not Found
'406':
description: Not Acceptable
'429':
description: Too Many Requests
'500':
description: Internal Server Error
/data_streaming/streamings/{data_streaming_id}:
get:
tags:
- Data Streaming
summary: Get expecific data streaming by Data Streaming ID
description: Use the GET method and add the data streaming's ID to the URI of the request to get more data on a specific data streaming.
operationId: ListDataStreamingById
parameters:
- in: path
required: true
name: data_streaming_id
schema:
type: integer
responses:
'200':
description: Successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/DataStreamingsById'
'400':
description: Bad Request
'401':
description: Unauthorized
'403':
description: Forbidden
'404':
description: Not Found
'406':
description: Not Acceptable
'429':
description: Too Many Requests
'500':
description: Internal Server Error
put:
tags:
- Data Streaming
summary: Overwrite data streaming
description: |
Use the PUT method to overwrite the data streaming. Although you can change a single property using the PUT method, you must pass all fields for the request to be completed.
operationId: OverwriteDataStreamingById
parameters:
- in: path
required: true
name: data_streaming_id
schema:
type: integer
requestBody:
required: true
content:
application/json:
schema:
oneOf:
- $ref: '#/components/schemas/DataStreamingPostBody'
- $ref: '#/components/schemas/StandardDataStreamingPostBody'
- $ref: '#/components/schemas/CustomDataStreamingPostBody'
responses:
'200':
description: Successful operation
content:
application/json:
schema:
oneOf:
- $ref: '#/components/schemas/CreateDataStreamingResponse'
- $ref: '#/components/schemas/CreateCustomDataStreamingResponse'
'400':
description: Bad Request
'401':
description: Unauthorized
'403':
description: Forbidden
'404':
description: Not Found
'406':
description: Not Acceptable
'409':
description: Conflict
'429':
description: Too Many Requests
'500':
description: Internal Server Error
patch:
tags:
- Data Streaming
summary: Edit data streaming
description: |
Use the PATCH method to change only select settings of your data streaming.
operationId: EditDataStreamingById
parameters:
- in: path
required: true
name: data_streaming_id
schema:
type: integer
requestBody:
required: true
content:
application/json:
schema:
oneOf:
- $ref: '#/components/schemas/DataStreamingPostBody'
- $ref: '#/components/schemas/StandardDataStreamingPostBody'
- $ref: '#/components/schemas/CustomDataStreamingPostBody'
responses:
'200':
description: Successful operation
content:
application/json:
schema:
oneOf:
- $ref: '#/components/schemas/CreateDataStreamingResponse'
- $ref: '#/components/schemas/CreateCustomDataStreamingResponse'
'400':
description: Bad Request
'401':
description: Unauthorized
'403':
description: Forbidden
'404':
description: Not Found
'406':
description: Not Acceptable
'429':
description: Too Many Requests
'500':
description: Internal Server Error
delete:
tags:
- Data Streaming
summary: Delete data streaming
description: |
Use the DELETE method to remove a data streaming from your account.
operationId: DeleteDataStreamingById
parameters:
- in: path
required: true
name: data_streaming_id
schema:
type: integer
responses:
'204':
description: Successful operation
'400':
description: Bad Request
'401':
description: Unauthorized
'403':
description: Forbidden
'404':
description: Not Found
'406':
description: Not Acceptable
'429':
description: Too Many Requests
'500':
description: Internal Server Error
/data_streaming/templates:
get:
tags:
- Data Streaming Templates
summary: List all global Templates that can be used on Data Streaming operations
description: |
Use the GET method to list all global templates that can be used on Data Streaming operations.
**Note:** Customized templates won't be listed.
operationId: ListDataStreamingTemplates
responses:
'200':
description: Successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/TemplateResults'
'400':
description: Bad Request
'401':
description: Unauthorized
'403':
description: Forbidden
'404':
description: Not Found
'406':
description: Not Acceptable
'429':
description: Too Many Requests
'500':
description: Internal Server Error
/data_streaming/templates/{template_id}:
get:
tags:
- Data Streaming Templates
summary: Get an global Template info by template ID
description: Use the GET method and add the data streaming's ID to the URI of the request to get more data on a specific data streaming global template.
operationId: GetDataStramingTemplateById
parameters:
- in: path
required: true
name: template_id
schema:
type: integer
responses:
'200':
description: Successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/TemplateResultById'
'400':
description: Bad Request
'401':
description: Unauthorized
'403':
description: Forbidden
'404':
description: Not Found
'429':
description: Too Many Requests
'500':
description: Internal Server Error
components:
schemas:
DataStreamingPostBody:
type: object
properties:
name:
type: string
template_id:
type: integer
enum:
- 2
- 4
- 86
- 184
- 251
description: >
Options:
* `2` - Edge Applications Event Collector
* `4` - WAF Event Collector
* `86` - Edge Functions Event Collector
* `184` - Edge Applications + WAF Event Collector
* `251` - Activity History Collector
data_source:
type: string
nullable: true
enum: ["http", "waf", "cells_console", "rtm_activity"]
description: >
Options:
* `http` - Edge Applications (default)
* `waf` - WAF Events
* `cells_console` - Edge Functions
* `rtm_activity` - Activity History
active:
type: boolean
nullable: true
default: true
endpoint:
type: string
format: json
description: >
Options' examples:
- `Standard HTTP/HTTPS POST` - { "endpoint_type": "standard", "url": "http://example.com", "log_line_separator": "\n", "payload_format": "$dataset", "max_size": 1000024 }
- `Apache Kafka` - { "endpoint_type": "kafka", "kafka_topic": "example_topic", "bootstrap_servers": "kafka-server.com:9092,kafka-server-2.com:9092", "use_tls":true }
- `Simple Storage Service (S3)` - { "endpoint_type": "s3", "access_key": "MYACCESSKEY", "region": "us-east-1", "object_key_prefix": "my_prefix_", "bucket_name": "bucket_example", "content_type": "plain/text", "host_url": "http://aws-host.com", "secret_key": "MYSECRETKEY" }
- `Google BigQuery` - { "endpoint_type": "big_query", "dataset_id": "my_dataset", "project_id": "my_project", "table_id": "my_table", "service_account_key": "{ "service_account_key": "key_content" }" }
- `Elasticsearch` - { “endpoint_type”: "elasticsearch", “url”: “http://elasticsearch.com”, “api_key”: “XYZ_API_KEY” }
- `AWS Kinesis Data Firehose` - { "endpoint_type": "aws_kinesis_firehose", "access_key": "MYACCESSKEY", "stream_name": "my_stream_name", "region": "us-east-1", "secret_key": "MYSECRETKEY" }
- `Datadog` - { "endpoint_type": "datadog", "url": "https://http-intake.logs.datadoghq.com/v1/input", "api_key": "MYAPIKEY" }
- `IBM QRadar` - { "endpoint_type": "qradar", "url": "http://137.15.824.10:14440” }
- `Azure Monitor` - { "endpoint_type": "azure_monitor", "log_type": "myLogType", "shared_key": "mysharedkey", "time_generated_field": "timeGeneratedField", "workspace_id": "anfhw-123sd-466gcs"}
- `Azure Blob Storage` - { "endpoint_type": "azure_blob_storage", "storage_account": "mystorageaccount", "container_name": "log_container", "blob_sas_token": "fd56e23e1f12efe" }
- `Splunk` - { "endpoint_type": "splunk", "url": "https://inputs.splunk-client.splunkcloud.com:1337/services/collector", "api_key": "MYAPIKEY" }
domains_ids:
type: array
items:
type: integer
minItems: 1
description: >
Note:
* Field not used with the rtm_activity data source.
# OpenAPI 3.0 does not support parameter dependencies and mutually exclusive parameters.
# Link: https://stackoverflow.com/questions/63209596/how-to-indicate-that-a-parameter-is-conditionally-required-when-another-paramete/63213464#63213464
all_domains:
type: boolean
nullable: true
default: false
description: >
Note:
* Field not used with the rtm_activity data source.
# OpenAPI 3.0 does not support parameter dependencies and mutually exclusive parameters.
# Link: https://stackoverflow.com/questions/63209596/how-to-indicate-that-a-parameter-is-conditionally-required-when-another-paramete/63213464#63213464
sampling_percentage:
type: integer
nullable: true
minimum: 0
maximum: 100
description: >
Note:
* `Range` - From 0 to 100.
* `To use:` [Contact the sales team](https://www.azion.com/en/contact-sales/) to activate this feature in your account.
additionalProperties: false
StandardDataStreamingPostBody:
type: object
properties:
name:
type: string
template_id:
type: integer
enum:
- 2
- 4
- 86
- 184
- 251
description: >
Options:
* `2` - Edge Applications Event Collector
* `4` - WAF Event Collector
* `86` - Edge Functions Event Collector
* `184` - Edge Applications + WAF Event Collector
* `251` - Activity History Collector
data_source:
type: string
nullable: true
enum: ["http", "waf", "cells_console", "rtm_activity"]
description: >
Options:
* `http` - Edge Applications (default)
* `waf` - WAF Events
* `cells_console` - Edge Functions
* `rtm_activity` - Activity History
active:
type: boolean
nullable: true
default: true
endpoint:
$ref: '#/components/schemas/DataStreamingEndpointTypeStandard'
domains_ids:
type: array
items:
type: integer
minItems: 1
description: >
Note:
* Field not used with the rtm_activity data source.
all_domains:
type: boolean
nullable: true
default: false
description: >
Note:
* Field not used with the rtm_activity data source.
additionalProperties: false
CustomDataStreamingPostBody:
type: object
properties:
name:
type: string
data_source:
type: string
nullable: true
enum: ["http", "waf", "cells_console", "rtm_activity"]
description: >
Options:
* `http` - Edge Applications (default)
* `waf` - WAF Events
* `cells_console` - Edge Functions
* `rtm_activity` - Activity History
template_model:
type: string
description: >
Note:
* Add all variables and values that will be used to stream according to the data source you choose to use.
* All data streaming [variables can be found on the reference documentation](https://www.azion.com/en/documentation/products/data-streaming/#selecting-data-sources).
active:
type: boolean
nullable: true
default: true
additionalProperties: false
CreateDataStreamingResponse:
type: object
properties:
results:
type: array
items:
$ref: '#/components/schemas/PostDataStreamingResponse'
schema_version:
type: number
CreateCustomDataStreamingResponse:
type: object
properties:
results:
type: array
items:
$ref: '#/components/schemas/PostCustomDataStreamingResponse'
schema_version:
type: number
PostDataStreamingResponse:
type: object
properties:
id:
type: integer
name:
type: string
template_id:
type: integer
enum:
- 2
- 4
- 86
- 184
- 251
description: >
Options:
* `2` - Edge Applications Event Collector
* `4` - WAF Event Collector
* `86` - Edge Functions Event Collector
* `184` - Edge Applications + WAF Event Collector
* `251` - Activity History Collector
data_source:
type: string
enum: ["http", "waf", "cells_console", "rtm_activity"]
description: >
Options:
* `http` - Edge Applications
* `waf` - WAF Events
* `cells_console` - Edge Functions
* `rtm_activity` - Activity History
active:
type: boolean
endpoint:
type: array
items:
oneOf:
- $ref: '#/components/schemas/Endpoint_Default'
- $ref: '#/components/schemas/Endpoint_Kafka'
- $ref: '#/components/schemas/Endpoinrt_S3'
- $ref: '#/components/schemas/Endpoint_Google_BigQuery'
- $ref: '#/components/schemas/Endpoint_Elasticsearch'
- $ref: '#/components/schemas/Endpoint_AWS_Kinesis_Firehose'
- $ref: '#/components/schemas/Endpoint_Datadog'
- $ref: '#/components/schemas/Endpoint_IBM_QRadar'
- $ref: '#/components/schemas/Endpoint_Azure_Monitor'
- $ref: '#/components/schemas/Endpoint_Azure_Blob_Storage'
- $ref: '#/components/schemas/Endpoint_Splunk'
all_domains:
type: boolean
nullable: true
description: >
Note:
* Field not used with the rtm_activity data source.
# OpenAPI 3.0 does not support parameter dependencies and mutually exclusive parameters.
# Link: https://stackoverflow.com/questions/63209596/how-to-indicate-that-a-parameter-is-conditionally-required-when-another-paramete/63213464#63213464
PostCustomDataStreamingResponse:
type: object
properties:
id:
type: integer
name:
type: string
data_source:
type: string
enum: ["http", "waf", "cells_console", "rtm_activity"]
description: >
Options:
* `http` - Edge Applications
* `waf` - WAF Events
* `cells_console` - Edge Functions
* `rtm_activity` - Activity History
template_model:
type: string
description: >
Note:
* Add all variables and values that will be used to stream according to the data source you choose to use.
example: >
"{\"custom_template_field\":\"$custom_value\", \"status\":\"$status\"}"
active:
type: boolean
endpoint:
type: string
format: json
all_domains:
type: boolean
nullable: true
description: >
Note:
* Field not used with the rtm_activity data source.
Endpoint_Default:
type: object
properties:
endpoint_type:
type: string
example: "standard"
url:
type: string
format: uri
log_line_separator:
type: string
payload_format:
type: string
max_size:
type: integer
headers:
type: array
items:
type: object
additionalProperties:
type: string
example:
additional_header: additional_header_value
maximum: 5
Endpoint_Kafka:
type: object
properties:
endpoint_type:
type: string
example: "kafka"
kafka_topic:
type: string
bootstrap_servers:
type: string
use_tls:
type: boolean
Endpoinrt_S3:
type: object
properties:
endpoint_type:
type: string
example: "s3"
access_key:
type: string
region:
type: string
object_key_prefix:
type: string
bucket_name:
type: string
content_type:
type: string
host_url:
type: string
format: uri
secret_key:
type: string
Endpoint_Google_BigQuery:
type: object
properties:
endpoint_type:
type: string
example: "big_query"
dataset_id:
type: string
project_id:
type: string
table_id:
type: string
service_account_key:
type: object
properties:
service_account_key:
type: string
Endpoint_Elasticsearch:
type: object
properties:
endpoint_type:
type: string
example: "elasticsearch"
url:
type: string
format: uri
api_key:
format: string
Endpoint_AWS_Kinesis_Firehose:
type: object
properties:
endpoint_type:
type: string
example: "aws_kinesis_firehose"
access_key:
type: string
stream_name:
type: string
region:
type: string
secret_key:
type: string
Endpoint_Datadog:
type: object
properties:
endpoint_type:
type: string
example: "datadog"
url:
type: string
format: uri
api_key:
format: string
Endpoint_IBM_QRadar:
type: object
properties:
endpoint_type:
type: string
example: "qradar"
url:
type: string
format: uri
Endpoint_Azure_Monitor:
type: object
properties:
endpoint_type:
type: string
example: "azure_monitor"
log_type:
type: string
shared_key:
type: string
time_generated_field:
type: string
workspace_id:
type: string
pattern: '[a-zA-Z0-9]{5}-[a-zA-Z0-9]{5}-[a-zA-Z0-9]{6}'
Endpoint_Azure_Blob_Storage:
type: object
properties:
endpoint_type:
type: string
example: "azure_blob_storage"
storage_account:
type: string
container_name:
type: string
blob_sas_token:
type: string
pattern: '[a-zA-Z0-9]{15}'
Endpoint_Splunk:
type: object
properties:
endpoint_type:
type: string
example: "splunk"
url:
type: string
format: uri
api_key:
type: string
DataStreamingResponseWithResults:
type: object
properties:
results:
type: array
items:
anyOf:
- $ref: '#/components/schemas/DataStreamingResponseGetResultTypeDatadogDTS'
- $ref: '#/components/schemas/DataStreamingResponseGetResultTypeKafka'
- $ref: '#/components/schemas/DataStreamingResponseGetResultTypeStandard'
- $ref: '#/components/schemas/DataStreamingResponseGetResultTypeCustom'
schema_version:
type: number
DataStreamingResponseGetResultTypeDatadogDTS:
type: object
properties:
id:
type: integer
name:
type: string
template_id:
type: integer
data_source:
type: string
active:
type: boolean
endpoint:
$ref: '#/components/schemas/DataStreamingEndpointTypeDatadogDTS'
all_domains:
type: boolean
DataStreamingEndpointTypeDatadogDTS:
type: object
properties:
endpoint_type:
type: string
url:
type: string
format: uri
api_key:
type: string
DataStreamingResponseGetResultTypeKafka:
type: object
properties:
id:
type: integer
name:
type: string
template_id:
type: integer
data_source:
type: string
active:
type: boolean
endpoint:
$ref: '#/components/schemas/DataStreamingEndpointTypeKafka'
all_domains:
type: boolean
DataStreamingEndpointTypeKafka:
type: object
properties:
endpoint_type:
type: string
use_tls:
type: boolean
kafka_topic:
type: string
bootstrap_servers:
type: string
DataStreamingResponseGetResultTypeStandard:
type: object
properties:
id:
type: integer
name:
type: string
template_id:
type: integer
data_source:
type: string
active:
type: boolean
endpoint:
$ref: '#/components/schemas/DataStreamingEndpointTypeStandard'
all_domains:
type: boolean
DataStreamingEndpointTypeStandard:
type: object
properties:
endpoint_type:
type: string
url:
type: string
format: uri
log_line_separator:
type: string
payload_format:
type: string
max_size:
type: integer
headers:
$ref: '#/components/schemas/DataStreamingEndpointTypeStandardHeadersExample'
DataStreamingEndpointTypeStandardHeadersExample:
type: object
properties:
header-name-1:
type: string
nullable: true
header-name-2:
type: string
nullable: true
header-name-3:
type: string
nullable: true
DataStreamingResponseGetResultTypeCustom:
type: object
properties:
id:
type: integer
name:
type: string
data_source:
type: string
active:
type: boolean
endpoint:
$ref: '#/components/schemas/DataStreamingEndpointTypeKafka'
all_domains:
type: boolean
template_model:
type: string
DataStreamingsDomainResponse:
type: object
properties:
count:
type: integer
total_pages:
type: integer
schema_version:
type: number
links:
$ref: '#/components/schemas/DataStreamingsDomainResponseLinks'