Method: Morpheus::StorageProvidersInterface#list
- Defined in:
- lib/morpheus/api/storage_providers_interface.rb
#list(params = {}) ⇒ Object
13 14 15 16 17 18 |
# File 'lib/morpheus/api/storage_providers_interface.rb', line 13 def list(params={}) url = "#{@base_url}/api/storage/buckets" headers = { params: params, authorization: "Bearer #{@access_token}" } opts = {method: :get, url: url, headers: headers} execute(opts) end |