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 @@ -1124,6 +1124,7 @@ export const marshalCreateLbRequest = (
request: CreateLbRequest,
defaults: DefaultValues,
): Record<string, unknown> => ({
assign_flexible_ip: request.assignFlexibleIp,
description: request.description,
ip_id: request.ipId,
name: request.name || randomName('lb'),
Expand Down Expand Up @@ -1513,6 +1514,7 @@ export const marshalZonedApiCreateLbRequest = (
request: ZonedApiCreateLbRequest,
defaults: DefaultValues,
): Record<string, unknown> => ({
assign_flexible_ip: request.assignFlexibleIp,
description: request.description,
ip_id: request.ipId,
name: request.name || randomName('lb'),
Expand Down
10 changes: 10 additions & 0 deletions packages/clients/src/api/lb/v1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -941,6 +941,11 @@ export type CreateLbRequest = {
description: string
/** ID of an existing flexible IP address to attach to the Load Balancer. */
ipId?: string
/**
* Defines whether to automatically assign a flexible public IP to lb. Default
* value is `false` (do not assign).
*/
assignFlexibleIp?: boolean
/** List of tags for the Load Balancer. */
tags?: string[]
/**
Expand Down Expand Up @@ -2036,6 +2041,11 @@ export type ZonedApiCreateLbRequest = {
description: string
/** ID of an existing flexible IP address to attach to the Load Balancer. */
ipId?: string
/**
* Defines whether to automatically assign a flexible public IP to lb. Default
* value is `false` (do not assign).
*/
assignFlexibleIp?: boolean
/** List of tags for the Load Balancer. */
tags?: string[]
/**
Expand Down