import { ModelData, Model } from "@kubernetes-models/base"; /** * Secret is a reference to a secret, backed by k8s or local file system. */ export interface ISecret { /** * Name is the name of the secret. */ "name": string; /** * Namespace is the namespace in which the secret exists. Context of use * determines the default value if left out (e.g., "default"). */ "namespace"?: string; } /** * Secret is a reference to a secret, backed by k8s or local file system. */ export declare class Secret extends Model implements ISecret { "name": string; "namespace"?: string; constructor(data?: ModelData); } export type { ISecret as IComGithubCiliumCiliumPkgPolicyApiSecret, Secret as ComGithubCiliumCiliumPkgPolicyApiSecret };