Class: TencentCloud::Eb::V20210416::ListConnectionsRequest

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

Overview

ListConnections请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(eventbusid = nil, orderby = nil, limit = nil, order = nil, offset = nil) ⇒ ListConnectionsRequest

Returns a new instance of ListConnectionsRequest.



1389
1390
1391
1392
1393
1394
1395
# File 'lib/v20210416/models.rb', line 1389

def initialize(eventbusid=nil, orderby=nil, limit=nil, order=nil, offset=nil)
  @EventBusId = eventbusid
  @OrderBy = orderby
  @Limit = limit
  @Order = order
  @Offset = offset
end

Instance Attribute Details

#EventBusIdObject

Parameters:

  • EventBusId:

    事件集ID

  • OrderBy:

    根据哪个字段进行返回结果排序,目前支持如下以下字段:AddTime, ModTime

  • Limit:

    返回数量,默认为20,最大值为100。

  • Order:

    以升序还是降序的方式返回结果,可选值 ASC 和 DESC

  • Offset:

    偏移量,默认为0。



1387
1388
1389
# File 'lib/v20210416/models.rb', line 1387

def EventBusId
  @EventBusId
end

#LimitObject

Parameters:

  • EventBusId:

    事件集ID

  • OrderBy:

    根据哪个字段进行返回结果排序,目前支持如下以下字段:AddTime, ModTime

  • Limit:

    返回数量,默认为20,最大值为100。

  • Order:

    以升序还是降序的方式返回结果,可选值 ASC 和 DESC

  • Offset:

    偏移量,默认为0。



1387
1388
1389
# File 'lib/v20210416/models.rb', line 1387

def Limit
  @Limit
end

#OffsetObject

Parameters:

  • EventBusId:

    事件集ID

  • OrderBy:

    根据哪个字段进行返回结果排序,目前支持如下以下字段:AddTime, ModTime

  • Limit:

    返回数量,默认为20,最大值为100。

  • Order:

    以升序还是降序的方式返回结果,可选值 ASC 和 DESC

  • Offset:

    偏移量,默认为0。



1387
1388
1389
# File 'lib/v20210416/models.rb', line 1387

def Offset
  @Offset
end

#OrderObject

Parameters:

  • EventBusId:

    事件集ID

  • OrderBy:

    根据哪个字段进行返回结果排序,目前支持如下以下字段:AddTime, ModTime

  • Limit:

    返回数量,默认为20,最大值为100。

  • Order:

    以升序还是降序的方式返回结果,可选值 ASC 和 DESC

  • Offset:

    偏移量,默认为0。



1387
1388
1389
# File 'lib/v20210416/models.rb', line 1387

def Order
  @Order
end

#OrderByObject

Parameters:

  • EventBusId:

    事件集ID

  • OrderBy:

    根据哪个字段进行返回结果排序,目前支持如下以下字段:AddTime, ModTime

  • Limit:

    返回数量,默认为20,最大值为100。

  • Order:

    以升序还是降序的方式返回结果,可选值 ASC 和 DESC

  • Offset:

    偏移量,默认为0。



1387
1388
1389
# File 'lib/v20210416/models.rb', line 1387

def OrderBy
  @OrderBy
end

Instance Method Details

#deserialize(params) ⇒ Object



1397
1398
1399
1400
1401
1402
1403
# File 'lib/v20210416/models.rb', line 1397

def deserialize(params)
  @EventBusId = params['EventBusId']
  @OrderBy = params['OrderBy']
  @Limit = params['Limit']
  @Order = params['Order']
  @Offset = params['Offset']
end