-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathhanaCloudSchemaInstances.js
68 lines (62 loc) · 2 KB
/
hanaCloudSchemaInstances.js
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
// @ts-check
import * as base from '../utils/base.js'
export const command = 'schemaInstances'
export const aliases = ['schemainstances', 'schemaServices', 'listschemas', 'schemaservices']
export const describe = base.bundle.getText("schemaInstances")
export const builder = base.getBuilder({
cf: {
alias: ['c', 'cmd'],
desc: base.bundle.getText("cfxs"),
type: 'boolean',
default: true
}
}, false)
export let inputPrompts = {
cf: {
description: base.bundle.getText("cfxs"),
type: 'boolean',
default: true,
required: false
}
}
export function handler (argv) {
base.promptHandler(argv, listInstances, inputPrompts, false)
}
export async function listInstances(prompts) {
base.debug('listInstances')
try {
let cf = null
if (prompts.cf) {
cf = await import('../utils/cf.js')
} else {
cf = await import('../utils/xs.js')
}
let results = ''
results = await cf.getSchemaInstances()
let output = []
if (prompts.cf) {
// @ts-ignore
for (let item of results.resources) {
let outputItem = {}
outputItem.name = item.name
outputItem.created_at = item.created_at
outputItem.last_operation = `${item.last_operation.type} ${item.last_operation.state} @ ${item.last_operation.updated_at}`
output.push(outputItem)
}
} else {
for (let item of results){
let outputItem = {}
// @ts-ignore
outputItem.name = item.serviceInstanceEntity.name
// @ts-ignore
outputItem.last_operation = `${item.serviceInstanceEntity.last_operation.type} ${item.serviceInstanceEntity.last_operation.state} `
output.push(outputItem)
}
}
base.outputTableFancy(output)
base.end()
return output
} catch (error) {
base.error(error)
}
}