tencentcloud-sdk-python-rum 3.1.27__tar.gz → 3.1.41__tar.gz
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.
- {tencentcloud_sdk_python_rum-3.1.27 → tencentcloud_sdk_python_rum-3.1.41}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_rum-3.1.27 → tencentcloud_sdk_python_rum-3.1.41}/setup.py +1 -1
- {tencentcloud_sdk_python_rum-3.1.27 → tencentcloud_sdk_python_rum-3.1.41}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_rum-3.1.27 → tencentcloud_sdk_python_rum-3.1.41}/tencentcloud/rum/v20210622/models.py +672 -0
- {tencentcloud_sdk_python_rum-3.1.27 → tencentcloud_sdk_python_rum-3.1.41}/tencentcloud/rum/v20210622/rum_client.py +46 -0
- {tencentcloud_sdk_python_rum-3.1.27 → tencentcloud_sdk_python_rum-3.1.41}/tencentcloud/rum/v20210622/rum_client_async.py +36 -0
- {tencentcloud_sdk_python_rum-3.1.27 → tencentcloud_sdk_python_rum-3.1.41}/tencentcloud_sdk_python_rum.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_rum-3.1.41/tencentcloud_sdk_python_rum.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_rum-3.1.27/tencentcloud_sdk_python_rum.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_rum-3.1.27 → tencentcloud_sdk_python_rum-3.1.41}/README.rst +0 -0
- {tencentcloud_sdk_python_rum-3.1.27 → tencentcloud_sdk_python_rum-3.1.41}/setup.cfg +0 -0
- {tencentcloud_sdk_python_rum-3.1.27 → tencentcloud_sdk_python_rum-3.1.41}/tencentcloud/rum/__init__.py +0 -0
- {tencentcloud_sdk_python_rum-3.1.27 → tencentcloud_sdk_python_rum-3.1.41}/tencentcloud/rum/v20210622/__init__.py +0 -0
- {tencentcloud_sdk_python_rum-3.1.27 → tencentcloud_sdk_python_rum-3.1.41}/tencentcloud/rum/v20210622/errorcodes.py +0 -0
- {tencentcloud_sdk_python_rum-3.1.27 → tencentcloud_sdk_python_rum-3.1.41}/tencentcloud_sdk_python_rum.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_rum-3.1.27 → tencentcloud_sdk_python_rum-3.1.41}/tencentcloud_sdk_python_rum.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_rum-3.1.27 → tencentcloud_sdk_python_rum-3.1.41}/tencentcloud_sdk_python_rum.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-rum
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.41
|
|
4
4
|
Summary: Tencent Cloud Rum SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.41
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-rum',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.41,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Rum SDK for Python',
|
|
@@ -5903,6 +5903,539 @@ class DescribeDataPvUrlStatisticsResponse(AbstractModel):
|
|
|
5903
5903
|
self._RequestId = params.get("RequestId")
|
|
5904
5904
|
|
|
5905
5905
|
|
|
5906
|
+
class DescribeDataPvUrlStatisticsV2Request(AbstractModel):
|
|
5907
|
+
r"""DescribeDataPvUrlStatisticsV2请求参数结构体
|
|
5908
|
+
|
|
5909
|
+
"""
|
|
5910
|
+
|
|
5911
|
+
def __init__(self):
|
|
5912
|
+
r"""
|
|
5913
|
+
:param _StartTime: 开始时间
|
|
5914
|
+
:type StartTime: int
|
|
5915
|
+
: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视图等等
|
|
5916
|
+
:type Type: str
|
|
5917
|
+
:param _EndTime: 结束时间
|
|
5918
|
+
:type EndTime: int
|
|
5919
|
+
:param _ID: 项目ID
|
|
5920
|
+
:type ID: int
|
|
5921
|
+
:param _ExtSecond: 自定义2
|
|
5922
|
+
:type ExtSecond: str
|
|
5923
|
+
:param _Engine: 浏览器引擎
|
|
5924
|
+
:type Engine: str
|
|
5925
|
+
:param _Isp: 运营商
|
|
5926
|
+
:type Isp: str
|
|
5927
|
+
:param _From: 来源页面
|
|
5928
|
+
:type From: str
|
|
5929
|
+
:param _Level: 日志等级
|
|
5930
|
+
:type Level: str
|
|
5931
|
+
:param _Brand: 品牌
|
|
5932
|
+
:type Brand: str
|
|
5933
|
+
:param _Area: 地区
|
|
5934
|
+
:type Area: str
|
|
5935
|
+
:param _VersionNum: 版本
|
|
5936
|
+
:type VersionNum: str
|
|
5937
|
+
:param _Platform: 平台
|
|
5938
|
+
:type Platform: str
|
|
5939
|
+
:param _ExtThird: 自定义3
|
|
5940
|
+
:type ExtThird: str
|
|
5941
|
+
:param _ExtFirst: 自定义1
|
|
5942
|
+
:type ExtFirst: str
|
|
5943
|
+
:param _NetType: 网络类型
|
|
5944
|
+
:type NetType: str
|
|
5945
|
+
:param _Device: 机型
|
|
5946
|
+
:type Device: str
|
|
5947
|
+
:param _IsAbroad: 显示是否海外,1表示海外,0表示非海外;默认值为空,查询所有。
|
|
5948
|
+
:type IsAbroad: str
|
|
5949
|
+
:param _Os: 操作系统
|
|
5950
|
+
:type Os: str
|
|
5951
|
+
:param _Browser: 浏览器
|
|
5952
|
+
:type Browser: str
|
|
5953
|
+
:param _Env: 环境
|
|
5954
|
+
:type Env: str
|
|
5955
|
+
:param _GroupByType: group by 参数值枚举1:1m 2:5m 3:30m 4:1h
|
|
5956
|
+
5:1d
|
|
5957
|
+
:type GroupByType: int
|
|
5958
|
+
:param _IsNewData: 1: 查询智研
|
|
5959
|
+
0: 走旧逻辑,已下线,勿使用
|
|
5960
|
+
:type IsNewData: int
|
|
5961
|
+
:param _ExtFourth: 自定义4
|
|
5962
|
+
:type ExtFourth: str
|
|
5963
|
+
:param _ExtFifth: 自定义5
|
|
5964
|
+
:type ExtFifth: str
|
|
5965
|
+
:param _ExtSixth: 自定义6
|
|
5966
|
+
:type ExtSixth: str
|
|
5967
|
+
:param _ExtSeventh: 自定义7
|
|
5968
|
+
:type ExtSeventh: str
|
|
5969
|
+
:param _ExtEighth: 自定义8
|
|
5970
|
+
:type ExtEighth: str
|
|
5971
|
+
:param _ExtNinth: 自定义9
|
|
5972
|
+
:type ExtNinth: str
|
|
5973
|
+
:param _ExtTenth: 自定义10
|
|
5974
|
+
:type ExtTenth: str
|
|
5975
|
+
:param _Granularity: 时间段
|
|
5976
|
+
:type Granularity: str
|
|
5977
|
+
"""
|
|
5978
|
+
self._StartTime = None
|
|
5979
|
+
self._Type = None
|
|
5980
|
+
self._EndTime = None
|
|
5981
|
+
self._ID = None
|
|
5982
|
+
self._ExtSecond = None
|
|
5983
|
+
self._Engine = None
|
|
5984
|
+
self._Isp = None
|
|
5985
|
+
self._From = None
|
|
5986
|
+
self._Level = None
|
|
5987
|
+
self._Brand = None
|
|
5988
|
+
self._Area = None
|
|
5989
|
+
self._VersionNum = None
|
|
5990
|
+
self._Platform = None
|
|
5991
|
+
self._ExtThird = None
|
|
5992
|
+
self._ExtFirst = None
|
|
5993
|
+
self._NetType = None
|
|
5994
|
+
self._Device = None
|
|
5995
|
+
self._IsAbroad = None
|
|
5996
|
+
self._Os = None
|
|
5997
|
+
self._Browser = None
|
|
5998
|
+
self._Env = None
|
|
5999
|
+
self._GroupByType = None
|
|
6000
|
+
self._IsNewData = None
|
|
6001
|
+
self._ExtFourth = None
|
|
6002
|
+
self._ExtFifth = None
|
|
6003
|
+
self._ExtSixth = None
|
|
6004
|
+
self._ExtSeventh = None
|
|
6005
|
+
self._ExtEighth = None
|
|
6006
|
+
self._ExtNinth = None
|
|
6007
|
+
self._ExtTenth = None
|
|
6008
|
+
self._Granularity = None
|
|
6009
|
+
|
|
6010
|
+
@property
|
|
6011
|
+
def StartTime(self):
|
|
6012
|
+
r"""开始时间
|
|
6013
|
+
:rtype: int
|
|
6014
|
+
"""
|
|
6015
|
+
return self._StartTime
|
|
6016
|
+
|
|
6017
|
+
@StartTime.setter
|
|
6018
|
+
def StartTime(self, StartTime):
|
|
6019
|
+
self._StartTime = StartTime
|
|
6020
|
+
|
|
6021
|
+
@property
|
|
6022
|
+
def Type(self):
|
|
6023
|
+
r"""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视图等等
|
|
6024
|
+
:rtype: str
|
|
6025
|
+
"""
|
|
6026
|
+
return self._Type
|
|
6027
|
+
|
|
6028
|
+
@Type.setter
|
|
6029
|
+
def Type(self, Type):
|
|
6030
|
+
self._Type = Type
|
|
6031
|
+
|
|
6032
|
+
@property
|
|
6033
|
+
def EndTime(self):
|
|
6034
|
+
r"""结束时间
|
|
6035
|
+
:rtype: int
|
|
6036
|
+
"""
|
|
6037
|
+
return self._EndTime
|
|
6038
|
+
|
|
6039
|
+
@EndTime.setter
|
|
6040
|
+
def EndTime(self, EndTime):
|
|
6041
|
+
self._EndTime = EndTime
|
|
6042
|
+
|
|
6043
|
+
@property
|
|
6044
|
+
def ID(self):
|
|
6045
|
+
r"""项目ID
|
|
6046
|
+
:rtype: int
|
|
6047
|
+
"""
|
|
6048
|
+
return self._ID
|
|
6049
|
+
|
|
6050
|
+
@ID.setter
|
|
6051
|
+
def ID(self, ID):
|
|
6052
|
+
self._ID = ID
|
|
6053
|
+
|
|
6054
|
+
@property
|
|
6055
|
+
def ExtSecond(self):
|
|
6056
|
+
r"""自定义2
|
|
6057
|
+
:rtype: str
|
|
6058
|
+
"""
|
|
6059
|
+
return self._ExtSecond
|
|
6060
|
+
|
|
6061
|
+
@ExtSecond.setter
|
|
6062
|
+
def ExtSecond(self, ExtSecond):
|
|
6063
|
+
self._ExtSecond = ExtSecond
|
|
6064
|
+
|
|
6065
|
+
@property
|
|
6066
|
+
def Engine(self):
|
|
6067
|
+
r"""浏览器引擎
|
|
6068
|
+
:rtype: str
|
|
6069
|
+
"""
|
|
6070
|
+
return self._Engine
|
|
6071
|
+
|
|
6072
|
+
@Engine.setter
|
|
6073
|
+
def Engine(self, Engine):
|
|
6074
|
+
self._Engine = Engine
|
|
6075
|
+
|
|
6076
|
+
@property
|
|
6077
|
+
def Isp(self):
|
|
6078
|
+
r"""运营商
|
|
6079
|
+
:rtype: str
|
|
6080
|
+
"""
|
|
6081
|
+
return self._Isp
|
|
6082
|
+
|
|
6083
|
+
@Isp.setter
|
|
6084
|
+
def Isp(self, Isp):
|
|
6085
|
+
self._Isp = Isp
|
|
6086
|
+
|
|
6087
|
+
@property
|
|
6088
|
+
def From(self):
|
|
6089
|
+
r"""来源页面
|
|
6090
|
+
:rtype: str
|
|
6091
|
+
"""
|
|
6092
|
+
return self._From
|
|
6093
|
+
|
|
6094
|
+
@From.setter
|
|
6095
|
+
def From(self, From):
|
|
6096
|
+
self._From = From
|
|
6097
|
+
|
|
6098
|
+
@property
|
|
6099
|
+
def Level(self):
|
|
6100
|
+
r"""日志等级
|
|
6101
|
+
:rtype: str
|
|
6102
|
+
"""
|
|
6103
|
+
return self._Level
|
|
6104
|
+
|
|
6105
|
+
@Level.setter
|
|
6106
|
+
def Level(self, Level):
|
|
6107
|
+
self._Level = Level
|
|
6108
|
+
|
|
6109
|
+
@property
|
|
6110
|
+
def Brand(self):
|
|
6111
|
+
r"""品牌
|
|
6112
|
+
:rtype: str
|
|
6113
|
+
"""
|
|
6114
|
+
return self._Brand
|
|
6115
|
+
|
|
6116
|
+
@Brand.setter
|
|
6117
|
+
def Brand(self, Brand):
|
|
6118
|
+
self._Brand = Brand
|
|
6119
|
+
|
|
6120
|
+
@property
|
|
6121
|
+
def Area(self):
|
|
6122
|
+
r"""地区
|
|
6123
|
+
:rtype: str
|
|
6124
|
+
"""
|
|
6125
|
+
return self._Area
|
|
6126
|
+
|
|
6127
|
+
@Area.setter
|
|
6128
|
+
def Area(self, Area):
|
|
6129
|
+
self._Area = Area
|
|
6130
|
+
|
|
6131
|
+
@property
|
|
6132
|
+
def VersionNum(self):
|
|
6133
|
+
r"""版本
|
|
6134
|
+
:rtype: str
|
|
6135
|
+
"""
|
|
6136
|
+
return self._VersionNum
|
|
6137
|
+
|
|
6138
|
+
@VersionNum.setter
|
|
6139
|
+
def VersionNum(self, VersionNum):
|
|
6140
|
+
self._VersionNum = VersionNum
|
|
6141
|
+
|
|
6142
|
+
@property
|
|
6143
|
+
def Platform(self):
|
|
6144
|
+
r"""平台
|
|
6145
|
+
:rtype: str
|
|
6146
|
+
"""
|
|
6147
|
+
return self._Platform
|
|
6148
|
+
|
|
6149
|
+
@Platform.setter
|
|
6150
|
+
def Platform(self, Platform):
|
|
6151
|
+
self._Platform = Platform
|
|
6152
|
+
|
|
6153
|
+
@property
|
|
6154
|
+
def ExtThird(self):
|
|
6155
|
+
r"""自定义3
|
|
6156
|
+
:rtype: str
|
|
6157
|
+
"""
|
|
6158
|
+
return self._ExtThird
|
|
6159
|
+
|
|
6160
|
+
@ExtThird.setter
|
|
6161
|
+
def ExtThird(self, ExtThird):
|
|
6162
|
+
self._ExtThird = ExtThird
|
|
6163
|
+
|
|
6164
|
+
@property
|
|
6165
|
+
def ExtFirst(self):
|
|
6166
|
+
r"""自定义1
|
|
6167
|
+
:rtype: str
|
|
6168
|
+
"""
|
|
6169
|
+
return self._ExtFirst
|
|
6170
|
+
|
|
6171
|
+
@ExtFirst.setter
|
|
6172
|
+
def ExtFirst(self, ExtFirst):
|
|
6173
|
+
self._ExtFirst = ExtFirst
|
|
6174
|
+
|
|
6175
|
+
@property
|
|
6176
|
+
def NetType(self):
|
|
6177
|
+
r"""网络类型
|
|
6178
|
+
:rtype: str
|
|
6179
|
+
"""
|
|
6180
|
+
return self._NetType
|
|
6181
|
+
|
|
6182
|
+
@NetType.setter
|
|
6183
|
+
def NetType(self, NetType):
|
|
6184
|
+
self._NetType = NetType
|
|
6185
|
+
|
|
6186
|
+
@property
|
|
6187
|
+
def Device(self):
|
|
6188
|
+
r"""机型
|
|
6189
|
+
:rtype: str
|
|
6190
|
+
"""
|
|
6191
|
+
return self._Device
|
|
6192
|
+
|
|
6193
|
+
@Device.setter
|
|
6194
|
+
def Device(self, Device):
|
|
6195
|
+
self._Device = Device
|
|
6196
|
+
|
|
6197
|
+
@property
|
|
6198
|
+
def IsAbroad(self):
|
|
6199
|
+
r"""显示是否海外,1表示海外,0表示非海外;默认值为空,查询所有。
|
|
6200
|
+
:rtype: str
|
|
6201
|
+
"""
|
|
6202
|
+
return self._IsAbroad
|
|
6203
|
+
|
|
6204
|
+
@IsAbroad.setter
|
|
6205
|
+
def IsAbroad(self, IsAbroad):
|
|
6206
|
+
self._IsAbroad = IsAbroad
|
|
6207
|
+
|
|
6208
|
+
@property
|
|
6209
|
+
def Os(self):
|
|
6210
|
+
r"""操作系统
|
|
6211
|
+
:rtype: str
|
|
6212
|
+
"""
|
|
6213
|
+
return self._Os
|
|
6214
|
+
|
|
6215
|
+
@Os.setter
|
|
6216
|
+
def Os(self, Os):
|
|
6217
|
+
self._Os = Os
|
|
6218
|
+
|
|
6219
|
+
@property
|
|
6220
|
+
def Browser(self):
|
|
6221
|
+
r"""浏览器
|
|
6222
|
+
:rtype: str
|
|
6223
|
+
"""
|
|
6224
|
+
return self._Browser
|
|
6225
|
+
|
|
6226
|
+
@Browser.setter
|
|
6227
|
+
def Browser(self, Browser):
|
|
6228
|
+
self._Browser = Browser
|
|
6229
|
+
|
|
6230
|
+
@property
|
|
6231
|
+
def Env(self):
|
|
6232
|
+
r"""环境
|
|
6233
|
+
:rtype: str
|
|
6234
|
+
"""
|
|
6235
|
+
return self._Env
|
|
6236
|
+
|
|
6237
|
+
@Env.setter
|
|
6238
|
+
def Env(self, Env):
|
|
6239
|
+
self._Env = Env
|
|
6240
|
+
|
|
6241
|
+
@property
|
|
6242
|
+
def GroupByType(self):
|
|
6243
|
+
r"""group by 参数值枚举1:1m 2:5m 3:30m 4:1h
|
|
6244
|
+
5:1d
|
|
6245
|
+
:rtype: int
|
|
6246
|
+
"""
|
|
6247
|
+
return self._GroupByType
|
|
6248
|
+
|
|
6249
|
+
@GroupByType.setter
|
|
6250
|
+
def GroupByType(self, GroupByType):
|
|
6251
|
+
self._GroupByType = GroupByType
|
|
6252
|
+
|
|
6253
|
+
@property
|
|
6254
|
+
def IsNewData(self):
|
|
6255
|
+
r"""1: 查询智研
|
|
6256
|
+
0: 走旧逻辑,已下线,勿使用
|
|
6257
|
+
:rtype: int
|
|
6258
|
+
"""
|
|
6259
|
+
return self._IsNewData
|
|
6260
|
+
|
|
6261
|
+
@IsNewData.setter
|
|
6262
|
+
def IsNewData(self, IsNewData):
|
|
6263
|
+
self._IsNewData = IsNewData
|
|
6264
|
+
|
|
6265
|
+
@property
|
|
6266
|
+
def ExtFourth(self):
|
|
6267
|
+
r"""自定义4
|
|
6268
|
+
:rtype: str
|
|
6269
|
+
"""
|
|
6270
|
+
return self._ExtFourth
|
|
6271
|
+
|
|
6272
|
+
@ExtFourth.setter
|
|
6273
|
+
def ExtFourth(self, ExtFourth):
|
|
6274
|
+
self._ExtFourth = ExtFourth
|
|
6275
|
+
|
|
6276
|
+
@property
|
|
6277
|
+
def ExtFifth(self):
|
|
6278
|
+
r"""自定义5
|
|
6279
|
+
:rtype: str
|
|
6280
|
+
"""
|
|
6281
|
+
return self._ExtFifth
|
|
6282
|
+
|
|
6283
|
+
@ExtFifth.setter
|
|
6284
|
+
def ExtFifth(self, ExtFifth):
|
|
6285
|
+
self._ExtFifth = ExtFifth
|
|
6286
|
+
|
|
6287
|
+
@property
|
|
6288
|
+
def ExtSixth(self):
|
|
6289
|
+
r"""自定义6
|
|
6290
|
+
:rtype: str
|
|
6291
|
+
"""
|
|
6292
|
+
return self._ExtSixth
|
|
6293
|
+
|
|
6294
|
+
@ExtSixth.setter
|
|
6295
|
+
def ExtSixth(self, ExtSixth):
|
|
6296
|
+
self._ExtSixth = ExtSixth
|
|
6297
|
+
|
|
6298
|
+
@property
|
|
6299
|
+
def ExtSeventh(self):
|
|
6300
|
+
r"""自定义7
|
|
6301
|
+
:rtype: str
|
|
6302
|
+
"""
|
|
6303
|
+
return self._ExtSeventh
|
|
6304
|
+
|
|
6305
|
+
@ExtSeventh.setter
|
|
6306
|
+
def ExtSeventh(self, ExtSeventh):
|
|
6307
|
+
self._ExtSeventh = ExtSeventh
|
|
6308
|
+
|
|
6309
|
+
@property
|
|
6310
|
+
def ExtEighth(self):
|
|
6311
|
+
r"""自定义8
|
|
6312
|
+
:rtype: str
|
|
6313
|
+
"""
|
|
6314
|
+
return self._ExtEighth
|
|
6315
|
+
|
|
6316
|
+
@ExtEighth.setter
|
|
6317
|
+
def ExtEighth(self, ExtEighth):
|
|
6318
|
+
self._ExtEighth = ExtEighth
|
|
6319
|
+
|
|
6320
|
+
@property
|
|
6321
|
+
def ExtNinth(self):
|
|
6322
|
+
r"""自定义9
|
|
6323
|
+
:rtype: str
|
|
6324
|
+
"""
|
|
6325
|
+
return self._ExtNinth
|
|
6326
|
+
|
|
6327
|
+
@ExtNinth.setter
|
|
6328
|
+
def ExtNinth(self, ExtNinth):
|
|
6329
|
+
self._ExtNinth = ExtNinth
|
|
6330
|
+
|
|
6331
|
+
@property
|
|
6332
|
+
def ExtTenth(self):
|
|
6333
|
+
r"""自定义10
|
|
6334
|
+
:rtype: str
|
|
6335
|
+
"""
|
|
6336
|
+
return self._ExtTenth
|
|
6337
|
+
|
|
6338
|
+
@ExtTenth.setter
|
|
6339
|
+
def ExtTenth(self, ExtTenth):
|
|
6340
|
+
self._ExtTenth = ExtTenth
|
|
6341
|
+
|
|
6342
|
+
@property
|
|
6343
|
+
def Granularity(self):
|
|
6344
|
+
r"""时间段
|
|
6345
|
+
:rtype: str
|
|
6346
|
+
"""
|
|
6347
|
+
return self._Granularity
|
|
6348
|
+
|
|
6349
|
+
@Granularity.setter
|
|
6350
|
+
def Granularity(self, Granularity):
|
|
6351
|
+
self._Granularity = Granularity
|
|
6352
|
+
|
|
6353
|
+
|
|
6354
|
+
def _deserialize(self, params):
|
|
6355
|
+
self._StartTime = params.get("StartTime")
|
|
6356
|
+
self._Type = params.get("Type")
|
|
6357
|
+
self._EndTime = params.get("EndTime")
|
|
6358
|
+
self._ID = params.get("ID")
|
|
6359
|
+
self._ExtSecond = params.get("ExtSecond")
|
|
6360
|
+
self._Engine = params.get("Engine")
|
|
6361
|
+
self._Isp = params.get("Isp")
|
|
6362
|
+
self._From = params.get("From")
|
|
6363
|
+
self._Level = params.get("Level")
|
|
6364
|
+
self._Brand = params.get("Brand")
|
|
6365
|
+
self._Area = params.get("Area")
|
|
6366
|
+
self._VersionNum = params.get("VersionNum")
|
|
6367
|
+
self._Platform = params.get("Platform")
|
|
6368
|
+
self._ExtThird = params.get("ExtThird")
|
|
6369
|
+
self._ExtFirst = params.get("ExtFirst")
|
|
6370
|
+
self._NetType = params.get("NetType")
|
|
6371
|
+
self._Device = params.get("Device")
|
|
6372
|
+
self._IsAbroad = params.get("IsAbroad")
|
|
6373
|
+
self._Os = params.get("Os")
|
|
6374
|
+
self._Browser = params.get("Browser")
|
|
6375
|
+
self._Env = params.get("Env")
|
|
6376
|
+
self._GroupByType = params.get("GroupByType")
|
|
6377
|
+
self._IsNewData = params.get("IsNewData")
|
|
6378
|
+
self._ExtFourth = params.get("ExtFourth")
|
|
6379
|
+
self._ExtFifth = params.get("ExtFifth")
|
|
6380
|
+
self._ExtSixth = params.get("ExtSixth")
|
|
6381
|
+
self._ExtSeventh = params.get("ExtSeventh")
|
|
6382
|
+
self._ExtEighth = params.get("ExtEighth")
|
|
6383
|
+
self._ExtNinth = params.get("ExtNinth")
|
|
6384
|
+
self._ExtTenth = params.get("ExtTenth")
|
|
6385
|
+
self._Granularity = params.get("Granularity")
|
|
6386
|
+
memeber_set = set(params.keys())
|
|
6387
|
+
for name, value in vars(self).items():
|
|
6388
|
+
property_name = name[1:]
|
|
6389
|
+
if property_name in memeber_set:
|
|
6390
|
+
memeber_set.remove(property_name)
|
|
6391
|
+
if len(memeber_set) > 0:
|
|
6392
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
6393
|
+
|
|
6394
|
+
|
|
6395
|
+
|
|
6396
|
+
class DescribeDataPvUrlStatisticsV2Response(AbstractModel):
|
|
6397
|
+
r"""DescribeDataPvUrlStatisticsV2返回参数结构体
|
|
6398
|
+
|
|
6399
|
+
"""
|
|
6400
|
+
|
|
6401
|
+
def __init__(self):
|
|
6402
|
+
r"""
|
|
6403
|
+
:param _Result: 返回值
|
|
6404
|
+
:type Result: str
|
|
6405
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6406
|
+
:type RequestId: str
|
|
6407
|
+
"""
|
|
6408
|
+
self._Result = None
|
|
6409
|
+
self._RequestId = None
|
|
6410
|
+
|
|
6411
|
+
@property
|
|
6412
|
+
def Result(self):
|
|
6413
|
+
r"""返回值
|
|
6414
|
+
:rtype: str
|
|
6415
|
+
"""
|
|
6416
|
+
return self._Result
|
|
6417
|
+
|
|
6418
|
+
@Result.setter
|
|
6419
|
+
def Result(self, Result):
|
|
6420
|
+
self._Result = Result
|
|
6421
|
+
|
|
6422
|
+
@property
|
|
6423
|
+
def RequestId(self):
|
|
6424
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6425
|
+
:rtype: str
|
|
6426
|
+
"""
|
|
6427
|
+
return self._RequestId
|
|
6428
|
+
|
|
6429
|
+
@RequestId.setter
|
|
6430
|
+
def RequestId(self, RequestId):
|
|
6431
|
+
self._RequestId = RequestId
|
|
6432
|
+
|
|
6433
|
+
|
|
6434
|
+
def _deserialize(self, params):
|
|
6435
|
+
self._Result = params.get("Result")
|
|
6436
|
+
self._RequestId = params.get("RequestId")
|
|
6437
|
+
|
|
6438
|
+
|
|
5906
6439
|
class DescribeDataReportCountRequest(AbstractModel):
|
|
5907
6440
|
r"""DescribeDataReportCount请求参数结构体
|
|
5908
6441
|
|
|
@@ -6042,6 +6575,145 @@ class DescribeDataReportCountResponse(AbstractModel):
|
|
|
6042
6575
|
self._RequestId = params.get("RequestId")
|
|
6043
6576
|
|
|
6044
6577
|
|
|
6578
|
+
class DescribeDataReportCountV2Request(AbstractModel):
|
|
6579
|
+
r"""DescribeDataReportCountV2请求参数结构体
|
|
6580
|
+
|
|
6581
|
+
"""
|
|
6582
|
+
|
|
6583
|
+
def __init__(self):
|
|
6584
|
+
r"""
|
|
6585
|
+
:param _StartTime: 开始时间
|
|
6586
|
+
:type StartTime: int
|
|
6587
|
+
:param _EndTime: 结束时间
|
|
6588
|
+
:type EndTime: int
|
|
6589
|
+
:param _ID: 项目ID
|
|
6590
|
+
:type ID: int
|
|
6591
|
+
:param _ReportType: 上报类型(custom,event,log,miniProgramData,performance,pv,speed,webvitals)
|
|
6592
|
+
:type ReportType: str
|
|
6593
|
+
:param _InstanceID: 实例ID
|
|
6594
|
+
:type InstanceID: str
|
|
6595
|
+
"""
|
|
6596
|
+
self._StartTime = None
|
|
6597
|
+
self._EndTime = None
|
|
6598
|
+
self._ID = None
|
|
6599
|
+
self._ReportType = None
|
|
6600
|
+
self._InstanceID = None
|
|
6601
|
+
|
|
6602
|
+
@property
|
|
6603
|
+
def StartTime(self):
|
|
6604
|
+
r"""开始时间
|
|
6605
|
+
:rtype: int
|
|
6606
|
+
"""
|
|
6607
|
+
return self._StartTime
|
|
6608
|
+
|
|
6609
|
+
@StartTime.setter
|
|
6610
|
+
def StartTime(self, StartTime):
|
|
6611
|
+
self._StartTime = StartTime
|
|
6612
|
+
|
|
6613
|
+
@property
|
|
6614
|
+
def EndTime(self):
|
|
6615
|
+
r"""结束时间
|
|
6616
|
+
:rtype: int
|
|
6617
|
+
"""
|
|
6618
|
+
return self._EndTime
|
|
6619
|
+
|
|
6620
|
+
@EndTime.setter
|
|
6621
|
+
def EndTime(self, EndTime):
|
|
6622
|
+
self._EndTime = EndTime
|
|
6623
|
+
|
|
6624
|
+
@property
|
|
6625
|
+
def ID(self):
|
|
6626
|
+
r"""项目ID
|
|
6627
|
+
:rtype: int
|
|
6628
|
+
"""
|
|
6629
|
+
return self._ID
|
|
6630
|
+
|
|
6631
|
+
@ID.setter
|
|
6632
|
+
def ID(self, ID):
|
|
6633
|
+
self._ID = ID
|
|
6634
|
+
|
|
6635
|
+
@property
|
|
6636
|
+
def ReportType(self):
|
|
6637
|
+
r"""上报类型(custom,event,log,miniProgramData,performance,pv,speed,webvitals)
|
|
6638
|
+
:rtype: str
|
|
6639
|
+
"""
|
|
6640
|
+
return self._ReportType
|
|
6641
|
+
|
|
6642
|
+
@ReportType.setter
|
|
6643
|
+
def ReportType(self, ReportType):
|
|
6644
|
+
self._ReportType = ReportType
|
|
6645
|
+
|
|
6646
|
+
@property
|
|
6647
|
+
def InstanceID(self):
|
|
6648
|
+
r"""实例ID
|
|
6649
|
+
:rtype: str
|
|
6650
|
+
"""
|
|
6651
|
+
return self._InstanceID
|
|
6652
|
+
|
|
6653
|
+
@InstanceID.setter
|
|
6654
|
+
def InstanceID(self, InstanceID):
|
|
6655
|
+
self._InstanceID = InstanceID
|
|
6656
|
+
|
|
6657
|
+
|
|
6658
|
+
def _deserialize(self, params):
|
|
6659
|
+
self._StartTime = params.get("StartTime")
|
|
6660
|
+
self._EndTime = params.get("EndTime")
|
|
6661
|
+
self._ID = params.get("ID")
|
|
6662
|
+
self._ReportType = params.get("ReportType")
|
|
6663
|
+
self._InstanceID = params.get("InstanceID")
|
|
6664
|
+
memeber_set = set(params.keys())
|
|
6665
|
+
for name, value in vars(self).items():
|
|
6666
|
+
property_name = name[1:]
|
|
6667
|
+
if property_name in memeber_set:
|
|
6668
|
+
memeber_set.remove(property_name)
|
|
6669
|
+
if len(memeber_set) > 0:
|
|
6670
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
6671
|
+
|
|
6672
|
+
|
|
6673
|
+
|
|
6674
|
+
class DescribeDataReportCountV2Response(AbstractModel):
|
|
6675
|
+
r"""DescribeDataReportCountV2返回参数结构体
|
|
6676
|
+
|
|
6677
|
+
"""
|
|
6678
|
+
|
|
6679
|
+
def __init__(self):
|
|
6680
|
+
r"""
|
|
6681
|
+
:param _Result: 返回值
|
|
6682
|
+
:type Result: str
|
|
6683
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6684
|
+
:type RequestId: str
|
|
6685
|
+
"""
|
|
6686
|
+
self._Result = None
|
|
6687
|
+
self._RequestId = None
|
|
6688
|
+
|
|
6689
|
+
@property
|
|
6690
|
+
def Result(self):
|
|
6691
|
+
r"""返回值
|
|
6692
|
+
:rtype: str
|
|
6693
|
+
"""
|
|
6694
|
+
return self._Result
|
|
6695
|
+
|
|
6696
|
+
@Result.setter
|
|
6697
|
+
def Result(self, Result):
|
|
6698
|
+
self._Result = Result
|
|
6699
|
+
|
|
6700
|
+
@property
|
|
6701
|
+
def RequestId(self):
|
|
6702
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6703
|
+
:rtype: str
|
|
6704
|
+
"""
|
|
6705
|
+
return self._RequestId
|
|
6706
|
+
|
|
6707
|
+
@RequestId.setter
|
|
6708
|
+
def RequestId(self, RequestId):
|
|
6709
|
+
self._RequestId = RequestId
|
|
6710
|
+
|
|
6711
|
+
|
|
6712
|
+
def _deserialize(self, params):
|
|
6713
|
+
self._Result = params.get("Result")
|
|
6714
|
+
self._RequestId = params.get("RequestId")
|
|
6715
|
+
|
|
6716
|
+
|
|
6045
6717
|
class DescribeDataRequest(AbstractModel):
|
|
6046
6718
|
r"""DescribeData请求参数结构体
|
|
6047
6719
|
|
|
@@ -601,6 +601,29 @@ class RumClient(AbstractClient):
|
|
|
601
601
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
602
602
|
|
|
603
603
|
|
|
604
|
+
def DescribeDataPvUrlStatisticsV2(self, request):
|
|
605
|
+
r"""获取DescribeDataPvUrlStatistics信息
|
|
606
|
+
|
|
607
|
+
:param request: Request instance for DescribeDataPvUrlStatisticsV2.
|
|
608
|
+
:type request: :class:`tencentcloud.rum.v20210622.models.DescribeDataPvUrlStatisticsV2Request`
|
|
609
|
+
:rtype: :class:`tencentcloud.rum.v20210622.models.DescribeDataPvUrlStatisticsV2Response`
|
|
610
|
+
|
|
611
|
+
"""
|
|
612
|
+
try:
|
|
613
|
+
params = request._serialize()
|
|
614
|
+
headers = request.headers
|
|
615
|
+
body = self.call("DescribeDataPvUrlStatisticsV2", params, headers=headers)
|
|
616
|
+
response = json.loads(body)
|
|
617
|
+
model = models.DescribeDataPvUrlStatisticsV2Response()
|
|
618
|
+
model._deserialize(response["Response"])
|
|
619
|
+
return model
|
|
620
|
+
except Exception as e:
|
|
621
|
+
if isinstance(e, TencentCloudSDKException):
|
|
622
|
+
raise
|
|
623
|
+
else:
|
|
624
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
625
|
+
|
|
626
|
+
|
|
604
627
|
def DescribeDataReportCount(self, request):
|
|
605
628
|
r"""获取项目上报量
|
|
606
629
|
|
|
@@ -624,6 +647,29 @@ class RumClient(AbstractClient):
|
|
|
624
647
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
625
648
|
|
|
626
649
|
|
|
650
|
+
def DescribeDataReportCountV2(self, request):
|
|
651
|
+
r"""获取项目上报量
|
|
652
|
+
|
|
653
|
+
:param request: Request instance for DescribeDataReportCountV2.
|
|
654
|
+
:type request: :class:`tencentcloud.rum.v20210622.models.DescribeDataReportCountV2Request`
|
|
655
|
+
:rtype: :class:`tencentcloud.rum.v20210622.models.DescribeDataReportCountV2Response`
|
|
656
|
+
|
|
657
|
+
"""
|
|
658
|
+
try:
|
|
659
|
+
params = request._serialize()
|
|
660
|
+
headers = request.headers
|
|
661
|
+
body = self.call("DescribeDataReportCountV2", params, headers=headers)
|
|
662
|
+
response = json.loads(body)
|
|
663
|
+
model = models.DescribeDataReportCountV2Response()
|
|
664
|
+
model._deserialize(response["Response"])
|
|
665
|
+
return model
|
|
666
|
+
except Exception as e:
|
|
667
|
+
if isinstance(e, TencentCloudSDKException):
|
|
668
|
+
raise
|
|
669
|
+
else:
|
|
670
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
671
|
+
|
|
672
|
+
|
|
627
673
|
def DescribeDataSetUrlStatistics(self, request):
|
|
628
674
|
r"""获取DescribeDataSetUrlStatistics信息
|
|
629
675
|
|
|
@@ -475,6 +475,24 @@ class RumClient(AbstractClient):
|
|
|
475
475
|
|
|
476
476
|
return await self.call_and_deserialize(**kwargs)
|
|
477
477
|
|
|
478
|
+
async def DescribeDataPvUrlStatisticsV2(
|
|
479
|
+
self,
|
|
480
|
+
request: models.DescribeDataPvUrlStatisticsV2Request,
|
|
481
|
+
opts: Dict = None,
|
|
482
|
+
) -> models.DescribeDataPvUrlStatisticsV2Response:
|
|
483
|
+
"""
|
|
484
|
+
获取DescribeDataPvUrlStatistics信息
|
|
485
|
+
"""
|
|
486
|
+
|
|
487
|
+
kwargs = {}
|
|
488
|
+
kwargs["action"] = "DescribeDataPvUrlStatisticsV2"
|
|
489
|
+
kwargs["params"] = request._serialize()
|
|
490
|
+
kwargs["resp_cls"] = models.DescribeDataPvUrlStatisticsV2Response
|
|
491
|
+
kwargs["headers"] = request.headers
|
|
492
|
+
kwargs["opts"] = opts or {}
|
|
493
|
+
|
|
494
|
+
return await self.call_and_deserialize(**kwargs)
|
|
495
|
+
|
|
478
496
|
async def DescribeDataReportCount(
|
|
479
497
|
self,
|
|
480
498
|
request: models.DescribeDataReportCountRequest,
|
|
@@ -493,6 +511,24 @@ class RumClient(AbstractClient):
|
|
|
493
511
|
|
|
494
512
|
return await self.call_and_deserialize(**kwargs)
|
|
495
513
|
|
|
514
|
+
async def DescribeDataReportCountV2(
|
|
515
|
+
self,
|
|
516
|
+
request: models.DescribeDataReportCountV2Request,
|
|
517
|
+
opts: Dict = None,
|
|
518
|
+
) -> models.DescribeDataReportCountV2Response:
|
|
519
|
+
"""
|
|
520
|
+
获取项目上报量
|
|
521
|
+
"""
|
|
522
|
+
|
|
523
|
+
kwargs = {}
|
|
524
|
+
kwargs["action"] = "DescribeDataReportCountV2"
|
|
525
|
+
kwargs["params"] = request._serialize()
|
|
526
|
+
kwargs["resp_cls"] = models.DescribeDataReportCountV2Response
|
|
527
|
+
kwargs["headers"] = request.headers
|
|
528
|
+
kwargs["opts"] = opts or {}
|
|
529
|
+
|
|
530
|
+
return await self.call_and_deserialize(**kwargs)
|
|
531
|
+
|
|
496
532
|
async def DescribeDataSetUrlStatistics(
|
|
497
533
|
self,
|
|
498
534
|
request: models.DescribeDataSetUrlStatisticsRequest,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-rum
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.41
|
|
4
4
|
Summary: Tencent Cloud Rum SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.41
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.41
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.27
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|