Class: TencentCloud::Eb::V20210416::ListConnectionsRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Eb::V20210416::ListConnectionsRequest
- Defined in:
- lib/v20210416/models.rb
Overview
ListConnections请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(eventbusid = nil, orderby = nil, limit = nil, order = nil, offset = nil) ⇒ ListConnectionsRequest
constructor
A new instance of ListConnectionsRequest.
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
#EventBusId ⇒ Object
1387 1388 1389 |
# File 'lib/v20210416/models.rb', line 1387 def EventBusId @EventBusId end |
#Limit ⇒ Object
1387 1388 1389 |
# File 'lib/v20210416/models.rb', line 1387 def Limit @Limit end |
#Offset ⇒ Object
1387 1388 1389 |
# File 'lib/v20210416/models.rb', line 1387 def Offset @Offset end |
#Order ⇒ Object
1387 1388 1389 |
# File 'lib/v20210416/models.rb', line 1387 def Order @Order end |
#OrderBy ⇒ Object
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 |