Skip to content

updateBackupThrottleSetting

Update backup throttle setting.

Arguments

Argument Type Description
input (required) UpdateBackupThrottleSettingInput! List of backup throttle settings.

Returns

UpdateBackupThrottleSettingReply!

Sample

mutation UpdateBackupThrottleSetting($input: UpdateBackupThrottleSettingInput!) {
  updateBackupThrottleSetting(input: $input)
}
{
  "input": {
    "requests": [
      {}
    ]
  }
}
{
  "data": {
    "updateBackupThrottleSetting": {
      "backupThrottleSettings": [
        {
          "enableThrottling": true
        }
      ]
    }
  }
}