Skip to content

Commit cdd673d

Browse files
authored
fix(specs): ingestion destinations and transformations (#3477)
1 parent a4412f6 commit cdd673d

File tree

7 files changed

+40
-4
lines changed

7 files changed

+40
-4
lines changed

specs/ingestion/common/schemas/common.yml

+5
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,11 @@ taskID:
5555
description: Universally unique identifier (UUID) of a task.
5656
example: 6c02aeb1-775e-418e-870b-1faccd4b2c0f
5757

58+
transformationIDs:
59+
type: array
60+
items:
61+
$ref: '#/transformationID'
62+
5863
transformationID:
5964
type: string
6065
# format: uuid

specs/ingestion/common/schemas/destination.yml

+6
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ Destination:
1717
$ref: './common.yml#/updatedAt'
1818
authenticationID:
1919
$ref: './common.yml#/authenticationID'
20+
transformationIDs:
21+
$ref: './common.yml#/transformationIDs'
2022
required:
2123
- destinationID
2224
- type
@@ -37,6 +39,8 @@ DestinationCreate:
3739
$ref: '#/DestinationInput'
3840
authenticationID:
3941
$ref: './common.yml#/authenticationID'
42+
transformationIDs:
43+
$ref: './common.yml#/transformationIDs'
4044
required:
4145
- type
4246
- name
@@ -71,6 +75,8 @@ DestinationUpdate:
7175
$ref: '#/DestinationInput'
7276
authenticationID:
7377
$ref: './common.yml#/authenticationID'
78+
transformationIDs:
79+
$ref: './common.yml#/transformationIDs'
7480

7581
DestinationUpdateResponse:
7682
type: object

specs/ingestion/paths/transformations/transformations.yml

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ get:
99
- deleteIndex
1010
- editSettings
1111
parameters:
12+
- $ref: '../../common/parameters.yml#/itemsPerPage'
13+
- $ref: '../../common/parameters.yml#/page'
1214
- $ref: '../../common/parameters.yml#/sort'
1315
- $ref: '../../common/parameters.yml#/order'
1416
responses:

tests/CTS/requests/ingestion/createDestination.json

+27-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[
22
{
3-
"testName": "createDestination",
43
"parameters": {
54
"type": "search",
65
"name": "destinationName",
@@ -21,5 +20,32 @@
2120
"authenticationID": "6c02aeb1-775e-418e-870b-1faccd4b2c0f"
2221
}
2322
}
23+
},
24+
{
25+
"testName": "with transformationIDs",
26+
"parameters": {
27+
"type": "search",
28+
"name": "destinationName",
29+
"input": {
30+
"indexPrefix": "prefix_"
31+
},
32+
"transformationIDs": [
33+
"6c02aeb1-775e-418e-870b-1faccd4b2c0f"
34+
]
35+
},
36+
"request": {
37+
"path": "/1/destinations",
38+
"method": "POST",
39+
"body": {
40+
"type": "search",
41+
"name": "destinationName",
42+
"input": {
43+
"indexPrefix": "prefix_"
44+
},
45+
"transformationIDs": [
46+
"6c02aeb1-775e-418e-870b-1faccd4b2c0f"
47+
]
48+
}
49+
}
2450
}
2551
]

tests/CTS/requests/ingestion/listRuns.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[
22
{
3-
"testName": "getRuns",
43
"parameters": {},
54
"request": {
65
"path": "/1/runs",

tests/CTS/requests/ingestion/listSources.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[
22
{
3-
"testName": "getSources",
43
"parameters": {},
54
"request": {
65
"path": "/1/sources",

tests/CTS/requests/ingestion/listTransformations.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[
22
{
3-
"testName": "getTransformations",
43
"parameters": {},
54
"request": {
65
"path": "/1/transformations",

0 commit comments

Comments
 (0)