cloudflare
Version:
The official TypeScript library for the Cloudflare API
192 lines (165 loc) • 4.53 kB
text/typescript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import * as Core from "../core";
import { APIResource } from "../resource";
export class CustomNameservers extends APIResource {
/**
* Add Account Custom Nameserver
*/
create(
params: CustomNameserverCreateParams,
options?: Core.RequestOptions,
): Core.APIPromise<CustomNameserver> {
const { account_id, ...body } = params;
return (
this._client.post(`/accounts/${account_id}/custom_ns`, { body, ...options }) as Core.APIPromise<{
result: CustomNameserver;
}>
)._thenUnwrap((obj) => obj.result);
}
/**
* Delete Account Custom Nameserver
*/
delete(
customNSId: string,
params: CustomNameserverDeleteParams,
options?: Core.RequestOptions,
): Core.APIPromise<CustomNameserverDeleteResponse | null> {
const { account_id, body } = params;
return (
this._client.delete(`/accounts/${account_id}/custom_ns/${customNSId}`, {
body: body,
...options,
}) as Core.APIPromise<{ result: CustomNameserverDeleteResponse | null }>
)._thenUnwrap((obj) => obj.result);
}
/**
* Get Eligible Zones for Account Custom Nameservers
*/
availabilty(
params: CustomNameserverAvailabiltyParams,
options?: Core.RequestOptions,
): Core.APIPromise<CustomNameserverAvailabiltyResponse | null> {
const { account_id } = params;
return (
this._client.get(`/accounts/${account_id}/custom_ns/availability`, options) as Core.APIPromise<{
result: CustomNameserverAvailabiltyResponse | null;
}>
)._thenUnwrap((obj) => obj.result);
}
/**
* List an account's custom nameservers.
*/
get(
params: CustomNameserverGetParams,
options?: Core.RequestOptions,
): Core.APIPromise<CustomNameserverGetResponse | null> {
const { account_id } = params;
return (
this._client.get(`/accounts/${account_id}/custom_ns`, options) as Core.APIPromise<{
result: CustomNameserverGetResponse | null;
}>
)._thenUnwrap((obj) => obj.result);
}
/**
* Verify Account Custom Nameserver Glue Records
*/
verify(
params: CustomNameserverVerifyParams,
options?: Core.RequestOptions,
): Core.APIPromise<CustomNameserverVerifyResponse | null> {
const { account_id, body } = params;
return (
this._client.post(`/accounts/${account_id}/custom_ns/verify`, {
body: body,
...options,
}) as Core.APIPromise<{ result: CustomNameserverVerifyResponse | null }>
)._thenUnwrap((obj) => obj.result);
}
}
/**
* A single account custom nameserver.
*/
export interface CustomNameserver {
/**
* A and AAAA records associated with the nameserver.
*/
dns_records: Array<CustomNameserver.DNSRecord>;
/**
* The FQDN of the name server.
*/
ns_name: string;
/**
* @deprecated: Verification status of the nameserver.
*/
status: 'moved' | 'pending' | 'verified';
/**
* Identifier
*/
zone_tag: string;
/**
* The number of the set that this name server belongs to.
*/
ns_set?: number;
}
export namespace CustomNameserver {
export interface DNSRecord {
/**
* DNS record type.
*/
type?: 'A' | 'AAAA';
/**
* DNS record contents (an IPv4 or IPv6 address).
*/
value?: string;
}
}
export type CustomNameserverDeleteResponse = unknown | Array<unknown> | string;
export type CustomNameserverAvailabiltyResponse = Array<string>;
export type CustomNameserverGetResponse = Array<CustomNameserver>;
export type CustomNameserverVerifyResponse = Array<CustomNameserver>;
export interface CustomNameserverCreateParams {
/**
* Path param: Account identifier tag.
*/
account_id: string;
/**
* Body param: The FQDN of the name server.
*/
ns_name: string;
/**
* Body param: The number of the set that this name server belongs to.
*/
ns_set?: number;
}
export interface CustomNameserverDeleteParams {
/**
* Path param: Account identifier tag.
*/
account_id: string;
/**
* Body param:
*/
body: unknown;
}
export interface CustomNameserverAvailabiltyParams {
/**
* Account identifier tag.
*/
account_id: string;
}
export interface CustomNameserverGetParams {
/**
* Account identifier tag.
*/
account_id: string;
}
export interface CustomNameserverVerifyParams {
/**
* Path param: Account identifier tag.
*/
account_id: string;
/**
* Body param:
*/
body: unknown;
}