We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f966ead + c59969b commit 7296878Copy full SHA for 7296878
blob/lib/azure/storage/blob/serialization.rb
@@ -199,6 +199,9 @@ def self.blob_properties_from_xml(xml)
199
200
props = {}
201
202
+ props[:access_tier] = (xml > "AccessTier").text if (xml > "AccessTier").any?
203
+ props[:access_tier_change_time] = (xml > "AccessTierChangeTime").text if (xml > "AccessTierChangeTime").any?
204
+ props[:creation_Time] = (xml > "Creation-Time").text if (xml > "Creation-Time").any?
205
props[:last_modified] = (xml > "Last-Modified").text if (xml > "Last-Modified").any?
206
props[:etag] = xml.Etag.text if (xml > "Etag").any?
207
props[:lease_status] = xml.LeaseStatus.text if (xml > "LeaseStatus").any?
0 commit comments