UNPKG

@apigeeks/fbl-k8s-plugin

Version:

fbl wrapper plugin for helm and kubectl cli utilities

10 lines (9 loc) 480 B
import * as Joi from 'joi'; import { ActionHandler, ActionSnapshot, IContext, IActionHandlerMetadata, IDelegatedParameters } from 'fbl'; export declare class K8sGetObjectActionHandler extends ActionHandler { private static metadata; private static schema; getMetadata(): IActionHandlerMetadata; getValidationSchema(): Joi.SchemaLike | null; execute(options: any, context: IContext, snapshot: ActionSnapshot, parameters: IDelegatedParameters): Promise<void>; }