-
Notifications
You must be signed in to change notification settings - Fork 52
New HPOVCustomBaseline
Create Custom Baseline from Hotfixes and Source Baseline.
New-HPOVCustomBaseline [-SourceBaseline] <Object> [-Hotfixes] <Array> [-BaselineName] <String> [-ApplianceConnection] <Object> [<CommonParameters>]
HPE ProLiant Hotfixes are released out of the main SPP release cycle. Administrators can use HPSUM external to HPE OneView to create a custom baseline, but then need to upload to the appliance. Hotfixes can be directly uploaded to an HPE OneView 2.0 Appliance, with the ability to create a Custom Baseline by using a source Baseline (which must exist in the Baseline Repository) and specified Hotfix(s).
-ApplianceConnection <Object>
Aliases [-Appliance]
Specify one HPOneView.Appliance.Connection object or Name property value.
Default Value: ${Global:ConnectSessions} | ? Default
Aliases | Appliance |
Required? | true |
Position? | named |
Default value | (${Global:ConnectedSessions} | ? Default) |
Accept pipeline input? | true (ByPropertyName) |
Accept wildcard characters? | False |
-BaselineName <String>
The final custom Baseline name.
Example: custom_SPPGen9Snap3_2015_0327_82
Aliases | Appliance |
Required? | true |
Position? | 2 |
Default value | |
Accept pipeline input? | false |
Accept wildcard characters? | False |
-Hotfixes <Array>
Array of Hotfix filenames, or Component name.
Example: @(cp111111.exe,cp222222.scexe,cp333333.exe,cp444444.scexe)
Aliases | Appliance |
Required? | true |
Position? | 1 |
Default value | |
Accept pipeline input? | false |
Accept wildcard characters? | False |
-SourceBaseline <Object>
An existing Baseline within the HPE OneView Baseline Repository.
Aliases | Appliance |
Required? | true |
Position? | 0 |
Default value | |
Accept pipeline input? | true (ByValue) |
Accept wildcard characters? | False |
<CommonParameters>
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
HPOneView.Appliance.Baseline [System.Management.Automation.PSCustomObject] Source HPE OneView Baseline from Get-HPOVBaseline
HPOneView.Appliance.TaskResource [System.Management.Automation.PSCustomObject] The progress of in-progress or completion result.
-------------------------- EXAMPLE 1 --------------------------PS C:\> cp111111.exe,cp222222.scexe,cp333333.exe,cp444444.scexe | % { Add-HPOVBaseline $_ } PS C:\> Get-HPOVBaseline -BaselineName 'MyBaseline' | New-HPOVCustomBaseline -Hotfixes cp111111.exe,cp222222.scexe,cp333333.exe,cp444444.scexe -BaselineName 'MyNewBaseline_20160222'
Upload hotfixes to appliance, then create a new custom baseline from the 'MyBaseline' baseline.
- [Add-HPOVBaseline] (https://github.com/HewlettPackard/POSH-HPOneView/wiki/Add-HPOVBaseline)
- [Get-HPOVBaseline] (https://github.com/HewlettPackard/POSH-HPOneView/wiki/Get-HPOVBaseline)
- [Restore-HPOVCustomBaseline] (https://github.com/HewlettPackard/POSH-HPOneView/wiki/Restore-HPOVCustomBaseline)
- [Remove-HPOVBaseline] (https://github.com/HewlettPackard/POSH-HPOneView/wiki/Remove-HPOVBaseline)