Class: Fog::AWS::IAM::AccessKey

Inherits:
Model
  • Object
show all
Defined in:
lib/fog/aws/models/iam/access_key.rb

Instance Attribute Summary

Attributes inherited from Model

#collection, #service

Instance Method Summary collapse

Methods inherited from Model

#initialize, #inspect, #reload, #symbolize_keys, #to_json, #wait_for

Methods included from Fog::Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Core::DeprecatedConnectionAccessors

#connection, #connection=, #prepare_service_value

Methods included from Fog::Attributes::InstanceMethods

#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one

Constructor Details

This class inherits a constructor from Fog::Model

Instance Method Details

#destroyObject



26
27
28
29
30
31
32
# File 'lib/fog/aws/models/iam/access_key.rb', line 26

def destroy
  requires :id
  requires :username

  service.delete_access_key(id,'UserName'=> username)
  true
end

#saveObject



14
15
16
17
18
19
20
21
22
23
24
# File 'lib/fog/aws/models/iam/access_key.rb', line 14

def save
  requires :username

  if !persisted?
    data = service.create_access_key('UserName'=> username).body["AccessKey"]
  else
    data = service.update_access_key(id, status, "UserName" => username).body["AccessKey"]
  end
  merge_attributes(data)
  true
end

#userObject



34
35
36
37
# File 'lib/fog/aws/models/iam/access_key.rb', line 34

def user
  requires :username
  service.users.get(username)
end