# File lib/fog/aws/requests/compute/delete_dhcp_options.rb, line 31
        def delete_dhcp_options(dhcp_options_id)
          Excon::Response.new.tap do |response|
            if dhcp_options_id
              response.status = 200
              self.data[:dhcp_options].reject! { |v| v['dhcpOptionsId'] == dhcp_options_id }
            
              response.body = {
                'requestId' => Fog::AWS::Mock.request_id,
                'return' => true
              }
            else
              message = 'MissingParameter => '
              message << 'The request must contain the parameter dhcp_options_id'
              raise Fog::Compute::AWS::Error.new(message)
            end
          end
        end