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_profile/index.js

69 lines
2.0 KiB
JavaScript

/*
* 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 2015 Joyent, Inc.
*
* `triton image ...`
*/
var Cmdln = require('cmdln').Cmdln;
var util = require('util');
// ---- CLI class
function ProfileCLI(top) {
this.top = top;
Cmdln.call(this, {
name: top.name + ' profile',
/* BEGIN JSSTYLED */
desc: [
'List, get, create and update Spearhead CLI profiles.',
'',
'A profile is a configured Spearhead Datacenter endpoint. I.e. the',
'url, account, key, etc. information required to call a CloudAPI.',
'You can then switch between profiles with `triton -p PROFILE`',
'or the SC_PROFILE environment variable.'
].join('\n'),
/* END JSSTYLED */
helpOpts: {
minHelpCol: 24 /* line up with option help */
},
helpSubcmds: [
'help',
'list',
'get',
'set-current',
'create',
'edit',
'delete',
'docker-setup'
]
});
}
util.inherits(ProfileCLI, Cmdln);
ProfileCLI.prototype.init = function init(opts, args, cb) {
this.log = this.top.log;
Cmdln.prototype.init.apply(this, arguments);
};
ProfileCLI.prototype.do_list = require('./do_list');
ProfileCLI.prototype.do_get = require('./do_get');
ProfileCLI.prototype.do_set_current = require('./do_set_current');
ProfileCLI.prototype.do_create = require('./do_create');
ProfileCLI.prototype.do_delete = require('./do_delete');
ProfileCLI.prototype.do_edit = require('./do_edit');
ProfileCLI.prototype.do_docker_setup = require('./do_docker_setup');
// TODO: Would like to `triton profile update foo account=trentm ...`
// And then would like that same key=value syntax optional for create.
//ProfileCLI.prototype.do_update = require('./do_update');
module.exports = ProfileCLI;