Skip to content

Commit

Permalink
feat: add management pack (#392)
Browse files Browse the repository at this point in the history
Enhanced `Register-vROPSManagementPack` cmdlet to enable or disable the VMware Infrastructure Health management pack.

Signed-off-by: Ryan Johnson <johnsonryan@vmware.com>
  • Loading branch information
Ryan Johnson authored Oct 31, 2023
1 parent 38fe3bc commit ca67879
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
- Enhanced `Add-ContentLibrary` cmdlet to check the VMware Cloud Foundation version when adding a subscribed content library. If the version is 5.0.0 or later and the `-subscriptionUrl` parameter is set to `wp-content.vmware.com`, a warning message is displayed and the cmdlet exits.
- Enhanced `Add-ContentLibrary` cmdlet to work on both PowerShell 7 and Windows PowerShell 5.1.
- Enhanced `Register-vROPSManagementPack` cmdlet to enable or disable the VMware Cloud Foundation management pack.
- Enhanced `Register-vROPSManagementPack` cmdlet to enable or disable the VMware Infrastructure Health management pack.
- Enhanced `Undo-vROPSAdapter` cmdlet to support vCenter Server and vSAN adapter types in VMware Aria Operations.
- Enhanced `Undo-vROPSCredential` cmdlet to support vCenter Server and vSAN credential types in VMware Aria Operations.
- Enhanced sample alerts and notification in `SampleNotifications/*` to reflect the new VMware Aria product names.
Expand Down
4 changes: 2 additions & 2 deletions PowerValidatedSolutions.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: VMware Inc.
#
# Generated on: 2023-10-31
# Generated on: 2023-11-07
#

@{
Expand All @@ -12,7 +12,7 @@
RootModule = 'PowerValidatedSolutions.psm1'

# Version number of this module.
ModuleVersion = '2.7.0.1025'
ModuleVersion = '2.7.0.1026'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
2 changes: 1 addition & 1 deletion PowerValidatedSolutions.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -10453,7 +10453,7 @@ Function Register-vROPSManagementPack {
[Parameter (Mandatory = $true)] [ValidateNotNullOrEmpty()] [String]$user,
[Parameter (Mandatory = $true)] [ValidateNotNullOrEmpty()] [String]$pass,
[Parameter (Mandatory = $true)] [ValidateSet("enable","disable")] [ValidateNotNullOrEmpty()] [String]$state,
[Parameter (Mandatory = $true)] [ValidateSet("Ping","PCI","ISO","FISMA","HIPAA","CIS","DISA","VCF")] [ValidateNotNullOrEmpty()] [String]$packType
[Parameter (Mandatory = $true)] [ValidateSet("Ping","PCI","ISO","FISMA","HIPAA","CIS","DISA","VCF","VMwareInfrastructureHealth")] [ValidateNotNullOrEmpty()] [String]$packType
)

Try {
Expand Down

0 comments on commit ca67879

Please sign in to comment.