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
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.
7734 7735 7736 7737 7738 |
# File 'lib/v20180525/models.rb', line 7734 def initialize(existedinstanceset=nil, totalcount=nil, requestid=nil) @ExistedInstanceSet = existedinstanceset @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#ExistedInstanceSet ⇒ Object
7732 7733 7734 |
# File 'lib/v20180525/models.rb', line 7732 def ExistedInstanceSet @ExistedInstanceSet end |
#RequestId ⇒ Object
7732 7733 7734 |
# File 'lib/v20180525/models.rb', line 7732 def RequestId @RequestId end |
#TotalCount ⇒ Object
7732 7733 7734 |
# File 'lib/v20180525/models.rb', line 7732 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 |
# File 'lib/v20180525/models.rb', line 7740 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 |