Sha256: b793d3d3b817420d329f2a796a71c8eef75d761a9774c8deaa7ffd89a2d1162e

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, attributes)
          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 37 versions & 6 rubygems

Version Path
fog-rackspace-0.1.6 lib/fog/rackspace/models/compute_v2/key_pair.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-rackspace-0.1.5/lib/fog/rackspace/models/compute_v2/key_pair.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-rackspace-0.1.5/lib/fog/rackspace/models/compute_v2/key_pair.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-rackspace-0.1.5/lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-rackspace-0.1.5 lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-rackspace-0.1.4 lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-rackspace-0.1.3 lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-rackspace-0.1.2 lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-rackspace-0.1.1 lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-rackspace-0.1.0 lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-1.37.0 lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-1.36.0 lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-1.35.0 lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-2.0.0.pre.0 lib/fog/rackspace/models/compute_v2/key_pair.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-1.34.0 lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-1.33.0 lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-1.32.0 lib/fog/rackspace/models/compute_v2/key_pair.rb
fog-1.31.0 lib/fog/rackspace/models/compute_v2/key_pair.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/rackspace/models/compute_v2/key_pair.rb