Class: TencentCloud::Bmeip::V20180625::DescribeEipAclsResponse

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

Overview

DescribeEipAcls返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(totalcount = nil, eipacllist = nil, requestid = nil) ⇒ DescribeEipAclsResponse

Returns a new instance of DescribeEipAclsResponse.



430
431
432
433
434
# File 'lib/v20180625/models.rb', line 430

def initialize(totalcount=nil, eipacllist=nil, requestid=nil)
  @TotalCount = totalcount
  @EipAclList = eipacllist
  @RequestId = requestid
end

Instance Attribute Details

#EipAclListObject

Parameters:

  • TotalCount:

    返回 EIPACL 列表总数

  • EipAclList:

    EIPACL列表

  • RequestId:

    唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。



428
429
430
# File 'lib/v20180625/models.rb', line 428

def EipAclList
  @EipAclList
end

#RequestIdObject

Parameters:

  • TotalCount:

    返回 EIPACL 列表总数

  • EipAclList:

    EIPACL列表

  • RequestId:

    唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。



428
429
430
# File 'lib/v20180625/models.rb', line 428

def RequestId
  @RequestId
end

#TotalCountObject

Parameters:

  • TotalCount:

    返回 EIPACL 列表总数

  • EipAclList:

    EIPACL列表

  • RequestId:

    唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。



428
429
430
# File 'lib/v20180625/models.rb', line 428

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



436
437
438
439
440
441
442
443
444
445
446
447
# File 'lib/v20180625/models.rb', line 436

def deserialize(params)
  @TotalCount = params['TotalCount']
  unless params['EipAclList'].nil?
    @EipAclList = []
    params['EipAclList'].each do |i|
      eipacl_tmp = EipAcl.new
      eipacl_tmp.deserialize(i)
      @EipAclList << eipacl_tmp
    end
  end
  @RequestId = params['RequestId']
end