tencentcloud-sdk-rum 3.0.1197 → 3.0.1203
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210622/client.rb +24 -0
- data/lib/v20210622/models.rb +158 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a36829092bc5140d9797ec1be93ed9bb7fb85791
|
|
4
|
+
data.tar.gz: 8737fc026f07f6059e47e9d727e64bb969008e1e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dfc47f5423be4efd7c71ad3dcf6d47ef4ac089cf2f7e6ff4a4893eb8e342ba121c6838e344b069721126cabeb3ee8adacb794edbf62eba608c1cc332a5034531
|
|
7
|
+
data.tar.gz: 4b27a5d393c23945a8ad6757d290bc5dd61e4e3cdb60d94366c02aa7e0394356973fb0eebe264f299c5dd363e08a2162eb29301868fa0df571d790719b8494ae
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1203
|
data/lib/v20210622/client.rb
CHANGED
|
@@ -629,6 +629,30 @@ module TencentCloud
|
|
|
629
629
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
630
630
|
end
|
|
631
631
|
|
|
632
|
+
# 获取DescribeDataPvUrlStatistics信息
|
|
633
|
+
|
|
634
|
+
# @param request: Request instance for DescribeDataPvUrlStatisticsV2.
|
|
635
|
+
# @type request: :class:`Tencentcloud::rum::V20210622::DescribeDataPvUrlStatisticsV2Request`
|
|
636
|
+
# @rtype: :class:`Tencentcloud::rum::V20210622::DescribeDataPvUrlStatisticsV2Response`
|
|
637
|
+
def DescribeDataPvUrlStatisticsV2(request)
|
|
638
|
+
body = send_request('DescribeDataPvUrlStatisticsV2', request.serialize)
|
|
639
|
+
response = JSON.parse(body)
|
|
640
|
+
if response['Response'].key?('Error') == false
|
|
641
|
+
model = DescribeDataPvUrlStatisticsV2Response.new
|
|
642
|
+
model.deserialize(response['Response'])
|
|
643
|
+
model
|
|
644
|
+
else
|
|
645
|
+
code = response['Response']['Error']['Code']
|
|
646
|
+
message = response['Response']['Error']['Message']
|
|
647
|
+
reqid = response['Response']['RequestId']
|
|
648
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
649
|
+
end
|
|
650
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
651
|
+
raise e
|
|
652
|
+
rescue StandardError => e
|
|
653
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
654
|
+
end
|
|
655
|
+
|
|
632
656
|
# 获取项目上报量
|
|
633
657
|
|
|
634
658
|
# @param request: Request instance for DescribeDataReportCount.
|
data/lib/v20210622/models.rb
CHANGED
|
@@ -1957,6 +1957,164 @@ module TencentCloud
|
|
|
1957
1957
|
end
|
|
1958
1958
|
end
|
|
1959
1959
|
|
|
1960
|
+
# DescribeDataPvUrlStatisticsV2请求参数结构体
|
|
1961
|
+
class DescribeDataPvUrlStatisticsV2Request < TencentCloud::Common::AbstractModel
|
|
1962
|
+
# @param StartTime: 开始时间
|
|
1963
|
+
# @type StartTime: Integer
|
|
1964
|
+
# @param Type: allcount:性能视图,day:14天数据,vp:性能,ckuv:uv,ckpv:pv,condition:条件列表,nettype/version/platform/isp/region/device/browser/ext1/ext2/ext3/ret/status/from/url/env/:网络平台视图/Version视图/设备视图/ISP视图/地区视图/浏览器视图/ext1视图等等
|
|
1965
|
+
# @type Type: String
|
|
1966
|
+
# @param EndTime: 结束时间
|
|
1967
|
+
# @type EndTime: Integer
|
|
1968
|
+
# @param ID: 项目ID
|
|
1969
|
+
# @type ID: Integer
|
|
1970
|
+
# @param ExtSecond: 自定义2
|
|
1971
|
+
# @type ExtSecond: String
|
|
1972
|
+
# @param Engine: 浏览器引擎
|
|
1973
|
+
# @type Engine: String
|
|
1974
|
+
# @param Isp: 运营商
|
|
1975
|
+
# @type Isp: String
|
|
1976
|
+
# @param From: 来源页面
|
|
1977
|
+
# @type From: String
|
|
1978
|
+
# @param Level: 日志等级
|
|
1979
|
+
# @type Level: String
|
|
1980
|
+
# @param Brand: 品牌
|
|
1981
|
+
# @type Brand: String
|
|
1982
|
+
# @param Area: 地区
|
|
1983
|
+
# @type Area: String
|
|
1984
|
+
# @param VersionNum: 版本
|
|
1985
|
+
# @type VersionNum: String
|
|
1986
|
+
# @param Platform: 平台
|
|
1987
|
+
# @type Platform: String
|
|
1988
|
+
# @param ExtThird: 自定义3
|
|
1989
|
+
# @type ExtThird: String
|
|
1990
|
+
# @param ExtFirst: 自定义1
|
|
1991
|
+
# @type ExtFirst: String
|
|
1992
|
+
# @param NetType: 网络类型
|
|
1993
|
+
# @type NetType: String
|
|
1994
|
+
# @param Device: 机型
|
|
1995
|
+
# @type Device: String
|
|
1996
|
+
# @param IsAbroad: 显示是否海外,1表示海外,0表示非海外;默认值为空,查询所有。
|
|
1997
|
+
# @type IsAbroad: String
|
|
1998
|
+
# @param Os: 操作系统
|
|
1999
|
+
# @type Os: String
|
|
2000
|
+
# @param Browser: 浏览器
|
|
2001
|
+
# @type Browser: String
|
|
2002
|
+
# @param Env: 环境
|
|
2003
|
+
# @type Env: String
|
|
2004
|
+
# @param GroupByType: group by 参数值枚举1:1m 2:5m 3:30m 4:1h
|
|
2005
|
+
# 5:1d
|
|
2006
|
+
# @type GroupByType: Integer
|
|
2007
|
+
# @param IsNewData: 1: 查询智研
|
|
2008
|
+
# 0: 走旧逻辑,已下线,勿使用
|
|
2009
|
+
# @type IsNewData: Integer
|
|
2010
|
+
# @param ExtFourth: 自定义4
|
|
2011
|
+
# @type ExtFourth: String
|
|
2012
|
+
# @param ExtFifth: 自定义5
|
|
2013
|
+
# @type ExtFifth: String
|
|
2014
|
+
# @param ExtSixth: 自定义6
|
|
2015
|
+
# @type ExtSixth: String
|
|
2016
|
+
# @param ExtSeventh: 自定义7
|
|
2017
|
+
# @type ExtSeventh: String
|
|
2018
|
+
# @param ExtEighth: 自定义8
|
|
2019
|
+
# @type ExtEighth: String
|
|
2020
|
+
# @param ExtNinth: 自定义9
|
|
2021
|
+
# @type ExtNinth: String
|
|
2022
|
+
# @param ExtTenth: 自定义10
|
|
2023
|
+
# @type ExtTenth: String
|
|
2024
|
+
# @param Granularity: 时间段
|
|
2025
|
+
# @type Granularity: String
|
|
2026
|
+
|
|
2027
|
+
attr_accessor :StartTime, :Type, :EndTime, :ID, :ExtSecond, :Engine, :Isp, :From, :Level, :Brand, :Area, :VersionNum, :Platform, :ExtThird, :ExtFirst, :NetType, :Device, :IsAbroad, :Os, :Browser, :Env, :GroupByType, :IsNewData, :ExtFourth, :ExtFifth, :ExtSixth, :ExtSeventh, :ExtEighth, :ExtNinth, :ExtTenth, :Granularity
|
|
2028
|
+
|
|
2029
|
+
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, groupbytype=nil, isnewdata=nil, extfourth=nil, extfifth=nil, extsixth=nil, extseventh=nil, exteighth=nil, extninth=nil, exttenth=nil, granularity=nil)
|
|
2030
|
+
@StartTime = starttime
|
|
2031
|
+
@Type = type
|
|
2032
|
+
@EndTime = endtime
|
|
2033
|
+
@ID = id
|
|
2034
|
+
@ExtSecond = extsecond
|
|
2035
|
+
@Engine = engine
|
|
2036
|
+
@Isp = isp
|
|
2037
|
+
@From = from
|
|
2038
|
+
@Level = level
|
|
2039
|
+
@Brand = brand
|
|
2040
|
+
@Area = area
|
|
2041
|
+
@VersionNum = versionnum
|
|
2042
|
+
@Platform = platform
|
|
2043
|
+
@ExtThird = extthird
|
|
2044
|
+
@ExtFirst = extfirst
|
|
2045
|
+
@NetType = nettype
|
|
2046
|
+
@Device = device
|
|
2047
|
+
@IsAbroad = isabroad
|
|
2048
|
+
@Os = os
|
|
2049
|
+
@Browser = browser
|
|
2050
|
+
@Env = env
|
|
2051
|
+
@GroupByType = groupbytype
|
|
2052
|
+
@IsNewData = isnewdata
|
|
2053
|
+
@ExtFourth = extfourth
|
|
2054
|
+
@ExtFifth = extfifth
|
|
2055
|
+
@ExtSixth = extsixth
|
|
2056
|
+
@ExtSeventh = extseventh
|
|
2057
|
+
@ExtEighth = exteighth
|
|
2058
|
+
@ExtNinth = extninth
|
|
2059
|
+
@ExtTenth = exttenth
|
|
2060
|
+
@Granularity = granularity
|
|
2061
|
+
end
|
|
2062
|
+
|
|
2063
|
+
def deserialize(params)
|
|
2064
|
+
@StartTime = params['StartTime']
|
|
2065
|
+
@Type = params['Type']
|
|
2066
|
+
@EndTime = params['EndTime']
|
|
2067
|
+
@ID = params['ID']
|
|
2068
|
+
@ExtSecond = params['ExtSecond']
|
|
2069
|
+
@Engine = params['Engine']
|
|
2070
|
+
@Isp = params['Isp']
|
|
2071
|
+
@From = params['From']
|
|
2072
|
+
@Level = params['Level']
|
|
2073
|
+
@Brand = params['Brand']
|
|
2074
|
+
@Area = params['Area']
|
|
2075
|
+
@VersionNum = params['VersionNum']
|
|
2076
|
+
@Platform = params['Platform']
|
|
2077
|
+
@ExtThird = params['ExtThird']
|
|
2078
|
+
@ExtFirst = params['ExtFirst']
|
|
2079
|
+
@NetType = params['NetType']
|
|
2080
|
+
@Device = params['Device']
|
|
2081
|
+
@IsAbroad = params['IsAbroad']
|
|
2082
|
+
@Os = params['Os']
|
|
2083
|
+
@Browser = params['Browser']
|
|
2084
|
+
@Env = params['Env']
|
|
2085
|
+
@GroupByType = params['GroupByType']
|
|
2086
|
+
@IsNewData = params['IsNewData']
|
|
2087
|
+
@ExtFourth = params['ExtFourth']
|
|
2088
|
+
@ExtFifth = params['ExtFifth']
|
|
2089
|
+
@ExtSixth = params['ExtSixth']
|
|
2090
|
+
@ExtSeventh = params['ExtSeventh']
|
|
2091
|
+
@ExtEighth = params['ExtEighth']
|
|
2092
|
+
@ExtNinth = params['ExtNinth']
|
|
2093
|
+
@ExtTenth = params['ExtTenth']
|
|
2094
|
+
@Granularity = params['Granularity']
|
|
2095
|
+
end
|
|
2096
|
+
end
|
|
2097
|
+
|
|
2098
|
+
# DescribeDataPvUrlStatisticsV2返回参数结构体
|
|
2099
|
+
class DescribeDataPvUrlStatisticsV2Response < TencentCloud::Common::AbstractModel
|
|
2100
|
+
# @param Result: 返回值
|
|
2101
|
+
# @type Result: String
|
|
2102
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2103
|
+
# @type RequestId: String
|
|
2104
|
+
|
|
2105
|
+
attr_accessor :Result, :RequestId
|
|
2106
|
+
|
|
2107
|
+
def initialize(result=nil, requestid=nil)
|
|
2108
|
+
@Result = result
|
|
2109
|
+
@RequestId = requestid
|
|
2110
|
+
end
|
|
2111
|
+
|
|
2112
|
+
def deserialize(params)
|
|
2113
|
+
@Result = params['Result']
|
|
2114
|
+
@RequestId = params['RequestId']
|
|
2115
|
+
end
|
|
2116
|
+
end
|
|
2117
|
+
|
|
1960
2118
|
# DescribeDataReportCount请求参数结构体
|
|
1961
2119
|
class DescribeDataReportCountRequest < TencentCloud::Common::AbstractModel
|
|
1962
2120
|
# @param StartTime: 开始时间
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-rum
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1203
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-01-
|
|
11
|
+
date: 2026-01-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|