UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

43 lines (37 loc) 1.25 kB
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from "../../core"; import { APIResource } from "../../resource"; import * as ActivationCheckAPI from "./activation-check"; export 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> { const { zone_id } = params; return ( this._client.put(`/zones/${zone_id}/activation_check`, options) as Core.APIPromise<{ result: ActivationCheckTriggerResponse; }> )._thenUnwrap((obj) => obj.result); } } export interface ActivationCheckTriggerResponse { /** * Identifier */ id?: string; } export interface ActivationCheckTriggerParams { /** * Identifier */ zone_id: string; } export namespace ActivationCheck { export import ActivationCheckTriggerResponse = ActivationCheckAPI.ActivationCheckTriggerResponse; export import ActivationCheckTriggerParams = ActivationCheckAPI.ActivationCheckTriggerParams; }