tencentcloud-sdk-apm 1.0.233 → 1.0.238
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 +22 -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: 37d2ac60d96517ad3970b6acfbfd3a0045779178
|
|
4
|
+
data.tar.gz: e1eaf70ff0571f3f15a7de476a580e08547c743d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 81344312f2b6e3e7dfac4805dd06a746a5ce3c891b9a8f795608eaf1ab95fca09e50e927a4641fb9e5e8ccd226bab999228f05f9f6762e9c8ef370ba3fdf799a
|
|
7
|
+
data.tar.gz: 9fe34d8a91bd67bb035f1c6828ccbf7f5b1780a78d109191768e8262600c8142ac9d17ef053d20f5d59eee01d0132882df947d1e45279ba7e166a7c2ba48f106
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.238
|
data/lib/v20210622/models.rb
CHANGED
|
@@ -113,10 +113,22 @@ module TencentCloud
|
|
|
113
113
|
# @param SlowRequestSavedThreshold: 慢调用保存阈值
|
|
114
114
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
115
115
|
# @type SlowRequestSavedThreshold: Integer
|
|
116
|
+
# @param LogRegion: cls日志所在地域
|
|
117
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
118
|
+
# @type LogRegion: String
|
|
119
|
+
# @param LogSource: 日志来源
|
|
120
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
121
|
+
# @type LogSource: String
|
|
122
|
+
# @param IsRelatedLog: 日志功能开关 0 关 | 1 开
|
|
123
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
124
|
+
# @type IsRelatedLog: Integer
|
|
125
|
+
# @param LogTopicID: 日志主题ID
|
|
126
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
127
|
+
# @type LogTopicID: String
|
|
116
128
|
|
|
117
|
-
attr_accessor :AmountOfUsedStorage, :Name, :Tags, :InstanceId, :CreateUin, :ServiceCount, :CountOfReportSpanPerDay, :AppId, :TraceDuration, :Description, :Status, :Region, :SpanDailyCounters, :BillingInstance, :ErrRateThreshold, :SampleRate, :ErrorSample, :SlowRequestSavedThreshold
|
|
129
|
+
attr_accessor :AmountOfUsedStorage, :Name, :Tags, :InstanceId, :CreateUin, :ServiceCount, :CountOfReportSpanPerDay, :AppId, :TraceDuration, :Description, :Status, :Region, :SpanDailyCounters, :BillingInstance, :ErrRateThreshold, :SampleRate, :ErrorSample, :SlowRequestSavedThreshold, :LogRegion, :LogSource, :IsRelatedLog, :LogTopicID
|
|
118
130
|
|
|
119
|
-
def initialize(amountofusedstorage=nil, name=nil, tags=nil, instanceid=nil, createuin=nil, servicecount=nil, countofreportspanperday=nil, appid=nil, traceduration=nil, description=nil, status=nil, region=nil, spandailycounters=nil, billinginstance=nil, errratethreshold=nil, samplerate=nil, errorsample=nil, slowrequestsavedthreshold=nil)
|
|
131
|
+
def initialize(amountofusedstorage=nil, name=nil, tags=nil, instanceid=nil, createuin=nil, servicecount=nil, countofreportspanperday=nil, appid=nil, traceduration=nil, description=nil, status=nil, region=nil, spandailycounters=nil, billinginstance=nil, errratethreshold=nil, samplerate=nil, errorsample=nil, slowrequestsavedthreshold=nil, logregion=nil, logsource=nil, isrelatedlog=nil, logtopicid=nil)
|
|
120
132
|
@AmountOfUsedStorage = amountofusedstorage
|
|
121
133
|
@Name = name
|
|
122
134
|
@Tags = tags
|
|
@@ -135,6 +147,10 @@ module TencentCloud
|
|
|
135
147
|
@SampleRate = samplerate
|
|
136
148
|
@ErrorSample = errorsample
|
|
137
149
|
@SlowRequestSavedThreshold = slowrequestsavedthreshold
|
|
150
|
+
@LogRegion = logregion
|
|
151
|
+
@LogSource = logsource
|
|
152
|
+
@IsRelatedLog = isrelatedlog
|
|
153
|
+
@LogTopicID = logtopicid
|
|
138
154
|
end
|
|
139
155
|
|
|
140
156
|
def deserialize(params)
|
|
@@ -163,6 +179,10 @@ module TencentCloud
|
|
|
163
179
|
@SampleRate = params['SampleRate']
|
|
164
180
|
@ErrorSample = params['ErrorSample']
|
|
165
181
|
@SlowRequestSavedThreshold = params['SlowRequestSavedThreshold']
|
|
182
|
+
@LogRegion = params['LogRegion']
|
|
183
|
+
@LogSource = params['LogSource']
|
|
184
|
+
@IsRelatedLog = params['IsRelatedLog']
|
|
185
|
+
@LogTopicID = params['LogTopicID']
|
|
166
186
|
end
|
|
167
187
|
end
|
|
168
188
|
|
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: 1.0.
|
|
4
|
+
version: 1.0.238
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-01-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|