Class: Azure::ARM::Network::Models::AzureReachabilityReportLatencyInfo
- Inherits:
-
Object
- Object
- Azure::ARM::Network::Models::AzureReachabilityReportLatencyInfo
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_network/models/azure_reachability_report_latency_info.rb
Overview
Details on latency for a time series.
Instance Attribute Summary collapse
-
#score ⇒ Integer
values indicating a faster connection.
-
#time_stamp ⇒ DateTime
The time stamp.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for AzureReachabilityReportLatencyInfo class as Ruby Hash.
Instance Attribute Details
#score ⇒ Integer
values indicating a faster connection.
21 22 23 |
# File 'lib/generated/azure_mgmt_network/models/azure_reachability_report_latency_info.rb', line 21 def score @score end |
#time_stamp ⇒ DateTime
Returns The time stamp.
17 18 19 |
# File 'lib/generated/azure_mgmt_network/models/azure_reachability_report_latency_info.rb', line 17 def time_stamp @time_stamp end |
Class Method Details
.mapper ⇒ Object
Mapper for AzureReachabilityReportLatencyInfo class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/generated/azure_mgmt_network/models/azure_reachability_report_latency_info.rb', line 28 def self.mapper() { required: false, serialized_name: 'AzureReachabilityReportLatencyInfo', type: { name: 'Composite', class_name: 'AzureReachabilityReportLatencyInfo', model_properties: { time_stamp: { required: false, serialized_name: 'timeStamp', type: { name: 'DateTime' } }, score: { required: false, serialized_name: 'score', constraints: { InclusiveMaximum: 100, InclusiveMinimum: 1 }, type: { name: 'Number' } } } } } end |