/** * @public * @enum */ export declare const AddressFamily: { readonly IPV4: "IPV4"; readonly IPV6: "IPV6"; }; /** * @public */ export type AddressFamily = (typeof AddressFamily)[keyof typeof AddressFamily]; /** * @public * @enum */ export declare const Protocol: { readonly ICMP: "ICMP"; readonly TCP: "TCP"; }; /** * @public */ export type Protocol = (typeof Protocol)[keyof typeof Protocol]; /** * @public * @enum */ export declare const MonitorState: { readonly ACTIVE: "ACTIVE"; readonly DELETING: "DELETING"; readonly ERROR: "ERROR"; readonly INACTIVE: "INACTIVE"; readonly PENDING: "PENDING"; }; /** * @public */ export type MonitorState = (typeof MonitorState)[keyof typeof MonitorState]; /** * @public * @enum */ export declare const ProbeState: { readonly ACTIVE: "ACTIVE"; readonly DELETED: "DELETED"; readonly DELETING: "DELETING"; readonly ERROR: "ERROR"; readonly INACTIVE: "INACTIVE"; readonly PENDING: "PENDING"; }; /** * @public */ export type ProbeState = (typeof ProbeState)[keyof typeof ProbeState];