Class: TencentCloud::Wedata::V20210820::BatchCreateIntegrationTaskAlarmsRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::BatchCreateIntegrationTaskAlarmsRequest
- Defined in:
- lib/v20210820/models.rb
Overview
BatchCreateIntegrationTaskAlarms请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(taskids = nil, taskalarminfo = nil, projectid = nil) ⇒ BatchCreateIntegrationTaskAlarmsRequest
constructor
A new instance of BatchCreateIntegrationTaskAlarmsRequest.
Constructor Details
#initialize(taskids = nil, taskalarminfo = nil, projectid = nil) ⇒ BatchCreateIntegrationTaskAlarmsRequest
Returns a new instance of BatchCreateIntegrationTaskAlarmsRequest.
1791 1792 1793 1794 1795 |
# File 'lib/v20210820/models.rb', line 1791 def initialize(taskids=nil, taskalarminfo=nil, projectid=nil) @TaskIds = taskids @TaskAlarmInfo = taskalarminfo @ProjectId = projectid end |
Instance Attribute Details
#ProjectId ⇒ Object
1789 1790 1791 |
# File 'lib/v20210820/models.rb', line 1789 def ProjectId @ProjectId end |
#TaskAlarmInfo ⇒ Object
1789 1790 1791 |
# File 'lib/v20210820/models.rb', line 1789 def TaskAlarmInfo @TaskAlarmInfo end |
#TaskIds ⇒ Object
1789 1790 1791 |
# File 'lib/v20210820/models.rb', line 1789 def TaskIds @TaskIds end |
Instance Method Details
#deserialize(params) ⇒ Object
1797 1798 1799 1800 1801 1802 1803 1804 |
# File 'lib/v20210820/models.rb', line 1797 def deserialize(params) @TaskIds = params['TaskIds'] unless params['TaskAlarmInfo'].nil? @TaskAlarmInfo = TaskAlarmInfo.new @TaskAlarmInfo.deserialize(params['TaskAlarmInfo']) end @ProjectId = params['ProjectId'] end |