Class: TencentCloud::Tke::V20180525::DescribeExistedInstancesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tke::V20180525::DescribeExistedInstancesResponse
- Defined in:
- lib/v20180525/models.rb
Overview
DescribeExistedInstances返回参数结构体
Instance Attribute Summary collapse
-
#ExistedInstanceSet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(existedinstanceset = nil, totalcount = nil, requestid = nil) ⇒ DescribeExistedInstancesResponse
constructor
A new instance of DescribeExistedInstancesResponse.
Constructor Details
#initialize(existedinstanceset = nil, totalcount = nil, requestid = nil) ⇒ DescribeExistedInstancesResponse
Returns a new instance of DescribeExistedInstancesResponse.
7780 7781 7782 7783 7784 |
# File 'lib/v20180525/models.rb', line 7780 def initialize(existedinstanceset=nil, totalcount=nil, requestid=nil) @ExistedInstanceSet = existedinstanceset @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#ExistedInstanceSet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
7778 7779 7780 |
# File 'lib/v20180525/models.rb', line 7778 def ExistedInstanceSet @ExistedInstanceSet end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
7778 7779 7780 |
# File 'lib/v20180525/models.rb', line 7778 def RequestId @RequestId end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
7778 7779 7780 |
# File 'lib/v20180525/models.rb', line 7778 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 |
# File 'lib/v20180525/models.rb', line 7786 def deserialize(params) unless params['ExistedInstanceSet'].nil? @ExistedInstanceSet = [] params['ExistedInstanceSet'].each do |i| existedinstance_tmp = ExistedInstance.new existedinstance_tmp.deserialize(i) @ExistedInstanceSet << existedinstance_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |