Class: TencentCloud::Apm::V20210622::DescribeTagValuesRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Apm::V20210622::DescribeTagValuesRequest
- Defined in:
- lib/v20210622/models.rb
Overview
DescribeTagValues请求参数结构体
Instance Attribute Summary collapse
- #EndTime ⇒ Object
- #Filters ⇒ Object
- #InstanceId ⇒ Object
- #OrFilters ⇒ Object
- #StartTime ⇒ Object
- #TagKey ⇒ Object
- #Type ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(instanceid = nil, tagkey = nil, starttime = nil, endtime = nil, filters = nil, orfilters = nil, type = nil) ⇒ DescribeTagValuesRequest
constructor
A new instance of DescribeTagValuesRequest.
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
#EndTime ⇒ Object
2753 2754 2755 |
# File 'lib/v20210622/models.rb', line 2753 def EndTime @EndTime end |
#Filters ⇒ Object
2753 2754 2755 |
# File 'lib/v20210622/models.rb', line 2753 def Filters @Filters end |
#InstanceId ⇒ Object
2753 2754 2755 |
# File 'lib/v20210622/models.rb', line 2753 def InstanceId @InstanceId end |
#OrFilters ⇒ Object
2753 2754 2755 |
# File 'lib/v20210622/models.rb', line 2753 def OrFilters @OrFilters end |
#StartTime ⇒ Object
2753 2754 2755 |
# File 'lib/v20210622/models.rb', line 2753 def StartTime @StartTime end |
#TagKey ⇒ Object
2753 2754 2755 |
# File 'lib/v20210622/models.rb', line 2753 def TagKey @TagKey end |
#Type ⇒ Object
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 |