// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from '../../../../resource'; import * as Core from '../../../../core'; import * as StatusAPI from './status'; import { Status, StatusGetParams } from './status'; export class OutgoingResource extends APIResource { status: StatusAPI.Status = new StatusAPI.Status(this._client); /** * Create primary zone configuration for outgoing zone transfers. */ create( params: OutgoingCreateParams, options?: Core.RequestOptions, ): Core.APIPromise { const { zone_id, ...body } = params; return ( this._client.post(`/zones/${zone_id}/secondary_dns/outgoing`, { body, ...options }) as Core.APIPromise<{ result: OutgoingCreateResponse; }> )._thenUnwrap((obj) => obj.result); } /** * Update primary zone configuration for outgoing zone transfers. */ update( params: OutgoingUpdateParams, options?: Core.RequestOptions, ): Core.APIPromise { const { zone_id, ...body } = params; return ( this._client.put(`/zones/${zone_id}/secondary_dns/outgoing`, { body, ...options }) as Core.APIPromise<{ result: OutgoingUpdateResponse; }> )._thenUnwrap((obj) => obj.result); } /** * Delete primary zone configuration for outgoing zone transfers. */ delete( params: OutgoingDeleteParams, options?: Core.RequestOptions, ): Core.APIPromise { const { zone_id } = params; return ( this._client.delete(`/zones/${zone_id}/secondary_dns/outgoing`, options) as Core.APIPromise<{ result: OutgoingDeleteResponse; }> )._thenUnwrap((obj) => obj.result); } /** * Disable outgoing zone transfers for primary zone and clears IXFR backlog of * primary zone. */ disable(params: OutgoingDisableParams, options?: Core.RequestOptions): Core.APIPromise { const { zone_id, body } = params; return ( this._client.post(`/zones/${zone_id}/secondary_dns/outgoing/disable`, { body: body, ...options, }) as Core.APIPromise<{ result: DisableTransfer }> )._thenUnwrap((obj) => obj.result); } /** * Enable outgoing zone transfers for primary zone. */ enable(params: OutgoingEnableParams, options?: Core.RequestOptions): Core.APIPromise { const { zone_id, body } = params; return ( this._client.post(`/zones/${zone_id}/secondary_dns/outgoing/enable`, { body: body, ...options, }) as Core.APIPromise<{ result: EnableTransfer }> )._thenUnwrap((obj) => obj.result); } /** * Notifies the secondary nameserver(s) and clears IXFR backlog of primary zone. */ forceNotify( params: OutgoingForceNotifyParams, options?: Core.RequestOptions, ): Core.APIPromise { const { zone_id, body } = params; return ( this._client.post(`/zones/${zone_id}/secondary_dns/outgoing/force_notify`, { body: body, ...options, }) as Core.APIPromise<{ result: OutgoingForceNotifyResponse }> )._thenUnwrap((obj) => obj.result); } /** * Get primary zone configuration for outgoing zone transfers. */ get(params: OutgoingGetParams, options?: Core.RequestOptions): Core.APIPromise { const { zone_id } = params; return ( this._client.get(`/zones/${zone_id}/secondary_dns/outgoing`, options) as Core.APIPromise<{ result: OutgoingGetResponse; }> )._thenUnwrap((obj) => obj.result); } } /** * The zone transfer status of a primary zone */ export type DisableTransfer = string; /** * The zone transfer status of a primary zone */ export type EnableTransfer = string; export interface Outgoing { id?: string; /** * The time for a specific event. */ checked_time?: string; /** * The time for a specific event. */ created_time?: string; /** * The time for a specific event. */ last_transferred_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; } /** * The zone transfer status of a primary zone */ export type OutgoingStatus = string | null; export interface OutgoingCreateResponse { id?: string; /** * The time for a specific event. */ checked_time?: string; /** * The time for a specific event. */ created_time?: string; /** * The time for a specific event. */ last_transferred_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 OutgoingUpdateResponse { id?: string; /** * The time for a specific event. */ checked_time?: string; /** * The time for a specific event. */ created_time?: string; /** * The time for a specific event. */ last_transferred_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 OutgoingDeleteResponse { id?: string; } /** * When force_notify query parameter is set to true, the response is a simple * string */ export type OutgoingForceNotifyResponse = string; export interface OutgoingGetResponse { id?: string; /** * The time for a specific event. */ checked_time?: string; /** * The time for a specific event. */ created_time?: string; /** * The time for a specific event. */ last_transferred_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 OutgoingCreateParams { /** * Path param: */ zone_id: string; /** * Body param: Zone name. */ name: string; /** * Body param: A list of peer tags. */ peers: Array; } export interface OutgoingUpdateParams { /** * Path param: */ zone_id: string; /** * Body param: Zone name. */ name: string; /** * Body param: A list of peer tags. */ peers: Array; } export interface OutgoingDeleteParams { zone_id: string; } export interface OutgoingDisableParams { /** * Path param: */ zone_id: string; /** * Body param: */ body: unknown; } export interface OutgoingEnableParams { /** * Path param: */ zone_id: string; /** * Body param: */ body: unknown; } export interface OutgoingForceNotifyParams { /** * Path param: */ zone_id: string; /** * Body param: */ body: unknown; } export interface OutgoingGetParams { zone_id: string; } OutgoingResource.Status = Status; export declare namespace OutgoingResource { export { type DisableTransfer as DisableTransfer, type EnableTransfer as EnableTransfer, type Outgoing as Outgoing, type OutgoingStatus as OutgoingStatus, type OutgoingCreateResponse as OutgoingCreateResponse, type OutgoingUpdateResponse as OutgoingUpdateResponse, type OutgoingDeleteResponse as OutgoingDeleteResponse, type OutgoingForceNotifyResponse as OutgoingForceNotifyResponse, type OutgoingGetResponse as OutgoingGetResponse, type OutgoingCreateParams as OutgoingCreateParams, type OutgoingUpdateParams as OutgoingUpdateParams, type OutgoingDeleteParams as OutgoingDeleteParams, type OutgoingDisableParams as OutgoingDisableParams, type OutgoingEnableParams as OutgoingEnableParams, type OutgoingForceNotifyParams as OutgoingForceNotifyParams, type OutgoingGetParams as OutgoingGetParams, }; export { Status as Status, type StatusGetParams as StatusGetParams }; }