Class: Metadata::TableInBatchGetRowItem
- Inherits:
-
Object
- Object
- Metadata::TableInBatchGetRowItem
- Defined in:
- lib/tablestore/metadata.rb
Instance Method Summary collapse
- #column_filter ⇒ Object
- #columns_to_get ⇒ Object
- #end_column ⇒ Object
-
#initialize(table_name, primary_keys, columns_to_get = nil, column_filter = nil, max_version = nil, time_range = nil, start_column = nil, end_column = nil, token = nil) ⇒ TableInBatchGetRowItem
constructor
A new instance of TableInBatchGetRowItem.
- #max_version ⇒ Object
- #primary_keys ⇒ Object
- #start_column ⇒ Object
- #table_name ⇒ Object
- #time_range ⇒ Object
- #token ⇒ Object
Constructor Details
#initialize(table_name, primary_keys, columns_to_get = nil, column_filter = nil, max_version = nil, time_range = nil, start_column = nil, end_column = nil, token = nil) ⇒ TableInBatchGetRowItem
Returns a new instance of TableInBatchGetRowItem.
340 341 342 343 344 345 346 347 348 349 350 351 352 |
# File 'lib/tablestore/metadata.rb', line 340 def initialize(table_name, primary_keys, columns_to_get=nil, column_filter=nil, max_version=nil, time_range=nil, start_column=nil, end_column=nil, token=nil) @table_name = table_name @primary_keys = primary_keys @columns_to_get = columns_to_get @column_filter = column_filter @max_version = max_version @time_range = time_range @start_column = start_column @end_column = end_column @token = token end |
Instance Method Details
#column_filter ⇒ Object
366 367 368 |
# File 'lib/tablestore/metadata.rb', line 366 def column_filter @column_filter end |
#columns_to_get ⇒ Object
362 363 364 |
# File 'lib/tablestore/metadata.rb', line 362 def columns_to_get @columns_to_get end |
#end_column ⇒ Object
382 383 384 |
# File 'lib/tablestore/metadata.rb', line 382 def end_column @end_column end |
#max_version ⇒ Object
370 371 372 |
# File 'lib/tablestore/metadata.rb', line 370 def max_version @max_version end |
#primary_keys ⇒ Object
358 359 360 |
# File 'lib/tablestore/metadata.rb', line 358 def primary_keys @primary_keys end |
#start_column ⇒ Object
378 379 380 |
# File 'lib/tablestore/metadata.rb', line 378 def start_column @start_column end |
#table_name ⇒ Object
354 355 356 |
# File 'lib/tablestore/metadata.rb', line 354 def table_name @table_name end |
#time_range ⇒ Object
374 375 376 |
# File 'lib/tablestore/metadata.rb', line 374 def time_range @time_range end |
#token ⇒ Object
386 387 388 |
# File 'lib/tablestore/metadata.rb', line 386 def token @token end |