import { ModelData, Model } from "@kubernetes-models/base"; /** * PeerConfigReference is a reference to a peer configuration resource. */ export interface IPeerConfigReference { /** * Name is the name of the peer config resource. * Name refers to the name of a Kubernetes object (typically a CiliumBGPPeerConfig). */ "name": string; } /** * PeerConfigReference is a reference to a peer configuration resource. */ export declare class PeerConfigReference extends Model implements IPeerConfigReference { "name": string; constructor(data?: ModelData); } export type { IPeerConfigReference as IComGithubCiliumCiliumPkgK8sApisCiliumIoV2PeerConfigReference, PeerConfigReference as ComGithubCiliumCiliumPkgK8sApisCiliumIoV2PeerConfigReference };