Class: TencentCloud::Dts::V20211206::DetailCheckItem
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dts::V20211206::DetailCheckItem
- Defined in:
- lib/v20211206/models.rb
Overview
每个检查步骤里的具体检查项
Instance Attribute Summary collapse
- #CheckItemName ⇒ Object
- #CheckResult ⇒ Object
- #Description ⇒ Object
- #ErrorLog ⇒ Object
- #FailureReason ⇒ Object
- #HelpDoc ⇒ Object
- #SkipInfo ⇒ Object
- #Solution ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(checkitemname = nil, description = nil, checkresult = nil, failurereason = nil, solution = nil, errorlog = nil, helpdoc = nil, skipinfo = nil) ⇒ DetailCheckItem
constructor
A new instance of DetailCheckItem.
Constructor Details
#initialize(checkitemname = nil, description = nil, checkresult = nil, failurereason = nil, solution = nil, errorlog = nil, helpdoc = nil, skipinfo = nil) ⇒ DetailCheckItem
Returns a new instance of DetailCheckItem.
3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 |
# File 'lib/v20211206/models.rb', line 3660 def initialize(checkitemname=nil, description=nil, checkresult=nil, failurereason=nil, solution=nil, errorlog=nil, helpdoc=nil, skipinfo=nil) @CheckItemName = checkitemname @Description = description @CheckResult = checkresult @FailureReason = failurereason @Solution = solution @ErrorLog = errorlog @HelpDoc = helpdoc @SkipInfo = skipinfo end |
Instance Attribute Details
#CheckItemName ⇒ Object
3658 3659 3660 |
# File 'lib/v20211206/models.rb', line 3658 def CheckItemName @CheckItemName end |
#CheckResult ⇒ Object
3658 3659 3660 |
# File 'lib/v20211206/models.rb', line 3658 def CheckResult @CheckResult end |
#Description ⇒ Object
3658 3659 3660 |
# File 'lib/v20211206/models.rb', line 3658 def Description @Description end |
#ErrorLog ⇒ Object
3658 3659 3660 |
# File 'lib/v20211206/models.rb', line 3658 def ErrorLog @ErrorLog end |
#FailureReason ⇒ Object
3658 3659 3660 |
# File 'lib/v20211206/models.rb', line 3658 def FailureReason @FailureReason end |
#HelpDoc ⇒ Object
3658 3659 3660 |
# File 'lib/v20211206/models.rb', line 3658 def HelpDoc @HelpDoc end |
#SkipInfo ⇒ Object
3658 3659 3660 |
# File 'lib/v20211206/models.rb', line 3658 def SkipInfo @SkipInfo end |
#Solution ⇒ Object
3658 3659 3660 |
# File 'lib/v20211206/models.rb', line 3658 def Solution @Solution end |
Instance Method Details
#deserialize(params) ⇒ Object
3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 |
# File 'lib/v20211206/models.rb', line 3671 def deserialize(params) @CheckItemName = params['CheckItemName'] @Description = params['Description'] @CheckResult = params['CheckResult'] @FailureReason = params['FailureReason'] @Solution = params['Solution'] @ErrorLog = params['ErrorLog'] @HelpDoc = params['HelpDoc'] @SkipInfo = params['SkipInfo'] end |