Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(api): update via SDK Studio #1139

Merged
merged 1 commit into from
Jul 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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