cloudflare
Version:
The official TypeScript library for the Cloudflare API
323 lines (282 loc) • 8.08 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 ScriptsAPI from './scripts/scripts';
import {
Script,
ScriptDeleteParams,
ScriptDeleteResponse,
ScriptGetParams,
ScriptUpdateParams,
ScriptUpdateResponse,
Scripts,
} from './scripts/scripts';
import { SinglePage } from '../../../../pagination';
export class Namespaces extends APIResource {
scripts: ScriptsAPI.Scripts = new ScriptsAPI.Scripts(this._client);
/**
* Create a new Workers for Platforms namespace.
*
* @example
* ```ts
* const namespace =
* await client.workersForPlatforms.dispatch.namespaces.create(
* { account_id: '023e105f4ecef8ad9ca31a8372d0c353' },
* );
* ```
*/
create(
params: NamespaceCreateParams,
options?: Core.RequestOptions,
): Core.APIPromise<NamespaceCreateResponse> {
const { account_id, ...body } = params;
return (
this._client.post(`/accounts/${account_id}/workers/dispatch/namespaces`, {
body,
...options,
}) as Core.APIPromise<{ result: NamespaceCreateResponse }>
)._thenUnwrap((obj) => obj.result);
}
/**
* Fetch a list of Workers for Platforms namespaces.
*
* @example
* ```ts
* // Automatically fetches more pages as needed.
* for await (const namespaceListResponse of client.workersForPlatforms.dispatch.namespaces.list(
* { account_id: '023e105f4ecef8ad9ca31a8372d0c353' },
* )) {
* // ...
* }
* ```
*/
list(
params: NamespaceListParams,
options?: Core.RequestOptions,
): Core.PagePromise<NamespaceListResponsesSinglePage, NamespaceListResponse> {
const { account_id } = params;
return this._client.getAPIList(
`/accounts/${account_id}/workers/dispatch/namespaces`,
NamespaceListResponsesSinglePage,
options,
);
}
/**
* Delete a Workers for Platforms namespace.
*
* @example
* ```ts
* const namespace =
* await client.workersForPlatforms.dispatch.namespaces.delete(
* 'my-dispatch-namespace',
* { account_id: '023e105f4ecef8ad9ca31a8372d0c353' },
* );
* ```
*/
delete(
dispatchNamespace: string,
params: NamespaceDeleteParams,
options?: Core.RequestOptions,
): Core.APIPromise<NamespaceDeleteResponse | null> {
const { account_id } = params;
return (
this._client.delete(
`/accounts/${account_id}/workers/dispatch/namespaces/${dispatchNamespace}`,
options,
) as Core.APIPromise<{ result: NamespaceDeleteResponse | null }>
)._thenUnwrap((obj) => obj.result);
}
/**
* Get a Workers for Platforms namespace.
*
* @example
* ```ts
* const namespace =
* await client.workersForPlatforms.dispatch.namespaces.get(
* 'my-dispatch-namespace',
* { account_id: '023e105f4ecef8ad9ca31a8372d0c353' },
* );
* ```
*/
get(
dispatchNamespace: string,
params: NamespaceGetParams,
options?: Core.RequestOptions,
): Core.APIPromise<NamespaceGetResponse> {
const { account_id } = params;
return (
this._client.get(
`/accounts/${account_id}/workers/dispatch/namespaces/${dispatchNamespace}`,
options,
) as Core.APIPromise<{ result: NamespaceGetResponse }>
)._thenUnwrap((obj) => obj.result);
}
}
export class NamespaceListResponsesSinglePage extends SinglePage<NamespaceListResponse> {}
export interface NamespaceCreateResponse {
/**
* Identifier.
*/
created_by?: string;
/**
* When the script was created.
*/
created_on?: string;
/**
* Identifier.
*/
modified_by?: string;
/**
* When the script was last modified.
*/
modified_on?: string;
/**
* API Resource UUID tag.
*/
namespace_id?: string;
/**
* Name of the Workers for Platforms dispatch namespace.
*/
namespace_name?: string;
/**
* The current number of scripts in this Dispatch Namespace.
*/
script_count?: number;
/**
* Whether the Workers in the namespace are executed in a "trusted" manner. When a
* Worker is trusted, it has access to the shared caches for the zone in the Cache
* API, and has access to the `request.cf` object on incoming Requests. When a
* Worker is untrusted, caches are not shared across the zone, and `request.cf` is
* undefined. By default, Workers in a namespace are "untrusted".
*/
trusted_workers?: boolean;
}
export interface NamespaceListResponse {
/**
* Identifier.
*/
created_by?: string;
/**
* When the script was created.
*/
created_on?: string;
/**
* Identifier.
*/
modified_by?: string;
/**
* When the script was last modified.
*/
modified_on?: string;
/**
* API Resource UUID tag.
*/
namespace_id?: string;
/**
* Name of the Workers for Platforms dispatch namespace.
*/
namespace_name?: string;
/**
* The current number of scripts in this Dispatch Namespace.
*/
script_count?: number;
/**
* Whether the Workers in the namespace are executed in a "trusted" manner. When a
* Worker is trusted, it has access to the shared caches for the zone in the Cache
* API, and has access to the `request.cf` object on incoming Requests. When a
* Worker is untrusted, caches are not shared across the zone, and `request.cf` is
* undefined. By default, Workers in a namespace are "untrusted".
*/
trusted_workers?: boolean;
}
export type NamespaceDeleteResponse = unknown;
export interface NamespaceGetResponse {
/**
* Identifier.
*/
created_by?: string;
/**
* When the script was created.
*/
created_on?: string;
/**
* Identifier.
*/
modified_by?: string;
/**
* When the script was last modified.
*/
modified_on?: string;
/**
* API Resource UUID tag.
*/
namespace_id?: string;
/**
* Name of the Workers for Platforms dispatch namespace.
*/
namespace_name?: string;
/**
* The current number of scripts in this Dispatch Namespace.
*/
script_count?: number;
/**
* Whether the Workers in the namespace are executed in a "trusted" manner. When a
* Worker is trusted, it has access to the shared caches for the zone in the Cache
* API, and has access to the `request.cf` object on incoming Requests. When a
* Worker is untrusted, caches are not shared across the zone, and `request.cf` is
* undefined. By default, Workers in a namespace are "untrusted".
*/
trusted_workers?: boolean;
}
export interface NamespaceCreateParams {
/**
* Path param: Identifier.
*/
account_id: string;
/**
* Body param: The name of the dispatch namespace.
*/
name?: string;
}
export interface NamespaceListParams {
/**
* Identifier.
*/
account_id: string;
}
export interface NamespaceDeleteParams {
/**
* Identifier.
*/
account_id: string;
}
export interface NamespaceGetParams {
/**
* Identifier.
*/
account_id: string;
}
Namespaces.NamespaceListResponsesSinglePage = NamespaceListResponsesSinglePage;
Namespaces.Scripts = Scripts;
export declare namespace Namespaces {
export {
type NamespaceCreateResponse as NamespaceCreateResponse,
type NamespaceListResponse as NamespaceListResponse,
type NamespaceDeleteResponse as NamespaceDeleteResponse,
type NamespaceGetResponse as NamespaceGetResponse,
NamespaceListResponsesSinglePage as NamespaceListResponsesSinglePage,
type NamespaceCreateParams as NamespaceCreateParams,
type NamespaceListParams as NamespaceListParams,
type NamespaceDeleteParams as NamespaceDeleteParams,
type NamespaceGetParams as NamespaceGetParams,
};
export {
Scripts as Scripts,
type Script as Script,
type ScriptUpdateResponse as ScriptUpdateResponse,
type ScriptDeleteResponse as ScriptDeleteResponse,
type ScriptUpdateParams as ScriptUpdateParams,
type ScriptDeleteParams as ScriptDeleteParams,
type ScriptGetParams as ScriptGetParams,
};
}