tencentcloud-sdk-rum 3.0.486 → 3.0.487
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210622/client.rb +24 -0
- data/lib/v20210622/models.rb +64 -0
- 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: c20279aeeb9814865b21488527e9d5b604ccd5ce
|
4
|
+
data.tar.gz: caed70b2dcb1d804029de329ae39e66abeee6e5b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fbf2afe830b21d811766ce6c7ce08918fa769c24fc868108186c59986efcede1c09f8b25730298df6c5204182a36e1026f6a75f4b7a1bc806732634046ef0ae9
|
7
|
+
data.tar.gz: 55bdeb5ed1e4f5c61dd8389cbb3c53e20ed64e5d83f399d85adfb8e7835e66817f955153780f30def212dc5a0941c068f4d3caf53f323e47d0b42288b033c8eb
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.487
|
data/lib/v20210622/client.rb
CHANGED
@@ -1098,6 +1098,30 @@ module TencentCloud
|
|
1098
1098
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1099
1099
|
end
|
1100
1100
|
|
1101
|
+
# 获取项目下的日志聚合信息
|
1102
|
+
|
1103
|
+
# @param request: Request instance for DescribeRumGroupLog.
|
1104
|
+
# @type request: :class:`Tencentcloud::rum::V20210622::DescribeRumGroupLogRequest`
|
1105
|
+
# @rtype: :class:`Tencentcloud::rum::V20210622::DescribeRumGroupLogResponse`
|
1106
|
+
def DescribeRumGroupLog(request)
|
1107
|
+
body = send_request('DescribeRumGroupLog', request.serialize)
|
1108
|
+
response = JSON.parse(body)
|
1109
|
+
if response['Response'].key?('Error') == false
|
1110
|
+
model = DescribeRumGroupLogResponse.new
|
1111
|
+
model.deserialize(response['Response'])
|
1112
|
+
model
|
1113
|
+
else
|
1114
|
+
code = response['Response']['Error']['Code']
|
1115
|
+
message = response['Response']['Error']['Message']
|
1116
|
+
reqid = response['Response']['RequestId']
|
1117
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1118
|
+
end
|
1119
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1120
|
+
raise e
|
1121
|
+
rescue StandardError => e
|
1122
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1123
|
+
end
|
1124
|
+
|
1101
1125
|
# 获取项目下的日志列表(实例创建的项目下的日志列表)
|
1102
1126
|
|
1103
1127
|
# @param request: Request instance for DescribeRumLogList.
|
data/lib/v20210622/models.rb
CHANGED
@@ -3241,6 +3241,70 @@ module TencentCloud
|
|
3241
3241
|
end
|
3242
3242
|
end
|
3243
3243
|
|
3244
|
+
# DescribeRumGroupLog请求参数结构体
|
3245
|
+
class DescribeRumGroupLogRequest < TencentCloud::Common::AbstractModel
|
3246
|
+
# @param OrderBy: 排序方式 desc asc(必填)
|
3247
|
+
# @type OrderBy: String
|
3248
|
+
# @param StartTime: 开始时间(必填)
|
3249
|
+
# @type StartTime: String
|
3250
|
+
# @param Limit: 单次查询返回的原始日志条数,最大值为100(必填)
|
3251
|
+
# @type Limit: Integer
|
3252
|
+
# @param Page: 页数,第几页
|
3253
|
+
# @type Page: Integer
|
3254
|
+
# @param Query: 查询语句,参考控制台请求参数,语句长度最大为4096(必填)
|
3255
|
+
# @type Query: String
|
3256
|
+
# @param EndTime: 结束时间(必填)
|
3257
|
+
# @type EndTime: String
|
3258
|
+
# @param ID: 项目ID(必填)
|
3259
|
+
# @type ID: Integer
|
3260
|
+
# @param GroupField: 聚合字段
|
3261
|
+
# @type GroupField: String
|
3262
|
+
|
3263
|
+
attr_accessor :OrderBy, :StartTime, :Limit, :Page, :Query, :EndTime, :ID, :GroupField
|
3264
|
+
|
3265
|
+
def initialize(orderby=nil, starttime=nil, limit=nil, page=nil, query=nil, endtime=nil, id=nil, groupfield=nil)
|
3266
|
+
@OrderBy = orderby
|
3267
|
+
@StartTime = starttime
|
3268
|
+
@Limit = limit
|
3269
|
+
@Page = page
|
3270
|
+
@Query = query
|
3271
|
+
@EndTime = endtime
|
3272
|
+
@ID = id
|
3273
|
+
@GroupField = groupfield
|
3274
|
+
end
|
3275
|
+
|
3276
|
+
def deserialize(params)
|
3277
|
+
@OrderBy = params['OrderBy']
|
3278
|
+
@StartTime = params['StartTime']
|
3279
|
+
@Limit = params['Limit']
|
3280
|
+
@Page = params['Page']
|
3281
|
+
@Query = params['Query']
|
3282
|
+
@EndTime = params['EndTime']
|
3283
|
+
@ID = params['ID']
|
3284
|
+
@GroupField = params['GroupField']
|
3285
|
+
end
|
3286
|
+
end
|
3287
|
+
|
3288
|
+
# DescribeRumGroupLog返回参数结构体
|
3289
|
+
class DescribeRumGroupLogResponse < TencentCloud::Common::AbstractModel
|
3290
|
+
# @param Result: 返回字符串
|
3291
|
+
# @type Result: String
|
3292
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3293
|
+
# @type RequestId: String
|
3294
|
+
|
3295
|
+
attr_accessor :Result, :RequestId
|
3296
|
+
|
3297
|
+
def initialize(result=nil, requestid=nil)
|
3298
|
+
@Result = result
|
3299
|
+
@RequestId = requestid
|
3300
|
+
end
|
3301
|
+
|
3302
|
+
def deserialize(params)
|
3303
|
+
@Result = params['Result']
|
3304
|
+
@RequestId = params['RequestId']
|
3305
|
+
end
|
3306
|
+
end
|
3307
|
+
|
3244
3308
|
# DescribeRumLogList请求参数结构体
|
3245
3309
|
class DescribeRumLogListRequest < TencentCloud::Common::AbstractModel
|
3246
3310
|
# @param OrderBy: 排序方式 desc asc(必填)
|
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.487
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-01-
|
11
|
+
date: 2023-01-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|