Skip to content

addVmAppConsistentSpecs

Add Vm App consistent specs info

Arguments

Argument Type Description
input (required) AddVmAppConsistentSpecsInput! Input required to add Azure native virtual machine application consistency specifications.

Returns

AddVmAppConsistentSpecsReply!

Sample

mutation AddVmAppConsistentSpecs($input: AddVmAppConsistentSpecsInput!) {
  addVmAppConsistentSpecs(input: $input) {
    failedSnappableIds
    successSnappableIds
  }
}
{
  "input": {
    "cancelBackupIfPreScriptFails": true,
    "objectType": "AWS_EC2_INSTANCE",
    "snappableIds": [
      "00000000-0000-0000-0000-000000000000"
    ]
  }
}
{
  "data": {
    "addVmAppConsistentSpecs": {
      "failedSnappableIds": [
        "example-string"
      ],
      "successSnappableIds": [
        "example-string"
      ]
    }
  }
}