UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

254 lines (212 loc) 5.59 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 IncomingAPI from "./incoming"; export class Incoming extends APIResource { /** * Create secondary zone configuration for incoming zone transfers. */ create( params: IncomingCreateParams, options?: Core.RequestOptions, ): Core.APIPromise<IncomingCreateResponse> { const { zone_id, ...body } = params; return ( this._client.post(`/zones/${zone_id}/secondary_dns/incoming`, { body, ...options }) as Core.APIPromise<{ result: IncomingCreateResponse; }> )._thenUnwrap((obj) => obj.result); } /** * Update secondary zone configuration for incoming zone transfers. */ update( params: IncomingUpdateParams, options?: Core.RequestOptions, ): Core.APIPromise<IncomingUpdateResponse> { const { zone_id, ...body } = params; return ( this._client.put(`/zones/${zone_id}/secondary_dns/incoming`, { body, ...options }) as Core.APIPromise<{ result: IncomingUpdateResponse; }> )._thenUnwrap((obj) => obj.result); } /** * Delete secondary zone configuration for incoming zone transfers. */ delete( params: IncomingDeleteParams, options?: Core.RequestOptions, ): Core.APIPromise<IncomingDeleteResponse> { const { zone_id } = params; return ( this._client.delete(`/zones/${zone_id}/secondary_dns/incoming`, options) as Core.APIPromise<{ result: IncomingDeleteResponse; }> )._thenUnwrap((obj) => obj.result); } /** * Get secondary zone configuration for incoming zone transfers. */ get(params: IncomingGetParams, options?: Core.RequestOptions): Core.APIPromise<IncomingGetResponse> { const { zone_id } = params; return ( this._client.get(`/zones/${zone_id}/secondary_dns/incoming`, options) as Core.APIPromise<{ result: IncomingGetResponse; }> )._thenUnwrap((obj) => obj.result); } } export interface IncomingCreateResponse { id?: string; /** * How often should a secondary zone auto refresh regardless of DNS NOTIFY. Not * applicable for primary zones. */ auto_refresh_seconds?: number; /** * The time for a specific event. */ checked_time?: string; /** * The time for a specific event. */ created_time?: string; /** * The time for a specific event. */ modified_time?: string; /** * Zone name. */ name?: string; /** * A list of peer tags. */ peers?: Array<unknown>; /** * The serial number of the SOA for the given zone. */ soa_serial?: number; } export interface IncomingUpdateResponse { id?: string; /** * How often should a secondary zone auto refresh regardless of DNS NOTIFY. Not * applicable for primary zones. */ auto_refresh_seconds?: number; /** * The time for a specific event. */ checked_time?: string; /** * The time for a specific event. */ created_time?: string; /** * The time for a specific event. */ modified_time?: string; /** * Zone name. */ name?: string; /** * A list of peer tags. */ peers?: Array<unknown>; /** * The serial number of the SOA for the given zone. */ soa_serial?: number; } export interface IncomingDeleteResponse { id?: string; } export interface IncomingGetResponse { id?: string; /** * How often should a secondary zone auto refresh regardless of DNS NOTIFY. Not * applicable for primary zones. */ auto_refresh_seconds?: number; /** * The time for a specific event. */ checked_time?: string; /** * The time for a specific event. */ created_time?: string; /** * The time for a specific event. */ modified_time?: string; /** * Zone name. */ name?: string; /** * A list of peer tags. */ peers?: Array<unknown>; /** * The serial number of the SOA for the given zone. */ soa_serial?: number; } export interface IncomingCreateParams { /** * Path param: */ zone_id: string; /** * Body param: How often should a secondary zone auto refresh regardless of DNS * NOTIFY. Not applicable for primary zones. */ auto_refresh_seconds: number; /** * Body param: Zone name. */ name: string; /** * Body param: A list of peer tags. */ peers: Array<unknown>; } export interface IncomingUpdateParams { /** * Path param: */ zone_id: string; /** * Body param: How often should a secondary zone auto refresh regardless of DNS * NOTIFY. Not applicable for primary zones. */ auto_refresh_seconds: number; /** * Body param: Zone name. */ name: string; /** * Body param: A list of peer tags. */ peers: Array<unknown>; } export interface IncomingDeleteParams { zone_id: string; } export interface IncomingGetParams { zone_id: string; } export namespace Incoming { export import IncomingCreateResponse = IncomingAPI.IncomingCreateResponse; export import IncomingUpdateResponse = IncomingAPI.IncomingUpdateResponse; export import IncomingDeleteResponse = IncomingAPI.IncomingDeleteResponse; export import IncomingGetResponse = IncomingAPI.IncomingGetResponse; export import IncomingCreateParams = IncomingAPI.IncomingCreateParams; export import IncomingUpdateParams = IncomingAPI.IncomingUpdateParams; export import IncomingDeleteParams = IncomingAPI.IncomingDeleteParams; export import IncomingGetParams = IncomingAPI.IncomingGetParams; }