diff --git a/packages/clients/src/api/lb/v1/api.gen.ts b/packages/clients/src/api/lb/v1/api.gen.ts index 2838dacd2..047b1718a 100644 --- a/packages/clients/src/api/lb/v1/api.gen.ts +++ b/packages/clients/src/api/lb/v1/api.gen.ts @@ -413,6 +413,7 @@ export class ZonedAPI extends ParentAPI { )}/ips`, urlParams: urlParams( ['ip_address', request.ipAddress], + ['ip_type', request.ipType], ['organization_id', request.organizationId], ['page', request.page], [ @@ -1839,6 +1840,7 @@ export class API extends ParentAPI { )}/ips`, urlParams: urlParams( ['ip_address', request.ipAddress], + ['ip_type', request.ipType], ['organization_id', request.organizationId], ['page', request.page], [ diff --git a/packages/clients/src/api/lb/v1/index.gen.ts b/packages/clients/src/api/lb/v1/index.gen.ts index 6fb18bccb..4943a11e2 100644 --- a/packages/clients/src/api/lb/v1/index.gen.ts +++ b/packages/clients/src/api/lb/v1/index.gen.ts @@ -80,6 +80,7 @@ export type { ListFrontendsRequestOrderBy, ListFrontendsResponse, ListIPsRequest, + ListIpsRequestIpType, ListIpsResponse, ListLbPrivateNetworksRequest, ListLbPrivateNetworksResponse, diff --git a/packages/clients/src/api/lb/v1/types.gen.ts b/packages/clients/src/api/lb/v1/types.gen.ts index 1e9f4d4f1..eba859044 100644 --- a/packages/clients/src/api/lb/v1/types.gen.ts +++ b/packages/clients/src/api/lb/v1/types.gen.ts @@ -80,6 +80,8 @@ export type ListFrontendsRequestOrderBy = | 'name_asc' | 'name_desc' +export type ListIpsRequestIpType = 'all' | 'ipv4' | 'ipv6' + export type ListLbsRequestOrderBy = | 'created_at_asc' | 'created_at_desc' @@ -1436,6 +1438,8 @@ export type ListIPsRequest = { * will be returned. */ projectId?: string + /** IP type to filter for. */ + ipType?: ListIpsRequestIpType } export interface ListIpsResponse { @@ -2511,6 +2515,8 @@ export type ZonedApiListIPsRequest = { * will be returned. */ projectId?: string + /** IP type to filter for. */ + ipType?: ListIpsRequestIpType } export type ZonedApiListLbPrivateNetworksRequest = {