cloudflare
Version:
The official TypeScript library for the Cloudflare API
61 lines (49 loc) • 1.57 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 { SinglePage } from '../../../pagination';
export class Release extends APIResource {
/**
* Release messages from quarantine
*/
bulk(
params: ReleaseBulkParams,
options?: Core.RequestOptions,
): Core.PagePromise<ReleaseBulkResponsesSinglePage, ReleaseBulkResponse> {
const { account_id, body } = params;
return this._client.getAPIList(
`/accounts/${account_id}/email-security/investigate/release`,
ReleaseBulkResponsesSinglePage,
{ body: body, method: 'post', ...options },
);
}
}
export class ReleaseBulkResponsesSinglePage extends SinglePage<ReleaseBulkResponse> {}
export interface ReleaseBulkResponse {
/**
* The identifier of the message.
*/
postfix_id: string;
delivered?: Array<string> | null;
failed?: Array<string> | null;
undelivered?: Array<string> | null;
}
export interface ReleaseBulkParams {
/**
* Path param: Account Identifier
*/
account_id: string;
/**
* Body param: A list of messages identfied by their `postfix_id`s that should be
* released.
*/
body: Array<string>;
}
Release.ReleaseBulkResponsesSinglePage = ReleaseBulkResponsesSinglePage;
export declare namespace Release {
export {
type ReleaseBulkResponse as ReleaseBulkResponse,
ReleaseBulkResponsesSinglePage as ReleaseBulkResponsesSinglePage,
type ReleaseBulkParams as ReleaseBulkParams,
};
}