@@ -4,7 +4,6 @@ import * as Core from 'cloudflare/core';
44import { APIResource } from 'cloudflare/resource' ;
55import * as PoolsAPI from 'cloudflare/resources/load-balancers/pools/pools' ;
66import * as LoadBalancersAPI from 'cloudflare/resources/load-balancers/load-balancers' ;
7- import * as RegionsAPI from 'cloudflare/resources/load-balancers/regions' ;
87import * as HealthAPI from 'cloudflare/resources/load-balancers/pools/health' ;
98import * as ReferencesAPI from 'cloudflare/resources/load-balancers/pools/references' ;
109import { SinglePage } from 'cloudflare/pagination' ;
@@ -102,7 +101,7 @@ export interface Pool {
102101 * A list of regions from which to run health checks. Null means every Cloudflare
103102 * data center.
104103 */
105- check_regions ?: RegionsAPI . RegionID | null ;
104+ check_regions ?: Array < LoadBalancersAPI . CheckRegion > | null ;
106105
107106 created_on ?: string ;
108107
@@ -300,7 +299,7 @@ export interface PoolUpdateParams {
300299 * Body param: A list of regions from which to run health checks. Null means every
301300 * Cloudflare data center.
302301 */
303- check_regions ?: RegionsAPI . RegionIDParam | null ;
302+ check_regions ?: Array < LoadBalancersAPI . CheckRegionParam > | null ;
304303
305304 /**
306305 * Body param: A human-readable description of the pool.
@@ -396,7 +395,7 @@ export interface PoolEditParams {
396395 * Body param: A list of regions from which to run health checks. Null means every
397396 * Cloudflare data center.
398397 */
399- check_regions ?: RegionsAPI . RegionIDParam | null ;
398+ check_regions ?: Array < LoadBalancersAPI . CheckRegionParam > | null ;
400399
401400 /**
402401 * Body param: A human-readable description of the pool.
0 commit comments