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/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2016-03-02 10:05:06 +02:00
|
|
|
* Copyright 2016 Joyent, Inc.
|
2015-08-26 03:27:46 +03:00
|
|
|
*
|
2016-01-04 19:05:53 +02:00
|
|
|
* `triton instance get ...`
|
2015-08-26 03:27:46 +03:00
|
|
|
*/
|
|
|
|
|
2016-01-04 19:05:53 +02:00
|
|
|
var common = require('../common');
|
2015-08-26 03:27:46 +03:00
|
|
|
|
2016-01-04 19:05:53 +02:00
|
|
|
function do_get(subcmd, opts, args, cb) {
|
2015-08-26 03:27:46 +03:00
|
|
|
if (opts.help) {
|
2015-08-27 03:21:27 +03:00
|
|
|
return this.do_help('help', {}, [subcmd], cb);
|
2015-08-26 03:27:46 +03:00
|
|
|
} else if (args.length !== 1) {
|
2015-08-27 03:21:27 +03:00
|
|
|
return cb(new Error('invalid args: ' + args));
|
2015-08-26 03:27:46 +03:00
|
|
|
}
|
|
|
|
|
2016-01-04 19:05:53 +02:00
|
|
|
this.top.tritonapi.getInstance(args[0], function (err, inst) {
|
2016-03-02 10:05:06 +02:00
|
|
|
if (inst) {
|
|
|
|
if (opts.json) {
|
|
|
|
console.log(JSON.stringify(inst));
|
|
|
|
} else {
|
|
|
|
console.log(JSON.stringify(inst, null, 4));
|
|
|
|
}
|
2015-08-26 03:27:46 +03:00
|
|
|
}
|
2016-03-02 10:05:06 +02:00
|
|
|
cb(err);
|
2015-08-27 03:21:27 +03:00
|
|
|
});
|
2015-08-26 03:27:46 +03:00
|
|
|
}
|
|
|
|
|
2016-01-04 19:05:53 +02:00
|
|
|
do_get.options = [
|
2015-08-26 03:27:46 +03:00
|
|
|
{
|
|
|
|
names: ['help', 'h'],
|
|
|
|
type: 'bool',
|
|
|
|
help: 'Show this help.'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
names: ['json', 'j'],
|
|
|
|
type: 'bool',
|
|
|
|
help: 'JSON output.'
|
|
|
|
}
|
|
|
|
];
|
2016-06-09 00:13:16 +03:00
|
|
|
do_get.synopses = ['{{name}} {{cmd}} [OPTIONS] INST'];
|
|
|
|
do_get.help = [
|
2015-10-07 09:09:52 +03:00
|
|
|
/* BEGIN JSSTYLED */
|
2016-06-09 00:13:16 +03:00
|
|
|
'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.'
|
2015-10-07 09:09:52 +03:00
|
|
|
/* END JSSTYLED */
|
2016-06-09 00:13:16 +03:00
|
|
|
].join('\n');
|
2015-08-26 03:27:46 +03:00
|
|
|
|
2016-03-09 19:19:44 +02:00
|
|
|
do_get.completionArgtypes = ['tritoninstance', 'none'];
|
|
|
|
|
2016-01-04 19:05:53 +02:00
|
|
|
module.exports = do_get;
|