Class: TencentCloud::Ckafka::V20190819::BrokerTopicData
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Ckafka::V20190819::BrokerTopicData
- Defined in:
- lib/v20190819/models.rb
Overview
主题占用Broker磁盘大小
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(topicname = nil, topicid = nil, datasize = nil) ⇒ BrokerTopicData
constructor
A new instance of BrokerTopicData.
Constructor Details
#initialize(topicname = nil, topicid = nil, datasize = nil) ⇒ BrokerTopicData
Returns a new instance of BrokerTopicData.
603 604 605 606 607 |
# File 'lib/v20190819/models.rb', line 603 def initialize(topicname=nil, topicid=nil, datasize=nil) @TopicName = topicname @TopicId = topicid @DataSize = datasize end |
Instance Attribute Details
#DataSize ⇒ Object
601 602 603 |
# File 'lib/v20190819/models.rb', line 601 def DataSize @DataSize end |
#TopicId ⇒ Object
601 602 603 |
# File 'lib/v20190819/models.rb', line 601 def TopicId @TopicId end |
#TopicName ⇒ Object
601 602 603 |
# File 'lib/v20190819/models.rb', line 601 def TopicName @TopicName end |
Instance Method Details
#deserialize(params) ⇒ Object
609 610 611 612 613 |
# File 'lib/v20190819/models.rb', line 609 def deserialize(params) @TopicName = params['TopicName'] @TopicId = params['TopicId'] @DataSize = params['DataSize'] end |