Class: Altertable::Lakehouse::Adapters::Base
- Inherits:
-
Object
- Object
- Altertable::Lakehouse::Adapters::Base
show all
- Defined in:
- lib/altertable/lakehouse/adapters.rb,
sig/altertable/lakehouse/adapters.rbs
Instance Method Summary
collapse
-
#delete(path, body: nil, params: {}, headers: {}, &_block) ⇒ Response
-
#get(path, body: nil, params: {}, headers: {}, &_block) ⇒ Response
-
#initialize(base_url:, timeout:, open_timeout:, headers: {}, **options) ⇒ Base
constructor
-
#post(path, body: nil, params: {}, headers: {}, &_block) ⇒ Response
Constructor Details
#initialize(base_url:, timeout:, open_timeout:, headers: {}, **options) ⇒ Base
Returns a new instance of Base.
7
8
9
10
11
12
13
|
# File 'lib/altertable/lakehouse/adapters.rb', line 7
def initialize(base_url:, timeout:, open_timeout:, headers: {}, **options)
@base_url = base_url
@timeout = timeout
@open_timeout = open_timeout
@headers =
@options = options
end
|
Instance Method Details
#delete(path, body: nil, params: {}, headers: {}, &_block) ⇒ Response
23
24
25
|
# File 'lib/altertable/lakehouse/adapters.rb', line 23
def delete(path, body: nil, params: {}, headers: {}, &_block)
raise NotImplementedError
end
|
#get(path, body: nil, params: {}, headers: {}, &_block) ⇒ Response
15
16
17
|
# File 'lib/altertable/lakehouse/adapters.rb', line 15
def get(path, body: nil, params: {}, headers: {}, &_block)
raise NotImplementedError
end
|
#post(path, body: nil, params: {}, headers: {}, &_block) ⇒ Response
19
20
21
|
# File 'lib/altertable/lakehouse/adapters.rb', line 19
def post(path, body: nil, params: {}, headers: {}, &_block)
raise NotImplementedError
end
|