Class: TencentCloud::Emr::V20190103::DescribeAutoScaleGroupGlobalConfResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Emr::V20190103::DescribeAutoScaleGroupGlobalConfResponse
- Defined in:
- lib/v20190103/models.rb
Overview
DescribeAutoScaleGroupGlobalConf返回参数结构体
Instance Attribute Summary collapse
-
#GroupGlobalConfs ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(groupglobalconfs = nil, totalcount = nil, requestid = nil) ⇒ DescribeAutoScaleGroupGlobalConfResponse
constructor
A new instance of DescribeAutoScaleGroupGlobalConfResponse.
Constructor Details
#initialize(groupglobalconfs = nil, totalcount = nil, requestid = nil) ⇒ DescribeAutoScaleGroupGlobalConfResponse
Returns a new instance of DescribeAutoScaleGroupGlobalConfResponse.
2912 2913 2914 2915 2916 |
# File 'lib/v20190103/models.rb', line 2912 def initialize(groupglobalconfs=nil, totalcount=nil, requestid=nil) @GroupGlobalConfs = groupglobalconfs @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#GroupGlobalConfs ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2910 2911 2912 |
# File 'lib/v20190103/models.rb', line 2910 def GroupGlobalConfs @GroupGlobalConfs end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2910 2911 2912 |
# File 'lib/v20190103/models.rb', line 2910 def RequestId @RequestId end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2910 2911 2912 |
# File 'lib/v20190103/models.rb', line 2910 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 |
# File 'lib/v20190103/models.rb', line 2918 def deserialize(params) unless params['GroupGlobalConfs'].nil? @GroupGlobalConfs = [] params['GroupGlobalConfs'].each do |i| groupglobalconfs_tmp = GroupGlobalConfs.new groupglobalconfs_tmp.deserialize(i) @GroupGlobalConfs << groupglobalconfs_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |