Skip to content

Commit 75ed116

Browse files
committed
update metadata
1 parent 8569dee commit 75ed116

File tree

102 files changed

+2311
-96
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+2311
-96
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "CreateDatasetFileMetas",
3+
"protocol": "HTTPS",
4+
"method": "POST",
5+
"pathPattern": "/api/v1/datasets/[DatasetId]/datasetfilemetas",
6+
"parameters": [
7+
{
8+
"name": "DatasetId",
9+
"position": "Path",
10+
"type": "String",
11+
"required": true
12+
},
13+
{
14+
"name": "body",
15+
"position": "Body",
16+
"type": "String",
17+
"required": false
18+
}
19+
]
20+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "CreateDatasetJob",
3+
"protocol": "HTTPS",
4+
"method": "POST",
5+
"pathPattern": "/api/v1/datasets/[DatasetId]/datasetjobs",
6+
"parameters": [
7+
{
8+
"name": "DatasetId",
9+
"position": "Path",
10+
"type": "String",
11+
"required": true
12+
},
13+
{
14+
"name": "body",
15+
"position": "Body",
16+
"type": "String",
17+
"required": false
18+
}
19+
]
20+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "CreateDatasetJobConfig",
3+
"protocol": "HTTPS",
4+
"method": "POST",
5+
"pathPattern": "/api/v1/datasets/[DatasetId]/datasetjobconfigs",
6+
"parameters": [
7+
{
8+
"name": "DatasetId",
9+
"position": "Path",
10+
"type": "String",
11+
"required": true
12+
},
13+
{
14+
"name": "body",
15+
"position": "Body",
16+
"type": "String",
17+
"required": false
18+
}
19+
]
20+
}
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "DeleteDatasetFileMetas",
3+
"protocol": "HTTPS",
4+
"method": "DELETE",
5+
"pathPattern": "/api/v1/datasets/[DatasetId]/datasetfilemetas",
6+
"parameters": [
7+
{
8+
"name": "DatasetFileMetaIds",
9+
"position": "Query",
10+
"type": "String",
11+
"required": true
12+
},
13+
{
14+
"name": "DatasetId",
15+
"position": "Path",
16+
"type": "String",
17+
"required": true
18+
},
19+
{
20+
"name": "DatasetVersion",
21+
"position": "Query",
22+
"type": "String",
23+
"required": false
24+
},
25+
{
26+
"name": "WorkspaceId",
27+
"position": "Query",
28+
"type": "String",
29+
"required": false
30+
}
31+
]
32+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "DeleteDatasetJob",
3+
"protocol": "HTTPS",
4+
"method": "DELETE",
5+
"pathPattern": "/api/v1/datasets/[DatasetId]/datasetjobs/[DatasetJobId]",
6+
"parameters": [
7+
{
8+
"name": "DatasetId",
9+
"position": "Path",
10+
"type": "String",
11+
"required": true
12+
},
13+
{
14+
"name": "DatasetJobId",
15+
"position": "Path",
16+
"type": "String",
17+
"required": true
18+
}
19+
]
20+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "DeleteDatasetJobConfig",
3+
"protocol": "HTTPS",
4+
"method": "DELETE",
5+
"pathPattern": "/api/v1/datasets/[DatasetId]/datasetjobconfigs/[DatasetJobConfigId]",
6+
"parameters": [
7+
{
8+
"name": "DatasetId",
9+
"position": "Path",
10+
"type": "String",
11+
"required": true
12+
},
13+
{
14+
"name": "DatasetJobConfigId",
15+
"position": "Path",
16+
"type": "String",
17+
"required": true
18+
},
19+
{
20+
"name": "WorkspaceId",
21+
"position": "Query",
22+
"type": "String",
23+
"required": false
24+
}
25+
]
26+
}
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "GetDatasetFileMeta",
3+
"protocol": "HTTPS",
4+
"method": "GET",
5+
"pathPattern": "/api/v1/datasets/[DatasetId]/datasetfilemetas/[DatasetFileMetaId]",
6+
"parameters": [
7+
{
8+
"name": "DatasetFileMetaId",
9+
"position": "Path",
10+
"type": "String",
11+
"required": true
12+
},
13+
{
14+
"name": "DatasetId",
15+
"position": "Path",
16+
"type": "String",
17+
"required": true
18+
},
19+
{
20+
"name": "DatasetVersion",
21+
"position": "Query",
22+
"type": "String",
23+
"required": false
24+
},
25+
{
26+
"name": "WorkspaceId",
27+
"position": "Query",
28+
"type": "String",
29+
"required": false
30+
}
31+
]
32+
}
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "GetDatasetJob",
3+
"protocol": "HTTPS",
4+
"method": "GET",
5+
"pathPattern": "/api/v1/datasets/[DatasetId]/datasetjobs/[DatasetJobId]",
6+
"parameters": [
7+
{
8+
"name": "DatasetId",
9+
"position": "Path",
10+
"type": "String",
11+
"required": true
12+
},
13+
{
14+
"name": "DatasetJobId",
15+
"position": "Path",
16+
"type": "String",
17+
"required": true
18+
},
19+
{
20+
"name": "DatasetVersion",
21+
"position": "Query",
22+
"type": "String",
23+
"required": false
24+
},
25+
{
26+
"name": "WorkspaceId",
27+
"position": "Query",
28+
"type": "String",
29+
"required": false
30+
}
31+
]
32+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "GetDatasetJobConfig",
3+
"protocol": "HTTPS",
4+
"method": "GET",
5+
"pathPattern": "/api/v1/datasets/[DatasetId]/datasetjobconfigs/[DatasetJobConfigId]",
6+
"parameters": [
7+
{
8+
"name": "DatasetId",
9+
"position": "Path",
10+
"type": "String",
11+
"required": true
12+
},
13+
{
14+
"name": "DatasetJobConfigId",
15+
"position": "Path",
16+
"type": "String",
17+
"required": true
18+
},
19+
{
20+
"name": "WorkspaceId",
21+
"position": "Query",
22+
"type": "String",
23+
"required": false
24+
}
25+
]
26+
}
Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
{
2+
"name": "ListDatasetFileMetas",
3+
"protocol": "HTTPS",
4+
"method": "GET",
5+
"pathPattern": "/api/v1/datasets/[DatasetId]/datasetfilemetas",
6+
"parameters": [
7+
{
8+
"name": "DatasetId",
9+
"position": "Path",
10+
"type": "String",
11+
"required": true
12+
},
13+
{
14+
"name": "DatasetVersion",
15+
"position": "Query",
16+
"type": "String",
17+
"required": true
18+
},
19+
{
20+
"name": "EndFileUpdateTime",
21+
"position": "Query",
22+
"type": "String",
23+
"required": false
24+
},
25+
{
26+
"name": "NextToken",
27+
"position": "Query",
28+
"type": "String",
29+
"required": false
30+
},
31+
{
32+
"name": "Order",
33+
"position": "Query",
34+
"type": "String",
35+
"required": false
36+
},
37+
{
38+
"name": "PageSize",
39+
"position": "Query",
40+
"type": "Integer",
41+
"required": false
42+
},
43+
{
44+
"name": "QueryText",
45+
"position": "Query",
46+
"type": "String",
47+
"required": false
48+
},
49+
{
50+
"name": "QueryType",
51+
"position": "Query",
52+
"type": "String",
53+
"required": false
54+
},
55+
{
56+
"name": "ScoreThreshold",
57+
"position": "Query",
58+
"type": "Float",
59+
"required": false
60+
},
61+
{
62+
"name": "SortBy",
63+
"position": "Query",
64+
"type": "String",
65+
"required": false
66+
},
67+
{
68+
"name": "StartFileUpdateTime",
69+
"position": "Query",
70+
"type": "String",
71+
"required": false
72+
},
73+
{
74+
"name": "TopK",
75+
"position": "Query",
76+
"type": "Integer",
77+
"required": false
78+
},
79+
{
80+
"name": "WorkspaceId",
81+
"position": "Query",
82+
"type": "String",
83+
"required": true
84+
}
85+
]
86+
}

0 commit comments

Comments
 (0)