tencentcloud-sdk-python 3.0.1347__py2.py3-none-any.whl → 3.0.1349__py2.py3-none-any.whl
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/__init__.py +1 -1
- tencentcloud/bh/v20230418/models.py +61 -23
- tencentcloud/cam/v20190116/models.py +2 -2
- tencentcloud/captcha/v20190722/models.py +15 -30
- tencentcloud/cbs/v20170312/models.py +0 -4
- tencentcloud/ccc/v20200210/errorcodes.py +3 -0
- tencentcloud/ccc/v20200210/models.py +159 -2
- tencentcloud/cdwdoris/v20211228/models.py +300 -0
- tencentcloud/cdwpg/v20201230/models.py +98 -86
- tencentcloud/chc/v20230418/models.py +0 -30
- tencentcloud/clb/v20180317/models.py +48 -18
- tencentcloud/dbbrain/v20210527/models.py +0 -8
- tencentcloud/dbdc/v20201029/models.py +0 -16
- tencentcloud/dcdb/v20180411/errorcodes.py +3 -0
- tencentcloud/dcdb/v20180411/models.py +0 -64
- tencentcloud/dlc/v20210125/models.py +256 -16
- tencentcloud/emr/v20190103/models.py +15 -54
- tencentcloud/es/v20180416/errorcodes.py +3 -0
- tencentcloud/ess/v20201111/models.py +12 -12
- tencentcloud/essbasic/v20210526/essbasic_client.py +2 -2
- tencentcloud/essbasic/v20210526/models.py +10 -10
- tencentcloud/gs/v20191118/models.py +4 -58
- tencentcloud/hai/v20230812/models.py +0 -96
- tencentcloud/hunyuan/v20230901/models.py +6 -4
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +1 -1
- tencentcloud/iotvideo/v20191126/models.py +0 -4
- tencentcloud/iotvideo/v20201215/models.py +17 -0
- tencentcloud/iotvideo/v20211125/iotvideo_client.py +1 -1
- tencentcloud/iotvideoindustry/v20201201/models.py +0 -30
- tencentcloud/lcic/v20220817/lcic_client.py +1 -1
- tencentcloud/lcic/v20220817/models.py +56 -68
- tencentcloud/live/v20180801/models.py +8 -24
- tencentcloud/lkeap/v20240522/lkeap_client.py +6 -0
- tencentcloud/mariadb/v20170312/models.py +4 -76
- tencentcloud/monitor/v20180724/models.py +95 -14
- tencentcloud/mps/v20190612/models.py +260 -0
- tencentcloud/mqtt/v20240516/models.py +402 -284
- tencentcloud/mqtt/v20240516/mqtt_client.py +2 -2
- tencentcloud/organization/v20210331/models.py +30 -0
- tencentcloud/privatedns/v20201028/models.py +0 -22
- tencentcloud/taf/v20200210/models.py +270 -0
- tencentcloud/taf/v20200210/taf_client.py +23 -0
- tencentcloud/tbaas/v20180416/models.py +0 -58
- tencentcloud/tcb/v20180608/errorcodes.py +3 -0
- tencentcloud/tcr/v20190924/models.py +30 -154
- tencentcloud/tdmq/v20200217/models.py +0 -16
- tencentcloud/thpc/v20230321/models.py +34 -0
- tencentcloud/tke/v20180525/models.py +692 -622
- tencentcloud/tke/v20180525/tke_client.py +23 -0
- tencentcloud/trocket/v20230308/models.py +0 -24
- tencentcloud/tsf/v20180326/models.py +252 -196
- tencentcloud/vcube/v20220410/models.py +51 -158
- tencentcloud/vcube/v20220410/vcube_client.py +2 -2
- tencentcloud/vod/v20180717/errorcodes.py +3 -0
- tencentcloud/vod/v20180717/models.py +28 -260
- tencentcloud/vpc/v20170312/models.py +135 -0
- tencentcloud/wedata/v20210820/models.py +17 -0
- {tencentcloud_sdk_python-3.0.1347.dist-info → tencentcloud_sdk_python-3.0.1349.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1347.dist-info → tencentcloud_sdk_python-3.0.1349.dist-info}/RECORD +62 -62
- {tencentcloud_sdk_python-3.0.1347.dist-info → tencentcloud_sdk_python-3.0.1349.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1347.dist-info → tencentcloud_sdk_python-3.0.1349.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1347.dist-info → tencentcloud_sdk_python-3.0.1349.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -91,19 +91,21 @@ class AccessDevicesRequest(AbstractModel):
|
|
91
91
|
|
92
92
|
def __init__(self):
|
93
93
|
r"""
|
94
|
-
:param
|
95
|
-
:type InstanceId: str
|
96
|
-
:param _Account: 账号
|
94
|
+
:param _Account: 资产的登录账号
|
97
95
|
:type Account: str
|
98
96
|
:param _LoginAccount: 运维端登录账号
|
99
97
|
:type LoginAccount: str
|
100
98
|
:param _LoginPassword: 运维端登录密码
|
101
99
|
:type LoginPassword: str
|
102
|
-
:param
|
100
|
+
:param _DeviceId: 资产ID
|
101
|
+
:type DeviceId: int
|
102
|
+
:param _InstanceId: 资源id(优先使用DeviceId)
|
103
|
+
:type InstanceId: str
|
104
|
+
:param _Password: 未托管密码私钥时,填入
|
103
105
|
:type Password: str
|
104
|
-
:param _PrivateKey:
|
106
|
+
:param _PrivateKey: 未托管密码私钥时,填入
|
105
107
|
:type PrivateKey: str
|
106
|
-
:param _PrivateKeyPassword:
|
108
|
+
:param _PrivateKeyPassword: 未托管密码私钥时,填入
|
107
109
|
:type PrivateKeyPassword: str
|
108
110
|
:param _Exe: 客户端工具
|
109
111
|
:type Exe: str
|
@@ -115,11 +117,14 @@ class AccessDevicesRequest(AbstractModel):
|
|
115
117
|
:type Height: int
|
116
118
|
:param _IntranetAccess: 是否内网访问(默认不是)
|
117
119
|
:type IntranetAccess: bool
|
120
|
+
:param _AutoManageAccessCredential: 是否自动管理访问串,删掉过期的,新建可用的(默认false)
|
121
|
+
:type AutoManageAccessCredential: bool
|
118
122
|
"""
|
119
|
-
self._InstanceId = None
|
120
123
|
self._Account = None
|
121
124
|
self._LoginAccount = None
|
122
125
|
self._LoginPassword = None
|
126
|
+
self._DeviceId = None
|
127
|
+
self._InstanceId = None
|
123
128
|
self._Password = None
|
124
129
|
self._PrivateKey = None
|
125
130
|
self._PrivateKeyPassword = None
|
@@ -128,21 +133,11 @@ class AccessDevicesRequest(AbstractModel):
|
|
128
133
|
self._Width = None
|
129
134
|
self._Height = None
|
130
135
|
self._IntranetAccess = None
|
131
|
-
|
132
|
-
@property
|
133
|
-
def InstanceId(self):
|
134
|
-
"""资源id
|
135
|
-
:rtype: str
|
136
|
-
"""
|
137
|
-
return self._InstanceId
|
138
|
-
|
139
|
-
@InstanceId.setter
|
140
|
-
def InstanceId(self, InstanceId):
|
141
|
-
self._InstanceId = InstanceId
|
136
|
+
self._AutoManageAccessCredential = None
|
142
137
|
|
143
138
|
@property
|
144
139
|
def Account(self):
|
145
|
-
"""
|
140
|
+
"""资产的登录账号
|
146
141
|
:rtype: str
|
147
142
|
"""
|
148
143
|
return self._Account
|
@@ -153,6 +148,8 @@ class AccessDevicesRequest(AbstractModel):
|
|
153
148
|
|
154
149
|
@property
|
155
150
|
def LoginAccount(self):
|
151
|
+
warnings.warn("parameter `LoginAccount` is deprecated", DeprecationWarning)
|
152
|
+
|
156
153
|
"""运维端登录账号
|
157
154
|
:rtype: str
|
158
155
|
"""
|
@@ -160,10 +157,14 @@ class AccessDevicesRequest(AbstractModel):
|
|
160
157
|
|
161
158
|
@LoginAccount.setter
|
162
159
|
def LoginAccount(self, LoginAccount):
|
160
|
+
warnings.warn("parameter `LoginAccount` is deprecated", DeprecationWarning)
|
161
|
+
|
163
162
|
self._LoginAccount = LoginAccount
|
164
163
|
|
165
164
|
@property
|
166
165
|
def LoginPassword(self):
|
166
|
+
warnings.warn("parameter `LoginPassword` is deprecated", DeprecationWarning)
|
167
|
+
|
167
168
|
"""运维端登录密码
|
168
169
|
:rtype: str
|
169
170
|
"""
|
@@ -171,11 +172,35 @@ class AccessDevicesRequest(AbstractModel):
|
|
171
172
|
|
172
173
|
@LoginPassword.setter
|
173
174
|
def LoginPassword(self, LoginPassword):
|
175
|
+
warnings.warn("parameter `LoginPassword` is deprecated", DeprecationWarning)
|
176
|
+
|
174
177
|
self._LoginPassword = LoginPassword
|
175
178
|
|
179
|
+
@property
|
180
|
+
def DeviceId(self):
|
181
|
+
"""资产ID
|
182
|
+
:rtype: int
|
183
|
+
"""
|
184
|
+
return self._DeviceId
|
185
|
+
|
186
|
+
@DeviceId.setter
|
187
|
+
def DeviceId(self, DeviceId):
|
188
|
+
self._DeviceId = DeviceId
|
189
|
+
|
190
|
+
@property
|
191
|
+
def InstanceId(self):
|
192
|
+
"""资源id(优先使用DeviceId)
|
193
|
+
:rtype: str
|
194
|
+
"""
|
195
|
+
return self._InstanceId
|
196
|
+
|
197
|
+
@InstanceId.setter
|
198
|
+
def InstanceId(self, InstanceId):
|
199
|
+
self._InstanceId = InstanceId
|
200
|
+
|
176
201
|
@property
|
177
202
|
def Password(self):
|
178
|
-
"""
|
203
|
+
"""未托管密码私钥时,填入
|
179
204
|
:rtype: str
|
180
205
|
"""
|
181
206
|
return self._Password
|
@@ -186,7 +211,7 @@ class AccessDevicesRequest(AbstractModel):
|
|
186
211
|
|
187
212
|
@property
|
188
213
|
def PrivateKey(self):
|
189
|
-
"""
|
214
|
+
"""未托管密码私钥时,填入
|
190
215
|
:rtype: str
|
191
216
|
"""
|
192
217
|
return self._PrivateKey
|
@@ -197,7 +222,7 @@ class AccessDevicesRequest(AbstractModel):
|
|
197
222
|
|
198
223
|
@property
|
199
224
|
def PrivateKeyPassword(self):
|
200
|
-
"""
|
225
|
+
"""未托管密码私钥时,填入
|
201
226
|
:rtype: str
|
202
227
|
"""
|
203
228
|
return self._PrivateKeyPassword
|
@@ -261,12 +286,24 @@ class AccessDevicesRequest(AbstractModel):
|
|
261
286
|
def IntranetAccess(self, IntranetAccess):
|
262
287
|
self._IntranetAccess = IntranetAccess
|
263
288
|
|
289
|
+
@property
|
290
|
+
def AutoManageAccessCredential(self):
|
291
|
+
"""是否自动管理访问串,删掉过期的,新建可用的(默认false)
|
292
|
+
:rtype: bool
|
293
|
+
"""
|
294
|
+
return self._AutoManageAccessCredential
|
295
|
+
|
296
|
+
@AutoManageAccessCredential.setter
|
297
|
+
def AutoManageAccessCredential(self, AutoManageAccessCredential):
|
298
|
+
self._AutoManageAccessCredential = AutoManageAccessCredential
|
299
|
+
|
264
300
|
|
265
301
|
def _deserialize(self, params):
|
266
|
-
self._InstanceId = params.get("InstanceId")
|
267
302
|
self._Account = params.get("Account")
|
268
303
|
self._LoginAccount = params.get("LoginAccount")
|
269
304
|
self._LoginPassword = params.get("LoginPassword")
|
305
|
+
self._DeviceId = params.get("DeviceId")
|
306
|
+
self._InstanceId = params.get("InstanceId")
|
270
307
|
self._Password = params.get("Password")
|
271
308
|
self._PrivateKey = params.get("PrivateKey")
|
272
309
|
self._PrivateKeyPassword = params.get("PrivateKeyPassword")
|
@@ -275,6 +312,7 @@ class AccessDevicesRequest(AbstractModel):
|
|
275
312
|
self._Width = params.get("Width")
|
276
313
|
self._Height = params.get("Height")
|
277
314
|
self._IntranetAccess = params.get("IntranetAccess")
|
315
|
+
self._AutoManageAccessCredential = params.get("AutoManageAccessCredential")
|
278
316
|
memeber_set = set(params.keys())
|
279
317
|
for name, value in vars(self).items():
|
280
318
|
property_name = name[1:]
|
@@ -2871,7 +2871,7 @@ class CreateUserOIDCConfigRequest(AbstractModel):
|
|
2871
2871
|
:type IdentityKey: str
|
2872
2872
|
:param _Scope: 授权请求Scope。openid; email;profile。授权请求信息范围。默认必选openid。
|
2873
2873
|
:type Scope: list of str
|
2874
|
-
:param _Description:
|
2874
|
+
:param _Description: 描述信息。由用户自行定义。
|
2875
2875
|
:type Description: str
|
2876
2876
|
"""
|
2877
2877
|
self._IdentityUrl = None
|
@@ -2975,7 +2975,7 @@ class CreateUserOIDCConfigRequest(AbstractModel):
|
|
2975
2975
|
|
2976
2976
|
@property
|
2977
2977
|
def Description(self):
|
2978
|
-
"""
|
2978
|
+
"""描述信息。由用户自行定义。
|
2979
2979
|
:rtype: str
|
2980
2980
|
"""
|
2981
2981
|
return self._Description
|
@@ -2895,15 +2895,12 @@ class DescribeCaptchaRceResultResponse(AbstractModel):
|
|
2895
2895
|
100 appid-secretkey-ticket mismatch 参数校验错误,(1)请检查CaptchaAppId与AppSecretKey是否正确,CaptchaAppId、AppSecretKey需要在验证码控制台【验证管理】>【基础配置】中获取(2)请检查传入的Ticket是否由传入的CaptchaAppId生成
|
2896
2896
|
:type CaptchaCode: int
|
2897
2897
|
:param _CaptchaMsg: 状态描述及验证错误信息
|
2898
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2899
2898
|
:type CaptchaMsg: str
|
2900
2899
|
:param _EvilLevel: 无感验证模式下,该参数返回验证结果:
|
2901
2900
|
EvilLevel=0 请求无恶意
|
2902
2901
|
EvilLevel=100 请求有恶意
|
2903
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2904
2902
|
:type EvilLevel: int
|
2905
2903
|
:param _GetCaptchaTime: 前端获取验证码时间,时间戳格式
|
2906
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2907
2904
|
:type GetCaptchaTime: int
|
2908
2905
|
:param _EvilBitmap: 拦截类型
|
2909
2906
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -2911,8 +2908,9 @@ EvilLevel=100 请求有恶意
|
|
2911
2908
|
:param _SubmitCaptchaTime: 提交验证码时间
|
2912
2909
|
:type SubmitCaptchaTime: int
|
2913
2910
|
:param _RceResult: rce检测结果
|
2914
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2915
2911
|
:type RceResult: :class:`tencentcloud.captcha.v20190722.models.RceResult`
|
2912
|
+
:param _DeviceRiskCategory: 设备风险大类
|
2913
|
+
:type DeviceRiskCategory: str
|
2916
2914
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2917
2915
|
:type RequestId: str
|
2918
2916
|
"""
|
@@ -2923,6 +2921,7 @@ EvilLevel=100 请求有恶意
|
|
2923
2921
|
self._EvilBitmap = None
|
2924
2922
|
self._SubmitCaptchaTime = None
|
2925
2923
|
self._RceResult = None
|
2924
|
+
self._DeviceRiskCategory = None
|
2926
2925
|
self._RequestId = None
|
2927
2926
|
|
2928
2927
|
@property
|
@@ -2946,7 +2945,6 @@ EvilLevel=100 请求有恶意
|
|
2946
2945
|
@property
|
2947
2946
|
def CaptchaMsg(self):
|
2948
2947
|
"""状态描述及验证错误信息
|
2949
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2950
2948
|
:rtype: str
|
2951
2949
|
"""
|
2952
2950
|
return self._CaptchaMsg
|
@@ -2960,7 +2958,6 @@ EvilLevel=100 请求有恶意
|
|
2960
2958
|
"""无感验证模式下,该参数返回验证结果:
|
2961
2959
|
EvilLevel=0 请求无恶意
|
2962
2960
|
EvilLevel=100 请求有恶意
|
2963
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2964
2961
|
:rtype: int
|
2965
2962
|
"""
|
2966
2963
|
return self._EvilLevel
|
@@ -2972,7 +2969,6 @@ EvilLevel=100 请求有恶意
|
|
2972
2969
|
@property
|
2973
2970
|
def GetCaptchaTime(self):
|
2974
2971
|
"""前端获取验证码时间,时间戳格式
|
2975
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2976
2972
|
:rtype: int
|
2977
2973
|
"""
|
2978
2974
|
return self._GetCaptchaTime
|
@@ -3007,7 +3003,6 @@ EvilLevel=100 请求有恶意
|
|
3007
3003
|
@property
|
3008
3004
|
def RceResult(self):
|
3009
3005
|
"""rce检测结果
|
3010
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3011
3006
|
:rtype: :class:`tencentcloud.captcha.v20190722.models.RceResult`
|
3012
3007
|
"""
|
3013
3008
|
return self._RceResult
|
@@ -3016,6 +3011,17 @@ EvilLevel=100 请求有恶意
|
|
3016
3011
|
def RceResult(self, RceResult):
|
3017
3012
|
self._RceResult = RceResult
|
3018
3013
|
|
3014
|
+
@property
|
3015
|
+
def DeviceRiskCategory(self):
|
3016
|
+
"""设备风险大类
|
3017
|
+
:rtype: str
|
3018
|
+
"""
|
3019
|
+
return self._DeviceRiskCategory
|
3020
|
+
|
3021
|
+
@DeviceRiskCategory.setter
|
3022
|
+
def DeviceRiskCategory(self, DeviceRiskCategory):
|
3023
|
+
self._DeviceRiskCategory = DeviceRiskCategory
|
3024
|
+
|
3019
3025
|
@property
|
3020
3026
|
def RequestId(self):
|
3021
3027
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -3038,6 +3044,7 @@ EvilLevel=100 请求有恶意
|
|
3038
3044
|
if params.get("RceResult") is not None:
|
3039
3045
|
self._RceResult = RceResult()
|
3040
3046
|
self._RceResult._deserialize(params.get("RceResult"))
|
3047
|
+
self._DeviceRiskCategory = params.get("DeviceRiskCategory")
|
3041
3048
|
self._RequestId = params.get("RequestId")
|
3042
3049
|
|
3043
3050
|
|
@@ -3244,15 +3251,12 @@ class DescribeCaptchaResultResponse(AbstractModel):
|
|
3244
3251
|
100 appid-secretkey-ticket mismatch 参数校验错误,(1)请检查CaptchaAppId与AppSecretKey是否正确,CaptchaAppId、AppSecretKey需要在验证码控制台【验证管理】>【基础配置】中获取(2)请检查传入的Ticket是否由传入的CaptchaAppId生成
|
3245
3252
|
:type CaptchaCode: int
|
3246
3253
|
:param _CaptchaMsg: 状态描述及验证错误信息
|
3247
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3248
3254
|
:type CaptchaMsg: str
|
3249
3255
|
:param _EvilLevel: 无感验证模式下,该参数返回验证结果:
|
3250
3256
|
EvilLevel=0 请求无恶意
|
3251
3257
|
EvilLevel=100 请求有恶意
|
3252
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3253
3258
|
:type EvilLevel: int
|
3254
3259
|
:param _GetCaptchaTime: 前端获取验证码时间,时间戳格式
|
3255
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3256
3260
|
:type GetCaptchaTime: int
|
3257
3261
|
:param _EvilBitmap: 拦截类型
|
3258
3262
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -3295,7 +3299,6 @@ EvilLevel=100 请求有恶意
|
|
3295
3299
|
@property
|
3296
3300
|
def CaptchaMsg(self):
|
3297
3301
|
"""状态描述及验证错误信息
|
3298
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3299
3302
|
:rtype: str
|
3300
3303
|
"""
|
3301
3304
|
return self._CaptchaMsg
|
@@ -3309,7 +3312,6 @@ EvilLevel=100 请求有恶意
|
|
3309
3312
|
"""无感验证模式下,该参数返回验证结果:
|
3310
3313
|
EvilLevel=0 请求无恶意
|
3311
3314
|
EvilLevel=100 请求有恶意
|
3312
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3313
3315
|
:rtype: int
|
3314
3316
|
"""
|
3315
3317
|
return self._EvilLevel
|
@@ -3321,7 +3323,6 @@ EvilLevel=100 请求有恶意
|
|
3321
3323
|
@property
|
3322
3324
|
def GetCaptchaTime(self):
|
3323
3325
|
"""前端获取验证码时间,时间戳格式
|
3324
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3325
3326
|
:rtype: int
|
3326
3327
|
"""
|
3327
3328
|
return self._GetCaptchaTime
|
@@ -4483,28 +4484,20 @@ class RceResult(AbstractModel):
|
|
4483
4484
|
def __init__(self):
|
4484
4485
|
r"""
|
4485
4486
|
:param _UserId: 用户ID
|
4486
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4487
4487
|
:type UserId: str
|
4488
4488
|
:param _PostTime: 操作时间戳
|
4489
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4490
4489
|
:type PostTime: int
|
4491
4490
|
:param _AssociateAccount: 业务参数
|
4492
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4493
4491
|
:type AssociateAccount: str
|
4494
4492
|
:param _UserIp: 用户Ip
|
4495
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4496
4493
|
:type UserIp: str
|
4497
4494
|
:param _RiskLevel: 风险等级
|
4498
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4499
4495
|
:type RiskLevel: str
|
4500
4496
|
:param _RiskType: 风险类型
|
4501
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4502
4497
|
:type RiskType: list of int
|
4503
4498
|
:param _ConstId: 设备唯一ID
|
4504
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4505
4499
|
:type ConstId: str
|
4506
4500
|
:param _RiskInformation: 风险扩展参数
|
4507
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4508
4501
|
:type RiskInformation: str
|
4509
4502
|
"""
|
4510
4503
|
self._UserId = None
|
@@ -4519,7 +4512,6 @@ class RceResult(AbstractModel):
|
|
4519
4512
|
@property
|
4520
4513
|
def UserId(self):
|
4521
4514
|
"""用户ID
|
4522
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4523
4515
|
:rtype: str
|
4524
4516
|
"""
|
4525
4517
|
return self._UserId
|
@@ -4531,7 +4523,6 @@ class RceResult(AbstractModel):
|
|
4531
4523
|
@property
|
4532
4524
|
def PostTime(self):
|
4533
4525
|
"""操作时间戳
|
4534
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4535
4526
|
:rtype: int
|
4536
4527
|
"""
|
4537
4528
|
return self._PostTime
|
@@ -4543,7 +4534,6 @@ class RceResult(AbstractModel):
|
|
4543
4534
|
@property
|
4544
4535
|
def AssociateAccount(self):
|
4545
4536
|
"""业务参数
|
4546
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4547
4537
|
:rtype: str
|
4548
4538
|
"""
|
4549
4539
|
return self._AssociateAccount
|
@@ -4555,7 +4545,6 @@ class RceResult(AbstractModel):
|
|
4555
4545
|
@property
|
4556
4546
|
def UserIp(self):
|
4557
4547
|
"""用户Ip
|
4558
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4559
4548
|
:rtype: str
|
4560
4549
|
"""
|
4561
4550
|
return self._UserIp
|
@@ -4567,7 +4556,6 @@ class RceResult(AbstractModel):
|
|
4567
4556
|
@property
|
4568
4557
|
def RiskLevel(self):
|
4569
4558
|
"""风险等级
|
4570
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4571
4559
|
:rtype: str
|
4572
4560
|
"""
|
4573
4561
|
return self._RiskLevel
|
@@ -4579,7 +4567,6 @@ class RceResult(AbstractModel):
|
|
4579
4567
|
@property
|
4580
4568
|
def RiskType(self):
|
4581
4569
|
"""风险类型
|
4582
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4583
4570
|
:rtype: list of int
|
4584
4571
|
"""
|
4585
4572
|
return self._RiskType
|
@@ -4591,7 +4578,6 @@ class RceResult(AbstractModel):
|
|
4591
4578
|
@property
|
4592
4579
|
def ConstId(self):
|
4593
4580
|
"""设备唯一ID
|
4594
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4595
4581
|
:rtype: str
|
4596
4582
|
"""
|
4597
4583
|
return self._ConstId
|
@@ -4603,7 +4589,6 @@ class RceResult(AbstractModel):
|
|
4603
4589
|
@property
|
4604
4590
|
def RiskInformation(self):
|
4605
4591
|
"""风险扩展参数
|
4606
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4607
4592
|
:rtype: str
|
4608
4593
|
"""
|
4609
4594
|
return self._RiskInformation
|
@@ -4344,7 +4344,6 @@ class DetailPrice(AbstractModel):
|
|
4344
4344
|
def __init__(self):
|
4345
4345
|
r"""
|
4346
4346
|
:param _PriceTitle: 描述计费项目名称。
|
4347
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4348
4347
|
:type PriceTitle: str
|
4349
4348
|
:param _PriceName: 描述计费项目显示名称,用户控制台展示。
|
4350
4349
|
:type PriceName: str
|
@@ -4391,7 +4390,6 @@ class DetailPrice(AbstractModel):
|
|
4391
4390
|
@property
|
4392
4391
|
def PriceTitle(self):
|
4393
4392
|
"""描述计费项目名称。
|
4394
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4395
4393
|
:rtype: str
|
4396
4394
|
"""
|
4397
4395
|
return self._PriceTitle
|
@@ -7665,7 +7663,6 @@ class PrepayPrice(AbstractModel):
|
|
7665
7663
|
注意:此字段可能返回 null,表示取不到有效值。
|
7666
7664
|
:type UnitPrice: float
|
7667
7665
|
:param _DetailPrices: 计费项目明细列表。
|
7668
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7669
7666
|
:type DetailPrices: list of DetailPrice
|
7670
7667
|
"""
|
7671
7668
|
self._DiscountPrice = None
|
@@ -7790,7 +7787,6 @@ class PrepayPrice(AbstractModel):
|
|
7790
7787
|
@property
|
7791
7788
|
def DetailPrices(self):
|
7792
7789
|
"""计费项目明细列表。
|
7793
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7794
7790
|
:rtype: list of DetailPrice
|
7795
7791
|
"""
|
7796
7792
|
return self._DetailPrices
|
@@ -128,6 +128,9 @@ INVALIDPARAMETERVALUE_COMPANYEXIST = 'InvalidParameterValue.CompanyExist'
|
|
128
128
|
# 审核单状态错误。
|
129
129
|
INVALIDPARAMETERVALUE_ERRORAPPLYSTATUS = 'InvalidParameterValue.ErrorApplyStatus'
|
130
130
|
|
131
|
+
# 使用体验账号的智能体不支持此类操作
|
132
|
+
INVALIDPARAMETERVALUE_EXPERIENCEACCOUNT = 'InvalidParameterValue.ExperienceAccount'
|
133
|
+
|
131
134
|
# 实例不存在。
|
132
135
|
INVALIDPARAMETERVALUE_INSTANCENOTEXIST = 'InvalidParameterValue.InstanceNotExist'
|
133
136
|
|