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 @@ -864,6 +864,7 @@ export const marshalAttachPrivateNetworkRequest = (
request: AttachPrivateNetworkRequest,
defaults: DefaultValues,
): Record<string, unknown> => ({
ipam_ids: request.ipamIds,
...resolveOneOf([
{
param: 'static_config',
Expand Down Expand Up @@ -1464,6 +1465,7 @@ export const marshalZonedApiAttachPrivateNetworkRequest = (
request: ZonedApiAttachPrivateNetworkRequest,
defaults: DefaultValues,
): Record<string, unknown> => ({
ipam_ids: request.ipamIds,
...resolveOneOf([
{
param: 'static_config',
Expand Down
16 changes: 16 additions & 0 deletions packages/clients/src/api/lb/v1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -794,6 +794,14 @@ export type AttachPrivateNetworkRequest = {
* 'ipamConfig' could be set.
*/
ipamConfig?: PrivateNetworkIpamConfig
/**
* IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this
* Private Network. In the future, it will be possible to specify multiple IPs
* in this field (IPv4 and IPv6), for now only one ID of an IPv4 address is
* expected. When null, a new private IP address is created for the Load
* Balancer on this Private Network.
*/
ipamIds?: string[]
}

/** Add an ACL to a Load Balancer frontend. */
Expand Down Expand Up @@ -2018,6 +2026,14 @@ export type ZonedApiAttachPrivateNetworkRequest = {
* 'ipamConfig' could be set.
*/
ipamConfig?: PrivateNetworkIpamConfig
/**
* IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this
* Private Network. In the future, it will be possible to specify multiple IPs
* in this field (IPv4 and IPv6), for now only one ID of an IPv4 address is
* expected. When null, a new private IP address is created for the Load
* Balancer on this Private Network.
*/
ipamIds?: string[]
}

/** Add an ACL to a Load Balancer frontend. */
Expand Down