Class: TencentCloud::Dts::V20211206::DescribeCheckSyncJobResultResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dts::V20211206::DescribeCheckSyncJobResultResponse
- Defined in:
- lib/v20211206/models.rb
Overview
DescribeCheckSyncJobResult返回参数结构体
Instance Attribute Summary collapse
-
#Progress ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Status ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#StepCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#StepCur ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#StepInfos ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(status = nil, stepcount = nil, stepcur = nil, progress = nil, stepinfos = nil, requestid = nil) ⇒ DescribeCheckSyncJobResultResponse
constructor
A new instance of DescribeCheckSyncJobResultResponse.
Constructor Details
#initialize(status = nil, stepcount = nil, stepcur = nil, progress = nil, stepinfos = nil, requestid = nil) ⇒ DescribeCheckSyncJobResultResponse
Returns a new instance of DescribeCheckSyncJobResultResponse.
2116 2117 2118 2119 2120 2121 2122 2123 |
# File 'lib/v20211206/models.rb', line 2116 def initialize(status=nil, stepcount=nil, stepcur=nil, progress=nil, stepinfos=nil, requestid=nil) @Status = status @StepCount = stepcount @StepCur = stepcur @Progress = progress @StepInfos = stepinfos @RequestId = requestid end |
Instance Attribute Details
#Progress ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2114 2115 2116 |
# File 'lib/v20211206/models.rb', line 2114 def Progress @Progress end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2114 2115 2116 |
# File 'lib/v20211206/models.rb', line 2114 def RequestId @RequestId end |
#Status ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2114 2115 2116 |
# File 'lib/v20211206/models.rb', line 2114 def Status @Status end |
#StepCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2114 2115 2116 |
# File 'lib/v20211206/models.rb', line 2114 def StepCount @StepCount end |
#StepCur ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2114 2115 2116 |
# File 'lib/v20211206/models.rb', line 2114 def StepCur @StepCur end |
#StepInfos ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2114 2115 2116 |
# File 'lib/v20211206/models.rb', line 2114 def StepInfos @StepInfos end |
Instance Method Details
#deserialize(params) ⇒ Object
2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 |
# File 'lib/v20211206/models.rb', line 2125 def deserialize(params) @Status = params['Status'] @StepCount = params['StepCount'] @StepCur = params['StepCur'] @Progress = params['Progress'] unless params['StepInfos'].nil? @StepInfos = [] params['StepInfos'].each do |i| stepinfo_tmp = StepInfo.new stepinfo_tmp.deserialize(i) @StepInfos << stepinfo_tmp end end @RequestId = params['RequestId'] end |