import { IComGithubCiliumCiliumPkgNodeAddressingAddressType } from "../../github.com/cilium/cilium/pkg/node/addressing/AddressType.js"; import { ModelData, Model } from "@kubernetes-models/base"; /** * NodeAddress is a node address. */ export interface INodeAddress { /** * IP is an IP of a node */ "ip"?: string; /** * Type is the type of the node address */ "type"?: IComGithubCiliumCiliumPkgNodeAddressingAddressType; } /** * NodeAddress is a node address. */ export declare class NodeAddress extends Model implements INodeAddress { "ip"?: string; "type"?: IComGithubCiliumCiliumPkgNodeAddressingAddressType; constructor(data?: ModelData); } export type { INodeAddress as IComGithubCiliumCiliumPkgK8sApisCiliumIoV2NodeAddress, NodeAddress as ComGithubCiliumCiliumPkgK8sApisCiliumIoV2NodeAddress };