cloudflare
Version:
The official TypeScript library for the Cloudflare API
460 lines (406 loc) • 11.7 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 Custom extends APIResource {
/**
* Register a new custom domain for an existing R2 bucket.
*
* @example
* ```ts
* const custom =
* await client.r2.buckets.domains.custom.create(
* 'example-bucket',
* {
* account_id: '023e105f4ecef8ad9ca31a8372d0c353',
* domain: 'prefix.example-domain.com',
* enabled: true,
* zoneId: '36ca64a6d92827b8a6b90be344bb1bfd',
* },
* );
* ```
*/
create(
bucketName: string,
params: CustomCreateParams,
options?: Core.RequestOptions,
): Core.APIPromise<CustomCreateResponse> {
const { account_id, jurisdiction, ...body } = params;
return (
this._client.post(`/accounts/${account_id}/r2/buckets/${bucketName}/domains/custom`, {
body,
...options,
headers: {
...(jurisdiction?.toString() != null ?
{ 'cf-r2-jurisdiction': jurisdiction?.toString() }
: undefined),
...options?.headers,
},
}) as Core.APIPromise<{ result: CustomCreateResponse }>
)._thenUnwrap((obj) => obj.result);
}
/**
* Edit the configuration for a custom domain on an existing R2 bucket.
*
* @example
* ```ts
* const custom =
* await client.r2.buckets.domains.custom.update(
* 'example-bucket',
* 'example-domain/custom-domain.com',
* { account_id: '023e105f4ecef8ad9ca31a8372d0c353' },
* );
* ```
*/
update(
bucketName: string,
domain: string,
params: CustomUpdateParams,
options?: Core.RequestOptions,
): Core.APIPromise<CustomUpdateResponse> {
const { account_id, jurisdiction, ...body } = params;
return (
this._client.put(`/accounts/${account_id}/r2/buckets/${bucketName}/domains/custom/${domain}`, {
body,
...options,
headers: {
...(jurisdiction?.toString() != null ?
{ 'cf-r2-jurisdiction': jurisdiction?.toString() }
: undefined),
...options?.headers,
},
}) as Core.APIPromise<{ result: CustomUpdateResponse }>
)._thenUnwrap((obj) => obj.result);
}
/**
* Gets a list of all custom domains registered with an existing R2 bucket.
*
* @example
* ```ts
* const customs = await client.r2.buckets.domains.custom.list(
* 'example-bucket',
* { account_id: '023e105f4ecef8ad9ca31a8372d0c353' },
* );
* ```
*/
list(
bucketName: string,
params: CustomListParams,
options?: Core.RequestOptions,
): Core.APIPromise<CustomListResponse> {
const { account_id, jurisdiction } = params;
return (
this._client.get(`/accounts/${account_id}/r2/buckets/${bucketName}/domains/custom`, {
...options,
headers: {
...(jurisdiction?.toString() != null ?
{ 'cf-r2-jurisdiction': jurisdiction?.toString() }
: undefined),
...options?.headers,
},
}) as Core.APIPromise<{ result: CustomListResponse }>
)._thenUnwrap((obj) => obj.result);
}
/**
* Remove custom domain registration from an existing R2 bucket.
*
* @example
* ```ts
* const custom =
* await client.r2.buckets.domains.custom.delete(
* 'example-bucket',
* 'example-domain/custom-domain.com',
* { account_id: '023e105f4ecef8ad9ca31a8372d0c353' },
* );
* ```
*/
delete(
bucketName: string,
domain: string,
params: CustomDeleteParams,
options?: Core.RequestOptions,
): Core.APIPromise<CustomDeleteResponse> {
const { account_id, jurisdiction } = params;
return (
this._client.delete(`/accounts/${account_id}/r2/buckets/${bucketName}/domains/custom/${domain}`, {
...options,
headers: {
...(jurisdiction?.toString() != null ?
{ 'cf-r2-jurisdiction': jurisdiction?.toString() }
: undefined),
...options?.headers,
},
}) as Core.APIPromise<{ result: CustomDeleteResponse }>
)._thenUnwrap((obj) => obj.result);
}
/**
* Get the configuration for a custom domain on an existing R2 bucket.
*
* @example
* ```ts
* const custom = await client.r2.buckets.domains.custom.get(
* 'example-bucket',
* 'example-domain/custom-domain.com',
* { account_id: '023e105f4ecef8ad9ca31a8372d0c353' },
* );
* ```
*/
get(
bucketName: string,
domain: string,
params: CustomGetParams,
options?: Core.RequestOptions,
): Core.APIPromise<CustomGetResponse> {
const { account_id, jurisdiction } = params;
return (
this._client.get(`/accounts/${account_id}/r2/buckets/${bucketName}/domains/custom/${domain}`, {
...options,
headers: {
...(jurisdiction?.toString() != null ?
{ 'cf-r2-jurisdiction': jurisdiction?.toString() }
: undefined),
...options?.headers,
},
}) as Core.APIPromise<{ result: CustomGetResponse }>
)._thenUnwrap((obj) => obj.result);
}
}
export interface CustomCreateResponse {
/**
* Domain name of the affected custom domain.
*/
domain: string;
/**
* Whether this bucket is publicly accessible at the specified custom domain.
*/
enabled: boolean;
/**
* An allowlist of ciphers for TLS termination. These ciphers must be in the
* BoringSSL format.
*/
ciphers?: Array<string>;
/**
* Minimum TLS Version the custom domain will accept for incoming connections. If
* not set, defaults to 1.0.
*/
minTLS?: '1.0' | '1.1' | '1.2' | '1.3';
}
export interface CustomUpdateResponse {
/**
* Domain name of the affected custom domain.
*/
domain: string;
/**
* An allowlist of ciphers for TLS termination. These ciphers must be in the
* BoringSSL format.
*/
ciphers?: Array<string>;
/**
* Whether this bucket is publicly accessible at the specified custom domain.
*/
enabled?: boolean;
/**
* Minimum TLS Version the custom domain will accept for incoming connections. If
* not set, defaults to 1.0.
*/
minTLS?: '1.0' | '1.1' | '1.2' | '1.3';
}
export interface CustomListResponse {
domains: Array<CustomListResponse.Domain>;
}
export namespace CustomListResponse {
export interface Domain {
/**
* Domain name of the custom domain to be added.
*/
domain: string;
/**
* Whether this bucket is publicly accessible at the specified custom domain.
*/
enabled: boolean;
status: Domain.Status;
/**
* An allowlist of ciphers for TLS termination. These ciphers must be in the
* BoringSSL format.
*/
ciphers?: Array<string>;
/**
* Minimum TLS Version the custom domain will accept for incoming connections. If
* not set, defaults to 1.0.
*/
minTLS?: '1.0' | '1.1' | '1.2' | '1.3';
/**
* Zone ID of the custom domain resides in.
*/
zoneId?: string;
/**
* Zone that the custom domain resides in.
*/
zoneName?: string;
}
export namespace Domain {
export interface Status {
/**
* Ownership status of the domain.
*/
ownership: 'pending' | 'active' | 'deactivated' | 'blocked' | 'error' | 'unknown';
/**
* SSL certificate status.
*/
ssl: 'initializing' | 'pending' | 'active' | 'deactivated' | 'error' | 'unknown';
}
}
}
export interface CustomDeleteResponse {
/**
* Name of the removed custom domain.
*/
domain: string;
}
export interface CustomGetResponse {
/**
* Domain name of the custom domain to be added.
*/
domain: string;
/**
* Whether this bucket is publicly accessible at the specified custom domain.
*/
enabled: boolean;
status: CustomGetResponse.Status;
/**
* An allowlist of ciphers for TLS termination. These ciphers must be in the
* BoringSSL format.
*/
ciphers?: Array<string>;
/**
* Minimum TLS Version the custom domain will accept for incoming connections. If
* not set, defaults to 1.0.
*/
minTLS?: '1.0' | '1.1' | '1.2' | '1.3';
/**
* Zone ID of the custom domain resides in.
*/
zoneId?: string;
/**
* Zone that the custom domain resides in.
*/
zoneName?: string;
}
export namespace CustomGetResponse {
export interface Status {
/**
* Ownership status of the domain.
*/
ownership: 'pending' | 'active' | 'deactivated' | 'blocked' | 'error' | 'unknown';
/**
* SSL certificate status.
*/
ssl: 'initializing' | 'pending' | 'active' | 'deactivated' | 'error' | 'unknown';
}
}
export interface CustomCreateParams {
/**
* Path param: Account ID.
*/
account_id: string;
/**
* Body param: Name of the custom domain to be added.
*/
domain: string;
/**
* Body param: Whether to enable public bucket access at the custom domain. If
* undefined, the domain will be enabled.
*/
enabled: boolean;
/**
* Body param: Zone ID of the custom domain.
*/
zoneId: string;
/**
* Body param: An allowlist of ciphers for TLS termination. These ciphers must be
* in the BoringSSL format.
*/
ciphers?: Array<string>;
/**
* Body param: Minimum TLS Version the custom domain will accept for incoming
* connections. If not set, defaults to 1.0.
*/
minTLS?: '1.0' | '1.1' | '1.2' | '1.3';
/**
* Header param: Jurisdiction where objects in this bucket are guaranteed to be
* stored.
*/
jurisdiction?: 'default' | 'eu' | 'fedramp';
}
export interface CustomUpdateParams {
/**
* Path param: Account ID.
*/
account_id: string;
/**
* Body param: An allowlist of ciphers for TLS termination. These ciphers must be
* in the BoringSSL format.
*/
ciphers?: Array<string>;
/**
* Body param: Whether to enable public bucket access at the specified custom
* domain.
*/
enabled?: boolean;
/**
* Body param: Minimum TLS Version the custom domain will accept for incoming
* connections. If not set, defaults to previous value.
*/
minTLS?: '1.0' | '1.1' | '1.2' | '1.3';
/**
* Header param: Jurisdiction where objects in this bucket are guaranteed to be
* stored.
*/
jurisdiction?: 'default' | 'eu' | 'fedramp';
}
export interface CustomListParams {
/**
* Path param: Account ID.
*/
account_id: string;
/**
* Header param: Jurisdiction where objects in this bucket are guaranteed to be
* stored.
*/
jurisdiction?: 'default' | 'eu' | 'fedramp';
}
export interface CustomDeleteParams {
/**
* Path param: Account ID.
*/
account_id: string;
/**
* Header param: Jurisdiction where objects in this bucket are guaranteed to be
* stored.
*/
jurisdiction?: 'default' | 'eu' | 'fedramp';
}
export interface CustomGetParams {
/**
* Path param: Account ID.
*/
account_id: string;
/**
* Header param: Jurisdiction where objects in this bucket are guaranteed to be
* stored.
*/
jurisdiction?: 'default' | 'eu' | 'fedramp';
}
export declare namespace Custom {
export {
type CustomCreateResponse as CustomCreateResponse,
type CustomUpdateResponse as CustomUpdateResponse,
type CustomListResponse as CustomListResponse,
type CustomDeleteResponse as CustomDeleteResponse,
type CustomGetResponse as CustomGetResponse,
type CustomCreateParams as CustomCreateParams,
type CustomUpdateParams as CustomUpdateParams,
type CustomListParams as CustomListParams,
type CustomDeleteParams as CustomDeleteParams,
type CustomGetParams as CustomGetParams,
};
}