bfg-common 1.1.76 → 1.1.78

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.
Files changed (82) hide show
  1. package/components/atoms/alert/Notification.vue +167 -167
  2. package/components/atoms/autocomplete/Autocomplete.vue +236 -236
  3. package/components/atoms/datepicker/Datepicker.vue +612 -612
  4. package/components/atoms/list/SelectList.vue +62 -62
  5. package/components/atoms/nav/NavBar.vue +116 -116
  6. package/components/atoms/nav/VerticalNavBar.vue +89 -89
  7. package/components/atoms/notificationBar/NotificationBar.vue +175 -175
  8. package/components/atoms/perPage/PerPage.vue +52 -52
  9. package/components/atoms/popup/SimplePopup.vue +90 -90
  10. package/components/atoms/step/VerticalStep.vue +104 -104
  11. package/components/atoms/switch/Switch.vue +107 -107
  12. package/components/atoms/table/dataGrid/DataGridColumnSwitch.vue +206 -206
  13. package/components/atoms/table/dataGrid/DataGridPage.vue +189 -189
  14. package/components/atoms/tabs/Tabs.vue +189 -189
  15. package/components/atoms/tooltip/Signpost.vue +224 -224
  16. package/components/common/adapterManager/AddAdapterWarningModal.vue +82 -82
  17. package/components/common/adapterManager/NoActiveAdaptersModal.vue +62 -62
  18. package/components/common/adapterManager/NoConnectedActiveAdaptersModal.vue +62 -62
  19. package/components/common/browse/Browse.vue +182 -182
  20. package/components/common/browse/blocks/Title.vue +66 -66
  21. package/components/common/diagramMain/Diagram.vue +186 -186
  22. package/components/common/diagramMain/DiagramMain.vue +986 -986
  23. package/components/common/diagramMain/adapter/AdapterItem.vue +227 -227
  24. package/components/common/diagramMain/adapter/AdapterItems.vue +57 -57
  25. package/components/common/diagramMain/modals/editSettings/tabs/port/IpvFourSettings.vue +339 -339
  26. package/components/common/diagramMain/modals/editSettings/tabs/port/PortProperties.vue +202 -202
  27. package/components/common/diagramMain/modals/remove/RemoveModal.vue +226 -226
  28. package/components/common/diagramMain/network/Contents.vue +238 -238
  29. package/components/common/feedback/Buttons.vue +232 -232
  30. package/components/common/feedback/Message.vue +468 -468
  31. package/components/common/feedback/VisitPortal.vue +54 -54
  32. package/components/common/help/navbar/left/Left.vue +159 -159
  33. package/components/common/help/navbar/left/utils/constructAccordion.ts +27 -27
  34. package/components/common/mainNavigationPanel/MainNavigationPanel.vue +359 -359
  35. package/components/common/modals/Rename.vue +165 -165
  36. package/components/common/monitor/advanced/Advanced.vue +214 -221
  37. package/components/common/monitor/advanced/tools/Tools.vue +422 -441
  38. package/components/common/monitor/advanced/tools/chartOptionsModal/ChartOptionsModal.vue +452 -424
  39. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/Counters.vue +93 -86
  40. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/Table.vue +130 -121
  41. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/config/utils.ts +689 -688
  42. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/Timespan.vue +76 -73
  43. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/Object.vue +176 -129
  44. package/components/common/monitor/advanced/tools/chartOptionsModal/models/models.ts +19 -0
  45. package/components/common/perPage/PerPage.vue +51 -51
  46. package/components/common/recursionTree/RecursionTree.vue +201 -201
  47. package/components/common/vm/actions/add/config/capabilities.ts +777 -777
  48. package/components/common/vm/actions/add/customizeHardware/virtualHardware/VirtualHardware.vue +646 -646
  49. package/components/common/vm/actions/add/customizeHardware/virtualHardware/cdDvdDrive/CdDvdDrive.vue +246 -246
  50. package/components/common/vm/actions/add/customizeHardware/virtualHardware/cpu/Cpu.vue +375 -375
  51. package/components/common/vm/actions/add/customizeHardware/virtualHardware/limit/Limit.vue +234 -234
  52. package/components/common/vm/actions/add/customizeHardware/virtualHardware/limit/config/options.ts +28 -28
  53. package/components/common/vm/actions/add/customizeHardware/virtualHardware/memory/Memory.vue +316 -316
  54. package/components/common/vm/actions/add/customizeHardware/virtualHardware/memory/config/memoryOptions.ts +35 -35
  55. package/components/common/vm/actions/add/customizeHardware/virtualHardware/newHardDisk/NewHardDisk.vue +445 -445
  56. package/components/common/vm/actions/add/customizeHardware/virtualHardware/reservation/Reservation.vue +235 -235
  57. package/components/common/vm/actions/add/customizeHardware/virtualHardware/videoCard/VideoCard.vue +177 -177
  58. package/components/common/vm/actions/add/customizeHardware/vmoptions/bootOptions/order/Order.vue +197 -197
  59. package/components/common/vm/actions/add/customizeHardware/vmoptions/generalOptions/GeneralOptions.vue +180 -180
  60. package/components/common/vm/actions/add/customizeHardware/vmoptions/remoteConsoleOptions/CopyPaste.vue +51 -51
  61. package/components/common/vm/actions/add/customizeHardware/vmoptions/remoteConsoleOptions/keymap/Keymap.vue +55 -55
  62. package/components/common/vm/actions/add/select/storage/config/config.ts +154 -154
  63. package/components/common/wizards/datastore/add/nfs/configuration/Configuration.vue +373 -373
  64. package/components/common/wizards/datastore/add/nfs/configuration/serversList/ServersList.vue +123 -123
  65. package/components/common/wizards/datastore/add/nfs/kerberosAuthentication/KerberosAuthentication.vue +54 -54
  66. package/components/common/wizards/datastore/add/sharedStorm/deviceSelection/hostTable/HostTable.vue +131 -131
  67. package/components/common/wizards/datastore/add/sharedStorm/partitionConfiguration/PartitionConfiguration.vue +230 -230
  68. package/models/store/interfaces.ts +37 -37
  69. package/models/store/storage/interfaces.ts +32 -32
  70. package/models/store/types.ts +32 -32
  71. package/modules/fixContentBuild/utils/methods.ts +114 -114
  72. package/package.json +1 -1
  73. package/public/spice-console/application/codec.js +257 -257
  74. package/public/spice-console/lib/rasterEngine.js +907 -907
  75. package/public/spice-console/network/spicechannel.js +369 -369
  76. package/public/spice-console-minify/lib/decoder/dixie.min.js +4 -4
  77. package/public/spice-console-minify/lib/jgestures.min.js +24 -24
  78. package/public/spice-console-minify/lib/jquery-2.0.3.min.js +24 -24
  79. package/public/spice-console-minify/lib/jquery-mousewheel.min.js +11 -11
  80. package/public/spice-console-minify/lib/jquery-visibility.min.js +1 -1
  81. package/public/spice-console-minify/lib/lodash.4.0.0.min.js +5 -5
  82. package/utils/contentBuild.ts +34 -34
