Sha256: 04ba9bb6891bb5a584818630980775421b9bc883ec7d02aa8ddcf545f35d9fe5

Contents?: true

Size: 1.58 KB

Versions: 22

Compression:

Stored size: 1.58 KB

Contents

require 'fog/core/model'

module Fog
  module Compute
    class AWS
      class DhcpOption < Fog::Model
        identity  :id,                          :aliases => 'dhcpOptionsId'
        attribute :dhcp_configuration_set,      :aliases => 'dhcpConfigurationSet'
        attribute :tag_set,                     :aliases => 'tagSet'

        def initialize(attributes={})
          super
        end

        # Associates an existing dhcp configration set with a VPC
        #
        # dhcp_option.attach(dopt-id, vpc-id)
        #
        # ==== Returns
        #
        # True or false depending on the result
        #
        def associate(vpc_id)
          requires :id
          service.associate_dhcp_options(id, vpc_id)
          reload
        end

        # Removes an existing dhcp configuration set
        #
        # dhcp_option.destroy
        #
        # ==== Returns
        #
        # True or false depending on the result
        #

        def destroy
          requires :id
          service.delete_dhcp_options(id)
          true
        end

        # Create a dhcp configuration set
        #
        #  >> g = AWS.dhcp_options.new()
        #  >> g.save
        #
        # == Returns:
        #
        # requestId and a dhcpOptions object
        #

        def save
          requires :dhcp_configuration_set
          data = service.create_dhcp_options(dhcp_configuration_set).body['dhcpOptionsSet'].first
          new_attributes = data.reject {|key,value| key == 'requestId'}
          merge_attributes(new_attributes)
          true

          true
        end
      end
    end
  end
end

Version data entries

22 entries across 22 versions & 5 rubygems

Version Path
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/aws/models/compute/dhcp_option.rb
fog-aws-0.1.1 lib/fog/aws/models/compute/dhcp_option.rb
fog-aws-0.1.0 lib/fog/aws/models/compute/dhcp_option.rb
fog-aws-0.0.8 lib/fog/aws/models/compute/dhcp_option.rb
fog-aws-0.0.7 lib/fog/aws/models/compute/dhcp_option.rb
fog-aws-0.0.6 lib/fog/aws/models/compute/dhcp_option.rb
fog-aws-0.0.5 lib/fog/aws/models/compute/dhcp_option.rb
fog-1.26.0 lib/fog/aws/models/compute/dhcp_option.rb
fog-1.25.0 lib/fog/aws/models/compute/dhcp_option.rb
nsidc-fog-1.24.1 lib/fog/aws/models/compute/dhcp_option.rb
fog-1.24.0 lib/fog/aws/models/compute/dhcp_option.rb
ns-fog-1.22.11 lib/fog/aws/models/compute/dhcp_option.rb
ns-fog-1.22.10 lib/fog/aws/models/compute/dhcp_option.rb
ns-fog-1.22.9 lib/fog/aws/models/compute/dhcp_option.rb
ns-fog-1.22.8 lib/fog/aws/models/compute/dhcp_option.rb
ns-fog-1.22.7 lib/fog/aws/models/compute/dhcp_option.rb
ns-fog-1.22.6 lib/fog/aws/models/compute/dhcp_option.rb
fog-1.23.0 lib/fog/aws/models/compute/dhcp_option.rb
ns-fog-1.22.4 lib/fog/aws/models/compute/dhcp_option.rb
ns-fog-1.22.3 lib/fog/aws/models/compute/dhcp_option.rb