Class: TencentCloud::Wedata::V20210820::InstanceOpsInfoPage
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::InstanceOpsInfoPage
- Defined in:
- lib/v20210820/models.rb
Overview
任务运行历史分页记录
Instance Attribute Summary collapse
-
#Items ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, items = nil) ⇒ InstanceOpsInfoPage
constructor
A new instance of InstanceOpsInfoPage.
Constructor Details
#initialize(totalcount = nil, items = nil) ⇒ InstanceOpsInfoPage
Returns a new instance of InstanceOpsInfoPage.
23947 23948 23949 23950 |
# File 'lib/v20210820/models.rb', line 23947 def initialize(totalcount=nil, items=nil) @TotalCount = totalcount @Items = items end |
Instance Attribute Details
#Items ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
23945 23946 23947 |
# File 'lib/v20210820/models.rb', line 23945 def Items @Items end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
23945 23946 23947 |
# File 'lib/v20210820/models.rb', line 23945 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
23952 23953 23954 23955 23956 23957 23958 23959 23960 23961 23962 |
# File 'lib/v20210820/models.rb', line 23952 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Items'].nil? @Items = [] params['Items'].each do |i| instanceopsdto_tmp = InstanceOpsDto.new instanceopsdto_tmp.deserialize(i) @Items << instanceopsdto_tmp end end end |