tencentcloud-sdk-rum 1.0.254 → 1.0.258
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 +1114 -69
- data/lib/v20210622/models.rb +3453 -439
- metadata +2 -2
data/lib/v20210622/models.rb
CHANGED
@@ -17,6 +17,106 @@
|
|
17
17
|
module TencentCloud
|
18
18
|
module Rum
|
19
19
|
module V20210622
|
20
|
+
# CreateLogExport请求参数结构体
|
21
|
+
class CreateLogExportRequest < TencentCloud::Common::AbstractModel
|
22
|
+
# @param ID: 项目ID
|
23
|
+
# @type ID: Integer
|
24
|
+
# @param StartTime: 日志导出起始时间
|
25
|
+
# @type StartTime: String
|
26
|
+
# @param EndTime: 日志导出结束时间
|
27
|
+
# @type EndTime: String
|
28
|
+
# @param Query: 日志导出检索语句
|
29
|
+
# @type Query: String
|
30
|
+
# @param Count: 日志导出数量, 最大值1000万
|
31
|
+
# @type Count: Integer
|
32
|
+
# @param Order: 日志导出时间排序。desc,asc,默认为desc
|
33
|
+
# @type Order: String
|
34
|
+
# @param Format: 日志导出数据格式。json,csv,默认为json
|
35
|
+
# @type Format: String
|
36
|
+
|
37
|
+
attr_accessor :ID, :StartTime, :EndTime, :Query, :Count, :Order, :Format
|
38
|
+
|
39
|
+
def initialize(id=nil, starttime=nil, endtime=nil, query=nil, count=nil, order=nil, format=nil)
|
40
|
+
@ID = id
|
41
|
+
@StartTime = starttime
|
42
|
+
@EndTime = endtime
|
43
|
+
@Query = query
|
44
|
+
@Count = count
|
45
|
+
@Order = order
|
46
|
+
@Format = format
|
47
|
+
end
|
48
|
+
|
49
|
+
def deserialize(params)
|
50
|
+
@ID = params['ID']
|
51
|
+
@StartTime = params['StartTime']
|
52
|
+
@EndTime = params['EndTime']
|
53
|
+
@Query = params['Query']
|
54
|
+
@Count = params['Count']
|
55
|
+
@Order = params['Order']
|
56
|
+
@Format = params['Format']
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
# CreateLogExport返回参数结构体
|
61
|
+
class CreateLogExportResponse < TencentCloud::Common::AbstractModel
|
62
|
+
# @param ExportID: 日志导出ID
|
63
|
+
# @type ExportID: String
|
64
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
65
|
+
# @type RequestId: String
|
66
|
+
|
67
|
+
attr_accessor :ExportID, :RequestId
|
68
|
+
|
69
|
+
def initialize(exportid=nil, requestid=nil)
|
70
|
+
@ExportID = exportid
|
71
|
+
@RequestId = requestid
|
72
|
+
end
|
73
|
+
|
74
|
+
def deserialize(params)
|
75
|
+
@ExportID = params['ExportID']
|
76
|
+
@RequestId = params['RequestId']
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
# CreateOfflineLogConfig请求参数结构体
|
81
|
+
class CreateOfflineLogConfigRequest < TencentCloud::Common::AbstractModel
|
82
|
+
# @param ProjectKey: 项目唯一上报 key
|
83
|
+
# @type ProjectKey: String
|
84
|
+
# @param UniqueID: 需要监听的用户唯一标示(aid 或 uin)
|
85
|
+
# @type UniqueID: String
|
86
|
+
|
87
|
+
attr_accessor :ProjectKey, :UniqueID
|
88
|
+
|
89
|
+
def initialize(projectkey=nil, uniqueid=nil)
|
90
|
+
@ProjectKey = projectkey
|
91
|
+
@UniqueID = uniqueid
|
92
|
+
end
|
93
|
+
|
94
|
+
def deserialize(params)
|
95
|
+
@ProjectKey = params['ProjectKey']
|
96
|
+
@UniqueID = params['UniqueID']
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
# CreateOfflineLogConfig返回参数结构体
|
101
|
+
class CreateOfflineLogConfigResponse < TencentCloud::Common::AbstractModel
|
102
|
+
# @param Msg: 接口返回信息
|
103
|
+
# @type Msg: String
|
104
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
105
|
+
# @type RequestId: String
|
106
|
+
|
107
|
+
attr_accessor :Msg, :RequestId
|
108
|
+
|
109
|
+
def initialize(msg=nil, requestid=nil)
|
110
|
+
@Msg = msg
|
111
|
+
@RequestId = requestid
|
112
|
+
end
|
113
|
+
|
114
|
+
def deserialize(params)
|
115
|
+
@Msg = params['Msg']
|
116
|
+
@RequestId = params['RequestId']
|
117
|
+
end
|
118
|
+
end
|
119
|
+
|
20
120
|
# CreateProject请求参数结构体
|
21
121
|
class CreateProjectRequest < TencentCloud::Common::AbstractModel
|
22
122
|
# @param Name: 创建的项目名(不为空且最长为 200)
|
@@ -85,252 +185,520 @@ module TencentCloud
|
|
85
185
|
end
|
86
186
|
end
|
87
187
|
|
88
|
-
#
|
89
|
-
class
|
90
|
-
# @param
|
91
|
-
# @type
|
92
|
-
# @param
|
93
|
-
# @type
|
94
|
-
# @param EndTime: 结束时间
|
95
|
-
# @type EndTime: Integer
|
96
|
-
# @param ID: 项目ID
|
97
|
-
# @type ID: Integer
|
98
|
-
# @param ExtSecond: 自定义2
|
99
|
-
# @type ExtSecond: String
|
100
|
-
# @param Engine: 浏览器引擎
|
101
|
-
# @type Engine: String
|
102
|
-
# @param Isp: 运营商
|
103
|
-
# @type Isp: String
|
104
|
-
# @param From: 来源页面
|
105
|
-
# @type From: String
|
106
|
-
# @param Level: 日志等级
|
107
|
-
# @type Level: String
|
108
|
-
# @param Brand: 品牌
|
109
|
-
# @type Brand: String
|
110
|
-
# @param Area: 地区
|
111
|
-
# @type Area: String
|
112
|
-
# @param VersionNum: 版本
|
113
|
-
# @type VersionNum: String
|
114
|
-
# @param Platform: 平台
|
115
|
-
# @type Platform: String
|
116
|
-
# @param ExtThird: 自定义3
|
117
|
-
# @type ExtThird: String
|
118
|
-
# @param ExtFirst: 自定义1
|
119
|
-
# @type ExtFirst: String
|
120
|
-
# @param NetType: 网络类型
|
121
|
-
# @type NetType: String
|
122
|
-
# @param Device: 机型
|
123
|
-
# @type Device: String
|
124
|
-
# @param IsAbroad: 是否海外
|
125
|
-
# @type IsAbroad: String
|
126
|
-
# @param Os: 操作系统
|
127
|
-
# @type Os: String
|
128
|
-
# @param Browser: 浏览器
|
129
|
-
# @type Browser: String
|
130
|
-
# @param Name: 筛选条件
|
131
|
-
# @type Name: String
|
132
|
-
# @param Env: 环境
|
133
|
-
# @type Env: String
|
188
|
+
# CreateReleaseFile请求参数结构体
|
189
|
+
class CreateReleaseFileRequest < TencentCloud::Common::AbstractModel
|
190
|
+
# @param ProjectID: 项目 id
|
191
|
+
# @type ProjectID: Integer
|
192
|
+
# @param Files: 文件信息列表
|
193
|
+
# @type Files: Array
|
134
194
|
|
135
|
-
attr_accessor :
|
195
|
+
attr_accessor :ProjectID, :Files
|
136
196
|
|
137
|
-
def initialize(
|
138
|
-
@
|
139
|
-
@
|
140
|
-
@EndTime = endtime
|
141
|
-
@ID = id
|
142
|
-
@ExtSecond = extsecond
|
143
|
-
@Engine = engine
|
144
|
-
@Isp = isp
|
145
|
-
@From = from
|
146
|
-
@Level = level
|
147
|
-
@Brand = brand
|
148
|
-
@Area = area
|
149
|
-
@VersionNum = versionnum
|
150
|
-
@Platform = platform
|
151
|
-
@ExtThird = extthird
|
152
|
-
@ExtFirst = extfirst
|
153
|
-
@NetType = nettype
|
154
|
-
@Device = device
|
155
|
-
@IsAbroad = isabroad
|
156
|
-
@Os = os
|
157
|
-
@Browser = browser
|
158
|
-
@Name = name
|
159
|
-
@Env = env
|
197
|
+
def initialize(projectid=nil, files=nil)
|
198
|
+
@ProjectID = projectid
|
199
|
+
@Files = files
|
160
200
|
end
|
161
201
|
|
162
202
|
def deserialize(params)
|
163
|
-
@
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
@Brand = params['Brand']
|
173
|
-
@Area = params['Area']
|
174
|
-
@VersionNum = params['VersionNum']
|
175
|
-
@Platform = params['Platform']
|
176
|
-
@ExtThird = params['ExtThird']
|
177
|
-
@ExtFirst = params['ExtFirst']
|
178
|
-
@NetType = params['NetType']
|
179
|
-
@Device = params['Device']
|
180
|
-
@IsAbroad = params['IsAbroad']
|
181
|
-
@Os = params['Os']
|
182
|
-
@Browser = params['Browser']
|
183
|
-
@Name = params['Name']
|
184
|
-
@Env = params['Env']
|
203
|
+
@ProjectID = params['ProjectID']
|
204
|
+
unless params['Files'].nil?
|
205
|
+
@Files = []
|
206
|
+
params['Files'].each do |i|
|
207
|
+
releasefile_tmp = ReleaseFile.new
|
208
|
+
releasefile_tmp.deserialize(i)
|
209
|
+
@Files << releasefile_tmp
|
210
|
+
end
|
211
|
+
end
|
185
212
|
end
|
186
213
|
end
|
187
214
|
|
188
|
-
#
|
189
|
-
class
|
190
|
-
# @param
|
191
|
-
# @type
|
215
|
+
# CreateReleaseFile返回参数结构体
|
216
|
+
class CreateReleaseFileResponse < TencentCloud::Common::AbstractModel
|
217
|
+
# @param Msg: 调用结果
|
218
|
+
# @type Msg: String
|
192
219
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
193
220
|
# @type RequestId: String
|
194
221
|
|
195
|
-
attr_accessor :
|
222
|
+
attr_accessor :Msg, :RequestId
|
196
223
|
|
197
|
-
def initialize(
|
198
|
-
@
|
224
|
+
def initialize(msg=nil, requestid=nil)
|
225
|
+
@Msg = msg
|
199
226
|
@RequestId = requestid
|
200
227
|
end
|
201
228
|
|
202
229
|
def deserialize(params)
|
203
|
-
@
|
230
|
+
@Msg = params['Msg']
|
204
231
|
@RequestId = params['RequestId']
|
205
232
|
end
|
206
233
|
end
|
207
234
|
|
208
|
-
#
|
209
|
-
class
|
210
|
-
# @param
|
211
|
-
# @type
|
212
|
-
# @param Type: 类型
|
213
|
-
# @type Type: String
|
214
|
-
# @param EndTime: 结束时间
|
215
|
-
# @type EndTime: Integer
|
235
|
+
# CreateStarProject请求参数结构体
|
236
|
+
class CreateStarProjectRequest < TencentCloud::Common::AbstractModel
|
237
|
+
# @param InstanceID: 实例ID:taw-123
|
238
|
+
# @type InstanceID: String
|
216
239
|
# @param ID: 项目ID
|
217
240
|
# @type ID: Integer
|
218
|
-
# @param ExtSecond: 自定义2
|
219
|
-
# @type ExtSecond: String
|
220
|
-
# @param Engine: 浏览器引擎
|
221
|
-
# @type Engine: String
|
222
|
-
# @param Isp: 运营商
|
223
|
-
# @type Isp: String
|
224
|
-
# @param From: 来源页面
|
225
|
-
# @type From: String
|
226
|
-
# @param Level: 日志等级
|
227
|
-
# @type Level: String
|
228
|
-
# @param Brand: 品牌
|
229
|
-
# @type Brand: String
|
230
|
-
# @param Area: 地区
|
231
|
-
# @type Area: String
|
232
|
-
# @param VersionNum: 版本
|
233
|
-
# @type VersionNum: String
|
234
|
-
# @param Platform: 平台
|
235
|
-
# @type Platform: String
|
236
|
-
# @param ExtThird: 自定义3
|
237
|
-
# @type ExtThird: String
|
238
|
-
# @param ExtFirst: 自定义1
|
239
|
-
# @type ExtFirst: String
|
240
|
-
# @param NetType: 网络类型
|
241
|
-
# @type NetType: String
|
242
|
-
# @param Device: 机型
|
243
|
-
# @type Device: String
|
244
|
-
# @param IsAbroad: 是否海外
|
245
|
-
# @type IsAbroad: String
|
246
|
-
# @param Os: 操作系统
|
247
|
-
# @type Os: String
|
248
|
-
# @param Browser: 浏览器
|
249
|
-
# @type Browser: String
|
250
|
-
# @param CostType: 耗时计算方式
|
251
|
-
# @type CostType: String
|
252
|
-
# @param Url: 来源
|
253
|
-
# @type Url: String
|
254
|
-
# @param Env: 环境
|
255
|
-
# @type Env: String
|
256
241
|
|
257
|
-
attr_accessor :
|
242
|
+
attr_accessor :InstanceID, :ID
|
258
243
|
|
259
|
-
def initialize(
|
260
|
-
@
|
261
|
-
@Type = type
|
262
|
-
@EndTime = endtime
|
244
|
+
def initialize(instanceid=nil, id=nil)
|
245
|
+
@InstanceID = instanceid
|
263
246
|
@ID = id
|
264
|
-
@ExtSecond = extsecond
|
265
|
-
@Engine = engine
|
266
|
-
@Isp = isp
|
267
|
-
@From = from
|
268
|
-
@Level = level
|
269
|
-
@Brand = brand
|
270
|
-
@Area = area
|
271
|
-
@VersionNum = versionnum
|
272
|
-
@Platform = platform
|
273
|
-
@ExtThird = extthird
|
274
|
-
@ExtFirst = extfirst
|
275
|
-
@NetType = nettype
|
276
|
-
@Device = device
|
277
|
-
@IsAbroad = isabroad
|
278
|
-
@Os = os
|
279
|
-
@Browser = browser
|
280
|
-
@CostType = costtype
|
281
|
-
@Url = url
|
282
|
-
@Env = env
|
283
247
|
end
|
284
248
|
|
285
249
|
def deserialize(params)
|
286
|
-
@
|
287
|
-
@Type = params['Type']
|
288
|
-
@EndTime = params['EndTime']
|
250
|
+
@InstanceID = params['InstanceID']
|
289
251
|
@ID = params['ID']
|
290
|
-
@ExtSecond = params['ExtSecond']
|
291
|
-
@Engine = params['Engine']
|
292
|
-
@Isp = params['Isp']
|
293
|
-
@From = params['From']
|
294
|
-
@Level = params['Level']
|
295
|
-
@Brand = params['Brand']
|
296
|
-
@Area = params['Area']
|
297
|
-
@VersionNum = params['VersionNum']
|
298
|
-
@Platform = params['Platform']
|
299
|
-
@ExtThird = params['ExtThird']
|
300
|
-
@ExtFirst = params['ExtFirst']
|
301
|
-
@NetType = params['NetType']
|
302
|
-
@Device = params['Device']
|
303
|
-
@IsAbroad = params['IsAbroad']
|
304
|
-
@Os = params['Os']
|
305
|
-
@Browser = params['Browser']
|
306
|
-
@CostType = params['CostType']
|
307
|
-
@Url = params['Url']
|
308
|
-
@Env = params['Env']
|
309
252
|
end
|
310
253
|
end
|
311
254
|
|
312
|
-
#
|
313
|
-
class
|
314
|
-
# @param
|
315
|
-
# @type
|
255
|
+
# CreateStarProject返回参数结构体
|
256
|
+
class CreateStarProjectResponse < TencentCloud::Common::AbstractModel
|
257
|
+
# @param Msg: 接口返回信息
|
258
|
+
# @type Msg: String
|
316
259
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
317
260
|
# @type RequestId: String
|
318
261
|
|
319
|
-
attr_accessor :
|
262
|
+
attr_accessor :Msg, :RequestId
|
320
263
|
|
321
|
-
def initialize(
|
322
|
-
@
|
264
|
+
def initialize(msg=nil, requestid=nil)
|
265
|
+
@Msg = msg
|
323
266
|
@RequestId = requestid
|
324
267
|
end
|
325
268
|
|
326
269
|
def deserialize(params)
|
327
|
-
@
|
270
|
+
@Msg = params['Msg']
|
328
271
|
@RequestId = params['RequestId']
|
329
272
|
end
|
330
273
|
end
|
331
274
|
|
332
|
-
#
|
333
|
-
class
|
275
|
+
# CreateTawInstance请求参数结构体
|
276
|
+
class CreateTawInstanceRequest < TencentCloud::Common::AbstractModel
|
277
|
+
# @param AreaId: 片区Id,(至少大于0)
|
278
|
+
# @type AreaId: Integer
|
279
|
+
# @param ChargeType: 计费类型, (1=体验,2=预付费,3=后付费)
|
280
|
+
# @type ChargeType: Integer
|
281
|
+
# @param DataRetentionDays: 数据保存时间,(至少大于0)
|
282
|
+
# @type DataRetentionDays: Integer
|
283
|
+
# @param InstanceName: 实例名称,(最大长度不超过255字节)
|
284
|
+
# @type InstanceName: String
|
285
|
+
# @param Tags: 标签列表
|
286
|
+
# @type Tags: Array
|
287
|
+
# @param InstanceDesc: 实例描述,(最大长度不超过1024字节)
|
288
|
+
# @type InstanceDesc: String
|
289
|
+
# @param CountNum: 每天数据上报量
|
290
|
+
# @type CountNum: String
|
291
|
+
# @param PeriodRetain: 数据存储时长计费
|
292
|
+
# @type PeriodRetain: String
|
293
|
+
|
294
|
+
attr_accessor :AreaId, :ChargeType, :DataRetentionDays, :InstanceName, :Tags, :InstanceDesc, :CountNum, :PeriodRetain
|
295
|
+
|
296
|
+
def initialize(areaid=nil, chargetype=nil, dataretentiondays=nil, instancename=nil, tags=nil, instancedesc=nil, countnum=nil, periodretain=nil)
|
297
|
+
@AreaId = areaid
|
298
|
+
@ChargeType = chargetype
|
299
|
+
@DataRetentionDays = dataretentiondays
|
300
|
+
@InstanceName = instancename
|
301
|
+
@Tags = tags
|
302
|
+
@InstanceDesc = instancedesc
|
303
|
+
@CountNum = countnum
|
304
|
+
@PeriodRetain = periodretain
|
305
|
+
end
|
306
|
+
|
307
|
+
def deserialize(params)
|
308
|
+
@AreaId = params['AreaId']
|
309
|
+
@ChargeType = params['ChargeType']
|
310
|
+
@DataRetentionDays = params['DataRetentionDays']
|
311
|
+
@InstanceName = params['InstanceName']
|
312
|
+
unless params['Tags'].nil?
|
313
|
+
@Tags = []
|
314
|
+
params['Tags'].each do |i|
|
315
|
+
tag_tmp = Tag.new
|
316
|
+
tag_tmp.deserialize(i)
|
317
|
+
@Tags << tag_tmp
|
318
|
+
end
|
319
|
+
end
|
320
|
+
@InstanceDesc = params['InstanceDesc']
|
321
|
+
@CountNum = params['CountNum']
|
322
|
+
@PeriodRetain = params['PeriodRetain']
|
323
|
+
end
|
324
|
+
end
|
325
|
+
|
326
|
+
# CreateTawInstance返回参数结构体
|
327
|
+
class CreateTawInstanceResponse < TencentCloud::Common::AbstractModel
|
328
|
+
# @param InstanceId: 实例Id
|
329
|
+
# @type InstanceId: String
|
330
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
331
|
+
# @type RequestId: String
|
332
|
+
|
333
|
+
attr_accessor :InstanceId, :RequestId
|
334
|
+
|
335
|
+
def initialize(instanceid=nil, requestid=nil)
|
336
|
+
@InstanceId = instanceid
|
337
|
+
@RequestId = requestid
|
338
|
+
end
|
339
|
+
|
340
|
+
def deserialize(params)
|
341
|
+
@InstanceId = params['InstanceId']
|
342
|
+
@RequestId = params['RequestId']
|
343
|
+
end
|
344
|
+
end
|
345
|
+
|
346
|
+
# CreateWhitelist请求参数结构体
|
347
|
+
class CreateWhitelistRequest < TencentCloud::Common::AbstractModel
|
348
|
+
# @param InstanceID: 实例ID:taw-123
|
349
|
+
# @type InstanceID: String
|
350
|
+
# @param Remark: 备注
|
351
|
+
# @type Remark: String
|
352
|
+
# @param WhitelistUin: uin:业务方标识
|
353
|
+
# @type WhitelistUin: String
|
354
|
+
# @param Aid: 业务方标识
|
355
|
+
# @type Aid: String
|
356
|
+
|
357
|
+
attr_accessor :InstanceID, :Remark, :WhitelistUin, :Aid
|
358
|
+
|
359
|
+
def initialize(instanceid=nil, remark=nil, whitelistuin=nil, aid=nil)
|
360
|
+
@InstanceID = instanceid
|
361
|
+
@Remark = remark
|
362
|
+
@WhitelistUin = whitelistuin
|
363
|
+
@Aid = aid
|
364
|
+
end
|
365
|
+
|
366
|
+
def deserialize(params)
|
367
|
+
@InstanceID = params['InstanceID']
|
368
|
+
@Remark = params['Remark']
|
369
|
+
@WhitelistUin = params['WhitelistUin']
|
370
|
+
@Aid = params['Aid']
|
371
|
+
end
|
372
|
+
end
|
373
|
+
|
374
|
+
# CreateWhitelist返回参数结构体
|
375
|
+
class CreateWhitelistResponse < TencentCloud::Common::AbstractModel
|
376
|
+
# @param Msg: 消息
|
377
|
+
# @type Msg: String
|
378
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
379
|
+
# @type RequestId: String
|
380
|
+
|
381
|
+
attr_accessor :Msg, :RequestId
|
382
|
+
|
383
|
+
def initialize(msg=nil, requestid=nil)
|
384
|
+
@Msg = msg
|
385
|
+
@RequestId = requestid
|
386
|
+
end
|
387
|
+
|
388
|
+
def deserialize(params)
|
389
|
+
@Msg = params['Msg']
|
390
|
+
@RequestId = params['RequestId']
|
391
|
+
end
|
392
|
+
end
|
393
|
+
|
394
|
+
# DeleteInstance请求参数结构体
|
395
|
+
class DeleteInstanceRequest < TencentCloud::Common::AbstractModel
|
396
|
+
# @param InstanceId: 需要删除的实例id
|
397
|
+
# @type InstanceId: String
|
398
|
+
|
399
|
+
attr_accessor :InstanceId
|
400
|
+
|
401
|
+
def initialize(instanceid=nil)
|
402
|
+
@InstanceId = instanceid
|
403
|
+
end
|
404
|
+
|
405
|
+
def deserialize(params)
|
406
|
+
@InstanceId = params['InstanceId']
|
407
|
+
end
|
408
|
+
end
|
409
|
+
|
410
|
+
# DeleteInstance返回参数结构体
|
411
|
+
class DeleteInstanceResponse < TencentCloud::Common::AbstractModel
|
412
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
413
|
+
# @type RequestId: String
|
414
|
+
|
415
|
+
attr_accessor :RequestId
|
416
|
+
|
417
|
+
def initialize(requestid=nil)
|
418
|
+
@RequestId = requestid
|
419
|
+
end
|
420
|
+
|
421
|
+
def deserialize(params)
|
422
|
+
@RequestId = params['RequestId']
|
423
|
+
end
|
424
|
+
end
|
425
|
+
|
426
|
+
# DeleteLogExport请求参数结构体
|
427
|
+
class DeleteLogExportRequest < TencentCloud::Common::AbstractModel
|
428
|
+
# @param ID: 项目ID
|
429
|
+
# @type ID: Integer
|
430
|
+
# @param ExportID: 日志导出ID
|
431
|
+
# @type ExportID: String
|
432
|
+
|
433
|
+
attr_accessor :ID, :ExportID
|
434
|
+
|
435
|
+
def initialize(id=nil, exportid=nil)
|
436
|
+
@ID = id
|
437
|
+
@ExportID = exportid
|
438
|
+
end
|
439
|
+
|
440
|
+
def deserialize(params)
|
441
|
+
@ID = params['ID']
|
442
|
+
@ExportID = params['ExportID']
|
443
|
+
end
|
444
|
+
end
|
445
|
+
|
446
|
+
# DeleteLogExport返回参数结构体
|
447
|
+
class DeleteLogExportResponse < TencentCloud::Common::AbstractModel
|
448
|
+
# @param Msg: 是否成功,成功则为success;失败则直接返回Error,不返回该参数
|
449
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
450
|
+
# @type Msg: String
|
451
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
452
|
+
# @type RequestId: String
|
453
|
+
|
454
|
+
attr_accessor :Msg, :RequestId
|
455
|
+
|
456
|
+
def initialize(msg=nil, requestid=nil)
|
457
|
+
@Msg = msg
|
458
|
+
@RequestId = requestid
|
459
|
+
end
|
460
|
+
|
461
|
+
def deserialize(params)
|
462
|
+
@Msg = params['Msg']
|
463
|
+
@RequestId = params['RequestId']
|
464
|
+
end
|
465
|
+
end
|
466
|
+
|
467
|
+
# DeleteOfflineLogConfig请求参数结构体
|
468
|
+
class DeleteOfflineLogConfigRequest < TencentCloud::Common::AbstractModel
|
469
|
+
# @param ProjectKey: 项目唯一上报 key
|
470
|
+
# @type ProjectKey: String
|
471
|
+
# @param UniqueID: 用户唯一标示(uin or aid)
|
472
|
+
# @type UniqueID: String
|
473
|
+
|
474
|
+
attr_accessor :ProjectKey, :UniqueID
|
475
|
+
|
476
|
+
def initialize(projectkey=nil, uniqueid=nil)
|
477
|
+
@ProjectKey = projectkey
|
478
|
+
@UniqueID = uniqueid
|
479
|
+
end
|
480
|
+
|
481
|
+
def deserialize(params)
|
482
|
+
@ProjectKey = params['ProjectKey']
|
483
|
+
@UniqueID = params['UniqueID']
|
484
|
+
end
|
485
|
+
end
|
486
|
+
|
487
|
+
# DeleteOfflineLogConfig返回参数结构体
|
488
|
+
class DeleteOfflineLogConfigResponse < TencentCloud::Common::AbstractModel
|
489
|
+
# @param Msg: 接口调用信息
|
490
|
+
# @type Msg: String
|
491
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
492
|
+
# @type RequestId: String
|
493
|
+
|
494
|
+
attr_accessor :Msg, :RequestId
|
495
|
+
|
496
|
+
def initialize(msg=nil, requestid=nil)
|
497
|
+
@Msg = msg
|
498
|
+
@RequestId = requestid
|
499
|
+
end
|
500
|
+
|
501
|
+
def deserialize(params)
|
502
|
+
@Msg = params['Msg']
|
503
|
+
@RequestId = params['RequestId']
|
504
|
+
end
|
505
|
+
end
|
506
|
+
|
507
|
+
# DeleteOfflineLogRecord请求参数结构体
|
508
|
+
class DeleteOfflineLogRecordRequest < TencentCloud::Common::AbstractModel
|
509
|
+
# @param ProjectKey: 项目唯一上报 key
|
510
|
+
# @type ProjectKey: String
|
511
|
+
# @param FileID: 离线日志文件 id
|
512
|
+
# @type FileID: String
|
513
|
+
|
514
|
+
attr_accessor :ProjectKey, :FileID
|
515
|
+
|
516
|
+
def initialize(projectkey=nil, fileid=nil)
|
517
|
+
@ProjectKey = projectkey
|
518
|
+
@FileID = fileid
|
519
|
+
end
|
520
|
+
|
521
|
+
def deserialize(params)
|
522
|
+
@ProjectKey = params['ProjectKey']
|
523
|
+
@FileID = params['FileID']
|
524
|
+
end
|
525
|
+
end
|
526
|
+
|
527
|
+
# DeleteOfflineLogRecord返回参数结构体
|
528
|
+
class DeleteOfflineLogRecordResponse < TencentCloud::Common::AbstractModel
|
529
|
+
# @param Msg: 接口调用信息
|
530
|
+
# @type Msg: String
|
531
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
532
|
+
# @type RequestId: String
|
533
|
+
|
534
|
+
attr_accessor :Msg, :RequestId
|
535
|
+
|
536
|
+
def initialize(msg=nil, requestid=nil)
|
537
|
+
@Msg = msg
|
538
|
+
@RequestId = requestid
|
539
|
+
end
|
540
|
+
|
541
|
+
def deserialize(params)
|
542
|
+
@Msg = params['Msg']
|
543
|
+
@RequestId = params['RequestId']
|
544
|
+
end
|
545
|
+
end
|
546
|
+
|
547
|
+
# DeleteProject请求参数结构体
|
548
|
+
class DeleteProjectRequest < TencentCloud::Common::AbstractModel
|
549
|
+
# @param ID: 需要删除的项目 ID
|
550
|
+
# @type ID: Integer
|
551
|
+
|
552
|
+
attr_accessor :ID
|
553
|
+
|
554
|
+
def initialize(id=nil)
|
555
|
+
@ID = id
|
556
|
+
end
|
557
|
+
|
558
|
+
def deserialize(params)
|
559
|
+
@ID = params['ID']
|
560
|
+
end
|
561
|
+
end
|
562
|
+
|
563
|
+
# DeleteProject返回参数结构体
|
564
|
+
class DeleteProjectResponse < TencentCloud::Common::AbstractModel
|
565
|
+
# @param Msg: 操作信息
|
566
|
+
# @type Msg: String
|
567
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
568
|
+
# @type RequestId: String
|
569
|
+
|
570
|
+
attr_accessor :Msg, :RequestId
|
571
|
+
|
572
|
+
def initialize(msg=nil, requestid=nil)
|
573
|
+
@Msg = msg
|
574
|
+
@RequestId = requestid
|
575
|
+
end
|
576
|
+
|
577
|
+
def deserialize(params)
|
578
|
+
@Msg = params['Msg']
|
579
|
+
@RequestId = params['RequestId']
|
580
|
+
end
|
581
|
+
end
|
582
|
+
|
583
|
+
# DeleteReleaseFile请求参数结构体
|
584
|
+
class DeleteReleaseFileRequest < TencentCloud::Common::AbstractModel
|
585
|
+
# @param ID: 文件 id
|
586
|
+
# @type ID: Integer
|
587
|
+
|
588
|
+
attr_accessor :ID
|
589
|
+
|
590
|
+
def initialize(id=nil)
|
591
|
+
@ID = id
|
592
|
+
end
|
593
|
+
|
594
|
+
def deserialize(params)
|
595
|
+
@ID = params['ID']
|
596
|
+
end
|
597
|
+
end
|
598
|
+
|
599
|
+
# DeleteReleaseFile返回参数结构体
|
600
|
+
class DeleteReleaseFileResponse < TencentCloud::Common::AbstractModel
|
601
|
+
# @param Msg: 接口请求返回字符串
|
602
|
+
# @type Msg: String
|
603
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
604
|
+
# @type RequestId: String
|
605
|
+
|
606
|
+
attr_accessor :Msg, :RequestId
|
607
|
+
|
608
|
+
def initialize(msg=nil, requestid=nil)
|
609
|
+
@Msg = msg
|
610
|
+
@RequestId = requestid
|
611
|
+
end
|
612
|
+
|
613
|
+
def deserialize(params)
|
614
|
+
@Msg = params['Msg']
|
615
|
+
@RequestId = params['RequestId']
|
616
|
+
end
|
617
|
+
end
|
618
|
+
|
619
|
+
# DeleteStarProject请求参数结构体
|
620
|
+
class DeleteStarProjectRequest < TencentCloud::Common::AbstractModel
|
621
|
+
# @param InstanceID: 实例ID:taw-123
|
622
|
+
# @type InstanceID: String
|
623
|
+
# @param ID: 项目ID
|
624
|
+
# @type ID: Integer
|
625
|
+
|
626
|
+
attr_accessor :InstanceID, :ID
|
627
|
+
|
628
|
+
def initialize(instanceid=nil, id=nil)
|
629
|
+
@InstanceID = instanceid
|
630
|
+
@ID = id
|
631
|
+
end
|
632
|
+
|
633
|
+
def deserialize(params)
|
634
|
+
@InstanceID = params['InstanceID']
|
635
|
+
@ID = params['ID']
|
636
|
+
end
|
637
|
+
end
|
638
|
+
|
639
|
+
# DeleteStarProject返回参数结构体
|
640
|
+
class DeleteStarProjectResponse < TencentCloud::Common::AbstractModel
|
641
|
+
# @param Msg: 返回消息
|
642
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
643
|
+
# @type Msg: String
|
644
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
645
|
+
# @type RequestId: String
|
646
|
+
|
647
|
+
attr_accessor :Msg, :RequestId
|
648
|
+
|
649
|
+
def initialize(msg=nil, requestid=nil)
|
650
|
+
@Msg = msg
|
651
|
+
@RequestId = requestid
|
652
|
+
end
|
653
|
+
|
654
|
+
def deserialize(params)
|
655
|
+
@Msg = params['Msg']
|
656
|
+
@RequestId = params['RequestId']
|
657
|
+
end
|
658
|
+
end
|
659
|
+
|
660
|
+
# DeleteWhitelist请求参数结构体
|
661
|
+
class DeleteWhitelistRequest < TencentCloud::Common::AbstractModel
|
662
|
+
# @param InstanceID: 实例ID
|
663
|
+
# @type InstanceID: String
|
664
|
+
# @param ID: 名单ID
|
665
|
+
# @type ID: String
|
666
|
+
|
667
|
+
attr_accessor :InstanceID, :ID
|
668
|
+
|
669
|
+
def initialize(instanceid=nil, id=nil)
|
670
|
+
@InstanceID = instanceid
|
671
|
+
@ID = id
|
672
|
+
end
|
673
|
+
|
674
|
+
def deserialize(params)
|
675
|
+
@InstanceID = params['InstanceID']
|
676
|
+
@ID = params['ID']
|
677
|
+
end
|
678
|
+
end
|
679
|
+
|
680
|
+
# DeleteWhitelist返回参数结构体
|
681
|
+
class DeleteWhitelistResponse < TencentCloud::Common::AbstractModel
|
682
|
+
# @param Msg: 消息success
|
683
|
+
# @type Msg: String
|
684
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
685
|
+
# @type RequestId: String
|
686
|
+
|
687
|
+
attr_accessor :Msg, :RequestId
|
688
|
+
|
689
|
+
def initialize(msg=nil, requestid=nil)
|
690
|
+
@Msg = msg
|
691
|
+
@RequestId = requestid
|
692
|
+
end
|
693
|
+
|
694
|
+
def deserialize(params)
|
695
|
+
@Msg = params['Msg']
|
696
|
+
@RequestId = params['RequestId']
|
697
|
+
end
|
698
|
+
end
|
699
|
+
|
700
|
+
# DescribeDataCustomUrl请求参数结构体
|
701
|
+
class DescribeDataCustomUrlRequest < TencentCloud::Common::AbstractModel
|
334
702
|
# @param StartTime: 开始时间
|
335
703
|
# @type StartTime: Integer
|
336
704
|
# @param Type: 类型
|
@@ -373,7 +741,7 @@ module TencentCloud
|
|
373
741
|
# @type Browser: String
|
374
742
|
# @param CostType: 耗时计算方式
|
375
743
|
# @type CostType: String
|
376
|
-
# @param Url:
|
744
|
+
# @param Url: 自定义测速的key的值
|
377
745
|
# @type Url: String
|
378
746
|
# @param Env: 环境
|
379
747
|
# @type Env: String
|
@@ -433,8 +801,8 @@ module TencentCloud
|
|
433
801
|
end
|
434
802
|
end
|
435
803
|
|
436
|
-
#
|
437
|
-
class
|
804
|
+
# DescribeDataCustomUrl返回参数结构体
|
805
|
+
class DescribeDataCustomUrlResponse < TencentCloud::Common::AbstractModel
|
438
806
|
# @param Result: 返回值
|
439
807
|
# @type Result: String
|
440
808
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
@@ -453,11 +821,11 @@ module TencentCloud
|
|
453
821
|
end
|
454
822
|
end
|
455
823
|
|
456
|
-
#
|
457
|
-
class
|
824
|
+
# DescribeDataEventUrl请求参数结构体
|
825
|
+
class DescribeDataEventUrlRequest < TencentCloud::Common::AbstractModel
|
458
826
|
# @param StartTime: 开始时间
|
459
827
|
# @type StartTime: Integer
|
460
|
-
# @param Type:
|
828
|
+
# @param Type: 类型
|
461
829
|
# @type Type: String
|
462
830
|
# @param EndTime: 结束时间
|
463
831
|
# @type EndTime: Integer
|
@@ -495,12 +863,14 @@ module TencentCloud
|
|
495
863
|
# @type Os: String
|
496
864
|
# @param Browser: 浏览器
|
497
865
|
# @type Browser: String
|
498
|
-
# @param
|
866
|
+
# @param Name: 筛选条件
|
867
|
+
# @type Name: String
|
868
|
+
# @param Env: 环境
|
499
869
|
# @type Env: String
|
500
870
|
|
501
|
-
attr_accessor :StartTime, :Type, :EndTime, :ID, :ExtSecond, :Engine, :Isp, :From, :Level, :Brand, :Area, :VersionNum, :Platform, :ExtThird, :ExtFirst, :NetType, :Device, :IsAbroad, :Os, :Browser, :Env
|
871
|
+
attr_accessor :StartTime, :Type, :EndTime, :ID, :ExtSecond, :Engine, :Isp, :From, :Level, :Brand, :Area, :VersionNum, :Platform, :ExtThird, :ExtFirst, :NetType, :Device, :IsAbroad, :Os, :Browser, :Name, :Env
|
502
872
|
|
503
|
-
def initialize(starttime=nil, type=nil, endtime=nil, id=nil, extsecond=nil, engine=nil, isp=nil, from=nil, level=nil, brand=nil, area=nil, versionnum=nil, platform=nil, extthird=nil, extfirst=nil, nettype=nil, device=nil, isabroad=nil, os=nil, browser=nil, env=nil)
|
873
|
+
def initialize(starttime=nil, type=nil, endtime=nil, id=nil, extsecond=nil, engine=nil, isp=nil, from=nil, level=nil, brand=nil, area=nil, versionnum=nil, platform=nil, extthird=nil, extfirst=nil, nettype=nil, device=nil, isabroad=nil, os=nil, browser=nil, name=nil, env=nil)
|
504
874
|
@StartTime = starttime
|
505
875
|
@Type = type
|
506
876
|
@EndTime = endtime
|
@@ -521,6 +891,7 @@ module TencentCloud
|
|
521
891
|
@IsAbroad = isabroad
|
522
892
|
@Os = os
|
523
893
|
@Browser = browser
|
894
|
+
@Name = name
|
524
895
|
@Env = env
|
525
896
|
end
|
526
897
|
|
@@ -545,12 +916,13 @@ module TencentCloud
|
|
545
916
|
@IsAbroad = params['IsAbroad']
|
546
917
|
@Os = params['Os']
|
547
918
|
@Browser = params['Browser']
|
919
|
+
@Name = params['Name']
|
548
920
|
@Env = params['Env']
|
549
921
|
end
|
550
922
|
end
|
551
923
|
|
552
|
-
#
|
553
|
-
class
|
924
|
+
# DescribeDataEventUrl返回参数结构体
|
925
|
+
class DescribeDataEventUrlResponse < TencentCloud::Common::AbstractModel
|
554
926
|
# @param Result: 返回值
|
555
927
|
# @type Result: String
|
556
928
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
@@ -569,108 +941,112 @@ module TencentCloud
|
|
569
941
|
end
|
570
942
|
end
|
571
943
|
|
572
|
-
#
|
573
|
-
class
|
574
|
-
# @param ID: 项目ID
|
575
|
-
# @type ID: Integer
|
944
|
+
# DescribeDataFetchProject请求参数结构体
|
945
|
+
class DescribeDataFetchProjectRequest < TencentCloud::Common::AbstractModel
|
576
946
|
# @param StartTime: 开始时间
|
577
947
|
# @type StartTime: Integer
|
948
|
+
# @param Type: 类型
|
949
|
+
# @type Type: String
|
578
950
|
# @param EndTime: 结束时间
|
579
951
|
# @type EndTime: Integer
|
580
|
-
# @param
|
581
|
-
# @type
|
582
|
-
# @param
|
583
|
-
# @type
|
952
|
+
# @param ID: 项目ID
|
953
|
+
# @type ID: Integer
|
954
|
+
# @param ExtSecond: 自定义2
|
955
|
+
# @type ExtSecond: String
|
956
|
+
# @param Engine: 浏览器引擎
|
957
|
+
# @type Engine: String
|
584
958
|
# @param Isp: 运营商
|
585
959
|
# @type Isp: String
|
960
|
+
# @param From: 来源页面
|
961
|
+
# @type From: String
|
962
|
+
# @param Level: 日志等级
|
963
|
+
# @type Level: String
|
964
|
+
# @param Brand: 品牌
|
965
|
+
# @type Brand: String
|
586
966
|
# @param Area: 地区
|
587
967
|
# @type Area: String
|
588
|
-
# @param NetType: 网络类型
|
589
|
-
# @type NetType: String
|
590
|
-
# @param Platform: 平台
|
591
|
-
# @type Platform: String
|
592
|
-
# @param Device: 机型
|
593
|
-
# @type Device: String
|
594
968
|
# @param VersionNum: 版本
|
595
969
|
# @type VersionNum: String
|
596
|
-
# @param
|
597
|
-
# @type
|
598
|
-
# @param ExtSecond: 自定义2
|
599
|
-
# @type ExtSecond: String
|
970
|
+
# @param Platform: 平台
|
971
|
+
# @type Platform: String
|
600
972
|
# @param ExtThird: 自定义3
|
601
973
|
# @type ExtThird: String
|
974
|
+
# @param ExtFirst: 自定义1
|
975
|
+
# @type ExtFirst: String
|
976
|
+
# @param NetType: 网络类型
|
977
|
+
# @type NetType: String
|
978
|
+
# @param Device: 机型
|
979
|
+
# @type Device: String
|
602
980
|
# @param IsAbroad: 是否海外
|
603
981
|
# @type IsAbroad: String
|
604
|
-
# @param Browser: 浏览器
|
605
|
-
# @type Browser: String
|
606
982
|
# @param Os: 操作系统
|
607
983
|
# @type Os: String
|
608
|
-
# @param
|
609
|
-
# @type
|
610
|
-
# @param Brand: 品牌
|
611
|
-
# @type Brand: String
|
612
|
-
# @param From: 来源页面
|
613
|
-
# @type From: String
|
984
|
+
# @param Browser: 浏览器
|
985
|
+
# @type Browser: String
|
614
986
|
# @param CostType: 耗时计算方式
|
615
987
|
# @type CostType: String
|
616
|
-
# @param
|
988
|
+
# @param Url: 来源
|
989
|
+
# @type Url: String
|
990
|
+
# @param Env: 环境
|
617
991
|
# @type Env: String
|
618
992
|
|
619
|
-
attr_accessor :
|
993
|
+
attr_accessor :StartTime, :Type, :EndTime, :ID, :ExtSecond, :Engine, :Isp, :From, :Level, :Brand, :Area, :VersionNum, :Platform, :ExtThird, :ExtFirst, :NetType, :Device, :IsAbroad, :Os, :Browser, :CostType, :Url, :Env
|
620
994
|
|
621
|
-
def initialize(
|
622
|
-
@ID = id
|
995
|
+
def initialize(starttime=nil, type=nil, endtime=nil, id=nil, extsecond=nil, engine=nil, isp=nil, from=nil, level=nil, brand=nil, area=nil, versionnum=nil, platform=nil, extthird=nil, extfirst=nil, nettype=nil, device=nil, isabroad=nil, os=nil, browser=nil, costtype=nil, url=nil, env=nil)
|
623
996
|
@StartTime = starttime
|
624
|
-
@EndTime = endtime
|
625
997
|
@Type = type
|
626
|
-
@
|
998
|
+
@EndTime = endtime
|
999
|
+
@ID = id
|
1000
|
+
@ExtSecond = extsecond
|
1001
|
+
@Engine = engine
|
627
1002
|
@Isp = isp
|
1003
|
+
@From = from
|
1004
|
+
@Level = level
|
1005
|
+
@Brand = brand
|
628
1006
|
@Area = area
|
629
|
-
@NetType = nettype
|
630
|
-
@Platform = platform
|
631
|
-
@Device = device
|
632
1007
|
@VersionNum = versionnum
|
633
|
-
@
|
634
|
-
@ExtSecond = extsecond
|
1008
|
+
@Platform = platform
|
635
1009
|
@ExtThird = extthird
|
1010
|
+
@ExtFirst = extfirst
|
1011
|
+
@NetType = nettype
|
1012
|
+
@Device = device
|
636
1013
|
@IsAbroad = isabroad
|
637
|
-
@Browser = browser
|
638
1014
|
@Os = os
|
639
|
-
@
|
640
|
-
@Brand = brand
|
641
|
-
@From = from
|
1015
|
+
@Browser = browser
|
642
1016
|
@CostType = costtype
|
1017
|
+
@Url = url
|
643
1018
|
@Env = env
|
644
1019
|
end
|
645
1020
|
|
646
1021
|
def deserialize(params)
|
647
|
-
@ID = params['ID']
|
648
1022
|
@StartTime = params['StartTime']
|
649
|
-
@EndTime = params['EndTime']
|
650
1023
|
@Type = params['Type']
|
651
|
-
@
|
1024
|
+
@EndTime = params['EndTime']
|
1025
|
+
@ID = params['ID']
|
1026
|
+
@ExtSecond = params['ExtSecond']
|
1027
|
+
@Engine = params['Engine']
|
652
1028
|
@Isp = params['Isp']
|
1029
|
+
@From = params['From']
|
1030
|
+
@Level = params['Level']
|
1031
|
+
@Brand = params['Brand']
|
653
1032
|
@Area = params['Area']
|
654
|
-
@NetType = params['NetType']
|
655
|
-
@Platform = params['Platform']
|
656
|
-
@Device = params['Device']
|
657
1033
|
@VersionNum = params['VersionNum']
|
658
|
-
@
|
659
|
-
@ExtSecond = params['ExtSecond']
|
1034
|
+
@Platform = params['Platform']
|
660
1035
|
@ExtThird = params['ExtThird']
|
1036
|
+
@ExtFirst = params['ExtFirst']
|
1037
|
+
@NetType = params['NetType']
|
1038
|
+
@Device = params['Device']
|
661
1039
|
@IsAbroad = params['IsAbroad']
|
662
|
-
@Browser = params['Browser']
|
663
1040
|
@Os = params['Os']
|
664
|
-
@
|
665
|
-
@Brand = params['Brand']
|
666
|
-
@From = params['From']
|
1041
|
+
@Browser = params['Browser']
|
667
1042
|
@CostType = params['CostType']
|
1043
|
+
@Url = params['Url']
|
668
1044
|
@Env = params['Env']
|
669
1045
|
end
|
670
1046
|
end
|
671
1047
|
|
672
|
-
#
|
673
|
-
class
|
1048
|
+
# DescribeDataFetchProject返回参数结构体
|
1049
|
+
class DescribeDataFetchProjectResponse < TencentCloud::Common::AbstractModel
|
674
1050
|
# @param Result: 返回值
|
675
1051
|
# @type Result: String
|
676
1052
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
@@ -689,11 +1065,11 @@ module TencentCloud
|
|
689
1065
|
end
|
690
1066
|
end
|
691
1067
|
|
692
|
-
#
|
693
|
-
class
|
1068
|
+
# DescribeDataFetchUrlInfo请求参数结构体
|
1069
|
+
class DescribeDataFetchUrlInfoRequest < TencentCloud::Common::AbstractModel
|
694
1070
|
# @param StartTime: 开始时间
|
695
1071
|
# @type StartTime: Integer
|
696
|
-
# @param Type:
|
1072
|
+
# @param Type: 类型
|
697
1073
|
# @type Type: String
|
698
1074
|
# @param EndTime: 结束时间
|
699
1075
|
# @type EndTime: Integer
|
@@ -731,12 +1107,16 @@ module TencentCloud
|
|
731
1107
|
# @type Os: String
|
732
1108
|
# @param Browser: 浏览器
|
733
1109
|
# @type Browser: String
|
1110
|
+
# @param CostType: 耗时计算方式
|
1111
|
+
# @type CostType: String
|
1112
|
+
# @param Url: 来源
|
1113
|
+
# @type Url: String
|
734
1114
|
# @param Env: 环境
|
735
1115
|
# @type Env: String
|
736
1116
|
|
737
|
-
attr_accessor :StartTime, :Type, :EndTime, :ID, :ExtSecond, :Engine, :Isp, :From, :Level, :Brand, :Area, :VersionNum, :Platform, :ExtThird, :ExtFirst, :NetType, :Device, :IsAbroad, :Os, :Browser, :Env
|
1117
|
+
attr_accessor :StartTime, :Type, :EndTime, :ID, :ExtSecond, :Engine, :Isp, :From, :Level, :Brand, :Area, :VersionNum, :Platform, :ExtThird, :ExtFirst, :NetType, :Device, :IsAbroad, :Os, :Browser, :CostType, :Url, :Env
|
738
1118
|
|
739
|
-
def initialize(starttime=nil, type=nil, endtime=nil, id=nil, extsecond=nil, engine=nil, isp=nil, from=nil, level=nil, brand=nil, area=nil, versionnum=nil, platform=nil, extthird=nil, extfirst=nil, nettype=nil, device=nil, isabroad=nil, os=nil, browser=nil, env=nil)
|
1119
|
+
def initialize(starttime=nil, type=nil, endtime=nil, id=nil, extsecond=nil, engine=nil, isp=nil, from=nil, level=nil, brand=nil, area=nil, versionnum=nil, platform=nil, extthird=nil, extfirst=nil, nettype=nil, device=nil, isabroad=nil, os=nil, browser=nil, costtype=nil, url=nil, env=nil)
|
740
1120
|
@StartTime = starttime
|
741
1121
|
@Type = type
|
742
1122
|
@EndTime = endtime
|
@@ -757,6 +1137,8 @@ module TencentCloud
|
|
757
1137
|
@IsAbroad = isabroad
|
758
1138
|
@Os = os
|
759
1139
|
@Browser = browser
|
1140
|
+
@CostType = costtype
|
1141
|
+
@Url = url
|
760
1142
|
@Env = env
|
761
1143
|
end
|
762
1144
|
|
@@ -781,12 +1163,14 @@ module TencentCloud
|
|
781
1163
|
@IsAbroad = params['IsAbroad']
|
782
1164
|
@Os = params['Os']
|
783
1165
|
@Browser = params['Browser']
|
1166
|
+
@CostType = params['CostType']
|
1167
|
+
@Url = params['Url']
|
784
1168
|
@Env = params['Env']
|
785
1169
|
end
|
786
1170
|
end
|
787
1171
|
|
788
|
-
#
|
789
|
-
class
|
1172
|
+
# DescribeDataFetchUrlInfo返回参数结构体
|
1173
|
+
class DescribeDataFetchUrlInfoResponse < TencentCloud::Common::AbstractModel
|
790
1174
|
# @param Result: 返回值
|
791
1175
|
# @type Result: String
|
792
1176
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
@@ -805,251 +1189,2736 @@ module TencentCloud
|
|
805
1189
|
end
|
806
1190
|
end
|
807
1191
|
|
808
|
-
#
|
809
|
-
class
|
810
|
-
# @param
|
811
|
-
# @type
|
1192
|
+
# DescribeDataFetchUrl请求参数结构体
|
1193
|
+
class DescribeDataFetchUrlRequest < TencentCloud::Common::AbstractModel
|
1194
|
+
# @param StartTime: 开始时间
|
1195
|
+
# @type StartTime: Integer
|
1196
|
+
# @param Type: 类型
|
1197
|
+
# @type Type: String
|
1198
|
+
# @param EndTime: 结束时间
|
1199
|
+
# @type EndTime: Integer
|
812
1200
|
# @param ID: 项目ID
|
813
1201
|
# @type ID: Integer
|
1202
|
+
# @param ExtSecond: 自定义2
|
1203
|
+
# @type ExtSecond: String
|
1204
|
+
# @param Engine: 浏览器引擎
|
1205
|
+
# @type Engine: String
|
1206
|
+
# @param Isp: 运营商
|
1207
|
+
# @type Isp: String
|
1208
|
+
# @param From: 来源页面
|
1209
|
+
# @type From: String
|
1210
|
+
# @param Level: 日志等级
|
1211
|
+
# @type Level: String
|
1212
|
+
# @param Brand: 品牌
|
1213
|
+
# @type Brand: String
|
1214
|
+
# @param Area: 地区
|
1215
|
+
# @type Area: String
|
1216
|
+
# @param VersionNum: 版本
|
1217
|
+
# @type VersionNum: String
|
1218
|
+
# @param Platform: 平台
|
1219
|
+
# @type Platform: String
|
1220
|
+
# @param ExtThird: 自定义3
|
1221
|
+
# @type ExtThird: String
|
1222
|
+
# @param ExtFirst: 自定义1
|
1223
|
+
# @type ExtFirst: String
|
1224
|
+
# @param NetType: 网络类型
|
1225
|
+
# @type NetType: String
|
1226
|
+
# @param Device: 机型
|
1227
|
+
# @type Device: String
|
1228
|
+
# @param IsAbroad: 是否海外
|
1229
|
+
# @type IsAbroad: String
|
1230
|
+
# @param Os: 操作系统
|
1231
|
+
# @type Os: String
|
1232
|
+
# @param Browser: 浏览器
|
1233
|
+
# @type Browser: String
|
1234
|
+
# @param CostType: 耗时计算方式
|
1235
|
+
# @type CostType: String
|
1236
|
+
# @param Url: 来源
|
1237
|
+
# @type Url: String
|
1238
|
+
# @param Env: 环境
|
1239
|
+
# @type Env: String
|
814
1240
|
|
815
|
-
attr_accessor :
|
1241
|
+
attr_accessor :StartTime, :Type, :EndTime, :ID, :ExtSecond, :Engine, :Isp, :From, :Level, :Brand, :Area, :VersionNum, :Platform, :ExtThird, :ExtFirst, :NetType, :Device, :IsAbroad, :Os, :Browser, :CostType, :Url, :Env
|
816
1242
|
|
817
|
-
def initialize(
|
818
|
-
@
|
1243
|
+
def initialize(starttime=nil, type=nil, endtime=nil, id=nil, extsecond=nil, engine=nil, isp=nil, from=nil, level=nil, brand=nil, area=nil, versionnum=nil, platform=nil, extthird=nil, extfirst=nil, nettype=nil, device=nil, isabroad=nil, os=nil, browser=nil, costtype=nil, url=nil, env=nil)
|
1244
|
+
@StartTime = starttime
|
1245
|
+
@Type = type
|
1246
|
+
@EndTime = endtime
|
1247
|
+
@ID = id
|
1248
|
+
@ExtSecond = extsecond
|
1249
|
+
@Engine = engine
|
1250
|
+
@Isp = isp
|
1251
|
+
@From = from
|
1252
|
+
@Level = level
|
1253
|
+
@Brand = brand
|
1254
|
+
@Area = area
|
1255
|
+
@VersionNum = versionnum
|
1256
|
+
@Platform = platform
|
1257
|
+
@ExtThird = extthird
|
1258
|
+
@ExtFirst = extfirst
|
1259
|
+
@NetType = nettype
|
1260
|
+
@Device = device
|
1261
|
+
@IsAbroad = isabroad
|
1262
|
+
@Os = os
|
1263
|
+
@Browser = browser
|
1264
|
+
@CostType = costtype
|
1265
|
+
@Url = url
|
1266
|
+
@Env = env
|
1267
|
+
end
|
1268
|
+
|
1269
|
+
def deserialize(params)
|
1270
|
+
@StartTime = params['StartTime']
|
1271
|
+
@Type = params['Type']
|
1272
|
+
@EndTime = params['EndTime']
|
1273
|
+
@ID = params['ID']
|
1274
|
+
@ExtSecond = params['ExtSecond']
|
1275
|
+
@Engine = params['Engine']
|
1276
|
+
@Isp = params['Isp']
|
1277
|
+
@From = params['From']
|
1278
|
+
@Level = params['Level']
|
1279
|
+
@Brand = params['Brand']
|
1280
|
+
@Area = params['Area']
|
1281
|
+
@VersionNum = params['VersionNum']
|
1282
|
+
@Platform = params['Platform']
|
1283
|
+
@ExtThird = params['ExtThird']
|
1284
|
+
@ExtFirst = params['ExtFirst']
|
1285
|
+
@NetType = params['NetType']
|
1286
|
+
@Device = params['Device']
|
1287
|
+
@IsAbroad = params['IsAbroad']
|
1288
|
+
@Os = params['Os']
|
1289
|
+
@Browser = params['Browser']
|
1290
|
+
@CostType = params['CostType']
|
1291
|
+
@Url = params['Url']
|
1292
|
+
@Env = params['Env']
|
1293
|
+
end
|
1294
|
+
end
|
1295
|
+
|
1296
|
+
# DescribeDataFetchUrl返回参数结构体
|
1297
|
+
class DescribeDataFetchUrlResponse < TencentCloud::Common::AbstractModel
|
1298
|
+
# @param Result: 返回值
|
1299
|
+
# @type Result: String
|
1300
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1301
|
+
# @type RequestId: String
|
1302
|
+
|
1303
|
+
attr_accessor :Result, :RequestId
|
1304
|
+
|
1305
|
+
def initialize(result=nil, requestid=nil)
|
1306
|
+
@Result = result
|
1307
|
+
@RequestId = requestid
|
1308
|
+
end
|
1309
|
+
|
1310
|
+
def deserialize(params)
|
1311
|
+
@Result = params['Result']
|
1312
|
+
@RequestId = params['RequestId']
|
1313
|
+
end
|
1314
|
+
end
|
1315
|
+
|
1316
|
+
# DescribeDataLogUrlInfo请求参数结构体
|
1317
|
+
class DescribeDataLogUrlInfoRequest < TencentCloud::Common::AbstractModel
|
1318
|
+
# @param ID: 项目ID
|
1319
|
+
# @type ID: Integer
|
1320
|
+
# @param StartTime: 时间戳
|
1321
|
+
# @type StartTime: Integer
|
1322
|
+
# @param EndTime: 时间戳
|
1323
|
+
# @type EndTime: Integer
|
1324
|
+
|
1325
|
+
attr_accessor :ID, :StartTime, :EndTime
|
1326
|
+
|
1327
|
+
def initialize(id=nil, starttime=nil, endtime=nil)
|
1328
|
+
@ID = id
|
1329
|
+
@StartTime = starttime
|
1330
|
+
@EndTime = endtime
|
1331
|
+
end
|
1332
|
+
|
1333
|
+
def deserialize(params)
|
1334
|
+
@ID = params['ID']
|
1335
|
+
@StartTime = params['StartTime']
|
1336
|
+
@EndTime = params['EndTime']
|
1337
|
+
end
|
1338
|
+
end
|
1339
|
+
|
1340
|
+
# DescribeDataLogUrlInfo返回参数结构体
|
1341
|
+
class DescribeDataLogUrlInfoResponse < TencentCloud::Common::AbstractModel
|
1342
|
+
# @param Result: 返回字符串
|
1343
|
+
# @type Result: String
|
1344
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1345
|
+
# @type RequestId: String
|
1346
|
+
|
1347
|
+
attr_accessor :Result, :RequestId
|
1348
|
+
|
1349
|
+
def initialize(result=nil, requestid=nil)
|
1350
|
+
@Result = result
|
1351
|
+
@RequestId = requestid
|
1352
|
+
end
|
1353
|
+
|
1354
|
+
def deserialize(params)
|
1355
|
+
@Result = params['Result']
|
1356
|
+
@RequestId = params['RequestId']
|
1357
|
+
end
|
1358
|
+
end
|
1359
|
+
|
1360
|
+
# DescribeDataLogUrlStatistics请求参数结构体
|
1361
|
+
class DescribeDataLogUrlStatisticsRequest < TencentCloud::Common::AbstractModel
|
1362
|
+
# @param StartTime: 开始时间
|
1363
|
+
# @type StartTime: Integer
|
1364
|
+
# @param Type: "analysis", "compare", "samp", "version", "ext3","nettype", "platform","isp","region","device","browser","ext1","ext2"
|
1365
|
+
# @type Type: String
|
1366
|
+
# @param EndTime: 结束时间
|
1367
|
+
# @type EndTime: Integer
|
1368
|
+
# @param ID: 项目ID
|
1369
|
+
# @type ID: Integer
|
1370
|
+
# @param ExtSecond: 自定义2
|
1371
|
+
# @type ExtSecond: String
|
1372
|
+
# @param Engine: 浏览器引擎
|
1373
|
+
# @type Engine: String
|
1374
|
+
# @param Isp: 运营商
|
1375
|
+
# @type Isp: String
|
1376
|
+
# @param From: 来源页面
|
1377
|
+
# @type From: String
|
1378
|
+
# @param Level: 日志等级
|
1379
|
+
# @type Level: String
|
1380
|
+
# @param Brand: 品牌
|
1381
|
+
# @type Brand: String
|
1382
|
+
# @param Area: 地区
|
1383
|
+
# @type Area: String
|
1384
|
+
# @param VersionNum: 版本
|
1385
|
+
# @type VersionNum: String
|
1386
|
+
# @param Platform: 平台
|
1387
|
+
# @type Platform: String
|
1388
|
+
# @param ExtThird: 自定义3
|
1389
|
+
# @type ExtThird: String
|
1390
|
+
# @param ExtFirst: 自定义1
|
1391
|
+
# @type ExtFirst: String
|
1392
|
+
# @param NetType: 网络类型
|
1393
|
+
# @type NetType: String
|
1394
|
+
# @param Device: 机型
|
1395
|
+
# @type Device: String
|
1396
|
+
# @param IsAbroad: 是否海外
|
1397
|
+
# @type IsAbroad: String
|
1398
|
+
# @param Os: 操作系统
|
1399
|
+
# @type Os: String
|
1400
|
+
# @param Browser: 浏览器
|
1401
|
+
# @type Browser: String
|
1402
|
+
# @param Env: 环境区分
|
1403
|
+
# @type Env: String
|
1404
|
+
|
1405
|
+
attr_accessor :StartTime, :Type, :EndTime, :ID, :ExtSecond, :Engine, :Isp, :From, :Level, :Brand, :Area, :VersionNum, :Platform, :ExtThird, :ExtFirst, :NetType, :Device, :IsAbroad, :Os, :Browser, :Env
|
1406
|
+
|
1407
|
+
def initialize(starttime=nil, type=nil, endtime=nil, id=nil, extsecond=nil, engine=nil, isp=nil, from=nil, level=nil, brand=nil, area=nil, versionnum=nil, platform=nil, extthird=nil, extfirst=nil, nettype=nil, device=nil, isabroad=nil, os=nil, browser=nil, env=nil)
|
1408
|
+
@StartTime = starttime
|
1409
|
+
@Type = type
|
1410
|
+
@EndTime = endtime
|
1411
|
+
@ID = id
|
1412
|
+
@ExtSecond = extsecond
|
1413
|
+
@Engine = engine
|
1414
|
+
@Isp = isp
|
1415
|
+
@From = from
|
1416
|
+
@Level = level
|
1417
|
+
@Brand = brand
|
1418
|
+
@Area = area
|
1419
|
+
@VersionNum = versionnum
|
1420
|
+
@Platform = platform
|
1421
|
+
@ExtThird = extthird
|
1422
|
+
@ExtFirst = extfirst
|
1423
|
+
@NetType = nettype
|
1424
|
+
@Device = device
|
1425
|
+
@IsAbroad = isabroad
|
1426
|
+
@Os = os
|
1427
|
+
@Browser = browser
|
1428
|
+
@Env = env
|
1429
|
+
end
|
1430
|
+
|
1431
|
+
def deserialize(params)
|
1432
|
+
@StartTime = params['StartTime']
|
1433
|
+
@Type = params['Type']
|
1434
|
+
@EndTime = params['EndTime']
|
1435
|
+
@ID = params['ID']
|
1436
|
+
@ExtSecond = params['ExtSecond']
|
1437
|
+
@Engine = params['Engine']
|
1438
|
+
@Isp = params['Isp']
|
1439
|
+
@From = params['From']
|
1440
|
+
@Level = params['Level']
|
1441
|
+
@Brand = params['Brand']
|
1442
|
+
@Area = params['Area']
|
1443
|
+
@VersionNum = params['VersionNum']
|
1444
|
+
@Platform = params['Platform']
|
1445
|
+
@ExtThird = params['ExtThird']
|
1446
|
+
@ExtFirst = params['ExtFirst']
|
1447
|
+
@NetType = params['NetType']
|
1448
|
+
@Device = params['Device']
|
1449
|
+
@IsAbroad = params['IsAbroad']
|
1450
|
+
@Os = params['Os']
|
1451
|
+
@Browser = params['Browser']
|
1452
|
+
@Env = params['Env']
|
1453
|
+
end
|
1454
|
+
end
|
1455
|
+
|
1456
|
+
# DescribeDataLogUrlStatistics返回参数结构体
|
1457
|
+
class DescribeDataLogUrlStatisticsResponse < TencentCloud::Common::AbstractModel
|
1458
|
+
# @param Result: 返回值
|
1459
|
+
# @type Result: String
|
1460
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1461
|
+
# @type RequestId: String
|
1462
|
+
|
1463
|
+
attr_accessor :Result, :RequestId
|
1464
|
+
|
1465
|
+
def initialize(result=nil, requestid=nil)
|
1466
|
+
@Result = result
|
1467
|
+
@RequestId = requestid
|
1468
|
+
end
|
1469
|
+
|
1470
|
+
def deserialize(params)
|
1471
|
+
@Result = params['Result']
|
1472
|
+
@RequestId = params['RequestId']
|
1473
|
+
end
|
1474
|
+
end
|
1475
|
+
|
1476
|
+
# DescribeDataPerformancePage请求参数结构体
|
1477
|
+
class DescribeDataPerformancePageRequest < TencentCloud::Common::AbstractModel
|
1478
|
+
# @param ID: 项目ID
|
1479
|
+
# @type ID: Integer
|
1480
|
+
# @param StartTime: 开始时间
|
1481
|
+
# @type StartTime: Integer
|
1482
|
+
# @param EndTime: 结束时间
|
1483
|
+
# @type EndTime: Integer
|
1484
|
+
# @param Type: ["pagepv", "allcount"]
|
1485
|
+
# @type Type: String
|
1486
|
+
# @param Level: 日志等级
|
1487
|
+
# @type Level: String
|
1488
|
+
# @param Isp: 运营商
|
1489
|
+
# @type Isp: String
|
1490
|
+
# @param Area: 地区
|
1491
|
+
# @type Area: String
|
1492
|
+
# @param NetType: 网络类型
|
1493
|
+
# @type NetType: String
|
1494
|
+
# @param Platform: 平台
|
1495
|
+
# @type Platform: String
|
1496
|
+
# @param Device: 机型
|
1497
|
+
# @type Device: String
|
1498
|
+
# @param VersionNum: 版本
|
1499
|
+
# @type VersionNum: String
|
1500
|
+
# @param ExtFirst: 自定义1
|
1501
|
+
# @type ExtFirst: String
|
1502
|
+
# @param ExtSecond: 自定义2
|
1503
|
+
# @type ExtSecond: String
|
1504
|
+
# @param ExtThird: 自定义3
|
1505
|
+
# @type ExtThird: String
|
1506
|
+
# @param IsAbroad: 是否海外
|
1507
|
+
# @type IsAbroad: String
|
1508
|
+
# @param Browser: 浏览器
|
1509
|
+
# @type Browser: String
|
1510
|
+
# @param Os: 操作系统
|
1511
|
+
# @type Os: String
|
1512
|
+
# @param Engine: 浏览器引擎
|
1513
|
+
# @type Engine: String
|
1514
|
+
# @param Brand: 品牌
|
1515
|
+
# @type Brand: String
|
1516
|
+
# @param From: 来源页面
|
1517
|
+
# @type From: String
|
1518
|
+
# @param CostType: 耗时计算方式
|
1519
|
+
# @type CostType: String
|
1520
|
+
# @param Env: 环境变量
|
1521
|
+
# @type Env: String
|
1522
|
+
|
1523
|
+
attr_accessor :ID, :StartTime, :EndTime, :Type, :Level, :Isp, :Area, :NetType, :Platform, :Device, :VersionNum, :ExtFirst, :ExtSecond, :ExtThird, :IsAbroad, :Browser, :Os, :Engine, :Brand, :From, :CostType, :Env
|
1524
|
+
|
1525
|
+
def initialize(id=nil, starttime=nil, endtime=nil, type=nil, level=nil, isp=nil, area=nil, nettype=nil, platform=nil, device=nil, versionnum=nil, extfirst=nil, extsecond=nil, extthird=nil, isabroad=nil, browser=nil, os=nil, engine=nil, brand=nil, from=nil, costtype=nil, env=nil)
|
1526
|
+
@ID = id
|
1527
|
+
@StartTime = starttime
|
1528
|
+
@EndTime = endtime
|
1529
|
+
@Type = type
|
1530
|
+
@Level = level
|
1531
|
+
@Isp = isp
|
1532
|
+
@Area = area
|
1533
|
+
@NetType = nettype
|
1534
|
+
@Platform = platform
|
1535
|
+
@Device = device
|
1536
|
+
@VersionNum = versionnum
|
1537
|
+
@ExtFirst = extfirst
|
1538
|
+
@ExtSecond = extsecond
|
1539
|
+
@ExtThird = extthird
|
1540
|
+
@IsAbroad = isabroad
|
1541
|
+
@Browser = browser
|
1542
|
+
@Os = os
|
1543
|
+
@Engine = engine
|
1544
|
+
@Brand = brand
|
1545
|
+
@From = from
|
1546
|
+
@CostType = costtype
|
1547
|
+
@Env = env
|
1548
|
+
end
|
1549
|
+
|
1550
|
+
def deserialize(params)
|
1551
|
+
@ID = params['ID']
|
1552
|
+
@StartTime = params['StartTime']
|
1553
|
+
@EndTime = params['EndTime']
|
1554
|
+
@Type = params['Type']
|
1555
|
+
@Level = params['Level']
|
1556
|
+
@Isp = params['Isp']
|
1557
|
+
@Area = params['Area']
|
1558
|
+
@NetType = params['NetType']
|
1559
|
+
@Platform = params['Platform']
|
1560
|
+
@Device = params['Device']
|
1561
|
+
@VersionNum = params['VersionNum']
|
1562
|
+
@ExtFirst = params['ExtFirst']
|
1563
|
+
@ExtSecond = params['ExtSecond']
|
1564
|
+
@ExtThird = params['ExtThird']
|
1565
|
+
@IsAbroad = params['IsAbroad']
|
1566
|
+
@Browser = params['Browser']
|
1567
|
+
@Os = params['Os']
|
1568
|
+
@Engine = params['Engine']
|
1569
|
+
@Brand = params['Brand']
|
1570
|
+
@From = params['From']
|
1571
|
+
@CostType = params['CostType']
|
1572
|
+
@Env = params['Env']
|
1573
|
+
end
|
1574
|
+
end
|
1575
|
+
|
1576
|
+
# DescribeDataPerformancePage返回参数结构体
|
1577
|
+
class DescribeDataPerformancePageResponse < TencentCloud::Common::AbstractModel
|
1578
|
+
# @param Result: 返回值
|
1579
|
+
# @type Result: String
|
1580
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1581
|
+
# @type RequestId: String
|
1582
|
+
|
1583
|
+
attr_accessor :Result, :RequestId
|
1584
|
+
|
1585
|
+
def initialize(result=nil, requestid=nil)
|
1586
|
+
@Result = result
|
1587
|
+
@RequestId = requestid
|
1588
|
+
end
|
1589
|
+
|
1590
|
+
def deserialize(params)
|
1591
|
+
@Result = params['Result']
|
1592
|
+
@RequestId = params['RequestId']
|
1593
|
+
end
|
1594
|
+
end
|
1595
|
+
|
1596
|
+
# DescribeDataPerformanceProject请求参数结构体
|
1597
|
+
class DescribeDataPerformanceProjectRequest < TencentCloud::Common::AbstractModel
|
1598
|
+
# @param StartTime: 开始时间
|
1599
|
+
# @type StartTime: Integer
|
1600
|
+
# @param Type: "allcount", "falls", "samp", "version", "ext3","nettype", "platform","isp","region","device","browser","ext1","ext2"
|
1601
|
+
# @type Type: String
|
1602
|
+
# @param EndTime: 结束时间
|
1603
|
+
# @type EndTime: Integer
|
1604
|
+
# @param ID: 项目ID
|
1605
|
+
# @type ID: Integer
|
1606
|
+
# @param ExtSecond: 自定义2
|
1607
|
+
# @type ExtSecond: String
|
1608
|
+
# @param Engine: 浏览器引擎
|
1609
|
+
# @type Engine: String
|
1610
|
+
# @param Isp: 运营商
|
1611
|
+
# @type Isp: String
|
1612
|
+
# @param From: 来源页面
|
1613
|
+
# @type From: String
|
1614
|
+
# @param Level: 日志等级
|
1615
|
+
# @type Level: String
|
1616
|
+
# @param Brand: 品牌
|
1617
|
+
# @type Brand: String
|
1618
|
+
# @param Area: 地区
|
1619
|
+
# @type Area: String
|
1620
|
+
# @param VersionNum: 版本
|
1621
|
+
# @type VersionNum: String
|
1622
|
+
# @param Platform: 平台
|
1623
|
+
# @type Platform: String
|
1624
|
+
# @param ExtThird: 自定义3
|
1625
|
+
# @type ExtThird: String
|
1626
|
+
# @param ExtFirst: 自定义1
|
1627
|
+
# @type ExtFirst: String
|
1628
|
+
# @param NetType: 网络类型
|
1629
|
+
# @type NetType: String
|
1630
|
+
# @param Device: 机型
|
1631
|
+
# @type Device: String
|
1632
|
+
# @param IsAbroad: 是否海外
|
1633
|
+
# @type IsAbroad: String
|
1634
|
+
# @param Os: 操作系统
|
1635
|
+
# @type Os: String
|
1636
|
+
# @param Browser: 浏览器
|
1637
|
+
# @type Browser: String
|
1638
|
+
# @param CostType: 耗时计算
|
1639
|
+
# @type CostType: String
|
1640
|
+
# @param Env: 环境
|
1641
|
+
# @type Env: String
|
1642
|
+
|
1643
|
+
attr_accessor :StartTime, :Type, :EndTime, :ID, :ExtSecond, :Engine, :Isp, :From, :Level, :Brand, :Area, :VersionNum, :Platform, :ExtThird, :ExtFirst, :NetType, :Device, :IsAbroad, :Os, :Browser, :CostType, :Env
|
1644
|
+
|
1645
|
+
def initialize(starttime=nil, type=nil, endtime=nil, id=nil, extsecond=nil, engine=nil, isp=nil, from=nil, level=nil, brand=nil, area=nil, versionnum=nil, platform=nil, extthird=nil, extfirst=nil, nettype=nil, device=nil, isabroad=nil, os=nil, browser=nil, costtype=nil, env=nil)
|
1646
|
+
@StartTime = starttime
|
1647
|
+
@Type = type
|
1648
|
+
@EndTime = endtime
|
1649
|
+
@ID = id
|
1650
|
+
@ExtSecond = extsecond
|
1651
|
+
@Engine = engine
|
1652
|
+
@Isp = isp
|
1653
|
+
@From = from
|
1654
|
+
@Level = level
|
1655
|
+
@Brand = brand
|
1656
|
+
@Area = area
|
1657
|
+
@VersionNum = versionnum
|
1658
|
+
@Platform = platform
|
1659
|
+
@ExtThird = extthird
|
1660
|
+
@ExtFirst = extfirst
|
1661
|
+
@NetType = nettype
|
1662
|
+
@Device = device
|
1663
|
+
@IsAbroad = isabroad
|
1664
|
+
@Os = os
|
1665
|
+
@Browser = browser
|
1666
|
+
@CostType = costtype
|
1667
|
+
@Env = env
|
1668
|
+
end
|
1669
|
+
|
1670
|
+
def deserialize(params)
|
1671
|
+
@StartTime = params['StartTime']
|
1672
|
+
@Type = params['Type']
|
1673
|
+
@EndTime = params['EndTime']
|
1674
|
+
@ID = params['ID']
|
1675
|
+
@ExtSecond = params['ExtSecond']
|
1676
|
+
@Engine = params['Engine']
|
1677
|
+
@Isp = params['Isp']
|
1678
|
+
@From = params['From']
|
1679
|
+
@Level = params['Level']
|
1680
|
+
@Brand = params['Brand']
|
1681
|
+
@Area = params['Area']
|
1682
|
+
@VersionNum = params['VersionNum']
|
1683
|
+
@Platform = params['Platform']
|
1684
|
+
@ExtThird = params['ExtThird']
|
1685
|
+
@ExtFirst = params['ExtFirst']
|
1686
|
+
@NetType = params['NetType']
|
1687
|
+
@Device = params['Device']
|
1688
|
+
@IsAbroad = params['IsAbroad']
|
1689
|
+
@Os = params['Os']
|
1690
|
+
@Browser = params['Browser']
|
1691
|
+
@CostType = params['CostType']
|
1692
|
+
@Env = params['Env']
|
1693
|
+
end
|
1694
|
+
end
|
1695
|
+
|
1696
|
+
# DescribeDataPerformanceProject返回参数结构体
|
1697
|
+
class DescribeDataPerformanceProjectResponse < TencentCloud::Common::AbstractModel
|
1698
|
+
# @param Result: 返回值
|
1699
|
+
# @type Result: String
|
1700
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1701
|
+
# @type RequestId: String
|
1702
|
+
|
1703
|
+
attr_accessor :Result, :RequestId
|
1704
|
+
|
1705
|
+
def initialize(result=nil, requestid=nil)
|
1706
|
+
@Result = result
|
1707
|
+
@RequestId = requestid
|
1708
|
+
end
|
1709
|
+
|
1710
|
+
def deserialize(params)
|
1711
|
+
@Result = params['Result']
|
1712
|
+
@RequestId = params['RequestId']
|
1713
|
+
end
|
1714
|
+
end
|
1715
|
+
|
1716
|
+
# DescribeDataPvUrlInfo请求参数结构体
|
1717
|
+
class DescribeDataPvUrlInfoRequest < TencentCloud::Common::AbstractModel
|
1718
|
+
# @param StartTime: 开始时间
|
1719
|
+
# @type StartTime: Integer
|
1720
|
+
# @param Type: 类型
|
1721
|
+
# @type Type: String
|
1722
|
+
# @param EndTime: 结束时间
|
1723
|
+
# @type EndTime: Integer
|
1724
|
+
# @param ID: 项目ID
|
1725
|
+
# @type ID: Integer
|
1726
|
+
# @param ExtSecond: 自定义2
|
1727
|
+
# @type ExtSecond: String
|
1728
|
+
# @param Engine: 浏览器引擎
|
1729
|
+
# @type Engine: String
|
1730
|
+
# @param Isp: 运营商
|
1731
|
+
# @type Isp: String
|
1732
|
+
# @param From: 来源页面
|
1733
|
+
# @type From: String
|
1734
|
+
# @param Level: 日志等级
|
1735
|
+
# @type Level: String
|
1736
|
+
# @param Brand: 品牌
|
1737
|
+
# @type Brand: String
|
1738
|
+
# @param Area: 地区
|
1739
|
+
# @type Area: String
|
1740
|
+
# @param VersionNum: 版本
|
1741
|
+
# @type VersionNum: String
|
1742
|
+
# @param Platform: 平台
|
1743
|
+
# @type Platform: String
|
1744
|
+
# @param ExtThird: 自定义3
|
1745
|
+
# @type ExtThird: String
|
1746
|
+
# @param ExtFirst: 自定义1
|
1747
|
+
# @type ExtFirst: String
|
1748
|
+
# @param NetType: 网络类型
|
1749
|
+
# @type NetType: String
|
1750
|
+
# @param Device: 机型
|
1751
|
+
# @type Device: String
|
1752
|
+
# @param IsAbroad: 是否海外
|
1753
|
+
# @type IsAbroad: String
|
1754
|
+
# @param Os: 操作系统
|
1755
|
+
# @type Os: String
|
1756
|
+
# @param Browser: 浏览器
|
1757
|
+
# @type Browser: String
|
1758
|
+
# @param Env: 环境
|
1759
|
+
# @type Env: String
|
1760
|
+
|
1761
|
+
attr_accessor :StartTime, :Type, :EndTime, :ID, :ExtSecond, :Engine, :Isp, :From, :Level, :Brand, :Area, :VersionNum, :Platform, :ExtThird, :ExtFirst, :NetType, :Device, :IsAbroad, :Os, :Browser, :Env
|
1762
|
+
|
1763
|
+
def initialize(starttime=nil, type=nil, endtime=nil, id=nil, extsecond=nil, engine=nil, isp=nil, from=nil, level=nil, brand=nil, area=nil, versionnum=nil, platform=nil, extthird=nil, extfirst=nil, nettype=nil, device=nil, isabroad=nil, os=nil, browser=nil, env=nil)
|
1764
|
+
@StartTime = starttime
|
1765
|
+
@Type = type
|
1766
|
+
@EndTime = endtime
|
1767
|
+
@ID = id
|
1768
|
+
@ExtSecond = extsecond
|
1769
|
+
@Engine = engine
|
1770
|
+
@Isp = isp
|
1771
|
+
@From = from
|
1772
|
+
@Level = level
|
1773
|
+
@Brand = brand
|
1774
|
+
@Area = area
|
1775
|
+
@VersionNum = versionnum
|
1776
|
+
@Platform = platform
|
1777
|
+
@ExtThird = extthird
|
1778
|
+
@ExtFirst = extfirst
|
1779
|
+
@NetType = nettype
|
1780
|
+
@Device = device
|
1781
|
+
@IsAbroad = isabroad
|
1782
|
+
@Os = os
|
1783
|
+
@Browser = browser
|
1784
|
+
@Env = env
|
1785
|
+
end
|
1786
|
+
|
1787
|
+
def deserialize(params)
|
1788
|
+
@StartTime = params['StartTime']
|
1789
|
+
@Type = params['Type']
|
1790
|
+
@EndTime = params['EndTime']
|
1791
|
+
@ID = params['ID']
|
1792
|
+
@ExtSecond = params['ExtSecond']
|
1793
|
+
@Engine = params['Engine']
|
1794
|
+
@Isp = params['Isp']
|
1795
|
+
@From = params['From']
|
1796
|
+
@Level = params['Level']
|
1797
|
+
@Brand = params['Brand']
|
1798
|
+
@Area = params['Area']
|
1799
|
+
@VersionNum = params['VersionNum']
|
1800
|
+
@Platform = params['Platform']
|
1801
|
+
@ExtThird = params['ExtThird']
|
1802
|
+
@ExtFirst = params['ExtFirst']
|
1803
|
+
@NetType = params['NetType']
|
1804
|
+
@Device = params['Device']
|
1805
|
+
@IsAbroad = params['IsAbroad']
|
1806
|
+
@Os = params['Os']
|
1807
|
+
@Browser = params['Browser']
|
1808
|
+
@Env = params['Env']
|
1809
|
+
end
|
1810
|
+
end
|
1811
|
+
|
1812
|
+
# DescribeDataPvUrlInfo返回参数结构体
|
1813
|
+
class DescribeDataPvUrlInfoResponse < TencentCloud::Common::AbstractModel
|
1814
|
+
# @param Result: 返回值
|
1815
|
+
# @type Result: String
|
1816
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1817
|
+
# @type RequestId: String
|
1818
|
+
|
1819
|
+
attr_accessor :Result, :RequestId
|
1820
|
+
|
1821
|
+
def initialize(result=nil, requestid=nil)
|
1822
|
+
@Result = result
|
1823
|
+
@RequestId = requestid
|
1824
|
+
end
|
1825
|
+
|
1826
|
+
def deserialize(params)
|
1827
|
+
@Result = params['Result']
|
1828
|
+
@RequestId = params['RequestId']
|
1829
|
+
end
|
1830
|
+
end
|
1831
|
+
|
1832
|
+
# DescribeDataPvUrlStatistics请求参数结构体
|
1833
|
+
class DescribeDataPvUrlStatisticsRequest < TencentCloud::Common::AbstractModel
|
1834
|
+
# @param StartTime: 开始时间
|
1835
|
+
# @type StartTime: Integer
|
1836
|
+
# @param Type: 类型:"allcount", "falls", "samp", "version", "ext3","nettype", "platform","isp","region","device","browser","ext1","ext2"
|
1837
|
+
# @type Type: String
|
1838
|
+
# @param EndTime: 结束时间
|
1839
|
+
# @type EndTime: Integer
|
1840
|
+
# @param ID: 项目ID
|
1841
|
+
# @type ID: Integer
|
1842
|
+
# @param ExtSecond: 自定义2
|
1843
|
+
# @type ExtSecond: String
|
1844
|
+
# @param Engine: 浏览器引擎
|
1845
|
+
# @type Engine: String
|
1846
|
+
# @param Isp: 运营商
|
1847
|
+
# @type Isp: String
|
1848
|
+
# @param From: 来源页面
|
1849
|
+
# @type From: String
|
1850
|
+
# @param Level: 日志等级
|
1851
|
+
# @type Level: String
|
1852
|
+
# @param Brand: 品牌
|
1853
|
+
# @type Brand: String
|
1854
|
+
# @param Area: 地区
|
1855
|
+
# @type Area: String
|
1856
|
+
# @param VersionNum: 版本
|
1857
|
+
# @type VersionNum: String
|
1858
|
+
# @param Platform: 平台
|
1859
|
+
# @type Platform: String
|
1860
|
+
# @param ExtThird: 自定义3
|
1861
|
+
# @type ExtThird: String
|
1862
|
+
# @param ExtFirst: 自定义1
|
1863
|
+
# @type ExtFirst: String
|
1864
|
+
# @param NetType: 网络类型
|
1865
|
+
# @type NetType: String
|
1866
|
+
# @param Device: 机型
|
1867
|
+
# @type Device: String
|
1868
|
+
# @param IsAbroad: 是否海外
|
1869
|
+
# @type IsAbroad: String
|
1870
|
+
# @param Os: 操作系统
|
1871
|
+
# @type Os: String
|
1872
|
+
# @param Browser: 浏览器
|
1873
|
+
# @type Browser: String
|
1874
|
+
# @param Env: 环境
|
1875
|
+
# @type Env: String
|
1876
|
+
|
1877
|
+
attr_accessor :StartTime, :Type, :EndTime, :ID, :ExtSecond, :Engine, :Isp, :From, :Level, :Brand, :Area, :VersionNum, :Platform, :ExtThird, :ExtFirst, :NetType, :Device, :IsAbroad, :Os, :Browser, :Env
|
1878
|
+
|
1879
|
+
def initialize(starttime=nil, type=nil, endtime=nil, id=nil, extsecond=nil, engine=nil, isp=nil, from=nil, level=nil, brand=nil, area=nil, versionnum=nil, platform=nil, extthird=nil, extfirst=nil, nettype=nil, device=nil, isabroad=nil, os=nil, browser=nil, env=nil)
|
1880
|
+
@StartTime = starttime
|
1881
|
+
@Type = type
|
1882
|
+
@EndTime = endtime
|
1883
|
+
@ID = id
|
1884
|
+
@ExtSecond = extsecond
|
1885
|
+
@Engine = engine
|
1886
|
+
@Isp = isp
|
1887
|
+
@From = from
|
1888
|
+
@Level = level
|
1889
|
+
@Brand = brand
|
1890
|
+
@Area = area
|
1891
|
+
@VersionNum = versionnum
|
1892
|
+
@Platform = platform
|
1893
|
+
@ExtThird = extthird
|
1894
|
+
@ExtFirst = extfirst
|
1895
|
+
@NetType = nettype
|
1896
|
+
@Device = device
|
1897
|
+
@IsAbroad = isabroad
|
1898
|
+
@Os = os
|
1899
|
+
@Browser = browser
|
1900
|
+
@Env = env
|
1901
|
+
end
|
1902
|
+
|
1903
|
+
def deserialize(params)
|
1904
|
+
@StartTime = params['StartTime']
|
1905
|
+
@Type = params['Type']
|
1906
|
+
@EndTime = params['EndTime']
|
1907
|
+
@ID = params['ID']
|
1908
|
+
@ExtSecond = params['ExtSecond']
|
1909
|
+
@Engine = params['Engine']
|
1910
|
+
@Isp = params['Isp']
|
1911
|
+
@From = params['From']
|
1912
|
+
@Level = params['Level']
|
1913
|
+
@Brand = params['Brand']
|
1914
|
+
@Area = params['Area']
|
1915
|
+
@VersionNum = params['VersionNum']
|
1916
|
+
@Platform = params['Platform']
|
1917
|
+
@ExtThird = params['ExtThird']
|
1918
|
+
@ExtFirst = params['ExtFirst']
|
1919
|
+
@NetType = params['NetType']
|
1920
|
+
@Device = params['Device']
|
1921
|
+
@IsAbroad = params['IsAbroad']
|
1922
|
+
@Os = params['Os']
|
1923
|
+
@Browser = params['Browser']
|
1924
|
+
@Env = params['Env']
|
1925
|
+
end
|
1926
|
+
end
|
1927
|
+
|
1928
|
+
# DescribeDataPvUrlStatistics返回参数结构体
|
1929
|
+
class DescribeDataPvUrlStatisticsResponse < TencentCloud::Common::AbstractModel
|
1930
|
+
# @param Result: 返回值
|
1931
|
+
# @type Result: String
|
1932
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1933
|
+
# @type RequestId: String
|
1934
|
+
|
1935
|
+
attr_accessor :Result, :RequestId
|
1936
|
+
|
1937
|
+
def initialize(result=nil, requestid=nil)
|
1938
|
+
@Result = result
|
1939
|
+
@RequestId = requestid
|
1940
|
+
end
|
1941
|
+
|
1942
|
+
def deserialize(params)
|
1943
|
+
@Result = params['Result']
|
1944
|
+
@RequestId = params['RequestId']
|
1945
|
+
end
|
1946
|
+
end
|
1947
|
+
|
1948
|
+
# DescribeDataReportCount请求参数结构体
|
1949
|
+
class DescribeDataReportCountRequest < TencentCloud::Common::AbstractModel
|
1950
|
+
# @param StartTime: 开始时间
|
1951
|
+
# @type StartTime: Integer
|
1952
|
+
# @param EndTime: 结束时间
|
1953
|
+
# @type EndTime: Integer
|
1954
|
+
# @param ID: 项目ID
|
1955
|
+
# @type ID: Integer
|
1956
|
+
# @param ReportType: 上报类型
|
1957
|
+
# @type ReportType: String
|
1958
|
+
# @param InstanceID: 实例ID
|
1959
|
+
# @type InstanceID: String
|
1960
|
+
|
1961
|
+
attr_accessor :StartTime, :EndTime, :ID, :ReportType, :InstanceID
|
1962
|
+
|
1963
|
+
def initialize(starttime=nil, endtime=nil, id=nil, reporttype=nil, instanceid=nil)
|
1964
|
+
@StartTime = starttime
|
1965
|
+
@EndTime = endtime
|
1966
|
+
@ID = id
|
1967
|
+
@ReportType = reporttype
|
1968
|
+
@InstanceID = instanceid
|
1969
|
+
end
|
1970
|
+
|
1971
|
+
def deserialize(params)
|
1972
|
+
@StartTime = params['StartTime']
|
1973
|
+
@EndTime = params['EndTime']
|
1974
|
+
@ID = params['ID']
|
1975
|
+
@ReportType = params['ReportType']
|
1976
|
+
@InstanceID = params['InstanceID']
|
1977
|
+
end
|
1978
|
+
end
|
1979
|
+
|
1980
|
+
# DescribeDataReportCount返回参数结构体
|
1981
|
+
class DescribeDataReportCountResponse < TencentCloud::Common::AbstractModel
|
1982
|
+
# @param Result: 返回值
|
1983
|
+
# @type Result: String
|
1984
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1985
|
+
# @type RequestId: String
|
1986
|
+
|
1987
|
+
attr_accessor :Result, :RequestId
|
1988
|
+
|
1989
|
+
def initialize(result=nil, requestid=nil)
|
1990
|
+
@Result = result
|
1991
|
+
@RequestId = requestid
|
1992
|
+
end
|
1993
|
+
|
1994
|
+
def deserialize(params)
|
1995
|
+
@Result = params['Result']
|
1996
|
+
@RequestId = params['RequestId']
|
1997
|
+
end
|
1998
|
+
end
|
1999
|
+
|
2000
|
+
# DescribeData请求参数结构体
|
2001
|
+
class DescribeDataRequest < TencentCloud::Common::AbstractModel
|
2002
|
+
# @param Query: 查询字符串
|
2003
|
+
# @type Query: String
|
2004
|
+
# @param ID: 项目ID
|
2005
|
+
# @type ID: Integer
|
2006
|
+
|
2007
|
+
attr_accessor :Query, :ID
|
2008
|
+
|
2009
|
+
def initialize(query=nil, id=nil)
|
2010
|
+
@Query = query
|
2011
|
+
@ID = id
|
2012
|
+
end
|
2013
|
+
|
2014
|
+
def deserialize(params)
|
2015
|
+
@Query = params['Query']
|
2016
|
+
@ID = params['ID']
|
2017
|
+
end
|
2018
|
+
end
|
2019
|
+
|
2020
|
+
# DescribeData返回参数结构体
|
2021
|
+
class DescribeDataResponse < TencentCloud::Common::AbstractModel
|
2022
|
+
# @param Result: 返回字符串
|
2023
|
+
# @type Result: String
|
2024
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2025
|
+
# @type RequestId: String
|
2026
|
+
|
2027
|
+
attr_accessor :Result, :RequestId
|
2028
|
+
|
2029
|
+
def initialize(result=nil, requestid=nil)
|
2030
|
+
@Result = result
|
2031
|
+
@RequestId = requestid
|
2032
|
+
end
|
2033
|
+
|
2034
|
+
def deserialize(params)
|
2035
|
+
@Result = params['Result']
|
2036
|
+
@RequestId = params['RequestId']
|
2037
|
+
end
|
2038
|
+
end
|
2039
|
+
|
2040
|
+
# DescribeDataSetUrlStatistics请求参数结构体
|
2041
|
+
class DescribeDataSetUrlStatisticsRequest < TencentCloud::Common::AbstractModel
|
2042
|
+
# @param StartTime: 开始时间
|
2043
|
+
# @type StartTime: Integer
|
2044
|
+
# @param Type: "allcount", "falls", "samp", "version", "ext3","nettype", "platform","isp","region","device","browser","ext1","ext2"
|
2045
|
+
# @type Type: String
|
2046
|
+
# @param EndTime: 结束时间
|
2047
|
+
# @type EndTime: Integer
|
2048
|
+
# @param ID: 项目ID
|
2049
|
+
# @type ID: Integer
|
2050
|
+
# @param ExtSecond: 自定义2
|
2051
|
+
# @type ExtSecond: String
|
2052
|
+
# @param Engine: 浏览器引擎
|
2053
|
+
# @type Engine: String
|
2054
|
+
# @param Isp: 运营商
|
2055
|
+
# @type Isp: String
|
2056
|
+
# @param From: 来源页面
|
2057
|
+
# @type From: String
|
2058
|
+
# @param Level: 日志等级
|
2059
|
+
# @type Level: String
|
2060
|
+
# @param Brand: 品牌
|
2061
|
+
# @type Brand: String
|
2062
|
+
# @param Area: 地区
|
2063
|
+
# @type Area: String
|
2064
|
+
# @param VersionNum: 版本
|
2065
|
+
# @type VersionNum: String
|
2066
|
+
# @param Platform: 平台
|
2067
|
+
# @type Platform: String
|
2068
|
+
# @param ExtThird: 自定义3
|
2069
|
+
# @type ExtThird: String
|
2070
|
+
# @param ExtFirst: 自定义1
|
2071
|
+
# @type ExtFirst: String
|
2072
|
+
# @param NetType: 网络类型
|
2073
|
+
# @type NetType: String
|
2074
|
+
# @param Device: 机型
|
2075
|
+
# @type Device: String
|
2076
|
+
# @param IsAbroad: 是否海外
|
2077
|
+
# @type IsAbroad: String
|
2078
|
+
# @param Os: 操作系统
|
2079
|
+
# @type Os: String
|
2080
|
+
# @param Browser: 浏览器
|
2081
|
+
# @type Browser: String
|
2082
|
+
# @param CostType: 耗时计算
|
2083
|
+
# @type CostType: String
|
2084
|
+
# @param Env: 环境
|
2085
|
+
# @type Env: String
|
2086
|
+
|
2087
|
+
attr_accessor :StartTime, :Type, :EndTime, :ID, :ExtSecond, :Engine, :Isp, :From, :Level, :Brand, :Area, :VersionNum, :Platform, :ExtThird, :ExtFirst, :NetType, :Device, :IsAbroad, :Os, :Browser, :CostType, :Env
|
2088
|
+
|
2089
|
+
def initialize(starttime=nil, type=nil, endtime=nil, id=nil, extsecond=nil, engine=nil, isp=nil, from=nil, level=nil, brand=nil, area=nil, versionnum=nil, platform=nil, extthird=nil, extfirst=nil, nettype=nil, device=nil, isabroad=nil, os=nil, browser=nil, costtype=nil, env=nil)
|
2090
|
+
@StartTime = starttime
|
2091
|
+
@Type = type
|
2092
|
+
@EndTime = endtime
|
2093
|
+
@ID = id
|
2094
|
+
@ExtSecond = extsecond
|
2095
|
+
@Engine = engine
|
2096
|
+
@Isp = isp
|
2097
|
+
@From = from
|
2098
|
+
@Level = level
|
2099
|
+
@Brand = brand
|
2100
|
+
@Area = area
|
2101
|
+
@VersionNum = versionnum
|
2102
|
+
@Platform = platform
|
2103
|
+
@ExtThird = extthird
|
2104
|
+
@ExtFirst = extfirst
|
2105
|
+
@NetType = nettype
|
2106
|
+
@Device = device
|
2107
|
+
@IsAbroad = isabroad
|
2108
|
+
@Os = os
|
2109
|
+
@Browser = browser
|
2110
|
+
@CostType = costtype
|
2111
|
+
@Env = env
|
2112
|
+
end
|
2113
|
+
|
2114
|
+
def deserialize(params)
|
2115
|
+
@StartTime = params['StartTime']
|
2116
|
+
@Type = params['Type']
|
2117
|
+
@EndTime = params['EndTime']
|
2118
|
+
@ID = params['ID']
|
2119
|
+
@ExtSecond = params['ExtSecond']
|
2120
|
+
@Engine = params['Engine']
|
2121
|
+
@Isp = params['Isp']
|
2122
|
+
@From = params['From']
|
2123
|
+
@Level = params['Level']
|
2124
|
+
@Brand = params['Brand']
|
2125
|
+
@Area = params['Area']
|
2126
|
+
@VersionNum = params['VersionNum']
|
2127
|
+
@Platform = params['Platform']
|
2128
|
+
@ExtThird = params['ExtThird']
|
2129
|
+
@ExtFirst = params['ExtFirst']
|
2130
|
+
@NetType = params['NetType']
|
2131
|
+
@Device = params['Device']
|
2132
|
+
@IsAbroad = params['IsAbroad']
|
2133
|
+
@Os = params['Os']
|
2134
|
+
@Browser = params['Browser']
|
2135
|
+
@CostType = params['CostType']
|
2136
|
+
@Env = params['Env']
|
2137
|
+
end
|
2138
|
+
end
|
2139
|
+
|
2140
|
+
# DescribeDataSetUrlStatistics返回参数结构体
|
2141
|
+
class DescribeDataSetUrlStatisticsResponse < TencentCloud::Common::AbstractModel
|
2142
|
+
# @param Result: 返回值
|
2143
|
+
# @type Result: String
|
2144
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2145
|
+
# @type RequestId: String
|
2146
|
+
|
2147
|
+
attr_accessor :Result, :RequestId
|
2148
|
+
|
2149
|
+
def initialize(result=nil, requestid=nil)
|
2150
|
+
@Result = result
|
2151
|
+
@RequestId = requestid
|
2152
|
+
end
|
2153
|
+
|
2154
|
+
def deserialize(params)
|
2155
|
+
@Result = params['Result']
|
2156
|
+
@RequestId = params['RequestId']
|
2157
|
+
end
|
2158
|
+
end
|
2159
|
+
|
2160
|
+
# DescribeDataStaticProject请求参数结构体
|
2161
|
+
class DescribeDataStaticProjectRequest < TencentCloud::Common::AbstractModel
|
2162
|
+
# @param StartTime: 开始时间
|
2163
|
+
# @type StartTime: Integer
|
2164
|
+
# @param Type: 类型
|
2165
|
+
# @type Type: String
|
2166
|
+
# @param EndTime: 结束时间
|
2167
|
+
# @type EndTime: Integer
|
2168
|
+
# @param ID: 项目ID
|
2169
|
+
# @type ID: Integer
|
2170
|
+
# @param ExtSecond: 自定义2
|
2171
|
+
# @type ExtSecond: String
|
2172
|
+
# @param Engine: 浏览器引擎
|
2173
|
+
# @type Engine: String
|
2174
|
+
# @param Isp: 运营商
|
2175
|
+
# @type Isp: String
|
2176
|
+
# @param From: 来源页面
|
2177
|
+
# @type From: String
|
2178
|
+
# @param Level: 日志等级
|
2179
|
+
# @type Level: String
|
2180
|
+
# @param Brand: 品牌
|
2181
|
+
# @type Brand: String
|
2182
|
+
# @param Area: 地区
|
2183
|
+
# @type Area: String
|
2184
|
+
# @param VersionNum: 版本
|
2185
|
+
# @type VersionNum: String
|
2186
|
+
# @param Platform: 平台
|
2187
|
+
# @type Platform: String
|
2188
|
+
# @param ExtThird: 自定义3
|
2189
|
+
# @type ExtThird: String
|
2190
|
+
# @param ExtFirst: 自定义1
|
2191
|
+
# @type ExtFirst: String
|
2192
|
+
# @param NetType: 网络类型
|
2193
|
+
# @type NetType: String
|
2194
|
+
# @param Device: 机型
|
2195
|
+
# @type Device: String
|
2196
|
+
# @param IsAbroad: 是否海外
|
2197
|
+
# @type IsAbroad: String
|
2198
|
+
# @param Os: 操作系统
|
2199
|
+
# @type Os: String
|
2200
|
+
# @param Browser: 浏览器
|
2201
|
+
# @type Browser: String
|
2202
|
+
# @param CostType: 耗时计算
|
2203
|
+
# @type CostType: String
|
2204
|
+
# @param Url: 来源
|
2205
|
+
# @type Url: Array
|
2206
|
+
# @param Env: 环境
|
2207
|
+
# @type Env: String
|
2208
|
+
|
2209
|
+
attr_accessor :StartTime, :Type, :EndTime, :ID, :ExtSecond, :Engine, :Isp, :From, :Level, :Brand, :Area, :VersionNum, :Platform, :ExtThird, :ExtFirst, :NetType, :Device, :IsAbroad, :Os, :Browser, :CostType, :Url, :Env
|
2210
|
+
|
2211
|
+
def initialize(starttime=nil, type=nil, endtime=nil, id=nil, extsecond=nil, engine=nil, isp=nil, from=nil, level=nil, brand=nil, area=nil, versionnum=nil, platform=nil, extthird=nil, extfirst=nil, nettype=nil, device=nil, isabroad=nil, os=nil, browser=nil, costtype=nil, url=nil, env=nil)
|
2212
|
+
@StartTime = starttime
|
2213
|
+
@Type = type
|
2214
|
+
@EndTime = endtime
|
2215
|
+
@ID = id
|
2216
|
+
@ExtSecond = extsecond
|
2217
|
+
@Engine = engine
|
2218
|
+
@Isp = isp
|
2219
|
+
@From = from
|
2220
|
+
@Level = level
|
2221
|
+
@Brand = brand
|
2222
|
+
@Area = area
|
2223
|
+
@VersionNum = versionnum
|
2224
|
+
@Platform = platform
|
2225
|
+
@ExtThird = extthird
|
2226
|
+
@ExtFirst = extfirst
|
2227
|
+
@NetType = nettype
|
2228
|
+
@Device = device
|
2229
|
+
@IsAbroad = isabroad
|
2230
|
+
@Os = os
|
2231
|
+
@Browser = browser
|
2232
|
+
@CostType = costtype
|
2233
|
+
@Url = url
|
2234
|
+
@Env = env
|
2235
|
+
end
|
2236
|
+
|
2237
|
+
def deserialize(params)
|
2238
|
+
@StartTime = params['StartTime']
|
2239
|
+
@Type = params['Type']
|
2240
|
+
@EndTime = params['EndTime']
|
2241
|
+
@ID = params['ID']
|
2242
|
+
@ExtSecond = params['ExtSecond']
|
2243
|
+
@Engine = params['Engine']
|
2244
|
+
@Isp = params['Isp']
|
2245
|
+
@From = params['From']
|
2246
|
+
@Level = params['Level']
|
2247
|
+
@Brand = params['Brand']
|
2248
|
+
@Area = params['Area']
|
2249
|
+
@VersionNum = params['VersionNum']
|
2250
|
+
@Platform = params['Platform']
|
2251
|
+
@ExtThird = params['ExtThird']
|
2252
|
+
@ExtFirst = params['ExtFirst']
|
2253
|
+
@NetType = params['NetType']
|
2254
|
+
@Device = params['Device']
|
2255
|
+
@IsAbroad = params['IsAbroad']
|
2256
|
+
@Os = params['Os']
|
2257
|
+
@Browser = params['Browser']
|
2258
|
+
@CostType = params['CostType']
|
2259
|
+
@Url = params['Url']
|
2260
|
+
@Env = params['Env']
|
2261
|
+
end
|
2262
|
+
end
|
2263
|
+
|
2264
|
+
# DescribeDataStaticProject返回参数结构体
|
2265
|
+
class DescribeDataStaticProjectResponse < TencentCloud::Common::AbstractModel
|
2266
|
+
# @param Result: 返回值
|
2267
|
+
# @type Result: String
|
2268
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2269
|
+
# @type RequestId: String
|
2270
|
+
|
2271
|
+
attr_accessor :Result, :RequestId
|
2272
|
+
|
2273
|
+
def initialize(result=nil, requestid=nil)
|
2274
|
+
@Result = result
|
2275
|
+
@RequestId = requestid
|
2276
|
+
end
|
2277
|
+
|
2278
|
+
def deserialize(params)
|
2279
|
+
@Result = params['Result']
|
2280
|
+
@RequestId = params['RequestId']
|
2281
|
+
end
|
2282
|
+
end
|
2283
|
+
|
2284
|
+
# DescribeDataStaticResource请求参数结构体
|
2285
|
+
class DescribeDataStaticResourceRequest < TencentCloud::Common::AbstractModel
|
2286
|
+
# @param StartTime: 开始时间
|
2287
|
+
# @type StartTime: Integer
|
2288
|
+
# @param Type: 类型
|
2289
|
+
# @type Type: String
|
2290
|
+
# @param EndTime: 结束时间
|
2291
|
+
# @type EndTime: Integer
|
2292
|
+
# @param ID: 项目ID
|
2293
|
+
# @type ID: Integer
|
2294
|
+
# @param ExtSecond: 自定义2
|
2295
|
+
# @type ExtSecond: String
|
2296
|
+
# @param Engine: 浏览器引擎
|
2297
|
+
# @type Engine: String
|
2298
|
+
# @param Isp: 运营商
|
2299
|
+
# @type Isp: String
|
2300
|
+
# @param From: 来源页面
|
2301
|
+
# @type From: String
|
2302
|
+
# @param Level: 日志等级
|
2303
|
+
# @type Level: String
|
2304
|
+
# @param Brand: 品牌
|
2305
|
+
# @type Brand: String
|
2306
|
+
# @param Area: 地区
|
2307
|
+
# @type Area: String
|
2308
|
+
# @param VersionNum: 版本
|
2309
|
+
# @type VersionNum: String
|
2310
|
+
# @param Platform: 平台
|
2311
|
+
# @type Platform: String
|
2312
|
+
# @param ExtThird: 自定义3
|
2313
|
+
# @type ExtThird: String
|
2314
|
+
# @param ExtFirst: 自定义1
|
2315
|
+
# @type ExtFirst: String
|
2316
|
+
# @param NetType: 网络类型
|
2317
|
+
# @type NetType: String
|
2318
|
+
# @param Device: 机型
|
2319
|
+
# @type Device: String
|
2320
|
+
# @param IsAbroad: 是否海外
|
2321
|
+
# @type IsAbroad: String
|
2322
|
+
# @param Os: 操作系统
|
2323
|
+
# @type Os: String
|
2324
|
+
# @param Browser: 浏览器
|
2325
|
+
# @type Browser: String
|
2326
|
+
# @param CostType: 耗时计算方式
|
2327
|
+
# @type CostType: String
|
2328
|
+
# @param Url: 来源
|
2329
|
+
# @type Url: String
|
2330
|
+
# @param Env: 环境
|
2331
|
+
# @type Env: String
|
2332
|
+
|
2333
|
+
attr_accessor :StartTime, :Type, :EndTime, :ID, :ExtSecond, :Engine, :Isp, :From, :Level, :Brand, :Area, :VersionNum, :Platform, :ExtThird, :ExtFirst, :NetType, :Device, :IsAbroad, :Os, :Browser, :CostType, :Url, :Env
|
2334
|
+
|
2335
|
+
def initialize(starttime=nil, type=nil, endtime=nil, id=nil, extsecond=nil, engine=nil, isp=nil, from=nil, level=nil, brand=nil, area=nil, versionnum=nil, platform=nil, extthird=nil, extfirst=nil, nettype=nil, device=nil, isabroad=nil, os=nil, browser=nil, costtype=nil, url=nil, env=nil)
|
2336
|
+
@StartTime = starttime
|
2337
|
+
@Type = type
|
2338
|
+
@EndTime = endtime
|
2339
|
+
@ID = id
|
2340
|
+
@ExtSecond = extsecond
|
2341
|
+
@Engine = engine
|
2342
|
+
@Isp = isp
|
2343
|
+
@From = from
|
2344
|
+
@Level = level
|
2345
|
+
@Brand = brand
|
2346
|
+
@Area = area
|
2347
|
+
@VersionNum = versionnum
|
2348
|
+
@Platform = platform
|
2349
|
+
@ExtThird = extthird
|
2350
|
+
@ExtFirst = extfirst
|
2351
|
+
@NetType = nettype
|
2352
|
+
@Device = device
|
2353
|
+
@IsAbroad = isabroad
|
2354
|
+
@Os = os
|
2355
|
+
@Browser = browser
|
2356
|
+
@CostType = costtype
|
2357
|
+
@Url = url
|
2358
|
+
@Env = env
|
2359
|
+
end
|
2360
|
+
|
2361
|
+
def deserialize(params)
|
2362
|
+
@StartTime = params['StartTime']
|
2363
|
+
@Type = params['Type']
|
2364
|
+
@EndTime = params['EndTime']
|
2365
|
+
@ID = params['ID']
|
2366
|
+
@ExtSecond = params['ExtSecond']
|
2367
|
+
@Engine = params['Engine']
|
2368
|
+
@Isp = params['Isp']
|
2369
|
+
@From = params['From']
|
2370
|
+
@Level = params['Level']
|
2371
|
+
@Brand = params['Brand']
|
2372
|
+
@Area = params['Area']
|
2373
|
+
@VersionNum = params['VersionNum']
|
2374
|
+
@Platform = params['Platform']
|
2375
|
+
@ExtThird = params['ExtThird']
|
2376
|
+
@ExtFirst = params['ExtFirst']
|
2377
|
+
@NetType = params['NetType']
|
2378
|
+
@Device = params['Device']
|
2379
|
+
@IsAbroad = params['IsAbroad']
|
2380
|
+
@Os = params['Os']
|
2381
|
+
@Browser = params['Browser']
|
2382
|
+
@CostType = params['CostType']
|
2383
|
+
@Url = params['Url']
|
2384
|
+
@Env = params['Env']
|
2385
|
+
end
|
2386
|
+
end
|
2387
|
+
|
2388
|
+
# DescribeDataStaticResource返回参数结构体
|
2389
|
+
class DescribeDataStaticResourceResponse < TencentCloud::Common::AbstractModel
|
2390
|
+
# @param Result: 返回值
|
2391
|
+
# @type Result: String
|
2392
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2393
|
+
# @type RequestId: String
|
2394
|
+
|
2395
|
+
attr_accessor :Result, :RequestId
|
2396
|
+
|
2397
|
+
def initialize(result=nil, requestid=nil)
|
2398
|
+
@Result = result
|
2399
|
+
@RequestId = requestid
|
2400
|
+
end
|
2401
|
+
|
2402
|
+
def deserialize(params)
|
2403
|
+
@Result = params['Result']
|
2404
|
+
@RequestId = params['RequestId']
|
2405
|
+
end
|
2406
|
+
end
|
2407
|
+
|
2408
|
+
# DescribeDataStaticUrl请求参数结构体
|
2409
|
+
class DescribeDataStaticUrlRequest < TencentCloud::Common::AbstractModel
|
2410
|
+
# @param StartTime: 开始时间
|
2411
|
+
# @type StartTime: Integer
|
2412
|
+
# @param Type: 类型
|
2413
|
+
# @type Type: String
|
2414
|
+
# @param EndTime: 结束时间
|
2415
|
+
# @type EndTime: Integer
|
2416
|
+
# @param ID: 项目ID
|
2417
|
+
# @type ID: Integer
|
2418
|
+
# @param ExtSecond: 自定义2
|
2419
|
+
# @type ExtSecond: String
|
2420
|
+
# @param Engine: 浏览器引擎
|
2421
|
+
# @type Engine: String
|
2422
|
+
# @param Isp: 运营商
|
2423
|
+
# @type Isp: String
|
2424
|
+
# @param From: 来源页面
|
2425
|
+
# @type From: String
|
2426
|
+
# @param Level: 日志等级
|
2427
|
+
# @type Level: String
|
2428
|
+
# @param Brand: 品牌
|
2429
|
+
# @type Brand: String
|
2430
|
+
# @param Area: 地区
|
2431
|
+
# @type Area: String
|
2432
|
+
# @param VersionNum: 版本
|
2433
|
+
# @type VersionNum: String
|
2434
|
+
# @param Platform: 平台
|
2435
|
+
# @type Platform: String
|
2436
|
+
# @param ExtThird: 自定义3
|
2437
|
+
# @type ExtThird: String
|
2438
|
+
# @param ExtFirst: 自定义1
|
2439
|
+
# @type ExtFirst: String
|
2440
|
+
# @param NetType: 网络类型
|
2441
|
+
# @type NetType: String
|
2442
|
+
# @param Device: 机型
|
2443
|
+
# @type Device: String
|
2444
|
+
# @param IsAbroad: 是否海外
|
2445
|
+
# @type IsAbroad: String
|
2446
|
+
# @param Os: 操作系统
|
2447
|
+
# @type Os: String
|
2448
|
+
# @param Browser: 浏览器
|
2449
|
+
# @type Browser: String
|
2450
|
+
# @param CostType: 耗时计算方式
|
2451
|
+
# @type CostType: String
|
2452
|
+
# @param Url: 来源
|
2453
|
+
# @type Url: String
|
2454
|
+
# @param Env: 环境
|
2455
|
+
# @type Env: String
|
2456
|
+
|
2457
|
+
attr_accessor :StartTime, :Type, :EndTime, :ID, :ExtSecond, :Engine, :Isp, :From, :Level, :Brand, :Area, :VersionNum, :Platform, :ExtThird, :ExtFirst, :NetType, :Device, :IsAbroad, :Os, :Browser, :CostType, :Url, :Env
|
2458
|
+
|
2459
|
+
def initialize(starttime=nil, type=nil, endtime=nil, id=nil, extsecond=nil, engine=nil, isp=nil, from=nil, level=nil, brand=nil, area=nil, versionnum=nil, platform=nil, extthird=nil, extfirst=nil, nettype=nil, device=nil, isabroad=nil, os=nil, browser=nil, costtype=nil, url=nil, env=nil)
|
2460
|
+
@StartTime = starttime
|
2461
|
+
@Type = type
|
2462
|
+
@EndTime = endtime
|
2463
|
+
@ID = id
|
2464
|
+
@ExtSecond = extsecond
|
2465
|
+
@Engine = engine
|
2466
|
+
@Isp = isp
|
2467
|
+
@From = from
|
2468
|
+
@Level = level
|
2469
|
+
@Brand = brand
|
2470
|
+
@Area = area
|
2471
|
+
@VersionNum = versionnum
|
2472
|
+
@Platform = platform
|
2473
|
+
@ExtThird = extthird
|
2474
|
+
@ExtFirst = extfirst
|
2475
|
+
@NetType = nettype
|
2476
|
+
@Device = device
|
2477
|
+
@IsAbroad = isabroad
|
2478
|
+
@Os = os
|
2479
|
+
@Browser = browser
|
2480
|
+
@CostType = costtype
|
2481
|
+
@Url = url
|
2482
|
+
@Env = env
|
2483
|
+
end
|
2484
|
+
|
2485
|
+
def deserialize(params)
|
2486
|
+
@StartTime = params['StartTime']
|
2487
|
+
@Type = params['Type']
|
2488
|
+
@EndTime = params['EndTime']
|
2489
|
+
@ID = params['ID']
|
2490
|
+
@ExtSecond = params['ExtSecond']
|
2491
|
+
@Engine = params['Engine']
|
2492
|
+
@Isp = params['Isp']
|
2493
|
+
@From = params['From']
|
2494
|
+
@Level = params['Level']
|
2495
|
+
@Brand = params['Brand']
|
2496
|
+
@Area = params['Area']
|
2497
|
+
@VersionNum = params['VersionNum']
|
2498
|
+
@Platform = params['Platform']
|
2499
|
+
@ExtThird = params['ExtThird']
|
2500
|
+
@ExtFirst = params['ExtFirst']
|
2501
|
+
@NetType = params['NetType']
|
2502
|
+
@Device = params['Device']
|
2503
|
+
@IsAbroad = params['IsAbroad']
|
2504
|
+
@Os = params['Os']
|
2505
|
+
@Browser = params['Browser']
|
2506
|
+
@CostType = params['CostType']
|
2507
|
+
@Url = params['Url']
|
2508
|
+
@Env = params['Env']
|
2509
|
+
end
|
2510
|
+
end
|
2511
|
+
|
2512
|
+
# DescribeDataStaticUrl返回参数结构体
|
2513
|
+
class DescribeDataStaticUrlResponse < TencentCloud::Common::AbstractModel
|
2514
|
+
# @param Result: 返回值
|
2515
|
+
# @type Result: String
|
2516
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2517
|
+
# @type RequestId: String
|
2518
|
+
|
2519
|
+
attr_accessor :Result, :RequestId
|
2520
|
+
|
2521
|
+
def initialize(result=nil, requestid=nil)
|
2522
|
+
@Result = result
|
2523
|
+
@RequestId = requestid
|
2524
|
+
end
|
2525
|
+
|
2526
|
+
def deserialize(params)
|
2527
|
+
@Result = params['Result']
|
2528
|
+
@RequestId = params['RequestId']
|
2529
|
+
end
|
2530
|
+
end
|
2531
|
+
|
2532
|
+
# DescribeDataWebVitalsPage请求参数结构体
|
2533
|
+
class DescribeDataWebVitalsPageRequest < TencentCloud::Common::AbstractModel
|
2534
|
+
# @param StartTime: 开始时间
|
2535
|
+
# @type StartTime: Integer
|
2536
|
+
# @param EndTime: 结束时间
|
2537
|
+
# @type EndTime: Integer
|
2538
|
+
# @param ID: 项目ID
|
2539
|
+
# @type ID: Integer
|
2540
|
+
# @param ExtSecond: 自定义2
|
2541
|
+
# @type ExtSecond: String
|
2542
|
+
# @param Engine: 浏览器引擎
|
2543
|
+
# @type Engine: String
|
2544
|
+
# @param Isp: 运营商
|
2545
|
+
# @type Isp: String
|
2546
|
+
# @param From: 来源页面
|
2547
|
+
# @type From: String
|
2548
|
+
# @param Level: 日志等级
|
2549
|
+
# @type Level: String
|
2550
|
+
# @param Type: 类型暂无
|
2551
|
+
# @type Type: String
|
2552
|
+
# @param Brand: 品牌
|
2553
|
+
# @type Brand: String
|
2554
|
+
# @param Area: 地区
|
2555
|
+
# @type Area: String
|
2556
|
+
# @param VersionNum: 版本
|
2557
|
+
# @type VersionNum: String
|
2558
|
+
# @param Platform: 平台
|
2559
|
+
# @type Platform: String
|
2560
|
+
# @param ExtThird: 自定义3
|
2561
|
+
# @type ExtThird: String
|
2562
|
+
# @param ExtFirst: 自定义1
|
2563
|
+
# @type ExtFirst: String
|
2564
|
+
# @param NetType: 网络类型
|
2565
|
+
# @type NetType: String
|
2566
|
+
# @param Device: 机型
|
2567
|
+
# @type Device: String
|
2568
|
+
# @param IsAbroad: 是否海外
|
2569
|
+
# @type IsAbroad: String
|
2570
|
+
# @param Os: 操作系统
|
2571
|
+
# @type Os: String
|
2572
|
+
# @param Browser: 浏览器
|
2573
|
+
# @type Browser: String
|
2574
|
+
# @param CostType: 耗时计算
|
2575
|
+
# @type CostType: String
|
2576
|
+
# @param Env: 环境
|
2577
|
+
# @type Env: String
|
2578
|
+
|
2579
|
+
attr_accessor :StartTime, :EndTime, :ID, :ExtSecond, :Engine, :Isp, :From, :Level, :Type, :Brand, :Area, :VersionNum, :Platform, :ExtThird, :ExtFirst, :NetType, :Device, :IsAbroad, :Os, :Browser, :CostType, :Env
|
2580
|
+
|
2581
|
+
def initialize(starttime=nil, endtime=nil, id=nil, extsecond=nil, engine=nil, isp=nil, from=nil, level=nil, type=nil, brand=nil, area=nil, versionnum=nil, platform=nil, extthird=nil, extfirst=nil, nettype=nil, device=nil, isabroad=nil, os=nil, browser=nil, costtype=nil, env=nil)
|
2582
|
+
@StartTime = starttime
|
2583
|
+
@EndTime = endtime
|
2584
|
+
@ID = id
|
2585
|
+
@ExtSecond = extsecond
|
2586
|
+
@Engine = engine
|
2587
|
+
@Isp = isp
|
2588
|
+
@From = from
|
2589
|
+
@Level = level
|
2590
|
+
@Type = type
|
2591
|
+
@Brand = brand
|
2592
|
+
@Area = area
|
2593
|
+
@VersionNum = versionnum
|
2594
|
+
@Platform = platform
|
2595
|
+
@ExtThird = extthird
|
2596
|
+
@ExtFirst = extfirst
|
2597
|
+
@NetType = nettype
|
2598
|
+
@Device = device
|
2599
|
+
@IsAbroad = isabroad
|
2600
|
+
@Os = os
|
2601
|
+
@Browser = browser
|
2602
|
+
@CostType = costtype
|
2603
|
+
@Env = env
|
2604
|
+
end
|
2605
|
+
|
2606
|
+
def deserialize(params)
|
2607
|
+
@StartTime = params['StartTime']
|
2608
|
+
@EndTime = params['EndTime']
|
2609
|
+
@ID = params['ID']
|
2610
|
+
@ExtSecond = params['ExtSecond']
|
2611
|
+
@Engine = params['Engine']
|
2612
|
+
@Isp = params['Isp']
|
2613
|
+
@From = params['From']
|
2614
|
+
@Level = params['Level']
|
2615
|
+
@Type = params['Type']
|
2616
|
+
@Brand = params['Brand']
|
2617
|
+
@Area = params['Area']
|
2618
|
+
@VersionNum = params['VersionNum']
|
2619
|
+
@Platform = params['Platform']
|
2620
|
+
@ExtThird = params['ExtThird']
|
2621
|
+
@ExtFirst = params['ExtFirst']
|
2622
|
+
@NetType = params['NetType']
|
2623
|
+
@Device = params['Device']
|
2624
|
+
@IsAbroad = params['IsAbroad']
|
2625
|
+
@Os = params['Os']
|
2626
|
+
@Browser = params['Browser']
|
2627
|
+
@CostType = params['CostType']
|
2628
|
+
@Env = params['Env']
|
2629
|
+
end
|
2630
|
+
end
|
2631
|
+
|
2632
|
+
# DescribeDataWebVitalsPage返回参数结构体
|
2633
|
+
class DescribeDataWebVitalsPageResponse < TencentCloud::Common::AbstractModel
|
2634
|
+
# @param Result: 返回值
|
2635
|
+
# @type Result: String
|
2636
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2637
|
+
# @type RequestId: String
|
2638
|
+
|
2639
|
+
attr_accessor :Result, :RequestId
|
2640
|
+
|
2641
|
+
def initialize(result=nil, requestid=nil)
|
2642
|
+
@Result = result
|
2643
|
+
@RequestId = requestid
|
2644
|
+
end
|
2645
|
+
|
2646
|
+
def deserialize(params)
|
2647
|
+
@Result = params['Result']
|
2648
|
+
@RequestId = params['RequestId']
|
2649
|
+
end
|
2650
|
+
end
|
2651
|
+
|
2652
|
+
# DescribeError请求参数结构体
|
2653
|
+
class DescribeErrorRequest < TencentCloud::Common::AbstractModel
|
2654
|
+
# @param Date: 日期
|
2655
|
+
# @type Date: String
|
2656
|
+
# @param ID: 项目ID
|
2657
|
+
# @type ID: Integer
|
2658
|
+
|
2659
|
+
attr_accessor :Date, :ID
|
2660
|
+
|
2661
|
+
def initialize(date=nil, id=nil)
|
2662
|
+
@Date = date
|
2663
|
+
@ID = id
|
2664
|
+
end
|
2665
|
+
|
2666
|
+
def deserialize(params)
|
2667
|
+
@Date = params['Date']
|
2668
|
+
@ID = params['ID']
|
2669
|
+
end
|
2670
|
+
end
|
2671
|
+
|
2672
|
+
# DescribeError返回参数结构体
|
2673
|
+
class DescribeErrorResponse < TencentCloud::Common::AbstractModel
|
2674
|
+
# @param Content: 内容
|
2675
|
+
# @type Content: String
|
2676
|
+
# @param ID: 项目ID
|
2677
|
+
# @type ID: Integer
|
2678
|
+
# @param CreateTime: 时间
|
2679
|
+
# @type CreateTime: String
|
2680
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2681
|
+
# @type RequestId: String
|
2682
|
+
|
2683
|
+
attr_accessor :Content, :ID, :CreateTime, :RequestId
|
2684
|
+
|
2685
|
+
def initialize(content=nil, id=nil, createtime=nil, requestid=nil)
|
2686
|
+
@Content = content
|
2687
|
+
@ID = id
|
2688
|
+
@CreateTime = createtime
|
2689
|
+
@RequestId = requestid
|
2690
|
+
end
|
2691
|
+
|
2692
|
+
def deserialize(params)
|
2693
|
+
@Content = params['Content']
|
2694
|
+
@ID = params['ID']
|
2695
|
+
@CreateTime = params['CreateTime']
|
2696
|
+
@RequestId = params['RequestId']
|
2697
|
+
end
|
2698
|
+
end
|
2699
|
+
|
2700
|
+
# DescribeLogExports请求参数结构体
|
2701
|
+
class DescribeLogExportsRequest < TencentCloud::Common::AbstractModel
|
2702
|
+
# @param ID: 项目ID
|
2703
|
+
# @type ID: Integer
|
2704
|
+
|
2705
|
+
attr_accessor :ID
|
2706
|
+
|
2707
|
+
def initialize(id=nil)
|
2708
|
+
@ID = id
|
2709
|
+
end
|
2710
|
+
|
2711
|
+
def deserialize(params)
|
2712
|
+
@ID = params['ID']
|
2713
|
+
end
|
2714
|
+
end
|
2715
|
+
|
2716
|
+
# DescribeLogExports返回参数结构体
|
2717
|
+
class DescribeLogExportsResponse < TencentCloud::Common::AbstractModel
|
2718
|
+
# @param LogExportSet: 日志导出记录列表
|
2719
|
+
# @type LogExportSet: Array
|
2720
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2721
|
+
# @type RequestId: String
|
2722
|
+
|
2723
|
+
attr_accessor :LogExportSet, :RequestId
|
2724
|
+
|
2725
|
+
def initialize(logexportset=nil, requestid=nil)
|
2726
|
+
@LogExportSet = logexportset
|
2727
|
+
@RequestId = requestid
|
2728
|
+
end
|
2729
|
+
|
2730
|
+
def deserialize(params)
|
2731
|
+
unless params['LogExportSet'].nil?
|
2732
|
+
@LogExportSet = []
|
2733
|
+
params['LogExportSet'].each do |i|
|
2734
|
+
logexport_tmp = LogExport.new
|
2735
|
+
logexport_tmp.deserialize(i)
|
2736
|
+
@LogExportSet << logexport_tmp
|
2737
|
+
end
|
2738
|
+
end
|
2739
|
+
@RequestId = params['RequestId']
|
2740
|
+
end
|
2741
|
+
end
|
2742
|
+
|
2743
|
+
# DescribeLogList请求参数结构体
|
2744
|
+
class DescribeLogListRequest < TencentCloud::Common::AbstractModel
|
2745
|
+
# @param Sort: 排序方式 desc asc
|
2746
|
+
# @type Sort: String
|
2747
|
+
# @param ActionType: searchlog histogram
|
2748
|
+
# @type ActionType: String
|
2749
|
+
# @param ID: 项目ID
|
2750
|
+
# @type ID: Integer
|
2751
|
+
# @param StartTime: 开始时间
|
2752
|
+
# @type StartTime: String
|
2753
|
+
# @param Limit: 单次查询返回的原始日志条数,最大值为100
|
2754
|
+
# @type Limit: Integer
|
2755
|
+
# @param Context: 上下文,加载更多日志时使用,透传上次返回的 Context 值,获取后续的日志内容,总计最多可获取1万条原始日志。过期时间1小时
|
2756
|
+
# @type Context: String
|
2757
|
+
# @param Query: 查询语句,语句长度最大为4096
|
2758
|
+
# @type Query: String
|
2759
|
+
# @param EndTime: 结束时间
|
2760
|
+
# @type EndTime: String
|
2761
|
+
|
2762
|
+
attr_accessor :Sort, :ActionType, :ID, :StartTime, :Limit, :Context, :Query, :EndTime
|
2763
|
+
|
2764
|
+
def initialize(sort=nil, actiontype=nil, id=nil, starttime=nil, limit=nil, context=nil, query=nil, endtime=nil)
|
2765
|
+
@Sort = sort
|
2766
|
+
@ActionType = actiontype
|
2767
|
+
@ID = id
|
2768
|
+
@StartTime = starttime
|
2769
|
+
@Limit = limit
|
2770
|
+
@Context = context
|
2771
|
+
@Query = query
|
2772
|
+
@EndTime = endtime
|
2773
|
+
end
|
2774
|
+
|
2775
|
+
def deserialize(params)
|
2776
|
+
@Sort = params['Sort']
|
2777
|
+
@ActionType = params['ActionType']
|
2778
|
+
@ID = params['ID']
|
2779
|
+
@StartTime = params['StartTime']
|
2780
|
+
@Limit = params['Limit']
|
2781
|
+
@Context = params['Context']
|
2782
|
+
@Query = params['Query']
|
2783
|
+
@EndTime = params['EndTime']
|
2784
|
+
end
|
2785
|
+
end
|
2786
|
+
|
2787
|
+
# DescribeLogList返回参数结构体
|
2788
|
+
class DescribeLogListResponse < TencentCloud::Common::AbstractModel
|
2789
|
+
# @param Result: 返回字符串
|
2790
|
+
# @type Result: String
|
2791
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2792
|
+
# @type RequestId: String
|
2793
|
+
|
2794
|
+
attr_accessor :Result, :RequestId
|
2795
|
+
|
2796
|
+
def initialize(result=nil, requestid=nil)
|
2797
|
+
@Result = result
|
2798
|
+
@RequestId = requestid
|
2799
|
+
end
|
2800
|
+
|
2801
|
+
def deserialize(params)
|
2802
|
+
@Result = params['Result']
|
2803
|
+
@RequestId = params['RequestId']
|
2804
|
+
end
|
2805
|
+
end
|
2806
|
+
|
2807
|
+
# DescribeOfflineLogConfigs请求参数结构体
|
2808
|
+
class DescribeOfflineLogConfigsRequest < TencentCloud::Common::AbstractModel
|
2809
|
+
# @param ProjectKey: 项目唯一上报 key
|
2810
|
+
# @type ProjectKey: String
|
2811
|
+
|
2812
|
+
attr_accessor :ProjectKey
|
2813
|
+
|
2814
|
+
def initialize(projectkey=nil)
|
2815
|
+
@ProjectKey = projectkey
|
2816
|
+
end
|
2817
|
+
|
2818
|
+
def deserialize(params)
|
2819
|
+
@ProjectKey = params['ProjectKey']
|
2820
|
+
end
|
2821
|
+
end
|
2822
|
+
|
2823
|
+
# DescribeOfflineLogConfigs返回参数结构体
|
2824
|
+
class DescribeOfflineLogConfigsResponse < TencentCloud::Common::AbstractModel
|
2825
|
+
# @param Msg: 接口调用信息
|
2826
|
+
# @type Msg: String
|
2827
|
+
# @param UniqueIDSet: 用户唯一标示数组
|
2828
|
+
# @type UniqueIDSet: Array
|
2829
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2830
|
+
# @type RequestId: String
|
2831
|
+
|
2832
|
+
attr_accessor :Msg, :UniqueIDSet, :RequestId
|
2833
|
+
|
2834
|
+
def initialize(msg=nil, uniqueidset=nil, requestid=nil)
|
2835
|
+
@Msg = msg
|
2836
|
+
@UniqueIDSet = uniqueidset
|
2837
|
+
@RequestId = requestid
|
2838
|
+
end
|
2839
|
+
|
2840
|
+
def deserialize(params)
|
2841
|
+
@Msg = params['Msg']
|
2842
|
+
@UniqueIDSet = params['UniqueIDSet']
|
2843
|
+
@RequestId = params['RequestId']
|
2844
|
+
end
|
2845
|
+
end
|
2846
|
+
|
2847
|
+
# DescribeOfflineLogRecords请求参数结构体
|
2848
|
+
class DescribeOfflineLogRecordsRequest < TencentCloud::Common::AbstractModel
|
2849
|
+
# @param ProjectKey: 项目唯一上报 key
|
2850
|
+
# @type ProjectKey: String
|
2851
|
+
|
2852
|
+
attr_accessor :ProjectKey
|
2853
|
+
|
2854
|
+
def initialize(projectkey=nil)
|
2855
|
+
@ProjectKey = projectkey
|
2856
|
+
end
|
2857
|
+
|
2858
|
+
def deserialize(params)
|
2859
|
+
@ProjectKey = params['ProjectKey']
|
2860
|
+
end
|
2861
|
+
end
|
2862
|
+
|
2863
|
+
# DescribeOfflineLogRecords返回参数结构体
|
2864
|
+
class DescribeOfflineLogRecordsResponse < TencentCloud::Common::AbstractModel
|
2865
|
+
# @param Msg: 接口调用信息
|
2866
|
+
# @type Msg: String
|
2867
|
+
# @param RecordSet: 记录 ID 数组
|
2868
|
+
# @type RecordSet: Array
|
2869
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2870
|
+
# @type RequestId: String
|
2871
|
+
|
2872
|
+
attr_accessor :Msg, :RecordSet, :RequestId
|
2873
|
+
|
2874
|
+
def initialize(msg=nil, recordset=nil, requestid=nil)
|
2875
|
+
@Msg = msg
|
2876
|
+
@RecordSet = recordset
|
2877
|
+
@RequestId = requestid
|
2878
|
+
end
|
2879
|
+
|
2880
|
+
def deserialize(params)
|
2881
|
+
@Msg = params['Msg']
|
2882
|
+
@RecordSet = params['RecordSet']
|
2883
|
+
@RequestId = params['RequestId']
|
2884
|
+
end
|
2885
|
+
end
|
2886
|
+
|
2887
|
+
# DescribeOfflineLogs请求参数结构体
|
2888
|
+
class DescribeOfflineLogsRequest < TencentCloud::Common::AbstractModel
|
2889
|
+
# @param ProjectKey: 项目唯一上报 key
|
2890
|
+
# @type ProjectKey: String
|
2891
|
+
# @param FileIDs: 离线日志文件 id 列表
|
2892
|
+
# @type FileIDs: Array
|
2893
|
+
|
2894
|
+
attr_accessor :ProjectKey, :FileIDs
|
2895
|
+
|
2896
|
+
def initialize(projectkey=nil, fileids=nil)
|
2897
|
+
@ProjectKey = projectkey
|
2898
|
+
@FileIDs = fileids
|
2899
|
+
end
|
2900
|
+
|
2901
|
+
def deserialize(params)
|
2902
|
+
@ProjectKey = params['ProjectKey']
|
2903
|
+
@FileIDs = params['FileIDs']
|
2904
|
+
end
|
2905
|
+
end
|
2906
|
+
|
2907
|
+
# DescribeOfflineLogs返回参数结构体
|
2908
|
+
class DescribeOfflineLogsResponse < TencentCloud::Common::AbstractModel
|
2909
|
+
# @param Msg: 接口调用返回信息
|
2910
|
+
# @type Msg: String
|
2911
|
+
# @param LogSet: 日志列表
|
2912
|
+
# @type LogSet: Array
|
2913
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2914
|
+
# @type RequestId: String
|
2915
|
+
|
2916
|
+
attr_accessor :Msg, :LogSet, :RequestId
|
2917
|
+
|
2918
|
+
def initialize(msg=nil, logset=nil, requestid=nil)
|
2919
|
+
@Msg = msg
|
2920
|
+
@LogSet = logset
|
2921
|
+
@RequestId = requestid
|
2922
|
+
end
|
2923
|
+
|
2924
|
+
def deserialize(params)
|
2925
|
+
@Msg = params['Msg']
|
2926
|
+
@LogSet = params['LogSet']
|
2927
|
+
@RequestId = params['RequestId']
|
2928
|
+
end
|
2929
|
+
end
|
2930
|
+
|
2931
|
+
# DescribeProjectLimits请求参数结构体
|
2932
|
+
class DescribeProjectLimitsRequest < TencentCloud::Common::AbstractModel
|
2933
|
+
# @param ProjectID: 项目ID
|
2934
|
+
# @type ProjectID: Integer
|
2935
|
+
|
2936
|
+
attr_accessor :ProjectID
|
2937
|
+
|
2938
|
+
def initialize(projectid=nil)
|
2939
|
+
@ProjectID = projectid
|
2940
|
+
end
|
2941
|
+
|
2942
|
+
def deserialize(params)
|
2943
|
+
@ProjectID = params['ProjectID']
|
2944
|
+
end
|
2945
|
+
end
|
2946
|
+
|
2947
|
+
# DescribeProjectLimits返回参数结构体
|
2948
|
+
class DescribeProjectLimitsResponse < TencentCloud::Common::AbstractModel
|
2949
|
+
# @param ProjectLimitSet: 上报率数组列表
|
2950
|
+
# @type ProjectLimitSet: Array
|
2951
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2952
|
+
# @type RequestId: String
|
2953
|
+
|
2954
|
+
attr_accessor :ProjectLimitSet, :RequestId
|
2955
|
+
|
2956
|
+
def initialize(projectlimitset=nil, requestid=nil)
|
2957
|
+
@ProjectLimitSet = projectlimitset
|
2958
|
+
@RequestId = requestid
|
2959
|
+
end
|
2960
|
+
|
2961
|
+
def deserialize(params)
|
2962
|
+
unless params['ProjectLimitSet'].nil?
|
2963
|
+
@ProjectLimitSet = []
|
2964
|
+
params['ProjectLimitSet'].each do |i|
|
2965
|
+
projectlimit_tmp = ProjectLimit.new
|
2966
|
+
projectlimit_tmp.deserialize(i)
|
2967
|
+
@ProjectLimitSet << projectlimit_tmp
|
2968
|
+
end
|
2969
|
+
end
|
2970
|
+
@RequestId = params['RequestId']
|
2971
|
+
end
|
2972
|
+
end
|
2973
|
+
|
2974
|
+
# DescribeProjects请求参数结构体
|
2975
|
+
class DescribeProjectsRequest < TencentCloud::Common::AbstractModel
|
2976
|
+
# @param Limit: 分页每页数目,整型
|
2977
|
+
# @type Limit: Integer
|
2978
|
+
# @param Offset: 分页页码,整型
|
2979
|
+
# @type Offset: Integer
|
2980
|
+
# @param Filters: 过滤条件
|
2981
|
+
# @type Filters: Array
|
2982
|
+
|
2983
|
+
attr_accessor :Limit, :Offset, :Filters
|
2984
|
+
|
2985
|
+
def initialize(limit=nil, offset=nil, filters=nil)
|
2986
|
+
@Limit = limit
|
2987
|
+
@Offset = offset
|
2988
|
+
@Filters = filters
|
2989
|
+
end
|
2990
|
+
|
2991
|
+
def deserialize(params)
|
2992
|
+
@Limit = params['Limit']
|
2993
|
+
@Offset = params['Offset']
|
2994
|
+
unless params['Filters'].nil?
|
2995
|
+
@Filters = []
|
2996
|
+
params['Filters'].each do |i|
|
2997
|
+
filter_tmp = Filter.new
|
2998
|
+
filter_tmp.deserialize(i)
|
2999
|
+
@Filters << filter_tmp
|
3000
|
+
end
|
3001
|
+
end
|
3002
|
+
end
|
3003
|
+
end
|
3004
|
+
|
3005
|
+
# DescribeProjects返回参数结构体
|
3006
|
+
class DescribeProjectsResponse < TencentCloud::Common::AbstractModel
|
3007
|
+
# @param TotalCount: 列表总数
|
3008
|
+
# @type TotalCount: Integer
|
3009
|
+
# @param ProjectSet: 项目列表
|
3010
|
+
# @type ProjectSet: Array
|
3011
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3012
|
+
# @type RequestId: String
|
3013
|
+
|
3014
|
+
attr_accessor :TotalCount, :ProjectSet, :RequestId
|
3015
|
+
|
3016
|
+
def initialize(totalcount=nil, projectset=nil, requestid=nil)
|
3017
|
+
@TotalCount = totalcount
|
3018
|
+
@ProjectSet = projectset
|
3019
|
+
@RequestId = requestid
|
3020
|
+
end
|
3021
|
+
|
3022
|
+
def deserialize(params)
|
3023
|
+
@TotalCount = params['TotalCount']
|
3024
|
+
unless params['ProjectSet'].nil?
|
3025
|
+
@ProjectSet = []
|
3026
|
+
params['ProjectSet'].each do |i|
|
3027
|
+
rumproject_tmp = RumProject.new
|
3028
|
+
rumproject_tmp.deserialize(i)
|
3029
|
+
@ProjectSet << rumproject_tmp
|
3030
|
+
end
|
3031
|
+
end
|
3032
|
+
@RequestId = params['RequestId']
|
3033
|
+
end
|
3034
|
+
end
|
3035
|
+
|
3036
|
+
# DescribePvList请求参数结构体
|
3037
|
+
class DescribePvListRequest < TencentCloud::Common::AbstractModel
|
3038
|
+
# @param ProjectId: ID
|
3039
|
+
# @type ProjectId: Integer
|
3040
|
+
# @param EndTime: 结束时间
|
3041
|
+
# @type EndTime: String
|
3042
|
+
# @param StartTime: 开始时间
|
3043
|
+
# @type StartTime: String
|
3044
|
+
# @param Dimension: 获取day:d, 获取min则不填
|
3045
|
+
# @type Dimension: String
|
3046
|
+
|
3047
|
+
attr_accessor :ProjectId, :EndTime, :StartTime, :Dimension
|
3048
|
+
|
3049
|
+
def initialize(projectid=nil, endtime=nil, starttime=nil, dimension=nil)
|
3050
|
+
@ProjectId = projectid
|
3051
|
+
@EndTime = endtime
|
3052
|
+
@StartTime = starttime
|
3053
|
+
@Dimension = dimension
|
3054
|
+
end
|
3055
|
+
|
3056
|
+
def deserialize(params)
|
3057
|
+
@ProjectId = params['ProjectId']
|
3058
|
+
@EndTime = params['EndTime']
|
3059
|
+
@StartTime = params['StartTime']
|
3060
|
+
@Dimension = params['Dimension']
|
3061
|
+
end
|
3062
|
+
end
|
3063
|
+
|
3064
|
+
# DescribePvList返回参数结构体
|
3065
|
+
class DescribePvListResponse < TencentCloud::Common::AbstractModel
|
3066
|
+
# @param ProjectPvSet: pv列表
|
3067
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3068
|
+
# @type ProjectPvSet: Array
|
3069
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3070
|
+
# @type RequestId: String
|
3071
|
+
|
3072
|
+
attr_accessor :ProjectPvSet, :RequestId
|
3073
|
+
|
3074
|
+
def initialize(projectpvset=nil, requestid=nil)
|
3075
|
+
@ProjectPvSet = projectpvset
|
3076
|
+
@RequestId = requestid
|
3077
|
+
end
|
3078
|
+
|
3079
|
+
def deserialize(params)
|
3080
|
+
unless params['ProjectPvSet'].nil?
|
3081
|
+
@ProjectPvSet = []
|
3082
|
+
params['ProjectPvSet'].each do |i|
|
3083
|
+
rumpvinfo_tmp = RumPvInfo.new
|
3084
|
+
rumpvinfo_tmp.deserialize(i)
|
3085
|
+
@ProjectPvSet << rumpvinfo_tmp
|
3086
|
+
end
|
3087
|
+
end
|
3088
|
+
@RequestId = params['RequestId']
|
3089
|
+
end
|
3090
|
+
end
|
3091
|
+
|
3092
|
+
# DescribeReleaseFileSign请求参数结构体
|
3093
|
+
class DescribeReleaseFileSignRequest < TencentCloud::Common::AbstractModel
|
3094
|
+
# @param Timeout: 超时时间,不填默认是 5 分钟
|
3095
|
+
# @type Timeout: Integer
|
3096
|
+
|
3097
|
+
attr_accessor :Timeout
|
3098
|
+
|
3099
|
+
def initialize(timeout=nil)
|
3100
|
+
@Timeout = timeout
|
3101
|
+
end
|
3102
|
+
|
3103
|
+
def deserialize(params)
|
3104
|
+
@Timeout = params['Timeout']
|
3105
|
+
end
|
3106
|
+
end
|
3107
|
+
|
3108
|
+
# DescribeReleaseFileSign返回参数结构体
|
3109
|
+
class DescribeReleaseFileSignResponse < TencentCloud::Common::AbstractModel
|
3110
|
+
# @param SecretKey: 临时密钥key
|
3111
|
+
# @type SecretKey: String
|
3112
|
+
# @param SecretID: 临时密钥 id
|
3113
|
+
# @type SecretID: String
|
3114
|
+
# @param SessionToken: 临时密钥临时 token
|
3115
|
+
# @type SessionToken: String
|
3116
|
+
# @param StartTime: 开始时间戳
|
3117
|
+
# @type StartTime: Integer
|
3118
|
+
# @param ExpiredTime: 过期时间戳
|
3119
|
+
# @type ExpiredTime: Integer
|
3120
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3121
|
+
# @type RequestId: String
|
3122
|
+
|
3123
|
+
attr_accessor :SecretKey, :SecretID, :SessionToken, :StartTime, :ExpiredTime, :RequestId
|
3124
|
+
|
3125
|
+
def initialize(secretkey=nil, secretid=nil, sessiontoken=nil, starttime=nil, expiredtime=nil, requestid=nil)
|
3126
|
+
@SecretKey = secretkey
|
3127
|
+
@SecretID = secretid
|
3128
|
+
@SessionToken = sessiontoken
|
3129
|
+
@StartTime = starttime
|
3130
|
+
@ExpiredTime = expiredtime
|
3131
|
+
@RequestId = requestid
|
3132
|
+
end
|
3133
|
+
|
3134
|
+
def deserialize(params)
|
3135
|
+
@SecretKey = params['SecretKey']
|
3136
|
+
@SecretID = params['SecretID']
|
3137
|
+
@SessionToken = params['SessionToken']
|
3138
|
+
@StartTime = params['StartTime']
|
3139
|
+
@ExpiredTime = params['ExpiredTime']
|
3140
|
+
@RequestId = params['RequestId']
|
3141
|
+
end
|
3142
|
+
end
|
3143
|
+
|
3144
|
+
# DescribeReleaseFiles请求参数结构体
|
3145
|
+
class DescribeReleaseFilesRequest < TencentCloud::Common::AbstractModel
|
3146
|
+
# @param ProjectID: 项目 id
|
3147
|
+
# @type ProjectID: Integer
|
3148
|
+
# @param FileVersion: 文件版本
|
3149
|
+
# @type FileVersion: String
|
3150
|
+
|
3151
|
+
attr_accessor :ProjectID, :FileVersion
|
3152
|
+
|
3153
|
+
def initialize(projectid=nil, fileversion=nil)
|
3154
|
+
@ProjectID = projectid
|
3155
|
+
@FileVersion = fileversion
|
3156
|
+
end
|
3157
|
+
|
3158
|
+
def deserialize(params)
|
3159
|
+
@ProjectID = params['ProjectID']
|
3160
|
+
@FileVersion = params['FileVersion']
|
3161
|
+
end
|
3162
|
+
end
|
3163
|
+
|
3164
|
+
# DescribeReleaseFiles返回参数结构体
|
3165
|
+
class DescribeReleaseFilesResponse < TencentCloud::Common::AbstractModel
|
3166
|
+
# @param Files: 文件信息列表
|
3167
|
+
# @type Files: Array
|
3168
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3169
|
+
# @type RequestId: String
|
3170
|
+
|
3171
|
+
attr_accessor :Files, :RequestId
|
3172
|
+
|
3173
|
+
def initialize(files=nil, requestid=nil)
|
3174
|
+
@Files = files
|
3175
|
+
@RequestId = requestid
|
3176
|
+
end
|
3177
|
+
|
3178
|
+
def deserialize(params)
|
3179
|
+
unless params['Files'].nil?
|
3180
|
+
@Files = []
|
3181
|
+
params['Files'].each do |i|
|
3182
|
+
releasefile_tmp = ReleaseFile.new
|
3183
|
+
releasefile_tmp.deserialize(i)
|
3184
|
+
@Files << releasefile_tmp
|
3185
|
+
end
|
3186
|
+
end
|
3187
|
+
@RequestId = params['RequestId']
|
3188
|
+
end
|
3189
|
+
end
|
3190
|
+
|
3191
|
+
# DescribeScores请求参数结构体
|
3192
|
+
class DescribeScoresRequest < TencentCloud::Common::AbstractModel
|
3193
|
+
# @param EndTime: 结束时间
|
3194
|
+
# @type EndTime: String
|
3195
|
+
# @param StartTime: 开始时间
|
3196
|
+
# @type StartTime: String
|
3197
|
+
# @param ID: 项目ID
|
3198
|
+
# @type ID: Integer
|
3199
|
+
|
3200
|
+
attr_accessor :EndTime, :StartTime, :ID
|
3201
|
+
|
3202
|
+
def initialize(endtime=nil, starttime=nil, id=nil)
|
3203
|
+
@EndTime = endtime
|
3204
|
+
@StartTime = starttime
|
3205
|
+
@ID = id
|
3206
|
+
end
|
3207
|
+
|
3208
|
+
def deserialize(params)
|
3209
|
+
@EndTime = params['EndTime']
|
3210
|
+
@StartTime = params['StartTime']
|
3211
|
+
@ID = params['ID']
|
3212
|
+
end
|
3213
|
+
end
|
3214
|
+
|
3215
|
+
# DescribeScores返回参数结构体
|
3216
|
+
class DescribeScoresResponse < TencentCloud::Common::AbstractModel
|
3217
|
+
# @param ScoreSet: 数组
|
3218
|
+
# @type ScoreSet: Array
|
3219
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3220
|
+
# @type RequestId: String
|
3221
|
+
|
3222
|
+
attr_accessor :ScoreSet, :RequestId
|
3223
|
+
|
3224
|
+
def initialize(scoreset=nil, requestid=nil)
|
3225
|
+
@ScoreSet = scoreset
|
3226
|
+
@RequestId = requestid
|
3227
|
+
end
|
3228
|
+
|
3229
|
+
def deserialize(params)
|
3230
|
+
unless params['ScoreSet'].nil?
|
3231
|
+
@ScoreSet = []
|
3232
|
+
params['ScoreSet'].each do |i|
|
3233
|
+
scoreinfo_tmp = ScoreInfo.new
|
3234
|
+
scoreinfo_tmp.deserialize(i)
|
3235
|
+
@ScoreSet << scoreinfo_tmp
|
3236
|
+
end
|
3237
|
+
end
|
3238
|
+
@RequestId = params['RequestId']
|
3239
|
+
end
|
3240
|
+
end
|
3241
|
+
|
3242
|
+
# DescribeTawAreas请求参数结构体
|
3243
|
+
class DescribeTawAreasRequest < TencentCloud::Common::AbstractModel
|
3244
|
+
# @param AreaIds: 片区Id
|
3245
|
+
# @type AreaIds: Array
|
3246
|
+
# @param AreaKeys: 片区Key
|
3247
|
+
# @type AreaKeys: Array
|
3248
|
+
# @param Limit: 分页Limit
|
3249
|
+
# @type Limit: Integer
|
3250
|
+
# @param AreaStatuses: 片区状态(1=有效,2=无效)
|
3251
|
+
# @type AreaStatuses: Array
|
3252
|
+
# @param Offset: 分页Offset
|
3253
|
+
# @type Offset: Integer
|
3254
|
+
|
3255
|
+
attr_accessor :AreaIds, :AreaKeys, :Limit, :AreaStatuses, :Offset
|
3256
|
+
|
3257
|
+
def initialize(areaids=nil, areakeys=nil, limit=nil, areastatuses=nil, offset=nil)
|
3258
|
+
@AreaIds = areaids
|
3259
|
+
@AreaKeys = areakeys
|
3260
|
+
@Limit = limit
|
3261
|
+
@AreaStatuses = areastatuses
|
3262
|
+
@Offset = offset
|
3263
|
+
end
|
3264
|
+
|
3265
|
+
def deserialize(params)
|
3266
|
+
@AreaIds = params['AreaIds']
|
3267
|
+
@AreaKeys = params['AreaKeys']
|
3268
|
+
@Limit = params['Limit']
|
3269
|
+
@AreaStatuses = params['AreaStatuses']
|
3270
|
+
@Offset = params['Offset']
|
3271
|
+
end
|
3272
|
+
end
|
3273
|
+
|
3274
|
+
# DescribeTawAreas返回参数结构体
|
3275
|
+
class DescribeTawAreasResponse < TencentCloud::Common::AbstractModel
|
3276
|
+
# @param TotalCount: 片区总数
|
3277
|
+
# @type TotalCount: Integer
|
3278
|
+
# @param AreaSet: 片区列表
|
3279
|
+
# @type AreaSet: Array
|
3280
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3281
|
+
# @type RequestId: String
|
3282
|
+
|
3283
|
+
attr_accessor :TotalCount, :AreaSet, :RequestId
|
3284
|
+
|
3285
|
+
def initialize(totalcount=nil, areaset=nil, requestid=nil)
|
3286
|
+
@TotalCount = totalcount
|
3287
|
+
@AreaSet = areaset
|
3288
|
+
@RequestId = requestid
|
3289
|
+
end
|
3290
|
+
|
3291
|
+
def deserialize(params)
|
3292
|
+
@TotalCount = params['TotalCount']
|
3293
|
+
unless params['AreaSet'].nil?
|
3294
|
+
@AreaSet = []
|
3295
|
+
params['AreaSet'].each do |i|
|
3296
|
+
rumareainfo_tmp = RumAreaInfo.new
|
3297
|
+
rumareainfo_tmp.deserialize(i)
|
3298
|
+
@AreaSet << rumareainfo_tmp
|
3299
|
+
end
|
3300
|
+
end
|
3301
|
+
@RequestId = params['RequestId']
|
3302
|
+
end
|
3303
|
+
end
|
3304
|
+
|
3305
|
+
# DescribeTawInstances请求参数结构体
|
3306
|
+
class DescribeTawInstancesRequest < TencentCloud::Common::AbstractModel
|
3307
|
+
# @param ChargeStatuses: 计费状态
|
3308
|
+
# @type ChargeStatuses: Array
|
3309
|
+
# @param ChargeTypes: 计费类型
|
3310
|
+
# @type ChargeTypes: Array
|
3311
|
+
# @param Limit: 分页Limit
|
3312
|
+
# @type Limit: Integer
|
3313
|
+
# @param Offset: 分页Offset
|
3314
|
+
# @type Offset: Integer
|
3315
|
+
# @param AreaIds: 片区Id
|
3316
|
+
# @type AreaIds: Array
|
3317
|
+
# @param InstanceStatuses: 实例状态(1=创建中,2=运行中,3=异常,4=重启中,5=停止中,6=已停止,7=销毁中,8=已销毁)
|
3318
|
+
# @type InstanceStatuses: Array
|
3319
|
+
# @param InstanceIds: 实例Id
|
3320
|
+
# @type InstanceIds: Array
|
3321
|
+
# @param Filters: 过滤参数
|
3322
|
+
# @type Filters: Array
|
3323
|
+
|
3324
|
+
attr_accessor :ChargeStatuses, :ChargeTypes, :Limit, :Offset, :AreaIds, :InstanceStatuses, :InstanceIds, :Filters
|
3325
|
+
|
3326
|
+
def initialize(chargestatuses=nil, chargetypes=nil, limit=nil, offset=nil, areaids=nil, instancestatuses=nil, instanceids=nil, filters=nil)
|
3327
|
+
@ChargeStatuses = chargestatuses
|
3328
|
+
@ChargeTypes = chargetypes
|
3329
|
+
@Limit = limit
|
3330
|
+
@Offset = offset
|
3331
|
+
@AreaIds = areaids
|
3332
|
+
@InstanceStatuses = instancestatuses
|
3333
|
+
@InstanceIds = instanceids
|
3334
|
+
@Filters = filters
|
3335
|
+
end
|
3336
|
+
|
3337
|
+
def deserialize(params)
|
3338
|
+
@ChargeStatuses = params['ChargeStatuses']
|
3339
|
+
@ChargeTypes = params['ChargeTypes']
|
3340
|
+
@Limit = params['Limit']
|
3341
|
+
@Offset = params['Offset']
|
3342
|
+
@AreaIds = params['AreaIds']
|
3343
|
+
@InstanceStatuses = params['InstanceStatuses']
|
3344
|
+
@InstanceIds = params['InstanceIds']
|
3345
|
+
unless params['Filters'].nil?
|
3346
|
+
@Filters = []
|
3347
|
+
params['Filters'].each do |i|
|
3348
|
+
filter_tmp = Filter.new
|
3349
|
+
filter_tmp.deserialize(i)
|
3350
|
+
@Filters << filter_tmp
|
3351
|
+
end
|
3352
|
+
end
|
3353
|
+
end
|
3354
|
+
end
|
3355
|
+
|
3356
|
+
# DescribeTawInstances返回参数结构体
|
3357
|
+
class DescribeTawInstancesResponse < TencentCloud::Common::AbstractModel
|
3358
|
+
# @param InstanceSet: 实例列表
|
3359
|
+
# @type InstanceSet: Array
|
3360
|
+
# @param TotalCount: 实例总数
|
3361
|
+
# @type TotalCount: Integer
|
3362
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3363
|
+
# @type RequestId: String
|
3364
|
+
|
3365
|
+
attr_accessor :InstanceSet, :TotalCount, :RequestId
|
3366
|
+
|
3367
|
+
def initialize(instanceset=nil, totalcount=nil, requestid=nil)
|
3368
|
+
@InstanceSet = instanceset
|
3369
|
+
@TotalCount = totalcount
|
3370
|
+
@RequestId = requestid
|
3371
|
+
end
|
3372
|
+
|
3373
|
+
def deserialize(params)
|
3374
|
+
unless params['InstanceSet'].nil?
|
3375
|
+
@InstanceSet = []
|
3376
|
+
params['InstanceSet'].each do |i|
|
3377
|
+
ruminstanceinfo_tmp = RumInstanceInfo.new
|
3378
|
+
ruminstanceinfo_tmp.deserialize(i)
|
3379
|
+
@InstanceSet << ruminstanceinfo_tmp
|
3380
|
+
end
|
3381
|
+
end
|
3382
|
+
@TotalCount = params['TotalCount']
|
3383
|
+
@RequestId = params['RequestId']
|
3384
|
+
end
|
3385
|
+
end
|
3386
|
+
|
3387
|
+
# DescribeUvList请求参数结构体
|
3388
|
+
class DescribeUvListRequest < TencentCloud::Common::AbstractModel
|
3389
|
+
# @param ProjectId: ID
|
3390
|
+
# @type ProjectId: Integer
|
3391
|
+
# @param EndTime: 结束时间
|
3392
|
+
# @type EndTime: String
|
3393
|
+
# @param StartTime: 开始时间
|
3394
|
+
# @type StartTime: String
|
3395
|
+
# @param Dimension: 获取day:d, min:m
|
3396
|
+
# @type Dimension: String
|
3397
|
+
|
3398
|
+
attr_accessor :ProjectId, :EndTime, :StartTime, :Dimension
|
3399
|
+
|
3400
|
+
def initialize(projectid=nil, endtime=nil, starttime=nil, dimension=nil)
|
3401
|
+
@ProjectId = projectid
|
3402
|
+
@EndTime = endtime
|
3403
|
+
@StartTime = starttime
|
3404
|
+
@Dimension = dimension
|
3405
|
+
end
|
3406
|
+
|
3407
|
+
def deserialize(params)
|
3408
|
+
@ProjectId = params['ProjectId']
|
3409
|
+
@EndTime = params['EndTime']
|
3410
|
+
@StartTime = params['StartTime']
|
3411
|
+
@Dimension = params['Dimension']
|
3412
|
+
end
|
3413
|
+
end
|
3414
|
+
|
3415
|
+
# DescribeUvList返回参数结构体
|
3416
|
+
class DescribeUvListResponse < TencentCloud::Common::AbstractModel
|
3417
|
+
# @param ProjectUvSet: uv列表
|
3418
|
+
# @type ProjectUvSet: Array
|
3419
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3420
|
+
# @type RequestId: String
|
3421
|
+
|
3422
|
+
attr_accessor :ProjectUvSet, :RequestId
|
3423
|
+
|
3424
|
+
def initialize(projectuvset=nil, requestid=nil)
|
3425
|
+
@ProjectUvSet = projectuvset
|
3426
|
+
@RequestId = requestid
|
3427
|
+
end
|
3428
|
+
|
3429
|
+
def deserialize(params)
|
3430
|
+
unless params['ProjectUvSet'].nil?
|
3431
|
+
@ProjectUvSet = []
|
3432
|
+
params['ProjectUvSet'].each do |i|
|
3433
|
+
rumuvinfo_tmp = RumUvInfo.new
|
3434
|
+
rumuvinfo_tmp.deserialize(i)
|
3435
|
+
@ProjectUvSet << rumuvinfo_tmp
|
3436
|
+
end
|
3437
|
+
end
|
3438
|
+
@RequestId = params['RequestId']
|
3439
|
+
end
|
3440
|
+
end
|
3441
|
+
|
3442
|
+
# DescribeWhitelists请求参数结构体
|
3443
|
+
class DescribeWhitelistsRequest < TencentCloud::Common::AbstractModel
|
3444
|
+
# @param InstanceID: 实例instance-ID
|
3445
|
+
# @type InstanceID: String
|
3446
|
+
|
3447
|
+
attr_accessor :InstanceID
|
3448
|
+
|
3449
|
+
def initialize(instanceid=nil)
|
3450
|
+
@InstanceID = instanceid
|
3451
|
+
end
|
3452
|
+
|
3453
|
+
def deserialize(params)
|
3454
|
+
@InstanceID = params['InstanceID']
|
3455
|
+
end
|
3456
|
+
end
|
3457
|
+
|
3458
|
+
# DescribeWhitelists返回参数结构体
|
3459
|
+
class DescribeWhitelistsResponse < TencentCloud::Common::AbstractModel
|
3460
|
+
# @param WhitelistSet: 白名单列表
|
3461
|
+
# @type WhitelistSet: Array
|
3462
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3463
|
+
# @type RequestId: String
|
3464
|
+
|
3465
|
+
attr_accessor :WhitelistSet, :RequestId
|
3466
|
+
|
3467
|
+
def initialize(whitelistset=nil, requestid=nil)
|
3468
|
+
@WhitelistSet = whitelistset
|
3469
|
+
@RequestId = requestid
|
3470
|
+
end
|
3471
|
+
|
3472
|
+
def deserialize(params)
|
3473
|
+
unless params['WhitelistSet'].nil?
|
3474
|
+
@WhitelistSet = []
|
3475
|
+
params['WhitelistSet'].each do |i|
|
3476
|
+
whitelist_tmp = Whitelist.new
|
3477
|
+
whitelist_tmp.deserialize(i)
|
3478
|
+
@WhitelistSet << whitelist_tmp
|
3479
|
+
end
|
3480
|
+
end
|
3481
|
+
@RequestId = params['RequestId']
|
3482
|
+
end
|
3483
|
+
end
|
3484
|
+
|
3485
|
+
# 描述键值对过滤器,用于条件过滤查询。例如过滤ID、名称、状态等
|
3486
|
+
|
3487
|
+
# · 若存在多个Filter时,Filter间的关系为逻辑与(AND)关系。
|
3488
|
+
# · 若同一个Filter存在多个Values,同一Filter下Values间的关系为逻辑或(OR)关系。
|
3489
|
+
class Filter < TencentCloud::Common::AbstractModel
|
3490
|
+
# @param Values: 一个或者多个过滤值。
|
3491
|
+
# @type Values: Array
|
3492
|
+
# @param Name: 过滤键的名称。
|
3493
|
+
# @type Name: String
|
3494
|
+
|
3495
|
+
attr_accessor :Values, :Name
|
3496
|
+
|
3497
|
+
def initialize(values=nil, name=nil)
|
3498
|
+
@Values = values
|
3499
|
+
@Name = name
|
3500
|
+
end
|
3501
|
+
|
3502
|
+
def deserialize(params)
|
3503
|
+
@Values = params['Values']
|
3504
|
+
@Name = params['Name']
|
3505
|
+
end
|
3506
|
+
end
|
3507
|
+
|
3508
|
+
# 日志导出记录
|
3509
|
+
class LogExport < TencentCloud::Common::AbstractModel
|
3510
|
+
# @param CosPath: 日志导出路径
|
3511
|
+
# @type CosPath: String
|
3512
|
+
# @param Count: 日志导出数量
|
3513
|
+
# @type Count: Integer
|
3514
|
+
# @param CreateTime: 日志导出任务创建时间
|
3515
|
+
# @type CreateTime: String
|
3516
|
+
# @param ExportID: 日志导出任务ID
|
3517
|
+
# @type ExportID: String
|
3518
|
+
# @param FileName: 日志导出文件名
|
3519
|
+
# @type FileName: String
|
3520
|
+
# @param FileSize: 日志文件大小
|
3521
|
+
# @type FileSize: Integer
|
3522
|
+
# @param Format: 日志导出格式
|
3523
|
+
# @type Format: String
|
3524
|
+
# @param Order: 日志导出时间排序
|
3525
|
+
# @type Order: String
|
3526
|
+
# @param Query: 日志导出查询语句
|
3527
|
+
# @type Query: String
|
3528
|
+
# @param StartTime: 日志导出起始时间
|
3529
|
+
# @type StartTime: String
|
3530
|
+
# @param EndTime: 日志导出结束时间
|
3531
|
+
# @type EndTime: String
|
3532
|
+
# @param Status: 日志下载状态。Queuing:导出正在排队中,Processing:导出正在进行中,Complete:导出完成,Failed:导出失败,Expired:日志导出已过期(三天有效期)。
|
3533
|
+
# @type Status: String
|
3534
|
+
|
3535
|
+
attr_accessor :CosPath, :Count, :CreateTime, :ExportID, :FileName, :FileSize, :Format, :Order, :Query, :StartTime, :EndTime, :Status
|
3536
|
+
|
3537
|
+
def initialize(cospath=nil, count=nil, createtime=nil, exportid=nil, filename=nil, filesize=nil, format=nil, order=nil, query=nil, starttime=nil, endtime=nil, status=nil)
|
3538
|
+
@CosPath = cospath
|
3539
|
+
@Count = count
|
3540
|
+
@CreateTime = createtime
|
3541
|
+
@ExportID = exportid
|
3542
|
+
@FileName = filename
|
3543
|
+
@FileSize = filesize
|
3544
|
+
@Format = format
|
3545
|
+
@Order = order
|
3546
|
+
@Query = query
|
3547
|
+
@StartTime = starttime
|
3548
|
+
@EndTime = endtime
|
3549
|
+
@Status = status
|
3550
|
+
end
|
3551
|
+
|
3552
|
+
def deserialize(params)
|
3553
|
+
@CosPath = params['CosPath']
|
3554
|
+
@Count = params['Count']
|
3555
|
+
@CreateTime = params['CreateTime']
|
3556
|
+
@ExportID = params['ExportID']
|
3557
|
+
@FileName = params['FileName']
|
3558
|
+
@FileSize = params['FileSize']
|
3559
|
+
@Format = params['Format']
|
3560
|
+
@Order = params['Order']
|
3561
|
+
@Query = params['Query']
|
3562
|
+
@StartTime = params['StartTime']
|
3563
|
+
@EndTime = params['EndTime']
|
3564
|
+
@Status = params['Status']
|
3565
|
+
end
|
3566
|
+
end
|
3567
|
+
|
3568
|
+
# ModifyInstance请求参数结构体
|
3569
|
+
class ModifyInstanceRequest < TencentCloud::Common::AbstractModel
|
3570
|
+
# @param InstanceId: 要修改的实例id
|
3571
|
+
# @type InstanceId: String
|
3572
|
+
# @param InstanceName: 新的实例名称(长度最大不超过255)
|
3573
|
+
# @type InstanceName: String
|
3574
|
+
# @param InstanceDesc: 新的实例描述(长度最大不超过1024)
|
3575
|
+
# @type InstanceDesc: String
|
3576
|
+
|
3577
|
+
attr_accessor :InstanceId, :InstanceName, :InstanceDesc
|
3578
|
+
|
3579
|
+
def initialize(instanceid=nil, instancename=nil, instancedesc=nil)
|
3580
|
+
@InstanceId = instanceid
|
3581
|
+
@InstanceName = instancename
|
3582
|
+
@InstanceDesc = instancedesc
|
3583
|
+
end
|
3584
|
+
|
3585
|
+
def deserialize(params)
|
3586
|
+
@InstanceId = params['InstanceId']
|
3587
|
+
@InstanceName = params['InstanceName']
|
3588
|
+
@InstanceDesc = params['InstanceDesc']
|
3589
|
+
end
|
3590
|
+
end
|
3591
|
+
|
3592
|
+
# ModifyInstance返回参数结构体
|
3593
|
+
class ModifyInstanceResponse < TencentCloud::Common::AbstractModel
|
3594
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3595
|
+
# @type RequestId: String
|
3596
|
+
|
3597
|
+
attr_accessor :RequestId
|
3598
|
+
|
3599
|
+
def initialize(requestid=nil)
|
3600
|
+
@RequestId = requestid
|
3601
|
+
end
|
3602
|
+
|
3603
|
+
def deserialize(params)
|
3604
|
+
@RequestId = params['RequestId']
|
3605
|
+
end
|
3606
|
+
end
|
3607
|
+
|
3608
|
+
# ModifyProjectLimit请求参数结构体
|
3609
|
+
class ModifyProjectLimitRequest < TencentCloud::Common::AbstractModel
|
3610
|
+
# @param ProjectID: 项目ID
|
3611
|
+
# @type ProjectID: Integer
|
3612
|
+
# @param ProjectInterface: 项目接口
|
3613
|
+
# @type ProjectInterface: String
|
3614
|
+
# @param ReportRate: 上报比例 10代表10%
|
3615
|
+
# @type ReportRate: Integer
|
3616
|
+
# @param ReportType: 上报类型 1:比例 2:上报量
|
3617
|
+
# @type ReportType: Integer
|
3618
|
+
# @param ID: 主键ID
|
3619
|
+
# @type ID: Integer
|
3620
|
+
|
3621
|
+
attr_accessor :ProjectID, :ProjectInterface, :ReportRate, :ReportType, :ID
|
3622
|
+
|
3623
|
+
def initialize(projectid=nil, projectinterface=nil, reportrate=nil, reporttype=nil, id=nil)
|
3624
|
+
@ProjectID = projectid
|
3625
|
+
@ProjectInterface = projectinterface
|
3626
|
+
@ReportRate = reportrate
|
3627
|
+
@ReportType = reporttype
|
3628
|
+
@ID = id
|
3629
|
+
end
|
3630
|
+
|
3631
|
+
def deserialize(params)
|
3632
|
+
@ProjectID = params['ProjectID']
|
3633
|
+
@ProjectInterface = params['ProjectInterface']
|
3634
|
+
@ReportRate = params['ReportRate']
|
3635
|
+
@ReportType = params['ReportType']
|
3636
|
+
@ID = params['ID']
|
3637
|
+
end
|
3638
|
+
end
|
3639
|
+
|
3640
|
+
# ModifyProjectLimit返回参数结构体
|
3641
|
+
class ModifyProjectLimitResponse < TencentCloud::Common::AbstractModel
|
3642
|
+
# @param Msg: 返回信息
|
3643
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3644
|
+
# @type Msg: String
|
3645
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3646
|
+
# @type RequestId: String
|
3647
|
+
|
3648
|
+
attr_accessor :Msg, :RequestId
|
3649
|
+
|
3650
|
+
def initialize(msg=nil, requestid=nil)
|
3651
|
+
@Msg = msg
|
3652
|
+
@RequestId = requestid
|
3653
|
+
end
|
3654
|
+
|
3655
|
+
def deserialize(params)
|
3656
|
+
@Msg = params['Msg']
|
3657
|
+
@RequestId = params['RequestId']
|
3658
|
+
end
|
3659
|
+
end
|
3660
|
+
|
3661
|
+
# ModifyProject请求参数结构体
|
3662
|
+
class ModifyProjectRequest < TencentCloud::Common::AbstractModel
|
3663
|
+
# @param ID: 项目 id
|
3664
|
+
# @type ID: Integer
|
3665
|
+
# @param Name: 项目名(可选,不为空且最长为 200)
|
3666
|
+
# @type Name: String
|
3667
|
+
# @param URL: 项目网页地址(可选,最长为 256)
|
3668
|
+
# @type URL: String
|
3669
|
+
# @param Repo: 项目仓库地址(可选,最长为 256)
|
3670
|
+
# @type Repo: String
|
3671
|
+
# @param InstanceID: 项目需要转移到的实例 id(可选)
|
3672
|
+
# @type InstanceID: String
|
3673
|
+
# @param Rate: 项目采样率(可选)
|
3674
|
+
# @type Rate: String
|
3675
|
+
# @param EnableURLGroup: 是否开启聚类(可选)
|
3676
|
+
# @type EnableURLGroup: Integer
|
3677
|
+
# @param Type: 项目类型(可接受值为 "web", "mp", "android", "ios", "node", "hippy", "weex", "viola", "rn")
|
3678
|
+
# @type Type: String
|
3679
|
+
# @param Desc: 项目描述(可选,最长为 1000)
|
3680
|
+
# @type Desc: String
|
3681
|
+
|
3682
|
+
attr_accessor :ID, :Name, :URL, :Repo, :InstanceID, :Rate, :EnableURLGroup, :Type, :Desc
|
3683
|
+
|
3684
|
+
def initialize(id=nil, name=nil, url=nil, repo=nil, instanceid=nil, rate=nil, enableurlgroup=nil, type=nil, desc=nil)
|
819
3685
|
@ID = id
|
3686
|
+
@Name = name
|
3687
|
+
@URL = url
|
3688
|
+
@Repo = repo
|
3689
|
+
@InstanceID = instanceid
|
3690
|
+
@Rate = rate
|
3691
|
+
@EnableURLGroup = enableurlgroup
|
3692
|
+
@Type = type
|
3693
|
+
@Desc = desc
|
820
3694
|
end
|
821
3695
|
|
822
3696
|
def deserialize(params)
|
823
|
-
@Date = params['Date']
|
824
3697
|
@ID = params['ID']
|
3698
|
+
@Name = params['Name']
|
3699
|
+
@URL = params['URL']
|
3700
|
+
@Repo = params['Repo']
|
3701
|
+
@InstanceID = params['InstanceID']
|
3702
|
+
@Rate = params['Rate']
|
3703
|
+
@EnableURLGroup = params['EnableURLGroup']
|
3704
|
+
@Type = params['Type']
|
3705
|
+
@Desc = params['Desc']
|
825
3706
|
end
|
826
3707
|
end
|
827
3708
|
|
828
|
-
#
|
829
|
-
class
|
830
|
-
# @param
|
831
|
-
# @type
|
832
|
-
# @param ID: 项目
|
3709
|
+
# ModifyProject返回参数结构体
|
3710
|
+
class ModifyProjectResponse < TencentCloud::Common::AbstractModel
|
3711
|
+
# @param Msg: 操作信息
|
3712
|
+
# @type Msg: String
|
3713
|
+
# @param ID: 项目id
|
833
3714
|
# @type ID: Integer
|
834
|
-
# @param CreateTime: 时间
|
835
|
-
# @type CreateTime: String
|
836
3715
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
837
3716
|
# @type RequestId: String
|
838
3717
|
|
839
|
-
attr_accessor :
|
3718
|
+
attr_accessor :Msg, :ID, :RequestId
|
840
3719
|
|
841
|
-
def initialize(
|
842
|
-
@
|
3720
|
+
def initialize(msg=nil, id=nil, requestid=nil)
|
3721
|
+
@Msg = msg
|
843
3722
|
@ID = id
|
844
|
-
@CreateTime = createtime
|
845
3723
|
@RequestId = requestid
|
846
3724
|
end
|
847
3725
|
|
848
3726
|
def deserialize(params)
|
849
|
-
@
|
3727
|
+
@Msg = params['Msg']
|
850
3728
|
@ID = params['ID']
|
851
|
-
@CreateTime = params['CreateTime']
|
852
3729
|
@RequestId = params['RequestId']
|
853
3730
|
end
|
854
3731
|
end
|
855
3732
|
|
856
|
-
#
|
857
|
-
class
|
858
|
-
# @param
|
859
|
-
# @type Sort: String
|
860
|
-
# @param ActionType: searchlog histogram
|
861
|
-
# @type ActionType: String
|
862
|
-
# @param ID: 项目ID
|
3733
|
+
# 项目接口限制类型
|
3734
|
+
class ProjectLimit < TencentCloud::Common::AbstractModel
|
3735
|
+
# @param ID: 主键ID
|
863
3736
|
# @type ID: Integer
|
864
|
-
# @param
|
865
|
-
# @type
|
866
|
-
# @param
|
867
|
-
# @type
|
868
|
-
# @param
|
869
|
-
# @type
|
870
|
-
# @param
|
871
|
-
# @type
|
872
|
-
# @param EndTime: 结束时间
|
873
|
-
# @type EndTime: String
|
3737
|
+
# @param ProjectID: 项目ID
|
3738
|
+
# @type ProjectID: Integer
|
3739
|
+
# @param ProjectInterface: 接口
|
3740
|
+
# @type ProjectInterface: String
|
3741
|
+
# @param ReportRate: 上报率
|
3742
|
+
# @type ReportRate: Integer
|
3743
|
+
# @param ReportType: 上报类型 1:上报率 2:上报量限制
|
3744
|
+
# @type ReportType: Integer
|
874
3745
|
|
875
|
-
attr_accessor :
|
3746
|
+
attr_accessor :ID, :ProjectID, :ProjectInterface, :ReportRate, :ReportType
|
876
3747
|
|
877
|
-
def initialize(
|
878
|
-
@Sort = sort
|
879
|
-
@ActionType = actiontype
|
3748
|
+
def initialize(id=nil, projectid=nil, projectinterface=nil, reportrate=nil, reporttype=nil)
|
880
3749
|
@ID = id
|
881
|
-
@
|
882
|
-
@
|
883
|
-
@
|
884
|
-
@
|
885
|
-
@EndTime = endtime
|
3750
|
+
@ProjectID = projectid
|
3751
|
+
@ProjectInterface = projectinterface
|
3752
|
+
@ReportRate = reportrate
|
3753
|
+
@ReportType = reporttype
|
886
3754
|
end
|
887
3755
|
|
888
3756
|
def deserialize(params)
|
889
|
-
@Sort = params['Sort']
|
890
|
-
@ActionType = params['ActionType']
|
891
3757
|
@ID = params['ID']
|
892
|
-
@
|
893
|
-
@
|
894
|
-
@
|
895
|
-
@
|
896
|
-
@EndTime = params['EndTime']
|
3758
|
+
@ProjectID = params['ProjectID']
|
3759
|
+
@ProjectInterface = params['ProjectInterface']
|
3760
|
+
@ReportRate = params['ReportRate']
|
3761
|
+
@ReportType = params['ReportType']
|
897
3762
|
end
|
898
3763
|
end
|
899
3764
|
|
900
|
-
#
|
901
|
-
class
|
902
|
-
# @param
|
903
|
-
# @type
|
904
|
-
# @param
|
905
|
-
# @type
|
3765
|
+
# 发布文件列表(SOURCEMAP)
|
3766
|
+
class ReleaseFile < TencentCloud::Common::AbstractModel
|
3767
|
+
# @param Version: 文件版本
|
3768
|
+
# @type Version: String
|
3769
|
+
# @param FileKey: 文件唯一 key
|
3770
|
+
# @type FileKey: String
|
3771
|
+
# @param FileName: 文件名
|
3772
|
+
# @type FileName: String
|
3773
|
+
# @param FileHash: 文件哈希值
|
3774
|
+
# @type FileHash: String
|
3775
|
+
# @param ID: 文件 id
|
3776
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3777
|
+
# @type ID: Integer
|
906
3778
|
|
907
|
-
attr_accessor :
|
3779
|
+
attr_accessor :Version, :FileKey, :FileName, :FileHash, :ID
|
908
3780
|
|
909
|
-
def initialize(
|
910
|
-
@
|
911
|
-
@
|
3781
|
+
def initialize(version=nil, filekey=nil, filename=nil, filehash=nil, id=nil)
|
3782
|
+
@Version = version
|
3783
|
+
@FileKey = filekey
|
3784
|
+
@FileName = filename
|
3785
|
+
@FileHash = filehash
|
3786
|
+
@ID = id
|
912
3787
|
end
|
913
3788
|
|
914
3789
|
def deserialize(params)
|
915
|
-
@
|
916
|
-
@
|
3790
|
+
@Version = params['Version']
|
3791
|
+
@FileKey = params['FileKey']
|
3792
|
+
@FileName = params['FileName']
|
3793
|
+
@FileHash = params['FileHash']
|
3794
|
+
@ID = params['ID']
|
917
3795
|
end
|
918
3796
|
end
|
919
3797
|
|
920
|
-
#
|
921
|
-
class
|
922
|
-
# @param
|
923
|
-
# @type
|
924
|
-
# @param Offset: 分页页码,整型
|
925
|
-
# @type Offset: Integer
|
926
|
-
# @param Filters: 过滤条件
|
927
|
-
# @type Filters: Array
|
3798
|
+
# ResumeInstance请求参数结构体
|
3799
|
+
class ResumeInstanceRequest < TencentCloud::Common::AbstractModel
|
3800
|
+
# @param InstanceId: 需要恢复的实例id
|
3801
|
+
# @type InstanceId: String
|
928
3802
|
|
929
|
-
attr_accessor :
|
3803
|
+
attr_accessor :InstanceId
|
930
3804
|
|
931
|
-
def initialize(
|
932
|
-
@
|
933
|
-
@Offset = offset
|
934
|
-
@Filters = filters
|
3805
|
+
def initialize(instanceid=nil)
|
3806
|
+
@InstanceId = instanceid
|
935
3807
|
end
|
936
3808
|
|
937
3809
|
def deserialize(params)
|
938
|
-
@
|
939
|
-
@Offset = params['Offset']
|
940
|
-
unless params['Filters'].nil?
|
941
|
-
@Filters = []
|
942
|
-
params['Filters'].each do |i|
|
943
|
-
filter_tmp = Filter.new
|
944
|
-
filter_tmp.deserialize(i)
|
945
|
-
@Filters << filter_tmp
|
946
|
-
end
|
947
|
-
end
|
3810
|
+
@InstanceId = params['InstanceId']
|
948
3811
|
end
|
949
3812
|
end
|
950
3813
|
|
951
|
-
#
|
952
|
-
class
|
953
|
-
# @param TotalCount: 列表总数
|
954
|
-
# @type TotalCount: Integer
|
955
|
-
# @param ProjectSet: 项目列表
|
956
|
-
# @type ProjectSet: Array
|
3814
|
+
# ResumeInstance返回参数结构体
|
3815
|
+
class ResumeInstanceResponse < TencentCloud::Common::AbstractModel
|
957
3816
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
958
3817
|
# @type RequestId: String
|
959
3818
|
|
960
|
-
attr_accessor :
|
3819
|
+
attr_accessor :RequestId
|
961
3820
|
|
962
|
-
def initialize(
|
963
|
-
@TotalCount = totalcount
|
964
|
-
@ProjectSet = projectset
|
3821
|
+
def initialize(requestid=nil)
|
965
3822
|
@RequestId = requestid
|
966
3823
|
end
|
967
3824
|
|
968
3825
|
def deserialize(params)
|
969
|
-
@TotalCount = params['TotalCount']
|
970
|
-
unless params['ProjectSet'].nil?
|
971
|
-
@ProjectSet = []
|
972
|
-
params['ProjectSet'].each do |i|
|
973
|
-
rumproject_tmp = RumProject.new
|
974
|
-
rumproject_tmp.deserialize(i)
|
975
|
-
@ProjectSet << rumproject_tmp
|
976
|
-
end
|
977
|
-
end
|
978
3826
|
@RequestId = params['RequestId']
|
979
3827
|
end
|
980
3828
|
end
|
981
3829
|
|
982
|
-
#
|
983
|
-
class
|
984
|
-
# @param
|
985
|
-
# @type
|
986
|
-
# @param
|
987
|
-
# @type
|
988
|
-
# @param
|
989
|
-
# @type
|
3830
|
+
# Rum片区信息
|
3831
|
+
class RumAreaInfo < TencentCloud::Common::AbstractModel
|
3832
|
+
# @param AreaId: 片区Id
|
3833
|
+
# @type AreaId: Integer
|
3834
|
+
# @param AreaStatus: 片区状态(1=有效,2=无效)
|
3835
|
+
# @type AreaStatus: Integer
|
3836
|
+
# @param AreaName: 片区名称
|
3837
|
+
# @type AreaName: String
|
3838
|
+
# @param AreaKey: 片区Key
|
3839
|
+
# @type AreaKey: String
|
990
3840
|
|
991
|
-
attr_accessor :
|
3841
|
+
attr_accessor :AreaId, :AreaStatus, :AreaName, :AreaKey
|
992
3842
|
|
993
|
-
def initialize(
|
994
|
-
@
|
995
|
-
@
|
996
|
-
@
|
3843
|
+
def initialize(areaid=nil, areastatus=nil, areaname=nil, areakey=nil)
|
3844
|
+
@AreaId = areaid
|
3845
|
+
@AreaStatus = areastatus
|
3846
|
+
@AreaName = areaname
|
3847
|
+
@AreaKey = areakey
|
997
3848
|
end
|
998
3849
|
|
999
3850
|
def deserialize(params)
|
1000
|
-
@
|
1001
|
-
@
|
1002
|
-
@
|
3851
|
+
@AreaId = params['AreaId']
|
3852
|
+
@AreaStatus = params['AreaStatus']
|
3853
|
+
@AreaName = params['AreaName']
|
3854
|
+
@AreaKey = params['AreaKey']
|
1003
3855
|
end
|
1004
3856
|
end
|
1005
3857
|
|
1006
|
-
#
|
1007
|
-
class
|
1008
|
-
# @param
|
1009
|
-
# @type
|
1010
|
-
# @param
|
1011
|
-
# @type
|
3858
|
+
# Rum实例信息
|
3859
|
+
class RumInstanceInfo < TencentCloud::Common::AbstractModel
|
3860
|
+
# @param InstanceStatus: 实例状态(1=创建中,2=运行中,3=异常,4=重启中,5=停止中,6=已停止,7=已删除)
|
3861
|
+
# @type InstanceStatus: Integer
|
3862
|
+
# @param AreaId: 片区Id
|
3863
|
+
# @type AreaId: Integer
|
3864
|
+
# @param Tags: 标签列表
|
3865
|
+
# @type Tags: Array
|
3866
|
+
# @param InstanceId: 实例Id
|
3867
|
+
# @type InstanceId: String
|
3868
|
+
# @param ClusterId: 集群Id
|
3869
|
+
# @type ClusterId: Integer
|
3870
|
+
# @param InstanceDesc: 实例描述
|
3871
|
+
# @type InstanceDesc: String
|
3872
|
+
# @param ChargeStatus: 计费状态(1=使用中,2=已过期,3=已销毁,4=分配中,5=分配失败)
|
3873
|
+
# @type ChargeStatus: Integer
|
3874
|
+
# @param ChargeType: 计费类型(1=免费版,2=预付费,3=后付费)
|
3875
|
+
# @type ChargeType: Integer
|
3876
|
+
# @param UpdatedAt: 更新时间
|
3877
|
+
# @type UpdatedAt: String
|
3878
|
+
# @param DataRetentionDays: 数据保留时间(天)
|
3879
|
+
# @type DataRetentionDays: Integer
|
3880
|
+
# @param InstanceName: 实例名称
|
3881
|
+
# @type InstanceName: String
|
3882
|
+
# @param CreatedAt: 创建时间
|
3883
|
+
# @type CreatedAt: String
|
1012
3884
|
|
1013
|
-
attr_accessor :
|
3885
|
+
attr_accessor :InstanceStatus, :AreaId, :Tags, :InstanceId, :ClusterId, :InstanceDesc, :ChargeStatus, :ChargeType, :UpdatedAt, :DataRetentionDays, :InstanceName, :CreatedAt
|
1014
3886
|
|
1015
|
-
def initialize(
|
1016
|
-
@
|
1017
|
-
@
|
3887
|
+
def initialize(instancestatus=nil, areaid=nil, tags=nil, instanceid=nil, clusterid=nil, instancedesc=nil, chargestatus=nil, chargetype=nil, updatedat=nil, dataretentiondays=nil, instancename=nil, createdat=nil)
|
3888
|
+
@InstanceStatus = instancestatus
|
3889
|
+
@AreaId = areaid
|
3890
|
+
@Tags = tags
|
3891
|
+
@InstanceId = instanceid
|
3892
|
+
@ClusterId = clusterid
|
3893
|
+
@InstanceDesc = instancedesc
|
3894
|
+
@ChargeStatus = chargestatus
|
3895
|
+
@ChargeType = chargetype
|
3896
|
+
@UpdatedAt = updatedat
|
3897
|
+
@DataRetentionDays = dataretentiondays
|
3898
|
+
@InstanceName = instancename
|
3899
|
+
@CreatedAt = createdat
|
1018
3900
|
end
|
1019
3901
|
|
1020
3902
|
def deserialize(params)
|
1021
|
-
|
1022
|
-
|
1023
|
-
|
1024
|
-
|
1025
|
-
|
1026
|
-
|
3903
|
+
@InstanceStatus = params['InstanceStatus']
|
3904
|
+
@AreaId = params['AreaId']
|
3905
|
+
unless params['Tags'].nil?
|
3906
|
+
@Tags = []
|
3907
|
+
params['Tags'].each do |i|
|
3908
|
+
tag_tmp = Tag.new
|
3909
|
+
tag_tmp.deserialize(i)
|
3910
|
+
@Tags << tag_tmp
|
1027
3911
|
end
|
1028
3912
|
end
|
1029
|
-
@
|
1030
|
-
|
1031
|
-
|
1032
|
-
|
1033
|
-
|
1034
|
-
|
1035
|
-
|
1036
|
-
|
1037
|
-
|
1038
|
-
# @param Values: 一个或者多个过滤值。
|
1039
|
-
# @type Values: Array
|
1040
|
-
# @param Name: 过滤键的名称。
|
1041
|
-
# @type Name: String
|
1042
|
-
|
1043
|
-
attr_accessor :Values, :Name
|
1044
|
-
|
1045
|
-
def initialize(values=nil, name=nil)
|
1046
|
-
@Values = values
|
1047
|
-
@Name = name
|
1048
|
-
end
|
1049
|
-
|
1050
|
-
def deserialize(params)
|
1051
|
-
@Values = params['Values']
|
1052
|
-
@Name = params['Name']
|
3913
|
+
@InstanceId = params['InstanceId']
|
3914
|
+
@ClusterId = params['ClusterId']
|
3915
|
+
@InstanceDesc = params['InstanceDesc']
|
3916
|
+
@ChargeStatus = params['ChargeStatus']
|
3917
|
+
@ChargeType = params['ChargeType']
|
3918
|
+
@UpdatedAt = params['UpdatedAt']
|
3919
|
+
@DataRetentionDays = params['DataRetentionDays']
|
3920
|
+
@InstanceName = params['InstanceName']
|
3921
|
+
@CreatedAt = params['CreatedAt']
|
1053
3922
|
end
|
1054
3923
|
end
|
1055
3924
|
|
@@ -1129,6 +3998,55 @@ module TencentCloud
|
|
1129
3998
|
end
|
1130
3999
|
end
|
1131
4000
|
|
4001
|
+
# rum 日志对象
|
4002
|
+
class RumPvInfo < TencentCloud::Common::AbstractModel
|
4003
|
+
# @param ProjectId: 项目ID
|
4004
|
+
# @type ProjectId: Integer
|
4005
|
+
# @param Pv: pv访问量
|
4006
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4007
|
+
# @type Pv: String
|
4008
|
+
# @param CreateTime: 时间
|
4009
|
+
# @type CreateTime: String
|
4010
|
+
|
4011
|
+
attr_accessor :ProjectId, :Pv, :CreateTime
|
4012
|
+
|
4013
|
+
def initialize(projectid=nil, pv=nil, createtime=nil)
|
4014
|
+
@ProjectId = projectid
|
4015
|
+
@Pv = pv
|
4016
|
+
@CreateTime = createtime
|
4017
|
+
end
|
4018
|
+
|
4019
|
+
def deserialize(params)
|
4020
|
+
@ProjectId = params['ProjectId']
|
4021
|
+
@Pv = params['Pv']
|
4022
|
+
@CreateTime = params['CreateTime']
|
4023
|
+
end
|
4024
|
+
end
|
4025
|
+
|
4026
|
+
# RumUv 访问量
|
4027
|
+
class RumUvInfo < TencentCloud::Common::AbstractModel
|
4028
|
+
# @param ProjectId: 项目ID
|
4029
|
+
# @type ProjectId: Integer
|
4030
|
+
# @param Uv: uv访问量
|
4031
|
+
# @type Uv: String
|
4032
|
+
# @param CreateTime: 创建时间
|
4033
|
+
# @type CreateTime: String
|
4034
|
+
|
4035
|
+
attr_accessor :ProjectId, :Uv, :CreateTime
|
4036
|
+
|
4037
|
+
def initialize(projectid=nil, uv=nil, createtime=nil)
|
4038
|
+
@ProjectId = projectid
|
4039
|
+
@Uv = uv
|
4040
|
+
@CreateTime = createtime
|
4041
|
+
end
|
4042
|
+
|
4043
|
+
def deserialize(params)
|
4044
|
+
@ProjectId = params['ProjectId']
|
4045
|
+
@Uv = params['Uv']
|
4046
|
+
@CreateTime = params['CreateTime']
|
4047
|
+
end
|
4048
|
+
end
|
4049
|
+
|
1132
4050
|
# project Score分数实体
|
1133
4051
|
class ScoreInfo < TencentCloud::Common::AbstractModel
|
1134
4052
|
# @param StaticDuration: duration
|
@@ -1193,6 +4111,102 @@ module TencentCloud
|
|
1193
4111
|
end
|
1194
4112
|
end
|
1195
4113
|
|
4114
|
+
# StopInstance请求参数结构体
|
4115
|
+
class StopInstanceRequest < TencentCloud::Common::AbstractModel
|
4116
|
+
# @param InstanceId: 需要停止的实例id
|
4117
|
+
# @type InstanceId: String
|
4118
|
+
|
4119
|
+
attr_accessor :InstanceId
|
4120
|
+
|
4121
|
+
def initialize(instanceid=nil)
|
4122
|
+
@InstanceId = instanceid
|
4123
|
+
end
|
4124
|
+
|
4125
|
+
def deserialize(params)
|
4126
|
+
@InstanceId = params['InstanceId']
|
4127
|
+
end
|
4128
|
+
end
|
4129
|
+
|
4130
|
+
# StopInstance返回参数结构体
|
4131
|
+
class StopInstanceResponse < TencentCloud::Common::AbstractModel
|
4132
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
4133
|
+
# @type RequestId: String
|
4134
|
+
|
4135
|
+
attr_accessor :RequestId
|
4136
|
+
|
4137
|
+
def initialize(requestid=nil)
|
4138
|
+
@RequestId = requestid
|
4139
|
+
end
|
4140
|
+
|
4141
|
+
def deserialize(params)
|
4142
|
+
@RequestId = params['RequestId']
|
4143
|
+
end
|
4144
|
+
end
|
4145
|
+
|
4146
|
+
# 标签
|
4147
|
+
class Tag < TencentCloud::Common::AbstractModel
|
4148
|
+
# @param Key: 标签key
|
4149
|
+
# @type Key: String
|
4150
|
+
# @param Value: 标签value
|
4151
|
+
# @type Value: String
|
4152
|
+
|
4153
|
+
attr_accessor :Key, :Value
|
4154
|
+
|
4155
|
+
def initialize(key=nil, value=nil)
|
4156
|
+
@Key = key
|
4157
|
+
@Value = value
|
4158
|
+
end
|
4159
|
+
|
4160
|
+
def deserialize(params)
|
4161
|
+
@Key = params['Key']
|
4162
|
+
@Value = params['Value']
|
4163
|
+
end
|
4164
|
+
end
|
4165
|
+
|
4166
|
+
# 白名单
|
4167
|
+
class Whitelist < TencentCloud::Common::AbstractModel
|
4168
|
+
# @param Remark: 备注
|
4169
|
+
# @type Remark: String
|
4170
|
+
# @param InstanceID: 实例ID
|
4171
|
+
# @type InstanceID: String
|
4172
|
+
# @param Ttl: 截止时间
|
4173
|
+
# @type Ttl: String
|
4174
|
+
# @param ID: 白名单自增ID
|
4175
|
+
# @type ID: String
|
4176
|
+
# @param WhitelistUin: 业务唯一标识
|
4177
|
+
# @type WhitelistUin: String
|
4178
|
+
# @param CreateUser: 创建者ID
|
4179
|
+
# @type CreateUser: String
|
4180
|
+
# @param Aid: aid标识
|
4181
|
+
# @type Aid: String
|
4182
|
+
# @param CreateTime: 创建时间
|
4183
|
+
# @type CreateTime: String
|
4184
|
+
|
4185
|
+
attr_accessor :Remark, :InstanceID, :Ttl, :ID, :WhitelistUin, :CreateUser, :Aid, :CreateTime
|
4186
|
+
|
4187
|
+
def initialize(remark=nil, instanceid=nil, ttl=nil, id=nil, whitelistuin=nil, createuser=nil, aid=nil, createtime=nil)
|
4188
|
+
@Remark = remark
|
4189
|
+
@InstanceID = instanceid
|
4190
|
+
@Ttl = ttl
|
4191
|
+
@ID = id
|
4192
|
+
@WhitelistUin = whitelistuin
|
4193
|
+
@CreateUser = createuser
|
4194
|
+
@Aid = aid
|
4195
|
+
@CreateTime = createtime
|
4196
|
+
end
|
4197
|
+
|
4198
|
+
def deserialize(params)
|
4199
|
+
@Remark = params['Remark']
|
4200
|
+
@InstanceID = params['InstanceID']
|
4201
|
+
@Ttl = params['Ttl']
|
4202
|
+
@ID = params['ID']
|
4203
|
+
@WhitelistUin = params['WhitelistUin']
|
4204
|
+
@CreateUser = params['CreateUser']
|
4205
|
+
@Aid = params['Aid']
|
4206
|
+
@CreateTime = params['CreateTime']
|
4207
|
+
end
|
4208
|
+
end
|
4209
|
+
|
1196
4210
|
end
|
1197
4211
|
end
|
1198
4212
|
end
|