UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

27 lines 1.03 kB
import * as Core from 'cloudflare/core'; import { APIResource } from 'cloudflare/resource'; import * as ActivationCheckAPI from 'cloudflare/resources/zones/activation-check'; export declare class ActivationCheck extends APIResource { /** * Triggeres a new activation check for a PENDING Zone. This can be triggered every * 5 min for paygo/ent customers, every hour for FREE Zones. */ trigger(params: ActivationCheckTriggerParams, options?: Core.RequestOptions): Core.APIPromise<ActivationCheckTriggerResponse>; } export interface ActivationCheckTriggerResponse { /** * Identifier */ id?: string; } export interface ActivationCheckTriggerParams { /** * Identifier */ zone_id: string; } export declare namespace ActivationCheck { export import ActivationCheckTriggerResponse = ActivationCheckAPI.ActivationCheckTriggerResponse; export import ActivationCheckTriggerParams = ActivationCheckAPI.ActivationCheckTriggerParams; } //# sourceMappingURL=activation-check.d.ts.map