Sha256: 289960f2cc09007f8d8254316f84f958bb09648832287576e814154aa946eee0
Contents?: true
Size: 458 Bytes
Versions: 92
Compression:
Stored size: 458 Bytes
Contents
require 'flydata/api/base' 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
92 entries across 92 versions & 1 rubygems