diff --git a/IsilonPlatform/Functions/IsilonPlatformGet.ps1 b/IsilonPlatform/Functions/IsilonPlatformGet.ps1 index a6863b8..1127b17 100644 --- a/IsilonPlatform/Functions/IsilonPlatformGet.ps1 +++ b/IsilonPlatform/Functions/IsilonPlatformGet.ps1 @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -#Build using Isilon OneFS build: B_8_0_0_037(RELEASE) +#Build using Isilon OneFS build: B_MR_8_0_0_1_131(RELEASE) Set-StrictMode -Version Latest $ErrorActionPreference = "Stop" @@ -6504,6 +6504,10 @@ function Get-isiEventEventlists{ .PARAMETER resume Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). +.PARAMETER severity + Minimum severity of returned events. + Valid inputs: information,warning,critical,emergency + .PARAMETER Cluster Name of Isilon Cluster @@ -6515,7 +6519,8 @@ function Get-isiEventEventlists{ [Parameter(Mandatory=$False,ValueFromPipelineByPropertyName=$True,ValueFromPipeline=$False,Position=0)][ValidateNotNullOrEmpty()][string]$event_instance, [Parameter(Mandatory=$False,ValueFromPipelineByPropertyName=$True,ValueFromPipeline=$False,Position=1)][ValidateNotNullOrEmpty()][int]$limit, [Parameter(Mandatory=$False,ValueFromPipelineByPropertyName=$True,ValueFromPipeline=$False,Position=2)][ValidateNotNullOrEmpty()][string]$resume, - [Parameter(Mandatory=$False,ValueFromPipelineByPropertyName=$True,ValueFromPipeline=$False,Position=3)][ValidateNotNullOrEmpty()][string]$Cluster + [Parameter(Mandatory=$False,ValueFromPipelineByPropertyName=$True,ValueFromPipeline=$False,Position=3)][ValidateNotNullOrEmpty()][ValidateSet('information','warning','critical','emergency')][string]$severity, + [Parameter(Mandatory=$False,ValueFromPipelineByPropertyName=$True,ValueFromPipeline=$False,Position=4)][ValidateNotNullOrEmpty()][string]$Cluster ) Begin{ } @@ -6530,6 +6535,9 @@ function Get-isiEventEventlists{ if ($resume){ $queryArguments += 'resume=' + $resume } + if ($severity){ + $queryArguments += 'severity=' + $severity + } if ($queryArguments) { $queryArguments = '?' + [String]::Join('&',$queryArguments) } diff --git a/IsilonPlatform/Functions/IsilonPlatformNew.ps1 b/IsilonPlatform/Functions/IsilonPlatformNew.ps1 index e93a2ad..53a0d3c 100644 --- a/IsilonPlatform/Functions/IsilonPlatformNew.ps1 +++ b/IsilonPlatform/Functions/IsilonPlatformNew.ps1 @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -#Build using Isilon OneFS build: B_8_0_0_037(RELEASE) +#Build using Isilon OneFS build: B_MR_8_0_0_1_131(RELEASE) Set-StrictMode -Version Latest $ErrorActionPreference = "Stop" @@ -2678,8 +2678,8 @@ function New-isiCloudAccountsv3{ (S3 only) The name of the bucket into which generated metrics reports are placed by the cloud service provider .PARAMETER type - The type of cloud protocol required. E.g., "isilon" for EMC Isilon, "ecs" for EMC ECS Appliance, "ecs2" for EMC Elastic Cloud Storage Service, "azure" for Microsoft Azure and "s3" for Amazon S3 - Valid inputs: isilon,ecs,ecs2,azure,s3,ran + The type of cloud protocol required. E.g., "isilon" for EMC Isilon, "ecs" for EMC ECS Appliance, "virtustream" for Virtustream Storage Cloud, "azure" for Microsoft Azure and "s3" for Amazon S3 + Valid inputs: isilon,ecs,virtustream,azure,s3,ran,ecs2 .PARAMETER uri A valid URI pointing to the location of the cloud storage @@ -2701,7 +2701,7 @@ function New-isiCloudAccountsv3{ [Parameter(Mandatory=$False,ValueFromPipelineByPropertyName=$True,ValueFromPipeline=$False,Position=6)][bool]$skip_ssl_validation, [Parameter(Mandatory=$False,ValueFromPipelineByPropertyName=$True,ValueFromPipeline=$False,Position=7)][string]$storage_region, [Parameter(Mandatory=$False,ValueFromPipelineByPropertyName=$True,ValueFromPipeline=$False,Position=8)][string]$telemetry_bucket, - [Parameter(Mandatory=$True,ValueFromPipelineByPropertyName=$True,ValueFromPipeline=$False,Position=9)][ValidateSet('isilon','ecs','ecs2','azure','s3','ran')][string]$type, + [Parameter(Mandatory=$True,ValueFromPipelineByPropertyName=$True,ValueFromPipeline=$False,Position=9)][ValidateSet('isilon','ecs','virtustream','azure','s3','ran','ecs2')][string]$type, [Parameter(Mandatory=$True,ValueFromPipelineByPropertyName=$True,ValueFromPipeline=$False,Position=10)][string]$uri, [Parameter(Mandatory=$False,ValueFromPipelineByPropertyName=$True,ValueFromPipeline=$False,Position=11)][ValidateNotNullOrEmpty()][string]$Cluster ) @@ -2801,8 +2801,8 @@ function New-isiCloudPoolsv3{ A unique name for this pool .PARAMETER type - The type of cloud protocol required. E.g., "isilon" for EMC Isilon, "ecs" for EMC ECS Appliance, "ecs2" for EMC Elastic Cloud Storage Service, "azure" for Microsoft Azure and "s3" for Amazon S3 - Valid inputs: isilon,ecs,ecs2,azure,s3,ran + The type of cloud protocol required. E.g., "isilon" for EMC Isilon, "ecs" for EMC ECS Appliance, "virtustream" for Virtustream Storage Cloud, "azure" for Microsoft Azure and "s3" for Amazon S3 + Valid inputs: isilon,ecs,virtustream,azure,s3,ran,ecs2 .PARAMETER vendor A string identifier of the cloud services vendor @@ -2819,7 +2819,7 @@ function New-isiCloudPoolsv3{ [Parameter(Mandatory=$False,ValueFromPipelineByPropertyName=$True,ValueFromPipeline=$False,Position=1)][string]$birth_cluster_id, [Parameter(Mandatory=$False,ValueFromPipelineByPropertyName=$True,ValueFromPipeline=$False,Position=2)][string]$description, [Parameter(Mandatory=$True,ValueFromPipelineByPropertyName=$True,ValueFromPipeline=$False,Position=3)][string]$name, - [Parameter(Mandatory=$True,ValueFromPipelineByPropertyName=$True,ValueFromPipeline=$False,Position=4)][ValidateSet('isilon','ecs','ecs2','azure','s3','ran')][string]$type, + [Parameter(Mandatory=$True,ValueFromPipelineByPropertyName=$True,ValueFromPipeline=$False,Position=4)][ValidateSet('isilon','ecs','virtustream','azure','s3','ran','ecs2')][string]$type, [Parameter(Mandatory=$False,ValueFromPipelineByPropertyName=$True,ValueFromPipeline=$False,Position=5)][string]$vendor, [Parameter(Mandatory=$False,ValueFromPipelineByPropertyName=$True,ValueFromPipeline=$False,Position=6)][ValidateNotNullOrEmpty()][string]$Cluster ) diff --git a/IsilonPlatform/Functions/IsilonPlatformRemove.ps1 b/IsilonPlatform/Functions/IsilonPlatformRemove.ps1 index 42c6d82..07accfd 100644 --- a/IsilonPlatform/Functions/IsilonPlatformRemove.ps1 +++ b/IsilonPlatform/Functions/IsilonPlatformRemove.ps1 @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -#Build using Isilon OneFS build: B_8_0_0_037(RELEASE) +#Build using Isilon OneFS build: B_MR_8_0_0_1_131(RELEASE) Set-StrictMode -Version Latest $ErrorActionPreference = "Stop" diff --git a/IsilonPlatform/Functions/IsilonPlatformSet.ps1 b/IsilonPlatform/Functions/IsilonPlatformSet.ps1 index 1f28c38..dfb7845 100644 --- a/IsilonPlatform/Functions/IsilonPlatformSet.ps1 +++ b/IsilonPlatform/Functions/IsilonPlatformSet.ps1 @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -#Build using Isilon OneFS build: B_8_0_0_037(RELEASE) +#Build using Isilon OneFS build: B_MR_8_0_0_1_131(RELEASE) Set-StrictMode -Version Latest $ErrorActionPreference = "Stop" diff --git a/IsilonPlatform/IsilonPlatform.psd1 b/IsilonPlatform/IsilonPlatform.psd1 index 0d85afc..490f1c8 100644 --- a/IsilonPlatform/IsilonPlatform.psd1 +++ b/IsilonPlatform/IsilonPlatform.psd1 @@ -30,7 +30,7 @@ RootModule = 'IsilonPlatform.psm1' # Version number of this module. -ModuleVersion = '8.0.1' +ModuleVersion = '8.0.2' # ID used to uniquely identify this module GUID = '0bcb10cf-1d7e-4bad-8239-f725dcf1808f'