Class: TencentCloud::Eb::V20210416::UpdateTargetRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Eb::V20210416::UpdateTargetRequest
- Defined in:
- lib/v20210416/models.rb
Overview
UpdateTarget请求参数结构体
Instance Attribute Summary collapse
- #BatchEventCount ⇒ Object
- #BatchTimeout ⇒ Object
- #EnableBatchDelivery ⇒ Object
- #EventBusId ⇒ Object
- #RuleId ⇒ Object
- #TargetId ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(eventbusid = nil, ruleid = nil, targetid = nil, enablebatchdelivery = nil, batchtimeout = nil, batcheventcount = nil) ⇒ UpdateTargetRequest
constructor
A new instance of UpdateTargetRequest.
Constructor Details
#initialize(eventbusid = nil, ruleid = nil, targetid = nil, enablebatchdelivery = nil, batchtimeout = nil, batcheventcount = nil) ⇒ UpdateTargetRequest
Returns a new instance of UpdateTargetRequest.
2654 2655 2656 2657 2658 2659 2660 2661 |
# File 'lib/v20210416/models.rb', line 2654 def initialize(eventbusid=nil, ruleid=nil, targetid=nil, enablebatchdelivery=nil, batchtimeout=nil, batcheventcount=nil) @EventBusId = eventbusid @RuleId = ruleid @TargetId = targetid @EnableBatchDelivery = enablebatchdelivery @BatchTimeout = batchtimeout @BatchEventCount = batcheventcount end |
Instance Attribute Details
#BatchEventCount ⇒ Object
2652 2653 2654 |
# File 'lib/v20210416/models.rb', line 2652 def BatchEventCount @BatchEventCount end |
#BatchTimeout ⇒ Object
2652 2653 2654 |
# File 'lib/v20210416/models.rb', line 2652 def BatchTimeout @BatchTimeout end |
#EnableBatchDelivery ⇒ Object
2652 2653 2654 |
# File 'lib/v20210416/models.rb', line 2652 def EnableBatchDelivery @EnableBatchDelivery end |
#EventBusId ⇒ Object
2652 2653 2654 |
# File 'lib/v20210416/models.rb', line 2652 def EventBusId @EventBusId end |
#RuleId ⇒ Object
2652 2653 2654 |
# File 'lib/v20210416/models.rb', line 2652 def RuleId @RuleId end |
#TargetId ⇒ Object
2652 2653 2654 |
# File 'lib/v20210416/models.rb', line 2652 def TargetId @TargetId end |
Instance Method Details
#deserialize(params) ⇒ Object
2663 2664 2665 2666 2667 2668 2669 2670 |
# File 'lib/v20210416/models.rb', line 2663 def deserialize(params) @EventBusId = params['EventBusId'] @RuleId = params['RuleId'] @TargetId = params['TargetId'] @EnableBatchDelivery = params['EnableBatchDelivery'] @BatchTimeout = params['BatchTimeout'] @BatchEventCount = params['BatchEventCount'] end |