diff --git a/packages/clients/src/api/lb/v1/marshalling.gen.ts b/packages/clients/src/api/lb/v1/marshalling.gen.ts index 8ad8d40a1..96aceabc8 100644 --- a/packages/clients/src/api/lb/v1/marshalling.gen.ts +++ b/packages/clients/src/api/lb/v1/marshalling.gen.ts @@ -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 } @@ -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 = ( diff --git a/packages/clients/src/api/lb/v1/types.gen.ts b/packages/clients/src/api/lb/v1/types.gen.ts index d760b0057..a5b4ebce0 100644 --- a/packages/clients/src/api/lb/v1/types.gen.ts +++ b/packages/clients/src/api/lb/v1/types.gen.ts @@ -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. */