Method: Fog::KeyManager::OpenStack::Real#get_secret_payload

Defined in:
lib/fog/key_manager/openstack/requests/get_secret_payload.rb

#get_secret_payload(uuid) ⇒ Object



5
6
7
8
9
10
11
12
13
14
# File 'lib/fog/key_manager/openstack/requests/get_secret_payload.rb', line 5

def get_secret_payload(uuid)
  request(
    :expects => [200],
    :method  => 'GET',
    :path    => "secrets/#{uuid}/payload",
    :headers => {
      'Accept' => '*/*'
    }
  )
end