Class: Fog::AWS::IAM::AccessKeys
- Inherits:
-
Collection
- Object
- Array
- Collection
- Fog::AWS::IAM::AccessKeys
- Defined in:
- lib/fog/aws/models/iam/access_keys.rb
Instance Attribute Summary
Attributes inherited from Collection
Instance Method Summary collapse
- #all ⇒ Object
- #get(identity) ⇒ Object
-
#initialize(attributes = {}) ⇒ AccessKeys
constructor
A new instance of AccessKeys.
- #new(attributes = {}) ⇒ Object
Methods inherited from Collection
#clear, #create, #destroy, #inspect, #load, model, #model, #reload, #table, #to_json
Methods included from Fog::Attributes::ClassMethods
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
Methods included from Fog::Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #requires, #requires_one
Constructor Details
#initialize(attributes = {}) ⇒ AccessKeys
Returns a new instance of AccessKeys.
12 13 14 15 16 |
# File 'lib/fog/aws/models/iam/access_keys.rb', line 12 def initialize(attributes = {}) @username = attributes[:username] raise ArgumentError.new("Can't get an access_key's user without a username") unless @username super end |
Instance Method Details
#all ⇒ Object
18 19 20 21 22 23 |
# File 'lib/fog/aws/models/iam/access_keys.rb', line 18 def all data = connection.list_access_keys('UserName'=> @username).body['AccessKeys'] # AWS response doesn't contain the UserName, this injects it data.each {|access_key| access_key['UserName'] = @username } load(data) end |
#get(identity) ⇒ Object
25 26 27 |
# File 'lib/fog/aws/models/iam/access_keys.rb', line 25 def get(identity) self.all.select {|access_key| access_key.id == identity}.first end |
#new(attributes = {}) ⇒ Object
29 30 31 |
# File 'lib/fog/aws/models/iam/access_keys.rb', line 29 def new(attributes = {}) super({ :username => @username }.merge!(attributes)) end |