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