bfg-common 1.5.337 → 1.5.339
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/assets/localization/local_be.json +28 -1
- package/assets/localization/local_en.json +28 -1
- package/assets/localization/local_hy.json +28 -1
- package/assets/localization/local_kk.json +28 -1
- package/assets/localization/local_ru.json +28 -1
- package/assets/localization/local_zh.json +28 -1
- package/components/common/backup/storage/actions/add/Add.vue +1 -1
- package/components/common/backup/storage/actions/add/New.vue +1 -0
- package/components/common/backup/storage/actions/add/Old.vue +1 -0
- package/components/common/backup/storage/actions/add/lib/config/createDatastore.ts +5 -2
- package/components/common/backup/storage/actions/add/steps/typeMode/TypeMode.vue +3 -1
- package/components/common/backup/storage/actions/add/steps/typeMode/lib/config/typeOptions.ts +17 -2
- package/components/common/browse/blocks/lib/models/types.ts +1 -1
- package/components/common/browse/lib/models/interfaces.ts +5 -5
- package/components/common/diagramMain/adapter/AdapterItems.vue +61 -61
- package/components/common/diagramMain/lib/config/initial.ts +50 -50
- package/components/common/diagramMain/lib/models/types.ts +21 -21
- package/components/common/diagramMain/lib/utils/utils.ts +331 -331
- package/components/common/diagramMain/modals/editSettings/ConfirmTeamingSettingsModal.vue +40 -40
- package/components/common/diagramMain/modals/editSettings/tabs/NetworkProperties.vue +214 -214
- package/components/common/diagramMain/modals/editSettings/tabs/Security.vue +189 -189
- package/components/common/diagramMain/modals/editSettings/tabs/SwitchProperties.vue +163 -163
- package/components/common/diagramMain/modals/editSettings/tabs/TeamingFailover.vue +175 -175
- package/components/common/diagramMain/modals/editSettings/tabs/port/IpvFourSettings.vue +346 -346
- package/components/common/diagramMain/modals/lib/config/initial.ts +180 -180
- package/components/common/diagramMain/modals/lib/config/vmKernelAdapter.ts +90 -90
- package/components/common/diagramMain/modals/lib/mappers/mappers.ts +87 -87
- package/components/common/diagramMain/modals/lib/utils/index.ts +24 -24
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/lib/config/steps.ts +114 -114
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/ConnectionSettings.vue +169 -169
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/SelectVmkernelAdapter.vue +159 -159
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/common.ts +14 -14
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/connectionSettings.ts +137 -137
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/selectVmkernelAdapter.ts +52 -52
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/validations.ts +19 -19
- package/components/common/diagramMain/port/Ports.vue +47 -47
- package/package.json +2 -2
@@ -1,21 +1,21 @@
|
|
1
|
-
import type {
|
2
|
-
UI_I_Adapter,
|
3
|
-
UI_I_AdapterWithError,
|
4
|
-
} from '~/components/common/diagramMain/lib/models/interfaces'
|
5
|
-
|
6
|
-
export type UI_T_AdapterStatusNames = 'active' | 'standby' | 'unused'
|
7
|
-
export type UI_T_PropertiesFieldName = 'vlanId' | 'networkLabel'
|
8
|
-
export type UI_T_TrafficShapingFieldName = 'average' | 'peak' | 'burstSize'
|
9
|
-
export type UI_T_PortPropertiesFieldName = 'mtu'
|
10
|
-
|
11
|
-
export type UI_T_LoadBalancingMode =
|
12
|
-
| 'inherit'
|
13
|
-
| 'active-backup'
|
14
|
-
| 'balance-slb'
|
15
|
-
| 'balance-tcp'
|
16
|
-
export type UI_T_IYN = 'inherit' | 'yes' | 'no'
|
17
|
-
export type UI_T_Carier = 'inherit' | 'carier' | 'beakon'
|
18
|
-
|
19
|
-
export type UI_T_Adapters = (UI_I_Adapter | UI_I_AdapterWithError) & {
|
20
|
-
adapterPosition: number
|
21
|
-
}
|
1
|
+
import type {
|
2
|
+
UI_I_Adapter,
|
3
|
+
UI_I_AdapterWithError,
|
4
|
+
} from '~/components/common/diagramMain/lib/models/interfaces'
|
5
|
+
|
6
|
+
export type UI_T_AdapterStatusNames = 'active' | 'standby' | 'unused'
|
7
|
+
export type UI_T_PropertiesFieldName = 'vlanId' | 'networkLabel'
|
8
|
+
export type UI_T_TrafficShapingFieldName = 'average' | 'peak' | 'burstSize'
|
9
|
+
export type UI_T_PortPropertiesFieldName = 'mtu'
|
10
|
+
|
11
|
+
export type UI_T_LoadBalancingMode =
|
12
|
+
| 'inherit'
|
13
|
+
| 'active-backup'
|
14
|
+
| 'balance-slb'
|
15
|
+
| 'balance-tcp'
|
16
|
+
export type UI_T_IYN = 'inherit' | 'yes' | 'no'
|
17
|
+
export type UI_T_Carier = 'inherit' | 'carier' | 'beakon'
|
18
|
+
|
19
|
+
export type UI_T_Adapters = (UI_I_Adapter | UI_I_AdapterWithError) & {
|
20
|
+
adapterPosition: number
|
21
|
+
}
|