Skip to content

bulkUpdateMssqlDbs

Update multiple Microsoft SQL databases with the specified properties.

Arguments

Argument Type Description
input (required) BulkUpdateMssqlDbsInput! Input for V1BulkUpdateMssqlDbV1.

Returns

BulkUpdateMssqlDbsReply!

Sample

mutation BulkUpdateMssqlDbs($input: BulkUpdateMssqlDbsInput!) {
  bulkUpdateMssqlDbs(input: $input)
}
{
  "input": {
    "clusterUuid": "example-string",
    "dbsUpdateProperties": [
      {
        "databaseId": "example-string",
        "updateProperties": {}
      }
    ]
  }
}
{
  "data": {
    "bulkUpdateMssqlDbs": {
      "items": [
        {
          "archiveStorage": 0,
          "isLocal": true,
          "isStandby": true,
          "latestRecoveryPointV50": "example-string",
          "latestRecoveryPointV51": "example-string",
          "latestRecoveryPointV52": "example-string"
        }
      ]
    }
  }
}