tencentcloud-sdk-apm 3.0.936 → 3.0.937
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 +10 -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: 7ccdb3b4ed6403c670a2bd2a2e6efb4480897651
|
|
4
|
+
data.tar.gz: fccee349f322a81212b9387ef0adb7cc5b47cc8f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2915b3b2b8e236cd2e6961f635b2ee53ace14d4e577353d5a7d41615e8aca447cbae085eb86f927e488aa65879946e645f115f73448705fe67aff2a17646506b
|
|
7
|
+
data.tar.gz: ab609de3beba433edfd7576bfe3260e8c97983dbb390ed376204c351391e91001a03e546665b7dc3404452a18e5e7601464d549f716c29d4ad14d134216a1cc5
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.937
|
data/lib/v20210622/models.rb
CHANGED
|
@@ -1353,10 +1353,14 @@ module TencentCloud
|
|
|
1353
1353
|
# @type PayMode: Integer
|
|
1354
1354
|
# @param ResponseDurationWarningThreshold: 响应时间满意阈值
|
|
1355
1355
|
# @type ResponseDurationWarningThreshold: Integer
|
|
1356
|
+
# @param IsRelatedDashboard: 是否关联dashboard: 0 关 1 开
|
|
1357
|
+
# @type IsRelatedDashboard: Integer
|
|
1358
|
+
# @param DashboardTopicID: dashboard ID
|
|
1359
|
+
# @type DashboardTopicID: String
|
|
1356
1360
|
|
|
1357
|
-
attr_accessor :InstanceId, :Name, :Tags, :Description, :TraceDuration, :OpenBilling, :SpanDailyCounters, :ErrRateThreshold, :SampleRate, :ErrorSample, :SlowRequestSavedThreshold, :IsRelatedLog, :LogRegion, :LogTopicID, :LogSet, :LogSource, :CustomShowTags, :PayMode, :ResponseDurationWarningThreshold
|
|
1361
|
+
attr_accessor :InstanceId, :Name, :Tags, :Description, :TraceDuration, :OpenBilling, :SpanDailyCounters, :ErrRateThreshold, :SampleRate, :ErrorSample, :SlowRequestSavedThreshold, :IsRelatedLog, :LogRegion, :LogTopicID, :LogSet, :LogSource, :CustomShowTags, :PayMode, :ResponseDurationWarningThreshold, :IsRelatedDashboard, :DashboardTopicID
|
|
1358
1362
|
|
|
1359
|
-
def initialize(instanceid=nil, name=nil, tags=nil, description=nil, traceduration=nil, openbilling=nil, spandailycounters=nil, errratethreshold=nil, samplerate=nil, errorsample=nil, slowrequestsavedthreshold=nil, isrelatedlog=nil, logregion=nil, logtopicid=nil, logset=nil, logsource=nil, customshowtags=nil, paymode=nil, responsedurationwarningthreshold=nil)
|
|
1363
|
+
def initialize(instanceid=nil, name=nil, tags=nil, description=nil, traceduration=nil, openbilling=nil, spandailycounters=nil, errratethreshold=nil, samplerate=nil, errorsample=nil, slowrequestsavedthreshold=nil, isrelatedlog=nil, logregion=nil, logtopicid=nil, logset=nil, logsource=nil, customshowtags=nil, paymode=nil, responsedurationwarningthreshold=nil, isrelateddashboard=nil, dashboardtopicid=nil)
|
|
1360
1364
|
@InstanceId = instanceid
|
|
1361
1365
|
@Name = name
|
|
1362
1366
|
@Tags = tags
|
|
@@ -1376,6 +1380,8 @@ module TencentCloud
|
|
|
1376
1380
|
@CustomShowTags = customshowtags
|
|
1377
1381
|
@PayMode = paymode
|
|
1378
1382
|
@ResponseDurationWarningThreshold = responsedurationwarningthreshold
|
|
1383
|
+
@IsRelatedDashboard = isrelateddashboard
|
|
1384
|
+
@DashboardTopicID = dashboardtopicid
|
|
1379
1385
|
end
|
|
1380
1386
|
|
|
1381
1387
|
def deserialize(params)
|
|
@@ -1405,6 +1411,8 @@ module TencentCloud
|
|
|
1405
1411
|
@CustomShowTags = params['CustomShowTags']
|
|
1406
1412
|
@PayMode = params['PayMode']
|
|
1407
1413
|
@ResponseDurationWarningThreshold = params['ResponseDurationWarningThreshold']
|
|
1414
|
+
@IsRelatedDashboard = params['IsRelatedDashboard']
|
|
1415
|
+
@DashboardTopicID = params['DashboardTopicID']
|
|
1408
1416
|
end
|
|
1409
1417
|
end
|
|
1410
1418
|
|