Class: TreasureData::LogAggregationSchemaEntry

Inherits:
Model
  • Object
show all
Defined in:
lib/td/client/model.rb

Instance Attribute Summary collapse

Attributes inherited from Model

#client

Instance Method Summary collapse

Constructor Details

#initialize(client, name, comment, table, okeys, value_key, count_key) ⇒ LogAggregationSchemaEntry

Returns a new instance of LogAggregationSchemaEntry.



548
549
550
551
552
553
554
555
556
# File 'lib/td/client/model.rb', line 548

def initialize(client, name, comment, table, okeys, value_key, count_key)
  super(client)
  @name = name
  @comment = comment
  @table = table
  @okeys = okeys
  @value_key = value_key
  @count_key = count_key
end

Instance Attribute Details

#commentObject (readonly)

Returns the value of attribute comment.



558
559
560
# File 'lib/td/client/model.rb', line 558

def comment
  @comment
end

#count_keyObject (readonly)

Returns the value of attribute count_key.



559
560
561
# File 'lib/td/client/model.rb', line 559

def count_key
  @count_key
end

#nameObject (readonly)

Returns the value of attribute name.



558
559
560
# File 'lib/td/client/model.rb', line 558

def name
  @name
end

#okeysObject (readonly)

Returns the value of attribute okeys.



559
560
561
# File 'lib/td/client/model.rb', line 559

def okeys
  @okeys
end

#tableObject (readonly)

Returns the value of attribute table.



558
559
560
# File 'lib/td/client/model.rb', line 558

def table
  @table
end

#value_keyObject (readonly)

Returns the value of attribute value_key.



559
560
561
# File 'lib/td/client/model.rb', line 559

def value_key
  @value_key
end