@rockset/cli
Version:
Official Rockset CLI
45 lines (41 loc) • 1.97 kB
JavaScript
;
/* eslint-disable unicorn/filename-case */
// Generated file, please do not edit directly
Object.defineProperty(exports, "__esModule", { value: true });
const core_1 = require("@oclif/core");
const core_2 = require("@rockset/core");
const util_1 = require("../../../helper/util");
const base_command_1 = require("../../../base-command");
const chalk = require("chalk");
const cli_ux_1 = require("cli-ux");
const bodySchema = ``;
let ListAliases = /** @class */ (() => {
class ListAliases extends base_command_1.RockCommand {
async run() {
const { args, flags } = await this.parse(ListAliases);
// Rockset client object
const client = await core_2.main.createClient();
const namedArgs = ListAliases.args;
// apicall
const apicall = client.aliases.listAliases.bind(client.aliases);
// endpoint
const endpoint = '/v1/orgs/self/aliases';
const method = 'GET';
await util_1.runApiCall.bind(this)({ args, flags, namedArgs, apicall, method, endpoint, bodySchema });
}
}
ListAliases.flags = Object.assign({ help: core_1.Flags.help({ char: 'h' }), raw: core_1.Flags.boolean({
description: 'Show the raw output from the server, instead of grabbing the results. Usually used in conjunction with --output=json',
}) }, cli_ux_1.cli.table.flags({ only: ['columns', 'output'] }));
ListAliases.args = [];
ListAliases.description = `retrieve all aliases in an organization
Arguments to this command will be passed as URL parameters to ${chalk.bold(`GET: /v1/orgs/self/aliases`)}
Endpoint Reference
GET: /v1/orgs/self/aliases
List Aliases
Retrieve all aliases in an organization
More documentation at ${chalk.underline(`https://docs.rockset.com/rest-api#listaliases`)}`;
ListAliases.examples = ['$ rockset api:aliases:listAliases '];
return ListAliases;
})();
exports.default = ListAliases;