Skip to content

Commit

Permalink
OneFS 8.0.0.1 build
Browse files Browse the repository at this point in the history
  • Loading branch information
vchrisb committed May 27, 2016
1 parent 92e1ceb commit 105e087
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 12 deletions.
12 changes: 10 additions & 2 deletions IsilonPlatform/Functions/IsilonPlatformGet.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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

Expand All @@ -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{
}
Expand All @@ -6530,6 +6535,9 @@ function Get-isiEventEventlists{
if ($resume){
$queryArguments += 'resume=' + $resume
}
if ($severity){
$queryArguments += 'severity=' + $severity
}
if ($queryArguments) {
$queryArguments = '?' + [String]::Join('&',$queryArguments)
}
Expand Down
14 changes: 7 additions & 7 deletions IsilonPlatform/Functions/IsilonPlatformNew.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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
Expand All @@ -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
)
Expand Down Expand Up @@ -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
Expand All @@ -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
)
Expand Down
2 changes: 1 addition & 1 deletion IsilonPlatform/Functions/IsilonPlatformRemove.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion IsilonPlatform/Functions/IsilonPlatformSet.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion IsilonPlatform/IsilonPlatform.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 105e087

Please sign in to comment.