@rockset/cli
Version:
Official Rockset CLI
58 lines (54 loc) • 2.46 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 DeleteApiKey = /** @class */ (() => {
class DeleteApiKey extends base_command_1.RockCommand {
async run() {
const { args, flags } = await this.parse(DeleteApiKey);
// Rockset client object
const client = await core_2.main.createClient();
const namedArgs = DeleteApiKey.args;
// apicall
const apicall = client.apikeys.deleteApiKey.bind(client.apikeys);
// endpoint
const endpoint = '/v1/orgs/self/users/{user}/apikeys/{name}';
const method = 'DELETE';
await util_1.runApiCall.bind(this)({ args, flags, namedArgs, apicall, method, endpoint, bodySchema });
}
}
DeleteApiKey.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'] }));
DeleteApiKey.args = [
{
name: 'name',
description: 'Name of the API key.',
required: true,
hidden: false,
},
{
name: 'user',
description: 'Email of the API key owner. Use `self` to specify the currently authenticated user.',
required: true,
hidden: false,
},
];
DeleteApiKey.description = `delete an api key for any user in your organization
Arguments to this command will be passed as URL parameters to ${chalk.bold(`DELETE: /v1/orgs/self/users/{user}/apikeys/{name}`)}
Endpoint Reference
DELETE: /v1/orgs/self/users/{user}/apikeys/{name}
Delete API Key
Delete an API key for any user in your organization.
More documentation at ${chalk.underline(`https://docs.rockset.com/rest-api#deleteapikey`)}`;
DeleteApiKey.examples = ['$ rockset api:apikeys:deleteApiKey NAME USER'];
return DeleteApiKey;
})();
exports.default = DeleteApiKey;