tencentcloud-sdk-apm 1.0.287 → 1.0.288
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210622/models.rb +6 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7d6100797544cce78e3c1a049f8276fdcceb9534
|
|
4
|
+
data.tar.gz: a1582af7de3920c320fa8e4c6d4a4c021738ebcd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0f3eba22fcc2009f5597306609b46f0b5d49b5f7f79d8996c22fd9ea1e1a7f636b905704bee1a3c425b0d8933aee9858be12e1c7d66fddeee63ef189365d55d4
|
|
7
|
+
data.tar.gz: 6bb7ae512607fe01b03cf24ffe1dcfb0ff54cbf530a1932b176fa9b175a8b99280e553a9f75026bb17677338fbe1f4e44b904109b5a71af32dc507c60d44e96e
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.288
|
data/lib/v20210622/models.rb
CHANGED
|
@@ -425,13 +425,16 @@ module TencentCloud
|
|
|
425
425
|
# @type InstanceName: String
|
|
426
426
|
# @param InstanceIds: 过滤实例ID
|
|
427
427
|
# @type InstanceIds: Array
|
|
428
|
+
# @param DemoInstanceFlag: 是否查询官方demo实例
|
|
429
|
+
# @type DemoInstanceFlag: Integer
|
|
428
430
|
|
|
429
|
-
attr_accessor :Tags, :InstanceName, :InstanceIds
|
|
431
|
+
attr_accessor :Tags, :InstanceName, :InstanceIds, :DemoInstanceFlag
|
|
430
432
|
|
|
431
|
-
def initialize(tags=nil, instancename=nil, instanceids=nil)
|
|
433
|
+
def initialize(tags=nil, instancename=nil, instanceids=nil, demoinstanceflag=nil)
|
|
432
434
|
@Tags = tags
|
|
433
435
|
@InstanceName = instancename
|
|
434
436
|
@InstanceIds = instanceids
|
|
437
|
+
@DemoInstanceFlag = demoinstanceflag
|
|
435
438
|
end
|
|
436
439
|
|
|
437
440
|
def deserialize(params)
|
|
@@ -445,6 +448,7 @@ module TencentCloud
|
|
|
445
448
|
end
|
|
446
449
|
@InstanceName = params['InstanceName']
|
|
447
450
|
@InstanceIds = params['InstanceIds']
|
|
451
|
+
@DemoInstanceFlag = params['DemoInstanceFlag']
|
|
448
452
|
end
|
|
449
453
|
end
|
|
450
454
|
|