Condition constructor

Condition({
  1. MetricAbsence? conditionAbsent,
  2. LogMatch? conditionMatchedLog,
  3. MonitoringQueryLanguageCondition? conditionMonitoringQueryLanguage,
  4. PrometheusQueryLanguageCondition? conditionPrometheusQueryLanguage,
  5. MetricThreshold? conditionThreshold,
  6. String? displayName,
  7. String? name,
})

Implementation

Condition({
  this.conditionAbsent,
  this.conditionMatchedLog,
  this.conditionMonitoringQueryLanguage,
  this.conditionPrometheusQueryLanguage,
  this.conditionThreshold,
  this.displayName,
  this.name,
});