@fbl-plugins/k8s-kubectl
Version:
FBL plugin for K8s Kubectl CLI
26 lines • 865 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GetAllActionHandler = void 0;
const fbl_1 = require("fbl");
const processors_1 = require("../processors");
class GetAllActionHandler extends fbl_1.ActionHandler {
/* istanbul ignore next */
/**
* @inheritdoc
*/
getMetadata() {
return GetAllActionHandler.metadata;
}
/**
* @inheritdoc
*/
getProcessor(options, context, snapshot, parameters) {
return new processors_1.GetAllActionProcessor(options, context, snapshot, parameters);
}
}
exports.GetAllActionHandler = GetAllActionHandler;
GetAllActionHandler.metadata = {
id: 'com.fireblink.fbl.plugins.k8s.kubectl.get.all',
aliases: ['fbl.plugins.k8s.kubectl.get.all', 'k8s.kubectl.get.all', 'kubectl.get.all'],
};
//# sourceMappingURL=GetAllActionHandler.js.map