tencentcloud-sdk-rum 3.0.980 → 3.0.981
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 +29 -5
- 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: 4de2b6ea38f0df69bf3868dbfb90997f0debb848
|
4
|
+
data.tar.gz: aca6dab8bdf551110f20a5c10f547d4e2d65960d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 173584777deee7579d040d128ddf4f69d0f9209d955a81950d1338999b522c3997f2b99705bfb65256ae45afaa1954fb6dd075245b8b112e8986daee0ce80eb8
|
7
|
+
data.tar.gz: c792a706ed3d93a0a5318e8a681e141bc978df8b034276a47e56a6d360d688668583ed1424013825194649441c4c933a0b8ea265b7e079c0b6c10b227975b28a
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.981
|
data/lib/v20210622/models.rb
CHANGED
@@ -4143,7 +4143,7 @@ module TencentCloud
|
|
4143
4143
|
# @type PageUv: String
|
4144
4144
|
# @param ApiDuration: 请求次数
|
4145
4145
|
# @type ApiDuration: String
|
4146
|
-
# @param Score:
|
4146
|
+
# @param Score: 项目总分
|
4147
4147
|
# @type Score: String
|
4148
4148
|
# @param PageError: error
|
4149
4149
|
# @type PageError: String
|
@@ -4156,10 +4156,22 @@ module TencentCloud
|
|
4156
4156
|
# @param CreateTime: 时间
|
4157
4157
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
4158
4158
|
# @type CreateTime: String
|
4159
|
-
|
4160
|
-
|
4161
|
-
|
4162
|
-
|
4159
|
+
# @param PagePerformanceScore: 页面性能评分
|
4160
|
+
# @type PagePerformanceScore: String
|
4161
|
+
# @param JsErrorScore: js错误评分
|
4162
|
+
# @type JsErrorScore: String
|
4163
|
+
# @param ApiPerformanceScore: API性能评分
|
4164
|
+
# @type ApiPerformanceScore: String
|
4165
|
+
# @param ApiAvaliableScore: API可用性评分
|
4166
|
+
# @type ApiAvaliableScore: String
|
4167
|
+
# @param StaticPerformanceScore: 静态资源性能评分
|
4168
|
+
# @type StaticPerformanceScore: String
|
4169
|
+
# @param StaticAvaliableScore: 静态资源可用性评分
|
4170
|
+
# @type StaticAvaliableScore: String
|
4171
|
+
|
4172
|
+
attr_accessor :StaticDuration, :PagePv, :ApiFail, :ApiNum, :StaticFail, :ProjectID, :PageUv, :ApiDuration, :Score, :PageError, :StaticNum, :RecordNum, :PageDuration, :CreateTime, :PagePerformanceScore, :JsErrorScore, :ApiPerformanceScore, :ApiAvaliableScore, :StaticPerformanceScore, :StaticAvaliableScore
|
4173
|
+
|
4174
|
+
def initialize(staticduration=nil, pagepv=nil, apifail=nil, apinum=nil, staticfail=nil, projectid=nil, pageuv=nil, apiduration=nil, score=nil, pageerror=nil, staticnum=nil, recordnum=nil, pageduration=nil, createtime=nil, pageperformancescore=nil, jserrorscore=nil, apiperformancescore=nil, apiavaliablescore=nil, staticperformancescore=nil, staticavaliablescore=nil)
|
4163
4175
|
@StaticDuration = staticduration
|
4164
4176
|
@PagePv = pagepv
|
4165
4177
|
@ApiFail = apifail
|
@@ -4174,6 +4186,12 @@ module TencentCloud
|
|
4174
4186
|
@RecordNum = recordnum
|
4175
4187
|
@PageDuration = pageduration
|
4176
4188
|
@CreateTime = createtime
|
4189
|
+
@PagePerformanceScore = pageperformancescore
|
4190
|
+
@JsErrorScore = jserrorscore
|
4191
|
+
@ApiPerformanceScore = apiperformancescore
|
4192
|
+
@ApiAvaliableScore = apiavaliablescore
|
4193
|
+
@StaticPerformanceScore = staticperformancescore
|
4194
|
+
@StaticAvaliableScore = staticavaliablescore
|
4177
4195
|
end
|
4178
4196
|
|
4179
4197
|
def deserialize(params)
|
@@ -4191,6 +4209,12 @@ module TencentCloud
|
|
4191
4209
|
@RecordNum = params['RecordNum']
|
4192
4210
|
@PageDuration = params['PageDuration']
|
4193
4211
|
@CreateTime = params['CreateTime']
|
4212
|
+
@PagePerformanceScore = params['PagePerformanceScore']
|
4213
|
+
@JsErrorScore = params['JsErrorScore']
|
4214
|
+
@ApiPerformanceScore = params['ApiPerformanceScore']
|
4215
|
+
@ApiAvaliableScore = params['ApiAvaliableScore']
|
4216
|
+
@StaticPerformanceScore = params['StaticPerformanceScore']
|
4217
|
+
@StaticAvaliableScore = params['StaticAvaliableScore']
|
4194
4218
|
end
|
4195
4219
|
end
|
4196
4220
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-rum
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.981
|
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-01-
|
11
|
+
date: 2025-01-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|