Class: TencentCloud::Apm::V20210622::DescribeTagValuesRequest

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

Overview

DescribeTagValues请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(instanceid = nil, tagkey = nil, starttime = nil, endtime = nil, filters = nil, orfilters = nil, type = nil) ⇒ DescribeTagValuesRequest

Returns a new instance of DescribeTagValuesRequest.



2755
2756
2757
2758
2759
2760
2761
2762
2763
# File 'lib/v20210622/models.rb', line 2755

def initialize(instanceid=nil, tagkey=nil, starttime=nil, endtime=nil, filters=nil, orfilters=nil, type=nil)
  @InstanceId = instanceid
  @TagKey = tagkey
  @StartTime = starttime
  @EndTime = endtime
  @Filters = filters
  @OrFilters = orfilters
  @Type = type
end

Instance Attribute Details

#EndTimeObject

Parameters:

  • InstanceId:

    业务系统 ID

  • TagKey:

    维度名

  • StartTime:

    开始时间(单位为秒)

  • EndTime:

    结束时间(单位为秒)

  • Filters:

    过滤条件

  • OrFilters:

    Or 过滤条件

  • Type:

    使用类型



2753
2754
2755
# File 'lib/v20210622/models.rb', line 2753

def EndTime
  @EndTime
end

#FiltersObject

Parameters:

  • InstanceId:

    业务系统 ID

  • TagKey:

    维度名

  • StartTime:

    开始时间(单位为秒)

  • EndTime:

    结束时间(单位为秒)

  • Filters:

    过滤条件

  • OrFilters:

    Or 过滤条件

  • Type:

    使用类型



2753
2754
2755
# File 'lib/v20210622/models.rb', line 2753

def Filters
  @Filters
end

#InstanceIdObject

Parameters:

  • InstanceId:

    业务系统 ID

  • TagKey:

    维度名

  • StartTime:

    开始时间(单位为秒)

  • EndTime:

    结束时间(单位为秒)

  • Filters:

    过滤条件

  • OrFilters:

    Or 过滤条件

  • Type:

    使用类型



2753
2754
2755
# File 'lib/v20210622/models.rb', line 2753

def InstanceId
  @InstanceId
end

#OrFiltersObject

Parameters:

  • InstanceId:

    业务系统 ID

  • TagKey:

    维度名

  • StartTime:

    开始时间(单位为秒)

  • EndTime:

    结束时间(单位为秒)

  • Filters:

    过滤条件

  • OrFilters:

    Or 过滤条件

  • Type:

    使用类型



2753
2754
2755
# File 'lib/v20210622/models.rb', line 2753

def OrFilters
  @OrFilters
end

#StartTimeObject

Parameters:

  • InstanceId:

    业务系统 ID

  • TagKey:

    维度名

  • StartTime:

    开始时间(单位为秒)

  • EndTime:

    结束时间(单位为秒)

  • Filters:

    过滤条件

  • OrFilters:

    Or 过滤条件

  • Type:

    使用类型



2753
2754
2755
# File 'lib/v20210622/models.rb', line 2753

def StartTime
  @StartTime
end

#TagKeyObject

Parameters:

  • InstanceId:

    业务系统 ID

  • TagKey:

    维度名

  • StartTime:

    开始时间(单位为秒)

  • EndTime:

    结束时间(单位为秒)

  • Filters:

    过滤条件

  • OrFilters:

    Or 过滤条件

  • Type:

    使用类型



2753
2754
2755
# File 'lib/v20210622/models.rb', line 2753

def TagKey
  @TagKey
end

#TypeObject

Parameters:

  • InstanceId:

    业务系统 ID

  • TagKey:

    维度名

  • StartTime:

    开始时间(单位为秒)

  • EndTime:

    结束时间(单位为秒)

  • Filters:

    过滤条件

  • OrFilters:

    Or 过滤条件

  • Type:

    使用类型



2753
2754
2755
# File 'lib/v20210622/models.rb', line 2753

def Type
  @Type
end

Instance Method Details

#deserialize(params) ⇒ Object



2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
# File 'lib/v20210622/models.rb', line 2765

def deserialize(params)
  @InstanceId = params['InstanceId']
  @TagKey = params['TagKey']
  @StartTime = params['StartTime']
  @EndTime = params['EndTime']
  unless params['Filters'].nil?
    @Filters = []
    params['Filters'].each do |i|
      filter_tmp = Filter.new
      filter_tmp.deserialize(i)
      @Filters << filter_tmp
    end
  end
  unless params['OrFilters'].nil?
    @OrFilters = []
    params['OrFilters'].each do |i|
      filter_tmp = Filter.new
      filter_tmp.deserialize(i)
      @OrFilters << filter_tmp
    end
  end
  @Type = params['Type']
end