@@ -764,25 +764,25 @@ export interface PrivateNetwork {
764
764
/** Load Balancer object which is attached to the Private Network. */
765
765
lb ?: Lb
766
766
/**
767
- * Object containing an array of a local IP address for the Load Balancer on
768
- * this Private Network.
767
+ * @deprecated Object containing an array of a local IP address for the Load
768
+ * Balancer on this Private Network.
769
769
*
770
- * One-of ('config'): at most one of 'staticConfig', 'dhcpConfig',
771
- * 'ipamConfig' could be set.
770
+ * One-of ('config'): at most one of 'staticConfig', 'dhcpConfig',
771
+ * 'ipamConfig' could be set.
772
772
*/
773
773
staticConfig ?: PrivateNetworkStaticConfig
774
774
/**
775
- * Defines whether to let DHCP assign IP addresses.
775
+ * Object containing DHCP-assigned IP addresses.
776
776
*
777
777
* One-of ('config'): at most one of 'staticConfig', 'dhcpConfig',
778
778
* 'ipamConfig' could be set.
779
779
*/
780
780
dhcpConfig ?: PrivateNetworkDHCPConfig
781
781
/**
782
- * For internal use only.
782
+ * @deprecated For internal use only.
783
783
*
784
- * One-of ('config'): at most one of 'staticConfig', 'dhcpConfig',
785
- * 'ipamConfig' could be set.
784
+ * One-of ('config'): at most one of 'staticConfig', 'dhcpConfig',
785
+ * 'ipamConfig' could be set.
786
786
*/
787
787
ipamConfig ?: PrivateNetworkIpamConfig
788
788
/** Private Network ID. */
@@ -795,14 +795,19 @@ export interface PrivateNetwork {
795
795
updatedAt ?: Date
796
796
}
797
797
798
- export interface PrivateNetworkDHCPConfig { }
798
+ export interface PrivateNetworkDHCPConfig {
799
+ ipId : string
800
+ }
799
801
800
802
export interface PrivateNetworkIpamConfig { }
801
803
802
804
/** Private network. static config. */
803
805
export interface PrivateNetworkStaticConfig {
804
- /** Array of a local IP address for the Load Balancer on this Private Network. */
805
- ipAddress : string [ ]
806
+ /**
807
+ * @deprecated Array of a local IP address for the Load Balancer on this
808
+ * Private Network.
809
+ */
810
+ ipAddress ?: string [ ]
806
811
}
807
812
808
813
/** Route. */
@@ -1965,11 +1970,11 @@ export type AttachPrivateNetworkRequest = {
1965
1970
/** Private Network ID. */
1966
1971
privateNetworkId : string
1967
1972
/**
1968
- * Object containing an array of a local IP address for the Load Balancer on
1969
- * this Private Network.
1973
+ * @deprecated Object containing an array of a local IP address for the Load
1974
+ * Balancer on this Private Network.
1970
1975
*
1971
- * One-of ('config'): at most one of 'staticConfig', 'dhcpConfig',
1972
- * 'ipamConfig' could be set.
1976
+ * One-of ('config'): at most one of 'staticConfig', 'dhcpConfig',
1977
+ * 'ipamConfig' could be set.
1973
1978
*/
1974
1979
staticConfig ?: PrivateNetworkStaticConfig
1975
1980
/**
@@ -1980,10 +1985,10 @@ export type AttachPrivateNetworkRequest = {
1980
1985
*/
1981
1986
dhcpConfig ?: PrivateNetworkDHCPConfig
1982
1987
/**
1983
- * For internal use only.
1988
+ * @deprecated For internal use only.
1984
1989
*
1985
- * One-of ('config'): at most one of 'staticConfig', 'dhcpConfig',
1986
- * 'ipamConfig' could be set.
1990
+ * One-of ('config'): at most one of 'staticConfig', 'dhcpConfig',
1991
+ * 'ipamConfig' could be set.
1987
1992
*/
1988
1993
ipamConfig ?: PrivateNetworkIpamConfig
1989
1994
}
@@ -2932,11 +2937,11 @@ export type ZonedApiAttachPrivateNetworkRequest = {
2932
2937
/** Private Network ID. */
2933
2938
privateNetworkId : string
2934
2939
/**
2935
- * Object containing an array of a local IP address for the Load Balancer on
2936
- * this Private Network.
2940
+ * @deprecated Object containing an array of a local IP address for the Load
2941
+ * Balancer on this Private Network.
2937
2942
*
2938
- * One-of ('config'): at most one of 'staticConfig', 'dhcpConfig',
2939
- * 'ipamConfig' could be set.
2943
+ * One-of ('config'): at most one of 'staticConfig', 'dhcpConfig',
2944
+ * 'ipamConfig' could be set.
2940
2945
*/
2941
2946
staticConfig ?: PrivateNetworkStaticConfig
2942
2947
/**
@@ -2947,10 +2952,10 @@ export type ZonedApiAttachPrivateNetworkRequest = {
2947
2952
*/
2948
2953
dhcpConfig ?: PrivateNetworkDHCPConfig
2949
2954
/**
2950
- * For internal use only.
2955
+ * @deprecated For internal use only.
2951
2956
*
2952
- * One-of ('config'): at most one of 'staticConfig', 'dhcpConfig',
2953
- * 'ipamConfig' could be set.
2957
+ * One-of ('config'): at most one of 'staticConfig', 'dhcpConfig',
2958
+ * 'ipamConfig' could be set.
2954
2959
*/
2955
2960
ipamConfig ?: PrivateNetworkIpamConfig
2956
2961
}
0 commit comments