/** * GeneratorKind represents a kind of generator. */ export type IGeneratorKind = "ACRAccessToken" | "ECRAuthorizationToken" | "Fake" | "GCRAccessToken" | "GithubAccessToken" | "QuayAccessToken" | "Password" | "STSSessionToken" | "UUID" | "VaultDynamicSecret" | "Webhook" | "Grafana"; export type GeneratorKind = IGeneratorKind; export type { IGeneratorKind as IComGithubExternalSecretsExternalSecretsApisGeneratorsV1alpha1GeneratorKind, GeneratorKind as ComGithubExternalSecretsExternalSecretsApisGeneratorsV1alpha1GeneratorKind };