Class: TencentCloud::Dbbrain::V20210527::HealthReportTask
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dbbrain::V20210527::HealthReportTask
- Defined in:
- lib/v20210527/models.rb
Overview
健康报告任务详情。
Instance Attribute Summary collapse
- #AsyncRequestId ⇒ Object
- #CreateTime ⇒ Object
- #EndTime ⇒ Object
- #HealthStatus ⇒ Object
- #InstanceInfo ⇒ Object
- #Progress ⇒ Object
- #Source ⇒ Object
- #StartTime ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(asyncrequestid = nil, source = nil, progress = nil, createtime = nil, starttime = nil, endtime = nil, instanceinfo = nil, healthstatus = nil) ⇒ HealthReportTask
constructor
A new instance of HealthReportTask.
Constructor Details
#initialize(asyncrequestid = nil, source = nil, progress = nil, createtime = nil, starttime = nil, endtime = nil, instanceinfo = nil, healthstatus = nil) ⇒ HealthReportTask
Returns a new instance of HealthReportTask.
5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 |
# File 'lib/v20210527/models.rb', line 5193 def initialize(asyncrequestid=nil, source=nil, progress=nil, createtime=nil, starttime=nil, endtime=nil, instanceinfo=nil, healthstatus=nil) @AsyncRequestId = asyncrequestid @Source = source @Progress = progress @CreateTime = createtime @StartTime = starttime @EndTime = endtime @InstanceInfo = instanceinfo @HealthStatus = healthstatus end |
Instance Attribute Details
#AsyncRequestId ⇒ Object
5191 5192 5193 |
# File 'lib/v20210527/models.rb', line 5191 def AsyncRequestId @AsyncRequestId end |
#CreateTime ⇒ Object
5191 5192 5193 |
# File 'lib/v20210527/models.rb', line 5191 def CreateTime @CreateTime end |
#EndTime ⇒ Object
5191 5192 5193 |
# File 'lib/v20210527/models.rb', line 5191 def EndTime @EndTime end |
#HealthStatus ⇒ Object
5191 5192 5193 |
# File 'lib/v20210527/models.rb', line 5191 def HealthStatus @HealthStatus end |
#InstanceInfo ⇒ Object
5191 5192 5193 |
# File 'lib/v20210527/models.rb', line 5191 def InstanceInfo @InstanceInfo end |
#Progress ⇒ Object
5191 5192 5193 |
# File 'lib/v20210527/models.rb', line 5191 def Progress @Progress end |
#Source ⇒ Object
5191 5192 5193 |
# File 'lib/v20210527/models.rb', line 5191 def Source @Source end |
#StartTime ⇒ Object
5191 5192 5193 |
# File 'lib/v20210527/models.rb', line 5191 def StartTime @StartTime end |
Instance Method Details
#deserialize(params) ⇒ Object
5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 |
# File 'lib/v20210527/models.rb', line 5204 def deserialize(params) @AsyncRequestId = params['AsyncRequestId'] @Source = params['Source'] @Progress = params['Progress'] @CreateTime = params['CreateTime'] @StartTime = params['StartTime'] @EndTime = params['EndTime'] unless params['InstanceInfo'].nil? @InstanceInfo = InstanceBasicInfo.new @InstanceInfo.deserialize(params['InstanceInfo']) end unless params['HealthStatus'].nil? @HealthStatus = HealthStatus.new @HealthStatus.deserialize(params['HealthStatus']) end end |