Class: TencentCloud::Ckafka::V20190819::DescribeGroupOffsetsRequest

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

Overview

DescribeGroupOffsets请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(instanceid = nil, group = nil, topics = nil, searchword = nil, offset = nil, limit = nil) ⇒ DescribeGroupOffsetsRequest

Returns a new instance of DescribeGroupOffsetsRequest.



5160
5161
5162
5163
5164
5165
5166
5167
# File 'lib/v20190819/models.rb', line 5160

def initialize(instanceid=nil, group=nil, topics=nil, searchword=nil, offset=nil, limit=nil)
  @InstanceId = instanceid
  @Group = group
  @Topics = topics
  @SearchWord = searchword
  @Offset = offset
  @Limit = limit
end

Instance Attribute Details

#GroupObject

Parameters:

  • InstanceId:

    ckafka集群实例Id

  • Group:

    Kafka 消费分组

  • Topics:

    group 订阅的主题名称数组,如果没有该数组,则表示指定的 group 下所有 topic 信息

  • SearchWord:

    模糊匹配 topicName

  • Offset:

    本次查询的偏移位置,默认为0

  • Limit:

    本次返回结果的最大个数,默认为50,最大值为50



5158
5159
5160
# File 'lib/v20190819/models.rb', line 5158

def Group
  @Group
end

#InstanceIdObject

Parameters:

  • InstanceId:

    ckafka集群实例Id

  • Group:

    Kafka 消费分组

  • Topics:

    group 订阅的主题名称数组,如果没有该数组,则表示指定的 group 下所有 topic 信息

  • SearchWord:

    模糊匹配 topicName

  • Offset:

    本次查询的偏移位置,默认为0

  • Limit:

    本次返回结果的最大个数,默认为50,最大值为50



5158
5159
5160
# File 'lib/v20190819/models.rb', line 5158

def InstanceId
  @InstanceId
end

#LimitObject

Parameters:

  • InstanceId:

    ckafka集群实例Id

  • Group:

    Kafka 消费分组

  • Topics:

    group 订阅的主题名称数组,如果没有该数组,则表示指定的 group 下所有 topic 信息

  • SearchWord:

    模糊匹配 topicName

  • Offset:

    本次查询的偏移位置,默认为0

  • Limit:

    本次返回结果的最大个数,默认为50,最大值为50



5158
5159
5160
# File 'lib/v20190819/models.rb', line 5158

def Limit
  @Limit
end

#OffsetObject

Parameters:

  • InstanceId:

    ckafka集群实例Id

  • Group:

    Kafka 消费分组

  • Topics:

    group 订阅的主题名称数组,如果没有该数组,则表示指定的 group 下所有 topic 信息

  • SearchWord:

    模糊匹配 topicName

  • Offset:

    本次查询的偏移位置,默认为0

  • Limit:

    本次返回结果的最大个数,默认为50,最大值为50



5158
5159
5160
# File 'lib/v20190819/models.rb', line 5158

def Offset
  @Offset
end

#SearchWordObject

Parameters:

  • InstanceId:

    ckafka集群实例Id

  • Group:

    Kafka 消费分组

  • Topics:

    group 订阅的主题名称数组,如果没有该数组,则表示指定的 group 下所有 topic 信息

  • SearchWord:

    模糊匹配 topicName

  • Offset:

    本次查询的偏移位置,默认为0

  • Limit:

    本次返回结果的最大个数,默认为50,最大值为50



5158
5159
5160
# File 'lib/v20190819/models.rb', line 5158

def SearchWord
  @SearchWord
end

#TopicsObject

Parameters:

  • InstanceId:

    ckafka集群实例Id

  • Group:

    Kafka 消费分组

  • Topics:

    group 订阅的主题名称数组,如果没有该数组,则表示指定的 group 下所有 topic 信息

  • SearchWord:

    模糊匹配 topicName

  • Offset:

    本次查询的偏移位置,默认为0

  • Limit:

    本次返回结果的最大个数,默认为50,最大值为50



5158
5159
5160
# File 'lib/v20190819/models.rb', line 5158

def Topics
  @Topics
end

Instance Method Details

#deserialize(params) ⇒ Object



5169
5170
5171
5172
5173
5174
5175
5176
# File 'lib/v20190819/models.rb', line 5169

def deserialize(params)
  @InstanceId = params['InstanceId']
  @Group = params['Group']
  @Topics = params['Topics']
  @SearchWord = params['SearchWord']
  @Offset = params['Offset']
  @Limit = params['Limit']
end