Class: Azure::ARM::Network::Models::ExpressRouteCircuitStats
- Inherits:
-
Object
- Object
- Azure::ARM::Network::Models::ExpressRouteCircuitStats
- Includes:
- MsRestAzure
- Defined in:
- lib/azure_mgmt_network/models/express_route_circuit_stats.rb
Overview
Contains Stats associated with the peering
Instance Attribute Summary collapse
-
#bytes_in ⇒ Integer
Gets BytesIn of the peering.
-
#bytes_out ⇒ Integer
Gets BytesOut of the peering.
Class Method Summary collapse
-
.deserialize_object(object) ⇒ ExpressRouteCircuitStats
Deserializes given Ruby Hash into Model object.
-
.serialize_object(object) ⇒ Hash
Serializes given Model object into Ruby Hash.
Instance Method Summary collapse
-
#validate ⇒ Object
Validate the object.
Instance Attribute Details
#bytes_in ⇒ Integer
Returns Gets BytesIn of the peering.
16 17 18 |
# File 'lib/azure_mgmt_network/models/express_route_circuit_stats.rb', line 16 def bytes_in @bytes_in end |
#bytes_out ⇒ Integer
Returns Gets BytesOut of the peering.
19 20 21 |
# File 'lib/azure_mgmt_network/models/express_route_circuit_stats.rb', line 19 def bytes_out @bytes_out end |
Class Method Details
.deserialize_object(object) ⇒ ExpressRouteCircuitStats
Deserializes given Ruby Hash into Model object.
51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
# File 'lib/azure_mgmt_network/models/express_route_circuit_stats.rb', line 51 def self.deserialize_object(object) return if object.nil? output_object = ExpressRouteCircuitStats.new deserialized_property = object['bytesIn'] deserialized_property = Integer(deserialized_property) unless deserialized_property.to_s.empty? output_object.bytes_in = deserialized_property deserialized_property = object['bytesOut'] deserialized_property = Integer(deserialized_property) unless deserialized_property.to_s.empty? output_object.bytes_out = deserialized_property output_object end |
.serialize_object(object) ⇒ Hash
Serializes given Model object into Ruby Hash.
33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/azure_mgmt_network/models/express_route_circuit_stats.rb', line 33 def self.serialize_object(object) object.validate output_object = {} serialized_property = object.bytes_in output_object['bytesIn'] = serialized_property unless serialized_property.nil? serialized_property = object.bytes_out output_object['bytesOut'] = serialized_property unless serialized_property.nil? output_object end |
Instance Method Details
#validate ⇒ Object
Validate the object. Throws ValidationError if validation fails.
24 25 26 |
# File 'lib/azure_mgmt_network/models/express_route_circuit_stats.rb', line 24 def validate # Nothing to validate end |