cloudflare
Version:
The official TypeScript library for the Cloudflare API
160 lines (135 loc) • 3.43 kB
text/typescript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../../resource';
import * as Core from '../../../core';
import * as Shared from '../../shared';
export class Tail extends APIResource {
/**
* Starts a tail that receives logs and exception from a Worker.
*/
create(
scriptName: string,
params: TailCreateParams,
options?: Core.RequestOptions,
): Core.APIPromise<TailCreateResponse> {
const { account_id, body } = params;
return (
this._client.post(`/accounts/${account_id}/workers/scripts/${scriptName}/tails`, {
body: body,
...options,
}) as Core.APIPromise<{ result: TailCreateResponse }>
)._thenUnwrap((obj) => obj.result);
}
/**
* Deletes a tail from a Worker.
*/
delete(
scriptName: string,
id: string,
params: TailDeleteParams,
options?: Core.RequestOptions,
): Core.APIPromise<TailDeleteResponse> {
const { account_id } = params;
return this._client.delete(`/accounts/${account_id}/workers/scripts/${scriptName}/tails/${id}`, options);
}
/**
* Get list of tails currently deployed on a Worker.
*/
get(
scriptName: string,
params: TailGetParams,
options?: Core.RequestOptions,
): Core.APIPromise<TailGetResponse> {
const { account_id } = params;
return (
this._client.get(
`/accounts/${account_id}/workers/scripts/${scriptName}/tails`,
options,
) as Core.APIPromise<{ result: TailGetResponse }>
)._thenUnwrap((obj) => obj.result);
}
}
/**
* A reference to a script that will consume logs from the attached Worker.
*/
export interface ConsumerScript {
/**
* Name of Worker that is to be the consumer.
*/
service: string;
/**
* Optional environment if the Worker utilizes one.
*/
environment?: string;
/**
* Optional dispatch namespace the script belongs to.
*/
namespace?: string;
}
/**
* A reference to a script that will consume logs from the attached Worker.
*/
export interface ConsumerScriptParam {
/**
* Name of Worker that is to be the consumer.
*/
service: string;
/**
* Optional environment if the Worker utilizes one.
*/
environment?: string;
/**
* Optional dispatch namespace the script belongs to.
*/
namespace?: string;
}
export interface TailCreateResponse {
id?: string;
expires_at?: string;
url?: string;
}
export interface TailDeleteResponse {
errors: Array<Shared.ResponseInfo>;
messages: Array<Shared.ResponseInfo>;
/**
* Whether the API call was successful
*/
success: true;
}
export interface TailGetResponse {
id?: string;
expires_at?: string;
url?: string;
}
export interface TailCreateParams {
/**
* Path param: Identifier
*/
account_id: string;
/**
* Body param:
*/
body: unknown;
}
export interface TailDeleteParams {
/**
* Identifier
*/
account_id: string;
}
export interface TailGetParams {
/**
* Identifier
*/
account_id: string;
}
export declare namespace Tail {
export {
type ConsumerScript as ConsumerScript,
type TailCreateResponse as TailCreateResponse,
type TailDeleteResponse as TailDeleteResponse,
type TailGetResponse as TailGetResponse,
type TailCreateParams as TailCreateParams,
type TailDeleteParams as TailDeleteParams,
type TailGetParams as TailGetParams,
};
}