Class: TencentCloud::Wedata::V20250806::DependencyConfigPage
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20250806::DependencyConfigPage
- Defined in:
- lib/v20250806/models.rb
Overview
查询任务上游依赖详情分页
Instance Attribute Summary collapse
-
#Items ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#PageNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#PageSize ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalPageNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, totalpagenumber = nil, pagenumber = nil, pagesize = nil, items = nil) ⇒ DependencyConfigPage
constructor
A new instance of DependencyConfigPage.
Constructor Details
#initialize(totalcount = nil, totalpagenumber = nil, pagenumber = nil, pagesize = nil, items = nil) ⇒ DependencyConfigPage
Returns a new instance of DependencyConfigPage.
2366 2367 2368 2369 2370 2371 2372 |
# File 'lib/v20250806/models.rb', line 2366 def initialize(totalcount=nil, totalpagenumber=nil, pagenumber=nil, pagesize=nil, items=nil) @TotalCount = totalcount @TotalPageNumber = totalpagenumber @PageNumber = pagenumber @PageSize = pagesize @Items = items end |
Instance Attribute Details
#Items ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2364 2365 2366 |
# File 'lib/v20250806/models.rb', line 2364 def Items @Items end |
#PageNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2364 2365 2366 |
# File 'lib/v20250806/models.rb', line 2364 def PageNumber @PageNumber end |
#PageSize ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2364 2365 2366 |
# File 'lib/v20250806/models.rb', line 2364 def PageSize @PageSize end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2364 2365 2366 |
# File 'lib/v20250806/models.rb', line 2364 def TotalCount @TotalCount end |
#TotalPageNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2364 2365 2366 |
# File 'lib/v20250806/models.rb', line 2364 def TotalPageNumber @TotalPageNumber end |
Instance Method Details
#deserialize(params) ⇒ Object
2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 |
# File 'lib/v20250806/models.rb', line 2374 def deserialize(params) @TotalCount = params['TotalCount'] @TotalPageNumber = params['TotalPageNumber'] @PageNumber = params['PageNumber'] @PageSize = params['PageSize'] unless params['Items'].nil? @Items = [] params['Items'].each do |i| taskdependdto_tmp = TaskDependDto.new taskdependdto_tmp.deserialize(i) @Items << taskdependdto_tmp end end end |