Sha256: afd7a5d51eedf8e697be0015b74e2a48cccf726ab51f9fda69ac4bd7cd5f80f7
Contents?: true
Size: 430 Bytes
Versions: 62
Compression:
Stored size: 430 Bytes
Contents
module Flydata module Api class DataPort < Base def initialize(api_client) @model_name = 'data_port' @url_path = "/#{@model_name.pluralize}" super end def get # currently one user has one data port self.list.first end def redshift_table_list url_path = "#{@url_path}/redshift_table_list" @client.get(url_path) end end end end
Version data entries
62 entries across 62 versions & 1 rubygems