Method: Fog::KeyManager::OpenStack::Real#update_secret_acl

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

#update_secret_acl(uuid, options) ⇒ Object



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

def update_secret_acl(uuid, options)
  request(
    :body    => Fog::JSON.encode(options),
    :expects => [200],
    :method  => 'PATCH',
    :path    => "secrets/#{uuid}/acl"
  )
end