Skip to content

Commit

Permalink
feat(api): update via SDK Studio (#1139)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored Jul 15, 2024
1 parent f0d1706 commit 26107e8
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/resources/zero-trust/gateway/locations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,17 +158,17 @@ export namespace Location {
* remains unchanged.
*/
export interface Endpoints {
doh?: Endpoints.Doh;
doh?: Endpoints.DOH;

dot?: Endpoints.Dot;
dot?: Endpoints.DOT;

ipv4?: Endpoints.IPV4;

ipv6?: Endpoints.IPV6;
}

export namespace Endpoints {
export interface Doh {
export interface DOH {
/**
* True if the endpoint is enabled for this location.
*/
Expand All @@ -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<Doh.Network>;
networks?: Array<DOH.Network>;

/**
* True if the endpoint requires
Expand All @@ -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.
Expand All @@ -198,7 +198,7 @@ export namespace Location {
}
}

export interface Dot {
export interface DOT {
/**
* True if the endpoint is enabled for this location.
*/
Expand All @@ -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<Dot.Network>;
networks?: Array<DOT.Network>;
}

export namespace Dot {
export namespace DOT {
export interface Network {
/**
* The IP address or IP CIDR.
Expand Down

0 comments on commit 26107e8

Please sign in to comment.