Class: TencentCloud::Ssl::V20191205::DescribeHostApiGatewayInstanceListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ssl::V20191205::DescribeHostApiGatewayInstanceListResponse
- Defined in:
- lib/v20191205/models.rb
Overview
DescribeHostApiGatewayInstanceList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(instancelist = nil, totalcount = nil, requestid = nil) ⇒ DescribeHostApiGatewayInstanceListResponse
constructor
A new instance of DescribeHostApiGatewayInstanceListResponse.
Constructor Details
#initialize(instancelist = nil, totalcount = nil, requestid = nil) ⇒ DescribeHostApiGatewayInstanceListResponse
Returns a new instance of DescribeHostApiGatewayInstanceListResponse.
4170 4171 4172 4173 4174 |
# File 'lib/v20191205/models.rb', line 4170 def initialize(instancelist=nil, totalcount=nil, requestid=nil) @InstanceList = instancelist @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#InstanceList ⇒ Object
4168 4169 4170 |
# File 'lib/v20191205/models.rb', line 4168 def InstanceList @InstanceList end |
#RequestId ⇒ Object
4168 4169 4170 |
# File 'lib/v20191205/models.rb', line 4168 def RequestId @RequestId end |
#TotalCount ⇒ Object
4168 4169 4170 |
# File 'lib/v20191205/models.rb', line 4168 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 |
# File 'lib/v20191205/models.rb', line 4176 def deserialize(params) unless params['InstanceList'].nil? @InstanceList = [] params['InstanceList'].each do |i| = ApiGatewayInstanceDetail.new .deserialize(i) @InstanceList << end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |