Class: TencentCloud::Clb::V20180317::DescribeCrossTargetsRequest

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

Overview

DescribeCrossTargets请求参数结构体

Instance Attribute Summary collapse

  • #Limit ⇒ Object
  • vpc-id - String - 是否必填:否 - (过滤条件)按照 本地私有网络ID,即负载均衡的VpcId 过滤,如:"vpc-12345678"。
  • ip - String - 是否必填:否 - (过滤条件)按照 后端服务ip 过滤,如:"192.168.0.1"。
  • listener-id - String - 是否必填:否 - (过滤条件)按照 监听器ID 过滤,如:"lbl-12345678"。
  • location-id - String - 是否必填:否 - (过滤条件)按照 七层监听器规则ID 过滤,如:"loc-12345678"。
  • .
  • #Offset ⇒ Object
  • vpc-id - String - 是否必填:否 - (过滤条件)按照 本地私有网络ID,即负载均衡的VpcId 过滤,如:"vpc-12345678"。
  • ip - String - 是否必填:否 - (过滤条件)按照 后端服务ip 过滤,如:"192.168.0.1"。
  • listener-id - String - 是否必填:否 - (过滤条件)按照 监听器ID 过滤,如:"lbl-12345678"。
  • location-id - String - 是否必填:否 - (过滤条件)按照 七层监听器规则ID 过滤,如:"loc-12345678"。
  • .

    Instance Method Summary collapse

    Constructor Details

    #initialize(limit = nil, offset = nil, filters = nil) ⇒ DescribeCrossTargetsRequest

    Returns a new instance of DescribeCrossTargetsRequest.

    
    
    2888
    2889
    2890
    2891
    2892
    # File 'lib/v20180317/models.rb', line 2888
    
    def initialize(limit=nil, offset=nil, filters=nil)
      @Limit = limit
      @Offset = offset
      @Filters = filters
    end

    Instance Attribute Details

    #FiltersObject

  • vpc-id - String - 是否必填:否 - (过滤条件)按照 本地私有网络ID,即负载均衡的VpcId 过滤,如:"vpc-12345678"。
  • ip - String - 是否必填:否 - (过滤条件)按照 后端服务ip 过滤,如:"192.168.0.1"。
  • listener-id - String - 是否必填:否 - (过滤条件)按照 监听器ID 过滤,如:"lbl-12345678"。
  • location-id - String - 是否必填:否 - (过滤条件)按照 七层监听器规则ID 过滤,如:"loc-12345678"。
  • Parameters:

    • Limit:

      返回后端服务列表数目,默认20,最大值100。

    • Offset:

      返回后端服务列表起始偏移量,默认0。

    • Filters:

      查询跨域2.0版本云联网后端子机和网卡服务列表条件,详细的过滤条件如下:

    
    
    2886
    2887
    2888
    # File 'lib/v20180317/models.rb', line 2886
    
    def Filters
      @Filters
    end

    #LimitObject

  • vpc-id - String - 是否必填:否 - (过滤条件)按照 本地私有网络ID,即负载均衡的VpcId 过滤,如:"vpc-12345678"。
  • ip - String - 是否必填:否 - (过滤条件)按照 后端服务ip 过滤,如:"192.168.0.1"。
  • listener-id - String - 是否必填:否 - (过滤条件)按照 监听器ID 过滤,如:"lbl-12345678"。
  • location-id - String - 是否必填:否 - (过滤条件)按照 七层监听器规则ID 过滤,如:"loc-12345678"。
  • Parameters:

    • Limit:

      返回后端服务列表数目,默认20,最大值100。

    • Offset:

      返回后端服务列表起始偏移量,默认0。

    • Filters:

      查询跨域2.0版本云联网后端子机和网卡服务列表条件,详细的过滤条件如下:

    
    
    2886
    2887
    2888
    # File 'lib/v20180317/models.rb', line 2886
    
    def Limit
      @Limit
    end

    #OffsetObject

  • vpc-id - String - 是否必填:否 - (过滤条件)按照 本地私有网络ID,即负载均衡的VpcId 过滤,如:"vpc-12345678"。
  • ip - String - 是否必填:否 - (过滤条件)按照 后端服务ip 过滤,如:"192.168.0.1"。
  • listener-id - String - 是否必填:否 - (过滤条件)按照 监听器ID 过滤,如:"lbl-12345678"。
  • location-id - String - 是否必填:否 - (过滤条件)按照 七层监听器规则ID 过滤,如:"loc-12345678"。
  • Parameters:

    • Limit:

      返回后端服务列表数目,默认20,最大值100。

    • Offset:

      返回后端服务列表起始偏移量,默认0。

    • Filters:

      查询跨域2.0版本云联网后端子机和网卡服务列表条件,详细的过滤条件如下:

    
    
    2886
    2887
    2888
    # File 'lib/v20180317/models.rb', line 2886
    
    def Offset
      @Offset
    end

    Instance Method Details

    #deserialize(params) ⇒ Object

    
    
    2894
    2895
    2896
    2897
    2898
    2899
    2900
    2901
    2902
    2903
    2904
    2905
    # File 'lib/v20180317/models.rb', line 2894
    
    def deserialize(params)
      @Limit = params['Limit']
      @Offset = params['Offset']
      unless params['Filters'].nil?
        @Filters = []
        params['Filters'].each do |i|
          filter_tmp = Filter.new
          filter_tmp.deserialize(i)
          @Filters << filter_tmp
        end
      end
    end