// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from '../../../resource'; import * as Core from '../../../core'; import { SinglePage } from '../../../pagination'; export class TSIGs extends APIResource { /** * Create TSIG. */ create(params: TSIGCreateParams, options?: Core.RequestOptions): Core.APIPromise { const { account_id, ...body } = params; return ( this._client.post(`/accounts/${account_id}/secondary_dns/tsigs`, { body, ...options, }) as Core.APIPromise<{ result: TSIG }> )._thenUnwrap((obj) => obj.result); } /** * Modify TSIG. */ update(tsigId: string, params: TSIGUpdateParams, options?: Core.RequestOptions): Core.APIPromise { const { account_id, ...body } = params; return ( this._client.put(`/accounts/${account_id}/secondary_dns/tsigs/${tsigId}`, { body, ...options, }) as Core.APIPromise<{ result: TSIG }> )._thenUnwrap((obj) => obj.result); } /** * List TSIGs. */ list(params: TSIGListParams, options?: Core.RequestOptions): Core.PagePromise { const { account_id } = params; return this._client.getAPIList(`/accounts/${account_id}/secondary_dns/tsigs`, TSIGsSinglePage, options); } /** * Delete TSIG. */ delete( tsigId: string, params: TSIGDeleteParams, options?: Core.RequestOptions, ): Core.APIPromise { const { account_id } = params; return ( this._client.delete( `/accounts/${account_id}/secondary_dns/tsigs/${tsigId}`, options, ) as Core.APIPromise<{ result: TSIGDeleteResponse }> )._thenUnwrap((obj) => obj.result); } /** * Get TSIG. */ get(tsigId: string, params: TSIGGetParams, options?: Core.RequestOptions): Core.APIPromise { const { account_id } = params; return ( this._client.get(`/accounts/${account_id}/secondary_dns/tsigs/${tsigId}`, options) as Core.APIPromise<{ result: TSIG; }> )._thenUnwrap((obj) => obj.result); } } export class TSIGsSinglePage extends SinglePage {} export interface TSIG { id: string; /** * TSIG algorithm. */ algo: string; /** * TSIG key name. */ name: string; /** * TSIG secret. */ secret: string; } export interface TSIGDeleteResponse { id?: string; } export interface TSIGCreateParams { /** * Path param: */ account_id: string; /** * Body param: TSIG algorithm. */ algo: string; /** * Body param: TSIG key name. */ name: string; /** * Body param: TSIG secret. */ secret: string; } export interface TSIGUpdateParams { /** * Path param: */ account_id: string; /** * Body param: TSIG algorithm. */ algo: string; /** * Body param: TSIG key name. */ name: string; /** * Body param: TSIG secret. */ secret: string; } export interface TSIGListParams { account_id: string; } export interface TSIGDeleteParams { account_id: string; } export interface TSIGGetParams { account_id: string; } TSIGs.TSIGsSinglePage = TSIGsSinglePage; export declare namespace TSIGs { export { type TSIG as TSIG, type TSIGDeleteResponse as TSIGDeleteResponse, TSIGsSinglePage as TSIGsSinglePage, type TSIGCreateParams as TSIGCreateParams, type TSIGUpdateParams as TSIGUpdateParams, type TSIGListParams as TSIGListParams, type TSIGDeleteParams as TSIGDeleteParams, type TSIGGetParams as TSIGGetParams, }; }