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.
16933 16934 16935 16936 16937 16938 |
# File 'lib/v20210820/models.rb', line 16933 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,表示取不到有效值。
16931 16932 16933 |
# File 'lib/v20210820/models.rb', line 16931 def MetricType @MetricType end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
16931 16932 16933 |
# File 'lib/v20210820/models.rb', line 16931 def RequestId @RequestId end |
#TaskTableMetricInfos ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
16931 16932 16933 |
# File 'lib/v20210820/models.rb', line 16931 def TaskTableMetricInfos @TaskTableMetricInfos end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
16931 16932 16933 |
# File 'lib/v20210820/models.rb', line 16931 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
16940 16941 16942 16943 16944 16945 16946 16947 16948 16949 16950 16951 16952 |
# File 'lib/v20210820/models.rb', line 16940 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 |