Class: TencentCloud::Ckafka::V20190819::DeleteGroupSubscribeTopicRequest

Inherits:
TencentCloud::Common::AbstractModel
  • Object
show all
Defined in:
lib/v20190819/models.rb

Overview

DeleteGroupSubscribeTopic请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(instanceid = nil, group = nil, topic = nil) ⇒ DeleteGroupSubscribeTopicRequest

Returns a new instance of DeleteGroupSubscribeTopicRequest.



3512
3513
3514
3515
3516
# File 'lib/v20190819/models.rb', line 3512

def initialize(instanceid=nil, group=nil, topic=nil)
  @InstanceId = instanceid
  @Group = group
  @Topic = topic
end

Instance Attribute Details

#GroupObject

Parameters:

  • InstanceId:

    ckafka集群实例Id

  • Group:

    消费分组名称

  • Topic:

    主题名



3510
3511
3512
# File 'lib/v20190819/models.rb', line 3510

def Group
  @Group
end

#InstanceIdObject

Parameters:

  • InstanceId:

    ckafka集群实例Id

  • Group:

    消费分组名称

  • Topic:

    主题名



3510
3511
3512
# File 'lib/v20190819/models.rb', line 3510

def InstanceId
  @InstanceId
end

#TopicObject

Parameters:

  • InstanceId:

    ckafka集群实例Id

  • Group:

    消费分组名称

  • Topic:

    主题名



3510
3511
3512
# File 'lib/v20190819/models.rb', line 3510

def Topic
  @Topic
end

Instance Method Details

#deserialize(params) ⇒ Object



3518
3519
3520
3521
3522
# File 'lib/v20190819/models.rb', line 3518

def deserialize(params)
  @InstanceId = params['InstanceId']
  @Group = params['Group']
  @Topic = params['Topic']
end