Skip to content
Snippets Groups Projects
Unverified Commit 72968786 authored by Kan Tang's avatar Kan Tang Committed by GitHub
Browse files

Merge pull request #198 from ganeshshrivas/access_tier_info

added access tier information and creation time of blob in response
parents f966ead1 c59969b0
Branches
Tags
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