• This topic has 1 reply, 2 voices, and was last updated December 2, 2016 by Christopher L.

VpgSettings with identifier does not exist

  • Infrastructure T

    I’m able to retrieve vpgs and vms but when I attempt a REST request to retrieve vpgsettings using: https://zvm_ip:port/v1/vpgSettings/{vpgSettingsIdentifier}
    I get the response:
    “Message”:”VpgSettings with identifier <vpgid> does not exist”

    Tagged: 

    I think you have to copy the VPG to a VPG settings before you can retrieve it (kinda the equivalent of clicking the Edit VPG button)

    $baseURL = "https://" + $ZertoServer + ":"+$ZertoPort+"/v1/"
    $TypeJSON = "application/json"
    $FullURL = $baseURL + "vpgSettings"
    $VpgHash = @{}
    $VpgHash.Add("VpgIdentifier", $ZertoVpgIdentifier )
    $VpgHashJson = $VpgHash | ConvertTo-Json
    $Result = Invoke-RestMethod -Uri $FullURL -TimeoutSec 100 `
    -Headers $ZertoToken -ContentType $TypeJSON -Body $VpgHashJson -Method Post

    My ZertoModule does it via:

    Set-Item ENV:ZertoServer "il1zerto.test.com"
    Set-Item ENV:ZertoPort "9669"
    #This is a hash, not json convertable
    #Set-Item ENV:ZertoToken (Get-ZertoAuthToken -ZertoUser nuveen\ep_lewish)
    Set-ZertoAuthToken -ZertoUser test\Account
    Convert-ZertoVPGToVPGSetting (Get-ZertoVPGID -VPGName 'fred')

    Chris@ChristopherLewis.com
    Tagged: 
You must be logged in to create new topics. Click here to login