Merge pull request #29 from wcarroll/Get-VPGSettingsRefactor
Get vpg settings refactor
This commit is contained in:
@@ -16,4 +16,29 @@ Describe $file.BaseName -Tag 'Unit' {
|
|||||||
$null = [System.Management.Automation.PSParser]::Tokenize($contents, [ref]$errors)
|
$null = [System.Management.Automation.PSParser]::Tokenize($contents, [ref]$errors)
|
||||||
$errors | Should -HaveCount 0
|
$errors | Should -HaveCount 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Context "$($file.BaseName)::Parameter Unit Tests" {
|
||||||
|
|
||||||
|
it "Supports 'ShouldProcess'" {
|
||||||
|
Get-Command $file.BaseName | Should -HaveParameter WhatIf
|
||||||
|
Get-Command $file.BaseName | Should -HaveParameter Confirm
|
||||||
|
$file | Should -FileContentMatch 'SupportsShouldProcess'
|
||||||
|
$file | Should -FileContentMatch '\$PSCmdlet\.ShouldProcess\(.+\)'
|
||||||
|
}
|
||||||
|
|
||||||
|
it "has a mandatory string parameter for the vpgName" {
|
||||||
|
Get-Command $file.BaseName | Should -HaveParameter vpgName
|
||||||
|
Get-Command $file.BaseName | Should -HaveParameter vpgName -Type string[]
|
||||||
|
Get-Command $file.BaseName | Should -HaveParameter vpgName -Mandatory
|
||||||
|
}
|
||||||
|
|
||||||
|
it "has a switch parameter for reverse protection" {
|
||||||
|
Get-Command $file.BaseName | Should -HaveParameter reverseProtection
|
||||||
|
Get-Command $file.BaseName | Should -HaveParameter reverseProtection -Type switch
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Context "$($file.BaseName)::Function Unit Tests" {
|
||||||
|
#TODO
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -9,6 +9,7 @@ function Get-ZertoVpgSetting {
|
|||||||
ParameterSetName = "vpgSettingsIdentifier",
|
ParameterSetName = "vpgSettingsIdentifier",
|
||||||
ValueFromPipeline = $true,
|
ValueFromPipeline = $true,
|
||||||
ValueFromPipelineByPropertyName = $true,
|
ValueFromPipelineByPropertyName = $true,
|
||||||
|
ValueFromRemainingArguments = $true,
|
||||||
Mandatory = $true,
|
Mandatory = $true,
|
||||||
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
||||||
)]
|
)]
|
||||||
@@ -16,6 +17,7 @@ function Get-ZertoVpgSetting {
|
|||||||
ParameterSetName = "backup",
|
ParameterSetName = "backup",
|
||||||
ValueFromPipeline = $true,
|
ValueFromPipeline = $true,
|
||||||
ValueFromPipelineByPropertyName = $true,
|
ValueFromPipelineByPropertyName = $true,
|
||||||
|
ValueFromRemainingArguments = $true,
|
||||||
Mandatory = $true,
|
Mandatory = $true,
|
||||||
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
||||||
)]
|
)]
|
||||||
@@ -23,6 +25,7 @@ function Get-ZertoVpgSetting {
|
|||||||
ParameterSetName = "dayOfWeek",
|
ParameterSetName = "dayOfWeek",
|
||||||
ValueFromPipeline = $true,
|
ValueFromPipeline = $true,
|
||||||
ValueFromPipelineByPropertyName = $true,
|
ValueFromPipelineByPropertyName = $true,
|
||||||
|
ValueFromRemainingArguments = $true,
|
||||||
Mandatory = $true,
|
Mandatory = $true,
|
||||||
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
||||||
)]
|
)]
|
||||||
@@ -30,6 +33,7 @@ function Get-ZertoVpgSetting {
|
|||||||
ParameterSetName = "retentionPeriod",
|
ParameterSetName = "retentionPeriod",
|
||||||
ValueFromPipeline = $true,
|
ValueFromPipeline = $true,
|
||||||
ValueFromPipelineByPropertyName = $true,
|
ValueFromPipelineByPropertyName = $true,
|
||||||
|
ValueFromRemainingArguments = $true,
|
||||||
Mandatory = $true,
|
Mandatory = $true,
|
||||||
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
||||||
)]
|
)]
|
||||||
@@ -37,6 +41,7 @@ function Get-ZertoVpgSetting {
|
|||||||
ParameterSetName = "schedulerPeriod",
|
ParameterSetName = "schedulerPeriod",
|
||||||
ValueFromPipeline = $true,
|
ValueFromPipeline = $true,
|
||||||
ValueFromPipelineByPropertyName = $true,
|
ValueFromPipelineByPropertyName = $true,
|
||||||
|
ValueFromRemainingArguments = $true,
|
||||||
Mandatory = $true,
|
Mandatory = $true,
|
||||||
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
||||||
)]
|
)]
|
||||||
@@ -44,12 +49,14 @@ function Get-ZertoVpgSetting {
|
|||||||
ParameterSetName = "basic",
|
ParameterSetName = "basic",
|
||||||
ValueFromPipeline = $true,
|
ValueFromPipeline = $true,
|
||||||
ValueFromPipelineByPropertyName = $true,
|
ValueFromPipelineByPropertyName = $true,
|
||||||
|
ValueFromRemainingArguments = $true,
|
||||||
Mandatory = $true,
|
Mandatory = $true,
|
||||||
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
||||||
)]
|
)]
|
||||||
[Parameter(
|
[Parameter(
|
||||||
ParameterSetName = "bootGroup",
|
ParameterSetName = "bootGroup",
|
||||||
ValueFromPipeline = $true,
|
ValueFromPipeline = $true,
|
||||||
|
ValueFromPipelineByPropertyName = $true,
|
||||||
ValueFromRemainingArguments = $true,
|
ValueFromRemainingArguments = $true,
|
||||||
Mandatory = $true,
|
Mandatory = $true,
|
||||||
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
||||||
@@ -57,6 +64,7 @@ function Get-ZertoVpgSetting {
|
|||||||
[Parameter(
|
[Parameter(
|
||||||
ParameterSetName = "journal",
|
ParameterSetName = "journal",
|
||||||
ValueFromPipeline = $true,
|
ValueFromPipeline = $true,
|
||||||
|
ValueFromPipelineByPropertyName = $true,
|
||||||
ValueFromRemainingArguments = $true,
|
ValueFromRemainingArguments = $true,
|
||||||
Mandatory = $true,
|
Mandatory = $true,
|
||||||
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
||||||
@@ -64,6 +72,7 @@ function Get-ZertoVpgSetting {
|
|||||||
[Parameter(
|
[Parameter(
|
||||||
ParameterSetName = "networks",
|
ParameterSetName = "networks",
|
||||||
ValueFromPipeline = $true,
|
ValueFromPipeline = $true,
|
||||||
|
ValueFromPipelineByPropertyName = $true,
|
||||||
ValueFromRemainingArguments = $true,
|
ValueFromRemainingArguments = $true,
|
||||||
Mandatory = $true,
|
Mandatory = $true,
|
||||||
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
||||||
@@ -71,6 +80,7 @@ function Get-ZertoVpgSetting {
|
|||||||
[Parameter(
|
[Parameter(
|
||||||
ParameterSetName = "priority",
|
ParameterSetName = "priority",
|
||||||
ValueFromPipeline = $true,
|
ValueFromPipeline = $true,
|
||||||
|
ValueFromPipelineByPropertyName = $true,
|
||||||
ValueFromRemainingArguments = $true,
|
ValueFromRemainingArguments = $true,
|
||||||
Mandatory = $true,
|
Mandatory = $true,
|
||||||
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
||||||
@@ -78,6 +88,7 @@ function Get-ZertoVpgSetting {
|
|||||||
[Parameter(
|
[Parameter(
|
||||||
ParameterSetName = "recovery",
|
ParameterSetName = "recovery",
|
||||||
ValueFromPipeline = $true,
|
ValueFromPipeline = $true,
|
||||||
|
ValueFromPipelineByPropertyName = $true,
|
||||||
ValueFromRemainingArguments = $true,
|
ValueFromRemainingArguments = $true,
|
||||||
Mandatory = $true,
|
Mandatory = $true,
|
||||||
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
||||||
@@ -85,6 +96,7 @@ function Get-ZertoVpgSetting {
|
|||||||
[Parameter(
|
[Parameter(
|
||||||
ParameterSetName = "scripting",
|
ParameterSetName = "scripting",
|
||||||
ValueFromPipeline = $true,
|
ValueFromPipeline = $true,
|
||||||
|
ValueFromPipelineByPropertyName = $true,
|
||||||
ValueFromRemainingArguments = $true,
|
ValueFromRemainingArguments = $true,
|
||||||
Mandatory = $true,
|
Mandatory = $true,
|
||||||
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
||||||
@@ -92,6 +104,7 @@ function Get-ZertoVpgSetting {
|
|||||||
[Parameter(
|
[Parameter(
|
||||||
ParameterSetName = "vms",
|
ParameterSetName = "vms",
|
||||||
ValueFromPipeline = $true,
|
ValueFromPipeline = $true,
|
||||||
|
ValueFromPipelineByPropertyName = $true,
|
||||||
ValueFromRemainingArguments = $true,
|
ValueFromRemainingArguments = $true,
|
||||||
Mandatory = $true,
|
Mandatory = $true,
|
||||||
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
||||||
@@ -99,6 +112,7 @@ function Get-ZertoVpgSetting {
|
|||||||
[Parameter(
|
[Parameter(
|
||||||
ParameterSetName = "vmIdentifier",
|
ParameterSetName = "vmIdentifier",
|
||||||
ValueFromPipeline = $true,
|
ValueFromPipeline = $true,
|
||||||
|
ValueFromPipelineByPropertyName = $true,
|
||||||
ValueFromRemainingArguments = $true,
|
ValueFromRemainingArguments = $true,
|
||||||
Mandatory = $true,
|
Mandatory = $true,
|
||||||
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
||||||
@@ -106,6 +120,7 @@ function Get-ZertoVpgSetting {
|
|||||||
[Parameter(
|
[Parameter(
|
||||||
ParameterSetName = "nics",
|
ParameterSetName = "nics",
|
||||||
ValueFromPipeline = $true,
|
ValueFromPipeline = $true,
|
||||||
|
ValueFromPipelineByPropertyName = $true,
|
||||||
ValueFromRemainingArguments = $true,
|
ValueFromRemainingArguments = $true,
|
||||||
Mandatory = $true,
|
Mandatory = $true,
|
||||||
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
||||||
@@ -113,6 +128,7 @@ function Get-ZertoVpgSetting {
|
|||||||
[Parameter(
|
[Parameter(
|
||||||
ParameterSetName = "nicIdentifier",
|
ParameterSetName = "nicIdentifier",
|
||||||
ValueFromPipeline = $true,
|
ValueFromPipeline = $true,
|
||||||
|
ValueFromPipelineByPropertyName = $true,
|
||||||
ValueFromRemainingArguments = $true,
|
ValueFromRemainingArguments = $true,
|
||||||
Mandatory = $true,
|
Mandatory = $true,
|
||||||
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
||||||
@@ -120,6 +136,7 @@ function Get-ZertoVpgSetting {
|
|||||||
[Parameter(
|
[Parameter(
|
||||||
ParameterSetName = "volumes",
|
ParameterSetName = "volumes",
|
||||||
ValueFromPipeline = $true,
|
ValueFromPipeline = $true,
|
||||||
|
ValueFromPipelineByPropertyName = $true,
|
||||||
ValueFromRemainingArguments = $true,
|
ValueFromRemainingArguments = $true,
|
||||||
Mandatory = $true,
|
Mandatory = $true,
|
||||||
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
||||||
@@ -127,13 +144,14 @@ function Get-ZertoVpgSetting {
|
|||||||
[Parameter(
|
[Parameter(
|
||||||
ParameterSetName = "volumeIdentifier",
|
ParameterSetName = "volumeIdentifier",
|
||||||
ValueFromPipeline = $true,
|
ValueFromPipeline = $true,
|
||||||
|
ValueFromPipelineByPropertyName = $true,
|
||||||
ValueFromRemainingArguments = $true,
|
ValueFromRemainingArguments = $true,
|
||||||
Mandatory = $true,
|
Mandatory = $true,
|
||||||
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
HelpMessage = "The identifier of the VPG settings object for which information is retrieved."
|
||||||
)]
|
)]
|
||||||
[ValidateNotNullOrEmpty()]
|
[ValidateNotNullOrEmpty()]
|
||||||
[Alias("vpgSettingsId", "settingsId")]
|
[Alias("vpgSettingsId", "settingsId")]
|
||||||
[string]$vpgSettingsIdentifier,
|
[string[]]$vpgSettingsIdentifier,
|
||||||
[Parameter(
|
[Parameter(
|
||||||
ParameterSetName = "backup",
|
ParameterSetName = "backup",
|
||||||
Mandatory = $true,
|
Mandatory = $true,
|
||||||
@@ -266,38 +284,98 @@ function Get-ZertoVpgSetting {
|
|||||||
|
|
||||||
begin {
|
begin {
|
||||||
$baseUri = "vpgSettings"
|
$baseUri = "vpgSettings"
|
||||||
$returnObject = @()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#TODO - Update to Switch Logic
|
|
||||||
process {
|
process {
|
||||||
if ( $PSCmdlet.ParameterSetName -eq "main" ) {
|
switch ( $PSCmdlet.ParameterSetName ) {
|
||||||
$returnObject = Invoke-ZertoRestRequest -uri $baseUri
|
"main" {
|
||||||
} elseif ($PSCmdlet.ParameterSetName -eq "vpgSettingsIdentifier") {
|
Invoke-ZertoRestRequest -uri $baseUri
|
||||||
$uri = "{0}/{1}" -f $baseUri, $vpgSettingsIdentifier
|
break
|
||||||
$returnObject = Invoke-ZertoRestRequest -uri $uri
|
}
|
||||||
} elseif ( $PSCmdlet.ParameterSetName -eq "dayOfWeek" -or $PSCmdlet.ParameterSetName -eq "retentionPeriod" -or $PSCmdlet.ParameterSetName -eq "schedulerPeriod" ) {
|
|
||||||
$uri = "{0}/{1}/backup/{2}" -f $baseUri, $vpgSettingsIdentifier, $PSCmdlet.ParameterSetName.ToLower()
|
"vpgSettingsIdentifier" {
|
||||||
$returnObject = Invoke-ZertoRestRequest -uri $uri
|
foreach ($id in $vpgSettingsIdentifier) {
|
||||||
} elseif ( $PSCmdlet.ParameterSetName -eq "nics" -or $PSCmdlet.ParameterSetName -eq "volumes" ) {
|
$uri = "{0}/{1}" -f $baseUri, $id
|
||||||
$uri = "{0}/{1}/vms/{2}/{3}" -f $baseUri, $vpgSettingsIdentifier, $vmIdentifier, $PSCmdlet.ParameterSetName.ToLower()
|
Invoke-ZertoRestRequest -uri $uri
|
||||||
$returnObject = Invoke-ZertoRestRequest -uri $uri
|
}
|
||||||
} elseif ( $PSCmdlet.ParameterSetName -eq "vmIdentifier" ) {
|
break
|
||||||
$uri = "{0}/{1}/vms/{2}" -f $baseUri, $vpgSettingsIdentifier, $vmIdentifier
|
}
|
||||||
$returnObject = Invoke-ZertoRestRequest -uri $uri
|
|
||||||
} elseif ( $PSCmdlet.ParameterSetName -eq "nicIdentifier" ) {
|
"dayOfWeek" {
|
||||||
$uri = "{0}/{1}/vms/{2}/nics/{3}" -f $baseUri, $vpgSettingsIdentifier, $vmIdentifier, $nicIdentifier
|
foreach ($id in $vpgSettingsIdentifier) {
|
||||||
$returnObject = Invoke-ZertoRestRequest -uri $uri
|
$uri = "{0}/{1}/backup/{2}" -f $baseUri, $id, $PSCmdlet.ParameterSetName.ToLower()
|
||||||
} elseif ( $PSCmdlet.ParameterSetName -eq "volumeIdentifier" ) {
|
Invoke-ZertoRestRequest -uri $uri
|
||||||
$uri = "{0}/{1}/vms/{2}/volumes/{3}" -f $baseUri, $vpgSettingsIdentifier, $vmIdentifier, $volumeIdentifier
|
}
|
||||||
$returnObject = Invoke-ZertoRestRequest -uri $uri
|
break
|
||||||
} else {
|
}
|
||||||
$uri = "{0}/{1}/{2}" -f $baseUri, $vpgSettingsIdentifier, $PSCmdlet.ParameterSetName.ToLower()
|
|
||||||
$returnObject = Invoke-ZertoRestRequest -uri $uri
|
"retentionPeriod" {
|
||||||
|
foreach ($id in $vpgSettingsIdentifier) {
|
||||||
|
$uri = "{0}/{1}/backup/{2}" -f $baseUri, $id, $PSCmdlet.ParameterSetName.ToLower()
|
||||||
|
Invoke-ZertoRestRequest -uri $uri
|
||||||
|
}
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
"schedulerPeriod" {
|
||||||
|
foreach ($id in $vpgSettingsIdentifier) {
|
||||||
|
$uri = "{0}/{1}/backup/{2}" -f $baseUri, $id, $PSCmdlet.ParameterSetName.ToLower()
|
||||||
|
Invoke-ZertoRestRequest -uri $uri
|
||||||
|
}
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
"nics" {
|
||||||
|
foreach ($id in $vpgSettingsIdentifier) {
|
||||||
|
$uri = "{0}/{1}/vms/{2}/{3}" -f $baseUri, $id, $vmIdentifier, $PSCmdlet.ParameterSetName.ToLower()
|
||||||
|
Invoke-ZertoRestRequest -uri $uri
|
||||||
|
}
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
"volumes" {
|
||||||
|
foreach ($id in $vpgSettingsIdentifier) {
|
||||||
|
$uri = "{0}/{1}/vms/{2}/{3}" -f $baseUri, $id, $vmIdentifier, $PSCmdlet.ParameterSetName.ToLower()
|
||||||
|
Invoke-ZertoRestRequest -uri $uri
|
||||||
|
}
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
"vmIdentifier" {
|
||||||
|
foreach ($id in $vpgSettingsIdentifier) {
|
||||||
|
$uri = "{0}/{1}/vms/{2}" -f $baseUri, $id, $vmIdentifier
|
||||||
|
Invoke-ZertoRestRequest -uri $uri
|
||||||
|
}
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
"nicIdentifier" {
|
||||||
|
foreach ($id in $vpgSettingsIdentifier) {
|
||||||
|
$uri = "{0}/{1}/vms/{2}/nics/{3}" -f $baseUri, $id, $vmIdentifier, $nicIdentifier
|
||||||
|
Invoke-ZertoRestRequest -uri $uri
|
||||||
|
}
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
"volumeIdentifier" {
|
||||||
|
foreach ($id in $vpgSettingsIdentifier) {
|
||||||
|
$uri = "{0}/{1}/vms/{2}/volumes/{3}" -f $baseUri, $id, $vmIdentifier, $volumeIdentifier
|
||||||
|
Invoke-ZertoRestRequest -uri $uri
|
||||||
|
}
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
default {
|
||||||
|
foreach ($id in $vpgSettingsIdentifier) {
|
||||||
|
$uri = "{0}/{1}/{2}" -f $baseUri, $id, $PSCmdlet.ParameterSetName.ToLower()
|
||||||
|
Invoke-ZertoRestRequest -uri $uri
|
||||||
|
}
|
||||||
|
break
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
end {
|
end {
|
||||||
return $returnObject
|
#Nothing to do!
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<# .ExternalHelp ./en-us/ZertoApiWrapper-help.xml #>
|
<# .ExternalHelp ./en-us/ZertoApiWrapper-help.xml #>
|
||||||
function Invoke-ZertoFailoverCommit {
|
function Invoke-ZertoFailoverCommit {
|
||||||
[cmdletbinding()]
|
[cmdletbinding( SupportsShouldProcess = $true )]
|
||||||
param(
|
param(
|
||||||
[Parameter(
|
[Parameter(
|
||||||
HelpMessage = "Name(s) of the VPG(s) to commit.",
|
HelpMessage = "Name(s) of the VPG(s) to commit.",
|
||||||
@@ -16,24 +16,26 @@ function Invoke-ZertoFailoverCommit {
|
|||||||
|
|
||||||
begin {
|
begin {
|
||||||
$baseUri = "vpgs"
|
$baseUri = "vpgs"
|
||||||
if ( $reverseProtection ) {
|
}
|
||||||
|
|
||||||
|
process {
|
||||||
|
if ( $reverseProtection.IsPresent ) {
|
||||||
$body = @{"IsReverseProtection" = $true }
|
$body = @{"IsReverseProtection" = $true }
|
||||||
} else {
|
} else {
|
||||||
$body = @{"IsReverseProtection" = $false }
|
$body = @{"IsReverseProtection" = $false }
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
process {
|
|
||||||
foreach ($name in $vpgName) {
|
foreach ($name in $vpgName) {
|
||||||
$vpgId = $(Get-ZertoVpg -name $name).vpgIdentifier
|
$vpgId = $(Get-ZertoVpg -name $name).vpgIdentifier
|
||||||
if ( -not $vpgId ) {
|
if ( -not $vpgId ) {
|
||||||
Write-Error "VPG: $name could not be found. Please check the name and try again. Skipping."
|
Write-Error "VPG: $name could not be found. Please check the name and try again. Skipping."
|
||||||
} else {
|
} else {
|
||||||
$uri = "{0}/{1}/FailoverCommit" -f $baseUri, $vpgId
|
$uri = "{0}/{1}/FailoverCommit" -f $baseUri, $vpgId
|
||||||
|
if ($PSCmdlet.ShouldProcess($body, $uri)) {
|
||||||
Invoke-ZertoRestRequest -uri $uri -body $($body | convertto-json) -method "POST"
|
Invoke-ZertoRestRequest -uri $uri -body $($body | convertto-json) -method "POST"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
end {
|
end {
|
||||||
# Nothing to do
|
# Nothing to do
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<# .ExternalHelp ./en-us/ZertoApiWrapper-help.xml #>
|
<# .ExternalHelp ./en-us/ZertoApiWrapper-help.xml #>
|
||||||
function New-ZertoVpgSettingsIdentifier {
|
function New-ZertoVpgSettingsIdentifier {
|
||||||
[cmdletbinding( SupportsShouldProcess = $true )]
|
[cmdletbinding( SupportsShouldProcess = $true, DefaultParameterSetName = "newVpg" )]
|
||||||
param(
|
param(
|
||||||
[Parameter(
|
[Parameter(
|
||||||
HelpMessage = "Identifier of the VPG to create a VPG settings identifier. If a vpgIdentifier is not provided, a new VPG settings object is created without any configured settings. This would be used for creating a new VPG from scratch.",
|
HelpMessage = "Identifier of the VPG to create a VPG settings identifier. If a vpgIdentifier is not provided, a new VPG settings object is created without any configured settings. This would be used for creating a new VPG from scratch.",
|
||||||
@@ -11,7 +11,7 @@ function New-ZertoVpgSettingsIdentifier {
|
|||||||
)]
|
)]
|
||||||
[ValidateNotNullOrEmpty()]
|
[ValidateNotNullOrEmpty()]
|
||||||
[Alias("vpgId")]
|
[Alias("vpgId")]
|
||||||
[string]$vpgIdentifier,
|
[string[]]$vpgIdentifier,
|
||||||
[Parameter(
|
[Parameter(
|
||||||
HelpMessage = "Use this switch when creating a vpgSettingsIdentifier for a new VPG",
|
HelpMessage = "Use this switch when creating a vpgSettingsIdentifier for a new VPG",
|
||||||
ParameterSetName = "newVpg",
|
ParameterSetName = "newVpg",
|
||||||
@@ -22,22 +22,26 @@ function New-ZertoVpgSettingsIdentifier {
|
|||||||
|
|
||||||
begin {
|
begin {
|
||||||
$baseUri = "vpgSettings"
|
$baseUri = "vpgSettings"
|
||||||
switch ($PSCmdlet.ParameterSetName) {
|
|
||||||
"newVpg" {
|
|
||||||
$body = "{}"
|
|
||||||
}
|
|
||||||
|
|
||||||
"existingVpg" {
|
|
||||||
$body = "{""VpgIdentifier"":""$vpgIdentifier""}"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
process {
|
process {
|
||||||
|
switch ($PSCmdlet.ParameterSetName) {
|
||||||
|
"newVpg" {
|
||||||
|
$body = "{}"
|
||||||
if ($PSCmdlet.ShouldProcess("Creating VPG Settings Object")) {
|
if ($PSCmdlet.ShouldProcess("Creating VPG Settings Object")) {
|
||||||
Invoke-ZertoRestRequest -uri $baseUri -body $body -Method "POST"
|
Invoke-ZertoRestRequest -uri $baseUri -body $body -Method "POST"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
"existingVpg" {
|
||||||
|
foreach ($id in $vpgIdentifier) {
|
||||||
|
$body = "{""VpgIdentifier"":""$id""}"
|
||||||
|
if ($PSCmdlet.ShouldProcess("Creating VPG Settings Object")) {
|
||||||
|
Invoke-ZertoRestRequest -uri $baseUri -body $body -Method "POST"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
end {
|
end {
|
||||||
#Nothing to do
|
#Nothing to do
|
||||||
|
|||||||
@@ -5256,14 +5256,14 @@
|
|||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>False</dev:defaultValue>
|
<dev:defaultValue>False</dev:defaultValue>
|
||||||
</command:parameter>
|
</command:parameter>
|
||||||
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName, ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
||||||
<maml:name>vpgSettingsIdentifier</maml:name>
|
<maml:name>vpgSettingsIdentifier</maml:name>
|
||||||
<maml:Description>
|
<maml:Description>
|
||||||
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
||||||
</maml:Description>
|
</maml:Description>
|
||||||
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
|
<command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
|
||||||
<dev:type>
|
<dev:type>
|
||||||
<maml:name>String</maml:name>
|
<maml:name>String[]</maml:name>
|
||||||
<maml:uri />
|
<maml:uri />
|
||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>None</dev:defaultValue>
|
<dev:defaultValue>None</dev:defaultValue>
|
||||||
@@ -5282,14 +5282,14 @@
|
|||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>False</dev:defaultValue>
|
<dev:defaultValue>False</dev:defaultValue>
|
||||||
</command:parameter>
|
</command:parameter>
|
||||||
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName, ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
||||||
<maml:name>vpgSettingsIdentifier</maml:name>
|
<maml:name>vpgSettingsIdentifier</maml:name>
|
||||||
<maml:Description>
|
<maml:Description>
|
||||||
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
||||||
</maml:Description>
|
</maml:Description>
|
||||||
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
|
<command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
|
||||||
<dev:type>
|
<dev:type>
|
||||||
<maml:name>String</maml:name>
|
<maml:name>String[]</maml:name>
|
||||||
<maml:uri />
|
<maml:uri />
|
||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>None</dev:defaultValue>
|
<dev:defaultValue>None</dev:defaultValue>
|
||||||
@@ -5308,14 +5308,14 @@
|
|||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>False</dev:defaultValue>
|
<dev:defaultValue>False</dev:defaultValue>
|
||||||
</command:parameter>
|
</command:parameter>
|
||||||
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName, ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
||||||
<maml:name>vpgSettingsIdentifier</maml:name>
|
<maml:name>vpgSettingsIdentifier</maml:name>
|
||||||
<maml:Description>
|
<maml:Description>
|
||||||
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
||||||
</maml:Description>
|
</maml:Description>
|
||||||
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
|
<command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
|
||||||
<dev:type>
|
<dev:type>
|
||||||
<maml:name>String</maml:name>
|
<maml:name>String[]</maml:name>
|
||||||
<maml:uri />
|
<maml:uri />
|
||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>None</dev:defaultValue>
|
<dev:defaultValue>None</dev:defaultValue>
|
||||||
@@ -5334,14 +5334,14 @@
|
|||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>False</dev:defaultValue>
|
<dev:defaultValue>False</dev:defaultValue>
|
||||||
</command:parameter>
|
</command:parameter>
|
||||||
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName, ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
||||||
<maml:name>vpgSettingsIdentifier</maml:name>
|
<maml:name>vpgSettingsIdentifier</maml:name>
|
||||||
<maml:Description>
|
<maml:Description>
|
||||||
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
||||||
</maml:Description>
|
</maml:Description>
|
||||||
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
|
<command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
|
||||||
<dev:type>
|
<dev:type>
|
||||||
<maml:name>String</maml:name>
|
<maml:name>String[]</maml:name>
|
||||||
<maml:uri />
|
<maml:uri />
|
||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>None</dev:defaultValue>
|
<dev:defaultValue>None</dev:defaultValue>
|
||||||
@@ -5360,14 +5360,14 @@
|
|||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>False</dev:defaultValue>
|
<dev:defaultValue>False</dev:defaultValue>
|
||||||
</command:parameter>
|
</command:parameter>
|
||||||
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName, ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
||||||
<maml:name>vpgSettingsIdentifier</maml:name>
|
<maml:name>vpgSettingsIdentifier</maml:name>
|
||||||
<maml:Description>
|
<maml:Description>
|
||||||
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
||||||
</maml:Description>
|
</maml:Description>
|
||||||
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
|
<command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
|
||||||
<dev:type>
|
<dev:type>
|
||||||
<maml:name>String</maml:name>
|
<maml:name>String[]</maml:name>
|
||||||
<maml:uri />
|
<maml:uri />
|
||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>None</dev:defaultValue>
|
<dev:defaultValue>None</dev:defaultValue>
|
||||||
@@ -5386,14 +5386,14 @@
|
|||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>False</dev:defaultValue>
|
<dev:defaultValue>False</dev:defaultValue>
|
||||||
</command:parameter>
|
</command:parameter>
|
||||||
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName, ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
||||||
<maml:name>vpgSettingsIdentifier</maml:name>
|
<maml:name>vpgSettingsIdentifier</maml:name>
|
||||||
<maml:Description>
|
<maml:Description>
|
||||||
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
||||||
</maml:Description>
|
</maml:Description>
|
||||||
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
|
<command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
|
||||||
<dev:type>
|
<dev:type>
|
||||||
<maml:name>String</maml:name>
|
<maml:name>String[]</maml:name>
|
||||||
<maml:uri />
|
<maml:uri />
|
||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>None</dev:defaultValue>
|
<dev:defaultValue>None</dev:defaultValue>
|
||||||
@@ -5425,14 +5425,14 @@
|
|||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>None</dev:defaultValue>
|
<dev:defaultValue>None</dev:defaultValue>
|
||||||
</command:parameter>
|
</command:parameter>
|
||||||
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName, ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
||||||
<maml:name>vpgSettingsIdentifier</maml:name>
|
<maml:name>vpgSettingsIdentifier</maml:name>
|
||||||
<maml:Description>
|
<maml:Description>
|
||||||
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
||||||
</maml:Description>
|
</maml:Description>
|
||||||
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
|
<command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
|
||||||
<dev:type>
|
<dev:type>
|
||||||
<maml:name>String</maml:name>
|
<maml:name>String[]</maml:name>
|
||||||
<maml:uri />
|
<maml:uri />
|
||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>None</dev:defaultValue>
|
<dev:defaultValue>None</dev:defaultValue>
|
||||||
@@ -5463,14 +5463,14 @@
|
|||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>None</dev:defaultValue>
|
<dev:defaultValue>None</dev:defaultValue>
|
||||||
</command:parameter>
|
</command:parameter>
|
||||||
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName, ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
||||||
<maml:name>vpgSettingsIdentifier</maml:name>
|
<maml:name>vpgSettingsIdentifier</maml:name>
|
||||||
<maml:Description>
|
<maml:Description>
|
||||||
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
||||||
</maml:Description>
|
</maml:Description>
|
||||||
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
|
<command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
|
||||||
<dev:type>
|
<dev:type>
|
||||||
<maml:name>String</maml:name>
|
<maml:name>String[]</maml:name>
|
||||||
<maml:uri />
|
<maml:uri />
|
||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>None</dev:defaultValue>
|
<dev:defaultValue>None</dev:defaultValue>
|
||||||
@@ -5489,14 +5489,14 @@
|
|||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>False</dev:defaultValue>
|
<dev:defaultValue>False</dev:defaultValue>
|
||||||
</command:parameter>
|
</command:parameter>
|
||||||
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName, ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
||||||
<maml:name>vpgSettingsIdentifier</maml:name>
|
<maml:name>vpgSettingsIdentifier</maml:name>
|
||||||
<maml:Description>
|
<maml:Description>
|
||||||
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
||||||
</maml:Description>
|
</maml:Description>
|
||||||
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
|
<command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
|
||||||
<dev:type>
|
<dev:type>
|
||||||
<maml:name>String</maml:name>
|
<maml:name>String[]</maml:name>
|
||||||
<maml:uri />
|
<maml:uri />
|
||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>None</dev:defaultValue>
|
<dev:defaultValue>None</dev:defaultValue>
|
||||||
@@ -5515,14 +5515,14 @@
|
|||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>False</dev:defaultValue>
|
<dev:defaultValue>False</dev:defaultValue>
|
||||||
</command:parameter>
|
</command:parameter>
|
||||||
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName, ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
||||||
<maml:name>vpgSettingsIdentifier</maml:name>
|
<maml:name>vpgSettingsIdentifier</maml:name>
|
||||||
<maml:Description>
|
<maml:Description>
|
||||||
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
||||||
</maml:Description>
|
</maml:Description>
|
||||||
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
|
<command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
|
||||||
<dev:type>
|
<dev:type>
|
||||||
<maml:name>String</maml:name>
|
<maml:name>String[]</maml:name>
|
||||||
<maml:uri />
|
<maml:uri />
|
||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>None</dev:defaultValue>
|
<dev:defaultValue>None</dev:defaultValue>
|
||||||
@@ -5541,14 +5541,14 @@
|
|||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>False</dev:defaultValue>
|
<dev:defaultValue>False</dev:defaultValue>
|
||||||
</command:parameter>
|
</command:parameter>
|
||||||
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName, ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
||||||
<maml:name>vpgSettingsIdentifier</maml:name>
|
<maml:name>vpgSettingsIdentifier</maml:name>
|
||||||
<maml:Description>
|
<maml:Description>
|
||||||
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
||||||
</maml:Description>
|
</maml:Description>
|
||||||
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
|
<command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
|
||||||
<dev:type>
|
<dev:type>
|
||||||
<maml:name>String</maml:name>
|
<maml:name>String[]</maml:name>
|
||||||
<maml:uri />
|
<maml:uri />
|
||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>None</dev:defaultValue>
|
<dev:defaultValue>None</dev:defaultValue>
|
||||||
@@ -5567,14 +5567,14 @@
|
|||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>False</dev:defaultValue>
|
<dev:defaultValue>False</dev:defaultValue>
|
||||||
</command:parameter>
|
</command:parameter>
|
||||||
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName, ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
||||||
<maml:name>vpgSettingsIdentifier</maml:name>
|
<maml:name>vpgSettingsIdentifier</maml:name>
|
||||||
<maml:Description>
|
<maml:Description>
|
||||||
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
||||||
</maml:Description>
|
</maml:Description>
|
||||||
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
|
<command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
|
||||||
<dev:type>
|
<dev:type>
|
||||||
<maml:name>String</maml:name>
|
<maml:name>String[]</maml:name>
|
||||||
<maml:uri />
|
<maml:uri />
|
||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>None</dev:defaultValue>
|
<dev:defaultValue>None</dev:defaultValue>
|
||||||
@@ -5593,14 +5593,14 @@
|
|||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>False</dev:defaultValue>
|
<dev:defaultValue>False</dev:defaultValue>
|
||||||
</command:parameter>
|
</command:parameter>
|
||||||
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName, ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
||||||
<maml:name>vpgSettingsIdentifier</maml:name>
|
<maml:name>vpgSettingsIdentifier</maml:name>
|
||||||
<maml:Description>
|
<maml:Description>
|
||||||
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
||||||
</maml:Description>
|
</maml:Description>
|
||||||
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
|
<command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
|
||||||
<dev:type>
|
<dev:type>
|
||||||
<maml:name>String</maml:name>
|
<maml:name>String[]</maml:name>
|
||||||
<maml:uri />
|
<maml:uri />
|
||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>None</dev:defaultValue>
|
<dev:defaultValue>None</dev:defaultValue>
|
||||||
@@ -5632,14 +5632,14 @@
|
|||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>None</dev:defaultValue>
|
<dev:defaultValue>None</dev:defaultValue>
|
||||||
</command:parameter>
|
</command:parameter>
|
||||||
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName, ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
||||||
<maml:name>vpgSettingsIdentifier</maml:name>
|
<maml:name>vpgSettingsIdentifier</maml:name>
|
||||||
<maml:Description>
|
<maml:Description>
|
||||||
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
||||||
</maml:Description>
|
</maml:Description>
|
||||||
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
|
<command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
|
||||||
<dev:type>
|
<dev:type>
|
||||||
<maml:name>String</maml:name>
|
<maml:name>String[]</maml:name>
|
||||||
<maml:uri />
|
<maml:uri />
|
||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>None</dev:defaultValue>
|
<dev:defaultValue>None</dev:defaultValue>
|
||||||
@@ -5670,14 +5670,14 @@
|
|||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>False</dev:defaultValue>
|
<dev:defaultValue>False</dev:defaultValue>
|
||||||
</command:parameter>
|
</command:parameter>
|
||||||
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName, ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
||||||
<maml:name>vpgSettingsIdentifier</maml:name>
|
<maml:name>vpgSettingsIdentifier</maml:name>
|
||||||
<maml:Description>
|
<maml:Description>
|
||||||
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
||||||
</maml:Description>
|
</maml:Description>
|
||||||
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
|
<command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
|
||||||
<dev:type>
|
<dev:type>
|
||||||
<maml:name>String</maml:name>
|
<maml:name>String[]</maml:name>
|
||||||
<maml:uri />
|
<maml:uri />
|
||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>None</dev:defaultValue>
|
<dev:defaultValue>None</dev:defaultValue>
|
||||||
@@ -5697,14 +5697,14 @@
|
|||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>None</dev:defaultValue>
|
<dev:defaultValue>None</dev:defaultValue>
|
||||||
</command:parameter>
|
</command:parameter>
|
||||||
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName, ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
||||||
<maml:name>vpgSettingsIdentifier</maml:name>
|
<maml:name>vpgSettingsIdentifier</maml:name>
|
||||||
<maml:Description>
|
<maml:Description>
|
||||||
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
||||||
</maml:Description>
|
</maml:Description>
|
||||||
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
|
<command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
|
||||||
<dev:type>
|
<dev:type>
|
||||||
<maml:name>String</maml:name>
|
<maml:name>String[]</maml:name>
|
||||||
<maml:uri />
|
<maml:uri />
|
||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>None</dev:defaultValue>
|
<dev:defaultValue>None</dev:defaultValue>
|
||||||
@@ -5723,14 +5723,14 @@
|
|||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>False</dev:defaultValue>
|
<dev:defaultValue>False</dev:defaultValue>
|
||||||
</command:parameter>
|
</command:parameter>
|
||||||
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName, ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
||||||
<maml:name>vpgSettingsIdentifier</maml:name>
|
<maml:name>vpgSettingsIdentifier</maml:name>
|
||||||
<maml:Description>
|
<maml:Description>
|
||||||
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
||||||
</maml:Description>
|
</maml:Description>
|
||||||
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
|
<command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
|
||||||
<dev:type>
|
<dev:type>
|
||||||
<maml:name>String</maml:name>
|
<maml:name>String[]</maml:name>
|
||||||
<maml:uri />
|
<maml:uri />
|
||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>None</dev:defaultValue>
|
<dev:defaultValue>None</dev:defaultValue>
|
||||||
@@ -5738,14 +5738,14 @@
|
|||||||
</command:syntaxItem>
|
</command:syntaxItem>
|
||||||
<command:syntaxItem>
|
<command:syntaxItem>
|
||||||
<maml:name>Get-ZertoVpgSetting</maml:name>
|
<maml:name>Get-ZertoVpgSetting</maml:name>
|
||||||
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName, ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
||||||
<maml:name>vpgSettingsIdentifier</maml:name>
|
<maml:name>vpgSettingsIdentifier</maml:name>
|
||||||
<maml:Description>
|
<maml:Description>
|
||||||
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
||||||
</maml:Description>
|
</maml:Description>
|
||||||
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
|
<command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
|
||||||
<dev:type>
|
<dev:type>
|
||||||
<maml:name>String</maml:name>
|
<maml:name>String[]</maml:name>
|
||||||
<maml:uri />
|
<maml:uri />
|
||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>None</dev:defaultValue>
|
<dev:defaultValue>None</dev:defaultValue>
|
||||||
@@ -5957,14 +5957,14 @@
|
|||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>False</dev:defaultValue>
|
<dev:defaultValue>False</dev:defaultValue>
|
||||||
</command:parameter>
|
</command:parameter>
|
||||||
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName, ByValue)" position="named" aliases="vpgSettingsId, settingsId">
|
||||||
<maml:name>vpgSettingsIdentifier</maml:name>
|
<maml:name>vpgSettingsIdentifier</maml:name>
|
||||||
<maml:Description>
|
<maml:Description>
|
||||||
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
<maml:para>The identifier of the VPG settings object for which information is retrieved.</maml:para>
|
||||||
</maml:Description>
|
</maml:Description>
|
||||||
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
|
<command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
|
||||||
<dev:type>
|
<dev:type>
|
||||||
<maml:name>String</maml:name>
|
<maml:name>String[]</maml:name>
|
||||||
<maml:uri />
|
<maml:uri />
|
||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>None</dev:defaultValue>
|
<dev:defaultValue>None</dev:defaultValue>
|
||||||
@@ -10363,9 +10363,9 @@
|
|||||||
<maml:Description>
|
<maml:Description>
|
||||||
<maml:para>Identifier of the VPG to create a VPG settings identifier. If a vpgIdentifier is not provided, a new VPG settings object is created without any configured settings. This would be used for creating a new VPG from scratch.</maml:para>
|
<maml:para>Identifier of the VPG to create a VPG settings identifier. If a vpgIdentifier is not provided, a new VPG settings object is created without any configured settings. This would be used for creating a new VPG from scratch.</maml:para>
|
||||||
</maml:Description>
|
</maml:Description>
|
||||||
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
|
<command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
|
||||||
<dev:type>
|
<dev:type>
|
||||||
<maml:name>String</maml:name>
|
<maml:name>String[]</maml:name>
|
||||||
<maml:uri />
|
<maml:uri />
|
||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>None</dev:defaultValue>
|
<dev:defaultValue>None</dev:defaultValue>
|
||||||
@@ -10412,9 +10412,9 @@
|
|||||||
<maml:Description>
|
<maml:Description>
|
||||||
<maml:para>Identifier of the VPG to create a VPG settings identifier. If a vpgIdentifier is not provided, a new VPG settings object is created without any configured settings. This would be used for creating a new VPG from scratch.</maml:para>
|
<maml:para>Identifier of the VPG to create a VPG settings identifier. If a vpgIdentifier is not provided, a new VPG settings object is created without any configured settings. This would be used for creating a new VPG from scratch.</maml:para>
|
||||||
</maml:Description>
|
</maml:Description>
|
||||||
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
|
<command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
|
||||||
<dev:type>
|
<dev:type>
|
||||||
<maml:name>String</maml:name>
|
<maml:name>String[]</maml:name>
|
||||||
<maml:uri />
|
<maml:uri />
|
||||||
</dev:type>
|
</dev:type>
|
||||||
<dev:defaultValue>None</dev:defaultValue>
|
<dev:defaultValue>None</dev:defaultValue>
|
||||||
|
|||||||
@@ -93,7 +93,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -61,7 +61,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -93,7 +93,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ Disconnects from the Zerto Server
|
|||||||
## PARAMETERS
|
## PARAMETERS
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -166,7 +166,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -89,7 +89,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -295,7 +295,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -338,7 +338,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ Retrieve information about a Zerto Virtual Replication license.
|
|||||||
## PARAMETERS
|
## PARAMETERS
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -162,7 +162,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -237,7 +237,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -175,7 +175,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -304,7 +304,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -72,7 +72,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -185,7 +185,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ Returns all virtual machines at the site not currently protected in a virtual pr
|
|||||||
## PARAMETERS
|
## PARAMETERS
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -271,7 +271,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -128,7 +128,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -496,7 +496,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
+22
-34
@@ -19,94 +19,94 @@ Get-ZertoVpgSetting [<CommonParameters>]
|
|||||||
|
|
||||||
### volumeIdentifier
|
### volumeIdentifier
|
||||||
```
|
```
|
||||||
Get-ZertoVpgSetting -vpgSettingsIdentifier <String> -vmIdentifier <String> -volumeIdentifier <String>
|
Get-ZertoVpgSetting -vpgSettingsIdentifier <String[]> -vmIdentifier <String> -volumeIdentifier <String>
|
||||||
[<CommonParameters>]
|
[<CommonParameters>]
|
||||||
```
|
```
|
||||||
|
|
||||||
### volumes
|
### volumes
|
||||||
```
|
```
|
||||||
Get-ZertoVpgSetting -vpgSettingsIdentifier <String> -vmIdentifier <String> [-volumes] [<CommonParameters>]
|
Get-ZertoVpgSetting -vpgSettingsIdentifier <String[]> -vmIdentifier <String> [-volumes] [<CommonParameters>]
|
||||||
```
|
```
|
||||||
|
|
||||||
### nicIdentifier
|
### nicIdentifier
|
||||||
```
|
```
|
||||||
Get-ZertoVpgSetting -vpgSettingsIdentifier <String> -vmIdentifier <String> -nicIdentifier <String>
|
Get-ZertoVpgSetting -vpgSettingsIdentifier <String[]> -vmIdentifier <String> -nicIdentifier <String>
|
||||||
[<CommonParameters>]
|
[<CommonParameters>]
|
||||||
```
|
```
|
||||||
|
|
||||||
### nics
|
### nics
|
||||||
```
|
```
|
||||||
Get-ZertoVpgSetting -vpgSettingsIdentifier <String> -vmIdentifier <String> [-nics] [<CommonParameters>]
|
Get-ZertoVpgSetting -vpgSettingsIdentifier <String[]> -vmIdentifier <String> [-nics] [<CommonParameters>]
|
||||||
```
|
```
|
||||||
|
|
||||||
### vmIdentifier
|
### vmIdentifier
|
||||||
```
|
```
|
||||||
Get-ZertoVpgSetting -vpgSettingsIdentifier <String> -vmIdentifier <String> [<CommonParameters>]
|
Get-ZertoVpgSetting -vpgSettingsIdentifier <String[]> -vmIdentifier <String> [<CommonParameters>]
|
||||||
```
|
```
|
||||||
|
|
||||||
### vms
|
### vms
|
||||||
```
|
```
|
||||||
Get-ZertoVpgSetting -vpgSettingsIdentifier <String> [-vms] [<CommonParameters>]
|
Get-ZertoVpgSetting -vpgSettingsIdentifier <String[]> [-vms] [<CommonParameters>]
|
||||||
```
|
```
|
||||||
|
|
||||||
### scripting
|
### scripting
|
||||||
```
|
```
|
||||||
Get-ZertoVpgSetting -vpgSettingsIdentifier <String> [-scripting] [<CommonParameters>]
|
Get-ZertoVpgSetting -vpgSettingsIdentifier <String[]> [-scripting] [<CommonParameters>]
|
||||||
```
|
```
|
||||||
|
|
||||||
### recovery
|
### recovery
|
||||||
```
|
```
|
||||||
Get-ZertoVpgSetting -vpgSettingsIdentifier <String> [-rcovery] [<CommonParameters>]
|
Get-ZertoVpgSetting -vpgSettingsIdentifier <String[]> [-rcovery] [<CommonParameters>]
|
||||||
```
|
```
|
||||||
|
|
||||||
### priority
|
### priority
|
||||||
```
|
```
|
||||||
Get-ZertoVpgSetting -vpgSettingsIdentifier <String> [-priority] [<CommonParameters>]
|
Get-ZertoVpgSetting -vpgSettingsIdentifier <String[]> [-priority] [<CommonParameters>]
|
||||||
```
|
```
|
||||||
|
|
||||||
### networks
|
### networks
|
||||||
```
|
```
|
||||||
Get-ZertoVpgSetting -vpgSettingsIdentifier <String> [-networks] [<CommonParameters>]
|
Get-ZertoVpgSetting -vpgSettingsIdentifier <String[]> [-networks] [<CommonParameters>]
|
||||||
```
|
```
|
||||||
|
|
||||||
### journal
|
### journal
|
||||||
```
|
```
|
||||||
Get-ZertoVpgSetting -vpgSettingsIdentifier <String> [-journal] [<CommonParameters>]
|
Get-ZertoVpgSetting -vpgSettingsIdentifier <String[]> [-journal] [<CommonParameters>]
|
||||||
```
|
```
|
||||||
|
|
||||||
### bootGroup
|
### bootGroup
|
||||||
```
|
```
|
||||||
Get-ZertoVpgSetting -vpgSettingsIdentifier <String> [-bootgroup] [<CommonParameters>]
|
Get-ZertoVpgSetting -vpgSettingsIdentifier <String[]> [-bootgroup] [<CommonParameters>]
|
||||||
```
|
```
|
||||||
|
|
||||||
### basic
|
### basic
|
||||||
```
|
```
|
||||||
Get-ZertoVpgSetting -vpgSettingsIdentifier <String> [-basic] [<CommonParameters>]
|
Get-ZertoVpgSetting -vpgSettingsIdentifier <String[]> [-basic] [<CommonParameters>]
|
||||||
```
|
```
|
||||||
|
|
||||||
### schedulerPeriod
|
### schedulerPeriod
|
||||||
```
|
```
|
||||||
Get-ZertoVpgSetting -vpgSettingsIdentifier <String> [-schedulerPeriod] [<CommonParameters>]
|
Get-ZertoVpgSetting -vpgSettingsIdentifier <String[]> [-schedulerPeriod] [<CommonParameters>]
|
||||||
```
|
```
|
||||||
|
|
||||||
### retentionPeriod
|
### retentionPeriod
|
||||||
```
|
```
|
||||||
Get-ZertoVpgSetting -vpgSettingsIdentifier <String> [-retentionPeriod] [<CommonParameters>]
|
Get-ZertoVpgSetting -vpgSettingsIdentifier <String[]> [-retentionPeriod] [<CommonParameters>]
|
||||||
```
|
```
|
||||||
|
|
||||||
### dayOfWeek
|
### dayOfWeek
|
||||||
```
|
```
|
||||||
Get-ZertoVpgSetting -vpgSettingsIdentifier <String> [-dayOfWeek] [<CommonParameters>]
|
Get-ZertoVpgSetting -vpgSettingsIdentifier <String[]> [-dayOfWeek] [<CommonParameters>]
|
||||||
```
|
```
|
||||||
|
|
||||||
### backup
|
### backup
|
||||||
```
|
```
|
||||||
Get-ZertoVpgSetting -vpgSettingsIdentifier <String> [-backup] [<CommonParameters>]
|
Get-ZertoVpgSetting -vpgSettingsIdentifier <String[]> [-backup] [<CommonParameters>]
|
||||||
```
|
```
|
||||||
|
|
||||||
### vpgSettingsIdentifier
|
### vpgSettingsIdentifier
|
||||||
```
|
```
|
||||||
Get-ZertoVpgSetting -vpgSettingsIdentifier <String> [<CommonParameters>]
|
Get-ZertoVpgSetting -vpgSettingsIdentifier <String[]> [<CommonParameters>]
|
||||||
```
|
```
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
@@ -412,31 +412,19 @@ Accept wildcard characters: False
|
|||||||
The identifier of the VPG settings object for which information is retrieved.
|
The identifier of the VPG settings object for which information is retrieved.
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
Type: String
|
Type: String[]
|
||||||
Parameter Sets: volumeIdentifier, volumes, nicIdentifier, nics, vmIdentifier, vms, scripting, recovery, priority, networks, journal, bootGroup
|
Parameter Sets: volumeIdentifier, volumes, nicIdentifier, nics, vmIdentifier, vms, scripting, recovery, priority, networks, journal, bootGroup, basic, schedulerPeriod, retentionPeriod, dayOfWeek, backup, vpgSettingsIdentifier
|
||||||
Aliases: vpgSettingsId, settingsId
|
Aliases: vpgSettingsId, settingsId
|
||||||
|
|
||||||
Required: True
|
Required: True
|
||||||
Position: Named
|
Position: Named
|
||||||
Default value: None
|
Default value: None
|
||||||
Accept pipeline input: True (ByValue)
|
Accept pipeline input: True (ByPropertyName, ByValue)
|
||||||
Accept wildcard characters: False
|
|
||||||
```
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
Type: String
|
|
||||||
Parameter Sets: basic, schedulerPeriod, retentionPeriod, dayOfWeek, backup, vpgSettingsIdentifier
|
|
||||||
Aliases: vpgSettingsId, settingsId
|
|
||||||
|
|
||||||
Required: True
|
|
||||||
Position: Named
|
|
||||||
Default value: None
|
|
||||||
Accept pipeline input: True (ByValue)
|
|
||||||
Accept wildcard characters: False
|
Accept wildcard characters: False
|
||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -241,7 +241,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -52,7 +52,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -215,7 +215,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -194,7 +194,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -68,7 +68,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -188,7 +188,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -108,7 +108,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -76,7 +76,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -523,7 +523,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -12,16 +12,16 @@ Creates and returns a VPG Settings Identifier either for an existing VPG or a ne
|
|||||||
|
|
||||||
## SYNTAX
|
## SYNTAX
|
||||||
|
|
||||||
### existingVpg
|
### newVpg (Default)
|
||||||
```
|
|
||||||
New-ZertoVpgSettingsIdentifier -vpgIdentifier <String> [-WhatIf] [-Confirm] [<CommonParameters>]
|
|
||||||
```
|
|
||||||
|
|
||||||
### newVpg
|
|
||||||
```
|
```
|
||||||
New-ZertoVpgSettingsIdentifier [-newVpg] [-WhatIf] [-Confirm] [<CommonParameters>]
|
New-ZertoVpgSettingsIdentifier [-newVpg] [-WhatIf] [-Confirm] [<CommonParameters>]
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### existingVpg
|
||||||
|
```
|
||||||
|
New-ZertoVpgSettingsIdentifier -vpgIdentifier <String[]> [-WhatIf] [-Confirm] [<CommonParameters>]
|
||||||
|
```
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
Creates and returns a VPG Settings Identifier either for an existing VPG or a new VPG.
|
Creates and returns a VPG Settings Identifier either for an existing VPG or a new VPG.
|
||||||
|
|
||||||
@@ -64,7 +64,7 @@ If a vpgIdentifier is not provided, a new VPG settings object is created without
|
|||||||
This would be used for creating a new VPG from scratch.
|
This would be used for creating a new VPG from scratch.
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
Type: String
|
Type: String[]
|
||||||
Parameter Sets: existingVpg
|
Parameter Sets: existingVpg
|
||||||
Aliases: vpgId
|
Aliases: vpgId
|
||||||
|
|
||||||
@@ -106,7 +106,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -150,7 +150,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -162,7 +162,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -77,7 +77,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -120,7 +120,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -77,7 +77,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -125,7 +125,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -109,7 +109,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -76,7 +76,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -109,7 +109,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### CommonParameters
|
### CommonParameters
|
||||||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
|
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
|
||||||
|
|
||||||
## INPUTS
|
## INPUTS
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user