Skip to content

updateDatabaseLogReportingPropertiesForCluster

Update the database log backup report properties Supported in v5.3+ Update the properties for the database (SQL and Oracle) log backup delay email notification creation. The properties are logDelayThresholdInMin and logDelayNotificationFrequencyInMin.

Arguments

Argument Type Description
input (required) UpdateDatabaseLogReportingPropertiesForClusterInput! Input for V1UpdateReportProperties.

Returns

DbLogReportProperties!

Sample

mutation UpdateDatabaseLogReportingPropertiesForCluster($input: UpdateDatabaseLogReportingPropertiesForClusterInput!) {
  updateDatabaseLogReportingPropertiesForCluster(input: $input) {
    enableDelayNotification
    logDelayNotificationFrequencyInMin
    logDelayThresholdInMin
  }
}
{
  "input": {
    "clusterUuid": "example-string",
    "properties": {}
  }
}
{
  "data": {
    "updateDatabaseLogReportingPropertiesForCluster": {
      "enableDelayNotification": true,
      "logDelayNotificationFrequencyInMin": 0,
      "logDelayThresholdInMin": 0
    }
  }
}