Class: TencentCloud::Eb::V20210416::UpdateConnectionRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Eb::V20210416::UpdateConnectionRequest
- Defined in:
- lib/v20210416/models.rb
Overview
UpdateConnection请求参数结构体
Instance Attribute Summary collapse
- #ConnectionId ⇒ Object
- #ConnectionName ⇒ Object
- #Description ⇒ Object
- #Enable ⇒ Object
- #EventBusId ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(connectionid = nil, eventbusid = nil, enable = nil, description = nil, connectionname = nil) ⇒ UpdateConnectionRequest
constructor
A new instance of UpdateConnectionRequest.
Constructor Details
#initialize(connectionid = nil, eventbusid = nil, enable = nil, description = nil, connectionname = nil) ⇒ UpdateConnectionRequest
Returns a new instance of UpdateConnectionRequest.
2500 2501 2502 2503 2504 2505 2506 |
# File 'lib/v20210416/models.rb', line 2500 def initialize(connectionid=nil, eventbusid=nil, enable=nil, description=nil, connectionname=nil) @ConnectionId = connectionid @EventBusId = eventbusid @Enable = enable @Description = description @ConnectionName = connectionname end |
Instance Attribute Details
#ConnectionId ⇒ Object
2498 2499 2500 |
# File 'lib/v20210416/models.rb', line 2498 def ConnectionId @ConnectionId end |
#ConnectionName ⇒ Object
2498 2499 2500 |
# File 'lib/v20210416/models.rb', line 2498 def ConnectionName @ConnectionName end |
#Description ⇒ Object
2498 2499 2500 |
# File 'lib/v20210416/models.rb', line 2498 def Description @Description end |
#Enable ⇒ Object
2498 2499 2500 |
# File 'lib/v20210416/models.rb', line 2498 def Enable @Enable end |
#EventBusId ⇒ Object
2498 2499 2500 |
# File 'lib/v20210416/models.rb', line 2498 def EventBusId @EventBusId end |
Instance Method Details
#deserialize(params) ⇒ Object
2508 2509 2510 2511 2512 2513 2514 |
# File 'lib/v20210416/models.rb', line 2508 def deserialize(params) @ConnectionId = params['ConnectionId'] @EventBusId = params['EventBusId'] @Enable = params['Enable'] @Description = params['Description'] @ConnectionName = params['ConnectionName'] end |