UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

90 lines (78 loc) 2.53 kB
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from "../../../core"; import { APIResource } from "../../../resource"; import * as IPGeolocationAPI from "./ip-geolocation"; export class IPGeolocationResource extends APIResource { /** * Enable IP Geolocation to have Cloudflare geolocate visitors to your website and * pass the country code to you. * (https://support.cloudflare.com/hc/en-us/articles/200168236). */ edit(params: IPGeolocationEditParams, options?: Core.RequestOptions): Core.APIPromise<IPGeolocation> { const { zone_id, ...body } = params; return ( this._client.patch(`/zones/${zone_id}/settings/ip_geolocation`, { body, ...options, }) as Core.APIPromise<{ result: IPGeolocation }> )._thenUnwrap((obj) => obj.result); } /** * Enable IP Geolocation to have Cloudflare geolocate visitors to your website and * pass the country code to you. * (https://support.cloudflare.com/hc/en-us/articles/200168236). */ get(params: IPGeolocationGetParams, options?: Core.RequestOptions): Core.APIPromise<IPGeolocation> { const { zone_id } = params; return ( this._client.get(`/zones/${zone_id}/settings/ip_geolocation`, options) as Core.APIPromise<{ result: IPGeolocation; }> )._thenUnwrap((obj) => obj.result); } } /** * Enable IP Geolocation to have Cloudflare geolocate visitors to your website and * pass the country code to you. * (https://support.cloudflare.com/hc/en-us/articles/200168236). */ export interface IPGeolocation { /** * ID of the zone setting. */ id: 'ip_geolocation'; /** * Current value of the zone setting. */ value: 'on' | 'off'; /** * Whether or not this setting can be modified for this zone (based on your * Cloudflare plan level). */ editable?: true | false; /** * last time this setting was modified. */ modified_on?: string | null; } export interface IPGeolocationEditParams { /** * Path param: Identifier */ zone_id: string; /** * Body param: Value of the zone setting. */ value: 'on' | 'off'; } export interface IPGeolocationGetParams { /** * Identifier */ zone_id: string; } export namespace IPGeolocationResource { export import IPGeolocation = IPGeolocationAPI.IPGeolocation; export import IPGeolocationEditParams = IPGeolocationAPI.IPGeolocationEditParams; export import IPGeolocationGetParams = IPGeolocationAPI.IPGeolocationGetParams; }