Skip to content

Commit 6c62a81

Browse files
authored
fix(specs): ingestion docker task input (#3488)
1 parent 41a6f11 commit 6c62a81

File tree

5 files changed

+100
-2
lines changed

5 files changed

+100
-2
lines changed

specs/ingestion/common/schemas/task.yml

+25-1
Original file line numberDiff line numberDiff line change
@@ -460,10 +460,34 @@ DockerStreamsInput:
460460
type: object
461461
properties:
462462
streams:
463-
type: object
463+
type: array
464+
items:
465+
$ref: '#/DockerStreams'
464466
required:
465467
- streams
466468

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+
467491
failureThreshold:
468492
type: integer
469493
minimum: 0

specs/ingestion/paths/transformations/transformationsTry.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ post:
33
- transformations
44
summary: Try a transformation
55
description: Try a transformation.
6-
operationId: tryTransformations
6+
operationId: tryTransformation
77
x-acl:
88
- addObject
99
- deleteIndex

tests/CTS/requests/ingestion/createTask.json

+35
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,40 @@
3434
"action": "replace"
3535
}
3636
}
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+
}
3772
}
3873
]

tests/CTS/requests/ingestion/createTaskV1.json

+39
Original file line numberDiff line numberDiff line change
@@ -69,5 +69,44 @@
6969
"action": "replace"
7070
}
7171
}
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+
}
72111
}
73112
]

0 commit comments

Comments
 (0)