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