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.
2343 2344 2345 2346 2347 2348 2349 2350 2351 |
# File 'lib/v20210622/models.rb', line 2343 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
2341 2342 2343 |
# File 'lib/v20210622/models.rb', line 2341 def EndTime @EndTime end |
#Filters ⇒ Object
2341 2342 2343 |
# File 'lib/v20210622/models.rb', line 2341 def Filters @Filters end |
#InstanceId ⇒ Object
2341 2342 2343 |
# File 'lib/v20210622/models.rb', line 2341 def InstanceId @InstanceId end |
#OrFilters ⇒ Object
2341 2342 2343 |
# File 'lib/v20210622/models.rb', line 2341 def OrFilters @OrFilters end |
#StartTime ⇒ Object
2341 2342 2343 |
# File 'lib/v20210622/models.rb', line 2341 def StartTime @StartTime end |
#TagKey ⇒ Object
2341 2342 2343 |
# File 'lib/v20210622/models.rb', line 2341 def TagKey @TagKey end |
#Type ⇒ Object
2341 2342 2343 |
# File 'lib/v20210622/models.rb', line 2341 def Type @Type end |
Instance Method Details
#deserialize(params) ⇒ Object
2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 |
# File 'lib/v20210622/models.rb', line 2353 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 |