import { ModelData, Model } from "@kubernetes-models/base"; /** * ClusterExternalSecretNamespaceFailure represents a failed namespace deployment and it's reason. */ export interface IClusterExternalSecretNamespaceFailure { /** * Namespace is the namespace that failed when trying to apply an ExternalSecret */ "namespace": string; /** * Reason is why the ExternalSecret failed to apply to the namespace */ "reason"?: string; } /** * ClusterExternalSecretNamespaceFailure represents a failed namespace deployment and it's reason. */ export declare class ClusterExternalSecretNamespaceFailure extends Model implements IClusterExternalSecretNamespaceFailure { "namespace": string; "reason"?: string; constructor(data?: ModelData); } export type { IClusterExternalSecretNamespaceFailure as IComGithubExternalSecretsExternalSecretsApisExternalsecretsV1beta1ClusterExternalSecretNamespaceFailure, ClusterExternalSecretNamespaceFailure as ComGithubExternalSecretsExternalSecretsApisExternalsecretsV1beta1ClusterExternalSecretNamespaceFailure };