hana-cli
Version:
HANA Developer Command Line Interface
67 lines (66 loc) • 2.15 kB
TypeScript
/**
* Command handler function
* @param {object} argv - Command line arguments from yargs
* @returns {Promise<void>}
*/
export function handler(argv: object): Promise<void>;
/**
* Get workload management configuration from database
* @param {object} prompts - Input prompts with schema, workload, and priority
* @returns {Promise<Array>} - Array of workload objects
*/
export function getWorkloadManagement(prompts: object): Promise<any[]>;
export const command: "workloadManagement [schema] [group]";
export const aliases: string[];
export const describe: string;
export function builder(yargs: any): any;
export namespace inputPrompts {
namespace group {
let description: string;
let type: string;
let required: boolean;
}
namespace workload {
let description_1: string;
export { description_1 as description };
let type_1: string;
export { type_1 as type };
let required_1: boolean;
export { required_1 as required };
}
namespace schema {
let description_2: string;
export { description_2 as description };
let type_2: string;
export { type_2 as type };
let required_2: boolean;
export { required_2 as required };
}
namespace activeOnly {
let description_3: string;
export { description_3 as description };
let type_3: string;
export { type_3 as type };
let required_3: boolean;
export { required_3 as required };
export function ask(): boolean;
}
namespace showViews {
let description_4: string;
export { description_4 as description };
let type_4: string;
export { type_4 as type };
let required_4: boolean;
export { required_4 as required };
export function ask_1(): boolean;
export { ask_1 as ask };
}
namespace limit {
let description_5: string;
export { description_5 as description };
let type_5: string;
export { type_5 as type };
let required_5: boolean;
export { required_5 as required };
}
}