Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ const unmarshalScalewayLb = (data: unknown): ScalewayLb => {
return {
domainName: data.domain_name,
frontendId: data.frontend_id,
hasWebsocket: data.has_websocket,
id: data.id,
isSsl: data.is_ssl,
zone: data.zone,
Expand Down Expand Up @@ -825,6 +826,7 @@ const marshalScalewayLb = (
): Record<string, unknown> => ({
domain_name: request.domainName,
frontend_id: request.frontendId,
has_websocket: request.hasWebsocket,
id: request.id,
is_ssl: request.isSsl,
zone: request.zone,
Expand Down
4 changes: 4 additions & 0 deletions packages_generated/edge_services/src/v1beta1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,10 @@ export interface ScalewayLb {
* Fully Qualified Domain Name (in the format subdomain.example.com) to use in HTTP requests sent towards your Load Balancer.
*/
domainName?: string
/**
* Defines whether to forward websocket requests to the load balancer.
*/
hasWebsocket?: boolean
}

export interface RuleHttpMatchPathFilter {
Expand Down
Loading