From 8d4a97fd5312523b833063b6f8d797116a08b6d1 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 15 Jul 2024 21:42:52 +0000 Subject: [PATCH] feat(api): update via SDK Studio (#1139) --- src/resources/zero-trust/gateway/locations.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/resources/zero-trust/gateway/locations.ts b/src/resources/zero-trust/gateway/locations.ts index 14f3b22d79..d2e3909ebe 100644 --- a/src/resources/zero-trust/gateway/locations.ts +++ b/src/resources/zero-trust/gateway/locations.ts @@ -158,9 +158,9 @@ export namespace Location { * remains unchanged. */ export interface Endpoints { - doh?: Endpoints.Doh; + doh?: Endpoints.DOH; - dot?: Endpoints.Dot; + dot?: Endpoints.DOT; ipv4?: Endpoints.IPV4; @@ -168,7 +168,7 @@ export namespace Location { } export namespace Endpoints { - export interface Doh { + export interface DOH { /** * True if the endpoint is enabled for this location. */ @@ -179,7 +179,7 @@ export namespace Location { * source IPs are allowed. A non-empty list is only effective if the endpoint is * enabled for this location. */ - networks?: Array; + networks?: Array; /** * True if the endpoint requires @@ -189,7 +189,7 @@ export namespace Location { require_token?: boolean; } - export namespace Doh { + export namespace DOH { export interface Network { /** * The IP address or IP CIDR. @@ -198,7 +198,7 @@ export namespace Location { } } - export interface Dot { + export interface DOT { /** * True if the endpoint is enabled for this location. */ @@ -209,10 +209,10 @@ export namespace Location { * source IPs are allowed. A non-empty list is only effective if the endpoint is * enabled for this location. */ - networks?: Array; + networks?: Array; } - export namespace Dot { + export namespace DOT { export interface Network { /** * The IP address or IP CIDR.