UNPKG

@kubernetes-models/argo-rollouts

Version:
20 lines (19 loc) 743 B
import { ModelData, Model } from "@kubernetes-models/base"; /** * DryRun defines the settings for running the analysis in Dry-Run mode. */ export interface IDryRun { /** * Name of the metric which needs to be evaluated in the Dry-Run mode. Wildcard '\*' is supported and denotes all * the available metrics. */ "metricName": string; } /** * DryRun defines the settings for running the analysis in Dry-Run mode. */ export declare class DryRun extends Model<IDryRun> implements IDryRun { "metricName": string; constructor(data?: ModelData<IDryRun>); } export type { IDryRun as IComGithubArgoprojArgoRolloutsPkgApisRolloutsV1alpha1DryRun, DryRun as ComGithubArgoprojArgoRolloutsPkgApisRolloutsV1alpha1DryRun };