module Databricks
Constants
- VERSION
Public Class Methods
api(host, token)
click to toggle source
Get an API connector based on a Databricks
URL and API token
- Parameters
-
host (String): Host to connect to
-
token (String): Token to be used in th API
- Result
-
Resources::Root: The root resource of the API
# File lib/databricks.rb, line 14 def self.api(host, token) Resources::Root.new(Connector.new(host, token)) end