UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

51 lines (40 loc) 1.48 kB
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from "../../../core"; import { APIResource } from "../../../resource"; import * as PreviewAPI from "./preview"; export class Preview extends APIResource { /** * Get the result of a previous preview operation using the provided preview_id. */ get(previewId: string, options?: Core.RequestOptions): Core.APIPromise<LoadBalancingPreview> { return ( this._client.get(`/user/load_balancers/preview/${previewId}`, options) as Core.APIPromise<{ result: LoadBalancingPreview; }> )._thenUnwrap((obj) => obj.result); } } /** * Resulting health data from a preview operation. */ export type LoadBalancingPreview = Record<string, LoadBalancingPreview.unnamed_schema_with_map_parent_0>; export namespace LoadBalancingPreview { export interface unnamed_schema_with_map_parent_0 { healthy?: boolean; origins?: Array<Record<string, unnamed_schema_with_map_parent_0.load_balancing_origin_health_data>>; } export namespace unnamed_schema_with_map_parent_0 { /** * The origin ipv4/ipv6 address or domain name mapped to it's health data. */ export interface load_balancing_origin_health_data { failure_reason?: string; healthy?: boolean; response_code?: number; rtt?: string; } } } export namespace Preview { export import LoadBalancingPreview = PreviewAPI.LoadBalancingPreview; }