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-12-13 20:04:41 +02:00
|
|
|
var tritonapi = this.top.tritonapi;
|
|
|
|
common.cliSetupTritonApi({cli: this.top}, function onSetup(setupErr) {
|
|
|
|
if (setupErr) {
|
|
|
|
cb(setupErr);
|
2017-06-28 23:44:15 +03:00
|
|
|
return;
|
2015-08-26 03:27:46 +03:00
|
|
|
}
|
2018-06-20 00:42:10 +03:00
|
|
|
tritonapi.getInstance({
|
|
|
|
id: args[0],
|
|
|
|
credentials: opts.credentials
|
|
|
|
}, function onInst(err, inst) {
|
2016-12-13 20:04:41 +02:00
|
|
|
if (inst) {
|
|
|
|
if (opts.json) {
|
|
|
|
console.log(JSON.stringify(inst));
|
|
|
|
} else {
|
|
|
|
console.log(JSON.stringify(inst, null, 4));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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.'
|
|
|
|
},
|
2018-06-20 00:42:10 +03:00
|
|
|
{
|
|
|
|
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.'
|
|
|
|
}
|
|
|
|
];
|
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;
|