1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
|
package metrics
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
//
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
// AggregationType enumerates the values for aggregation type.
type AggregationType string
const (
// Average ...
Average AggregationType = "Average"
// Count ...
Count AggregationType = "Count"
// Maximum ...
Maximum AggregationType = "Maximum"
// Minimum ...
Minimum AggregationType = "Minimum"
// None ...
None AggregationType = "None"
// Total ...
Total AggregationType = "Total"
)
// PossibleAggregationTypeValues returns an array of possible values for the AggregationType const type.
func PossibleAggregationTypeValues() []AggregationType {
return []AggregationType{Average, Count, Maximum, Minimum, None, Total}
}
// AggregationTypeEnum enumerates the values for aggregation type enum.
type AggregationTypeEnum string
const (
// AggregationTypeEnumAverage ...
AggregationTypeEnumAverage AggregationTypeEnum = "Average"
// AggregationTypeEnumCount ...
AggregationTypeEnumCount AggregationTypeEnum = "Count"
// AggregationTypeEnumMaximum ...
AggregationTypeEnumMaximum AggregationTypeEnum = "Maximum"
// AggregationTypeEnumMinimum ...
AggregationTypeEnumMinimum AggregationTypeEnum = "Minimum"
// AggregationTypeEnumTotal ...
AggregationTypeEnumTotal AggregationTypeEnum = "Total"
)
// PossibleAggregationTypeEnumValues returns an array of possible values for the AggregationTypeEnum const type.
func PossibleAggregationTypeEnumValues() []AggregationTypeEnum {
return []AggregationTypeEnum{AggregationTypeEnumAverage, AggregationTypeEnumCount, AggregationTypeEnumMaximum, AggregationTypeEnumMinimum, AggregationTypeEnumTotal}
}
// BaselineSensitivity enumerates the values for baseline sensitivity.
type BaselineSensitivity string
const (
// High ...
High BaselineSensitivity = "High"
// Low ...
Low BaselineSensitivity = "Low"
// Medium ...
Medium BaselineSensitivity = "Medium"
)
// PossibleBaselineSensitivityValues returns an array of possible values for the BaselineSensitivity const type.
func PossibleBaselineSensitivityValues() []BaselineSensitivity {
return []BaselineSensitivity{High, Low, Medium}
}
// CriterionType enumerates the values for criterion type.
type CriterionType string
const (
// CriterionTypeDynamicThresholdCriterion ...
CriterionTypeDynamicThresholdCriterion CriterionType = "DynamicThresholdCriterion"
// CriterionTypeMultiMetricCriteria ...
CriterionTypeMultiMetricCriteria CriterionType = "MultiMetricCriteria"
// CriterionTypeStaticThresholdCriterion ...
CriterionTypeStaticThresholdCriterion CriterionType = "StaticThresholdCriterion"
)
// PossibleCriterionTypeValues returns an array of possible values for the CriterionType const type.
func PossibleCriterionTypeValues() []CriterionType {
return []CriterionType{CriterionTypeDynamicThresholdCriterion, CriterionTypeMultiMetricCriteria, CriterionTypeStaticThresholdCriterion}
}
// DynamicThresholdOperator enumerates the values for dynamic threshold operator.
type DynamicThresholdOperator string
const (
// GreaterOrLessThan ...
GreaterOrLessThan DynamicThresholdOperator = "GreaterOrLessThan"
// GreaterThan ...
GreaterThan DynamicThresholdOperator = "GreaterThan"
// LessThan ...
LessThan DynamicThresholdOperator = "LessThan"
)
// PossibleDynamicThresholdOperatorValues returns an array of possible values for the DynamicThresholdOperator const type.
func PossibleDynamicThresholdOperatorValues() []DynamicThresholdOperator {
return []DynamicThresholdOperator{GreaterOrLessThan, GreaterThan, LessThan}
}
// DynamicThresholdSensitivity enumerates the values for dynamic threshold sensitivity.
type DynamicThresholdSensitivity string
const (
// DynamicThresholdSensitivityHigh ...
DynamicThresholdSensitivityHigh DynamicThresholdSensitivity = "High"
// DynamicThresholdSensitivityLow ...
DynamicThresholdSensitivityLow DynamicThresholdSensitivity = "Low"
// DynamicThresholdSensitivityMedium ...
DynamicThresholdSensitivityMedium DynamicThresholdSensitivity = "Medium"
)
// PossibleDynamicThresholdSensitivityValues returns an array of possible values for the DynamicThresholdSensitivity const type.
func PossibleDynamicThresholdSensitivityValues() []DynamicThresholdSensitivity {
return []DynamicThresholdSensitivity{DynamicThresholdSensitivityHigh, DynamicThresholdSensitivityLow, DynamicThresholdSensitivityMedium}
}
// MetricAggregationType enumerates the values for metric aggregation type.
type MetricAggregationType string
const (
// MetricAggregationTypeAverage ...
MetricAggregationTypeAverage MetricAggregationType = "Average"
// MetricAggregationTypeCount ...
MetricAggregationTypeCount MetricAggregationType = "Count"
// MetricAggregationTypeMaximum ...
MetricAggregationTypeMaximum MetricAggregationType = "Maximum"
// MetricAggregationTypeMinimum ...
MetricAggregationTypeMinimum MetricAggregationType = "Minimum"
// MetricAggregationTypeNone ...
MetricAggregationTypeNone MetricAggregationType = "None"
// MetricAggregationTypeTotal ...
MetricAggregationTypeTotal MetricAggregationType = "Total"
)
// PossibleMetricAggregationTypeValues returns an array of possible values for the MetricAggregationType const type.
func PossibleMetricAggregationTypeValues() []MetricAggregationType {
return []MetricAggregationType{MetricAggregationTypeAverage, MetricAggregationTypeCount, MetricAggregationTypeMaximum, MetricAggregationTypeMinimum, MetricAggregationTypeNone, MetricAggregationTypeTotal}
}
// MetricClass enumerates the values for metric class.
type MetricClass string
const (
// MetricClassAvailability ...
MetricClassAvailability MetricClass = "Availability"
// MetricClassErrors ...
MetricClassErrors MetricClass = "Errors"
// MetricClassLatency ...
MetricClassLatency MetricClass = "Latency"
// MetricClassSaturation ...
MetricClassSaturation MetricClass = "Saturation"
// MetricClassTransactions ...
MetricClassTransactions MetricClass = "Transactions"
)
// PossibleMetricClassValues returns an array of possible values for the MetricClass const type.
func PossibleMetricClassValues() []MetricClass {
return []MetricClass{MetricClassAvailability, MetricClassErrors, MetricClassLatency, MetricClassSaturation, MetricClassTransactions}
}
// MetricResultType enumerates the values for metric result type.
type MetricResultType string
const (
// Data ...
Data MetricResultType = "Data"
// Metadata ...
Metadata MetricResultType = "Metadata"
)
// PossibleMetricResultTypeValues returns an array of possible values for the MetricResultType const type.
func PossibleMetricResultTypeValues() []MetricResultType {
return []MetricResultType{Data, Metadata}
}
// MetricUnit enumerates the values for metric unit.
type MetricUnit string
const (
// MetricUnitBitsPerSecond ...
MetricUnitBitsPerSecond MetricUnit = "BitsPerSecond"
// MetricUnitBytes ...
MetricUnitBytes MetricUnit = "Bytes"
// MetricUnitByteSeconds ...
MetricUnitByteSeconds MetricUnit = "ByteSeconds"
// MetricUnitBytesPerSecond ...
MetricUnitBytesPerSecond MetricUnit = "BytesPerSecond"
// MetricUnitCores ...
MetricUnitCores MetricUnit = "Cores"
// MetricUnitCount ...
MetricUnitCount MetricUnit = "Count"
// MetricUnitCountPerSecond ...
MetricUnitCountPerSecond MetricUnit = "CountPerSecond"
// MetricUnitMilliCores ...
MetricUnitMilliCores MetricUnit = "MilliCores"
// MetricUnitMilliSeconds ...
MetricUnitMilliSeconds MetricUnit = "MilliSeconds"
// MetricUnitNanoCores ...
MetricUnitNanoCores MetricUnit = "NanoCores"
// MetricUnitPercent ...
MetricUnitPercent MetricUnit = "Percent"
// MetricUnitSeconds ...
MetricUnitSeconds MetricUnit = "Seconds"
// MetricUnitUnspecified ...
MetricUnitUnspecified MetricUnit = "Unspecified"
)
// PossibleMetricUnitValues returns an array of possible values for the MetricUnit const type.
func PossibleMetricUnitValues() []MetricUnit {
return []MetricUnit{MetricUnitBitsPerSecond, MetricUnitBytes, MetricUnitByteSeconds, MetricUnitBytesPerSecond, MetricUnitCores, MetricUnitCount, MetricUnitCountPerSecond, MetricUnitMilliCores, MetricUnitMilliSeconds, MetricUnitNanoCores, MetricUnitPercent, MetricUnitSeconds, MetricUnitUnspecified}
}
// NamespaceClassification enumerates the values for namespace classification.
type NamespaceClassification string
const (
// Custom ...
Custom NamespaceClassification = "Custom"
// Platform ...
Platform NamespaceClassification = "Platform"
// Qos ...
Qos NamespaceClassification = "Qos"
)
// PossibleNamespaceClassificationValues returns an array of possible values for the NamespaceClassification const type.
func PossibleNamespaceClassificationValues() []NamespaceClassification {
return []NamespaceClassification{Custom, Platform, Qos}
}
// OdataType enumerates the values for odata type.
type OdataType string
const (
// OdataTypeMetricAlertCriteria ...
OdataTypeMetricAlertCriteria OdataType = "MetricAlertCriteria"
// OdataTypeMicrosoftAzureMonitorMultipleResourceMultipleMetricCriteria ...
OdataTypeMicrosoftAzureMonitorMultipleResourceMultipleMetricCriteria OdataType = "Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria"
// OdataTypeMicrosoftAzureMonitorSingleResourceMultipleMetricCriteria ...
OdataTypeMicrosoftAzureMonitorSingleResourceMultipleMetricCriteria OdataType = "Microsoft.Azure.Monitor.SingleResourceMultipleMetricCriteria"
// OdataTypeMicrosoftAzureMonitorWebtestLocationAvailabilityCriteria ...
OdataTypeMicrosoftAzureMonitorWebtestLocationAvailabilityCriteria OdataType = "Microsoft.Azure.Monitor.WebtestLocationAvailabilityCriteria"
)
// PossibleOdataTypeValues returns an array of possible values for the OdataType const type.
func PossibleOdataTypeValues() []OdataType {
return []OdataType{OdataTypeMetricAlertCriteria, OdataTypeMicrosoftAzureMonitorMultipleResourceMultipleMetricCriteria, OdataTypeMicrosoftAzureMonitorSingleResourceMultipleMetricCriteria, OdataTypeMicrosoftAzureMonitorWebtestLocationAvailabilityCriteria}
}
// Operator enumerates the values for operator.
type Operator string
const (
// OperatorEquals ...
OperatorEquals Operator = "Equals"
// OperatorGreaterThan ...
OperatorGreaterThan Operator = "GreaterThan"
// OperatorGreaterThanOrEqual ...
OperatorGreaterThanOrEqual Operator = "GreaterThanOrEqual"
// OperatorLessThan ...
OperatorLessThan Operator = "LessThan"
// OperatorLessThanOrEqual ...
OperatorLessThanOrEqual Operator = "LessThanOrEqual"
)
// PossibleOperatorValues returns an array of possible values for the Operator const type.
func PossibleOperatorValues() []Operator {
return []Operator{OperatorEquals, OperatorGreaterThan, OperatorGreaterThanOrEqual, OperatorLessThan, OperatorLessThanOrEqual}
}
// ResultType enumerates the values for result type.
type ResultType string
const (
// ResultTypeData ...
ResultTypeData ResultType = "Data"
// ResultTypeMetadata ...
ResultTypeMetadata ResultType = "Metadata"
)
// PossibleResultTypeValues returns an array of possible values for the ResultType const type.
func PossibleResultTypeValues() []ResultType {
return []ResultType{ResultTypeData, ResultTypeMetadata}
}
// Unit enumerates the values for unit.
type Unit string
const (
// UnitBitsPerSecond ...
UnitBitsPerSecond Unit = "BitsPerSecond"
// UnitBytes ...
UnitBytes Unit = "Bytes"
// UnitByteSeconds ...
UnitByteSeconds Unit = "ByteSeconds"
// UnitBytesPerSecond ...
UnitBytesPerSecond Unit = "BytesPerSecond"
// UnitCores ...
UnitCores Unit = "Cores"
// UnitCount ...
UnitCount Unit = "Count"
// UnitCountPerSecond ...
UnitCountPerSecond Unit = "CountPerSecond"
// UnitMilliCores ...
UnitMilliCores Unit = "MilliCores"
// UnitMilliSeconds ...
UnitMilliSeconds Unit = "MilliSeconds"
// UnitNanoCores ...
UnitNanoCores Unit = "NanoCores"
// UnitPercent ...
UnitPercent Unit = "Percent"
// UnitSeconds ...
UnitSeconds Unit = "Seconds"
// UnitUnspecified ...
UnitUnspecified Unit = "Unspecified"
)
// PossibleUnitValues returns an array of possible values for the Unit const type.
func PossibleUnitValues() []Unit {
return []Unit{UnitBitsPerSecond, UnitBytes, UnitByteSeconds, UnitBytesPerSecond, UnitCores, UnitCount, UnitCountPerSecond, UnitMilliCores, UnitMilliSeconds, UnitNanoCores, UnitPercent, UnitSeconds, UnitUnspecified}
}
|