Class: TencentCloud::Dts::V20211206::StepDetailInfo
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dts::V20211206::StepDetailInfo
- Defined in:
- lib/v20211206/models.rb
Overview
步骤信息
Instance Attribute Summary collapse
- #Errors ⇒ Object
- #Percent ⇒ Object
- #StartTime ⇒ Object
- #Status ⇒ Object
- #StepId ⇒ Object
- #StepMessage ⇒ Object
- #StepName ⇒ Object
- #StepNo ⇒ Object
- #Warnings ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(stepno = nil, stepname = nil, stepid = nil, status = nil, starttime = nil, stepmessage = nil, percent = nil, errors = nil, warnings = nil) ⇒ StepDetailInfo
constructor
A new instance of StepDetailInfo.
Constructor Details
#initialize(stepno = nil, stepname = nil, stepid = nil, status = nil, starttime = nil, stepmessage = nil, percent = nil, errors = nil, warnings = nil) ⇒ StepDetailInfo
Returns a new instance of StepDetailInfo.
6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 |
# File 'lib/v20211206/models.rb', line 6895 def initialize(stepno=nil, stepname=nil, stepid=nil, status=nil, starttime=nil, =nil, percent=nil, errors=nil, warnings=nil) @StepNo = stepno @StepName = stepname @StepId = stepid @Status = status @StartTime = starttime @StepMessage = @Percent = percent @Errors = errors @Warnings = warnings end |
Instance Attribute Details
#Errors ⇒ Object
6893 6894 6895 |
# File 'lib/v20211206/models.rb', line 6893 def Errors @Errors end |
#Percent ⇒ Object
6893 6894 6895 |
# File 'lib/v20211206/models.rb', line 6893 def Percent @Percent end |
#StartTime ⇒ Object
6893 6894 6895 |
# File 'lib/v20211206/models.rb', line 6893 def StartTime @StartTime end |
#Status ⇒ Object
6893 6894 6895 |
# File 'lib/v20211206/models.rb', line 6893 def Status @Status end |
#StepId ⇒ Object
6893 6894 6895 |
# File 'lib/v20211206/models.rb', line 6893 def StepId @StepId end |
#StepMessage ⇒ Object
6893 6894 6895 |
# File 'lib/v20211206/models.rb', line 6893 def StepMessage @StepMessage end |
#StepName ⇒ Object
6893 6894 6895 |
# File 'lib/v20211206/models.rb', line 6893 def StepName @StepName end |
#StepNo ⇒ Object
6893 6894 6895 |
# File 'lib/v20211206/models.rb', line 6893 def StepNo @StepNo end |
#Warnings ⇒ Object
6893 6894 6895 |
# File 'lib/v20211206/models.rb', line 6893 def Warnings @Warnings end |
Instance Method Details
#deserialize(params) ⇒ Object
6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 |
# File 'lib/v20211206/models.rb', line 6907 def deserialize(params) @StepNo = params['StepNo'] @StepName = params['StepName'] @StepId = params['StepId'] @Status = params['Status'] @StartTime = params['StartTime'] @StepMessage = params['StepMessage'] @Percent = params['Percent'] unless params['Errors'].nil? @Errors = [] params['Errors'].each do |i| processsteptip_tmp = ProcessStepTip.new processsteptip_tmp.deserialize(i) @Errors << processsteptip_tmp end end unless params['Warnings'].nil? @Warnings = [] params['Warnings'].each do |i| processsteptip_tmp = ProcessStepTip.new processsteptip_tmp.deserialize(i) @Warnings << processsteptip_tmp end end end |