Class: TencentCloud::Cls::V20201016::DescribeConfigsResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cls::V20201016::DescribeConfigsResponse
- Defined in:
- lib/v20201016/models.rb
Overview
DescribeConfigs返回参数结构体
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) ⇒ DescribeConfigsResponse
constructor
A new instance of DescribeConfigsResponse.
Constructor Details
#initialize(configs = nil, totalcount = nil, requestid = nil) ⇒ DescribeConfigsResponse
Returns a new instance of DescribeConfigsResponse.
7411 7412 7413 7414 7415 |
# File 'lib/v20201016/models.rb', line 7411 def initialize(configs=nil, totalcount=nil, requestid=nil) @Configs = configs @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#Configs ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
7409 7410 7411 |
# File 'lib/v20201016/models.rb', line 7409 def Configs @Configs end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
7409 7410 7411 |
# File 'lib/v20201016/models.rb', line 7409 def RequestId @RequestId end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
7409 7410 7411 |
# File 'lib/v20201016/models.rb', line 7409 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 |
# File 'lib/v20201016/models.rb', line 7417 def deserialize(params) unless params['Configs'].nil? @Configs = [] params['Configs'].each do |i| configinfo_tmp = ConfigInfo.new configinfo_tmp.deserialize(i) @Configs << configinfo_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |