class S3::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/s3/client/api/storage.rb, line 248 def initialize @index = 1 end
Public Instance Methods
file_label(suffix)
click to toggle source
# File lib/s3/client/api/storage.rb, line 260 def file_label(suffix) "#{@label}_#{suffix}" end
object_label(suffix)
click to toggle source
# File lib/s3/client/api/storage.rb, line 256 def object_label(suffix) "/#{@db_name}/#{@tbl_name}/#{@label}_#{suffix}.gz" end
storage_prefix()
click to toggle source
# File lib/s3/client/api/storage.rb, line 264 def storage_prefix "#{@tbl_name}/#{@label}" end
url(suffix)
click to toggle source
# File lib/s3/client/api/storage.rb, line 252 def url(suffix) "/#{@tbl_name}/#{@label}_#{suffix}.gz" end