-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathget-pipeline.ts
80 lines (70 loc) · 1.95 KB
/
get-pipeline.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import {
PipelinesClient,
withEndpoint,
withKeyCredentials,
} from "@sajari/sdk-node";
import program, { withDefaultOptions, withPipelineView } from "./program";
import { handleError } from "./api-util";
withDefaultOptions(program);
withPipelineView(program);
program.requiredOption(
"--pipeline-type <pipeline_type>",
"pipeline type",
"query"
);
program.requiredOption(
"--pipeline-name <pipeline_name>",
"pipeline name",
"my-pipeline"
);
program.requiredOption(
"--pipeline-version <pipeline_version>",
"pipeline version",
"42"
);
program.parse(process.argv);
async function main(
endpoint = program.endpoint,
collectionId = program.collectionId,
keyId = program.keyId,
keySecret = program.keySecret,
pipeline = {
type: program.pipelineType,
name: program.pipelineName,
version: program.pipelineVersion,
view: program.pipelineView as "basic" | "full",
}
) {
if (!(pipeline.type === "record" || pipeline.type === "query")) {
throw new Error(`invalid type ${pipeline.type}`);
}
if (!(pipeline.view === "basic" || pipeline.view === "full")) {
throw new Error(`invalid view ${pipeline.view}`);
}
try {
const client = new PipelinesClient(
collectionId,
withEndpoint(endpoint),
withKeyCredentials(keyId, keySecret)
);
const p = await client.getPipeline(pipeline);
console.log(`type=${p.type}`);
console.log(`name=${p.name}`);
console.log(`version=${p.version}`);
console.log(`description=${p.description}`);
console.log(`collection default=${p.collectionDefault}`);
console.log(`default version=${p.defaultVersion}`);
console.log(`pre-steps=`);
for (const step of p.preSteps || []) {
console.log(` - ${JSON.stringify(step)}`);
}
console.log(`post-steps=`);
for (const step of p.postSteps || []) {
console.log(` - ${JSON.stringify(step)}`);
}
console.log(JSON.stringify(p));
} catch (e) {
handleError(e);
}
}
main();