Merge branch 'master' into TestingBranch
This commit is contained in:
@@ -24,7 +24,7 @@ function Import-ZertoVpg {
|
||||
$importedSettings.VpgSettingsIdentifier = $vpgSettingsIdentifier
|
||||
$uri = "{0}/{1}" -f $baseUri, $vpgSettingsIdentifier
|
||||
Invoke-ZertoRestRequest -uri $uri -method "PUT" -body $($importedSettings | convertto-json -Depth 10)
|
||||
$vpgSettingsIdentifier | Save-ZertoVpgSettings
|
||||
$vpgSettingsIdentifier | Save-ZertoVpgSetting
|
||||
if ($settingsFile.Count -gt 1) {
|
||||
Start-Sleep 5
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
<# .ExternalHelp ./en-us/ZertoApiWrapper-help.xml #>
|
||||
function Save-ZertoVpgSettings {
|
||||
function Save-ZertoVpgSetting {
|
||||
[cmdletbinding(
|
||||
SupportsShouldProcess = $true
|
||||
)]
|
||||
@@ -3859,11 +3859,11 @@
|
||||
<command:verb>Get</command:verb>
|
||||
<command:noun>ZertoVirtualizationSite</command:noun>
|
||||
<maml:description>
|
||||
<maml:para>{{Fill in the Synopsis}}</maml:para>
|
||||
<maml:para>Returns information about the hypervisor site where the API is run and all the sites paired with this site. The information returned can be tailored to specific information about the resources managed at a specified site.</maml:para>
|
||||
</maml:description>
|
||||
</command:details>
|
||||
<maml:description>
|
||||
<maml:para>{{Fill in the Description}}</maml:para>
|
||||
<maml:para>Returns information about the hypervisor site where the API is run and all the sites paired with this site. The information returned can be tailored to specific information about the resources managed at a specified site.</maml:para>
|
||||
</maml:description>
|
||||
<command:syntax>
|
||||
<command:syntaxItem>
|
||||
@@ -4302,9 +4302,30 @@
|
||||
<command:examples>
|
||||
<command:example>
|
||||
<maml:title>-------------------------- Example 1 --------------------------</maml:title>
|
||||
<dev:code>PS C:\> {{ Add example code here }}</dev:code>
|
||||
<dev:code>PS C:\> Get-ZertoVirtualizationSite -siteIdentifier "MySiteIdentifier"</dev:code>
|
||||
<dev:remarks>
|
||||
<maml:para>{{ Add example description here }}</maml:para>
|
||||
<maml:para>Returns information about the site with identifier "MySiteIdentifier"</maml:para>
|
||||
</dev:remarks>
|
||||
</command:example>
|
||||
<command:example>
|
||||
<maml:title>-------------------------- Example 2 --------------------------</maml:title>
|
||||
<dev:code>PS C:\> Get-ZertoVirtualizationSite -siteIdentifier "MySiteIdentifier" -datastoreClusters</dev:code>
|
||||
<dev:remarks>
|
||||
<maml:para>Returns information about datastore clusters at site with site identifier "MySiteidentifier"</maml:para>
|
||||
</dev:remarks>
|
||||
</command:example>
|
||||
<command:example>
|
||||
<maml:title>-------------------------- Example 3 --------------------------</maml:title>
|
||||
<dev:code>PS C:\> Get-ZertoVirtualizationSite -siteIdentifier "MySiteIdentifier" -datastores</dev:code>
|
||||
<dev:remarks>
|
||||
<maml:para>Returns information about datastores at site with site identifier "MySiteidentifier"</maml:para>
|
||||
</dev:remarks>
|
||||
</command:example>
|
||||
<command:example>
|
||||
<maml:title>-------------------------- Example 4 --------------------------</maml:title>
|
||||
<dev:code>PS C:\> Get-ZertoVirtualizationSite -siteIdentifier "MySiteIdentifier" -devices</dev:code>
|
||||
<dev:remarks>
|
||||
<maml:para>Returns information about devices at site with site identifier "MySiteidentifier"</maml:para>
|
||||
</dev:remarks>
|
||||
</command:example>
|
||||
</command:examples>
|
||||
@@ -5977,35 +5998,35 @@
|
||||
<command:examples>
|
||||
<command:example>
|
||||
<maml:title>-------------------------- Example 1 --------------------------</maml:title>
|
||||
<dev:code>PS C:\> Get-ZertoVpgSettings -vpgSettingsIdentifier "MySettingsIdentifier"</dev:code>
|
||||
<dev:code>PS C:\> Get-ZertoVpgSetting -vpgSettingsIdentifier "MySettingsIdentifier"</dev:code>
|
||||
<dev:remarks>
|
||||
<maml:para>Returns all current settings for vpgSettingsIdentifier "MySettingsIdentifier"</maml:para>
|
||||
</dev:remarks>
|
||||
</command:example>
|
||||
<command:example>
|
||||
<maml:title>-------------------------- Example 2 --------------------------</maml:title>
|
||||
<dev:code>PS C:\> Get-ZertoVpgSettings -vpgSettingsIdentifier "MySettingsIdentifier" -vmIdentifier "MyVmId"</dev:code>
|
||||
<dev:code>PS C:\> Get-ZertoVpgSetting -vpgSettingsIdentifier "MySettingsIdentifier" -vmIdentifier "MyVmId"</dev:code>
|
||||
<dev:remarks>
|
||||
<maml:para>Returns all current vm level settings for the vmIdentifier "MyVmId" in vpgSettingsIdentifier "MySettingsIdentifier"</maml:para>
|
||||
</dev:remarks>
|
||||
</command:example>
|
||||
<command:example>
|
||||
<maml:title>-------------------------- Example 3 --------------------------</maml:title>
|
||||
<dev:code>PS C:\> Get-ZertoVpgSettings -vpgSettingsIdentifier "MySettingsIdentifier" -vmIdentifier "MyVmId" -volumes</dev:code>
|
||||
<dev:code>PS C:\> Get-ZertoVpgSetting -vpgSettingsIdentifier "MySettingsIdentifier" -vmIdentifier "MyVmId" -volumes</dev:code>
|
||||
<dev:remarks>
|
||||
<maml:para>Returns current vm level settings for volumes for vmId "MyVmId" in vpgSettingsIdentifier "MySettingsIdentifier"</maml:para>
|
||||
</dev:remarks>
|
||||
</command:example>
|
||||
<command:example>
|
||||
<maml:title>-------------------------- Example 4 --------------------------</maml:title>
|
||||
<dev:code>PS C:\> Get-ZertoVpgSettings -vpgSettingsIdentifier "MySettingsIdentifier" -nics</dev:code>
|
||||
<dev:code>PS C:\> Get-ZertoVpgSetting -vpgSettingsIdentifier "MySettingsIdentifier" -nics</dev:code>
|
||||
<dev:remarks>
|
||||
<maml:para>Returns current vm level settings for nics for vmId "MyVmId" in vpgSettingsIdentifier "MySettingsIdentifier"</maml:para>
|
||||
</dev:remarks>
|
||||
</command:example>
|
||||
<command:example>
|
||||
<maml:title>-------------------------- Example 5 --------------------------</maml:title>
|
||||
<dev:code>PS C:\> Get-ZertoVpgSettings -vpgSettingsIdentifier "MySettingsIdentifier" -basic</dev:code>
|
||||
<dev:code>PS C:\> Get-ZertoVpgSetting -vpgSettingsIdentifier "MySettingsIdentifier" -basic</dev:code>
|
||||
<dev:remarks>
|
||||
<maml:para>Returns current basic settings for vpgSettingsIdentifier "MySettingsIdentifier"</maml:para>
|
||||
</dev:remarks>
|
||||
@@ -10656,9 +10677,9 @@
|
||||
</command:command>
|
||||
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">
|
||||
<command:details>
|
||||
<command:name>Save-ZertoVpgSettings</command:name>
|
||||
<command:name>Save-ZertoVpgSetting</command:name>
|
||||
<command:verb>Save</command:verb>
|
||||
<command:noun>ZertoVpgSettings</command:noun>
|
||||
<command:noun>ZertoVpgSetting</command:noun>
|
||||
<maml:description>
|
||||
<maml:para>Commits the updated Vpg Settings with the configured Vpg Settings Identifier</maml:para>
|
||||
</maml:description>
|
||||
@@ -10668,8 +10689,8 @@
|
||||
</maml:description>
|
||||
<command:syntax>
|
||||
<command:syntaxItem>
|
||||
<maml:name>Save-ZertoVpgSettings</maml:name>
|
||||
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName, ByValue)" position="0" aliases="vpgSettingsId">
|
||||
<maml:name>Save-ZertoVpgSetting</maml:name>
|
||||
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName, ByValue)" position="1" aliases="vpgSettingsId">
|
||||
<maml:name>vpgSettingsIdentifier</maml:name>
|
||||
<maml:Description>
|
||||
<maml:para>VpgSettings Identifier to save</maml:para>
|
||||
@@ -10706,7 +10727,7 @@
|
||||
</command:syntaxItem>
|
||||
</command:syntax>
|
||||
<command:parameters>
|
||||
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName, ByValue)" position="0" aliases="vpgSettingsId">
|
||||
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName, ByValue)" position="1" aliases="vpgSettingsId">
|
||||
<maml:name>vpgSettingsIdentifier</maml:name>
|
||||
<maml:Description>
|
||||
<maml:para>VpgSettings Identifier to save</maml:para>
|
||||
@@ -10771,7 +10792,7 @@
|
||||
<command:examples>
|
||||
<command:example>
|
||||
<maml:title>-------------------------- Example 1 --------------------------</maml:title>
|
||||
<dev:code>PS C:> Save-ZertoVpgSettings -vpgSettingsIdentifier "MyVpgSettingsIdentifier"</dev:code>
|
||||
<dev:code>PS C:> Save-ZertoVpgSetting -vpgSettingsIdentifier "MyVpgSettingsIdentifier"</dev:code>
|
||||
<dev:remarks>
|
||||
<maml:para>Commits vpg settings with vpg settings identifier "MyVpgSettingsIdentifier"</maml:para>
|
||||
</dev:remarks>
|
||||
@@ -10780,7 +10801,7 @@
|
||||
<command:relatedLinks>
|
||||
<maml:navigationLink>
|
||||
<maml:linkText>Online Version:</maml:linkText>
|
||||
<maml:uri>https://github.com/wcarroll/ZertoApiWrapper/blob/master/docs/Save-ZertoVpgSettings.md</maml:uri>
|
||||
<maml:uri>https://github.com/wcarroll/ZertoApiWrapper/blob/master/docs/Save-ZertoVpgSetting.md</maml:uri>
|
||||
</maml:navigationLink>
|
||||
<maml:navigationLink>
|
||||
<maml:linkText>Zerto REST API VPG Settings End Point Documentation</maml:linkText>
|
||||
|
||||
Reference in New Issue
Block a user