import { ModelData, Model } from "@kubernetes-models/base"; /** * ClusterDomainClaimSpec is the desired state of the ClusterDomainClaim. * Its only field is `namespace`, which controls which namespace currently owns * the ability to create a DomainMapping with the ClusterDomainClaim's name. */ export interface IClusterDomainClaimSpec { /** * Namespace is the namespace which is allowed to create a DomainMapping * using this ClusterDomainClaim's name. */ "namespace": string; } /** * ClusterDomainClaimSpec is the desired state of the ClusterDomainClaim. * Its only field is `namespace`, which controls which namespace currently owns * the ability to create a DomainMapping with the ClusterDomainClaim's name. */ export declare class ClusterDomainClaimSpec extends Model implements IClusterDomainClaimSpec { "namespace": string; constructor(data?: ModelData); } export type { IClusterDomainClaimSpec as IDevKnativeNetworkingPkgApisNetworkingV1alpha1ClusterDomainClaimSpec, ClusterDomainClaimSpec as DevKnativeNetworkingPkgApisNetworkingV1alpha1ClusterDomainClaimSpec };