@kubernetes-models/flux-cd
Version:
21 lines (20 loc) • 867 B
TypeScript
import { ModelData, Model } from "@kubernetes-models/base";
/**
* AlphabeticalPolicy specifies a alphabetical ordering policy.
*/
export interface IAlphabeticalPolicy {
/**
* Order specifies the sorting order of the tags. Given the letters of the
* alphabet as tags, ascending order would select Z, and descending order
* would select A.
*/
"order"?: "asc" | "desc";
}
/**
* AlphabeticalPolicy specifies a alphabetical ordering policy.
*/
export declare class AlphabeticalPolicy extends Model<IAlphabeticalPolicy> implements IAlphabeticalPolicy {
"order"?: "asc" | "desc";
constructor(data?: ModelData<IAlphabeticalPolicy>);
}
export type { IAlphabeticalPolicy as IComGithubFluxcdImageReflectorControllerApiV1beta1AlphabeticalPolicy, AlphabeticalPolicy as ComGithubFluxcdImageReflectorControllerApiV1beta1AlphabeticalPolicy };