Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions profiles/preview/preview/monitor/mgmt/insights/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,26 @@ const (
Warning EventLevel = original.Warning
)

type MetricAlertRuleCondition = original.MetricAlertRuleCondition

const (
MetricAlertRuleConditionEquals MetricAlertRuleCondition = original.MetricAlertRuleConditionEquals
MetricAlertRuleConditionGreaterThan MetricAlertRuleCondition = original.MetricAlertRuleConditionGreaterThan
MetricAlertRuleConditionGreaterThanOrEqual MetricAlertRuleCondition = original.MetricAlertRuleConditionGreaterThanOrEqual
MetricAlertRuleConditionLessThan MetricAlertRuleCondition = original.MetricAlertRuleConditionLessThan
MetricAlertRuleConditionLessThanOrEqual MetricAlertRuleCondition = original.MetricAlertRuleConditionLessThanOrEqual
MetricAlertRuleConditionNotEquals MetricAlertRuleCondition = original.MetricAlertRuleConditionNotEquals
)

type MetricAlertRuleTimeAggregation = original.MetricAlertRuleTimeAggregation

const (
MetricAlertRuleTimeAggregationAverage MetricAlertRuleTimeAggregation = original.MetricAlertRuleTimeAggregationAverage
MetricAlertRuleTimeAggregationMaximum MetricAlertRuleTimeAggregation = original.MetricAlertRuleTimeAggregationMaximum
MetricAlertRuleTimeAggregationMinimum MetricAlertRuleTimeAggregation = original.MetricAlertRuleTimeAggregationMinimum
MetricAlertRuleTimeAggregationTotal MetricAlertRuleTimeAggregation = original.MetricAlertRuleTimeAggregationTotal
)

type MetricStatisticType = original.MetricStatisticType

const (
Expand Down Expand Up @@ -524,6 +544,12 @@ func PossibleEnabledValues() []Enabled {
func PossibleEventLevelValues() []EventLevel {
return original.PossibleEventLevelValues()
}
func PossibleMetricAlertRuleConditionValues() []MetricAlertRuleCondition {
return original.PossibleMetricAlertRuleConditionValues()
}
func PossibleMetricAlertRuleTimeAggregationValues() []MetricAlertRuleTimeAggregation {
return original.PossibleMetricAlertRuleTimeAggregationValues()
}
func PossibleMetricStatisticTypeValues() []MetricStatisticType {
return original.PossibleMetricStatisticTypeValues()
}
Expand Down
50 changes: 46 additions & 4 deletions services/preview/monitor/mgmt/2018-03-01/insights/models.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

56 changes: 28 additions & 28 deletions services/web/mgmt/2016-09-01/web/apps.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading