// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from '../../../resource'; import * as Core from '../../../core'; export class IncomingResource extends APIResource { /** * Create secondary zone configuration for incoming zone transfers. */ create( params: IncomingCreateParams, options?: Core.RequestOptions, ): Core.APIPromise { 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 { 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 { 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 { 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 Incoming { 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; /** * The serial number of the SOA for the given zone. */ soa_serial?: number; } 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; /** * 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; /** * 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; /** * 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; } 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; } export interface IncomingDeleteParams { zone_id: string; } export interface IncomingGetParams { zone_id: string; } export declare namespace IncomingResource { export { type Incoming as Incoming, type IncomingCreateResponse as IncomingCreateResponse, type IncomingUpdateResponse as IncomingUpdateResponse, type IncomingDeleteResponse as IncomingDeleteResponse, type IncomingGetResponse as IncomingGetResponse, type IncomingCreateParams as IncomingCreateParams, type IncomingUpdateParams as IncomingUpdateParams, type IncomingDeleteParams as IncomingDeleteParams, type IncomingGetParams as IncomingGetParams, }; }