Skip to content

Commit

Permalink
Merge pull request #639 from joseph-v/add-delfin-devices
Browse files Browse the repository at this point in the history
Add Delfin devices of Pure Storage FlashArray, HPE MSA, Hitachi HNAS
  • Loading branch information
kumarashit authored Dec 24, 2021
2 parents 8544941 + 2180020 commit 9920248
Showing 1 changed file with 48 additions and 9 deletions.
57 changes: 48 additions & 9 deletions src/app/shared/utils/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -208,18 +208,22 @@ export const Consts = {
{
label: "Fujitsu",
value: 'fujitsu'
},
{
label: "Pure Storage",
value: 'pure'
}
],
resources:{
volumes : ['vmax', 'unity', 'vnx_block', 'vplex', 'oceanstor', '3par', 'vsp', 'storwize_svc', 'cmode', 'eternus'],
pools : ['vmax', 'unity', 'vnx_block', 'vplex', 'oceanstor', '3par', 'vsp', 'storwize_svc', 'cmode', 'eternus'],
controllers : ['oceanstor', 'unity', 'vnx_block', 'vplex', '3par', 'vsp', 'storwize_svc', 'cmode', 'vmax', 'eternus'],
ports : ['oceanstor', 'unity', 'vnx_block', 'vplex', '3par', 'vsp', 'storwize_svc', 'cmode', 'vmax', 'eternus'],
disks : ['oceanstor', 'unity', 'vnx_block', '3par', 'vsp', 'storwize_svc', 'cmode', 'vmax', 'eternus'],
qtrees : ['oceanstor', 'unity', 'cmode'],
filesystems : ['oceanstor', 'unity', 'cmode'],
shares: ['oceanstor', 'unity', 'cmode'],
quotas: ['oceanstor', 'unity', 'cmode']
volumes : ['vmax', 'unity', 'vnx_block', 'vplex', 'oceanstor', '3par', 'vsp', 'storwize_svc', 'cmode', 'eternus', 'flasharray', 'msa'],
pools : ['vmax', 'unity', 'vnx_block', 'vplex', 'oceanstor', '3par', 'vsp', 'storwize_svc', 'cmode', 'eternus', 'msa', 'hnas'],
controllers : ['oceanstor', 'unity', 'vnx_block', 'vplex', '3par', 'vsp', 'storwize_svc', 'cmode', 'vmax', 'eternus', 'flasharray', 'msa', 'hnas'],
ports : ['oceanstor', 'unity', 'vnx_block', 'vplex', '3par', 'vsp', 'storwize_svc', 'cmode', 'vmax', 'eternus', 'flasharray', 'msa', 'hnas'],
disks : ['oceanstor', 'unity', 'vnx_block', '3par', 'vsp', 'storwize_svc', 'cmode', 'vmax', 'eternus', 'flasharray', 'msa', 'hnas'],
qtrees : ['oceanstor', 'unity', 'cmode', 'hnas'],
filesystems : ['oceanstor', 'unity', 'cmode', 'hnas'],
shares: ['oceanstor', 'unity', 'cmode', 'hnas'],
quotas: ['oceanstor', 'unity', 'cmode', 'hnas']
},
models: {
'dellemc' : [
Expand Down Expand Up @@ -292,6 +296,17 @@ export const Consts = {
smis: false,
extra: false
}
},
{
label: "MSA",
value: {
name: 'msa',
rest: false,
ssh: true,
cli: false,
smis: false,
extra: false
}
}
],
'hitachi' : [
Expand All @@ -305,6 +320,17 @@ export const Consts = {
smis: false,
extra: false
}
},
{
label: "HNAS",
value: {
name: 'hnas',
rest: false,
ssh: true,
cli: false,
smis: false,
extra: false
}
}
],
'ibm' : [
Expand Down Expand Up @@ -346,6 +372,19 @@ export const Consts = {
}
}
],
'pure' : [
{
label: "FlashArray",
value: {
name: 'flasharray',
rest: true,
ssh: false,
cli: false,
smis: false,
extra: false
}
}
],
},
pubKeyTypeOptions: [
{
Expand Down

0 comments on commit 9920248

Please sign in to comment.