File tree 5 files changed +100
-2
lines changed
tests/CTS/requests/ingestion
5 files changed +100
-2
lines changed Original file line number Diff line number Diff line change @@ -460,10 +460,34 @@ DockerStreamsInput:
460
460
type : object
461
461
properties :
462
462
streams :
463
- type : object
463
+ type : array
464
+ items :
465
+ $ref : ' #/DockerStreams'
464
466
required :
465
467
- streams
466
468
469
+ DockerStreams :
470
+ type : object
471
+ properties :
472
+ name :
473
+ type : string
474
+ description : The name of the stream to fetch the data from (e.g. table name).
475
+ properties :
476
+ type : array
477
+ description : The properties of the stream to select (e.g. column).
478
+ items :
479
+ type : string
480
+ syncMode :
481
+ $ref : ' #/DockerStreamsSyncMode'
482
+ required :
483
+ - name
484
+ - syncMode
485
+
486
+ DockerStreamsSyncMode :
487
+ type : string
488
+ description : The strategy to use to fetch the data.
489
+ enum : [incremental, fullTable]
490
+
467
491
failureThreshold :
468
492
type : integer
469
493
minimum : 0
Original file line number Diff line number Diff line change 3
3
- transformations
4
4
summary : Try a transformation
5
5
description : Try a transformation.
6
- operationId : tryTransformations
6
+ operationId : tryTransformation
7
7
x-acl :
8
8
- addObject
9
9
- deleteIndex
Original file line number Diff line number Diff line change 34
34
"action" : " replace"
35
35
}
36
36
}
37
+ },
38
+ {
39
+ "testName" : " task shopify" ,
40
+ "parameters" : {
41
+ "sourceID" : " search" ,
42
+ "destinationID" : " destinationName" ,
43
+ "cron" : " * * * * *" ,
44
+ "action" : " replace" ,
45
+ "input" : {
46
+ "streams" : [
47
+ {
48
+ "name" : " foo" ,
49
+ "syncMode" : " incremental"
50
+ }
51
+ ]
52
+ }
53
+ },
54
+ "request" : {
55
+ "path" : " /2/tasks" ,
56
+ "method" : " POST" ,
57
+ "body" : {
58
+ "sourceID" : " search" ,
59
+ "destinationID" : " destinationName" ,
60
+ "cron" : " * * * * *" ,
61
+ "action" : " replace" ,
62
+ "input" : {
63
+ "streams" : [
64
+ {
65
+ "name" : " foo" ,
66
+ "syncMode" : " incremental"
67
+ }
68
+ ]
69
+ }
70
+ }
71
+ }
37
72
}
38
73
]
Original file line number Diff line number Diff line change 69
69
"action" : " replace"
70
70
}
71
71
}
72
+ },
73
+ {
74
+ "testName" : " task shopify" ,
75
+ "parameters" : {
76
+ "sourceID" : " search" ,
77
+ "destinationID" : " destinationName" ,
78
+ "trigger" : {
79
+ "type" : " onDemand"
80
+ },
81
+ "action" : " replace" ,
82
+ "input" : {
83
+ "streams" : [
84
+ {
85
+ "name" : " foo" ,
86
+ "syncMode" : " incremental"
87
+ }
88
+ ]
89
+ }
90
+ },
91
+ "request" : {
92
+ "path" : " /1/tasks" ,
93
+ "method" : " POST" ,
94
+ "body" : {
95
+ "sourceID" : " search" ,
96
+ "destinationID" : " destinationName" ,
97
+ "trigger" : {
98
+ "type" : " onDemand"
99
+ },
100
+ "action" : " replace" ,
101
+ "input" : {
102
+ "streams" : [
103
+ {
104
+ "name" : " foo" ,
105
+ "syncMode" : " incremental"
106
+ }
107
+ ]
108
+ }
109
+ }
110
+ }
72
111
}
73
112
]
File renamed without changes.
You can’t perform that action at this time.
0 commit comments