cloudflare
Version:
The official TypeScript library for the Cloudflare API
44 lines (37 loc) • 1.09 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';
export class Unrevoke extends APIResource {
/**
* Unrevokes a list of devices.
*/
create(
params: UnrevokeCreateParams,
options?: Core.RequestOptions,
): Core.APIPromise<UnrevokeCreateResponse | null> {
const { account_id, body } = params;
return (
this._client.post(`/accounts/${account_id}/devices/unrevoke`, {
body: body,
...options,
}) as Core.APIPromise<{ result: UnrevokeCreateResponse | null }>
)._thenUnwrap((obj) => obj.result);
}
}
export type UnrevokeCreateResponse = unknown | string;
export interface UnrevokeCreateParams {
/**
* Path param:
*/
account_id: string;
/**
* Body param: A list of device ids to unrevoke.
*/
body: Array<string>;
}
export declare namespace Unrevoke {
export {
type UnrevokeCreateResponse as UnrevokeCreateResponse,
type UnrevokeCreateParams as UnrevokeCreateParams,
};
}