@@ -1,230 +1,230 @@
1
- <template>
2
- <div class="partition">
3
- <div class="clr-form-control clr-row">
4
- <label class="clr-col-md-4 clr-control-label">
5
- {{ localization.partitionConfiguration }}
6
- </label>
7
-
8
- <div class="clr-col-md-8 p-0">
9
- <div class="clr-select-wrapper">
10
- <select
11
- id="host-select"
12
- v-model="selectedHost"
13
- class="dropdown-toggle"
14
- @change="onSelectHost"
15
- >
16
- <option
17
- v-for="(item, index) in partitionConfiguration"
18
- :key="index"
19
- :value="item.value"
20
- :disabled="item.disabled"
21
- >
22
- {{ item.text }}
23
- </option>
24
- </select>
25
- </div>
26
- </div>
27
- </div>
28
-
29
- <div class="datastore-size-container clr-flex-row clr-flex">
30
- <label class="clr-col-md-4 clr-control-label" for="datastore-size">
31
- {{ localization.datastoreSize }}
32
- </label>
33
-
34
- <div class="datastore-size-slider-container clr-col-md-8 p-0">
35
- <div class="clr-col-xl-6 clr-col-md-8 p-0">
36
- <div
37
- class="partition__range-input clr-control-container clr-col-md-10 clr-col-12"
38
- >
39
- <div class="clr-range-wrapper">
40
- <input
41
- id="datastore-size-input-0"
42
- v-model="datastoreSize"
43
- type="range"
44
- min="0"
45
- :max="countDatastoreSizeToGb"
46
- step="0.01"
47
- class="ng-valid clr-range ng-dirty ng-touched"
48
- />
49
- </div>
50
- </div>
51
- </div>
52
-
53
- <input
54
- id="datastore-size-input-1"
55
- v-model="datastoreSize"
56
- type="number"
57
- min="0"
58
- :max="countDatastoreSizeToGb"
59
- step="0.01"
60
- class="show-arrow"
61
- />
62
- <span>{{ localization.gb }}</span>
63
- </div>
64
- </div>
65
-
66
- <template v-if="props.vmfsVersion === 'vmfs-6'">
67
- <div class="clr-form-control clr-row">
68
- <label class="clr-col-md-4 clr-control-label">
69
- {{ localization.blockSize }}
70
- </label>
71
-
72
- <div>
73
- <div class="clr-select-wrapper">
74
- <select
75
- id="datastore-size-select"
76
- v-model="selectedSize"
77
- class="dropdown-toggle"
78
- @change="onSelectHost"
79
- >
80
- <option
81
- v-for="(item, index) in blockSize"
82
- :key="index"
83
- :value="item.value"
84
- :disabled="item.disabled"
85
- >
86
- {{ item.text }}
87
- </option>
88
- </select>
89
- </div>
90
- </div>
91
- </div>
92
-
93
- <div class="clr-form-control clr-row">
94
- <label class="clr-col-md-4 clr-control-label">{{
95
- localization.spaceReclamationGranularity
96
- }}</label>
97
-
98
- <div>
99
- <div class="clr-select-wrapper">
100
- <select
101
- id="granularity-select"
102
- v-model="selectedGranularity"
103
- class="dropdown-toggle"
104
- @change="onSelectHost"
105
- >
106
- <option
107
- v-for="(item, index) in spaceGranularity"
108
- :key="index"
109
- :value="item.value"
110
- :disabled="item.disabled"
111
- >
112
- {{ item.text }}
113
- </option>
114
- </select>
115
- </div>
116
- </div>
117
- </div>
118
-
119
- <div class="clr-form-control clr-row">
120
- <label class="clr-col-md-4 clr-control-label">{{
121
- localization.spaceReclamationPriority
122
- }}</label>
123
-
124
- <div>
125
- <div class="clr-select-wrapper">
126
- <select
127
- id="priority-select"
128
- v-model="selectedPriority"
129
- class="dropdown-toggle"
130
- @change="onSelectHost"
131
- >
132
- <option
133
- v-for="(item, index) in spacePriority"
134
- :key="index"
135
- :value="item.value"
136
- :disabled="item.disabled"
137
- >
138
- {{ item.text }}
139
- </option>
140
- </select>
141
- </div>
142
- </div>
143
- </div>
144
- </template>
145
-
146
- <common-wizards-datastore-add-shared-storm-partition-configuration-size-graphic
147
- :selected-size="+datastoreSize"
148
- :capacity="countDatastoreSizeToGb"
149
- />
150
- </div>
151
- </template>
152
-
153
- <script lang="ts" setup>
154
- import { UI_I_Localization } from '~/models/interfaces'
155
- import { UI_T_VmfsType } from '~/components/common/wizards/datastore/add/models/types'
156
- import { UI_I_SelectHostOptions } from '~/components/common/wizards/datastore/add/sharedStorm/deviceSelection/models/interfaces'
157
- import {
158
- partitionConfigurationFunc,
159
- spacePriorityFunc,
160
- spaceGranularityFunc,
161
- blockSizeFunc,
162
- } from '~/components/common/wizards/datastore/add/sharedStorm/partitionConfiguration/config/selectOptions'
163
-
164
- const props = withDefaults(
165
- defineProps<{
166
- vmfsVersion: UI_T_VmfsType
167
- selectedLunDiskSize: number
168
- }>(),
169
- {
170
- selectedLunDiskSize: 0,
171
- }
172
- )
173
- const localization = computed<UI_I_Localization>(() => useLocal())
174
- const { $binary } = useNuxtApp()
175
-
176
- const selectedHost = ref('all-partitions')
177
- const partitionConfiguration = computed<UI_I_SelectHostOptions[]>(() =>
178
- partitionConfigurationFunc(localization.value)
179
- )
180
-
181
- const selectedSize = ref('1')
182
- const blockSize = computed<UI_I_SelectHostOptions[]>(() =>
183
- blockSizeFunc(localization.value)
184
- )
185
-
186
- const selectedGranularity = ref('1')
187
- const spaceGranularity = computed<UI_I_SelectHostOptions[]>(() =>
188
- spaceGranularityFunc(localization.value)
189
- )
190
-
191
- const selectedPriority = ref('low')
192
- const spacePriority = computed<UI_I_SelectHostOptions[]>(() =>
193
- spacePriorityFunc(localization.value)
194
- )
195
-
196
- const countDatastoreSizeToGb = computed(() => {
197
- return $binary.mbToGb(props.selectedLunDiskSize)
198
- })
199
-
200
- const datastoreSize = ref<number | null>(null)
201
- watch(
202
- () => props.selectedLunDiskSize,
203
- (_val) => {
204
- datastoreSize.value = countDatastoreSizeToGb.value
205
- }
206
- )
207
-
208
- const onSelectHost = (): void => {}
209
- </script>
210
-
211
- <style lang="scss" scoped>
212
- .partition {
213
- .datastore-size-container {
214
- display: flex;
215
- margin-left: -1em;
216
- margin-top: 1.2rem;
217
- margin-bottom: 1.2rem;
218
- }
219
- .clr-form-control {
220
- display: flex;
221
- flex-direction: row;
222
- }
223
- &__range-input {
224
- margin-left: -10px;
225
- }
226
- }
227
- .datastore-size-slider-container {
228
- display: flex;
229
- }
230
- </style>
1
+ <template>
2
+ <div class="partition">
3
+ <div class="clr-form-control clr-row">
4
+ <label class="clr-col-md-4 clr-control-label">
5
+ {{ localization.partitionConfiguration }}
6
+ </label>
7
+
8
+ <div class="clr-col-md-8 p-0">
9
+ <div class="clr-select-wrapper">
10
+ <select
11
+ id="host-select"
12
+ v-model="selectedHost"
13
+ class="dropdown-toggle"
14
+ @change="onSelectHost"
15
+ >
16
+ <option
17
+ v-for="(item, index) in partitionConfiguration"
18
+ :key="index"
19
+ :value="item.value"
20
+ :disabled="item.disabled"
21
+ >
22
+ {{ item.text }}
23
+ </option>
24
+ </select>
25
+ </div>
26
+ </div>
27
+ </div>
28
+
29
+ <div class="datastore-size-container clr-flex-row clr-flex">
30
+ <label class="clr-col-md-4 clr-control-label" for="datastore-size">
31
+ {{ localization.datastoreSize }}
32
+ </label>
33
+
34
+ <div class="datastore-size-slider-container clr-col-md-8 p-0">
35
+ <div class="clr-col-xl-6 clr-col-md-8 p-0">
36
+ <div
37
+ class="partition__range-input clr-control-container clr-col-md-10 clr-col-12"
38
+ >
39
+ <div class="clr-range-wrapper">
40
+ <input
41
+ id="datastore-size-input-0"
42
+ v-model="datastoreSize"
43
+ type="range"
44
+ min="0"
45
+ :max="countDatastoreSizeToGb"
46
+ step="0.01"
47
+ class="ng-valid clr-range ng-dirty ng-touched"
48
+ />
49
+ </div>
50
+ </div>
51
+ </div>
52
+
53
+ <input
54
+ id="datastore-size-input-1"
55
+ v-model="datastoreSize"
56
+ type="number"
57
+ min="0"
58
+ :max="countDatastoreSizeToGb"
59
+ step="0.01"
60
+ class="show-arrow"
61
+ />
62
+ <span>{{ localization.gb }}</span>
63
+ </div>
64
+ </div>
65
+
66
+ <template v-if="props.vmfsVersion === 'vmfs-6'">
67
+ <div class="clr-form-control clr-row">
68
+ <label class="clr-col-md-4 clr-control-label">
69
+ {{ localization.blockSize }}
70
+ </label>
71
+
72
+ <div>
73
+ <div class="clr-select-wrapper">
74
+ <select
75
+ id="datastore-size-select"
76
+ v-model="selectedSize"
77
+ class="dropdown-toggle"
78
+ @change="onSelectHost"
79
+ >
80
+ <option
81
+ v-for="(item, index) in blockSize"
82
+ :key="index"
83
+ :value="item.value"
84
+ :disabled="item.disabled"
85
+ >
86
+ {{ item.text }}
87
+ </option>
88
+ </select>
89
+ </div>
90
+ </div>
91
+ </div>
92
+
93
+ <div class="clr-form-control clr-row">
94
+ <label class="clr-col-md-4 clr-control-label">{{
95
+ localization.spaceReclamationGranularity
96
+ }}</label>
97
+
98
+ <div>
99
+ <div class="clr-select-wrapper">
100
+ <select
101
+ id="granularity-select"
102
+ v-model="selectedGranularity"
103
+ class="dropdown-toggle"
104
+ @change="onSelectHost"
105
+ >
106
+ <option
107
+ v-for="(item, index) in spaceGranularity"
108
+ :key="index"
109
+ :value="item.value"
110
+ :disabled="item.disabled"
111
+ >
112
+ {{ item.text }}
113
+ </option>
114
+ </select>
115
+ </div>
116
+ </div>
117
+ </div>
118
+
119
+ <div class="clr-form-control clr-row">
120
+ <label class="clr-col-md-4 clr-control-label">{{
121
+ localization.spaceReclamationPriority
122
+ }}</label>
123
+
124
+ <div>
125
+ <div class="clr-select-wrapper">
126
+ <select
127
+ id="priority-select"
128
+ v-model="selectedPriority"
129
+ class="dropdown-toggle"
130
+ @change="onSelectHost"
131
+ >
132
+ <option
133
+ v-for="(item, index) in spacePriority"
134
+ :key="index"
135
+ :value="item.value"
136
+ :disabled="item.disabled"
137
+ >
138
+ {{ item.text }}
139
+ </option>
140
+ </select>
141
+ </div>
142
+ </div>
143
+ </div>
144
+ </template>
145
+
146
+ <common-wizards-datastore-add-shared-storm-partition-configuration-size-graphic
147
+ :selected-size="+datastoreSize"
148
+ :capacity="countDatastoreSizeToGb"
149
+ />
150
+ </div>
151
+ </template>
152
+
153
+ <script lang="ts" setup>
154
+ import { UI_I_Localization } from '~/models/interfaces'
155
+ import { UI_T_VmfsType } from '~/components/common/wizards/datastore/add/models/types'
156
+ import { UI_I_SelectHostOptions } from '~/components/common/wizards/datastore/add/sharedStorm/deviceSelection/models/interfaces'
157
+ import {
158
+ partitionConfigurationFunc,
159
+ spacePriorityFunc,
160
+ spaceGranularityFunc,
161
+ blockSizeFunc,
162
+ } from '~/components/common/wizards/datastore/add/sharedStorm/partitionConfiguration/config/selectOptions'
163
+
164
+ const props = withDefaults(
165
+ defineProps<{
166
+ vmfsVersion: UI_T_VmfsType
167
+ selectedLunDiskSize: number
168
+ }>(),
169
+ {
170
+ selectedLunDiskSize: 0,
171
+ }
172
+ )
173
+ const localization = computed<UI_I_Localization>(() => useLocal())
174
+ const { $binary } = useNuxtApp()
175
+
176
+ const selectedHost = ref('all-partitions')
177
+ const partitionConfiguration = computed<UI_I_SelectHostOptions[]>(() =>
178
+ partitionConfigurationFunc(localization.value)
179
+ )
180
+
181
+ const selectedSize = ref('1')
182
+ const blockSize = computed<UI_I_SelectHostOptions[]>(() =>
183
+ blockSizeFunc(localization.value)
184
+ )
185
+
186
+ const selectedGranularity = ref('1')
187
+ const spaceGranularity = computed<UI_I_SelectHostOptions[]>(() =>
188
+ spaceGranularityFunc(localization.value)
189
+ )
190
+
191
+ const selectedPriority = ref('low')
192
+ const spacePriority = computed<UI_I_SelectHostOptions[]>(() =>
193
+ spacePriorityFunc(localization.value)
194
+ )
195
+
196
+ const countDatastoreSizeToGb = computed(() => {
197
+ return $binary.mbToGb(props.selectedLunDiskSize)
198
+ })
199
+
200
+ const datastoreSize = ref<number | null>(null)
201
+ watch(
202
+ () => props.selectedLunDiskSize,
203
+ (_val) => {
204
+ datastoreSize.value = countDatastoreSizeToGb.value
205
+ }
206
+ )
207
+
208
+ const onSelectHost = (): void => {}
209
+ </script>
210
+
211
+ <style lang="scss" scoped>
212
+ .partition {
213
+ .datastore-size-container {
214
+ display: flex;
215
+ margin-left: -1em;
216
+ margin-top: 1.2rem;
217
+ margin-bottom: 1.2rem;
218
+ }
219
+ .clr-form-control {
220
+ display: flex;
221
+ flex-direction: row;
222
+ }
223
+ &__range-input {
224
+ margin-left: -10px;
225
+ }
226
+ }
227
+ .datastore-size-slider-container {
228
+ display: flex;
229
+ }
230
+ </style>
@@ -1,37 +1,37 @@
1
- import type { UI_I_Pagination } from '~/models/interfaces'
2
- import type { UI_T_Schema } from '~/models/types'
3
-
4
- export interface UI_I_ErrorValidationField<T = string> {
5
- error_message: string
6
- field: T
7
- }
8
-
9
- export interface API_UI_I_Error {
10
- data: {
11
- error_code: number
12
- error_message: any
13
- name?: any
14
- }
15
- }
16
-
17
- export interface API_UI_I_Node {
18
- id: string
19
- name: string
20
- state: number
21
- net_bridge?: string
22
- console_type?: string
23
- }
24
-
25
- export interface UI_I_SchemaTablePayload {
26
- schema: UI_T_Schema
27
- }
28
-
29
- export interface UI_I_TablePayload extends UI_I_SchemaTablePayload {
30
- pagination: UI_I_Pagination
31
- type: any
32
- sortBy: string | null
33
- }
34
-
35
- export interface UI_I_CommitOptions {
36
- root: boolean
37
- }
1
+ import type { UI_I_Pagination } from '~/models/interfaces'
2
+ import type { UI_T_Schema } from '~/models/types'
3
+
4
+ export interface UI_I_ErrorValidationField<T = string> {
5
+ error_message: string
6
+ field: T
7
+ }
8
+
9
+ export interface API_UI_I_Error {
10
+ data: {
11
+ error_code: number
12
+ error_message: any
13
+ name?: any
14
+ }
15
+ }
16
+
17
+ export interface API_UI_I_Node {
18
+ id: string
19
+ name: string
20
+ state: number
21
+ net_bridge?: string
22
+ console_type?: string
23
+ }
24
+
25
+ export interface UI_I_SchemaTablePayload {
26
+ schema: UI_T_Schema
27
+ }
28
+
29
+ export interface UI_I_TablePayload extends UI_I_SchemaTablePayload {
30
+ pagination: UI_I_Pagination
31
+ type: any
32
+ sortBy: string | null
33
+ }
34
+
35
+ export interface UI_I_CommitOptions {
36
+ root: boolean
37
+ }
@@ -1,32 +1,32 @@
1
- import { API_UI_I_Node } from '~/models/store/interfaces'
2
-
3
- export interface API_UI_I_DatastoreTableItemCapacity {
4
- capacity_mb: number
5
- provisioned_mb: number
6
- free_mb: number
7
- used_mb: number
8
- }
9
-
10
- export interface API_UI_I_DatastoreTableItem extends API_UI_I_Node {
11
- pool_name: string
12
- type_code: number
13
- type_text: string
14
- drive_type: string
15
- capacity: API_UI_I_DatastoreTableItemCapacity
16
- thin_provisioning: boolean
17
- access_mode: string
18
- hardware_acceleration: string
19
- device: string
20
- storage_io_control: boolean
21
- storage_compatibility: string
22
- }
23
-
24
- export interface UI_I_DatastoreTableItem extends API_UI_I_DatastoreTableItem {}
25
-
26
- export interface UI_I_FolderOrFileTreePayload {
27
- type: string
28
- id: string
29
- path: string
30
- merge: boolean
31
- show: boolean
32
- }
1
+ import { API_UI_I_Node } from '~/models/store/interfaces'
2
+
3
+ export interface API_UI_I_DatastoreTableItemCapacity {
4
+ capacity_mb: number
5
+ provisioned_mb: number
6
+ free_mb: number
7
+ used_mb: number
8
+ }
9
+
10
+ export interface API_UI_I_DatastoreTableItem extends API_UI_I_Node {
11
+ pool_name: string
12
+ type_code: number
13
+ type_text: string
14
+ drive_type: string
15
+ capacity: API_UI_I_DatastoreTableItemCapacity
16
+ thin_provisioning: boolean
17
+ access_mode: string
18
+ hardware_acceleration: string
19
+ device: string
20
+ storage_io_control: boolean
21
+ storage_compatibility: string
22
+ }
23
+
24
+ export interface UI_I_DatastoreTableItem extends API_UI_I_DatastoreTableItem {}
25
+
26
+ export interface UI_I_FolderOrFileTreePayload {
27
+ type: string
28
+ id: string
29
+ path: string
30
+ merge: boolean
31
+ show: boolean
32
+ }
@@ -1,32 +1,32 @@
1
- export type API_UI_I_HostState =
2
- | 0 // ICON: host-error TEXT: Unknown
3
- | 1 // ICON: host TEXT: Connected
4
- | 2 // ICON: host-warning TEXT: Warning
5
- | 3 // ICON: host-error TEXT: Error
6
- | 4 // ICON: host-maintenance TEXT: Maintenance
7
- | 5 // ICON: host-not-responding TEXT: Not Responding
8
- | 6 // ICON: host-disconnected TEXT: Disconnected
9
- export type UI_I_HostState = API_UI_I_HostState
10
-
11
- export type API_UI_T_VmState =
12
- | 0 // ICON: vm-error TEXT: Unknown
13
- | 1 // ICON: vm TEXT: Power Off
14
- | 2 // ICON: vm-on TEXT: Powered On
15
- | 3 // ICON: vm-suspended TEXT: Suspended
16
- | 4 // ICON: vm-error TEXT: Error
17
- | 5 // ICON: vm-warning TEXT: Warning
18
- | 6 // ICON: vm-warning TEXT: Pending
19
- | 7 // ICON: vm-suspended TEXT: Paused
20
- | 8 // ICON: vm-warning TEXT: Blocked
21
- | 9 // ICON: vm-warning TEXT: Shutting Down
22
- | 10 // ICON: vm-warning TEXT: Shutting Off
23
-
24
-
25
- export type API_UI_T_DatastoreState =
26
- | 0 // ICON: datastore-error TEXT: Unknown
27
- | 1 // ICON: datastore TEXT: Connected
28
- | 2 // ICON: datastore-warning TEXT: Warning
29
- | 3 // ICON: datastore-error TEXT: Error
30
- | 4 // ICON: datastore-maintenance TEXT: Maintenance
31
- | 5 // ICON: datastore-inaccessible TEXT: Inaccessible
32
- | 6 // ICON: datastore-disconnected TEXT: Disconnected
1
+ export type API_UI_I_HostState =
2
+ | 0 // ICON: host-error TEXT: Unknown
3
+ | 1 // ICON: host TEXT: Connected
4
+ | 2 // ICON: host-warning TEXT: Warning
5
+ | 3 // ICON: host-error TEXT: Error
6
+ | 4 // ICON: host-maintenance TEXT: Maintenance
7
+ | 5 // ICON: host-not-responding TEXT: Not Responding
8
+ | 6 // ICON: host-disconnected TEXT: Disconnected
9
+ export type UI_I_HostState = API_UI_I_HostState
10
+
11
+ export type API_UI_T_VmState =
12
+ | 0 // ICON: vm-error TEXT: Unknown
13
+ | 1 // ICON: vm TEXT: Power Off
14
+ | 2 // ICON: vm-on TEXT: Powered On
15
+ | 3 // ICON: vm-suspended TEXT: Suspended
16
+ | 4 // ICON: vm-error TEXT: Error
17
+ | 5 // ICON: vm-warning TEXT: Warning
18
+ | 6 // ICON: vm-warning TEXT: Pending
19
+ | 7 // ICON: vm-suspended TEXT: Paused
20
+ | 8 // ICON: vm-warning TEXT: Blocked
21
+ | 9 // ICON: vm-warning TEXT: Shutting Down
22
+ | 10 // ICON: vm-warning TEXT: Shutting Off
23
+
24
+
25
+ export type API_UI_T_DatastoreState =
26
+ | 0 // ICON: datastore-error TEXT: Unknown
27
+ | 1 // ICON: datastore TEXT: Connected
28
+ | 2 // ICON: datastore-warning TEXT: Warning
29
+ | 3 // ICON: datastore-error TEXT: Error
30
+ | 4 // ICON: datastore-maintenance TEXT: Maintenance
31
+ | 5 // ICON: datastore-inaccessible TEXT: Inaccessible
32
+ | 6 // ICON: datastore-disconnected TEXT: Disconnected