class Fog::OpenStack::Identity::V2::Ec2Credentials

Public Instance Methods

all(options = {}) click to toggle source
# File lib/fog/openstack/identity/v2/models/ec2_credentials.rb, line 13
def all(options = {})
  user_id = user ? user.id : nil

  options[:user_id] = user_id
  ec2_credentials = service.list_ec2_credentials(options)

  load_response(ec2_credentials, 'credentials')
end
create(attributes = {}) click to toggle source
Calls superclass method
# File lib/fog/openstack/identity/v2/models/ec2_credentials.rb, line 22
def create(attributes = {})
  if user
    attributes[:user_id] ||= user.id
    attributes[:tenant_id] ||= user.tenant_id
  end

  super attributes
end
destroy(access_key) click to toggle source
# File lib/fog/openstack/identity/v2/models/ec2_credentials.rb, line 31
def destroy(access_key)
  ec2_credential = find_by_access_key(access_key)
  ec2_credential.destroy
end
find_by_access_key(access_key) click to toggle source
# File lib/fog/openstack/identity/v2/models/ec2_credentials.rb, line 36
def find_by_access_key(access_key)
  user_id = user ? user.id : nil

  ec2_credential =
    find { |ec2_cred| ec2_cred.access == access_key }

  unless ec2_credential
    response = service.get_ec2_credential(user_id, access_key)
    body = response.body['credential']
    body = body.merge 'service' => service

    ec2_credential = Fog::OpenStack::Identity::V2::EC2Credential.new(body)
  end

  ec2_credential
end