tencentcloud-sdk-apm 3.0.1056 → 3.0.1057
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 +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2fbadfd8a2c450155b583999462c09a33fa00586
|
4
|
+
data.tar.gz: ab07c1cebebca1e2e5f03cd0a557feb42b8adc4f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 911251394f14b8e3705fc1560e408a51df83021fafe77ca1362fd9f5bc847a35202898c06c13bb04401fa11697adb5e1b388aef81a4ac8834ac5c74d566798cb
|
7
|
+
data.tar.gz: a87cddc8db6591323c4a5a4b248561b9c630bfcca2597984153f4e696492ef43fb4a915d7b2397f08b829e7325c5594521d62dbf11aa27d0e3d51c5f66fe74ad
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1057
|
data/lib/v20210622/models.rb
CHANGED
@@ -1449,10 +1449,14 @@ module TencentCloud
|
|
1449
1449
|
# @type IsRemoteCommandExecutionAnalysis: Integer
|
1450
1450
|
# @param IsMemoryHijackingAnalysis: 是否开启内存马检测
|
1451
1451
|
# @type IsMemoryHijackingAnalysis: Integer
|
1452
|
+
# @param LogIndexType: 0=全文索引,1=键值索引
|
1453
|
+
# @type LogIndexType: Integer
|
1454
|
+
# @param LogTraceIdKey: traceId的索引key
|
1455
|
+
# @type LogTraceIdKey: String
|
1452
1456
|
|
1453
|
-
attr_accessor :InstanceId, :Name, :Tags, :Description, :TraceDuration, :OpenBilling, :SpanDailyCounters, :ErrRateThreshold, :SampleRate, :ErrorSample, :SlowRequestSavedThreshold, :IsRelatedLog, :LogRegion, :LogTopicID, :LogSet, :LogSource, :CustomShowTags, :PayMode, :ResponseDurationWarningThreshold, :Free, :IsRelatedDashboard, :DashboardTopicID, :IsSqlInjectionAnalysis, :IsInstrumentationVulnerabilityScan, :IsRemoteCommandExecutionAnalysis, :IsMemoryHijackingAnalysis
|
1457
|
+
attr_accessor :InstanceId, :Name, :Tags, :Description, :TraceDuration, :OpenBilling, :SpanDailyCounters, :ErrRateThreshold, :SampleRate, :ErrorSample, :SlowRequestSavedThreshold, :IsRelatedLog, :LogRegion, :LogTopicID, :LogSet, :LogSource, :CustomShowTags, :PayMode, :ResponseDurationWarningThreshold, :Free, :IsRelatedDashboard, :DashboardTopicID, :IsSqlInjectionAnalysis, :IsInstrumentationVulnerabilityScan, :IsRemoteCommandExecutionAnalysis, :IsMemoryHijackingAnalysis, :LogIndexType, :LogTraceIdKey
|
1454
1458
|
|
1455
|
-
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, free=nil, isrelateddashboard=nil, dashboardtopicid=nil, issqlinjectionanalysis=nil, isinstrumentationvulnerabilityscan=nil, isremotecommandexecutionanalysis=nil, ismemoryhijackinganalysis=nil)
|
1459
|
+
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, free=nil, isrelateddashboard=nil, dashboardtopicid=nil, issqlinjectionanalysis=nil, isinstrumentationvulnerabilityscan=nil, isremotecommandexecutionanalysis=nil, ismemoryhijackinganalysis=nil, logindextype=nil, logtraceidkey=nil)
|
1456
1460
|
@InstanceId = instanceid
|
1457
1461
|
@Name = name
|
1458
1462
|
@Tags = tags
|
@@ -1479,6 +1483,8 @@ module TencentCloud
|
|
1479
1483
|
@IsInstrumentationVulnerabilityScan = isinstrumentationvulnerabilityscan
|
1480
1484
|
@IsRemoteCommandExecutionAnalysis = isremotecommandexecutionanalysis
|
1481
1485
|
@IsMemoryHijackingAnalysis = ismemoryhijackinganalysis
|
1486
|
+
@LogIndexType = logindextype
|
1487
|
+
@LogTraceIdKey = logtraceidkey
|
1482
1488
|
end
|
1483
1489
|
|
1484
1490
|
def deserialize(params)
|
@@ -1515,6 +1521,8 @@ module TencentCloud
|
|
1515
1521
|
@IsInstrumentationVulnerabilityScan = params['IsInstrumentationVulnerabilityScan']
|
1516
1522
|
@IsRemoteCommandExecutionAnalysis = params['IsRemoteCommandExecutionAnalysis']
|
1517
1523
|
@IsMemoryHijackingAnalysis = params['IsMemoryHijackingAnalysis']
|
1524
|
+
@LogIndexType = params['LogIndexType']
|
1525
|
+
@LogTraceIdKey = params['LogTraceIdKey']
|
1518
1526
|
end
|
1519
1527
|
end
|
1520
1528
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-apm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1057
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-05-
|
11
|
+
date: 2025-05-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|