@@ -763,6 +763,8 @@ export interface ListSubscriberResponse {
763
763
export interface PrivateNetwork {
764
764
/** Load Balancer object which is attached to the Private Network. */
765
765
lb ?: Lb
766
+ /** IPAM IDs of the booked IP addresses. */
767
+ ipamIds : string [ ]
766
768
/**
767
769
* @deprecated Object containing an array of a local IP address for the Load
768
770
* Balancer on this Private Network.
@@ -772,10 +774,10 @@ export interface PrivateNetwork {
772
774
*/
773
775
staticConfig ?: PrivateNetworkStaticConfig
774
776
/**
775
- * Object containing DHCP-assigned IP addresses.
777
+ * @deprecated Object containing DHCP-assigned IP addresses.
776
778
*
777
- * One-of ('config'): at most one of 'staticConfig', 'dhcpConfig',
778
- * 'ipamConfig' could be set.
779
+ * One-of ('config'): at most one of 'staticConfig', 'dhcpConfig',
780
+ * 'ipamConfig' could be set.
779
781
*/
780
782
dhcpConfig ?: PrivateNetworkDHCPConfig
781
783
/**
@@ -796,6 +798,7 @@ export interface PrivateNetwork {
796
798
}
797
799
798
800
export interface PrivateNetworkDHCPConfig {
801
+ /** @deprecated */
799
802
ipId ?: string
800
803
}
801
804
@@ -1978,10 +1981,10 @@ export type AttachPrivateNetworkRequest = {
1978
1981
*/
1979
1982
staticConfig ?: PrivateNetworkStaticConfig
1980
1983
/**
1981
- * Defines whether to let DHCP assign IP addresses.
1984
+ * @deprecated Defines whether to let DHCP assign IP addresses.
1982
1985
*
1983
- * One-of ('config'): at most one of 'staticConfig', 'dhcpConfig',
1984
- * 'ipamConfig' could be set.
1986
+ * One-of ('config'): at most one of 'staticConfig', 'dhcpConfig',
1987
+ * 'ipamConfig' could be set.
1985
1988
*/
1986
1989
dhcpConfig ?: PrivateNetworkDHCPConfig
1987
1990
/**
@@ -2945,10 +2948,10 @@ export type ZonedApiAttachPrivateNetworkRequest = {
2945
2948
*/
2946
2949
staticConfig ?: PrivateNetworkStaticConfig
2947
2950
/**
2948
- * Defines whether to let DHCP assign IP addresses.
2951
+ * @deprecated Defines whether to let DHCP assign IP addresses.
2949
2952
*
2950
- * One-of ('config'): at most one of 'staticConfig', 'dhcpConfig',
2951
- * 'ipamConfig' could be set.
2953
+ * One-of ('config'): at most one of 'staticConfig', 'dhcpConfig',
2954
+ * 'ipamConfig' could be set.
2952
2955
*/
2953
2956
dhcpConfig ?: PrivateNetworkDHCPConfig
2954
2957
/**
0 commit comments