This repository has been archived on 2020-01-20. You can view files and clone it, but cannot push or open issues or pull requests.
node-spearhead/lib/do_instance/do_get.js

84 lines
2.2 KiB
JavaScript
Raw Normal View History

2015-08-26 03:27:46 +03:00
/*
2015-09-04 21:12:20 +03:00
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
/*
* Copyright 2016 Joyent, Inc.
2015-08-26 03:27:46 +03:00
*
* `triton instance get ...`
2015-08-26 03:27:46 +03:00
*/
var common = require('../common');
2015-08-26 03:27:46 +03:00
function do_get(subcmd, opts, args, cb) {
2015-08-26 03:27:46 +03:00
if (opts.help) {
return this.do_help('help', {}, [subcmd], cb);
2015-08-26 03:27:46 +03:00
} else if (args.length !== 1) {
return cb(new Error('invalid args: ' + args));
2015-08-26 03:27:46 +03:00
}
var tritonapi = this.top.tritonapi;
common.cliSetupTritonApi({cli: this.top}, function onSetup(setupErr) {
if (setupErr) {
cb(setupErr);
return;
2015-08-26 03:27:46 +03:00
}
tritonapi.getInstance({
id: args[0],
credentials: opts.credentials
}, function onInst(err, inst) {
if (inst) {
if (opts.json) {
console.log(JSON.stringify(inst));
} else {
console.log(JSON.stringify(inst, null, 4));
}
}
cb(err);
});
});
2015-08-26 03:27:46 +03:00
}
do_get.options = [
2015-08-26 03:27:46 +03:00
{
names: ['help', 'h'],
type: 'bool',
help: 'Show this help.'
},
{
names: ['credentials'],
type: 'bool',
help: 'Include generated credentials, in the "metadata.credentials" ' +
'field, if any. Typically used with "-j", though one can show ' +
'values with "-o metadata.credentials".'
},
2015-08-26 03:27:46 +03:00
{
names: ['json', 'j'],
type: 'bool',
help: 'JSON output.'
}
];
do_get.synopses = ['{{name}} {{cmd}} [OPTIONS] INST'];
do_get.help = [
/* BEGIN JSSTYLED */
'Get an instance.',
'',
'{{usage}}',
'',
'{{options}}',
'Where "INST" is an instance name, id, or short id.',
'',
'A *deleted* instance may still respond with the instance object. In that',
'case a the instance will be print *and* an error will be raised.',
'',
'Currently this dumps prettified JSON by default. That might change',
'in the future. Use "-j" to explicitly get JSON output.'
/* END JSSTYLED */
].join('\n');
2015-08-26 03:27:46 +03:00
do_get.completionArgtypes = ['tritoninstance', 'none'];
module.exports = do_get;