@kubernetes-models/argo-cd
Version:
24 lines (23 loc) • 986 B
TypeScript
import { ModelData, Model } from "@kubernetes-models/base";
/**
* ApplicationSummary contains information about URLs and container images used by an application
*/
export interface IApplicationSummary {
/**
* ExternalURLs holds all external URLs of application child resources.
*/
"externalURLs"?: Array<string>;
/**
* Images holds all images of application child resources.
*/
"images"?: Array<string>;
}
/**
* ApplicationSummary contains information about URLs and container images used by an application
*/
export declare class ApplicationSummary extends Model<IApplicationSummary> implements IApplicationSummary {
"externalURLs"?: Array<string>;
"images"?: Array<string>;
constructor(data?: ModelData<IApplicationSummary>);
}
export type { IApplicationSummary as IComGithubArgoprojArgoCdV3PkgApisApplicationV1alpha1ApplicationSummary, ApplicationSummary as ComGithubArgoprojArgoCdV3PkgApisApplicationV1alpha1ApplicationSummary };