require 'fog/core/collection' require 'fog/aws/models/compute/key_pair' module Fog module Compute class Aws class KeyPairs < Fog::Collection attribute :filters attribute :key_name model Fog::Compute::AWS::KeyPair # Used to create a key pair. There are 3 arguments and only name is required. You can generate a new key_pair as follows: # Aws.key_pairs.create(:name => "test", :fingerprint => "123", :private_key => '234234') # # ==== Returns # # # # The key_pair can be retrieved by running Aws.key_pairs.get("test"). See get method below. # def initialize(attributes) self.filters ||= {} super end # Returns an array of all key pairs that have been created # # Aws.key_pairs.all # # ==== Returns # # # ] #> # def all(filters_arg = filters) unless filters_arg.is_a?(Hash) Fog::Logger.deprecation("all with #{filters_arg.class} param is deprecated, use all('key-name' => []) instead [light_black](#{caller.first})[/]") filters_arg = {'key-name' => [*filters_arg]} end filters = filters_arg data = service.describe_key_pairs(filters).body load(data['keySet']) end # Used to retrieve a key pair that was created with the Aws.key_pairs.create method. # The name is required to get the associated key_pair information. # # You can run the following command to get the details: # Aws.key_pairs.get("test") # # ==== Returns # #>> Aws.key_pairs.get("test") # # def get(key_name) if key_name self.class.new(:service => service).all('key-name' => key_name).first end end end end end end