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.
5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 |
# File 'lib/v20210527/models.rb', line 5266 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
5264 5265 5266 |
# File 'lib/v20210527/models.rb', line 5264 def AsyncRequestId @AsyncRequestId end |
#CreateTime ⇒ Object
5264 5265 5266 |
# File 'lib/v20210527/models.rb', line 5264 def CreateTime @CreateTime end |
#EndTime ⇒ Object
5264 5265 5266 |
# File 'lib/v20210527/models.rb', line 5264 def EndTime @EndTime end |
#HealthStatus ⇒ Object
5264 5265 5266 |
# File 'lib/v20210527/models.rb', line 5264 def HealthStatus @HealthStatus end |
#InstanceInfo ⇒ Object
5264 5265 5266 |
# File 'lib/v20210527/models.rb', line 5264 def InstanceInfo @InstanceInfo end |
#Progress ⇒ Object
5264 5265 5266 |
# File 'lib/v20210527/models.rb', line 5264 def Progress @Progress end |
#Source ⇒ Object
5264 5265 5266 |
# File 'lib/v20210527/models.rb', line 5264 def Source @Source end |
#StartTime ⇒ Object
5264 5265 5266 |
# File 'lib/v20210527/models.rb', line 5264 def StartTime @StartTime end |
Instance Method Details
#deserialize(params) ⇒ Object
5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 |
# File 'lib/v20210527/models.rb', line 5277 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 |