Sha256: c10e19a0fcb0a78bab13ea6897b314d5c7041ba6323914d30bf3e602323c5288

Contents?: true

Size: 1.67 KB

Versions: 39

Compression:

Stored size: 1.67 KB

Contents

require 'fog/core/model'

module Fog
  module Compute
    class RackspaceV2
      class KeyPair < Fog::Model

        # @!attribute [rw] name
        # @return [String] the keypair name
        identity  :name

        # @!attribute [r]  public_key
        # @return [String] the public key
        attribute :public_key

        # @!attribute [r]  private_key
        # @return [String] the private key
        attribute :private_key

        # @!attribute [r]  user_id
        # @return [String] the user_id associated to
        attribute :user_id

        # @!attribute [r]  fingerprint
        # @return [String] unique fingerprint
        attribute :fingerprint

        # Creates a keypair
        # @return [Boolean] true if the keypair is successfully created
        # @raise  [Fog::Compute::RackspaceV2::NotFound]
        # @raise  [Fog::Compute::RackspaceV2::BadRequest]
        # @raise  [Fog::Compute::RackspaceV2::InternalServerError]
        # @raise  [Fog::Compute::RackspaceV2::ServiceError]
        def save
          requires :name
          data = service.create_keypair(name, public_key)
          merge_attributes(data.body['keypair'])
          data.body['keypair']['name'] == name
        end

        # Destroys a keypair
        # @return [Boolean] true if the keypair is successfully deleted
        # @raise  [Fog::Compute::RackspaceV2::NotFound]
        # @raise  [Fog::Compute::RackspaceV2::BadRequest]
        # @raise  [Fog::Compute::RackspaceV2::InternalServerError]
        # @raise  [Fog::Compute::RackspaceV2::ServiceError]
        def destroy
            requires :identity
            service.delete_keypair(identity)
            true
        end

      end
    end
  end
end

Version data entries

39 entries across 39 versions & 3 rubygems

Version Path
fog-maestrodev-1.18.0.20131126122111 lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-maestrodev-1.18.0.20131125111730 lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-maestrodev-1.18.0.20131125083406 lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-maestrodev-1.18.0.20131123105121 lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-maestrodev-1.18.0.20131122203507 lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-maestrodev-1.18.0.20131121075022 lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-maestrodev-1.18.0.20131118164830 lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-maestrodev-1.18.0.20131115184302 lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-maestrodev-1.18.0.20131114200144 lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-maestrodev-1.18.0.20131112185232 lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-maestrodev-1.18.0.20131111203459 lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-1.18.0 lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-1.17.0 lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-1.16.0 lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-maestrodev-1.15.0.20130927082724 lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-maestrodev-1.15.0.20130829165835 lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-1.15.0 lib/fog/rackspace/models/compute_v2/key_pair.rb
gapinc-fog-1.14.0 lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-maestrodev-1.14.0.20130806165225 lib/fog/rackspace/models/compute_v2/key_pair.rb