@kubernetes-models/argo-rollouts
Version:
24 lines (23 loc) • 747 B
TypeScript
import { ModelData, Model } from "@kubernetes-models/base";
/**
* PingPongSpec holds the ping and pong service name.
*/
export interface IPingPongSpec {
/**
* name of the ping service
*/
"pingService": string;
/**
* name of the pong service
*/
"pongService": string;
}
/**
* PingPongSpec holds the ping and pong service name.
*/
export declare class PingPongSpec extends Model<IPingPongSpec> implements IPingPongSpec {
"pingService": string;
"pongService": string;
constructor(data?: ModelData<IPingPongSpec>);
}
export type { IPingPongSpec as IComGithubArgoprojArgoRolloutsPkgApisRolloutsV1alpha1PingPongSpec, PingPongSpec as ComGithubArgoprojArgoRolloutsPkgApisRolloutsV1alpha1PingPongSpec };