Class: TencentCloud::Oceanus::V20190422::DescribeJobSavepointResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Oceanus::V20190422::DescribeJobSavepointResponse
- Defined in:
- lib/v20190422/models.rb
Overview
DescribeJobSavepoint返回参数结构体
Instance Attribute Summary collapse
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RunningSavepoint ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RunningTotalNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Savepoint ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalnumber = nil, savepoint = nil, runningsavepoint = nil, runningtotalnumber = nil, requestid = nil) ⇒ DescribeJobSavepointResponse
constructor
A new instance of DescribeJobSavepointResponse.
Constructor Details
#initialize(totalnumber = nil, savepoint = nil, runningsavepoint = nil, runningtotalnumber = nil, requestid = nil) ⇒ DescribeJobSavepointResponse
Returns a new instance of DescribeJobSavepointResponse.
2234 2235 2236 2237 2238 2239 2240 |
# File 'lib/v20190422/models.rb', line 2234 def initialize(totalnumber=nil, savepoint=nil, runningsavepoint=nil, runningtotalnumber=nil, requestid=nil) @TotalNumber = totalnumber @Savepoint = savepoint @RunningSavepoint = runningsavepoint @RunningTotalNumber = runningtotalnumber @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2232 2233 2234 |
# File 'lib/v20190422/models.rb', line 2232 def RequestId @RequestId end |
#RunningSavepoint ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2232 2233 2234 |
# File 'lib/v20190422/models.rb', line 2232 def RunningSavepoint @RunningSavepoint end |
#RunningTotalNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2232 2233 2234 |
# File 'lib/v20190422/models.rb', line 2232 def RunningTotalNumber @RunningTotalNumber end |
#Savepoint ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2232 2233 2234 |
# File 'lib/v20190422/models.rb', line 2232 def Savepoint @Savepoint end |
#TotalNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2232 2233 2234 |
# File 'lib/v20190422/models.rb', line 2232 def TotalNumber @TotalNumber end |
Instance Method Details
#deserialize(params) ⇒ Object
2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 |
# File 'lib/v20190422/models.rb', line 2242 def deserialize(params) @TotalNumber = params['TotalNumber'] unless params['Savepoint'].nil? @Savepoint = [] params['Savepoint'].each do |i| savepoint_tmp = Savepoint.new savepoint_tmp.deserialize(i) @Savepoint << savepoint_tmp end end unless params['RunningSavepoint'].nil? @RunningSavepoint = [] params['RunningSavepoint'].each do |i| savepoint_tmp = Savepoint.new savepoint_tmp.deserialize(i) @RunningSavepoint << savepoint_tmp end end @RunningTotalNumber = params['RunningTotalNumber'] @RequestId = params['RequestId'] end |