Skip to content

Commit

Permalink
- [#615] Added missing health category to Get-OVAlert.
Browse files Browse the repository at this point in the history
- Removed support for HPE Insight Online, as it is now a deprecated service.
- Enhanced Enable-OVLogicalInterconnectPortMonitoring to support remote sessions.
  • Loading branch information
ChrisLynchHPE committed Nov 16, 2022
1 parent 509d6ca commit 19b40ec
Show file tree
Hide file tree
Showing 9 changed files with 98,302 additions and 97,826 deletions.
21 changes: 6 additions & 15 deletions HPEOneView.700.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'HPEOneView.700.psm1'

# Version number of this module.
ModuleVersion = '7.00.3307.2893'
ModuleVersion = '7.00.3333.2084'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -160,20 +160,11 @@ PrivateData = @{
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = "Release 7.00.3307.2894
- Initial HPE OneView 7.00 library release.
- All HPE BladeSystem c-Class features have been removed from the library. This aligns with the removed features in HPE OneView 7.00 for c-Class resources.
- Added back BNA support after mistakenly removing.
- Fixed Get-OVNetwork returning all index resources when -Type FC parameter was provided.
- Added password property redaction method to hide passwords when using -Verbose output.
- Fixed PowerShell platform detection when attempting to identify .Net client installed.
- [#614] Addressed issue with iLO self-signed certificate handling within PowerShell Core.
- Changes to New-OVServerProfileLogicalDiskController and the -ControllerID parameter now has a new enum list that doesn't allow spaces in the parameter value. Prior, 'Mezz 1' was an allowed value, it must now be 'Mezz1'.
- Updated New-OVServerProfileLogicalDiskController by adding spare drive policy parameter to manage spare drive policy with HPE Synergy D3940 and Gen10 or newer controllers.
- Updated New-OVServerProfileLogicalDisk by adding add spare drive parameter to manage spare drive policy with HPE Synergy D3940 and Gen10 or newer controllers.
- Removed StoreVirtual support due to the removal of support from HPE OneView 7.0.
- Added Cmdlets to help manage appliance static routes. Only supported with virtual machine appliance, and not HPE Synergy Composer."
ReleaseNotes = "Release 7.00.3333.2084
- [#615] Added missing health category to Get-OVAlert.
- Removed support for HPE Insight Online, as it is now a deprecated service.
- Enhanced Enable-OVLogicalInterconnectPortMonitoring to support remote sessions."

# Prerelease string of this module
# Prerelease = ''
Expand Down
1,155 changes: 767 additions & 388 deletions HPEOneView.700.psm1

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<SupportedUICultures>
<UICulture>
<UICultureName>en-US</UICultureName>
<UICultureVersion>7.0.3307.2895</UICultureVersion>
<UICultureVersion>7.0.3333.2085</UICultureVersion>
</UICulture>
</SupportedUICultures>
</HelpInfo>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<ModuleInfo>
<ModuleContentURI>http://hewlettpackard.github.io/POSH-HPEOneView/UpdateHelp</ModuleContentURI>
<Version>7.0.3307.2894</Version>
<Version>7.0.3333.2084</Version>
</ModuleInfo>
67 changes: 67 additions & 0 deletions Networking.format.ps1xml
Original file line number Diff line number Diff line change
Expand Up @@ -3437,5 +3437,72 @@
</ListEntries>
</ListControl>
</View>
<!-- HPEOneView.Networking.RemotePortMonitor FT-->
<View>
<Name>RemotePortMonitor</Name>
<ViewSelectedBy>
<TypeName>HPEOneView.Networking.RemotePortMonitor</TypeName>
</ViewSelectedBy>
<TableControl>
<!-- <AutoSize/> -->
<TableHeaders>
<TableColumnHeader>
<Label>NetworkName</Label>
<Alignment>Left</Alignment>
</TableColumnHeader>
<TableColumnHeader>
<Label>AnalyzerPort</Label>
<Alignment>Left</Alignment>
</TableColumnHeader>
<TableColumnHeader>
<Label>MonitoredPorts</Label>
<Alignment>Left</Alignment>
</TableColumnHeader>
</TableHeaders>
<TableRowEntries>
<TableRowEntry>
<Wrap/>
<TableColumnItems>
<TableColumnItem>
<PropertyName>NetworkName</PropertyName>
</TableColumnItem>
<TableColumnItem>
<PropertyName>AnalyzerPort</PropertyName>
</TableColumnItem>
<TableColumnItem>
<PropertyName>MonitoredPorts</PropertyName>
</TableColumnItem>
</TableColumnItems>
</TableRowEntry>
</TableRowEntries>
</TableControl>
</View>
<!-- HPEOneView.Networking.RemotePortMonitor Fl-->
<View>
<Name>RemotePortMonitor</Name>
<ViewSelectedBy>
<TypeName>HPEOneView.Networking.RemotePortMonitor</TypeName>
</ViewSelectedBy>
<ListControl>
<ListEntries>
<ListEntry>
<ListItems>
<ListItem>
<Label>NetworkName</Label>
<PropertyName>NetworkName</PropertyName>
</ListItem>
<ListItem>
<Label>AnalyzerPort</Label>
<PropertyName>AnalyzerPort</PropertyName>
</ListItem>
<ListItem>
<Label>MonitoredPorts</Label>
<PropertyName>MonitoredPorts</PropertyName>
</ListItem>
</ListItems>
</ListEntry>
</ListEntries>
</ListControl>
</View>
</ViewDefinitions>
</Configuration>
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ To get started, use the [`Install-Module`](https://go.microsoft.com/fwlink/?Link
### For all supported PowerShell and PowerShellCore systems
```PowerShell
# Install library from the PowerShell Gallery
Install-Module HPEOneView.700
Install-Module HPEOneView.710
# Load the module
Import-Module HPEOneView.700
Import-Module HPEOneView.710
# Connect to your appliance
Connect-OVMgmt -Hostname MyAppliance.FQDN.Name -Credential $MyOneViewCredential
Expand Down
Loading

0 comments on commit 19b40ec

Please sign in to comment.