cloudflare
Version:
The official TypeScript library for the Cloudflare API
52 lines (42 loc) • 1.32 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 Countries extends APIResource {
/**
* Retrieves countries information for all countries
*
* @example
* ```ts
* const countries =
* await client.cloudforceOne.threatEvents.countries.list({
* account_id: 'account_id',
* });
* ```
*/
list(params: CountryListParams, options?: Core.RequestOptions): Core.APIPromise<CountryListResponse> {
const { account_id } = params;
return this._client.get(`/accounts/${account_id}/cloudforce-one/events/countries`, options);
}
}
export type CountryListResponse = Array<CountryListResponse.CountryListResponseItem>;
export namespace CountryListResponse {
export interface CountryListResponseItem {
result: Array<CountryListResponseItem.Result>;
success: string;
}
export namespace CountryListResponseItem {
export interface Result {
alpha3: string;
name: string;
}
}
}
export interface CountryListParams {
/**
* Account ID.
*/
account_id: string;
}
export declare namespace Countries {
export { type CountryListResponse as CountryListResponse, type CountryListParams as CountryListParams };
}