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