cloudflare
Version:
The official TypeScript library for the Cloudflare API
64 lines (55 loc) • 1.64 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 Regions extends APIResource {
/**
* List all Regional Services regions available for use by this account.
*
* @example
* ```ts
* // Automatically fetches more pages as needed.
* for await (const regionListResponse of client.addressing.regionalHostnames.regions.list(
* { account_id: '023e105f4ecef8ad9ca31a8372d0c353' },
* )) {
* // ...
* }
* ```
*/
list(
params: RegionListParams,
options?: Core.RequestOptions,
): Core.PagePromise<RegionListResponsesSinglePage, RegionListResponse> {
const { account_id } = params;
return this._client.getAPIList(
`/accounts/${account_id}/addressing/regional_hostnames/regions`,
RegionListResponsesSinglePage,
options,
);
}
}
export class RegionListResponsesSinglePage extends SinglePage<RegionListResponse> {}
export interface RegionListResponse {
/**
* Identifying key for the region
*/
key?: string;
/**
* Human-readable text label for the region
*/
label?: string;
}
export interface RegionListParams {
/**
* Identifier.
*/
account_id: string;
}
Regions.RegionListResponsesSinglePage = RegionListResponsesSinglePage;
export declare namespace Regions {
export {
type RegionListResponse as RegionListResponse,
RegionListResponsesSinglePage as RegionListResponsesSinglePage,
type RegionListParams as RegionListParams,
};
}