Class: TencentCloud::Cdn::V20180606::DescribeIpStatusResponse

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

Overview

DescribeIpStatus返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(ips = nil, totalcount = nil, requestid = nil) ⇒ DescribeIpStatusResponse

Returns a new instance of DescribeIpStatusResponse.



3454
3455
3456
3457
3458
# File 'lib/v20180606/models.rb', line 3454

def initialize(ips=nil, totalcount=nil, requestid=nil)
  @Ips = ips
  @TotalCount = totalcount
  @RequestId = requestid
end

Instance Attribute Details

#IpsObject

Parameters:

  • Ips:

    节点列表

  • TotalCount:

    节点总个数

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



3452
3453
3454
# File 'lib/v20180606/models.rb', line 3452

def Ips
  @Ips
end

#RequestIdObject

Parameters:

  • Ips:

    节点列表

  • TotalCount:

    节点总个数

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



3452
3453
3454
# File 'lib/v20180606/models.rb', line 3452

def RequestId
  @RequestId
end

#TotalCountObject

Parameters:

  • Ips:

    节点列表

  • TotalCount:

    节点总个数

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



3452
3453
3454
# File 'lib/v20180606/models.rb', line 3452

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
# File 'lib/v20180606/models.rb', line 3460

def deserialize(params)
  unless params['Ips'].nil?
    @Ips = []
    params['Ips'].each do |i|
      ipstatus_tmp = IpStatus.new
      ipstatus_tmp.deserialize(i)
      @Ips << ipstatus_tmp
    end
  end
  @TotalCount = params['TotalCount']
  @RequestId = params['RequestId']
end