UNPKG

@kubernetes-models/flux-cd

Version:
32 lines (31 loc) 920 B
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 IComGithubFluxcdKustomizeControllerApiV1CommonMetadata, CommonMetadata as ComGithubFluxcdKustomizeControllerApiV1CommonMetadata };