File tree 7 files changed +40
-4
lines changed
tests/CTS/requests/ingestion
7 files changed +40
-4
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,11 @@ taskID:
55
55
description : Universally unique identifier (UUID) of a task.
56
56
example : 6c02aeb1-775e-418e-870b-1faccd4b2c0f
57
57
58
+ transformationIDs :
59
+ type : array
60
+ items :
61
+ $ref : ' #/transformationID'
62
+
58
63
transformationID :
59
64
type : string
60
65
# format: uuid
Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ Destination:
17
17
$ref : ' ./common.yml#/updatedAt'
18
18
authenticationID :
19
19
$ref : ' ./common.yml#/authenticationID'
20
+ transformationIDs :
21
+ $ref : ' ./common.yml#/transformationIDs'
20
22
required :
21
23
- destinationID
22
24
- type
@@ -37,6 +39,8 @@ DestinationCreate:
37
39
$ref : ' #/DestinationInput'
38
40
authenticationID :
39
41
$ref : ' ./common.yml#/authenticationID'
42
+ transformationIDs :
43
+ $ref : ' ./common.yml#/transformationIDs'
40
44
required :
41
45
- type
42
46
- name
@@ -71,6 +75,8 @@ DestinationUpdate:
71
75
$ref : ' #/DestinationInput'
72
76
authenticationID :
73
77
$ref : ' ./common.yml#/authenticationID'
78
+ transformationIDs :
79
+ $ref : ' ./common.yml#/transformationIDs'
74
80
75
81
DestinationUpdateResponse :
76
82
type : object
Original file line number Diff line number Diff line change 9
9
- deleteIndex
10
10
- editSettings
11
11
parameters :
12
+ - $ref : ' ../../common/parameters.yml#/itemsPerPage'
13
+ - $ref : ' ../../common/parameters.yml#/page'
12
14
- $ref : ' ../../common/parameters.yml#/sort'
13
15
- $ref : ' ../../common/parameters.yml#/order'
14
16
responses :
Original file line number Diff line number Diff line change 1
1
[
2
2
{
3
- "testName" : " createDestination" ,
4
3
"parameters" : {
5
4
"type" : " search" ,
6
5
"name" : " destinationName" ,
21
20
"authenticationID" : " 6c02aeb1-775e-418e-870b-1faccd4b2c0f"
22
21
}
23
22
}
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
+ }
24
50
}
25
51
]
Original file line number Diff line number Diff line change 1
1
[
2
2
{
3
- "testName" : " getRuns" ,
4
3
"parameters" : {},
5
4
"request" : {
6
5
"path" : " /1/runs" ,
Original file line number Diff line number Diff line change 1
1
[
2
2
{
3
- "testName" : " getSources" ,
4
3
"parameters" : {},
5
4
"request" : {
6
5
"path" : " /1/sources" ,
Original file line number Diff line number Diff line change 1
1
[
2
2
{
3
- "testName" : " getTransformations" ,
4
3
"parameters" : {},
5
4
"request" : {
6
5
"path" : " /1/transformations" ,
You can’t perform that action at this time.
0 commit comments