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
1 change: 1 addition & 0 deletions packages/clients/src/api/lb/v1/marshalling.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -570,6 +570,7 @@ export const unmarshalPrivateNetwork = (data: unknown) => {
ipamConfig: data.ipam_config
? unmarshalPrivateNetworkIpamConfig(data.ipam_config)
: undefined,
ipamIds: data.ipam_ids,
lb: data.lb ? unmarshalLb(data.lb) : undefined,
privateNetworkId: data.private_network_id,
staticConfig: data.static_config
Expand Down
21 changes: 12 additions & 9 deletions packages/clients/src/api/lb/v1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -763,6 +763,8 @@ export interface ListSubscriberResponse {
export interface PrivateNetwork {
/** Load Balancer object which is attached to the Private Network. */
lb?: Lb
/** IPAM IDs of the booked IP addresses. */
ipamIds: string[]
/**
* @deprecated Object containing an array of a local IP address for the Load
* Balancer on this Private Network.
Expand All @@ -772,10 +774,10 @@ export interface PrivateNetwork {
*/
staticConfig?: PrivateNetworkStaticConfig
/**
* Object containing DHCP-assigned IP addresses.
* @deprecated Object containing DHCP-assigned IP addresses.
*
* One-of ('config'): at most one of 'staticConfig', 'dhcpConfig',
* 'ipamConfig' could be set.
* One-of ('config'): at most one of 'staticConfig', 'dhcpConfig',
* 'ipamConfig' could be set.
*/
dhcpConfig?: PrivateNetworkDHCPConfig
/**
Expand All @@ -796,6 +798,7 @@ export interface PrivateNetwork {
}

export interface PrivateNetworkDHCPConfig {
/** @deprecated */
ipId?: string
}

Expand Down Expand Up @@ -1978,10 +1981,10 @@ export type AttachPrivateNetworkRequest = {
*/
staticConfig?: PrivateNetworkStaticConfig
/**
* Defines whether to let DHCP assign IP addresses.
* @deprecated Defines whether to let DHCP assign IP addresses.
*
* One-of ('config'): at most one of 'staticConfig', 'dhcpConfig',
* 'ipamConfig' could be set.
* One-of ('config'): at most one of 'staticConfig', 'dhcpConfig',
* 'ipamConfig' could be set.
*/
dhcpConfig?: PrivateNetworkDHCPConfig
/**
Expand Down Expand Up @@ -2945,10 +2948,10 @@ export type ZonedApiAttachPrivateNetworkRequest = {
*/
staticConfig?: PrivateNetworkStaticConfig
/**
* Defines whether to let DHCP assign IP addresses.
* @deprecated Defines whether to let DHCP assign IP addresses.
*
* One-of ('config'): at most one of 'staticConfig', 'dhcpConfig',
* 'ipamConfig' could be set.
* One-of ('config'): at most one of 'staticConfig', 'dhcpConfig',
* 'ipamConfig' could be set.
*/
dhcpConfig?: PrivateNetworkDHCPConfig
/**
Expand Down