Class: TencentCloud::Cls::V20201016::DescribeConfigExtrasResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cls::V20201016::DescribeConfigExtrasResponse
- Defined in:
- lib/v20201016/models.rb
Overview
DescribeConfigExtras返回参数结构体
Instance Attribute Summary collapse
-
#Configs ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(configs = nil, totalcount = nil, requestid = nil) ⇒ DescribeConfigExtrasResponse
constructor
A new instance of DescribeConfigExtrasResponse.
Constructor Details
#initialize(configs = nil, totalcount = nil, requestid = nil) ⇒ DescribeConfigExtrasResponse
Returns a new instance of DescribeConfigExtrasResponse.
7284 7285 7286 7287 7288 |
# File 'lib/v20201016/models.rb', line 7284 def initialize(configs=nil, totalcount=nil, requestid=nil) @Configs = configs @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#Configs ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
7282 7283 7284 |
# File 'lib/v20201016/models.rb', line 7282 def Configs @Configs end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
7282 7283 7284 |
# File 'lib/v20201016/models.rb', line 7282 def RequestId @RequestId end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
7282 7283 7284 |
# File 'lib/v20201016/models.rb', line 7282 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 |
# File 'lib/v20201016/models.rb', line 7290 def deserialize(params) unless params['Configs'].nil? @Configs = [] params['Configs'].each do |i| configextrainfo_tmp = ConfigExtraInfo.new configextrainfo_tmp.deserialize(i) @Configs << configextrainfo_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |