Skip to content

databaseLogReportingPropertiesForCluster

Get the database log backup report properties Supported in v5.3+ Get 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) QueryReportPropertiesInput! Input for V1QueryReportProperties.

Returns

DbLogReportProperties!

Sample

query DatabaseLogReportingPropertiesForCluster($input: QueryReportPropertiesInput!) {
  databaseLogReportingPropertiesForCluster(input: $input) {
    enableDelayNotification
    logDelayNotificationFrequencyInMin
    logDelayThresholdInMin
  }
}
{
  "input": {
    "clusterUuid": "example-string"
  }
}
{
  "data": {
    "databaseLogReportingPropertiesForCluster": {
      "enableDelayNotification": true,
      "logDelayNotificationFrequencyInMin": 0,
      "logDelayThresholdInMin": 0
    }
  }
}