Class: Datahen::Client::ScraperDeployment
- Defined in:
- lib/datahen/client/scraper_deployment.rb
Constant Summary
Constants inherited from Base
Base::CHECK_EMPTY_BODY, Base::CHECK_NIL, Base::DEFAULT_RETRY_LIMIT
Instance Method Summary collapse
Methods inherited from Base
#auth_token, #auth_token=, #default_retry_limit, #env_api_url, env_auth_token, env_ignore_ssl, #ignore_ssl, #initialize, #left_merge, random_delay, #retry
Constructor Details
This class inherits a constructor from Datahen::Client::Base
Instance Method Details
#all(scraper_name, opts = {}) ⇒ Object
5 6 7 8 |
# File 'lib/datahen/client/scraper_deployment.rb', line 5 def all(scraper_name, opts={}) params = @options.merge(opts) self.class.get("/scrapers/#{scraper_name}/deployments", params) end |
#deploy(scraper_name, opts = {}) ⇒ Object
11 12 13 14 |
# File 'lib/datahen/client/scraper_deployment.rb', line 11 def deploy(scraper_name, opts={}) params = @options.merge(opts) self.class.post("/scrapers/#{scraper_name}/deployments", params) end |