@kubernetes-models/flux-cd
Version:
32 lines (31 loc) • 910 B
TypeScript
import { ModelData, Model } from "@kubernetes-models/base";
/**
* CommonMetadata defines the common labels and annotations.
*/
export interface ICommonMetadata {
/**
* Annotations to be added to the object's metadata.
*/
"annotations"?: {
[key: string]: string;
};
/**
* Labels to be added to the object's metadata.
*/
"labels"?: {
[key: string]: string;
};
}
/**
* CommonMetadata defines the common labels and annotations.
*/
export declare class CommonMetadata extends Model<ICommonMetadata> implements ICommonMetadata {
"annotations"?: {
[key: string]: string;
};
"labels"?: {
[key: string]: string;
};
constructor(data?: ModelData<ICommonMetadata>);
}
export type { ICommonMetadata as IComGithubFluxcdHelmControllerApiV2CommonMetadata, CommonMetadata as ComGithubFluxcdHelmControllerApiV2CommonMetadata };