cloudflare
Version:
The official TypeScript library for the Cloudflare API
257 lines (219 loc) • 5.8 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 SFU extends APIResource {
/**
* Creates a new Cloudflare calls app. An app is an unique enviroment where each
* Session can access all Tracks within the app.
*/
create(params: SFUCreateParams, options?: Core.RequestOptions): Core.APIPromise<SFUCreateResponse> {
const { account_id, ...body } = params;
return (
this._client.post(`/accounts/${account_id}/calls/apps`, { body, ...options }) as Core.APIPromise<{
result: SFUCreateResponse;
}>
)._thenUnwrap((obj) => obj.result);
}
/**
* Edit details for a single app.
*/
update(
appId: string,
params: SFUUpdateParams,
options?: Core.RequestOptions,
): Core.APIPromise<SFUUpdateResponse> {
const { account_id, ...body } = params;
return (
this._client.put(`/accounts/${account_id}/calls/apps/${appId}`, {
body,
...options,
}) as Core.APIPromise<{ result: SFUUpdateResponse }>
)._thenUnwrap((obj) => obj.result);
}
/**
* Lists all apps in the Cloudflare account
*/
list(
params: SFUListParams,
options?: Core.RequestOptions,
): Core.PagePromise<SFUListResponsesSinglePage, SFUListResponse> {
const { account_id } = params;
return this._client.getAPIList(`/accounts/${account_id}/calls/apps`, SFUListResponsesSinglePage, options);
}
/**
* Deletes an app from Cloudflare Calls
*/
delete(
appId: string,
params: SFUDeleteParams,
options?: Core.RequestOptions,
): Core.APIPromise<SFUDeleteResponse> {
const { account_id } = params;
return (
this._client.delete(`/accounts/${account_id}/calls/apps/${appId}`, options) as Core.APIPromise<{
result: SFUDeleteResponse;
}>
)._thenUnwrap((obj) => obj.result);
}
/**
* Fetches details for a single Calls app.
*/
get(appId: string, params: SFUGetParams, options?: Core.RequestOptions): Core.APIPromise<SFUGetResponse> {
const { account_id } = params;
return (
this._client.get(`/accounts/${account_id}/calls/apps/${appId}`, options) as Core.APIPromise<{
result: SFUGetResponse;
}>
)._thenUnwrap((obj) => obj.result);
}
}
export class SFUListResponsesSinglePage extends SinglePage<SFUListResponse> {}
export interface SFUCreateResponse {
/**
* The date and time the item was created.
*/
created?: string;
/**
* The date and time the item was last modified.
*/
modified?: string;
/**
* A short description of Calls app, not shown to end users.
*/
name?: string;
/**
* Bearer token
*/
secret?: string;
/**
* A Cloudflare-generated unique identifier for a item.
*/
uid?: string;
}
export interface SFUUpdateResponse {
/**
* The date and time the item was created.
*/
created?: string;
/**
* The date and time the item was last modified.
*/
modified?: string;
/**
* A short description of Calls app, not shown to end users.
*/
name?: string;
/**
* A Cloudflare-generated unique identifier for a item.
*/
uid?: string;
}
export interface SFUListResponse {
/**
* The date and time the item was created.
*/
created?: string;
/**
* The date and time the item was last modified.
*/
modified?: string;
/**
* A short description of Calls app, not shown to end users.
*/
name?: string;
/**
* A Cloudflare-generated unique identifier for a item.
*/
uid?: string;
}
export interface SFUDeleteResponse {
/**
* The date and time the item was created.
*/
created?: string;
/**
* The date and time the item was last modified.
*/
modified?: string;
/**
* A short description of Calls app, not shown to end users.
*/
name?: string;
/**
* A Cloudflare-generated unique identifier for a item.
*/
uid?: string;
}
export interface SFUGetResponse {
/**
* The date and time the item was created.
*/
created?: string;
/**
* The date and time the item was last modified.
*/
modified?: string;
/**
* A short description of Calls app, not shown to end users.
*/
name?: string;
/**
* A Cloudflare-generated unique identifier for a item.
*/
uid?: string;
}
export interface SFUCreateParams {
/**
* Path param: The account identifier tag.
*/
account_id: string;
/**
* Body param: A short description of Calls app, not shown to end users.
*/
name?: string;
}
export interface SFUUpdateParams {
/**
* Path param: The account identifier tag.
*/
account_id: string;
/**
* Body param: A short description of Calls app, not shown to end users.
*/
name?: string;
}
export interface SFUListParams {
/**
* The account identifier tag.
*/
account_id: string;
}
export interface SFUDeleteParams {
/**
* The account identifier tag.
*/
account_id: string;
}
export interface SFUGetParams {
/**
* The account identifier tag.
*/
account_id: string;
}
SFU.SFUListResponsesSinglePage = SFUListResponsesSinglePage;
export declare namespace SFU {
export {
type SFUCreateResponse as SFUCreateResponse,
type SFUUpdateResponse as SFUUpdateResponse,
type SFUListResponse as SFUListResponse,
type SFUDeleteResponse as SFUDeleteResponse,
type SFUGetResponse as SFUGetResponse,
SFUListResponsesSinglePage as SFUListResponsesSinglePage,
type SFUCreateParams as SFUCreateParams,
type SFUUpdateParams as SFUUpdateParams,
type SFUListParams as SFUListParams,
type SFUDeleteParams as SFUDeleteParams,
type SFUGetParams as SFUGetParams,
};
}