Class: TencentCloud::Tcr::V20190924::DescribeInternalEndpointDnsStatusRequest

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20190924/models.rb

Overview

DescribeInternalEndpointDnsStatus请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(vpcset = nil) ⇒ DescribeInternalEndpointDnsStatusRequest

Returns a new instance of DescribeInternalEndpointDnsStatusRequest.



3337
3338
3339
# File 'lib/v20190924/models.rb', line 3337

def initialize(vpcset=nil)
  @VpcSet = vpcset
end

Instance Attribute Details

#VpcSet ⇒ Object

Parameters:

  • VpcSet: —

    vpc列表



3335
3336
3337
# File 'lib/v20190924/models.rb', line 3335

def VpcSet
  @VpcSet
end

Instance Method Details

#deserialize(params) ⇒ Object



3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
# File 'lib/v20190924/models.rb', line 3341

def deserialize(params)
  unless params['VpcSet'].nil?
    @VpcSet = []
    params['VpcSet'].each do |i|
      vpcanddomaininfo_tmp = VpcAndDomainInfo.new
      vpcanddomaininfo_tmp.deserialize(i)
      @VpcSet << vpcanddomaininfo_tmp
    end
  end
end