Gets the list of creational parameters required to add or connect to a system in ESI.
Syntax
Get-EmcSupportedSystemsCreationRequirement -SystemType <String> [-Silent] [<CommonParameters>]
Parameters
-SystemType <String>
Attributes: Required, Position: named
Specifies the storage system type. Valid values are VMAX, VNX, VNX-block, VNX-CIFS, VNXe, CLARiiON-CX4.
-Silent <SwitchParameter>
Attributes: Optional, Position: named
Turns off all the informational and verbose messages. However, it still displays errors.
<CommonParameters>
This cmdlet supports these common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, and OutVariable. Type get-help about_commonparameters for more details.
Example
C:\PS>$s = Get-EmcSupportedSystem
PS C:\> $p = Get-EmcSupportedSystemsCreationRequirement -SystemType $s[2]
PS C:\> $p.Values
Name : Username
Type : System.String
DefaultValue :
CandidateValues : {}
DisplayText : Username
Description : Username to be used to manage the VmWare Server
IsOptional : False
IsSensitiveData : False
Name : Password
Type : System.String
DefaultValue :
CandidateValues : {}
DisplayText : Password
Description : Password to be used together with username to manage the VmWare Server
IsOptional : False
IsSensitiveData : True
Name : ConnectionName
Type : System.String
DefaultValue :
CandidateValues : {}
DisplayText : VMware vSphere Host IP address or name
Description : VMware vSphere Host IP address or name to manage ESX or vCenter Server
IsOptional : False
IsSensitiveData : False
Gets the required parameters to add a system to ESI.