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
2 changes: 2 additions & 0 deletions packages/clients/src/api/lb/v1/marshalling.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -486,6 +486,7 @@ const unmarshalAclMatch = (data: unknown): AclMatch => {
httpFilterValue: data.http_filter_value,
invert: data.invert,
ipSubnet: data.ip_subnet,
ipsEdgeServices: data.ips_edge_services,
} as AclMatch
}

Expand Down Expand Up @@ -922,6 +923,7 @@ const marshalAclMatch = (
http_filter_value: request.httpFilterValue,
invert: request.invert,
ip_subnet: request.ipSubnet,
ips_edge_services: request.ipsEdgeServices,
})

export const marshalCreateAclRequest = (
Expand Down
4 changes: 4 additions & 0 deletions packages/clients/src/api/lb/v1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -640,6 +640,10 @@ export interface AclMatch {
* List of IPs or CIDR v4/v6 addresses to filter for from the client side.
*/
ipSubnet: string[]
/**
* Defines whether Edge Services IPs should be matched.
*/
ipsEdgeServices: boolean
/**
* Type of HTTP filter to match. Extracts the request's URL path, which starts at the first slash and ends before the question mark (without the host part). Defines where to filter for the http_filter_value. Only supported for HTTP backends.
*/
Expand Down
Loading