@aws-sdk/client-appflow 3.169.0 → 3.170.0
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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/Appflow.d.ts +400 -115
- package/dist-types/ts3.4/AppflowClient.d.ts +261 -95
- package/dist-types/ts3.4/commands/CreateConnectorProfileCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateFlowCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteConnectorProfileCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteFlowCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeConnectorCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeConnectorEntityCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeConnectorProfilesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeConnectorsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeFlowCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeFlowExecutionRecordsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListConnectorEntitiesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListConnectorsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListFlowsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/RegisterConnectorCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/StartFlowCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/StopFlowCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UnregisterConnectorCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateConnectorProfileCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateFlowCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +22 -22
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/AppflowServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +2745 -2551
- package/dist-types/ts3.4/pagination/DescribeConnectorProfilesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeConnectorsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeFlowExecutionRecordsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListConnectorsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListFlowsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +6 -6
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +269 -68
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,2551 +1,2745 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { AppflowServiceException as __BaseException } from "./AppflowServiceException";
|
|
3
|
-
|
|
4
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
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
|
-
export interface AmplitudeConnectorProfileProperties {
|
|
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
|
-
export
|
|
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
|
-
export interface
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
export interface
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
export interface
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
export interface
|
|
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
|
-
export
|
|
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
|
-
export declare enum
|
|
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
|
-
export declare enum
|
|
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
|
-
export declare enum
|
|
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
|
-
export interface
|
|
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
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
}
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
}
|
|
1035
|
-
|
|
1036
|
-
export interface
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
}
|
|
1125
|
-
|
|
1126
|
-
export interface
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
}
|
|
1145
|
-
|
|
1146
|
-
export interface
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
export interface
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
}
|
|
1293
|
-
|
|
1294
|
-
export
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
export interface
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
}
|
|
1368
|
-
|
|
1369
|
-
export interface
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
}
|
|
1478
|
-
|
|
1479
|
-
export interface
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
export
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
}
|
|
1498
|
-
|
|
1499
|
-
export interface
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
}
|
|
1518
|
-
|
|
1519
|
-
export interface
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
}
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
}
|
|
1713
|
-
export
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
}
|
|
1777
|
-
|
|
1778
|
-
export interface
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
export interface
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
}
|
|
1894
|
-
export interface
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
}
|
|
1906
|
-
export
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
}
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
export interface
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
}
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
}
|
|
1997
|
-
export interface
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
|
|
2059
|
-
|
|
2060
|
-
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
|
|
2066
|
-
|
|
2067
|
-
|
|
2068
|
-
|
|
2069
|
-
|
|
2070
|
-
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
|
|
2074
|
-
|
|
2075
|
-
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
-
|
|
2079
|
-
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
export declare
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2103
|
-
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
export
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
export
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
|
|
2133
|
-
|
|
2134
|
-
|
|
2135
|
-
|
|
2136
|
-
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
|
|
2140
|
-
|
|
2141
|
-
|
|
2142
|
-
|
|
2143
|
-
|
|
2144
|
-
|
|
2145
|
-
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
|
|
2151
|
-
|
|
2152
|
-
|
|
2153
|
-
|
|
2154
|
-
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
|
|
2165
|
-
|
|
2166
|
-
|
|
2167
|
-
|
|
2168
|
-
|
|
2169
|
-
|
|
2170
|
-
|
|
2171
|
-
|
|
2172
|
-
|
|
2173
|
-
|
|
2174
|
-
|
|
2175
|
-
|
|
2176
|
-
|
|
2177
|
-
|
|
2178
|
-
|
|
2179
|
-
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
|
|
2185
|
-
|
|
2186
|
-
|
|
2187
|
-
export declare const
|
|
2188
|
-
|
|
2189
|
-
export declare const
|
|
2190
|
-
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
export declare const
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
export declare const
|
|
2198
|
-
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
export declare const
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
export declare const
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
export declare const
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
|
|
2213
|
-
export declare const
|
|
2214
|
-
|
|
2215
|
-
|
|
2216
|
-
|
|
2217
|
-
export declare const
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
export declare const
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
export declare const
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
export declare const
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
export declare const
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
export declare const
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
export declare const
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
export declare const
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
export declare const
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
export declare const
|
|
2254
|
-
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
export declare const
|
|
2258
|
-
|
|
2259
|
-
|
|
2260
|
-
|
|
2261
|
-
export declare const
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
export declare const
|
|
2266
|
-
|
|
2267
|
-
|
|
2268
|
-
|
|
2269
|
-
export declare const
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
export declare const
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
|
|
2277
|
-
export declare const
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
export declare const
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
export declare const
|
|
2286
|
-
|
|
2287
|
-
|
|
2288
|
-
|
|
2289
|
-
export declare const
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
|
|
2293
|
-
export declare const
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
export declare const
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
export declare const
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
export declare const
|
|
2306
|
-
|
|
2307
|
-
|
|
2308
|
-
|
|
2309
|
-
export declare const
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
export declare const
|
|
2314
|
-
|
|
2315
|
-
|
|
2316
|
-
|
|
2317
|
-
export declare const
|
|
2318
|
-
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
export declare const
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
export declare const
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
export declare const
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
export declare const
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
export declare const
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
export declare const
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
export declare const
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
export declare const
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
export declare const SingularConnectorProfileCredentialsFilterSensitiveLog: (
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
export declare const
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
export declare const
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
export declare const
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
export declare const
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
export declare const
|
|
2374
|
-
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
export declare const
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
export declare const
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
export declare const
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
export declare const
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
export declare const
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
export declare const
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
export declare const
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
export declare const
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
export declare const
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
export declare const
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
export declare const
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
export declare const
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
export declare const
|
|
2426
|
-
|
|
2427
|
-
export declare const
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
export declare const
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
export declare const
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
export declare const
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
export declare const
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
export declare const
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
export declare const
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
export declare const
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
export declare const
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
export declare const
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
export declare const
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
export declare const
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
export declare const
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
export declare const
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
export declare const
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
export declare const
|
|
2488
|
-
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
export declare const
|
|
2492
|
-
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
export declare const
|
|
2496
|
-
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
export declare const
|
|
2500
|
-
|
|
2501
|
-
|
|
2502
|
-
|
|
2503
|
-
export declare const
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
export declare const
|
|
2508
|
-
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
export declare const
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
export declare const
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
|
|
2519
|
-
export declare const
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
export declare const
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
export declare const
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
|
|
2531
|
-
export declare const
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
export declare const
|
|
2536
|
-
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
export declare const
|
|
2540
|
-
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
export declare const
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
export declare const
|
|
2548
|
-
|
|
2549
|
-
export declare const
|
|
2550
|
-
|
|
2551
|
-
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { AppflowServiceException as __BaseException } from "./AppflowServiceException";
|
|
3
|
+
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
|
|
8
|
+
constructor(
|
|
9
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
10
|
+
);
|
|
11
|
+
}
|
|
12
|
+
export declare enum AggregationType {
|
|
13
|
+
NONE = "None",
|
|
14
|
+
SINGLE_FILE = "SingleFile",
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface AggregationConfig {
|
|
18
|
+
aggregationType?: AggregationType | string;
|
|
19
|
+
}
|
|
20
|
+
export declare enum AmplitudeConnectorOperator {
|
|
21
|
+
BETWEEN = "BETWEEN",
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export interface AmplitudeConnectorProfileCredentials {
|
|
25
|
+
apiKey: string | undefined;
|
|
26
|
+
|
|
27
|
+
secretKey: string | undefined;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export interface AmplitudeConnectorProfileProperties {}
|
|
31
|
+
|
|
32
|
+
export interface AmplitudeMetadata {}
|
|
33
|
+
|
|
34
|
+
export interface AmplitudeSourceProperties {
|
|
35
|
+
object: string | undefined;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export interface ApiKeyCredentials {
|
|
39
|
+
apiKey: string | undefined;
|
|
40
|
+
|
|
41
|
+
apiSecretKey?: string;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export interface AuthParameter {
|
|
45
|
+
key?: string;
|
|
46
|
+
|
|
47
|
+
isRequired?: boolean;
|
|
48
|
+
|
|
49
|
+
label?: string;
|
|
50
|
+
|
|
51
|
+
description?: string;
|
|
52
|
+
|
|
53
|
+
isSensitiveField?: boolean;
|
|
54
|
+
|
|
55
|
+
connectorSuppliedValues?: string[];
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export interface CustomAuthConfig {
|
|
59
|
+
customAuthenticationType?: string;
|
|
60
|
+
|
|
61
|
+
authParameters?: AuthParameter[];
|
|
62
|
+
}
|
|
63
|
+
export declare enum OAuth2CustomPropType {
|
|
64
|
+
AUTH_URL = "AUTH_URL",
|
|
65
|
+
TOKEN_URL = "TOKEN_URL",
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export interface OAuth2CustomParameter {
|
|
69
|
+
key?: string;
|
|
70
|
+
|
|
71
|
+
isRequired?: boolean;
|
|
72
|
+
|
|
73
|
+
label?: string;
|
|
74
|
+
|
|
75
|
+
description?: string;
|
|
76
|
+
|
|
77
|
+
isSensitiveField?: boolean;
|
|
78
|
+
|
|
79
|
+
connectorSuppliedValues?: string[];
|
|
80
|
+
|
|
81
|
+
type?: OAuth2CustomPropType | string;
|
|
82
|
+
}
|
|
83
|
+
export declare enum OAuth2GrantType {
|
|
84
|
+
AUTHORIZATION_CODE = "AUTHORIZATION_CODE",
|
|
85
|
+
CLIENT_CREDENTIALS = "CLIENT_CREDENTIALS",
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
export interface OAuth2Defaults {
|
|
89
|
+
oauthScopes?: string[];
|
|
90
|
+
|
|
91
|
+
tokenUrls?: string[];
|
|
92
|
+
|
|
93
|
+
authCodeUrls?: string[];
|
|
94
|
+
|
|
95
|
+
oauth2GrantTypesSupported?: (OAuth2GrantType | string)[];
|
|
96
|
+
|
|
97
|
+
oauth2CustomProperties?: OAuth2CustomParameter[];
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
export interface AuthenticationConfig {
|
|
101
|
+
isBasicAuthSupported?: boolean;
|
|
102
|
+
|
|
103
|
+
isApiKeyAuthSupported?: boolean;
|
|
104
|
+
|
|
105
|
+
isOAuth2Supported?: boolean;
|
|
106
|
+
|
|
107
|
+
isCustomAuthSupported?: boolean;
|
|
108
|
+
|
|
109
|
+
oAuth2Defaults?: OAuth2Defaults;
|
|
110
|
+
|
|
111
|
+
customAuthConfigs?: CustomAuthConfig[];
|
|
112
|
+
}
|
|
113
|
+
export declare enum AuthenticationType {
|
|
114
|
+
APIKEY = "APIKEY",
|
|
115
|
+
BASIC = "BASIC",
|
|
116
|
+
CUSTOM = "CUSTOM",
|
|
117
|
+
OAUTH2 = "OAUTH2",
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
export interface BasicAuthCredentials {
|
|
121
|
+
username: string | undefined;
|
|
122
|
+
|
|
123
|
+
password: string | undefined;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
export declare class ConflictException extends __BaseException {
|
|
127
|
+
readonly name: "ConflictException";
|
|
128
|
+
readonly $fault: "client";
|
|
129
|
+
|
|
130
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
131
|
+
}
|
|
132
|
+
export declare enum ConnectionMode {
|
|
133
|
+
PRIVATE = "Private",
|
|
134
|
+
PUBLIC = "Public",
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
export declare class ConnectorAuthenticationException extends __BaseException {
|
|
138
|
+
readonly name: "ConnectorAuthenticationException";
|
|
139
|
+
readonly $fault: "client";
|
|
140
|
+
|
|
141
|
+
constructor(
|
|
142
|
+
opts: __ExceptionOptionType<
|
|
143
|
+
ConnectorAuthenticationException,
|
|
144
|
+
__BaseException
|
|
145
|
+
>
|
|
146
|
+
);
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
export interface CustomerProfilesMetadata {}
|
|
150
|
+
|
|
151
|
+
export interface DatadogMetadata {}
|
|
152
|
+
|
|
153
|
+
export interface DynatraceMetadata {}
|
|
154
|
+
|
|
155
|
+
export interface EventBridgeMetadata {}
|
|
156
|
+
|
|
157
|
+
export interface GoogleAnalyticsMetadata {
|
|
158
|
+
oAuthScopes?: string[];
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
export interface HoneycodeMetadata {
|
|
162
|
+
oAuthScopes?: string[];
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
export interface InforNexusMetadata {}
|
|
166
|
+
|
|
167
|
+
export interface MarketoMetadata {}
|
|
168
|
+
|
|
169
|
+
export interface RedshiftMetadata {}
|
|
170
|
+
|
|
171
|
+
export interface S3Metadata {}
|
|
172
|
+
|
|
173
|
+
export interface SalesforceMetadata {
|
|
174
|
+
oAuthScopes?: string[];
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
export interface SAPODataMetadata {}
|
|
178
|
+
|
|
179
|
+
export interface ServiceNowMetadata {}
|
|
180
|
+
|
|
181
|
+
export interface SingularMetadata {}
|
|
182
|
+
|
|
183
|
+
export interface SlackMetadata {
|
|
184
|
+
oAuthScopes?: string[];
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
export interface SnowflakeMetadata {
|
|
188
|
+
supportedRegions?: string[];
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
export interface TrendmicroMetadata {}
|
|
192
|
+
|
|
193
|
+
export interface UpsolverMetadata {}
|
|
194
|
+
|
|
195
|
+
export interface VeevaMetadata {}
|
|
196
|
+
|
|
197
|
+
export interface ZendeskMetadata {
|
|
198
|
+
oAuthScopes?: string[];
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
export interface ConnectorMetadata {
|
|
202
|
+
Amplitude?: AmplitudeMetadata;
|
|
203
|
+
|
|
204
|
+
Datadog?: DatadogMetadata;
|
|
205
|
+
|
|
206
|
+
Dynatrace?: DynatraceMetadata;
|
|
207
|
+
|
|
208
|
+
GoogleAnalytics?: GoogleAnalyticsMetadata;
|
|
209
|
+
|
|
210
|
+
InforNexus?: InforNexusMetadata;
|
|
211
|
+
|
|
212
|
+
Marketo?: MarketoMetadata;
|
|
213
|
+
|
|
214
|
+
Redshift?: RedshiftMetadata;
|
|
215
|
+
|
|
216
|
+
S3?: S3Metadata;
|
|
217
|
+
|
|
218
|
+
Salesforce?: SalesforceMetadata;
|
|
219
|
+
|
|
220
|
+
ServiceNow?: ServiceNowMetadata;
|
|
221
|
+
|
|
222
|
+
Singular?: SingularMetadata;
|
|
223
|
+
|
|
224
|
+
Slack?: SlackMetadata;
|
|
225
|
+
|
|
226
|
+
Snowflake?: SnowflakeMetadata;
|
|
227
|
+
|
|
228
|
+
Trendmicro?: TrendmicroMetadata;
|
|
229
|
+
|
|
230
|
+
Veeva?: VeevaMetadata;
|
|
231
|
+
|
|
232
|
+
Zendesk?: ZendeskMetadata;
|
|
233
|
+
|
|
234
|
+
EventBridge?: EventBridgeMetadata;
|
|
235
|
+
|
|
236
|
+
Upsolver?: UpsolverMetadata;
|
|
237
|
+
|
|
238
|
+
CustomerProfiles?: CustomerProfilesMetadata;
|
|
239
|
+
|
|
240
|
+
Honeycode?: HoneycodeMetadata;
|
|
241
|
+
|
|
242
|
+
SAPOData?: SAPODataMetadata;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
export interface LambdaConnectorProvisioningConfig {
|
|
246
|
+
lambdaArn: string | undefined;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
export interface ConnectorProvisioningConfig {
|
|
250
|
+
lambda?: LambdaConnectorProvisioningConfig;
|
|
251
|
+
}
|
|
252
|
+
export declare enum ConnectorProvisioningType {
|
|
253
|
+
LAMBDA = "LAMBDA",
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
export interface ConnectorRuntimeSetting {
|
|
257
|
+
key?: string;
|
|
258
|
+
|
|
259
|
+
dataType?: string;
|
|
260
|
+
|
|
261
|
+
isRequired?: boolean;
|
|
262
|
+
|
|
263
|
+
label?: string;
|
|
264
|
+
|
|
265
|
+
description?: string;
|
|
266
|
+
|
|
267
|
+
scope?: string;
|
|
268
|
+
|
|
269
|
+
connectorSuppliedValueOptions?: string[];
|
|
270
|
+
}
|
|
271
|
+
export declare enum ConnectorType {
|
|
272
|
+
AMPLITUDE = "Amplitude",
|
|
273
|
+
CUSTOMCONNECTOR = "CustomConnector",
|
|
274
|
+
CUSTOMERPROFILES = "CustomerProfiles",
|
|
275
|
+
DATADOG = "Datadog",
|
|
276
|
+
DYNATRACE = "Dynatrace",
|
|
277
|
+
EVENTBRIDGE = "EventBridge",
|
|
278
|
+
GOOGLEANALYTICS = "Googleanalytics",
|
|
279
|
+
HONEYCODE = "Honeycode",
|
|
280
|
+
INFORNEXUS = "Infornexus",
|
|
281
|
+
LOOKOUTMETRICS = "LookoutMetrics",
|
|
282
|
+
MARKETO = "Marketo",
|
|
283
|
+
REDSHIFT = "Redshift",
|
|
284
|
+
S3 = "S3",
|
|
285
|
+
SALESFORCE = "Salesforce",
|
|
286
|
+
SAPODATA = "SAPOData",
|
|
287
|
+
SERVICENOW = "Servicenow",
|
|
288
|
+
SINGULAR = "Singular",
|
|
289
|
+
SLACK = "Slack",
|
|
290
|
+
SNOWFLAKE = "Snowflake",
|
|
291
|
+
TRENDMICRO = "Trendmicro",
|
|
292
|
+
UPSOLVER = "Upsolver",
|
|
293
|
+
VEEVA = "Veeva",
|
|
294
|
+
ZENDESK = "Zendesk",
|
|
295
|
+
}
|
|
296
|
+
export declare enum Operators {
|
|
297
|
+
ADDITION = "ADDITION",
|
|
298
|
+
BETWEEN = "BETWEEN",
|
|
299
|
+
CONTAINS = "CONTAINS",
|
|
300
|
+
DIVISION = "DIVISION",
|
|
301
|
+
EQUAL_TO = "EQUAL_TO",
|
|
302
|
+
GREATER_THAN = "GREATER_THAN",
|
|
303
|
+
GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
|
|
304
|
+
LESS_THAN = "LESS_THAN",
|
|
305
|
+
LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
|
|
306
|
+
MASK_ALL = "MASK_ALL",
|
|
307
|
+
MASK_FIRST_N = "MASK_FIRST_N",
|
|
308
|
+
MASK_LAST_N = "MASK_LAST_N",
|
|
309
|
+
MULTIPLICATION = "MULTIPLICATION",
|
|
310
|
+
NOT_EQUAL_TO = "NOT_EQUAL_TO",
|
|
311
|
+
NO_OP = "NO_OP",
|
|
312
|
+
PROJECTION = "PROJECTION",
|
|
313
|
+
SUBTRACTION = "SUBTRACTION",
|
|
314
|
+
VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
|
|
315
|
+
VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
|
|
316
|
+
VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
|
|
317
|
+
VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
|
|
318
|
+
}
|
|
319
|
+
export declare enum ScheduleFrequencyType {
|
|
320
|
+
BYMINUTE = "BYMINUTE",
|
|
321
|
+
DAILY = "DAILY",
|
|
322
|
+
HOURLY = "HOURLY",
|
|
323
|
+
MONTHLY = "MONTHLY",
|
|
324
|
+
ONCE = "ONCE",
|
|
325
|
+
WEEKLY = "WEEKLY",
|
|
326
|
+
}
|
|
327
|
+
export declare enum TriggerType {
|
|
328
|
+
EVENT = "Event",
|
|
329
|
+
ONDEMAND = "OnDemand",
|
|
330
|
+
SCHEDULED = "Scheduled",
|
|
331
|
+
}
|
|
332
|
+
export declare enum WriteOperationType {
|
|
333
|
+
DELETE = "DELETE",
|
|
334
|
+
INSERT = "INSERT",
|
|
335
|
+
UPDATE = "UPDATE",
|
|
336
|
+
UPSERT = "UPSERT",
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
export interface ConnectorConfiguration {
|
|
340
|
+
canUseAsSource?: boolean;
|
|
341
|
+
|
|
342
|
+
canUseAsDestination?: boolean;
|
|
343
|
+
|
|
344
|
+
supportedDestinationConnectors?: (ConnectorType | string)[];
|
|
345
|
+
|
|
346
|
+
supportedSchedulingFrequencies?: (ScheduleFrequencyType | string)[];
|
|
347
|
+
|
|
348
|
+
isPrivateLinkEnabled?: boolean;
|
|
349
|
+
|
|
350
|
+
isPrivateLinkEndpointUrlRequired?: boolean;
|
|
351
|
+
|
|
352
|
+
supportedTriggerTypes?: (TriggerType | string)[];
|
|
353
|
+
|
|
354
|
+
connectorMetadata?: ConnectorMetadata;
|
|
355
|
+
|
|
356
|
+
connectorType?: ConnectorType | string;
|
|
357
|
+
|
|
358
|
+
connectorLabel?: string;
|
|
359
|
+
|
|
360
|
+
connectorDescription?: string;
|
|
361
|
+
|
|
362
|
+
connectorOwner?: string;
|
|
363
|
+
|
|
364
|
+
connectorName?: string;
|
|
365
|
+
|
|
366
|
+
connectorVersion?: string;
|
|
367
|
+
|
|
368
|
+
connectorArn?: string;
|
|
369
|
+
|
|
370
|
+
connectorModes?: string[];
|
|
371
|
+
|
|
372
|
+
authenticationConfig?: AuthenticationConfig;
|
|
373
|
+
|
|
374
|
+
connectorRuntimeSettings?: ConnectorRuntimeSetting[];
|
|
375
|
+
|
|
376
|
+
supportedApiVersions?: string[];
|
|
377
|
+
|
|
378
|
+
supportedOperators?: (Operators | string)[];
|
|
379
|
+
|
|
380
|
+
supportedWriteOperations?: (WriteOperationType | string)[];
|
|
381
|
+
|
|
382
|
+
connectorProvisioningType?: ConnectorProvisioningType | string;
|
|
383
|
+
|
|
384
|
+
connectorProvisioningConfig?: ConnectorProvisioningConfig;
|
|
385
|
+
|
|
386
|
+
logoURL?: string;
|
|
387
|
+
|
|
388
|
+
registeredAt?: Date;
|
|
389
|
+
|
|
390
|
+
registeredBy?: string;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
export interface ConnectorDetail {
|
|
394
|
+
connectorDescription?: string;
|
|
395
|
+
|
|
396
|
+
connectorName?: string;
|
|
397
|
+
|
|
398
|
+
connectorOwner?: string;
|
|
399
|
+
|
|
400
|
+
connectorVersion?: string;
|
|
401
|
+
|
|
402
|
+
applicationType?: string;
|
|
403
|
+
|
|
404
|
+
connectorType?: ConnectorType | string;
|
|
405
|
+
|
|
406
|
+
connectorLabel?: string;
|
|
407
|
+
|
|
408
|
+
registeredAt?: Date;
|
|
409
|
+
|
|
410
|
+
registeredBy?: string;
|
|
411
|
+
|
|
412
|
+
connectorProvisioningType?: ConnectorProvisioningType | string;
|
|
413
|
+
|
|
414
|
+
connectorModes?: string[];
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
export interface ConnectorEntity {
|
|
418
|
+
name: string | undefined;
|
|
419
|
+
|
|
420
|
+
label?: string;
|
|
421
|
+
|
|
422
|
+
hasNestedEntities?: boolean;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
export interface DestinationFieldProperties {
|
|
426
|
+
isCreatable?: boolean;
|
|
427
|
+
|
|
428
|
+
isNullable?: boolean;
|
|
429
|
+
|
|
430
|
+
isUpsertable?: boolean;
|
|
431
|
+
|
|
432
|
+
isUpdatable?: boolean;
|
|
433
|
+
|
|
434
|
+
isDefaultedOnCreate?: boolean;
|
|
435
|
+
|
|
436
|
+
supportedWriteOperations?: (WriteOperationType | string)[];
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
export interface SourceFieldProperties {
|
|
440
|
+
isRetrievable?: boolean;
|
|
441
|
+
|
|
442
|
+
isQueryable?: boolean;
|
|
443
|
+
|
|
444
|
+
isTimestampFieldForIncrementalQueries?: boolean;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
export interface Range {
|
|
448
|
+
maximum?: number;
|
|
449
|
+
|
|
450
|
+
minimum?: number;
|
|
451
|
+
}
|
|
452
|
+
export declare enum Operator {
|
|
453
|
+
ADDITION = "ADDITION",
|
|
454
|
+
BETWEEN = "BETWEEN",
|
|
455
|
+
CONTAINS = "CONTAINS",
|
|
456
|
+
DIVISION = "DIVISION",
|
|
457
|
+
EQUAL_TO = "EQUAL_TO",
|
|
458
|
+
GREATER_THAN = "GREATER_THAN",
|
|
459
|
+
GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
|
|
460
|
+
LESS_THAN = "LESS_THAN",
|
|
461
|
+
LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
|
|
462
|
+
MASK_ALL = "MASK_ALL",
|
|
463
|
+
MASK_FIRST_N = "MASK_FIRST_N",
|
|
464
|
+
MASK_LAST_N = "MASK_LAST_N",
|
|
465
|
+
MULTIPLICATION = "MULTIPLICATION",
|
|
466
|
+
NOT_EQUAL_TO = "NOT_EQUAL_TO",
|
|
467
|
+
NO_OP = "NO_OP",
|
|
468
|
+
PROJECTION = "PROJECTION",
|
|
469
|
+
SUBTRACTION = "SUBTRACTION",
|
|
470
|
+
VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
|
|
471
|
+
VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
|
|
472
|
+
VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
|
|
473
|
+
VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
export interface FieldTypeDetails {
|
|
477
|
+
fieldType: string | undefined;
|
|
478
|
+
|
|
479
|
+
filterOperators: (Operator | string)[] | undefined;
|
|
480
|
+
|
|
481
|
+
supportedValues?: string[];
|
|
482
|
+
|
|
483
|
+
valueRegexPattern?: string;
|
|
484
|
+
|
|
485
|
+
supportedDateFormat?: string;
|
|
486
|
+
|
|
487
|
+
fieldValueRange?: Range;
|
|
488
|
+
|
|
489
|
+
fieldLengthRange?: Range;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
export interface SupportedFieldTypeDetails {
|
|
493
|
+
v1: FieldTypeDetails | undefined;
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
export interface ConnectorEntityField {
|
|
497
|
+
identifier: string | undefined;
|
|
498
|
+
|
|
499
|
+
parentIdentifier?: string;
|
|
500
|
+
|
|
501
|
+
label?: string;
|
|
502
|
+
|
|
503
|
+
isPrimaryKey?: boolean;
|
|
504
|
+
|
|
505
|
+
defaultValue?: string;
|
|
506
|
+
|
|
507
|
+
isDeprecated?: boolean;
|
|
508
|
+
|
|
509
|
+
supportedFieldTypeDetails?: SupportedFieldTypeDetails;
|
|
510
|
+
|
|
511
|
+
description?: string;
|
|
512
|
+
|
|
513
|
+
sourceProperties?: SourceFieldProperties;
|
|
514
|
+
|
|
515
|
+
destinationProperties?: DestinationFieldProperties;
|
|
516
|
+
|
|
517
|
+
customProperties?: Record<string, string>;
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
export interface ConnectorOAuthRequest {
|
|
521
|
+
authCode?: string;
|
|
522
|
+
|
|
523
|
+
redirectUri?: string;
|
|
524
|
+
}
|
|
525
|
+
export declare enum DatadogConnectorOperator {
|
|
526
|
+
ADDITION = "ADDITION",
|
|
527
|
+
BETWEEN = "BETWEEN",
|
|
528
|
+
DIVISION = "DIVISION",
|
|
529
|
+
EQUAL_TO = "EQUAL_TO",
|
|
530
|
+
MASK_ALL = "MASK_ALL",
|
|
531
|
+
MASK_FIRST_N = "MASK_FIRST_N",
|
|
532
|
+
MASK_LAST_N = "MASK_LAST_N",
|
|
533
|
+
MULTIPLICATION = "MULTIPLICATION",
|
|
534
|
+
NO_OP = "NO_OP",
|
|
535
|
+
PROJECTION = "PROJECTION",
|
|
536
|
+
SUBTRACTION = "SUBTRACTION",
|
|
537
|
+
VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
|
|
538
|
+
VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
|
|
539
|
+
VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
|
|
540
|
+
VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
|
|
541
|
+
}
|
|
542
|
+
export declare enum DynatraceConnectorOperator {
|
|
543
|
+
ADDITION = "ADDITION",
|
|
544
|
+
BETWEEN = "BETWEEN",
|
|
545
|
+
DIVISION = "DIVISION",
|
|
546
|
+
EQUAL_TO = "EQUAL_TO",
|
|
547
|
+
MASK_ALL = "MASK_ALL",
|
|
548
|
+
MASK_FIRST_N = "MASK_FIRST_N",
|
|
549
|
+
MASK_LAST_N = "MASK_LAST_N",
|
|
550
|
+
MULTIPLICATION = "MULTIPLICATION",
|
|
551
|
+
NO_OP = "NO_OP",
|
|
552
|
+
PROJECTION = "PROJECTION",
|
|
553
|
+
SUBTRACTION = "SUBTRACTION",
|
|
554
|
+
VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
|
|
555
|
+
VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
|
|
556
|
+
VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
|
|
557
|
+
VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
|
|
558
|
+
}
|
|
559
|
+
export declare enum GoogleAnalyticsConnectorOperator {
|
|
560
|
+
BETWEEN = "BETWEEN",
|
|
561
|
+
PROJECTION = "PROJECTION",
|
|
562
|
+
}
|
|
563
|
+
export declare enum InforNexusConnectorOperator {
|
|
564
|
+
ADDITION = "ADDITION",
|
|
565
|
+
BETWEEN = "BETWEEN",
|
|
566
|
+
DIVISION = "DIVISION",
|
|
567
|
+
EQUAL_TO = "EQUAL_TO",
|
|
568
|
+
MASK_ALL = "MASK_ALL",
|
|
569
|
+
MASK_FIRST_N = "MASK_FIRST_N",
|
|
570
|
+
MASK_LAST_N = "MASK_LAST_N",
|
|
571
|
+
MULTIPLICATION = "MULTIPLICATION",
|
|
572
|
+
NO_OP = "NO_OP",
|
|
573
|
+
PROJECTION = "PROJECTION",
|
|
574
|
+
SUBTRACTION = "SUBTRACTION",
|
|
575
|
+
VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
|
|
576
|
+
VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
|
|
577
|
+
VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
|
|
578
|
+
VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
|
|
579
|
+
}
|
|
580
|
+
export declare enum MarketoConnectorOperator {
|
|
581
|
+
ADDITION = "ADDITION",
|
|
582
|
+
BETWEEN = "BETWEEN",
|
|
583
|
+
DIVISION = "DIVISION",
|
|
584
|
+
GREATER_THAN = "GREATER_THAN",
|
|
585
|
+
LESS_THAN = "LESS_THAN",
|
|
586
|
+
MASK_ALL = "MASK_ALL",
|
|
587
|
+
MASK_FIRST_N = "MASK_FIRST_N",
|
|
588
|
+
MASK_LAST_N = "MASK_LAST_N",
|
|
589
|
+
MULTIPLICATION = "MULTIPLICATION",
|
|
590
|
+
NO_OP = "NO_OP",
|
|
591
|
+
PROJECTION = "PROJECTION",
|
|
592
|
+
SUBTRACTION = "SUBTRACTION",
|
|
593
|
+
VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
|
|
594
|
+
VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
|
|
595
|
+
VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
|
|
596
|
+
VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
|
|
597
|
+
}
|
|
598
|
+
export declare enum S3ConnectorOperator {
|
|
599
|
+
ADDITION = "ADDITION",
|
|
600
|
+
BETWEEN = "BETWEEN",
|
|
601
|
+
DIVISION = "DIVISION",
|
|
602
|
+
EQUAL_TO = "EQUAL_TO",
|
|
603
|
+
GREATER_THAN = "GREATER_THAN",
|
|
604
|
+
GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
|
|
605
|
+
LESS_THAN = "LESS_THAN",
|
|
606
|
+
LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
|
|
607
|
+
MASK_ALL = "MASK_ALL",
|
|
608
|
+
MASK_FIRST_N = "MASK_FIRST_N",
|
|
609
|
+
MASK_LAST_N = "MASK_LAST_N",
|
|
610
|
+
MULTIPLICATION = "MULTIPLICATION",
|
|
611
|
+
NOT_EQUAL_TO = "NOT_EQUAL_TO",
|
|
612
|
+
NO_OP = "NO_OP",
|
|
613
|
+
PROJECTION = "PROJECTION",
|
|
614
|
+
SUBTRACTION = "SUBTRACTION",
|
|
615
|
+
VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
|
|
616
|
+
VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
|
|
617
|
+
VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
|
|
618
|
+
VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
|
|
619
|
+
}
|
|
620
|
+
export declare enum SalesforceConnectorOperator {
|
|
621
|
+
ADDITION = "ADDITION",
|
|
622
|
+
BETWEEN = "BETWEEN",
|
|
623
|
+
CONTAINS = "CONTAINS",
|
|
624
|
+
DIVISION = "DIVISION",
|
|
625
|
+
EQUAL_TO = "EQUAL_TO",
|
|
626
|
+
GREATER_THAN = "GREATER_THAN",
|
|
627
|
+
GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
|
|
628
|
+
LESS_THAN = "LESS_THAN",
|
|
629
|
+
LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
|
|
630
|
+
MASK_ALL = "MASK_ALL",
|
|
631
|
+
MASK_FIRST_N = "MASK_FIRST_N",
|
|
632
|
+
MASK_LAST_N = "MASK_LAST_N",
|
|
633
|
+
MULTIPLICATION = "MULTIPLICATION",
|
|
634
|
+
NOT_EQUAL_TO = "NOT_EQUAL_TO",
|
|
635
|
+
NO_OP = "NO_OP",
|
|
636
|
+
PROJECTION = "PROJECTION",
|
|
637
|
+
SUBTRACTION = "SUBTRACTION",
|
|
638
|
+
VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
|
|
639
|
+
VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
|
|
640
|
+
VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
|
|
641
|
+
VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
|
|
642
|
+
}
|
|
643
|
+
export declare enum SAPODataConnectorOperator {
|
|
644
|
+
ADDITION = "ADDITION",
|
|
645
|
+
BETWEEN = "BETWEEN",
|
|
646
|
+
CONTAINS = "CONTAINS",
|
|
647
|
+
DIVISION = "DIVISION",
|
|
648
|
+
EQUAL_TO = "EQUAL_TO",
|
|
649
|
+
GREATER_THAN = "GREATER_THAN",
|
|
650
|
+
GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
|
|
651
|
+
LESS_THAN = "LESS_THAN",
|
|
652
|
+
LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
|
|
653
|
+
MASK_ALL = "MASK_ALL",
|
|
654
|
+
MASK_FIRST_N = "MASK_FIRST_N",
|
|
655
|
+
MASK_LAST_N = "MASK_LAST_N",
|
|
656
|
+
MULTIPLICATION = "MULTIPLICATION",
|
|
657
|
+
NOT_EQUAL_TO = "NOT_EQUAL_TO",
|
|
658
|
+
NO_OP = "NO_OP",
|
|
659
|
+
PROJECTION = "PROJECTION",
|
|
660
|
+
SUBTRACTION = "SUBTRACTION",
|
|
661
|
+
VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
|
|
662
|
+
VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
|
|
663
|
+
VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
|
|
664
|
+
VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
|
|
665
|
+
}
|
|
666
|
+
export declare enum ServiceNowConnectorOperator {
|
|
667
|
+
ADDITION = "ADDITION",
|
|
668
|
+
BETWEEN = "BETWEEN",
|
|
669
|
+
CONTAINS = "CONTAINS",
|
|
670
|
+
DIVISION = "DIVISION",
|
|
671
|
+
EQUAL_TO = "EQUAL_TO",
|
|
672
|
+
GREATER_THAN = "GREATER_THAN",
|
|
673
|
+
GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
|
|
674
|
+
LESS_THAN = "LESS_THAN",
|
|
675
|
+
LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
|
|
676
|
+
MASK_ALL = "MASK_ALL",
|
|
677
|
+
MASK_FIRST_N = "MASK_FIRST_N",
|
|
678
|
+
MASK_LAST_N = "MASK_LAST_N",
|
|
679
|
+
MULTIPLICATION = "MULTIPLICATION",
|
|
680
|
+
NOT_EQUAL_TO = "NOT_EQUAL_TO",
|
|
681
|
+
NO_OP = "NO_OP",
|
|
682
|
+
PROJECTION = "PROJECTION",
|
|
683
|
+
SUBTRACTION = "SUBTRACTION",
|
|
684
|
+
VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
|
|
685
|
+
VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
|
|
686
|
+
VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
|
|
687
|
+
VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
|
|
688
|
+
}
|
|
689
|
+
export declare enum SingularConnectorOperator {
|
|
690
|
+
ADDITION = "ADDITION",
|
|
691
|
+
DIVISION = "DIVISION",
|
|
692
|
+
EQUAL_TO = "EQUAL_TO",
|
|
693
|
+
MASK_ALL = "MASK_ALL",
|
|
694
|
+
MASK_FIRST_N = "MASK_FIRST_N",
|
|
695
|
+
MASK_LAST_N = "MASK_LAST_N",
|
|
696
|
+
MULTIPLICATION = "MULTIPLICATION",
|
|
697
|
+
NO_OP = "NO_OP",
|
|
698
|
+
PROJECTION = "PROJECTION",
|
|
699
|
+
SUBTRACTION = "SUBTRACTION",
|
|
700
|
+
VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
|
|
701
|
+
VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
|
|
702
|
+
VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
|
|
703
|
+
VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
|
|
704
|
+
}
|
|
705
|
+
export declare enum SlackConnectorOperator {
|
|
706
|
+
ADDITION = "ADDITION",
|
|
707
|
+
BETWEEN = "BETWEEN",
|
|
708
|
+
DIVISION = "DIVISION",
|
|
709
|
+
EQUAL_TO = "EQUAL_TO",
|
|
710
|
+
GREATER_THAN = "GREATER_THAN",
|
|
711
|
+
GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
|
|
712
|
+
LESS_THAN = "LESS_THAN",
|
|
713
|
+
LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
|
|
714
|
+
MASK_ALL = "MASK_ALL",
|
|
715
|
+
MASK_FIRST_N = "MASK_FIRST_N",
|
|
716
|
+
MASK_LAST_N = "MASK_LAST_N",
|
|
717
|
+
MULTIPLICATION = "MULTIPLICATION",
|
|
718
|
+
NO_OP = "NO_OP",
|
|
719
|
+
PROJECTION = "PROJECTION",
|
|
720
|
+
SUBTRACTION = "SUBTRACTION",
|
|
721
|
+
VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
|
|
722
|
+
VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
|
|
723
|
+
VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
|
|
724
|
+
VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
|
|
725
|
+
}
|
|
726
|
+
export declare enum TrendmicroConnectorOperator {
|
|
727
|
+
ADDITION = "ADDITION",
|
|
728
|
+
DIVISION = "DIVISION",
|
|
729
|
+
EQUAL_TO = "EQUAL_TO",
|
|
730
|
+
MASK_ALL = "MASK_ALL",
|
|
731
|
+
MASK_FIRST_N = "MASK_FIRST_N",
|
|
732
|
+
MASK_LAST_N = "MASK_LAST_N",
|
|
733
|
+
MULTIPLICATION = "MULTIPLICATION",
|
|
734
|
+
NO_OP = "NO_OP",
|
|
735
|
+
PROJECTION = "PROJECTION",
|
|
736
|
+
SUBTRACTION = "SUBTRACTION",
|
|
737
|
+
VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
|
|
738
|
+
VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
|
|
739
|
+
VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
|
|
740
|
+
VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
|
|
741
|
+
}
|
|
742
|
+
export declare enum VeevaConnectorOperator {
|
|
743
|
+
ADDITION = "ADDITION",
|
|
744
|
+
BETWEEN = "BETWEEN",
|
|
745
|
+
CONTAINS = "CONTAINS",
|
|
746
|
+
DIVISION = "DIVISION",
|
|
747
|
+
EQUAL_TO = "EQUAL_TO",
|
|
748
|
+
GREATER_THAN = "GREATER_THAN",
|
|
749
|
+
GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
|
|
750
|
+
LESS_THAN = "LESS_THAN",
|
|
751
|
+
LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
|
|
752
|
+
MASK_ALL = "MASK_ALL",
|
|
753
|
+
MASK_FIRST_N = "MASK_FIRST_N",
|
|
754
|
+
MASK_LAST_N = "MASK_LAST_N",
|
|
755
|
+
MULTIPLICATION = "MULTIPLICATION",
|
|
756
|
+
NOT_EQUAL_TO = "NOT_EQUAL_TO",
|
|
757
|
+
NO_OP = "NO_OP",
|
|
758
|
+
PROJECTION = "PROJECTION",
|
|
759
|
+
SUBTRACTION = "SUBTRACTION",
|
|
760
|
+
VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
|
|
761
|
+
VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
|
|
762
|
+
VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
|
|
763
|
+
VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
|
|
764
|
+
}
|
|
765
|
+
export declare enum ZendeskConnectorOperator {
|
|
766
|
+
ADDITION = "ADDITION",
|
|
767
|
+
DIVISION = "DIVISION",
|
|
768
|
+
GREATER_THAN = "GREATER_THAN",
|
|
769
|
+
MASK_ALL = "MASK_ALL",
|
|
770
|
+
MASK_FIRST_N = "MASK_FIRST_N",
|
|
771
|
+
MASK_LAST_N = "MASK_LAST_N",
|
|
772
|
+
MULTIPLICATION = "MULTIPLICATION",
|
|
773
|
+
NO_OP = "NO_OP",
|
|
774
|
+
PROJECTION = "PROJECTION",
|
|
775
|
+
SUBTRACTION = "SUBTRACTION",
|
|
776
|
+
VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
|
|
777
|
+
VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
|
|
778
|
+
VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
|
|
779
|
+
VALIDATE_NUMERIC = "VALIDATE_NUMERIC",
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
export interface ConnectorOperator {
|
|
783
|
+
Amplitude?: AmplitudeConnectorOperator | string;
|
|
784
|
+
|
|
785
|
+
Datadog?: DatadogConnectorOperator | string;
|
|
786
|
+
|
|
787
|
+
Dynatrace?: DynatraceConnectorOperator | string;
|
|
788
|
+
|
|
789
|
+
GoogleAnalytics?: GoogleAnalyticsConnectorOperator | string;
|
|
790
|
+
|
|
791
|
+
InforNexus?: InforNexusConnectorOperator | string;
|
|
792
|
+
|
|
793
|
+
Marketo?: MarketoConnectorOperator | string;
|
|
794
|
+
|
|
795
|
+
S3?: S3ConnectorOperator | string;
|
|
796
|
+
|
|
797
|
+
Salesforce?: SalesforceConnectorOperator | string;
|
|
798
|
+
|
|
799
|
+
ServiceNow?: ServiceNowConnectorOperator | string;
|
|
800
|
+
|
|
801
|
+
Singular?: SingularConnectorOperator | string;
|
|
802
|
+
|
|
803
|
+
Slack?: SlackConnectorOperator | string;
|
|
804
|
+
|
|
805
|
+
Trendmicro?: TrendmicroConnectorOperator | string;
|
|
806
|
+
|
|
807
|
+
Veeva?: VeevaConnectorOperator | string;
|
|
808
|
+
|
|
809
|
+
Zendesk?: ZendeskConnectorOperator | string;
|
|
810
|
+
|
|
811
|
+
SAPOData?: SAPODataConnectorOperator | string;
|
|
812
|
+
|
|
813
|
+
CustomConnector?: Operator | string;
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
export interface OAuth2Properties {
|
|
817
|
+
tokenUrl: string | undefined;
|
|
818
|
+
|
|
819
|
+
oAuth2GrantType: OAuth2GrantType | string | undefined;
|
|
820
|
+
|
|
821
|
+
tokenUrlCustomProperties?: Record<string, string>;
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
export interface CustomConnectorProfileProperties {
|
|
825
|
+
profileProperties?: Record<string, string>;
|
|
826
|
+
|
|
827
|
+
oAuth2Properties?: OAuth2Properties;
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
export interface DatadogConnectorProfileProperties {
|
|
831
|
+
instanceUrl: string | undefined;
|
|
832
|
+
}
|
|
833
|
+
|
|
834
|
+
export interface DynatraceConnectorProfileProperties {
|
|
835
|
+
instanceUrl: string | undefined;
|
|
836
|
+
}
|
|
837
|
+
|
|
838
|
+
export interface GoogleAnalyticsConnectorProfileProperties {}
|
|
839
|
+
|
|
840
|
+
export interface HoneycodeConnectorProfileProperties {}
|
|
841
|
+
|
|
842
|
+
export interface InforNexusConnectorProfileProperties {
|
|
843
|
+
instanceUrl: string | undefined;
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
export interface MarketoConnectorProfileProperties {
|
|
847
|
+
instanceUrl: string | undefined;
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
export interface RedshiftConnectorProfileProperties {
|
|
851
|
+
databaseUrl: string | undefined;
|
|
852
|
+
|
|
853
|
+
bucketName: string | undefined;
|
|
854
|
+
|
|
855
|
+
bucketPrefix?: string;
|
|
856
|
+
|
|
857
|
+
roleArn: string | undefined;
|
|
858
|
+
}
|
|
859
|
+
|
|
860
|
+
export interface SalesforceConnectorProfileProperties {
|
|
861
|
+
instanceUrl?: string;
|
|
862
|
+
|
|
863
|
+
isSandboxEnvironment?: boolean;
|
|
864
|
+
}
|
|
865
|
+
|
|
866
|
+
export interface OAuthProperties {
|
|
867
|
+
tokenUrl: string | undefined;
|
|
868
|
+
|
|
869
|
+
authCodeUrl: string | undefined;
|
|
870
|
+
|
|
871
|
+
oAuthScopes: string[] | undefined;
|
|
872
|
+
}
|
|
873
|
+
|
|
874
|
+
export interface SAPODataConnectorProfileProperties {
|
|
875
|
+
applicationHostUrl: string | undefined;
|
|
876
|
+
|
|
877
|
+
applicationServicePath: string | undefined;
|
|
878
|
+
|
|
879
|
+
portNumber: number | undefined;
|
|
880
|
+
|
|
881
|
+
clientNumber: string | undefined;
|
|
882
|
+
|
|
883
|
+
logonLanguage?: string;
|
|
884
|
+
|
|
885
|
+
privateLinkServiceName?: string;
|
|
886
|
+
|
|
887
|
+
oAuthProperties?: OAuthProperties;
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
export interface ServiceNowConnectorProfileProperties {
|
|
891
|
+
instanceUrl: string | undefined;
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
export interface SingularConnectorProfileProperties {}
|
|
895
|
+
|
|
896
|
+
export interface SlackConnectorProfileProperties {
|
|
897
|
+
instanceUrl: string | undefined;
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
export interface SnowflakeConnectorProfileProperties {
|
|
901
|
+
warehouse: string | undefined;
|
|
902
|
+
|
|
903
|
+
stage: string | undefined;
|
|
904
|
+
|
|
905
|
+
bucketName: string | undefined;
|
|
906
|
+
|
|
907
|
+
bucketPrefix?: string;
|
|
908
|
+
|
|
909
|
+
privateLinkServiceName?: string;
|
|
910
|
+
|
|
911
|
+
accountName?: string;
|
|
912
|
+
|
|
913
|
+
region?: string;
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
export interface TrendmicroConnectorProfileProperties {}
|
|
917
|
+
|
|
918
|
+
export interface VeevaConnectorProfileProperties {
|
|
919
|
+
instanceUrl: string | undefined;
|
|
920
|
+
}
|
|
921
|
+
|
|
922
|
+
export interface ZendeskConnectorProfileProperties {
|
|
923
|
+
instanceUrl: string | undefined;
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
export interface ConnectorProfileProperties {
|
|
927
|
+
Amplitude?: AmplitudeConnectorProfileProperties;
|
|
928
|
+
|
|
929
|
+
Datadog?: DatadogConnectorProfileProperties;
|
|
930
|
+
|
|
931
|
+
Dynatrace?: DynatraceConnectorProfileProperties;
|
|
932
|
+
|
|
933
|
+
GoogleAnalytics?: GoogleAnalyticsConnectorProfileProperties;
|
|
934
|
+
|
|
935
|
+
Honeycode?: HoneycodeConnectorProfileProperties;
|
|
936
|
+
|
|
937
|
+
InforNexus?: InforNexusConnectorProfileProperties;
|
|
938
|
+
|
|
939
|
+
Marketo?: MarketoConnectorProfileProperties;
|
|
940
|
+
|
|
941
|
+
Redshift?: RedshiftConnectorProfileProperties;
|
|
942
|
+
|
|
943
|
+
Salesforce?: SalesforceConnectorProfileProperties;
|
|
944
|
+
|
|
945
|
+
ServiceNow?: ServiceNowConnectorProfileProperties;
|
|
946
|
+
|
|
947
|
+
Singular?: SingularConnectorProfileProperties;
|
|
948
|
+
|
|
949
|
+
Slack?: SlackConnectorProfileProperties;
|
|
950
|
+
|
|
951
|
+
Snowflake?: SnowflakeConnectorProfileProperties;
|
|
952
|
+
|
|
953
|
+
Trendmicro?: TrendmicroConnectorProfileProperties;
|
|
954
|
+
|
|
955
|
+
Veeva?: VeevaConnectorProfileProperties;
|
|
956
|
+
|
|
957
|
+
Zendesk?: ZendeskConnectorProfileProperties;
|
|
958
|
+
|
|
959
|
+
SAPOData?: SAPODataConnectorProfileProperties;
|
|
960
|
+
|
|
961
|
+
CustomConnector?: CustomConnectorProfileProperties;
|
|
962
|
+
}
|
|
963
|
+
export declare enum PrivateConnectionProvisioningFailureCause {
|
|
964
|
+
ACCESS_DENIED = "ACCESS_DENIED",
|
|
965
|
+
CONNECTOR_AUTHENTICATION = "CONNECTOR_AUTHENTICATION",
|
|
966
|
+
CONNECTOR_SERVER = "CONNECTOR_SERVER",
|
|
967
|
+
INTERNAL_SERVER = "INTERNAL_SERVER",
|
|
968
|
+
VALIDATION = "VALIDATION",
|
|
969
|
+
}
|
|
970
|
+
export declare enum PrivateConnectionProvisioningStatus {
|
|
971
|
+
CREATED = "CREATED",
|
|
972
|
+
FAILED = "FAILED",
|
|
973
|
+
PENDING = "PENDING",
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
export interface PrivateConnectionProvisioningState {
|
|
977
|
+
status?: PrivateConnectionProvisioningStatus | string;
|
|
978
|
+
|
|
979
|
+
failureMessage?: string;
|
|
980
|
+
|
|
981
|
+
failureCause?: PrivateConnectionProvisioningFailureCause | string;
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
export interface ConnectorProfile {
|
|
985
|
+
connectorProfileArn?: string;
|
|
986
|
+
|
|
987
|
+
connectorProfileName?: string;
|
|
988
|
+
|
|
989
|
+
connectorType?: ConnectorType | string;
|
|
990
|
+
|
|
991
|
+
connectorLabel?: string;
|
|
992
|
+
|
|
993
|
+
connectionMode?: ConnectionMode | string;
|
|
994
|
+
|
|
995
|
+
credentialsArn?: string;
|
|
996
|
+
|
|
997
|
+
connectorProfileProperties?: ConnectorProfileProperties;
|
|
998
|
+
|
|
999
|
+
createdAt?: Date;
|
|
1000
|
+
|
|
1001
|
+
lastUpdatedAt?: Date;
|
|
1002
|
+
|
|
1003
|
+
privateConnectionProvisioningState?: PrivateConnectionProvisioningState;
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
export interface CustomAuthCredentials {
|
|
1007
|
+
customAuthenticationType: string | undefined;
|
|
1008
|
+
|
|
1009
|
+
credentialsMap?: Record<string, string>;
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
export interface OAuth2Credentials {
|
|
1013
|
+
clientId?: string;
|
|
1014
|
+
|
|
1015
|
+
clientSecret?: string;
|
|
1016
|
+
|
|
1017
|
+
accessToken?: string;
|
|
1018
|
+
|
|
1019
|
+
refreshToken?: string;
|
|
1020
|
+
|
|
1021
|
+
oAuthRequest?: ConnectorOAuthRequest;
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
export interface CustomConnectorProfileCredentials {
|
|
1025
|
+
authenticationType: AuthenticationType | string | undefined;
|
|
1026
|
+
|
|
1027
|
+
basic?: BasicAuthCredentials;
|
|
1028
|
+
|
|
1029
|
+
oauth2?: OAuth2Credentials;
|
|
1030
|
+
|
|
1031
|
+
apiKey?: ApiKeyCredentials;
|
|
1032
|
+
|
|
1033
|
+
custom?: CustomAuthCredentials;
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
export interface DatadogConnectorProfileCredentials {
|
|
1037
|
+
apiKey: string | undefined;
|
|
1038
|
+
|
|
1039
|
+
applicationKey: string | undefined;
|
|
1040
|
+
}
|
|
1041
|
+
|
|
1042
|
+
export interface DynatraceConnectorProfileCredentials {
|
|
1043
|
+
apiToken: string | undefined;
|
|
1044
|
+
}
|
|
1045
|
+
|
|
1046
|
+
export interface GoogleAnalyticsConnectorProfileCredentials {
|
|
1047
|
+
clientId: string | undefined;
|
|
1048
|
+
|
|
1049
|
+
clientSecret: string | undefined;
|
|
1050
|
+
|
|
1051
|
+
accessToken?: string;
|
|
1052
|
+
|
|
1053
|
+
refreshToken?: string;
|
|
1054
|
+
|
|
1055
|
+
oAuthRequest?: ConnectorOAuthRequest;
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1058
|
+
export interface HoneycodeConnectorProfileCredentials {
|
|
1059
|
+
accessToken?: string;
|
|
1060
|
+
|
|
1061
|
+
refreshToken?: string;
|
|
1062
|
+
|
|
1063
|
+
oAuthRequest?: ConnectorOAuthRequest;
|
|
1064
|
+
}
|
|
1065
|
+
|
|
1066
|
+
export interface InforNexusConnectorProfileCredentials {
|
|
1067
|
+
accessKeyId: string | undefined;
|
|
1068
|
+
|
|
1069
|
+
userId: string | undefined;
|
|
1070
|
+
|
|
1071
|
+
secretAccessKey: string | undefined;
|
|
1072
|
+
|
|
1073
|
+
datakey: string | undefined;
|
|
1074
|
+
}
|
|
1075
|
+
|
|
1076
|
+
export interface MarketoConnectorProfileCredentials {
|
|
1077
|
+
clientId: string | undefined;
|
|
1078
|
+
|
|
1079
|
+
clientSecret: string | undefined;
|
|
1080
|
+
|
|
1081
|
+
accessToken?: string;
|
|
1082
|
+
|
|
1083
|
+
oAuthRequest?: ConnectorOAuthRequest;
|
|
1084
|
+
}
|
|
1085
|
+
|
|
1086
|
+
export interface RedshiftConnectorProfileCredentials {
|
|
1087
|
+
username: string | undefined;
|
|
1088
|
+
|
|
1089
|
+
password: string | undefined;
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1092
|
+
export interface SalesforceConnectorProfileCredentials {
|
|
1093
|
+
accessToken?: string;
|
|
1094
|
+
|
|
1095
|
+
refreshToken?: string;
|
|
1096
|
+
|
|
1097
|
+
oAuthRequest?: ConnectorOAuthRequest;
|
|
1098
|
+
|
|
1099
|
+
clientCredentialsArn?: string;
|
|
1100
|
+
}
|
|
1101
|
+
|
|
1102
|
+
export interface OAuthCredentials {
|
|
1103
|
+
clientId: string | undefined;
|
|
1104
|
+
|
|
1105
|
+
clientSecret: string | undefined;
|
|
1106
|
+
|
|
1107
|
+
accessToken?: string;
|
|
1108
|
+
|
|
1109
|
+
refreshToken?: string;
|
|
1110
|
+
|
|
1111
|
+
oAuthRequest?: ConnectorOAuthRequest;
|
|
1112
|
+
}
|
|
1113
|
+
|
|
1114
|
+
export interface SAPODataConnectorProfileCredentials {
|
|
1115
|
+
basicAuthCredentials?: BasicAuthCredentials;
|
|
1116
|
+
|
|
1117
|
+
oAuthCredentials?: OAuthCredentials;
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1120
|
+
export interface ServiceNowConnectorProfileCredentials {
|
|
1121
|
+
username: string | undefined;
|
|
1122
|
+
|
|
1123
|
+
password: string | undefined;
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
export interface SingularConnectorProfileCredentials {
|
|
1127
|
+
apiKey: string | undefined;
|
|
1128
|
+
}
|
|
1129
|
+
|
|
1130
|
+
export interface SlackConnectorProfileCredentials {
|
|
1131
|
+
clientId: string | undefined;
|
|
1132
|
+
|
|
1133
|
+
clientSecret: string | undefined;
|
|
1134
|
+
|
|
1135
|
+
accessToken?: string;
|
|
1136
|
+
|
|
1137
|
+
oAuthRequest?: ConnectorOAuthRequest;
|
|
1138
|
+
}
|
|
1139
|
+
|
|
1140
|
+
export interface SnowflakeConnectorProfileCredentials {
|
|
1141
|
+
username: string | undefined;
|
|
1142
|
+
|
|
1143
|
+
password: string | undefined;
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1146
|
+
export interface TrendmicroConnectorProfileCredentials {
|
|
1147
|
+
apiSecretKey: string | undefined;
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1150
|
+
export interface VeevaConnectorProfileCredentials {
|
|
1151
|
+
username: string | undefined;
|
|
1152
|
+
|
|
1153
|
+
password: string | undefined;
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
export interface ZendeskConnectorProfileCredentials {
|
|
1157
|
+
clientId: string | undefined;
|
|
1158
|
+
|
|
1159
|
+
clientSecret: string | undefined;
|
|
1160
|
+
|
|
1161
|
+
accessToken?: string;
|
|
1162
|
+
|
|
1163
|
+
oAuthRequest?: ConnectorOAuthRequest;
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1166
|
+
export interface ConnectorProfileCredentials {
|
|
1167
|
+
Amplitude?: AmplitudeConnectorProfileCredentials;
|
|
1168
|
+
|
|
1169
|
+
Datadog?: DatadogConnectorProfileCredentials;
|
|
1170
|
+
|
|
1171
|
+
Dynatrace?: DynatraceConnectorProfileCredentials;
|
|
1172
|
+
|
|
1173
|
+
GoogleAnalytics?: GoogleAnalyticsConnectorProfileCredentials;
|
|
1174
|
+
|
|
1175
|
+
Honeycode?: HoneycodeConnectorProfileCredentials;
|
|
1176
|
+
|
|
1177
|
+
InforNexus?: InforNexusConnectorProfileCredentials;
|
|
1178
|
+
|
|
1179
|
+
Marketo?: MarketoConnectorProfileCredentials;
|
|
1180
|
+
|
|
1181
|
+
Redshift?: RedshiftConnectorProfileCredentials;
|
|
1182
|
+
|
|
1183
|
+
Salesforce?: SalesforceConnectorProfileCredentials;
|
|
1184
|
+
|
|
1185
|
+
ServiceNow?: ServiceNowConnectorProfileCredentials;
|
|
1186
|
+
|
|
1187
|
+
Singular?: SingularConnectorProfileCredentials;
|
|
1188
|
+
|
|
1189
|
+
Slack?: SlackConnectorProfileCredentials;
|
|
1190
|
+
|
|
1191
|
+
Snowflake?: SnowflakeConnectorProfileCredentials;
|
|
1192
|
+
|
|
1193
|
+
Trendmicro?: TrendmicroConnectorProfileCredentials;
|
|
1194
|
+
|
|
1195
|
+
Veeva?: VeevaConnectorProfileCredentials;
|
|
1196
|
+
|
|
1197
|
+
Zendesk?: ZendeskConnectorProfileCredentials;
|
|
1198
|
+
|
|
1199
|
+
SAPOData?: SAPODataConnectorProfileCredentials;
|
|
1200
|
+
|
|
1201
|
+
CustomConnector?: CustomConnectorProfileCredentials;
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
export interface ConnectorProfileConfig {
|
|
1205
|
+
connectorProfileProperties: ConnectorProfileProperties | undefined;
|
|
1206
|
+
|
|
1207
|
+
connectorProfileCredentials: ConnectorProfileCredentials | undefined;
|
|
1208
|
+
}
|
|
1209
|
+
|
|
1210
|
+
export declare class ConnectorServerException extends __BaseException {
|
|
1211
|
+
readonly name: "ConnectorServerException";
|
|
1212
|
+
readonly $fault: "client";
|
|
1213
|
+
|
|
1214
|
+
constructor(
|
|
1215
|
+
opts: __ExceptionOptionType<ConnectorServerException, __BaseException>
|
|
1216
|
+
);
|
|
1217
|
+
}
|
|
1218
|
+
export interface CreateConnectorProfileRequest {
|
|
1219
|
+
connectorProfileName: string | undefined;
|
|
1220
|
+
|
|
1221
|
+
kmsArn?: string;
|
|
1222
|
+
|
|
1223
|
+
connectorType: ConnectorType | string | undefined;
|
|
1224
|
+
|
|
1225
|
+
connectorLabel?: string;
|
|
1226
|
+
|
|
1227
|
+
connectionMode: ConnectionMode | string | undefined;
|
|
1228
|
+
|
|
1229
|
+
connectorProfileConfig: ConnectorProfileConfig | undefined;
|
|
1230
|
+
}
|
|
1231
|
+
export interface CreateConnectorProfileResponse {
|
|
1232
|
+
connectorProfileArn?: string;
|
|
1233
|
+
}
|
|
1234
|
+
|
|
1235
|
+
export declare class InternalServerException extends __BaseException {
|
|
1236
|
+
readonly name: "InternalServerException";
|
|
1237
|
+
readonly $fault: "server";
|
|
1238
|
+
|
|
1239
|
+
constructor(
|
|
1240
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
1241
|
+
);
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1244
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
1245
|
+
readonly name: "ServiceQuotaExceededException";
|
|
1246
|
+
readonly $fault: "client";
|
|
1247
|
+
|
|
1248
|
+
constructor(
|
|
1249
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
1250
|
+
);
|
|
1251
|
+
}
|
|
1252
|
+
|
|
1253
|
+
export declare class ValidationException extends __BaseException {
|
|
1254
|
+
readonly name: "ValidationException";
|
|
1255
|
+
readonly $fault: "client";
|
|
1256
|
+
|
|
1257
|
+
constructor(
|
|
1258
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
1259
|
+
);
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
export interface ErrorHandlingConfig {
|
|
1263
|
+
failOnFirstDestinationError?: boolean;
|
|
1264
|
+
|
|
1265
|
+
bucketPrefix?: string;
|
|
1266
|
+
|
|
1267
|
+
bucketName?: string;
|
|
1268
|
+
}
|
|
1269
|
+
|
|
1270
|
+
export interface CustomConnectorDestinationProperties {
|
|
1271
|
+
entityName: string | undefined;
|
|
1272
|
+
|
|
1273
|
+
errorHandlingConfig?: ErrorHandlingConfig;
|
|
1274
|
+
|
|
1275
|
+
writeOperationType?: WriteOperationType | string;
|
|
1276
|
+
|
|
1277
|
+
idFieldNames?: string[];
|
|
1278
|
+
|
|
1279
|
+
customProperties?: Record<string, string>;
|
|
1280
|
+
}
|
|
1281
|
+
|
|
1282
|
+
export interface CustomerProfilesDestinationProperties {
|
|
1283
|
+
domainName: string | undefined;
|
|
1284
|
+
|
|
1285
|
+
objectTypeName?: string;
|
|
1286
|
+
}
|
|
1287
|
+
|
|
1288
|
+
export interface EventBridgeDestinationProperties {
|
|
1289
|
+
object: string | undefined;
|
|
1290
|
+
|
|
1291
|
+
errorHandlingConfig?: ErrorHandlingConfig;
|
|
1292
|
+
}
|
|
1293
|
+
|
|
1294
|
+
export interface HoneycodeDestinationProperties {
|
|
1295
|
+
object: string | undefined;
|
|
1296
|
+
|
|
1297
|
+
errorHandlingConfig?: ErrorHandlingConfig;
|
|
1298
|
+
}
|
|
1299
|
+
|
|
1300
|
+
export interface LookoutMetricsDestinationProperties {}
|
|
1301
|
+
|
|
1302
|
+
export interface MarketoDestinationProperties {
|
|
1303
|
+
object: string | undefined;
|
|
1304
|
+
|
|
1305
|
+
errorHandlingConfig?: ErrorHandlingConfig;
|
|
1306
|
+
}
|
|
1307
|
+
|
|
1308
|
+
export interface RedshiftDestinationProperties {
|
|
1309
|
+
object: string | undefined;
|
|
1310
|
+
|
|
1311
|
+
intermediateBucketName: string | undefined;
|
|
1312
|
+
|
|
1313
|
+
bucketPrefix?: string;
|
|
1314
|
+
|
|
1315
|
+
errorHandlingConfig?: ErrorHandlingConfig;
|
|
1316
|
+
}
|
|
1317
|
+
export declare enum FileType {
|
|
1318
|
+
CSV = "CSV",
|
|
1319
|
+
JSON = "JSON",
|
|
1320
|
+
PARQUET = "PARQUET",
|
|
1321
|
+
}
|
|
1322
|
+
export declare enum PrefixFormat {
|
|
1323
|
+
DAY = "DAY",
|
|
1324
|
+
HOUR = "HOUR",
|
|
1325
|
+
MINUTE = "MINUTE",
|
|
1326
|
+
MONTH = "MONTH",
|
|
1327
|
+
YEAR = "YEAR",
|
|
1328
|
+
}
|
|
1329
|
+
export declare enum PrefixType {
|
|
1330
|
+
FILENAME = "FILENAME",
|
|
1331
|
+
PATH = "PATH",
|
|
1332
|
+
PATH_AND_FILENAME = "PATH_AND_FILENAME",
|
|
1333
|
+
}
|
|
1334
|
+
|
|
1335
|
+
export interface PrefixConfig {
|
|
1336
|
+
prefixType?: PrefixType | string;
|
|
1337
|
+
|
|
1338
|
+
prefixFormat?: PrefixFormat | string;
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
export interface S3OutputFormatConfig {
|
|
1342
|
+
fileType?: FileType | string;
|
|
1343
|
+
|
|
1344
|
+
prefixConfig?: PrefixConfig;
|
|
1345
|
+
|
|
1346
|
+
aggregationConfig?: AggregationConfig;
|
|
1347
|
+
|
|
1348
|
+
preserveSourceDataTyping?: boolean;
|
|
1349
|
+
}
|
|
1350
|
+
|
|
1351
|
+
export interface S3DestinationProperties {
|
|
1352
|
+
bucketName: string | undefined;
|
|
1353
|
+
|
|
1354
|
+
bucketPrefix?: string;
|
|
1355
|
+
|
|
1356
|
+
s3OutputFormatConfig?: S3OutputFormatConfig;
|
|
1357
|
+
}
|
|
1358
|
+
|
|
1359
|
+
export interface SalesforceDestinationProperties {
|
|
1360
|
+
object: string | undefined;
|
|
1361
|
+
|
|
1362
|
+
idFieldNames?: string[];
|
|
1363
|
+
|
|
1364
|
+
errorHandlingConfig?: ErrorHandlingConfig;
|
|
1365
|
+
|
|
1366
|
+
writeOperationType?: WriteOperationType | string;
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
export interface SuccessResponseHandlingConfig {
|
|
1370
|
+
bucketPrefix?: string;
|
|
1371
|
+
|
|
1372
|
+
bucketName?: string;
|
|
1373
|
+
}
|
|
1374
|
+
|
|
1375
|
+
export interface SAPODataDestinationProperties {
|
|
1376
|
+
objectPath: string | undefined;
|
|
1377
|
+
|
|
1378
|
+
successResponseHandlingConfig?: SuccessResponseHandlingConfig;
|
|
1379
|
+
|
|
1380
|
+
idFieldNames?: string[];
|
|
1381
|
+
|
|
1382
|
+
errorHandlingConfig?: ErrorHandlingConfig;
|
|
1383
|
+
|
|
1384
|
+
writeOperationType?: WriteOperationType | string;
|
|
1385
|
+
}
|
|
1386
|
+
|
|
1387
|
+
export interface SnowflakeDestinationProperties {
|
|
1388
|
+
object: string | undefined;
|
|
1389
|
+
|
|
1390
|
+
intermediateBucketName: string | undefined;
|
|
1391
|
+
|
|
1392
|
+
bucketPrefix?: string;
|
|
1393
|
+
|
|
1394
|
+
errorHandlingConfig?: ErrorHandlingConfig;
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
export interface UpsolverS3OutputFormatConfig {
|
|
1398
|
+
fileType?: FileType | string;
|
|
1399
|
+
|
|
1400
|
+
prefixConfig: PrefixConfig | undefined;
|
|
1401
|
+
|
|
1402
|
+
aggregationConfig?: AggregationConfig;
|
|
1403
|
+
}
|
|
1404
|
+
|
|
1405
|
+
export interface UpsolverDestinationProperties {
|
|
1406
|
+
bucketName: string | undefined;
|
|
1407
|
+
|
|
1408
|
+
bucketPrefix?: string;
|
|
1409
|
+
|
|
1410
|
+
s3OutputFormatConfig: UpsolverS3OutputFormatConfig | undefined;
|
|
1411
|
+
}
|
|
1412
|
+
|
|
1413
|
+
export interface ZendeskDestinationProperties {
|
|
1414
|
+
object: string | undefined;
|
|
1415
|
+
|
|
1416
|
+
idFieldNames?: string[];
|
|
1417
|
+
|
|
1418
|
+
errorHandlingConfig?: ErrorHandlingConfig;
|
|
1419
|
+
|
|
1420
|
+
writeOperationType?: WriteOperationType | string;
|
|
1421
|
+
}
|
|
1422
|
+
|
|
1423
|
+
export interface DestinationConnectorProperties {
|
|
1424
|
+
Redshift?: RedshiftDestinationProperties;
|
|
1425
|
+
|
|
1426
|
+
S3?: S3DestinationProperties;
|
|
1427
|
+
|
|
1428
|
+
Salesforce?: SalesforceDestinationProperties;
|
|
1429
|
+
|
|
1430
|
+
Snowflake?: SnowflakeDestinationProperties;
|
|
1431
|
+
|
|
1432
|
+
EventBridge?: EventBridgeDestinationProperties;
|
|
1433
|
+
|
|
1434
|
+
LookoutMetrics?: LookoutMetricsDestinationProperties;
|
|
1435
|
+
|
|
1436
|
+
Upsolver?: UpsolverDestinationProperties;
|
|
1437
|
+
|
|
1438
|
+
Honeycode?: HoneycodeDestinationProperties;
|
|
1439
|
+
|
|
1440
|
+
CustomerProfiles?: CustomerProfilesDestinationProperties;
|
|
1441
|
+
|
|
1442
|
+
Zendesk?: ZendeskDestinationProperties;
|
|
1443
|
+
|
|
1444
|
+
Marketo?: MarketoDestinationProperties;
|
|
1445
|
+
|
|
1446
|
+
CustomConnector?: CustomConnectorDestinationProperties;
|
|
1447
|
+
|
|
1448
|
+
SAPOData?: SAPODataDestinationProperties;
|
|
1449
|
+
}
|
|
1450
|
+
|
|
1451
|
+
export interface DestinationFlowConfig {
|
|
1452
|
+
connectorType: ConnectorType | string | undefined;
|
|
1453
|
+
|
|
1454
|
+
apiVersion?: string;
|
|
1455
|
+
|
|
1456
|
+
connectorProfileName?: string;
|
|
1457
|
+
|
|
1458
|
+
destinationConnectorProperties: DestinationConnectorProperties | undefined;
|
|
1459
|
+
}
|
|
1460
|
+
|
|
1461
|
+
export interface IncrementalPullConfig {
|
|
1462
|
+
datetimeTypeFieldName?: string;
|
|
1463
|
+
}
|
|
1464
|
+
|
|
1465
|
+
export interface CustomConnectorSourceProperties {
|
|
1466
|
+
entityName: string | undefined;
|
|
1467
|
+
|
|
1468
|
+
customProperties?: Record<string, string>;
|
|
1469
|
+
}
|
|
1470
|
+
|
|
1471
|
+
export interface DatadogSourceProperties {
|
|
1472
|
+
object: string | undefined;
|
|
1473
|
+
}
|
|
1474
|
+
|
|
1475
|
+
export interface DynatraceSourceProperties {
|
|
1476
|
+
object: string | undefined;
|
|
1477
|
+
}
|
|
1478
|
+
|
|
1479
|
+
export interface GoogleAnalyticsSourceProperties {
|
|
1480
|
+
object: string | undefined;
|
|
1481
|
+
}
|
|
1482
|
+
|
|
1483
|
+
export interface InforNexusSourceProperties {
|
|
1484
|
+
object: string | undefined;
|
|
1485
|
+
}
|
|
1486
|
+
|
|
1487
|
+
export interface MarketoSourceProperties {
|
|
1488
|
+
object: string | undefined;
|
|
1489
|
+
}
|
|
1490
|
+
export declare enum S3InputFileType {
|
|
1491
|
+
CSV = "CSV",
|
|
1492
|
+
JSON = "JSON",
|
|
1493
|
+
}
|
|
1494
|
+
|
|
1495
|
+
export interface S3InputFormatConfig {
|
|
1496
|
+
s3InputFileType?: S3InputFileType | string;
|
|
1497
|
+
}
|
|
1498
|
+
|
|
1499
|
+
export interface S3SourceProperties {
|
|
1500
|
+
bucketName: string | undefined;
|
|
1501
|
+
|
|
1502
|
+
bucketPrefix?: string;
|
|
1503
|
+
|
|
1504
|
+
s3InputFormatConfig?: S3InputFormatConfig;
|
|
1505
|
+
}
|
|
1506
|
+
|
|
1507
|
+
export interface SalesforceSourceProperties {
|
|
1508
|
+
object: string | undefined;
|
|
1509
|
+
|
|
1510
|
+
enableDynamicFieldUpdate?: boolean;
|
|
1511
|
+
|
|
1512
|
+
includeDeletedRecords?: boolean;
|
|
1513
|
+
}
|
|
1514
|
+
|
|
1515
|
+
export interface SAPODataSourceProperties {
|
|
1516
|
+
objectPath?: string;
|
|
1517
|
+
}
|
|
1518
|
+
|
|
1519
|
+
export interface ServiceNowSourceProperties {
|
|
1520
|
+
object: string | undefined;
|
|
1521
|
+
}
|
|
1522
|
+
|
|
1523
|
+
export interface SingularSourceProperties {
|
|
1524
|
+
object: string | undefined;
|
|
1525
|
+
}
|
|
1526
|
+
|
|
1527
|
+
export interface SlackSourceProperties {
|
|
1528
|
+
object: string | undefined;
|
|
1529
|
+
}
|
|
1530
|
+
|
|
1531
|
+
export interface TrendmicroSourceProperties {
|
|
1532
|
+
object: string | undefined;
|
|
1533
|
+
}
|
|
1534
|
+
|
|
1535
|
+
export interface VeevaSourceProperties {
|
|
1536
|
+
object: string | undefined;
|
|
1537
|
+
|
|
1538
|
+
documentType?: string;
|
|
1539
|
+
|
|
1540
|
+
includeSourceFiles?: boolean;
|
|
1541
|
+
|
|
1542
|
+
includeRenditions?: boolean;
|
|
1543
|
+
|
|
1544
|
+
includeAllVersions?: boolean;
|
|
1545
|
+
}
|
|
1546
|
+
|
|
1547
|
+
export interface ZendeskSourceProperties {
|
|
1548
|
+
object: string | undefined;
|
|
1549
|
+
}
|
|
1550
|
+
|
|
1551
|
+
export interface SourceConnectorProperties {
|
|
1552
|
+
Amplitude?: AmplitudeSourceProperties;
|
|
1553
|
+
|
|
1554
|
+
Datadog?: DatadogSourceProperties;
|
|
1555
|
+
|
|
1556
|
+
Dynatrace?: DynatraceSourceProperties;
|
|
1557
|
+
|
|
1558
|
+
GoogleAnalytics?: GoogleAnalyticsSourceProperties;
|
|
1559
|
+
|
|
1560
|
+
InforNexus?: InforNexusSourceProperties;
|
|
1561
|
+
|
|
1562
|
+
Marketo?: MarketoSourceProperties;
|
|
1563
|
+
|
|
1564
|
+
S3?: S3SourceProperties;
|
|
1565
|
+
|
|
1566
|
+
Salesforce?: SalesforceSourceProperties;
|
|
1567
|
+
|
|
1568
|
+
ServiceNow?: ServiceNowSourceProperties;
|
|
1569
|
+
|
|
1570
|
+
Singular?: SingularSourceProperties;
|
|
1571
|
+
|
|
1572
|
+
Slack?: SlackSourceProperties;
|
|
1573
|
+
|
|
1574
|
+
Trendmicro?: TrendmicroSourceProperties;
|
|
1575
|
+
|
|
1576
|
+
Veeva?: VeevaSourceProperties;
|
|
1577
|
+
|
|
1578
|
+
Zendesk?: ZendeskSourceProperties;
|
|
1579
|
+
|
|
1580
|
+
SAPOData?: SAPODataSourceProperties;
|
|
1581
|
+
|
|
1582
|
+
CustomConnector?: CustomConnectorSourceProperties;
|
|
1583
|
+
}
|
|
1584
|
+
|
|
1585
|
+
export interface SourceFlowConfig {
|
|
1586
|
+
connectorType: ConnectorType | string | undefined;
|
|
1587
|
+
|
|
1588
|
+
apiVersion?: string;
|
|
1589
|
+
|
|
1590
|
+
connectorProfileName?: string;
|
|
1591
|
+
|
|
1592
|
+
sourceConnectorProperties: SourceConnectorProperties | undefined;
|
|
1593
|
+
|
|
1594
|
+
incrementalPullConfig?: IncrementalPullConfig;
|
|
1595
|
+
}
|
|
1596
|
+
export declare enum OperatorPropertiesKeys {
|
|
1597
|
+
CONCAT_FORMAT = "CONCAT_FORMAT",
|
|
1598
|
+
DATA_TYPE = "DATA_TYPE",
|
|
1599
|
+
DESTINATION_DATA_TYPE = "DESTINATION_DATA_TYPE",
|
|
1600
|
+
EXCLUDE_SOURCE_FIELDS_LIST = "EXCLUDE_SOURCE_FIELDS_LIST",
|
|
1601
|
+
LOWER_BOUND = "LOWER_BOUND",
|
|
1602
|
+
MASK_LENGTH = "MASK_LENGTH",
|
|
1603
|
+
MASK_VALUE = "MASK_VALUE",
|
|
1604
|
+
MATH_OPERATION_FIELDS_ORDER = "MATH_OPERATION_FIELDS_ORDER",
|
|
1605
|
+
SOURCE_DATA_TYPE = "SOURCE_DATA_TYPE",
|
|
1606
|
+
SUBFIELD_CATEGORY_MAP = "SUBFIELD_CATEGORY_MAP",
|
|
1607
|
+
TRUNCATE_LENGTH = "TRUNCATE_LENGTH",
|
|
1608
|
+
UPPER_BOUND = "UPPER_BOUND",
|
|
1609
|
+
VALIDATION_ACTION = "VALIDATION_ACTION",
|
|
1610
|
+
VALUE = "VALUE",
|
|
1611
|
+
VALUES = "VALUES",
|
|
1612
|
+
}
|
|
1613
|
+
export declare enum TaskType {
|
|
1614
|
+
ARITHMETIC = "Arithmetic",
|
|
1615
|
+
FILTER = "Filter",
|
|
1616
|
+
MAP = "Map",
|
|
1617
|
+
MAP_ALL = "Map_all",
|
|
1618
|
+
MASK = "Mask",
|
|
1619
|
+
MERGE = "Merge",
|
|
1620
|
+
PASSTHROUGH = "Passthrough",
|
|
1621
|
+
TRUNCATE = "Truncate",
|
|
1622
|
+
VALIDATE = "Validate",
|
|
1623
|
+
}
|
|
1624
|
+
|
|
1625
|
+
export interface Task {
|
|
1626
|
+
sourceFields: string[] | undefined;
|
|
1627
|
+
|
|
1628
|
+
connectorOperator?: ConnectorOperator;
|
|
1629
|
+
|
|
1630
|
+
destinationField?: string;
|
|
1631
|
+
|
|
1632
|
+
taskType: TaskType | string | undefined;
|
|
1633
|
+
|
|
1634
|
+
taskProperties?: Record<string, string>;
|
|
1635
|
+
}
|
|
1636
|
+
export declare enum DataPullMode {
|
|
1637
|
+
COMPLETE = "Complete",
|
|
1638
|
+
INCREMENTAL = "Incremental",
|
|
1639
|
+
}
|
|
1640
|
+
|
|
1641
|
+
export interface ScheduledTriggerProperties {
|
|
1642
|
+
scheduleExpression: string | undefined;
|
|
1643
|
+
|
|
1644
|
+
dataPullMode?: DataPullMode | string;
|
|
1645
|
+
|
|
1646
|
+
scheduleStartTime?: Date;
|
|
1647
|
+
|
|
1648
|
+
scheduleEndTime?: Date;
|
|
1649
|
+
|
|
1650
|
+
timezone?: string;
|
|
1651
|
+
|
|
1652
|
+
scheduleOffset?: number;
|
|
1653
|
+
|
|
1654
|
+
firstExecutionFrom?: Date;
|
|
1655
|
+
|
|
1656
|
+
flowErrorDeactivationThreshold?: number;
|
|
1657
|
+
}
|
|
1658
|
+
|
|
1659
|
+
export interface TriggerProperties {
|
|
1660
|
+
Scheduled?: ScheduledTriggerProperties;
|
|
1661
|
+
}
|
|
1662
|
+
|
|
1663
|
+
export interface TriggerConfig {
|
|
1664
|
+
triggerType: TriggerType | string | undefined;
|
|
1665
|
+
|
|
1666
|
+
triggerProperties?: TriggerProperties;
|
|
1667
|
+
}
|
|
1668
|
+
export interface CreateFlowRequest {
|
|
1669
|
+
flowName: string | undefined;
|
|
1670
|
+
|
|
1671
|
+
description?: string;
|
|
1672
|
+
|
|
1673
|
+
kmsArn?: string;
|
|
1674
|
+
|
|
1675
|
+
triggerConfig: TriggerConfig | undefined;
|
|
1676
|
+
|
|
1677
|
+
sourceFlowConfig: SourceFlowConfig | undefined;
|
|
1678
|
+
|
|
1679
|
+
destinationFlowConfigList: DestinationFlowConfig[] | undefined;
|
|
1680
|
+
|
|
1681
|
+
tasks: Task[] | undefined;
|
|
1682
|
+
|
|
1683
|
+
tags?: Record<string, string>;
|
|
1684
|
+
}
|
|
1685
|
+
export declare enum FlowStatus {
|
|
1686
|
+
ACTIVE = "Active",
|
|
1687
|
+
DELETED = "Deleted",
|
|
1688
|
+
DEPRECATED = "Deprecated",
|
|
1689
|
+
DRAFT = "Draft",
|
|
1690
|
+
ERRORED = "Errored",
|
|
1691
|
+
SUSPENDED = "Suspended",
|
|
1692
|
+
}
|
|
1693
|
+
export interface CreateFlowResponse {
|
|
1694
|
+
flowArn?: string;
|
|
1695
|
+
|
|
1696
|
+
flowStatus?: FlowStatus | string;
|
|
1697
|
+
}
|
|
1698
|
+
|
|
1699
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
1700
|
+
readonly name: "ResourceNotFoundException";
|
|
1701
|
+
readonly $fault: "client";
|
|
1702
|
+
|
|
1703
|
+
constructor(
|
|
1704
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
1705
|
+
);
|
|
1706
|
+
}
|
|
1707
|
+
export interface DeleteConnectorProfileRequest {
|
|
1708
|
+
connectorProfileName: string | undefined;
|
|
1709
|
+
|
|
1710
|
+
forceDelete?: boolean;
|
|
1711
|
+
}
|
|
1712
|
+
export interface DeleteConnectorProfileResponse {}
|
|
1713
|
+
export interface DeleteFlowRequest {
|
|
1714
|
+
flowName: string | undefined;
|
|
1715
|
+
|
|
1716
|
+
forceDelete?: boolean;
|
|
1717
|
+
}
|
|
1718
|
+
export interface DeleteFlowResponse {}
|
|
1719
|
+
export interface DescribeConnectorRequest {
|
|
1720
|
+
connectorType: ConnectorType | string | undefined;
|
|
1721
|
+
|
|
1722
|
+
connectorLabel?: string;
|
|
1723
|
+
}
|
|
1724
|
+
export interface DescribeConnectorResponse {
|
|
1725
|
+
connectorConfiguration?: ConnectorConfiguration;
|
|
1726
|
+
}
|
|
1727
|
+
export interface DescribeConnectorEntityRequest {
|
|
1728
|
+
connectorEntityName: string | undefined;
|
|
1729
|
+
|
|
1730
|
+
connectorType?: ConnectorType | string;
|
|
1731
|
+
|
|
1732
|
+
connectorProfileName?: string;
|
|
1733
|
+
|
|
1734
|
+
apiVersion?: string;
|
|
1735
|
+
}
|
|
1736
|
+
export interface DescribeConnectorEntityResponse {
|
|
1737
|
+
connectorEntityFields: ConnectorEntityField[] | undefined;
|
|
1738
|
+
}
|
|
1739
|
+
export interface DescribeConnectorProfilesRequest {
|
|
1740
|
+
connectorProfileNames?: string[];
|
|
1741
|
+
|
|
1742
|
+
connectorType?: ConnectorType | string;
|
|
1743
|
+
|
|
1744
|
+
connectorLabel?: string;
|
|
1745
|
+
|
|
1746
|
+
maxResults?: number;
|
|
1747
|
+
|
|
1748
|
+
nextToken?: string;
|
|
1749
|
+
}
|
|
1750
|
+
export interface DescribeConnectorProfilesResponse {
|
|
1751
|
+
connectorProfileDetails?: ConnectorProfile[];
|
|
1752
|
+
|
|
1753
|
+
nextToken?: string;
|
|
1754
|
+
}
|
|
1755
|
+
export interface DescribeConnectorsRequest {
|
|
1756
|
+
connectorTypes?: (ConnectorType | string)[];
|
|
1757
|
+
|
|
1758
|
+
maxResults?: number;
|
|
1759
|
+
|
|
1760
|
+
nextToken?: string;
|
|
1761
|
+
}
|
|
1762
|
+
export interface DescribeConnectorsResponse {
|
|
1763
|
+
connectorConfigurations?: Record<string, ConnectorConfiguration>;
|
|
1764
|
+
|
|
1765
|
+
connectors?: ConnectorDetail[];
|
|
1766
|
+
|
|
1767
|
+
nextToken?: string;
|
|
1768
|
+
}
|
|
1769
|
+
export interface DescribeFlowRequest {
|
|
1770
|
+
flowName: string | undefined;
|
|
1771
|
+
}
|
|
1772
|
+
export declare enum ExecutionStatus {
|
|
1773
|
+
ERROR = "Error",
|
|
1774
|
+
INPROGRESS = "InProgress",
|
|
1775
|
+
SUCCESSFUL = "Successful",
|
|
1776
|
+
}
|
|
1777
|
+
|
|
1778
|
+
export interface ExecutionDetails {
|
|
1779
|
+
mostRecentExecutionMessage?: string;
|
|
1780
|
+
|
|
1781
|
+
mostRecentExecutionTime?: Date;
|
|
1782
|
+
|
|
1783
|
+
mostRecentExecutionStatus?: ExecutionStatus | string;
|
|
1784
|
+
}
|
|
1785
|
+
export interface DescribeFlowResponse {
|
|
1786
|
+
flowArn?: string;
|
|
1787
|
+
|
|
1788
|
+
description?: string;
|
|
1789
|
+
|
|
1790
|
+
flowName?: string;
|
|
1791
|
+
|
|
1792
|
+
kmsArn?: string;
|
|
1793
|
+
|
|
1794
|
+
flowStatus?: FlowStatus | string;
|
|
1795
|
+
|
|
1796
|
+
flowStatusMessage?: string;
|
|
1797
|
+
|
|
1798
|
+
sourceFlowConfig?: SourceFlowConfig;
|
|
1799
|
+
|
|
1800
|
+
destinationFlowConfigList?: DestinationFlowConfig[];
|
|
1801
|
+
|
|
1802
|
+
lastRunExecutionDetails?: ExecutionDetails;
|
|
1803
|
+
|
|
1804
|
+
triggerConfig?: TriggerConfig;
|
|
1805
|
+
|
|
1806
|
+
tasks?: Task[];
|
|
1807
|
+
|
|
1808
|
+
createdAt?: Date;
|
|
1809
|
+
|
|
1810
|
+
lastUpdatedAt?: Date;
|
|
1811
|
+
|
|
1812
|
+
createdBy?: string;
|
|
1813
|
+
|
|
1814
|
+
lastUpdatedBy?: string;
|
|
1815
|
+
|
|
1816
|
+
tags?: Record<string, string>;
|
|
1817
|
+
}
|
|
1818
|
+
export interface DescribeFlowExecutionRecordsRequest {
|
|
1819
|
+
flowName: string | undefined;
|
|
1820
|
+
|
|
1821
|
+
maxResults?: number;
|
|
1822
|
+
|
|
1823
|
+
nextToken?: string;
|
|
1824
|
+
}
|
|
1825
|
+
|
|
1826
|
+
export interface ErrorInfo {
|
|
1827
|
+
putFailuresCount?: number;
|
|
1828
|
+
|
|
1829
|
+
executionMessage?: string;
|
|
1830
|
+
}
|
|
1831
|
+
|
|
1832
|
+
export interface ExecutionResult {
|
|
1833
|
+
errorInfo?: ErrorInfo;
|
|
1834
|
+
|
|
1835
|
+
bytesProcessed?: number;
|
|
1836
|
+
|
|
1837
|
+
bytesWritten?: number;
|
|
1838
|
+
|
|
1839
|
+
recordsProcessed?: number;
|
|
1840
|
+
}
|
|
1841
|
+
|
|
1842
|
+
export interface ExecutionRecord {
|
|
1843
|
+
executionId?: string;
|
|
1844
|
+
|
|
1845
|
+
executionStatus?: ExecutionStatus | string;
|
|
1846
|
+
|
|
1847
|
+
executionResult?: ExecutionResult;
|
|
1848
|
+
|
|
1849
|
+
startedAt?: Date;
|
|
1850
|
+
|
|
1851
|
+
lastUpdatedAt?: Date;
|
|
1852
|
+
|
|
1853
|
+
dataPullStartTime?: Date;
|
|
1854
|
+
|
|
1855
|
+
dataPullEndTime?: Date;
|
|
1856
|
+
}
|
|
1857
|
+
export interface DescribeFlowExecutionRecordsResponse {
|
|
1858
|
+
flowExecutions?: ExecutionRecord[];
|
|
1859
|
+
|
|
1860
|
+
nextToken?: string;
|
|
1861
|
+
}
|
|
1862
|
+
|
|
1863
|
+
export interface FlowDefinition {
|
|
1864
|
+
flowArn?: string;
|
|
1865
|
+
|
|
1866
|
+
description?: string;
|
|
1867
|
+
|
|
1868
|
+
flowName?: string;
|
|
1869
|
+
|
|
1870
|
+
flowStatus?: FlowStatus | string;
|
|
1871
|
+
|
|
1872
|
+
sourceConnectorType?: ConnectorType | string;
|
|
1873
|
+
|
|
1874
|
+
sourceConnectorLabel?: string;
|
|
1875
|
+
|
|
1876
|
+
destinationConnectorType?: ConnectorType | string;
|
|
1877
|
+
|
|
1878
|
+
destinationConnectorLabel?: string;
|
|
1879
|
+
|
|
1880
|
+
triggerType?: TriggerType | string;
|
|
1881
|
+
|
|
1882
|
+
createdAt?: Date;
|
|
1883
|
+
|
|
1884
|
+
lastUpdatedAt?: Date;
|
|
1885
|
+
|
|
1886
|
+
createdBy?: string;
|
|
1887
|
+
|
|
1888
|
+
lastUpdatedBy?: string;
|
|
1889
|
+
|
|
1890
|
+
tags?: Record<string, string>;
|
|
1891
|
+
|
|
1892
|
+
lastRunExecutionDetails?: ExecutionDetails;
|
|
1893
|
+
}
|
|
1894
|
+
export interface ListConnectorEntitiesRequest {
|
|
1895
|
+
connectorProfileName?: string;
|
|
1896
|
+
|
|
1897
|
+
connectorType?: ConnectorType | string;
|
|
1898
|
+
|
|
1899
|
+
entitiesPath?: string;
|
|
1900
|
+
|
|
1901
|
+
apiVersion?: string;
|
|
1902
|
+
}
|
|
1903
|
+
export interface ListConnectorEntitiesResponse {
|
|
1904
|
+
connectorEntityMap: Record<string, ConnectorEntity[]> | undefined;
|
|
1905
|
+
}
|
|
1906
|
+
export interface ListConnectorsRequest {
|
|
1907
|
+
maxResults?: number;
|
|
1908
|
+
|
|
1909
|
+
nextToken?: string;
|
|
1910
|
+
}
|
|
1911
|
+
export interface ListConnectorsResponse {
|
|
1912
|
+
connectors?: ConnectorDetail[];
|
|
1913
|
+
|
|
1914
|
+
nextToken?: string;
|
|
1915
|
+
}
|
|
1916
|
+
export interface ListFlowsRequest {
|
|
1917
|
+
maxResults?: number;
|
|
1918
|
+
|
|
1919
|
+
nextToken?: string;
|
|
1920
|
+
}
|
|
1921
|
+
export interface ListFlowsResponse {
|
|
1922
|
+
flows?: FlowDefinition[];
|
|
1923
|
+
|
|
1924
|
+
nextToken?: string;
|
|
1925
|
+
}
|
|
1926
|
+
export interface ListTagsForResourceRequest {
|
|
1927
|
+
resourceArn: string | undefined;
|
|
1928
|
+
}
|
|
1929
|
+
export interface ListTagsForResourceResponse {
|
|
1930
|
+
tags?: Record<string, string>;
|
|
1931
|
+
}
|
|
1932
|
+
export interface RegisterConnectorRequest {
|
|
1933
|
+
connectorLabel?: string;
|
|
1934
|
+
|
|
1935
|
+
description?: string;
|
|
1936
|
+
|
|
1937
|
+
connectorProvisioningType?: ConnectorProvisioningType | string;
|
|
1938
|
+
|
|
1939
|
+
connectorProvisioningConfig?: ConnectorProvisioningConfig;
|
|
1940
|
+
}
|
|
1941
|
+
export interface RegisterConnectorResponse {
|
|
1942
|
+
connectorArn?: string;
|
|
1943
|
+
}
|
|
1944
|
+
|
|
1945
|
+
export declare class ThrottlingException extends __BaseException {
|
|
1946
|
+
readonly name: "ThrottlingException";
|
|
1947
|
+
readonly $fault: "client";
|
|
1948
|
+
|
|
1949
|
+
constructor(
|
|
1950
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
1951
|
+
);
|
|
1952
|
+
}
|
|
1953
|
+
export interface StartFlowRequest {
|
|
1954
|
+
flowName: string | undefined;
|
|
1955
|
+
}
|
|
1956
|
+
export interface StartFlowResponse {
|
|
1957
|
+
flowArn?: string;
|
|
1958
|
+
|
|
1959
|
+
flowStatus?: FlowStatus | string;
|
|
1960
|
+
|
|
1961
|
+
executionId?: string;
|
|
1962
|
+
}
|
|
1963
|
+
export interface StopFlowRequest {
|
|
1964
|
+
flowName: string | undefined;
|
|
1965
|
+
}
|
|
1966
|
+
export interface StopFlowResponse {
|
|
1967
|
+
flowArn?: string;
|
|
1968
|
+
|
|
1969
|
+
flowStatus?: FlowStatus | string;
|
|
1970
|
+
}
|
|
1971
|
+
|
|
1972
|
+
export declare class UnsupportedOperationException extends __BaseException {
|
|
1973
|
+
readonly name: "UnsupportedOperationException";
|
|
1974
|
+
readonly $fault: "client";
|
|
1975
|
+
|
|
1976
|
+
constructor(
|
|
1977
|
+
opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>
|
|
1978
|
+
);
|
|
1979
|
+
}
|
|
1980
|
+
export interface TagResourceRequest {
|
|
1981
|
+
resourceArn: string | undefined;
|
|
1982
|
+
|
|
1983
|
+
tags: Record<string, string> | undefined;
|
|
1984
|
+
}
|
|
1985
|
+
export interface TagResourceResponse {}
|
|
1986
|
+
export interface UnregisterConnectorRequest {
|
|
1987
|
+
connectorLabel: string | undefined;
|
|
1988
|
+
|
|
1989
|
+
forceDelete?: boolean;
|
|
1990
|
+
}
|
|
1991
|
+
export interface UnregisterConnectorResponse {}
|
|
1992
|
+
export interface UntagResourceRequest {
|
|
1993
|
+
resourceArn: string | undefined;
|
|
1994
|
+
|
|
1995
|
+
tagKeys: string[] | undefined;
|
|
1996
|
+
}
|
|
1997
|
+
export interface UntagResourceResponse {}
|
|
1998
|
+
export interface UpdateConnectorProfileRequest {
|
|
1999
|
+
connectorProfileName: string | undefined;
|
|
2000
|
+
|
|
2001
|
+
connectionMode: ConnectionMode | string | undefined;
|
|
2002
|
+
|
|
2003
|
+
connectorProfileConfig: ConnectorProfileConfig | undefined;
|
|
2004
|
+
}
|
|
2005
|
+
export interface UpdateConnectorProfileResponse {
|
|
2006
|
+
connectorProfileArn?: string;
|
|
2007
|
+
}
|
|
2008
|
+
export interface UpdateFlowRequest {
|
|
2009
|
+
flowName: string | undefined;
|
|
2010
|
+
|
|
2011
|
+
description?: string;
|
|
2012
|
+
|
|
2013
|
+
triggerConfig: TriggerConfig | undefined;
|
|
2014
|
+
|
|
2015
|
+
sourceFlowConfig: SourceFlowConfig | undefined;
|
|
2016
|
+
|
|
2017
|
+
destinationFlowConfigList: DestinationFlowConfig[] | undefined;
|
|
2018
|
+
|
|
2019
|
+
tasks: Task[] | undefined;
|
|
2020
|
+
}
|
|
2021
|
+
export interface UpdateFlowResponse {
|
|
2022
|
+
flowStatus?: FlowStatus | string;
|
|
2023
|
+
}
|
|
2024
|
+
|
|
2025
|
+
export declare const AggregationConfigFilterSensitiveLog: (
|
|
2026
|
+
obj: AggregationConfig
|
|
2027
|
+
) => any;
|
|
2028
|
+
|
|
2029
|
+
export declare const AmplitudeConnectorProfileCredentialsFilterSensitiveLog: (
|
|
2030
|
+
obj: AmplitudeConnectorProfileCredentials
|
|
2031
|
+
) => any;
|
|
2032
|
+
|
|
2033
|
+
export declare const AmplitudeConnectorProfilePropertiesFilterSensitiveLog: (
|
|
2034
|
+
obj: AmplitudeConnectorProfileProperties
|
|
2035
|
+
) => any;
|
|
2036
|
+
|
|
2037
|
+
export declare const AmplitudeMetadataFilterSensitiveLog: (
|
|
2038
|
+
obj: AmplitudeMetadata
|
|
2039
|
+
) => any;
|
|
2040
|
+
|
|
2041
|
+
export declare const AmplitudeSourcePropertiesFilterSensitiveLog: (
|
|
2042
|
+
obj: AmplitudeSourceProperties
|
|
2043
|
+
) => any;
|
|
2044
|
+
|
|
2045
|
+
export declare const ApiKeyCredentialsFilterSensitiveLog: (
|
|
2046
|
+
obj: ApiKeyCredentials
|
|
2047
|
+
) => any;
|
|
2048
|
+
|
|
2049
|
+
export declare const AuthParameterFilterSensitiveLog: (
|
|
2050
|
+
obj: AuthParameter
|
|
2051
|
+
) => any;
|
|
2052
|
+
|
|
2053
|
+
export declare const CustomAuthConfigFilterSensitiveLog: (
|
|
2054
|
+
obj: CustomAuthConfig
|
|
2055
|
+
) => any;
|
|
2056
|
+
|
|
2057
|
+
export declare const OAuth2CustomParameterFilterSensitiveLog: (
|
|
2058
|
+
obj: OAuth2CustomParameter
|
|
2059
|
+
) => any;
|
|
2060
|
+
|
|
2061
|
+
export declare const OAuth2DefaultsFilterSensitiveLog: (
|
|
2062
|
+
obj: OAuth2Defaults
|
|
2063
|
+
) => any;
|
|
2064
|
+
|
|
2065
|
+
export declare const AuthenticationConfigFilterSensitiveLog: (
|
|
2066
|
+
obj: AuthenticationConfig
|
|
2067
|
+
) => any;
|
|
2068
|
+
|
|
2069
|
+
export declare const BasicAuthCredentialsFilterSensitiveLog: (
|
|
2070
|
+
obj: BasicAuthCredentials
|
|
2071
|
+
) => any;
|
|
2072
|
+
|
|
2073
|
+
export declare const CustomerProfilesMetadataFilterSensitiveLog: (
|
|
2074
|
+
obj: CustomerProfilesMetadata
|
|
2075
|
+
) => any;
|
|
2076
|
+
|
|
2077
|
+
export declare const DatadogMetadataFilterSensitiveLog: (
|
|
2078
|
+
obj: DatadogMetadata
|
|
2079
|
+
) => any;
|
|
2080
|
+
|
|
2081
|
+
export declare const DynatraceMetadataFilterSensitiveLog: (
|
|
2082
|
+
obj: DynatraceMetadata
|
|
2083
|
+
) => any;
|
|
2084
|
+
|
|
2085
|
+
export declare const EventBridgeMetadataFilterSensitiveLog: (
|
|
2086
|
+
obj: EventBridgeMetadata
|
|
2087
|
+
) => any;
|
|
2088
|
+
|
|
2089
|
+
export declare const GoogleAnalyticsMetadataFilterSensitiveLog: (
|
|
2090
|
+
obj: GoogleAnalyticsMetadata
|
|
2091
|
+
) => any;
|
|
2092
|
+
|
|
2093
|
+
export declare const HoneycodeMetadataFilterSensitiveLog: (
|
|
2094
|
+
obj: HoneycodeMetadata
|
|
2095
|
+
) => any;
|
|
2096
|
+
|
|
2097
|
+
export declare const InforNexusMetadataFilterSensitiveLog: (
|
|
2098
|
+
obj: InforNexusMetadata
|
|
2099
|
+
) => any;
|
|
2100
|
+
|
|
2101
|
+
export declare const MarketoMetadataFilterSensitiveLog: (
|
|
2102
|
+
obj: MarketoMetadata
|
|
2103
|
+
) => any;
|
|
2104
|
+
|
|
2105
|
+
export declare const RedshiftMetadataFilterSensitiveLog: (
|
|
2106
|
+
obj: RedshiftMetadata
|
|
2107
|
+
) => any;
|
|
2108
|
+
|
|
2109
|
+
export declare const S3MetadataFilterSensitiveLog: (obj: S3Metadata) => any;
|
|
2110
|
+
|
|
2111
|
+
export declare const SalesforceMetadataFilterSensitiveLog: (
|
|
2112
|
+
obj: SalesforceMetadata
|
|
2113
|
+
) => any;
|
|
2114
|
+
|
|
2115
|
+
export declare const SAPODataMetadataFilterSensitiveLog: (
|
|
2116
|
+
obj: SAPODataMetadata
|
|
2117
|
+
) => any;
|
|
2118
|
+
|
|
2119
|
+
export declare const ServiceNowMetadataFilterSensitiveLog: (
|
|
2120
|
+
obj: ServiceNowMetadata
|
|
2121
|
+
) => any;
|
|
2122
|
+
|
|
2123
|
+
export declare const SingularMetadataFilterSensitiveLog: (
|
|
2124
|
+
obj: SingularMetadata
|
|
2125
|
+
) => any;
|
|
2126
|
+
|
|
2127
|
+
export declare const SlackMetadataFilterSensitiveLog: (
|
|
2128
|
+
obj: SlackMetadata
|
|
2129
|
+
) => any;
|
|
2130
|
+
|
|
2131
|
+
export declare const SnowflakeMetadataFilterSensitiveLog: (
|
|
2132
|
+
obj: SnowflakeMetadata
|
|
2133
|
+
) => any;
|
|
2134
|
+
|
|
2135
|
+
export declare const TrendmicroMetadataFilterSensitiveLog: (
|
|
2136
|
+
obj: TrendmicroMetadata
|
|
2137
|
+
) => any;
|
|
2138
|
+
|
|
2139
|
+
export declare const UpsolverMetadataFilterSensitiveLog: (
|
|
2140
|
+
obj: UpsolverMetadata
|
|
2141
|
+
) => any;
|
|
2142
|
+
|
|
2143
|
+
export declare const VeevaMetadataFilterSensitiveLog: (
|
|
2144
|
+
obj: VeevaMetadata
|
|
2145
|
+
) => any;
|
|
2146
|
+
|
|
2147
|
+
export declare const ZendeskMetadataFilterSensitiveLog: (
|
|
2148
|
+
obj: ZendeskMetadata
|
|
2149
|
+
) => any;
|
|
2150
|
+
|
|
2151
|
+
export declare const ConnectorMetadataFilterSensitiveLog: (
|
|
2152
|
+
obj: ConnectorMetadata
|
|
2153
|
+
) => any;
|
|
2154
|
+
|
|
2155
|
+
export declare const LambdaConnectorProvisioningConfigFilterSensitiveLog: (
|
|
2156
|
+
obj: LambdaConnectorProvisioningConfig
|
|
2157
|
+
) => any;
|
|
2158
|
+
|
|
2159
|
+
export declare const ConnectorProvisioningConfigFilterSensitiveLog: (
|
|
2160
|
+
obj: ConnectorProvisioningConfig
|
|
2161
|
+
) => any;
|
|
2162
|
+
|
|
2163
|
+
export declare const ConnectorRuntimeSettingFilterSensitiveLog: (
|
|
2164
|
+
obj: ConnectorRuntimeSetting
|
|
2165
|
+
) => any;
|
|
2166
|
+
|
|
2167
|
+
export declare const ConnectorConfigurationFilterSensitiveLog: (
|
|
2168
|
+
obj: ConnectorConfiguration
|
|
2169
|
+
) => any;
|
|
2170
|
+
|
|
2171
|
+
export declare const ConnectorDetailFilterSensitiveLog: (
|
|
2172
|
+
obj: ConnectorDetail
|
|
2173
|
+
) => any;
|
|
2174
|
+
|
|
2175
|
+
export declare const ConnectorEntityFilterSensitiveLog: (
|
|
2176
|
+
obj: ConnectorEntity
|
|
2177
|
+
) => any;
|
|
2178
|
+
|
|
2179
|
+
export declare const DestinationFieldPropertiesFilterSensitiveLog: (
|
|
2180
|
+
obj: DestinationFieldProperties
|
|
2181
|
+
) => any;
|
|
2182
|
+
|
|
2183
|
+
export declare const SourceFieldPropertiesFilterSensitiveLog: (
|
|
2184
|
+
obj: SourceFieldProperties
|
|
2185
|
+
) => any;
|
|
2186
|
+
|
|
2187
|
+
export declare const RangeFilterSensitiveLog: (obj: Range) => any;
|
|
2188
|
+
|
|
2189
|
+
export declare const FieldTypeDetailsFilterSensitiveLog: (
|
|
2190
|
+
obj: FieldTypeDetails
|
|
2191
|
+
) => any;
|
|
2192
|
+
|
|
2193
|
+
export declare const SupportedFieldTypeDetailsFilterSensitiveLog: (
|
|
2194
|
+
obj: SupportedFieldTypeDetails
|
|
2195
|
+
) => any;
|
|
2196
|
+
|
|
2197
|
+
export declare const ConnectorEntityFieldFilterSensitiveLog: (
|
|
2198
|
+
obj: ConnectorEntityField
|
|
2199
|
+
) => any;
|
|
2200
|
+
|
|
2201
|
+
export declare const ConnectorOAuthRequestFilterSensitiveLog: (
|
|
2202
|
+
obj: ConnectorOAuthRequest
|
|
2203
|
+
) => any;
|
|
2204
|
+
|
|
2205
|
+
export declare const ConnectorOperatorFilterSensitiveLog: (
|
|
2206
|
+
obj: ConnectorOperator
|
|
2207
|
+
) => any;
|
|
2208
|
+
|
|
2209
|
+
export declare const OAuth2PropertiesFilterSensitiveLog: (
|
|
2210
|
+
obj: OAuth2Properties
|
|
2211
|
+
) => any;
|
|
2212
|
+
|
|
2213
|
+
export declare const CustomConnectorProfilePropertiesFilterSensitiveLog: (
|
|
2214
|
+
obj: CustomConnectorProfileProperties
|
|
2215
|
+
) => any;
|
|
2216
|
+
|
|
2217
|
+
export declare const DatadogConnectorProfilePropertiesFilterSensitiveLog: (
|
|
2218
|
+
obj: DatadogConnectorProfileProperties
|
|
2219
|
+
) => any;
|
|
2220
|
+
|
|
2221
|
+
export declare const DynatraceConnectorProfilePropertiesFilterSensitiveLog: (
|
|
2222
|
+
obj: DynatraceConnectorProfileProperties
|
|
2223
|
+
) => any;
|
|
2224
|
+
|
|
2225
|
+
export declare const GoogleAnalyticsConnectorProfilePropertiesFilterSensitiveLog: (
|
|
2226
|
+
obj: GoogleAnalyticsConnectorProfileProperties
|
|
2227
|
+
) => any;
|
|
2228
|
+
|
|
2229
|
+
export declare const HoneycodeConnectorProfilePropertiesFilterSensitiveLog: (
|
|
2230
|
+
obj: HoneycodeConnectorProfileProperties
|
|
2231
|
+
) => any;
|
|
2232
|
+
|
|
2233
|
+
export declare const InforNexusConnectorProfilePropertiesFilterSensitiveLog: (
|
|
2234
|
+
obj: InforNexusConnectorProfileProperties
|
|
2235
|
+
) => any;
|
|
2236
|
+
|
|
2237
|
+
export declare const MarketoConnectorProfilePropertiesFilterSensitiveLog: (
|
|
2238
|
+
obj: MarketoConnectorProfileProperties
|
|
2239
|
+
) => any;
|
|
2240
|
+
|
|
2241
|
+
export declare const RedshiftConnectorProfilePropertiesFilterSensitiveLog: (
|
|
2242
|
+
obj: RedshiftConnectorProfileProperties
|
|
2243
|
+
) => any;
|
|
2244
|
+
|
|
2245
|
+
export declare const SalesforceConnectorProfilePropertiesFilterSensitiveLog: (
|
|
2246
|
+
obj: SalesforceConnectorProfileProperties
|
|
2247
|
+
) => any;
|
|
2248
|
+
|
|
2249
|
+
export declare const OAuthPropertiesFilterSensitiveLog: (
|
|
2250
|
+
obj: OAuthProperties
|
|
2251
|
+
) => any;
|
|
2252
|
+
|
|
2253
|
+
export declare const SAPODataConnectorProfilePropertiesFilterSensitiveLog: (
|
|
2254
|
+
obj: SAPODataConnectorProfileProperties
|
|
2255
|
+
) => any;
|
|
2256
|
+
|
|
2257
|
+
export declare const ServiceNowConnectorProfilePropertiesFilterSensitiveLog: (
|
|
2258
|
+
obj: ServiceNowConnectorProfileProperties
|
|
2259
|
+
) => any;
|
|
2260
|
+
|
|
2261
|
+
export declare const SingularConnectorProfilePropertiesFilterSensitiveLog: (
|
|
2262
|
+
obj: SingularConnectorProfileProperties
|
|
2263
|
+
) => any;
|
|
2264
|
+
|
|
2265
|
+
export declare const SlackConnectorProfilePropertiesFilterSensitiveLog: (
|
|
2266
|
+
obj: SlackConnectorProfileProperties
|
|
2267
|
+
) => any;
|
|
2268
|
+
|
|
2269
|
+
export declare const SnowflakeConnectorProfilePropertiesFilterSensitiveLog: (
|
|
2270
|
+
obj: SnowflakeConnectorProfileProperties
|
|
2271
|
+
) => any;
|
|
2272
|
+
|
|
2273
|
+
export declare const TrendmicroConnectorProfilePropertiesFilterSensitiveLog: (
|
|
2274
|
+
obj: TrendmicroConnectorProfileProperties
|
|
2275
|
+
) => any;
|
|
2276
|
+
|
|
2277
|
+
export declare const VeevaConnectorProfilePropertiesFilterSensitiveLog: (
|
|
2278
|
+
obj: VeevaConnectorProfileProperties
|
|
2279
|
+
) => any;
|
|
2280
|
+
|
|
2281
|
+
export declare const ZendeskConnectorProfilePropertiesFilterSensitiveLog: (
|
|
2282
|
+
obj: ZendeskConnectorProfileProperties
|
|
2283
|
+
) => any;
|
|
2284
|
+
|
|
2285
|
+
export declare const ConnectorProfilePropertiesFilterSensitiveLog: (
|
|
2286
|
+
obj: ConnectorProfileProperties
|
|
2287
|
+
) => any;
|
|
2288
|
+
|
|
2289
|
+
export declare const PrivateConnectionProvisioningStateFilterSensitiveLog: (
|
|
2290
|
+
obj: PrivateConnectionProvisioningState
|
|
2291
|
+
) => any;
|
|
2292
|
+
|
|
2293
|
+
export declare const ConnectorProfileFilterSensitiveLog: (
|
|
2294
|
+
obj: ConnectorProfile
|
|
2295
|
+
) => any;
|
|
2296
|
+
|
|
2297
|
+
export declare const CustomAuthCredentialsFilterSensitiveLog: (
|
|
2298
|
+
obj: CustomAuthCredentials
|
|
2299
|
+
) => any;
|
|
2300
|
+
|
|
2301
|
+
export declare const OAuth2CredentialsFilterSensitiveLog: (
|
|
2302
|
+
obj: OAuth2Credentials
|
|
2303
|
+
) => any;
|
|
2304
|
+
|
|
2305
|
+
export declare const CustomConnectorProfileCredentialsFilterSensitiveLog: (
|
|
2306
|
+
obj: CustomConnectorProfileCredentials
|
|
2307
|
+
) => any;
|
|
2308
|
+
|
|
2309
|
+
export declare const DatadogConnectorProfileCredentialsFilterSensitiveLog: (
|
|
2310
|
+
obj: DatadogConnectorProfileCredentials
|
|
2311
|
+
) => any;
|
|
2312
|
+
|
|
2313
|
+
export declare const DynatraceConnectorProfileCredentialsFilterSensitiveLog: (
|
|
2314
|
+
obj: DynatraceConnectorProfileCredentials
|
|
2315
|
+
) => any;
|
|
2316
|
+
|
|
2317
|
+
export declare const GoogleAnalyticsConnectorProfileCredentialsFilterSensitiveLog: (
|
|
2318
|
+
obj: GoogleAnalyticsConnectorProfileCredentials
|
|
2319
|
+
) => any;
|
|
2320
|
+
|
|
2321
|
+
export declare const HoneycodeConnectorProfileCredentialsFilterSensitiveLog: (
|
|
2322
|
+
obj: HoneycodeConnectorProfileCredentials
|
|
2323
|
+
) => any;
|
|
2324
|
+
|
|
2325
|
+
export declare const InforNexusConnectorProfileCredentialsFilterSensitiveLog: (
|
|
2326
|
+
obj: InforNexusConnectorProfileCredentials
|
|
2327
|
+
) => any;
|
|
2328
|
+
|
|
2329
|
+
export declare const MarketoConnectorProfileCredentialsFilterSensitiveLog: (
|
|
2330
|
+
obj: MarketoConnectorProfileCredentials
|
|
2331
|
+
) => any;
|
|
2332
|
+
|
|
2333
|
+
export declare const RedshiftConnectorProfileCredentialsFilterSensitiveLog: (
|
|
2334
|
+
obj: RedshiftConnectorProfileCredentials
|
|
2335
|
+
) => any;
|
|
2336
|
+
|
|
2337
|
+
export declare const SalesforceConnectorProfileCredentialsFilterSensitiveLog: (
|
|
2338
|
+
obj: SalesforceConnectorProfileCredentials
|
|
2339
|
+
) => any;
|
|
2340
|
+
|
|
2341
|
+
export declare const OAuthCredentialsFilterSensitiveLog: (
|
|
2342
|
+
obj: OAuthCredentials
|
|
2343
|
+
) => any;
|
|
2344
|
+
|
|
2345
|
+
export declare const SAPODataConnectorProfileCredentialsFilterSensitiveLog: (
|
|
2346
|
+
obj: SAPODataConnectorProfileCredentials
|
|
2347
|
+
) => any;
|
|
2348
|
+
|
|
2349
|
+
export declare const ServiceNowConnectorProfileCredentialsFilterSensitiveLog: (
|
|
2350
|
+
obj: ServiceNowConnectorProfileCredentials
|
|
2351
|
+
) => any;
|
|
2352
|
+
|
|
2353
|
+
export declare const SingularConnectorProfileCredentialsFilterSensitiveLog: (
|
|
2354
|
+
obj: SingularConnectorProfileCredentials
|
|
2355
|
+
) => any;
|
|
2356
|
+
|
|
2357
|
+
export declare const SlackConnectorProfileCredentialsFilterSensitiveLog: (
|
|
2358
|
+
obj: SlackConnectorProfileCredentials
|
|
2359
|
+
) => any;
|
|
2360
|
+
|
|
2361
|
+
export declare const SnowflakeConnectorProfileCredentialsFilterSensitiveLog: (
|
|
2362
|
+
obj: SnowflakeConnectorProfileCredentials
|
|
2363
|
+
) => any;
|
|
2364
|
+
|
|
2365
|
+
export declare const TrendmicroConnectorProfileCredentialsFilterSensitiveLog: (
|
|
2366
|
+
obj: TrendmicroConnectorProfileCredentials
|
|
2367
|
+
) => any;
|
|
2368
|
+
|
|
2369
|
+
export declare const VeevaConnectorProfileCredentialsFilterSensitiveLog: (
|
|
2370
|
+
obj: VeevaConnectorProfileCredentials
|
|
2371
|
+
) => any;
|
|
2372
|
+
|
|
2373
|
+
export declare const ZendeskConnectorProfileCredentialsFilterSensitiveLog: (
|
|
2374
|
+
obj: ZendeskConnectorProfileCredentials
|
|
2375
|
+
) => any;
|
|
2376
|
+
|
|
2377
|
+
export declare const ConnectorProfileCredentialsFilterSensitiveLog: (
|
|
2378
|
+
obj: ConnectorProfileCredentials
|
|
2379
|
+
) => any;
|
|
2380
|
+
|
|
2381
|
+
export declare const ConnectorProfileConfigFilterSensitiveLog: (
|
|
2382
|
+
obj: ConnectorProfileConfig
|
|
2383
|
+
) => any;
|
|
2384
|
+
|
|
2385
|
+
export declare const CreateConnectorProfileRequestFilterSensitiveLog: (
|
|
2386
|
+
obj: CreateConnectorProfileRequest
|
|
2387
|
+
) => any;
|
|
2388
|
+
|
|
2389
|
+
export declare const CreateConnectorProfileResponseFilterSensitiveLog: (
|
|
2390
|
+
obj: CreateConnectorProfileResponse
|
|
2391
|
+
) => any;
|
|
2392
|
+
|
|
2393
|
+
export declare const ErrorHandlingConfigFilterSensitiveLog: (
|
|
2394
|
+
obj: ErrorHandlingConfig
|
|
2395
|
+
) => any;
|
|
2396
|
+
|
|
2397
|
+
export declare const CustomConnectorDestinationPropertiesFilterSensitiveLog: (
|
|
2398
|
+
obj: CustomConnectorDestinationProperties
|
|
2399
|
+
) => any;
|
|
2400
|
+
|
|
2401
|
+
export declare const CustomerProfilesDestinationPropertiesFilterSensitiveLog: (
|
|
2402
|
+
obj: CustomerProfilesDestinationProperties
|
|
2403
|
+
) => any;
|
|
2404
|
+
|
|
2405
|
+
export declare const EventBridgeDestinationPropertiesFilterSensitiveLog: (
|
|
2406
|
+
obj: EventBridgeDestinationProperties
|
|
2407
|
+
) => any;
|
|
2408
|
+
|
|
2409
|
+
export declare const HoneycodeDestinationPropertiesFilterSensitiveLog: (
|
|
2410
|
+
obj: HoneycodeDestinationProperties
|
|
2411
|
+
) => any;
|
|
2412
|
+
|
|
2413
|
+
export declare const LookoutMetricsDestinationPropertiesFilterSensitiveLog: (
|
|
2414
|
+
obj: LookoutMetricsDestinationProperties
|
|
2415
|
+
) => any;
|
|
2416
|
+
|
|
2417
|
+
export declare const MarketoDestinationPropertiesFilterSensitiveLog: (
|
|
2418
|
+
obj: MarketoDestinationProperties
|
|
2419
|
+
) => any;
|
|
2420
|
+
|
|
2421
|
+
export declare const RedshiftDestinationPropertiesFilterSensitiveLog: (
|
|
2422
|
+
obj: RedshiftDestinationProperties
|
|
2423
|
+
) => any;
|
|
2424
|
+
|
|
2425
|
+
export declare const PrefixConfigFilterSensitiveLog: (obj: PrefixConfig) => any;
|
|
2426
|
+
|
|
2427
|
+
export declare const S3OutputFormatConfigFilterSensitiveLog: (
|
|
2428
|
+
obj: S3OutputFormatConfig
|
|
2429
|
+
) => any;
|
|
2430
|
+
|
|
2431
|
+
export declare const S3DestinationPropertiesFilterSensitiveLog: (
|
|
2432
|
+
obj: S3DestinationProperties
|
|
2433
|
+
) => any;
|
|
2434
|
+
|
|
2435
|
+
export declare const SalesforceDestinationPropertiesFilterSensitiveLog: (
|
|
2436
|
+
obj: SalesforceDestinationProperties
|
|
2437
|
+
) => any;
|
|
2438
|
+
|
|
2439
|
+
export declare const SuccessResponseHandlingConfigFilterSensitiveLog: (
|
|
2440
|
+
obj: SuccessResponseHandlingConfig
|
|
2441
|
+
) => any;
|
|
2442
|
+
|
|
2443
|
+
export declare const SAPODataDestinationPropertiesFilterSensitiveLog: (
|
|
2444
|
+
obj: SAPODataDestinationProperties
|
|
2445
|
+
) => any;
|
|
2446
|
+
|
|
2447
|
+
export declare const SnowflakeDestinationPropertiesFilterSensitiveLog: (
|
|
2448
|
+
obj: SnowflakeDestinationProperties
|
|
2449
|
+
) => any;
|
|
2450
|
+
|
|
2451
|
+
export declare const UpsolverS3OutputFormatConfigFilterSensitiveLog: (
|
|
2452
|
+
obj: UpsolverS3OutputFormatConfig
|
|
2453
|
+
) => any;
|
|
2454
|
+
|
|
2455
|
+
export declare const UpsolverDestinationPropertiesFilterSensitiveLog: (
|
|
2456
|
+
obj: UpsolverDestinationProperties
|
|
2457
|
+
) => any;
|
|
2458
|
+
|
|
2459
|
+
export declare const ZendeskDestinationPropertiesFilterSensitiveLog: (
|
|
2460
|
+
obj: ZendeskDestinationProperties
|
|
2461
|
+
) => any;
|
|
2462
|
+
|
|
2463
|
+
export declare const DestinationConnectorPropertiesFilterSensitiveLog: (
|
|
2464
|
+
obj: DestinationConnectorProperties
|
|
2465
|
+
) => any;
|
|
2466
|
+
|
|
2467
|
+
export declare const DestinationFlowConfigFilterSensitiveLog: (
|
|
2468
|
+
obj: DestinationFlowConfig
|
|
2469
|
+
) => any;
|
|
2470
|
+
|
|
2471
|
+
export declare const IncrementalPullConfigFilterSensitiveLog: (
|
|
2472
|
+
obj: IncrementalPullConfig
|
|
2473
|
+
) => any;
|
|
2474
|
+
|
|
2475
|
+
export declare const CustomConnectorSourcePropertiesFilterSensitiveLog: (
|
|
2476
|
+
obj: CustomConnectorSourceProperties
|
|
2477
|
+
) => any;
|
|
2478
|
+
|
|
2479
|
+
export declare const DatadogSourcePropertiesFilterSensitiveLog: (
|
|
2480
|
+
obj: DatadogSourceProperties
|
|
2481
|
+
) => any;
|
|
2482
|
+
|
|
2483
|
+
export declare const DynatraceSourcePropertiesFilterSensitiveLog: (
|
|
2484
|
+
obj: DynatraceSourceProperties
|
|
2485
|
+
) => any;
|
|
2486
|
+
|
|
2487
|
+
export declare const GoogleAnalyticsSourcePropertiesFilterSensitiveLog: (
|
|
2488
|
+
obj: GoogleAnalyticsSourceProperties
|
|
2489
|
+
) => any;
|
|
2490
|
+
|
|
2491
|
+
export declare const InforNexusSourcePropertiesFilterSensitiveLog: (
|
|
2492
|
+
obj: InforNexusSourceProperties
|
|
2493
|
+
) => any;
|
|
2494
|
+
|
|
2495
|
+
export declare const MarketoSourcePropertiesFilterSensitiveLog: (
|
|
2496
|
+
obj: MarketoSourceProperties
|
|
2497
|
+
) => any;
|
|
2498
|
+
|
|
2499
|
+
export declare const S3InputFormatConfigFilterSensitiveLog: (
|
|
2500
|
+
obj: S3InputFormatConfig
|
|
2501
|
+
) => any;
|
|
2502
|
+
|
|
2503
|
+
export declare const S3SourcePropertiesFilterSensitiveLog: (
|
|
2504
|
+
obj: S3SourceProperties
|
|
2505
|
+
) => any;
|
|
2506
|
+
|
|
2507
|
+
export declare const SalesforceSourcePropertiesFilterSensitiveLog: (
|
|
2508
|
+
obj: SalesforceSourceProperties
|
|
2509
|
+
) => any;
|
|
2510
|
+
|
|
2511
|
+
export declare const SAPODataSourcePropertiesFilterSensitiveLog: (
|
|
2512
|
+
obj: SAPODataSourceProperties
|
|
2513
|
+
) => any;
|
|
2514
|
+
|
|
2515
|
+
export declare const ServiceNowSourcePropertiesFilterSensitiveLog: (
|
|
2516
|
+
obj: ServiceNowSourceProperties
|
|
2517
|
+
) => any;
|
|
2518
|
+
|
|
2519
|
+
export declare const SingularSourcePropertiesFilterSensitiveLog: (
|
|
2520
|
+
obj: SingularSourceProperties
|
|
2521
|
+
) => any;
|
|
2522
|
+
|
|
2523
|
+
export declare const SlackSourcePropertiesFilterSensitiveLog: (
|
|
2524
|
+
obj: SlackSourceProperties
|
|
2525
|
+
) => any;
|
|
2526
|
+
|
|
2527
|
+
export declare const TrendmicroSourcePropertiesFilterSensitiveLog: (
|
|
2528
|
+
obj: TrendmicroSourceProperties
|
|
2529
|
+
) => any;
|
|
2530
|
+
|
|
2531
|
+
export declare const VeevaSourcePropertiesFilterSensitiveLog: (
|
|
2532
|
+
obj: VeevaSourceProperties
|
|
2533
|
+
) => any;
|
|
2534
|
+
|
|
2535
|
+
export declare const ZendeskSourcePropertiesFilterSensitiveLog: (
|
|
2536
|
+
obj: ZendeskSourceProperties
|
|
2537
|
+
) => any;
|
|
2538
|
+
|
|
2539
|
+
export declare const SourceConnectorPropertiesFilterSensitiveLog: (
|
|
2540
|
+
obj: SourceConnectorProperties
|
|
2541
|
+
) => any;
|
|
2542
|
+
|
|
2543
|
+
export declare const SourceFlowConfigFilterSensitiveLog: (
|
|
2544
|
+
obj: SourceFlowConfig
|
|
2545
|
+
) => any;
|
|
2546
|
+
|
|
2547
|
+
export declare const TaskFilterSensitiveLog: (obj: Task) => any;
|
|
2548
|
+
|
|
2549
|
+
export declare const ScheduledTriggerPropertiesFilterSensitiveLog: (
|
|
2550
|
+
obj: ScheduledTriggerProperties
|
|
2551
|
+
) => any;
|
|
2552
|
+
|
|
2553
|
+
export declare const TriggerPropertiesFilterSensitiveLog: (
|
|
2554
|
+
obj: TriggerProperties
|
|
2555
|
+
) => any;
|
|
2556
|
+
|
|
2557
|
+
export declare const TriggerConfigFilterSensitiveLog: (
|
|
2558
|
+
obj: TriggerConfig
|
|
2559
|
+
) => any;
|
|
2560
|
+
|
|
2561
|
+
export declare const CreateFlowRequestFilterSensitiveLog: (
|
|
2562
|
+
obj: CreateFlowRequest
|
|
2563
|
+
) => any;
|
|
2564
|
+
|
|
2565
|
+
export declare const CreateFlowResponseFilterSensitiveLog: (
|
|
2566
|
+
obj: CreateFlowResponse
|
|
2567
|
+
) => any;
|
|
2568
|
+
|
|
2569
|
+
export declare const DeleteConnectorProfileRequestFilterSensitiveLog: (
|
|
2570
|
+
obj: DeleteConnectorProfileRequest
|
|
2571
|
+
) => any;
|
|
2572
|
+
|
|
2573
|
+
export declare const DeleteConnectorProfileResponseFilterSensitiveLog: (
|
|
2574
|
+
obj: DeleteConnectorProfileResponse
|
|
2575
|
+
) => any;
|
|
2576
|
+
|
|
2577
|
+
export declare const DeleteFlowRequestFilterSensitiveLog: (
|
|
2578
|
+
obj: DeleteFlowRequest
|
|
2579
|
+
) => any;
|
|
2580
|
+
|
|
2581
|
+
export declare const DeleteFlowResponseFilterSensitiveLog: (
|
|
2582
|
+
obj: DeleteFlowResponse
|
|
2583
|
+
) => any;
|
|
2584
|
+
|
|
2585
|
+
export declare const DescribeConnectorRequestFilterSensitiveLog: (
|
|
2586
|
+
obj: DescribeConnectorRequest
|
|
2587
|
+
) => any;
|
|
2588
|
+
|
|
2589
|
+
export declare const DescribeConnectorResponseFilterSensitiveLog: (
|
|
2590
|
+
obj: DescribeConnectorResponse
|
|
2591
|
+
) => any;
|
|
2592
|
+
|
|
2593
|
+
export declare const DescribeConnectorEntityRequestFilterSensitiveLog: (
|
|
2594
|
+
obj: DescribeConnectorEntityRequest
|
|
2595
|
+
) => any;
|
|
2596
|
+
|
|
2597
|
+
export declare const DescribeConnectorEntityResponseFilterSensitiveLog: (
|
|
2598
|
+
obj: DescribeConnectorEntityResponse
|
|
2599
|
+
) => any;
|
|
2600
|
+
|
|
2601
|
+
export declare const DescribeConnectorProfilesRequestFilterSensitiveLog: (
|
|
2602
|
+
obj: DescribeConnectorProfilesRequest
|
|
2603
|
+
) => any;
|
|
2604
|
+
|
|
2605
|
+
export declare const DescribeConnectorProfilesResponseFilterSensitiveLog: (
|
|
2606
|
+
obj: DescribeConnectorProfilesResponse
|
|
2607
|
+
) => any;
|
|
2608
|
+
|
|
2609
|
+
export declare const DescribeConnectorsRequestFilterSensitiveLog: (
|
|
2610
|
+
obj: DescribeConnectorsRequest
|
|
2611
|
+
) => any;
|
|
2612
|
+
|
|
2613
|
+
export declare const DescribeConnectorsResponseFilterSensitiveLog: (
|
|
2614
|
+
obj: DescribeConnectorsResponse
|
|
2615
|
+
) => any;
|
|
2616
|
+
|
|
2617
|
+
export declare const DescribeFlowRequestFilterSensitiveLog: (
|
|
2618
|
+
obj: DescribeFlowRequest
|
|
2619
|
+
) => any;
|
|
2620
|
+
|
|
2621
|
+
export declare const ExecutionDetailsFilterSensitiveLog: (
|
|
2622
|
+
obj: ExecutionDetails
|
|
2623
|
+
) => any;
|
|
2624
|
+
|
|
2625
|
+
export declare const DescribeFlowResponseFilterSensitiveLog: (
|
|
2626
|
+
obj: DescribeFlowResponse
|
|
2627
|
+
) => any;
|
|
2628
|
+
|
|
2629
|
+
export declare const DescribeFlowExecutionRecordsRequestFilterSensitiveLog: (
|
|
2630
|
+
obj: DescribeFlowExecutionRecordsRequest
|
|
2631
|
+
) => any;
|
|
2632
|
+
|
|
2633
|
+
export declare const ErrorInfoFilterSensitiveLog: (obj: ErrorInfo) => any;
|
|
2634
|
+
|
|
2635
|
+
export declare const ExecutionResultFilterSensitiveLog: (
|
|
2636
|
+
obj: ExecutionResult
|
|
2637
|
+
) => any;
|
|
2638
|
+
|
|
2639
|
+
export declare const ExecutionRecordFilterSensitiveLog: (
|
|
2640
|
+
obj: ExecutionRecord
|
|
2641
|
+
) => any;
|
|
2642
|
+
|
|
2643
|
+
export declare const DescribeFlowExecutionRecordsResponseFilterSensitiveLog: (
|
|
2644
|
+
obj: DescribeFlowExecutionRecordsResponse
|
|
2645
|
+
) => any;
|
|
2646
|
+
|
|
2647
|
+
export declare const FlowDefinitionFilterSensitiveLog: (
|
|
2648
|
+
obj: FlowDefinition
|
|
2649
|
+
) => any;
|
|
2650
|
+
|
|
2651
|
+
export declare const ListConnectorEntitiesRequestFilterSensitiveLog: (
|
|
2652
|
+
obj: ListConnectorEntitiesRequest
|
|
2653
|
+
) => any;
|
|
2654
|
+
|
|
2655
|
+
export declare const ListConnectorEntitiesResponseFilterSensitiveLog: (
|
|
2656
|
+
obj: ListConnectorEntitiesResponse
|
|
2657
|
+
) => any;
|
|
2658
|
+
|
|
2659
|
+
export declare const ListConnectorsRequestFilterSensitiveLog: (
|
|
2660
|
+
obj: ListConnectorsRequest
|
|
2661
|
+
) => any;
|
|
2662
|
+
|
|
2663
|
+
export declare const ListConnectorsResponseFilterSensitiveLog: (
|
|
2664
|
+
obj: ListConnectorsResponse
|
|
2665
|
+
) => any;
|
|
2666
|
+
|
|
2667
|
+
export declare const ListFlowsRequestFilterSensitiveLog: (
|
|
2668
|
+
obj: ListFlowsRequest
|
|
2669
|
+
) => any;
|
|
2670
|
+
|
|
2671
|
+
export declare const ListFlowsResponseFilterSensitiveLog: (
|
|
2672
|
+
obj: ListFlowsResponse
|
|
2673
|
+
) => any;
|
|
2674
|
+
|
|
2675
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
2676
|
+
obj: ListTagsForResourceRequest
|
|
2677
|
+
) => any;
|
|
2678
|
+
|
|
2679
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
2680
|
+
obj: ListTagsForResourceResponse
|
|
2681
|
+
) => any;
|
|
2682
|
+
|
|
2683
|
+
export declare const RegisterConnectorRequestFilterSensitiveLog: (
|
|
2684
|
+
obj: RegisterConnectorRequest
|
|
2685
|
+
) => any;
|
|
2686
|
+
|
|
2687
|
+
export declare const RegisterConnectorResponseFilterSensitiveLog: (
|
|
2688
|
+
obj: RegisterConnectorResponse
|
|
2689
|
+
) => any;
|
|
2690
|
+
|
|
2691
|
+
export declare const StartFlowRequestFilterSensitiveLog: (
|
|
2692
|
+
obj: StartFlowRequest
|
|
2693
|
+
) => any;
|
|
2694
|
+
|
|
2695
|
+
export declare const StartFlowResponseFilterSensitiveLog: (
|
|
2696
|
+
obj: StartFlowResponse
|
|
2697
|
+
) => any;
|
|
2698
|
+
|
|
2699
|
+
export declare const StopFlowRequestFilterSensitiveLog: (
|
|
2700
|
+
obj: StopFlowRequest
|
|
2701
|
+
) => any;
|
|
2702
|
+
|
|
2703
|
+
export declare const StopFlowResponseFilterSensitiveLog: (
|
|
2704
|
+
obj: StopFlowResponse
|
|
2705
|
+
) => any;
|
|
2706
|
+
|
|
2707
|
+
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
2708
|
+
obj: TagResourceRequest
|
|
2709
|
+
) => any;
|
|
2710
|
+
|
|
2711
|
+
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
2712
|
+
obj: TagResourceResponse
|
|
2713
|
+
) => any;
|
|
2714
|
+
|
|
2715
|
+
export declare const UnregisterConnectorRequestFilterSensitiveLog: (
|
|
2716
|
+
obj: UnregisterConnectorRequest
|
|
2717
|
+
) => any;
|
|
2718
|
+
|
|
2719
|
+
export declare const UnregisterConnectorResponseFilterSensitiveLog: (
|
|
2720
|
+
obj: UnregisterConnectorResponse
|
|
2721
|
+
) => any;
|
|
2722
|
+
|
|
2723
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
2724
|
+
obj: UntagResourceRequest
|
|
2725
|
+
) => any;
|
|
2726
|
+
|
|
2727
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
2728
|
+
obj: UntagResourceResponse
|
|
2729
|
+
) => any;
|
|
2730
|
+
|
|
2731
|
+
export declare const UpdateConnectorProfileRequestFilterSensitiveLog: (
|
|
2732
|
+
obj: UpdateConnectorProfileRequest
|
|
2733
|
+
) => any;
|
|
2734
|
+
|
|
2735
|
+
export declare const UpdateConnectorProfileResponseFilterSensitiveLog: (
|
|
2736
|
+
obj: UpdateConnectorProfileResponse
|
|
2737
|
+
) => any;
|
|
2738
|
+
|
|
2739
|
+
export declare const UpdateFlowRequestFilterSensitiveLog: (
|
|
2740
|
+
obj: UpdateFlowRequest
|
|
2741
|
+
) => any;
|
|
2742
|
+
|
|
2743
|
+
export declare const UpdateFlowResponseFilterSensitiveLog: (
|
|
2744
|
+
obj: UpdateFlowResponse
|
|
2745
|
+
) => any;
|