Class: TencentCloud::Wedata::V20210820::DescribeTaskTableMetricOverviewResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::DescribeTaskTableMetricOverviewResponse
- Defined in:
- lib/v20210820/models.rb
Overview
DescribeTaskTableMetricOverview返回参数结构体
Instance Attribute Summary collapse
-
#MetricType ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#TaskTableMetricInfos ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(tasktablemetricinfos = nil, totalcount = nil, metrictype = nil, requestid = nil) ⇒ DescribeTaskTableMetricOverviewResponse
constructor
A new instance of DescribeTaskTableMetricOverviewResponse.
Constructor Details
#initialize(tasktablemetricinfos = nil, totalcount = nil, metrictype = nil, requestid = nil) ⇒ DescribeTaskTableMetricOverviewResponse
Returns a new instance of DescribeTaskTableMetricOverviewResponse.
17016 17017 17018 17019 17020 17021 |
# File 'lib/v20210820/models.rb', line 17016 def initialize(tasktablemetricinfos=nil, totalcount=nil, metrictype=nil, requestid=nil) @TaskTableMetricInfos = tasktablemetricinfos @TotalCount = totalcount @MetricType = metrictype @RequestId = requestid end |
Instance Attribute Details
#MetricType ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
17014 17015 17016 |
# File 'lib/v20210820/models.rb', line 17014 def MetricType @MetricType end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
17014 17015 17016 |
# File 'lib/v20210820/models.rb', line 17014 def RequestId @RequestId end |
#TaskTableMetricInfos ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
17014 17015 17016 |
# File 'lib/v20210820/models.rb', line 17014 def TaskTableMetricInfos @TaskTableMetricInfos end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
17014 17015 17016 |
# File 'lib/v20210820/models.rb', line 17014 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
17023 17024 17025 17026 17027 17028 17029 17030 17031 17032 17033 17034 17035 |
# File 'lib/v20210820/models.rb', line 17023 def deserialize(params) unless params['TaskTableMetricInfos'].nil? @TaskTableMetricInfos = [] params['TaskTableMetricInfos'].each do |i| tasktablemetricinfo_tmp = TaskTableMetricInfo.new tasktablemetricinfo_tmp.deserialize(i) @TaskTableMetricInfos << tasktablemetricinfo_tmp end end @TotalCount = params['TotalCount'] @MetricType = params['MetricType'] @RequestId = params['RequestId'] end |