Skip to content

resolveVolumeGroupsConflict

Marks that the user has resolved that there are no conflicting volume groups on the host where this Exchange server exists Supported in v8.0+ Marks that the user has resolved that there are no conflicting volume groups on the host where this Exchange server exists.

Arguments

Argument Type Description
input (required) ResolveVolumeGroupsConflictInput! Input for V1ResolveVolumeGroupsConflict.

Returns

RequestSuccess!

Sample

mutation ResolveVolumeGroupsConflict($input: ResolveVolumeGroupsConflictInput!) {
  resolveVolumeGroupsConflict(input: $input) {
    success
  }
}
{
  "input": {
    "clusterUuid": "example-string",
    "id": "example-string"
  }
}
{
  "data": {
    "resolveVolumeGroupsConflict": {
      "success": true
    }
  }
}