Method: Azure::Storage::Common::Service::Serialization::ClassMethods#service_stats_from_xml

Defined in:
lib/azure/storage/common/service/serialization.rb

#service_stats_from_xml(xml) ⇒ Object


303
304
305
306
307
308
309
310
# File 'lib/azure/storage/common/service/serialization.rb', line 303

def service_stats_from_xml(xml)
  xml = slopify(xml)
  expect_node("StorageServiceStats", xml)

  StorageServiceStats.new do |stats|
    stats.geo_replication = geo_replication_from_xml(xml.GeoReplication)
  end
end