Class: TencentCloud::Eb::V20210416::CreateEventBusRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Eb::V20210416::CreateEventBusRequest
- Defined in:
- lib/v20210416/models.rb
Overview
CreateEventBus请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(eventbusname = nil, description = nil, savedays = nil, enablestore = nil) ⇒ CreateEventBusRequest
constructor
A new instance of CreateEventBusRequest.
Constructor Details
#initialize(eventbusname = nil, description = nil, savedays = nil, enablestore = nil) ⇒ CreateEventBusRequest
Returns a new instance of CreateEventBusRequest.
387 388 389 390 391 392 |
# File 'lib/v20210416/models.rb', line 387 def initialize(eventbusname=nil, description=nil, savedays=nil, enablestore=nil) @EventBusName = eventbusname @Description = description @SaveDays = savedays @EnableStore = enablestore end |
Instance Attribute Details
#Description ⇒ Object
385 386 387 |
# File 'lib/v20210416/models.rb', line 385 def Description @Description end |
#EnableStore ⇒ Object
385 386 387 |
# File 'lib/v20210416/models.rb', line 385 def EnableStore @EnableStore end |
#EventBusName ⇒ Object
385 386 387 |
# File 'lib/v20210416/models.rb', line 385 def EventBusName @EventBusName end |
#SaveDays ⇒ Object
385 386 387 |
# File 'lib/v20210416/models.rb', line 385 def SaveDays @SaveDays end |
Instance Method Details
#deserialize(params) ⇒ Object
394 395 396 397 398 399 |
# File 'lib/v20210416/models.rb', line 394 def deserialize(params) @EventBusName = params['EventBusName'] @Description = params['Description'] @SaveDays = params['SaveDays'] @EnableStore = params['EnableStore'] end |