Sha256: 55134bc1b818e7c07295d84d11a0586959eac6a2b2689446129104b291839f4d

Contents?: true

Size: 1.83 KB

Versions: 1

Compression:

Stored size: 1.83 KB

Contents

module Fog
  module Compute
    class AWS
      class Real

        require 'rackspace-fog/aws/parsers/compute/associate_dhcp_options'
        # 
        #
        # ==== Parameters
        # * dhcp_options_id<~String> - The ID of the DHCP options you want to associate with the VPC, or "default" if you want the VPC 
        #   to use no DHCP options.
        # * vpc_id<~String> - The ID of the VPC
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * 'requestId'<~String> - Id of request
        #     * 'return'<~Boolean> - Returns true if the request succeeds.
        #
        # {Amazon API Reference}[http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-AssociateDhcpOptions.html]
        def associate_dhcp_options(dhcp_options_id, vpc_id)
          request(
            'Action'               => 'AssociateDhcpOptions',
            'DhcpOptionsId'        => dhcp_options_id,
            'VpcId'                => vpc_id,
            :idempotent   => true,
            :parser       => Fog::Parsers::Compute::AWS::AttachInternetGateway.new
          )
        end

      end

      class Mock

        def associate_dhcp_options(dhcp_options_id, vpc_id)
          response = Excon::Response.new
          if dhcp_options_id && vpc_id
            response.status = 200
            response.body = {
              'requestId' => Fog::AWS::Mock.request_id,
              'return' => true
            }
            response
          else
            if !dhcp_options_id
              message << 'The request must contain the parameter dhcp_options_id'
            elsif !vpc_id
              message << 'The request must contain the parameter vpc_id'
            end
            raise Fog::Compute::AWS::Error.new(message)
          end
        end

      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rackspace-fog-1.4.2 lib/rackspace-fog/aws/requests/compute/associate_dhcp_options.rb