Class: TencentCloud::Sslpod::V20190605::DescribeDomains

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

Overview

监控域名列表

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(result = nil, searchtotal = nil, total = nil, allowmonitoringcount = nil, currentmonitoringcount = nil, allowmaxadddomain = nil) ⇒ DescribeDomains

Returns a new instance of DescribeDomains.



413
414
415
416
417
418
419
420
# File 'lib/v20190605/models.rb', line 413

def initialize(result=nil, searchtotal=nil, total=nil, allowmonitoringcount=nil, currentmonitoringcount=nil, allowmaxadddomain=nil)
  @Result = result
  @SearchTotal = searchtotal
  @Total = total
  @AllowMonitoringCount = allowmonitoringcount
  @CurrentMonitoringCount = currentmonitoringcount
  @AllowMaxAddDomain = allowmaxadddomain
end

Instance Attribute Details

#AllowMaxAddDomainObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Result:

    列表数据

  • SearchTotal:

    搜索出来的数量

  • Total:

    总数

  • AllowMonitoringCount:

    允许的监控数量

  • CurrentMonitoringCount:

    当前监控的数量

  • AllowMaxAddDomain:

    允许添加域名总数



411
412
413
# File 'lib/v20190605/models.rb', line 411

def AllowMaxAddDomain
  @AllowMaxAddDomain
end

#AllowMonitoringCountObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Result:

    列表数据

  • SearchTotal:

    搜索出来的数量

  • Total:

    总数

  • AllowMonitoringCount:

    允许的监控数量

  • CurrentMonitoringCount:

    当前监控的数量

  • AllowMaxAddDomain:

    允许添加域名总数



411
412
413
# File 'lib/v20190605/models.rb', line 411

def AllowMonitoringCount
  @AllowMonitoringCount
end

#CurrentMonitoringCountObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Result:

    列表数据

  • SearchTotal:

    搜索出来的数量

  • Total:

    总数

  • AllowMonitoringCount:

    允许的监控数量

  • CurrentMonitoringCount:

    当前监控的数量

  • AllowMaxAddDomain:

    允许添加域名总数



411
412
413
# File 'lib/v20190605/models.rb', line 411

def CurrentMonitoringCount
  @CurrentMonitoringCount
end

#ResultObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Result:

    列表数据

  • SearchTotal:

    搜索出来的数量

  • Total:

    总数

  • AllowMonitoringCount:

    允许的监控数量

  • CurrentMonitoringCount:

    当前监控的数量

  • AllowMaxAddDomain:

    允许添加域名总数



411
412
413
# File 'lib/v20190605/models.rb', line 411

def Result
  @Result
end

#SearchTotalObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Result:

    列表数据

  • SearchTotal:

    搜索出来的数量

  • Total:

    总数

  • AllowMonitoringCount:

    允许的监控数量

  • CurrentMonitoringCount:

    当前监控的数量

  • AllowMaxAddDomain:

    允许添加域名总数



411
412
413
# File 'lib/v20190605/models.rb', line 411

def SearchTotal
  @SearchTotal
end

#TotalObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Result:

    列表数据

  • SearchTotal:

    搜索出来的数量

  • Total:

    总数

  • AllowMonitoringCount:

    允许的监控数量

  • CurrentMonitoringCount:

    当前监控的数量

  • AllowMaxAddDomain:

    允许添加域名总数



411
412
413
# File 'lib/v20190605/models.rb', line 411

def Total
  @Total
end

Instance Method Details

#deserialize(params) ⇒ Object



422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
# File 'lib/v20190605/models.rb', line 422

def deserialize(params)
  unless params['Result'].nil?
    @Result = []
    params['Result'].each do |i|
      domainsiteinfo_tmp = DomainSiteInfo.new
      domainsiteinfo_tmp.deserialize(i)
      @Result << domainsiteinfo_tmp
    end
  end
  @SearchTotal = params['SearchTotal']
  @Total = params['Total']
  @AllowMonitoringCount = params['AllowMonitoringCount']
  @CurrentMonitoringCount = params['CurrentMonitoringCount']
  @AllowMaxAddDomain = params['AllowMaxAddDomain']
end