Skip to content
Snippets Groups Projects
Commit c59969b0 authored by ganeshshrivas's avatar ganeshshrivas
Browse files

added access tier information and creation time of blob in response

parent 20a68987
No related branches found
No related tags found
No related merge requests found
......@@ -199,6 +199,9 @@ module Azure::Storage
props = {}
props[:access_tier] = (xml > "AccessTier").text if (xml > "AccessTier").any?
props[:access_tier_change_time] = (xml > "AccessTierChangeTime").text if (xml > "AccessTierChangeTime").any?
props[:creation_Time] = (xml > "Creation-Time").text if (xml > "Creation-Time").any?
props[:last_modified] = (xml > "Last-Modified").text if (xml > "Last-Modified").any?
props[:etag] = xml.Etag.text if (xml > "Etag").any?
props[:lease_status] = xml.LeaseStatus.text if (xml > "LeaseStatus").any?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment