tencentcloud-sdk-rce 3.0.869 → 3.0.871
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/v20201103/models.rb +83 -2
- 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: a0c10996293ea5709273731009b870221d5b941b
|
4
|
+
data.tar.gz: a97972ca2e0a2ec201d27dc222a45ea67676c76f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 65135bb498935279086af8222468932f37d7fa972170076bd2bbdbe070744556d41fe8fe101d493751a2d5e9de257e100811982850a74504f1a95d19ec020ad7
|
7
|
+
data.tar.gz: 6f441430469c22b412728a411671e14684f63b08abfa308ec94ef3f903e9223b8c1e138f826967b09bf4fa178cbd349e9ce8f6f8d82e4da0bb22e351b8d2c371
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.871
|
data/lib/v20201103/models.rb
CHANGED
@@ -58,6 +58,80 @@ module TencentCloud
|
|
58
58
|
end
|
59
59
|
end
|
60
60
|
|
61
|
+
# 数据授权信息
|
62
|
+
class DataAuthorizationInfo < TencentCloud::Common::AbstractModel
|
63
|
+
# @param DataProviderName: 客户主体名称。
|
64
|
+
|
65
|
+
# 示例值:某某有限公司。
|
66
|
+
# @type DataProviderName: String
|
67
|
+
# @param DataRecipientName: 接收方主体名称。
|
68
|
+
|
69
|
+
# 固定填:腾讯云计算(北京)有限责任公司
|
70
|
+
|
71
|
+
# 示例值:腾讯云计算(北京)有限责任公司
|
72
|
+
# @type DataRecipientName: String
|
73
|
+
# @param UserDataType: 客户请求RCE所涉及的用户敏感数据类型,支持多选。实际以接口请求传参为准。
|
74
|
+
|
75
|
+
# 1-手机号;
|
76
|
+
|
77
|
+
# 2-微信开放账号;
|
78
|
+
|
79
|
+
# 3-QQ开放账号;
|
80
|
+
|
81
|
+
# 4-IP地址;
|
82
|
+
|
83
|
+
# 5-设备指纹;
|
84
|
+
|
85
|
+
# 999-其它;
|
86
|
+
|
87
|
+
# 示例值:[1, 4]
|
88
|
+
# @type UserDataType: Array
|
89
|
+
# @param IsAuthorize: 客户是否已经获取用户授权。
|
90
|
+
|
91
|
+
# 1-已授权;其它值为未授权。
|
92
|
+
|
93
|
+
# 示例值:1
|
94
|
+
# @type IsAuthorize: Integer
|
95
|
+
# @param IsPersonalData: 是否是用户个人敏感数据。
|
96
|
+
|
97
|
+
# 固定填:1。
|
98
|
+
|
99
|
+
# 示例值:1
|
100
|
+
# @type IsPersonalData: Integer
|
101
|
+
# @param AuthorizationTerm: 客户获得的用户授权期限时间戳(单位秒)。
|
102
|
+
|
103
|
+
# 不填默认无固定期限。
|
104
|
+
|
105
|
+
# 示例值:1719805604
|
106
|
+
# @type AuthorizationTerm: Integer
|
107
|
+
# @param PrivacyPolicyLink: 客户获得用户授权所依赖的协议地址。
|
108
|
+
|
109
|
+
# 示例值:https://www.*****.com/*****
|
110
|
+
# @type PrivacyPolicyLink: String
|
111
|
+
|
112
|
+
attr_accessor :DataProviderName, :DataRecipientName, :UserDataType, :IsAuthorize, :IsPersonalData, :AuthorizationTerm, :PrivacyPolicyLink
|
113
|
+
|
114
|
+
def initialize(dataprovidername=nil, datarecipientname=nil, userdatatype=nil, isauthorize=nil, ispersonaldata=nil, authorizationterm=nil, privacypolicylink=nil)
|
115
|
+
@DataProviderName = dataprovidername
|
116
|
+
@DataRecipientName = datarecipientname
|
117
|
+
@UserDataType = userdatatype
|
118
|
+
@IsAuthorize = isauthorize
|
119
|
+
@IsPersonalData = ispersonaldata
|
120
|
+
@AuthorizationTerm = authorizationterm
|
121
|
+
@PrivacyPolicyLink = privacypolicylink
|
122
|
+
end
|
123
|
+
|
124
|
+
def deserialize(params)
|
125
|
+
@DataProviderName = params['DataProviderName']
|
126
|
+
@DataRecipientName = params['DataRecipientName']
|
127
|
+
@UserDataType = params['UserDataType']
|
128
|
+
@IsAuthorize = params['IsAuthorize']
|
129
|
+
@IsPersonalData = params['IsPersonalData']
|
130
|
+
@AuthorizationTerm = params['AuthorizationTerm']
|
131
|
+
@PrivacyPolicyLink = params['PrivacyPolicyLink']
|
132
|
+
end
|
133
|
+
end
|
134
|
+
|
61
135
|
# 全栈式风控引擎入参
|
62
136
|
class InputCryptoManageMarketingRisk < TencentCloud::Common::AbstractModel
|
63
137
|
# @param IsAuthorized: 是否授权:1已授权,否则未授权。
|
@@ -163,10 +237,12 @@ module TencentCloud
|
|
163
237
|
# 3:H5
|
164
238
|
# 4:小程序
|
165
239
|
# @type Platform: String
|
240
|
+
# @param DataAuthorization: 数据授权信息。
|
241
|
+
# @type DataAuthorization: :class:`Tencentcloud::Rce.v20201103.models.DataAuthorizationInfo`
|
166
242
|
|
167
|
-
attr_accessor :Account, :SceneCode, :UserIp, :PostTime, :UserId, :DeviceToken, :DeviceBusinessId, :BusinessId, :Nickname, :EmailAddress, :CheckDevice, :CookieHash, :Referer, :UserAgent, :XForwardedFor, :MacAddress, :VendorId, :DeviceType, :Details, :Sponsor, :OnlineScam, :Platform
|
243
|
+
attr_accessor :Account, :SceneCode, :UserIp, :PostTime, :UserId, :DeviceToken, :DeviceBusinessId, :BusinessId, :Nickname, :EmailAddress, :CheckDevice, :CookieHash, :Referer, :UserAgent, :XForwardedFor, :MacAddress, :VendorId, :DeviceType, :Details, :Sponsor, :OnlineScam, :Platform, :DataAuthorization
|
168
244
|
|
169
|
-
def initialize(account=nil, scenecode=nil, userip=nil, posttime=nil, userid=nil, devicetoken=nil, devicebusinessid=nil, businessid=nil, nickname=nil, emailaddress=nil, checkdevice=nil, cookiehash=nil, referer=nil, useragent=nil, xforwardedfor=nil, macaddress=nil, vendorid=nil, devicetype=nil, details=nil, sponsor=nil, onlinescam=nil, platform=nil)
|
245
|
+
def initialize(account=nil, scenecode=nil, userip=nil, posttime=nil, userid=nil, devicetoken=nil, devicebusinessid=nil, businessid=nil, nickname=nil, emailaddress=nil, checkdevice=nil, cookiehash=nil, referer=nil, useragent=nil, xforwardedfor=nil, macaddress=nil, vendorid=nil, devicetype=nil, details=nil, sponsor=nil, onlinescam=nil, platform=nil, dataauthorization=nil)
|
170
246
|
@Account = account
|
171
247
|
@SceneCode = scenecode
|
172
248
|
@UserIp = userip
|
@@ -189,6 +265,7 @@ module TencentCloud
|
|
189
265
|
@Sponsor = sponsor
|
190
266
|
@OnlineScam = onlinescam
|
191
267
|
@Platform = platform
|
268
|
+
@DataAuthorization = dataauthorization
|
192
269
|
end
|
193
270
|
|
194
271
|
def deserialize(params)
|
@@ -230,6 +307,10 @@ module TencentCloud
|
|
230
307
|
@OnlineScam.deserialize(params['OnlineScam'])
|
231
308
|
end
|
232
309
|
@Platform = params['Platform']
|
310
|
+
unless params['DataAuthorization'].nil?
|
311
|
+
@DataAuthorization = DataAuthorizationInfo.new
|
312
|
+
@DataAuthorization.deserialize(params['DataAuthorization'])
|
313
|
+
end
|
233
314
|
end
|
234
315
|
end
|
235
316
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-rce
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.871
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-07-
|
11
|
+
date: 2024-07-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|