class Dag::Client::API::Storage::Import::ImportParameter
Attributes
db_name[RW]
index[RW]
label[RW]
tbl_name[RW]
Public Class Methods
new()
click to toggle source
# File lib/dag/client/api/storage.rb, line 239 def initialize @index = 1 end
Public Instance Methods
file_label(suffix)
click to toggle source
# File lib/dag/client/api/storage.rb, line 251 def file_label(suffix) "#{@label}_#{suffix}" end
object_label(suffix)
click to toggle source
# File lib/dag/client/api/storage.rb, line 247 def object_label(suffix) "/#{@db_name}/#{@tbl_name}/#{@label}_#{suffix}.gz" end
storage_prefix()
click to toggle source
# File lib/dag/client/api/storage.rb, line 255 def storage_prefix "#{@tbl_name}/#{@label}" end
url(suffix)
click to toggle source
# File lib/dag/client/api/storage.rb, line 243 def url(suffix) "/#{@tbl_name}/#{@label}_#{suffix}.gz" end