Lionel Jullien
Lionel Jullien
Until the library is updated to support Alletra 9000, you can make a direct call to the Oneview API using `invoke-webrequest`. You will need to build your script like https://github.com/jullienl/HPE-Synergy-OneView-demos/blob/master/Powershell/OneView/Disable-OneView-TLS1.1.ps1...
I think you just need to perform a GET on your storage system using `GET /rest/storage-systems/{id}` and use the storage system object to create a new request body but this...
You can perform the add storage operation using the OneView GUI by pressing F12 to open the developer tools so you can inspect in the Network tab the calls used...
Instead of `ConnectionType FibreChannel`, use `ConnectionType FC `and it will work like: `$conn3 = New-OVServerProfileConnection -ConnectionID 3 -ConnectionType FC -Network Unassigned -PortId "Mezz 3:1-b"`
When a port is unassigned, the cmdlet requires the `RequestedBW` to be set to `0`. So try to use: `$conn3= New-OVServerProfileConnection -Network unassigned -ConnectionID 5 -ConnectionType FC -PortId "Mezz 3:1-b"...
For DL servers, you are supposed to use the `FCConnectionAddresses` parameter to define the WWPN value that should be associated with a connection, for example : ``` $FCConnectionAddresses = @{1...
A fix is required to make the WWPN correctly assigned to the SP object, see #604
To workaround this, you can use `if (! $ConnectedSessions) { connect-OVMgmt...}` so that if you are already connected, the script will continue to execute.
`Get-OVServerProfileConnectionList` works on my side so you may have a different problem. Are you sure you don't have an old HPEOneView module still installed on your machine? What does the...
Good, looks like you only have one version of the HPEOneview module, Can you give the output now of: `Get-OVServerProfileConnectionList -verbose`