@kubernetes-models/argo-cd
Version:
12 lines (11 loc) • 1.12 kB
TypeScript
/**
* ApplicationsSyncPolicy representation
* "create-only" means applications are only created. If the generator's result contains update, applications won't be updated
* "create-update" means applications are only created/Updated. If the generator's result contains update, applications will be updated, but not deleted
* "create-delete" means applications are only created/deleted. If the generator's result contains update, applications won't be updated, if it results in deleted applications, the applications will be deleted
* "sync" means create/update/deleted. If the generator's result contains update, applications will be updated, if it results in deleted applications, the applications will be deleted
* If no ApplicationsSyncPolicy is defined, it defaults it to sync
*/
export type IApplicationsSyncPolicy = string;
export type ApplicationsSyncPolicy = IApplicationsSyncPolicy;
export type { IApplicationsSyncPolicy as IComGithubArgoprojArgoCdV3PkgApisApplicationV1alpha1ApplicationsSyncPolicy, ApplicationsSyncPolicy as ComGithubArgoprojArgoCdV3PkgApisApplicationV1alpha1ApplicationsSyncPolicy };