Class: TencentCloud::Tdmq::V20200217::DescribeAMQPClustersRequest

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

Overview

DescribeAMQPClusters请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(offset = nil, limit = nil, idkeyword = nil, namekeyword = nil, clusteridlist = nil, istagfilter = nil, filters = nil) ⇒ DescribeAMQPClustersRequest

Returns a new instance of DescribeAMQPClustersRequest.



3398
3399
3400
3401
3402
3403
3404
3405
3406
# File 'lib/v20200217/models.rb', line 3398

def initialize(offset=nil, limit=nil, idkeyword=nil, namekeyword=nil, clusteridlist=nil, istagfilter=nil, filters=nil)
  @Offset = offset
  @Limit = limit
  @IdKeyword = idkeyword
  @NameKeyword = namekeyword
  @ClusterIdList = clusteridlist
  @IsTagFilter = istagfilter
  @Filters = filters
end

Instance Attribute Details

#ClusterIdListObject

Parameters:

  • Offset:

    偏移量

  • Limit:

    限制数目

  • IdKeyword:

    按照集群ID关键字搜索

  • NameKeyword:

    按照集群名称关键字搜索

  • ClusterIdList:

    集群ID列表过滤

  • IsTagFilter:

    标签过滤查找时,需要设置为true

  • Filters:

    过滤器。目前支持按标签过滤。



3396
3397
3398
# File 'lib/v20200217/models.rb', line 3396

def ClusterIdList
  @ClusterIdList
end

#FiltersObject

Parameters:

  • Offset:

    偏移量

  • Limit:

    限制数目

  • IdKeyword:

    按照集群ID关键字搜索

  • NameKeyword:

    按照集群名称关键字搜索

  • ClusterIdList:

    集群ID列表过滤

  • IsTagFilter:

    标签过滤查找时,需要设置为true

  • Filters:

    过滤器。目前支持按标签过滤。



3396
3397
3398
# File 'lib/v20200217/models.rb', line 3396

def Filters
  @Filters
end

#IdKeywordObject

Parameters:

  • Offset:

    偏移量

  • Limit:

    限制数目

  • IdKeyword:

    按照集群ID关键字搜索

  • NameKeyword:

    按照集群名称关键字搜索

  • ClusterIdList:

    集群ID列表过滤

  • IsTagFilter:

    标签过滤查找时,需要设置为true

  • Filters:

    过滤器。目前支持按标签过滤。



3396
3397
3398
# File 'lib/v20200217/models.rb', line 3396

def IdKeyword
  @IdKeyword
end

#IsTagFilterObject

Parameters:

  • Offset:

    偏移量

  • Limit:

    限制数目

  • IdKeyword:

    按照集群ID关键字搜索

  • NameKeyword:

    按照集群名称关键字搜索

  • ClusterIdList:

    集群ID列表过滤

  • IsTagFilter:

    标签过滤查找时,需要设置为true

  • Filters:

    过滤器。目前支持按标签过滤。



3396
3397
3398
# File 'lib/v20200217/models.rb', line 3396

def IsTagFilter
  @IsTagFilter
end

#LimitObject

Parameters:

  • Offset:

    偏移量

  • Limit:

    限制数目

  • IdKeyword:

    按照集群ID关键字搜索

  • NameKeyword:

    按照集群名称关键字搜索

  • ClusterIdList:

    集群ID列表过滤

  • IsTagFilter:

    标签过滤查找时,需要设置为true

  • Filters:

    过滤器。目前支持按标签过滤。



3396
3397
3398
# File 'lib/v20200217/models.rb', line 3396

def Limit
  @Limit
end

#NameKeywordObject

Parameters:

  • Offset:

    偏移量

  • Limit:

    限制数目

  • IdKeyword:

    按照集群ID关键字搜索

  • NameKeyword:

    按照集群名称关键字搜索

  • ClusterIdList:

    集群ID列表过滤

  • IsTagFilter:

    标签过滤查找时,需要设置为true

  • Filters:

    过滤器。目前支持按标签过滤。



3396
3397
3398
# File 'lib/v20200217/models.rb', line 3396

def NameKeyword
  @NameKeyword
end

#OffsetObject

Parameters:

  • Offset:

    偏移量

  • Limit:

    限制数目

  • IdKeyword:

    按照集群ID关键字搜索

  • NameKeyword:

    按照集群名称关键字搜索

  • ClusterIdList:

    集群ID列表过滤

  • IsTagFilter:

    标签过滤查找时,需要设置为true

  • Filters:

    过滤器。目前支持按标签过滤。



3396
3397
3398
# File 'lib/v20200217/models.rb', line 3396

def Offset
  @Offset
end

Instance Method Details

#deserialize(params) ⇒ Object



3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
# File 'lib/v20200217/models.rb', line 3408

def deserialize(params)
  @Offset = params['Offset']
  @Limit = params['Limit']
  @IdKeyword = params['IdKeyword']
  @NameKeyword = params['NameKeyword']
  @ClusterIdList = params['ClusterIdList']
  @IsTagFilter = params['IsTagFilter']
  unless params['Filters'].nil?
    @Filters = []
    params['Filters'].each do |i|
      filter_tmp = Filter.new
      filter_tmp.deserialize(i)
      @Filters << filter_tmp
    end
  end
end