cloudflare
Version:
The official TypeScript library for the Cloudflare API
70 lines (60 loc) • 1.74 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 Subdomains extends APIResource {
/**
* Creates a Workers subdomain for an account.
*/
update(
params: SubdomainUpdateParams,
options?: Core.RequestOptions,
): Core.APIPromise<SubdomainUpdateResponse> {
const { account_id, ...body } = params;
return (
this._client.put(`/accounts/${account_id}/workers/subdomain`, { body, ...options }) as Core.APIPromise<{
result: SubdomainUpdateResponse;
}>
)._thenUnwrap((obj) => obj.result);
}
/**
* Returns a Workers subdomain for an account.
*/
get(params: SubdomainGetParams, options?: Core.RequestOptions): Core.APIPromise<SubdomainGetResponse> {
const { account_id } = params;
return (
this._client.get(`/accounts/${account_id}/workers/subdomain`, options) as Core.APIPromise<{
result: SubdomainGetResponse;
}>
)._thenUnwrap((obj) => obj.result);
}
}
export interface SubdomainUpdateResponse {
subdomain?: string;
}
export interface SubdomainGetResponse {
subdomain?: string;
}
export interface SubdomainUpdateParams {
/**
* Path param: Identifier
*/
account_id: string;
/**
* Body param:
*/
subdomain?: string;
}
export interface SubdomainGetParams {
/**
* Identifier
*/
account_id: string;
}
export declare namespace Subdomains {
export {
type SubdomainUpdateResponse as SubdomainUpdateResponse,
type SubdomainGetResponse as SubdomainGetResponse,
type SubdomainUpdateParams as SubdomainUpdateParams,
type SubdomainGetParams as SubdomainGetParams,
};
}