@daocloud-proto/virtnest 0.8.0-dev-1 → 0.8.0-dev-2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daocloud-proto/virtnest",
3
- "version":"0.8.0-dev-1",
3
+ "version":"0.8.0-dev-2",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "license": "ISC"
@@ -105,6 +105,7 @@ export type MultusNetworkInfoItem = {
105
105
  subnet?: string
106
106
  gateway?: string
107
107
  vlanId?: string
108
+ ipPool?: IPPool
108
109
  }
109
110
 
110
111
  export type MultusConfigInfo = {
@@ -119,6 +120,11 @@ export type NetworkInterfaceInfo = {
119
120
  multusConfigs?: MultusConfigInfo[]
120
121
  }
121
122
 
123
+ export type IPPool = {
124
+ ipv4?: string[]
125
+ ipv6?: string[]
126
+ }
127
+
122
128
  export type VMDisks = {
123
129
  systemVolume?: DiskVolume
124
130
  dataVolumes?: DiskVolume[]