UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

322 lines (240 loc) 7.45 kB
// 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 Domains extends APIResource { /** * Add a new domain for the Pages project. */ create( projectName: string, params: DomainCreateParams, options?: Core.RequestOptions, ): Core.APIPromise<DomainCreateResponse | null> { const { account_id, ...body } = params; return ( this._client.post(`/accounts/${account_id}/pages/projects/${projectName}/domains`, { body, ...options, }) as Core.APIPromise<{ result: DomainCreateResponse | null }> )._thenUnwrap((obj) => obj.result); } /** * Fetch a list of all domains associated with a Pages project. */ list( projectName: string, params: DomainListParams, options?: Core.RequestOptions, ): Core.PagePromise<DomainListResponsesSinglePage, DomainListResponse> { const { account_id } = params; return this._client.getAPIList( `/accounts/${account_id}/pages/projects/${projectName}/domains`, DomainListResponsesSinglePage, options, ); } /** * Delete a Pages project's domain. */ delete( projectName: string, domainName: string, params: DomainDeleteParams, options?: Core.RequestOptions, ): Core.APIPromise<DomainDeleteResponse | null> { const { account_id } = params; return ( this._client.delete( `/accounts/${account_id}/pages/projects/${projectName}/domains/${domainName}`, options, ) as Core.APIPromise<{ result: DomainDeleteResponse | null }> )._thenUnwrap((obj) => obj.result); } /** * Retry the validation status of a single domain. */ edit( projectName: string, domainName: string, params: DomainEditParams, options?: Core.RequestOptions, ): Core.APIPromise<DomainEditResponse | null> { const { account_id, body } = params; return ( this._client.patch(`/accounts/${account_id}/pages/projects/${projectName}/domains/${domainName}`, { body: body, ...options, }) as Core.APIPromise<{ result: DomainEditResponse | null }> )._thenUnwrap((obj) => obj.result); } /** * Fetch a single domain. */ get( projectName: string, domainName: string, params: DomainGetParams, options?: Core.RequestOptions, ): Core.APIPromise<DomainGetResponse | null> { const { account_id } = params; return ( this._client.get( `/accounts/${account_id}/pages/projects/${projectName}/domains/${domainName}`, options, ) as Core.APIPromise<{ result: DomainGetResponse | null }> )._thenUnwrap((obj) => obj.result); } } export class DomainListResponsesSinglePage extends SinglePage<DomainListResponse> {} export interface DomainCreateResponse { id?: string; certificate_authority?: 'google' | 'lets_encrypt'; created_on?: string; domain_id?: string; name?: string; status?: 'initializing' | 'pending' | 'active' | 'deactivated' | 'blocked' | 'error'; validation_data?: DomainCreateResponse.ValidationData; verification_data?: DomainCreateResponse.VerificationData; zone_tag?: string; } export namespace DomainCreateResponse { export interface ValidationData { error_message?: string; method?: 'http' | 'txt'; status?: 'initializing' | 'pending' | 'active' | 'deactivated' | 'error'; txt_name?: string; txt_value?: string; } export interface VerificationData { error_message?: string; status?: 'pending' | 'active' | 'deactivated' | 'blocked' | 'error'; } } export interface DomainListResponse { id?: string; certificate_authority?: 'google' | 'lets_encrypt'; created_on?: string; domain_id?: string; name?: string; status?: 'initializing' | 'pending' | 'active' | 'deactivated' | 'blocked' | 'error'; validation_data?: DomainListResponse.ValidationData; verification_data?: DomainListResponse.VerificationData; zone_tag?: string; } export namespace DomainListResponse { export interface ValidationData { error_message?: string; method?: 'http' | 'txt'; status?: 'initializing' | 'pending' | 'active' | 'deactivated' | 'error'; txt_name?: string; txt_value?: string; } export interface VerificationData { error_message?: string; status?: 'pending' | 'active' | 'deactivated' | 'blocked' | 'error'; } } export type DomainDeleteResponse = unknown; export interface DomainEditResponse { id?: string; certificate_authority?: 'google' | 'lets_encrypt'; created_on?: string; domain_id?: string; name?: string; status?: 'initializing' | 'pending' | 'active' | 'deactivated' | 'blocked' | 'error'; validation_data?: DomainEditResponse.ValidationData; verification_data?: DomainEditResponse.VerificationData; zone_tag?: string; } export namespace DomainEditResponse { export interface ValidationData { error_message?: string; method?: 'http' | 'txt'; status?: 'initializing' | 'pending' | 'active' | 'deactivated' | 'error'; txt_name?: string; txt_value?: string; } export interface VerificationData { error_message?: string; status?: 'pending' | 'active' | 'deactivated' | 'blocked' | 'error'; } } export interface DomainGetResponse { id?: string; certificate_authority?: 'google' | 'lets_encrypt'; created_on?: string; domain_id?: string; name?: string; status?: 'initializing' | 'pending' | 'active' | 'deactivated' | 'blocked' | 'error'; validation_data?: DomainGetResponse.ValidationData; verification_data?: DomainGetResponse.VerificationData; zone_tag?: string; } export namespace DomainGetResponse { export interface ValidationData { error_message?: string; method?: 'http' | 'txt'; status?: 'initializing' | 'pending' | 'active' | 'deactivated' | 'error'; txt_name?: string; txt_value?: string; } export interface VerificationData { error_message?: string; status?: 'pending' | 'active' | 'deactivated' | 'blocked' | 'error'; } } export interface DomainCreateParams { /** * Path param: Identifier */ account_id: string; /** * Body param: */ name?: string; } export interface DomainListParams { /** * Identifier */ account_id: string; } export interface DomainDeleteParams { /** * Identifier */ account_id: string; } export interface DomainEditParams { /** * Path param: Identifier */ account_id: string; /** * Body param: */ body: unknown; } export interface DomainGetParams { /** * Identifier */ account_id: string; } Domains.DomainListResponsesSinglePage = DomainListResponsesSinglePage; export declare namespace Domains { export { type DomainCreateResponse as DomainCreateResponse, type DomainListResponse as DomainListResponse, type DomainDeleteResponse as DomainDeleteResponse, type DomainEditResponse as DomainEditResponse, type DomainGetResponse as DomainGetResponse, DomainListResponsesSinglePage as DomainListResponsesSinglePage, type DomainCreateParams as DomainCreateParams, type DomainListParams as DomainListParams, type DomainDeleteParams as DomainDeleteParams, type DomainEditParams as DomainEditParams, type DomainGetParams as DomainGetParams, }; }