UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

92 lines 3.46 kB
import { APIResource } from 'cloudflare/resource'; import * as AppsAPI from 'cloudflare/resources/spectrum/apps'; import * as AnalyticsAPI from 'cloudflare/resources/spectrum/analytics/analytics'; export declare class Spectrum extends APIResource { analytics: AnalyticsAPI.Analytics; apps: AppsAPI.Apps; } /** * The name and type of DNS record for the Spectrum application. */ export interface DNS { /** * The name of the DNS record associated with the application. */ name?: string; /** * The type of DNS record associated with the application. */ type?: 'CNAME' | 'ADDRESS'; } /** * The anycast edge IP configuration for the hostname of this application. */ export type EdgeIPs = EdgeIPs.EyeballIPs | EdgeIPs.CustomerOwnedIPs; export declare namespace EdgeIPs { interface EyeballIPs { /** * The IP versions supported for inbound connections on Spectrum anycast IPs. */ connectivity?: 'all' | 'ipv4' | 'ipv6'; /** * The type of edge IP configuration specified. Dynamically allocated edge IPs use * Spectrum anycast IPs in accordance with the connectivity you specify. Only valid * with CNAME DNS names. */ type?: 'dynamic'; } interface CustomerOwnedIPs { /** * The array of customer owned IPs we broadcast via anycast for this hostname and * application. */ ips?: Array<string>; /** * The type of edge IP configuration specified. Statically allocated edge IPs use * customer IPs in accordance with the ips array you specify. Only valid with * ADDRESS DNS names. */ type?: 'static'; } } /** * The name and type of DNS record for the Spectrum application. */ export interface OriginDNS { /** * The name of the DNS record associated with the origin. */ name?: string; /** * The TTL of our resolution of your DNS record in seconds. */ ttl?: number; /** * The type of DNS record associated with the origin. "" is used to specify a * combination of A/AAAA records. */ type?: '' | 'A' | 'AAAA' | 'SRV'; } /** * The destination port at the origin. Only specified in conjunction with * origin_dns. May use an integer to specify a single origin port, for example * `1000`, or a string to specify a range of origin ports, for example * `"1000-2000"`. Notes: If specifying a port range, the number of ports in the * range must match the number of ports specified in the "protocol" field. */ export type OriginPort = number | string; export declare namespace Spectrum { export import Analytics = AnalyticsAPI.Analytics; export import Apps = AppsAPI.Apps; export import AppCreateResponse = AppsAPI.AppCreateResponse; export import AppUpdateResponse = AppsAPI.AppUpdateResponse; export import AppListResponse = AppsAPI.AppListResponse; export import AppDeleteResponse = AppsAPI.AppDeleteResponse; export import AppGetResponse = AppsAPI.AppGetResponse; export import AppListResponsesV4PagePaginationArray = AppsAPI.AppListResponsesV4PagePaginationArray; export import AppCreateParams = AppsAPI.AppCreateParams; export import AppUpdateParams = AppsAPI.AppUpdateParams; export import AppListParams = AppsAPI.AppListParams; export import AppDeleteParams = AppsAPI.AppDeleteParams; } //# sourceMappingURL=spectrum.d.ts.map