Skip to content
This repository has been archived by the owner on Nov 4, 2021. It is now read-only.

Commit

Permalink
v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
equelin committed Jul 8, 2016
1 parent c902665 commit d92217b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

This is a PowerShell module for querying EMC Unity array's API.

With this module (version 0.4.0) you can manage:
With this module (version 0.5.0) you can manage:

- System (DNS,NTP...)
- Pools (Virtual deployment only)
- Pools (Virtual and physical deployment)
- Fast Cache (Physical deployment only)
- LUN (block)
- VMware LUN (block)
Expand Down
4 changes: 2 additions & 2 deletions Unity-Powershell/Public/Set-UnityPool.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ Function Set-UnityPool {
.EXAMPLE
Set-UnityPool -Name 'Pool01' -AddVirtualDisk @{'id'='vdisk_1';'tier'='Performance'}
Add a virtual disk to the pool named 'Pool01'
Add a virtual disk 'vdisk_1' to the pool named 'Pool01'
.EXAMPLE
Set-UnityPool -Name 'Pool01' -AddraidGroup @{"id"='dg_8';"numDisks"= 8; 'raidType'='RAID6'; 'stripeWidth'='8'}
Add a raid group to the pool named 'Pool01'
Add a raid group 'dg_8' to the pool named 'Pool01'
#>

[CmdletBinding(SupportsShouldProcess = $True,ConfirmImpact = 'High',DefaultParameterSetName="RaidGroup")]
Expand Down
2 changes: 1 addition & 1 deletion Unity-Powershell/Unity-Powershell.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'Unity-Powershell.psm1'

# Version number of this module.
ModuleVersion = '0.4.0'
ModuleVersion = '0.5.0'

# ID used to uniquely identify this module
GUID = '586e7e62-9753-4fd6-91b6-89d8d89d69a2'
Expand Down

0 comments on commit d92217b

Please sign in to comment.