|
VMware vSphere Automation SDK for .NET 6.5.0
|
Monitoring.FunctionType enumerated type Defines aggregation function
More...
Public Types | |
| enum | Values { _UNKNOWN, COUNT, MAX, AVG, MIN } |
| C# enum whose values can be used in switch statements. More... | |
Public Member Functions | |
| bool | IsUnknown () |
| Values | GetEnumValue () |
Static Public Member Functions | |
| static FunctionType[] | GetValues () |
| static FunctionType | ValueOf (string name) |
Static Public Attributes | |
| static readonly FunctionType | COUNT = new FunctionType("COUNT", Values.COUNT) |
| Aggregation takes count per period (sum) | |
| static readonly FunctionType | MAX = new FunctionType("MAX", Values.MAX) |
| Aggregation takes maximums per period. | |
| static readonly FunctionType | AVG = new FunctionType("AVG", Values.AVG) |
| Aggregation takes average per period. | |
| static readonly FunctionType | MIN = new FunctionType("MIN", Values.MIN) |
| Aggregation takes minimums per period. | |
Monitoring.FunctionType enumerated type Defines aggregation function
C# enum whose values can be used in switch statements.
Ordinals have no semantic meaning (your code should not rely on them).
| Values vmware::appliance::MonitoringTypes::FunctionType::GetEnumValue | ( | ) | [inline] |
| static FunctionType [] vmware::appliance::MonitoringTypes::FunctionType::GetValues | ( | ) | [inline, static] |
| bool vmware::appliance::MonitoringTypes::FunctionType::IsUnknown | ( | ) | [inline] |
| static FunctionType vmware::appliance::MonitoringTypes::FunctionType::ValueOf | ( | string | name | ) | [inline, static] |
readonly FunctionType vmware::appliance::MonitoringTypes::FunctionType::AVG = new FunctionType("AVG", Values.AVG) [static] |
Aggregation takes average per period.
readonly FunctionType vmware::appliance::MonitoringTypes::FunctionType::COUNT = new FunctionType("COUNT", Values.COUNT) [static] |
Aggregation takes count per period (sum)
readonly FunctionType vmware::appliance::MonitoringTypes::FunctionType::MAX = new FunctionType("MAX", Values.MAX) [static] |
Aggregation takes maximums per period.
readonly FunctionType vmware::appliance::MonitoringTypes::FunctionType::MIN = new FunctionType("MIN", Values.MIN) [static] |
Aggregation takes minimums per period.