Module: Fog::Storage::InternetArchive::Utils
Instance Attribute Summary collapse
-
#region ⇒ Object
Returns the value of attribute region.
Instance Method Summary collapse
- #http_url(params, expires) ⇒ Object
- #https_url(params, expires) ⇒ Object
- #url(params, expires) ⇒ Object
Instance Attribute Details
#region ⇒ Object
Returns the value of attribute region.
70 71 72 |
# File 'lib/fog/internet_archive/storage.rb', line 70 def region @region end |
Instance Method Details
#http_url(params, expires) ⇒ Object
72 73 74 |
# File 'lib/fog/internet_archive/storage.rb', line 72 def http_url(params, expires) scheme_host_path_query(params.merge(:scheme => 'http', :port => 80), expires) end |
#https_url(params, expires) ⇒ Object
76 77 78 |
# File 'lib/fog/internet_archive/storage.rb', line 76 def https_url(params, expires) scheme_host_path_query(params.merge(:scheme => 'https', :port => 443), expires) end |
#url(params, expires) ⇒ Object
80 81 82 83 |
# File 'lib/fog/internet_archive/storage.rb', line 80 def url(params, expires) Fog::Logger.deprecation("Fog::Storage::InternetArchive => #url is deprecated, use #https_url instead [light_black](#{caller.first})[/]") https_url(params, expires) end |