This repository was archived by the owner on Mar 9, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.yaml
More file actions
964 lines (961 loc) · 35 KB
/
Copy pathapi.yaml
File metadata and controls
964 lines (961 loc) · 35 KB
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
openapi: "3.0.1"
info:
title: "Ambar OpenAPI Specification"
version: "2025-05-05"
description: "Details about communicating with Ambar.cloud public endpoints. Supported HTTP rest endpoints and their \
\ request and response details."
contact:
name: "Open API Spec"
url: "https://github.com/ambarltd/ambar-openapi-spec"
email: "contact@ambar.cloud"
# List of available endpoints.
servers:
- url: "https://euw1.api.ambar.cloud"
description: "Ambar regional API endpoint for eu-west-1."
- url: "https://apse5.api.ambar.cloud"
description: "Ambar regional API endpoint for ap-southeast-5."
# Detailed descriptions of the HTTP paths and Verbs of Ambar endpoints.
paths:
/resource:
get:
tags:
- Ambar
operationId: "ListResources"
summary: "List the Ambar resources in your Ambar environment."
description: "List the Ambar resources in your Ambar environment. Resources will be returned \
\ in a list of lists, where each sub-list will be of one Ambar resourceType."
externalDocs:
description: "More details available in Ambar public docs."
url: "https://docs.ambar.cloud"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/ListResourcesRequest"
required: false
responses:
200:
description: "A list of Ambar resources in your environment, broken down by resourceType"
content:
application/json:
schema:
$ref: "#/components/schemas/ListResourcesResponse"
400:
description: "The request cannot be process at this time."
content:
application/json:
schema:
$ref: "#/components/schemas/InvalidParameterException"
500:
description: "A service exception occurred. Retry the request again later."
content:
application/json:
schema:
$ref: "#/components/schemas/AmbarServiceException"
security:
- api_key: []
/filter:
get:
tags:
- Ambar
operationId: "DescribeFilter"
summary: "Describes a Filter in your Ambar environment."
description: "Describe a Filter in your Ambar environment to see detailed information about the resource not given by the \
\ ListResources API."
externalDocs:
description: "More details available in Ambar public docs."
url: "https://docs.ambar.cloud"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/DescribeResourceRequest"
required: true
responses:
200:
description: "Details about the requested Ambar Filter resource."
content:
application/json:
schema:
$ref: "#/components/schemas/Filter"
404:
description: "The requested resource does not exist, or is not an Ambar Filter."
content:
application/json:
schema:
$ref: "#/components/schemas/ResourceNotFoundException"
500:
description: "A service exception occurred. Retry the request again later."
content:
application/json:
schema:
$ref: "#/components/schemas/AmbarServiceException"
security:
- api_key: []
post:
tags:
- Ambar
operationId: "CreateFilter"
summary: "Create a Filter in your Ambar environment."
description: "Create a Filter in your Ambar environment, specifying the DataSources from which record sequences should\
\ be read and what predicates should be applied. Then create a DataDestination with the Filter to send filtered sequences\
\ using the Filter."
externalDocs:
description: "More details available in Ambar public docs."
url: "https://docs.ambar.cloud"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/CreateFilterRequest"
required: true
responses:
200:
description: "The requested resource's id and state after the request."
content:
application/json:
schema:
$ref: "#/components/schemas/ResourceStateChangeResponse"
400:
description: "The request cannot be process at this time."
content:
application/json:
schema:
oneOf:
- $ref: "#/components/schemas/InvalidParameterException"
- $ref: "#/components/schemas/ResourceInvalidStateException"
- $ref: "#/components/schemas/InvalidFilterException"
404:
description: "The requested resource does not exist, or is not an Ambar Filter."
content:
application/json:
schema:
$ref: "#/components/schemas/ResourceNotFoundException"
500:
description: "A service exception occurred. Retry the request again later."
content:
application/json:
schema:
$ref: "#/components/schemas/AmbarServiceException"
security:
- api_key: []
delete:
tags:
- Ambar
operationId: "DeleteFilter"
summary: "Delete a Filter in your Ambar environment."
description: "Deletes a Filter in your Ambar environment, ensure that the filter is no longer being used by any\
\ DataDestinations in your environment first in order to ensure no issues with your Ambar environment."
externalDocs:
description: "More details available in Ambar public docs."
url: "https://docs.ambar.cloud"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/DeleteResourceRequest"
required: true
responses:
200:
description: "The requested resource's id and state after the request."
content:
application/json:
schema:
$ref: "#/components/schemas/ResourceStateChangeResponse"
400:
description: "The request cannot be processed as is. Check the request for errors and try again."
content:
application/json:
schema:
oneOf:
- $ref: "#/components/schemas/InvalidParameterException"
- $ref: "#/components/schemas/ResourceInvalidStateException"
404:
description: "The requested resource does not exist, or is not an Ambar Filter."
content:
application/json:
schema:
$ref: "#/components/schemas/ResourceNotFoundException"
500:
description: "A service exception occurred. Retry the request again later."
content:
application/json:
schema:
$ref: "#/components/schemas/AmbarServiceException"
security:
- api_key: []
/destination:
get:
tags:
- Ambar
operationId: "DescribeDataDestination"
summary: "Describe a DataDestination in your Ambar environment."
description: "Describe a DataDestination in your Ambar environment and see non-sensitive details about the configuration\
\ of the DataDestination"
externalDocs:
description: "More details available in Ambar public docs."
url: "https://docs.ambar.cloud"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/DescribeResourceRequest"
required: true
responses:
200:
description: "200 response"
content:
application/json:
schema:
$ref: "#/components/schemas/DataDestination"
404:
description: "The requested resource does not exist, or is not an Ambar Filter."
content:
application/json:
schema:
$ref: "#/components/schemas/ResourceNotFoundException"
500:
description: "A service exception occurred. Retry the request again later."
content:
application/json:
schema:
$ref: "#/components/schemas/AmbarServiceException"
security:
- api_key: []
post:
tags:
- Ambar
operationId: "CreateDataDestination"
summary: "Create a DataDestination in your Ambar environment."
description: "Create a DataDestination in you Ambar environment, specifying the Filter which the DataDestination should apply\
\ before sending message sequences to the specified HTTP endpoint."
externalDocs:
description: "More details available in Ambar public docs."
url: "https://docs.ambar.cloud"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/CreateDataDestinationRequest"
required: true
responses:
200:
description: "The requested resource's id and state after the request."
content:
application/json:
schema:
$ref: "#/components/schemas/ResourceStateChangeResponse"
400:
description: "The request cannot be processed as is. Check the request for errors and try again."
content:
application/json:
schema:
$ref: "#/components/schemas/InvalidParameterException"
404:
description: "The requested resource does not exist, or is not an Ambar DataDestination."
content:
application/json:
schema:
$ref: "#/components/schemas/ResourceNotFoundException"
500:
description: "A service exception occurred. Retry the request again later."
content:
application/json:
schema:
$ref: "#/components/schemas/AmbarServiceException"
security:
- api_key: []
patch:
tags:
- Ambar
operationId: "UpdateDataDestinationCredentials"
summary: "Update the credentials associated with a DataDestination in your Ambar environment."
description: "Update a DataDestination in you Ambar environment, specifying the username and password credential pair\
to authenticate to the specified HTTP endpoint."
externalDocs:
description: "More details available in Ambar public docs."
url: "https://docs.ambar.cloud"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/UpdateResourceCredentialsRequest"
required: true
responses:
200:
description: "The requested resource's id and state after the request."
content:
application/json:
schema:
$ref: "#/components/schemas/ResourceStateChangeResponse"
400:
description: "The request cannot be processed as is. Check the request for errors and try again."
content:
application/json:
schema:
$ref: "#/components/schemas/InvalidParameterException"
404:
description: "The requested resource does not exist, or is not an Ambar DataDestination."
content:
application/json:
schema:
$ref: "#/components/schemas/ResourceNotFoundException"
500:
description: "A service exception occurred. Retry the request again later."
content:
application/json:
schema:
$ref: "#/components/schemas/AmbarServiceException"
security:
- api_key: [ ]
put:
tags:
- Ambar
operationId: "UpdateDataDestination"
summary: "Updates a DataDestination in your Ambar environment."
description: "Update a DataDestination in you Ambar environment, specifying values in the request which you would like \
\ to be applied to your DataDestination."
externalDocs:
description: "More details available in Ambar public docs."
url: "https://docs.ambar.cloud"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/UpdateDataDestinationRequest"
required: true
responses:
200:
description: "The requested resource's id and state after the request."
content:
application/json:
schema:
$ref: "#/components/schemas/ResourceStateChangeResponse"
400:
description: "The request cannot be processed as is. Check the request for errors and try again."
content:
application/json:
schema:
oneOf:
- $ref: "#/components/schemas/InvalidParameterException"
- $ref: "#/components/schemas/ResourceInvalidStateException"
404:
description: "The requested resource does not exist, or is not an Ambar DataDestination."
content:
application/json:
schema:
$ref: "#/components/schemas/ResourceNotFoundException"
500:
description: "A service exception occurred. Retry the request again later."
content:
application/json:
schema:
$ref: "#/components/schemas/AmbarServiceException"
security:
- api_key: [ ]
delete:
tags:
- Ambar
operationId: "DeleteDataDestination"
summary: "Delete a DataDestination in your Ambar environment."
description: "Delete a DataDestination in your Ambar environment. This should be done first before deleting any Filters\
\ referenced by the DataDestination, or DataSources referenced in that Filter."
externalDocs:
description: "More details available in Ambar public docs."
url: "https://docs.ambar.cloud"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/DeleteResourceRequest"
required: true
responses:
200:
description: "The requested resource's id and state after the request."
content:
application/json:
schema:
$ref: "#/components/schemas/ResourceStateChangeResponse"
400:
description: "The request cannot be processed as is. Check the request for errors and try again."
content:
application/json:
schema:
oneOf:
- $ref: "#/components/schemas/InvalidParameterException"
- $ref: "#/components/schemas/ResourceInvalidStateException"
404:
description: "The requested resource does not exist, or is not an Ambar Filter."
content:
application/json:
schema:
$ref: "#/components/schemas/ResourceNotFoundException"
500:
description: "A service exception occurred. Retry the request again later."
content:
application/json:
schema:
$ref: "#/components/schemas/AmbarServiceException"
security:
- api_key: []
/source:
get:
tags:
- Ambar
operationId: "DescribeDataSource"
summary: "Describe a DataSource in your Ambar environment."
description: "Describe a DataSource in your Ambar environment to see detailed information about the resource not given by the \
\ ListResources API."
externalDocs:
description: "More details available in Ambar public docs."
url: "https://docs.ambar.cloud"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/DescribeResourceRequest"
required: true
responses:
200:
description: "200 response"
content:
application/json:
schema:
$ref: "#/components/schemas/DataSource"
404:
description: "The requested resource does not exist, or is not an Ambar DataSource."
content:
application/json:
schema:
$ref: "#/components/schemas/ResourceNotFoundException"
500:
description: "A service exception occurred. Retry the request again later."
content:
application/json:
schema:
$ref: "#/components/schemas/AmbarServiceException"
security:
- api_key: []
post:
tags:
- Ambar
operationId: "CreateDataSource"
summary: "Create a DataSource in your Ambar environment."
description: "Create a DataSource in you Ambar environment, specifying the type of durable storage from which Ambar\
will read from, and the corresponding configuration values like table name, and columns to include in message sequences."
externalDocs:
description: "More details available in Ambar public docs."
url: "https://docs.ambar.cloud"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/CreateDataSourceRequest"
required: true
responses:
200:
description: "The requested resource's id and state after the request."
content:
application/json:
schema:
$ref: "#/components/schemas/ResourceStateChangeResponse"
400:
description: "The request cannot be processed as is. Check the request for errors and try again."
content:
application/json:
schema:
$ref: "#/components/schemas/InvalidParameterException"
500:
description: "A service exception occurred. Retry the request again later."
content:
application/json:
schema:
$ref: "#/components/schemas/AmbarServiceException"
security:
- api_key: []
patch:
tags:
- Ambar
operationId: "UpdateDataSourceCredentials"
summary: "Update the credentials associated with a DataSource in your Ambar environment."
description: "Update a DataSource in you Ambar environment, specifying the username and password credential pair\
to authenticate to your DataSource's storage."
externalDocs:
description: "More details available in Ambar public docs."
url: "https://docs.ambar.cloud"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/UpdateResourceCredentialsRequest"
required: true
responses:
200:
description: "The requested resource's id and state after the request."
content:
application/json:
schema:
$ref: "#/components/schemas/ResourceStateChangeResponse"
400:
description: "The request cannot be processed as is. Check the request for errors and try again."
content:
application/json:
schema:
$ref: "#/components/schemas/InvalidParameterException"
404:
description: "The requested resource does not exist, or is not an Ambar DataSource."
content:
application/json:
schema:
$ref: "#/components/schemas/ResourceNotFoundException"
500:
description: "A service exception occurred. Retry the request again later."
content:
application/json:
schema:
$ref: "#/components/schemas/AmbarServiceException"
security:
- api_key: [ ]
put:
tags:
- Ambar
operationId: "UpdateDataSource"
summary: "Updates a DataSource in your Ambar environment."
description: "Update a DataSource in you Ambar environment, specifying values in the request which you would like \
\ to be applied to your DataSource."
externalDocs:
description: "More details available in Ambar public docs."
url: "https://docs.ambar.cloud"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/UpdateDataSourceRequest"
required: true
responses:
200:
description: "The requested resource's id and state after the request."
content:
application/json:
schema:
$ref: "#/components/schemas/ResourceStateChangeResponse"
400:
description: "The request cannot be processed as is. Check the request for errors and try again."
content:
application/json:
schema:
oneOf:
- $ref: "#/components/schemas/InvalidParameterException"
- $ref: "#/components/schemas/ResourceInvalidStateException"
404:
description: "The requested resource does not exist, or is not an Ambar DataSource."
content:
application/json:
schema:
$ref: "#/components/schemas/ResourceNotFoundException"
500:
description: "A service exception occurred. Retry the request again later."
content:
application/json:
schema:
$ref: "#/components/schemas/AmbarServiceException"
security:
- api_key: [ ]
delete:
tags:
- Ambar
operationId: "DeleteDataSource"
summary: "Delete a DataSource in your Ambar environment."
description: "Delete a DataSource in your Ambar environment, purging all data from the environment which was read from\
the DataSource. Make sure to ensure that the DataSource is not referenced in any Filters in your Ambar environment."
externalDocs:
description: "More details available in Ambar public docs."
url: "https://docs.ambar.cloud"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/DeleteResourceRequest"
required: true
responses:
200:
description: "The requested resource's id and state after the request."
content:
application/json:
schema:
$ref: "#/components/schemas/ResourceStateChangeResponse"
400:
description: "The request cannot be processed as is. Check the request for errors and try again."
content:
application/json:
schema:
oneOf:
- $ref: "#/components/schemas/InvalidParameterException"
- $ref: "#/components/schemas/ResourceInvalidStateException"
404:
description: "The requested resource does not exist, or is not an Ambar Filter."
content:
application/json:
schema:
$ref: "#/components/schemas/ResourceNotFoundException"
500:
description: "A service exception occurred. Retry the request again later."
content:
application/json:
schema:
$ref: "#/components/schemas/AmbarServiceException"
security:
- api_key: []
components:
schemas:
ListResourcesResponse:
type: "object"
properties:
nextPage:
type: "integer"
description: "The next page available for listing if there is one."
resources:
type: "array"
items:
$ref: "#/components/schemas/ResourceTypeDetails"
ResourceTypeDetails:
type: "object"
properties:
resourceType:
type: "string"
limit:
type: "object"
properties:
limit:
type: "integer"
used:
type: "integer"
details:
type: "array"
items:
$ref: "#/components/schemas/ResourceDetails"
ResourceDetails:
type: "object"
properties:
resourceId:
type: "string"
description:
type: "string"
state:
type: "string"
createdAt:
type: "string"
lastUpdated:
type: "string"
ResourceStateChangeResponse:
type: "object"
properties:
resourceId:
type: "string"
state:
type: "string"
required:
- "resourceId"
- "state"
DataDestination:
description: "The properties describing an Ambar Data Destination."
type: "object"
properties:
createdAt:
type: "string"
description: "The UTC time at which the DataDestination was created."
destinationEndpoint:
type: "string"
description: "The HTTP endpoint which Ambar sends filtered record sequences\
\ to."
description:
type: "string"
description: "The description of the DataDestination given when it was created."
filterIds:
type: "array"
description: "The Ambar resourceId for the Filters which are applied to record\
\ sequences sent to the configured DataDestination."
items:
type: "string"
resourceId:
type: "string"
description: "The Ambar resourceId corresponding to this DataDestination."
state:
type: "string"
description: "The ResourceState of this DataDestination. For possible values\
\ see ResourceState in our developer docs."
required:
- "createdAt"
- "destinationEndpoint"
- "filterIds"
- "resourceId"
- "state"
Filter:
description: "The properties describing an Ambar Filter."
type: "object"
properties:
createdAt:
type: "string"
description: "The UTC time at which the Filter was created."
dataDestinationsUsingFilter:
type: "array"
description: "The list of DataDestination ResourceIds which use this Filter."
items:
type: "string"
dataSourceId:
type: "string"
description: "The DataSource ResourceId which this Filter will\
\ read from."
resourceId:
type: "string"
description: "The Ambar resourceId corresponding to this Filter."
description:
type: "string"
description: "The description of the Filter given when it was created."
filterContents:
type: "string"
description: "The contents of the Filter in Ambar filter DSL."
state:
type: "string"
description: "The ResourceState of this Filter. For possible values see\
\ ResourceState in our developer docs."
required:
- "createdAt"
- "dataDestinationsUsingFilter"
- "dataSourceId"
- "resourceId"
- "filterContents"
- "state"
DataSource:
description: "The properties describing an Ambar Data Source."
type: "object"
properties:
createdAt:
type: "string"
description: "The UTC time at which the DataSource was created."
dataSourceConfig:
type: "object"
description: "The properties describing the configuration details for the\
\ given DataSourceType."
dataSourceType:
type: "string"
description: "The DataSourceType describing the type of durable storage\
\ system this DataSource pulls record sequences from."
resourceId:
type: "string"
description: "The Ambar resourceId corresponding to this DataSource."
state:
type: "string"
description: "The ResourceState of this DataSource. For possible values\
\ see ResourceState in our developer docs."
description:
type: "string"
description: "A user friendly description of this DataSource."
filterIds:
type: "array"
items:
type: "string"
description: ""
description: "The Ambar ResourceIds of filters which refer to this DataSource."
required:
- "createdAt"
- "dataSourceConfig"
- "dataSourceType"
- "resourceId"
- "state"
- "filterIds"
ListResourcesRequest:
type: "object"
properties:
resourceType:
type: "string"
description: ""
page:
type: "string"
description: ""
CreateDataDestinationRequest:
required:
- "destinationEndpoint"
- "filterIds"
- "password"
- "username"
type: "object"
properties:
destinationEndpoint:
type: "string"
description: "The HTTP endpoint which Ambar will deliver messages too. The\
\ endpoint should accept a username and password credential pair for authentication."
description:
type: "string"
description: "A description for identifying this DataDestination."
filterIds:
type: "array"
items:
type: "string"
description: ""
description: "The Ambar ResourceId of a the filter in your environment to\
\ use to determine what data sources to pull records from and how to filter\
\ record sequences before delivery to your endpoint."
password:
type: "string"
description: "A case sensitive string for the user Ambar should use to connect\
\ to your HTTP endpoint service."
username:
type: "string"
description: "A case sensitive string for the user Ambar should use to connect\
\ to your HTTP endpoint service."
description: "The request properties for creating an Ambar Data Destination."
UpdateDataDestinationRequest:
required:
- "resourceId"
type: "object"
properties:
filterIds:
type: "array"
items:
type: "string"
description: ""
description: "The Ambar ResourceId of a the filter in your environment to\
\ use to determine what data sources to pull records from and how to filter\
\ record sequences before delivery to your endpoint."
destinationEndpoint:
type: "string"
description: "The HTTP endpoint which Ambar will deliver messages too. The\
\ endpoint should accept a username and password credential pair for authentication."
resourceId:
type: "string"
description: "An Ambar resourceId."
description: "The resource properties to update on the Ambar Data Destination."
UpdateResourceCredentialsRequest:
required:
- "resourceId"
- "username"
- "password"
type: "object"
properties:
resourceId:
type: "string"
description: "An Ambar resourceId."
password:
type: "string"
description: "The password portion of the credential to update for your resource."
username:
type: "string"
description: "The username portion of the credential to update for your resource."
description: "The common request for updating credentials of an Ambar resource."
DescribeResourceRequest:
required:
- "resourceId"
type: "object"
properties:
resourceId:
type: "string"
description: "An Ambar resourceId."
description: "The common request for describing an Ambar resource."
CreateDataSourceRequest:
description: "The request properties for creating an Ambar Data Source."
required:
- "dataSourceConfig"
- "dataSourceType"
type: "object"
properties:
dataSourceType:
type: "string"
description: "A case-insensitive string value describing the type of durable\
\ storage system you wish to connect to your Ambar environment. See supported\
\ DataSourceTypes in our developer docs for more details on valid values."
description:
type: "string"
description: "A description for identifying this DataSource."
dataSourceConfig:
type: "object"
additionalProperties:
type: string
description: "A object containing inputs which are specific depending on\
\ the type of DataSource being created. See out developer docs for supported\
\ DataSourceTypes and corresponding configurations."
UpdateDataSourceRequest:
description: "The request properties for updating an Ambar Data Source."
required:
- "resourceId"
type: "object"
properties:
resourceId:
type: "string"
description: "An Ambar resourceId."
example: "AMBAR-1fG45k7090"
hostname:
type: string
description: "The hostname of the database which the DataSource connects to."
port:
type: string
description: "The port on which the database host is listening for incoming connections."
tlsTerminationOverrideHost:
type: string
description: "The hostname of an alternative host handling TLS termination."
CreateFilterRequest:
required:
- "filterContents"
- "dataSourceId"
type: "object"
properties:
filterContents:
type: "string"
description: "A base64 encoded Ambar Filter. For details about Ambar filter syntax, see our developer docs."
dataSourceId:
type: "string"
description: "The Resource Id of a DataSource resource, which this filter should be applied to by a DataDestination."
description:
type: "string"
description: "A description for identifying this Filter."
description: "The request properties for creating an Ambar Filter."
DeleteResourceRequest:
required:
- "resourceId"
type: "object"
properties:
resourceId:
type: "string"
description: "An Ambar resourceId."
example: "AMBAR-1fG45k7090"
description: "The common request for deleting an Ambar resource."
InvalidFilterException:
required:
- "InvalidFilterException"
type: "object"
properties:
InvalidFilterException:
type: "string"
InvalidParameterException:
required:
- "InvalidParameterException"
type: "object"
properties:
InvalidParameterException:
type: "string"
ResourceInvalidStateException:
required:
- "ResourceInvalidStateException"
type: "object"
properties:
ResourceInvalidStateException:
type: "string"
ResourceNotFoundException:
required:
- "ResourceNotFoundException"
type: "object"
properties:
ResourceNotFoundException:
type: "string"
AmbarServiceException:
required:
- "AmbarServiceException"
type: "object"
properties:
AmbarServiceException:
type: "string"
securitySchemes:
api_key:
type: "apiKey"
name: "x-api-key"
in: "header"