@kubernetes-models/argo-rollouts
Version:
18 lines (17 loc) • 631 B
TypeScript
import { ModelData, Model } from "@kubernetes-models/base";
export interface IPluginStep {
/**
* Config is the configuration object for the specified plugin
*/
"config"?: {};
/**
* Name of the hashicorp go-plugin step to query
*/
"name": string;
}
export declare class PluginStep extends Model<IPluginStep> implements IPluginStep {
"config"?: {};
"name": string;
constructor(data?: ModelData<IPluginStep>);
}
export type { IPluginStep as IComGithubArgoprojArgoRolloutsPkgApisRolloutsV1alpha1PluginStep, PluginStep as ComGithubArgoprojArgoRolloutsPkgApisRolloutsV1alpha1PluginStep };