@kubernetes-models/argo-rollouts
Version:
24 lines (23 loc) • 851 B
TypeScript
import { ModelData, Model } from "@kubernetes-models/base";
/**
* WavefrontMetric defines the wavefront query to perform canary analysis
*/
export interface IWavefrontMetric {
/**
* Address is the HTTP address and port of the wavefront server
*/
"address"?: string;
/**
* Query is a raw wavefront query to perform
*/
"query"?: string;
}
/**
* WavefrontMetric defines the wavefront query to perform canary analysis
*/
export declare class WavefrontMetric extends Model<IWavefrontMetric> implements IWavefrontMetric {
"address"?: string;
"query"?: string;
constructor(data?: ModelData<IWavefrontMetric>);
}
export type { IWavefrontMetric as IComGithubArgoprojArgoRolloutsPkgApisRolloutsV1alpha1WavefrontMetric, WavefrontMetric as ComGithubArgoprojArgoRolloutsPkgApisRolloutsV1alpha1WavefrontMetric };