# File lib/fog/aws/requests/compute/associate_dhcp_options.rb, line 21 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