# File lib/fog/compute/requests/bluebox/create_block.rb, line 21
        def create_block(product_id, template_id, options = {})
          request(
            :expects  => 200,
            :method   => 'POST',
            :path     => '/api/blocks.json',
            :query    => {'product' => product_id, 'template' => template_id}.merge!(options)
          )
        end