tencentcloud-sdk-python 3.0.1165__py2.py3-none-any.whl → 3.0.1166__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/billing/v20180709/models.py +2 -2
- tencentcloud/cam/v20190116/cam_client.py +23 -0
- tencentcloud/cam/v20190116/errorcodes.py +12 -0
- tencentcloud/cam/v20190116/models.py +197 -0
- tencentcloud/cat/v20180409/models.py +13 -0
- tencentcloud/cds/v20180420/cds_client.py +3 -1
- tencentcloud/cls/v20201016/models.py +25 -0
- tencentcloud/essbasic/v20210526/essbasic_client.py +4 -4
- tencentcloud/mongodb/v20190725/models.py +487 -0
- tencentcloud/mongodb/v20190725/mongodb_client.py +92 -0
- tencentcloud/trtc/v20190722/models.py +1 -1
- {tencentcloud_sdk_python-3.0.1165.dist-info → tencentcloud_sdk_python-3.0.1166.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1165.dist-info → tencentcloud_sdk_python-3.0.1166.dist-info}/RECORD +17 -17
- {tencentcloud_sdk_python-3.0.1165.dist-info → tencentcloud_sdk_python-3.0.1166.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1165.dist-info → tencentcloud_sdk_python-3.0.1166.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1165.dist-info → tencentcloud_sdk_python-3.0.1166.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -12095,7 +12095,7 @@ class DescribeAllocationOverviewRequest(AbstractModel):
|
|
12095
12095
|
r"""
|
12096
12096
|
:param _Limit: 数量,最大值为1000
|
12097
12097
|
:type Limit: int
|
12098
|
-
:param _Offset: 分页偏移量,Offset=0表示第一页,如果Limit=100,则Offset=100表示第二页,Offset=200
|
12098
|
+
:param _Offset: 分页偏移量,Offset=0表示第一页,如果Limit=100,则Offset=100表示第二页,Offset=200表示第三页,以此类推
|
12099
12099
|
:type Offset: int
|
12100
12100
|
:param _Month: 账单月份,格式为2024-02,不传默认当前月
|
12101
12101
|
:type Month: str
|
@@ -12303,7 +12303,7 @@ class DescribeAllocationSummaryByBusinessRequest(AbstractModel):
|
|
12303
12303
|
r"""
|
12304
12304
|
:param _Limit: 数量,最大值为1000
|
12305
12305
|
:type Limit: int
|
12306
|
-
:param _Offset: 分页偏移量,Offset=0表示第一页,如果Limit=100,则Offset=100表示第二页,Offset=200
|
12306
|
+
:param _Offset: 分页偏移量,Offset=0表示第一页,如果Limit=100,则Offset=100表示第二页,Offset=200表示第三页,以此类推
|
12307
12307
|
:type Offset: int
|
12308
12308
|
:param _Month: 账单月份,格式为2024-02,不传默认当前月
|
12309
12309
|
|
@@ -141,6 +141,29 @@ class CamClient(AbstractClient):
|
|
141
141
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
142
142
|
|
143
143
|
|
144
|
+
def BuildDataFlowAuthToken(self, request):
|
145
|
+
"""获取数据流认证Token
|
146
|
+
|
147
|
+
:param request: Request instance for BuildDataFlowAuthToken.
|
148
|
+
:type request: :class:`tencentcloud.cam.v20190116.models.BuildDataFlowAuthTokenRequest`
|
149
|
+
:rtype: :class:`tencentcloud.cam.v20190116.models.BuildDataFlowAuthTokenResponse`
|
150
|
+
|
151
|
+
"""
|
152
|
+
try:
|
153
|
+
params = request._serialize()
|
154
|
+
headers = request.headers
|
155
|
+
body = self.call("BuildDataFlowAuthToken", params, headers=headers)
|
156
|
+
response = json.loads(body)
|
157
|
+
model = models.BuildDataFlowAuthTokenResponse()
|
158
|
+
model._deserialize(response["Response"])
|
159
|
+
return model
|
160
|
+
except Exception as e:
|
161
|
+
if isinstance(e, TencentCloudSDKException):
|
162
|
+
raise
|
163
|
+
else:
|
164
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
165
|
+
|
166
|
+
|
144
167
|
def ConsumeCustomMFAToken(self, request):
|
145
168
|
"""验证自定义多因子Token
|
146
169
|
|
@@ -23,6 +23,12 @@ FAILEDOPERATION = 'FailedOperation'
|
|
23
23
|
# 操作访问密钥错误。
|
24
24
|
FAILEDOPERATION_ACCESSKEY = 'FailedOperation.Accesskey'
|
25
25
|
|
26
|
+
# 生成AuthToken异常。
|
27
|
+
FAILEDOPERATION_BUILDAUTHTOKEN = 'FailedOperation.BuildAuthToken'
|
28
|
+
|
29
|
+
# 凭据操作失败。
|
30
|
+
FAILEDOPERATION_FLOWAUTHILLEGAL = 'FailedOperation.FlowAuthIllegal'
|
31
|
+
|
26
32
|
# 集团策略不允许操作。
|
27
33
|
FAILEDOPERATION_ORGANIZATIONPOLICYOPERATEERROR = 'FailedOperation.OrganizationPolicyOperateError'
|
28
34
|
|
@@ -302,6 +308,9 @@ REQUESTLIMITEXCEEDED_CREATEUSER = 'RequestLimitExceeded.CreateUser'
|
|
302
308
|
# 用户账号超出了限制。
|
303
309
|
REQUESTLIMITEXCEEDED_UINLIMITEXCEEDED = 'RequestLimitExceeded.UinLimitExceeded'
|
304
310
|
|
311
|
+
# 未开启CAM数据流认证。
|
312
|
+
RESOURCENOTFOUND_DATAFLOWAUTHCLOSE = 'ResourceNotFound.DataFlowAuthClose'
|
313
|
+
|
305
314
|
# 用户组不存在。
|
306
315
|
RESOURCENOTFOUND_GROUPNOTEXIST = 'ResourceNotFound.GroupNotExist'
|
307
316
|
|
@@ -320,6 +329,9 @@ RESOURCENOTFOUND_SECRETNOTEXIST = 'ResourceNotFound.SecretNotExist'
|
|
320
329
|
# 用户不存在。
|
321
330
|
RESOURCENOTFOUND_USERNOTEXIST = 'ResourceNotFound.UserNotExist'
|
322
331
|
|
332
|
+
# 凭据信息异常。
|
333
|
+
RESOURCEUNAVAILABLE_FLOWAUTHSECET = 'ResourceUnavailable.FlowAuthSecet'
|
334
|
+
|
323
335
|
# 未授权操作。
|
324
336
|
UNAUTHORIZEDOPERATION = 'UnauthorizedOperation'
|
325
337
|
|
@@ -1217,6 +1217,203 @@ class AttachedUserPolicyGroupInfo(AbstractModel):
|
|
1217
1217
|
|
1218
1218
|
|
1219
1219
|
|
1220
|
+
class AuthToken(AbstractModel):
|
1221
|
+
"""认证凭据Token
|
1222
|
+
|
1223
|
+
"""
|
1224
|
+
|
1225
|
+
def __init__(self):
|
1226
|
+
r"""
|
1227
|
+
:param _Token: 认证Token
|
1228
|
+
:type Token: str
|
1229
|
+
:param _CurrentTime: 服务器时间戳
|
1230
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1231
|
+
:type CurrentTime: int
|
1232
|
+
:param _NextRotationTime: 毫秒时间戳,根据轮转周期准确计算得到
|
1233
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1234
|
+
:type NextRotationTime: int
|
1235
|
+
:param _LastRotationTimeCost: 毫秒,如果轮转失败则为 -1
|
1236
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1237
|
+
:type LastRotationTimeCost: int
|
1238
|
+
:param _RotationStatus: 成功:success
|
1239
|
+
失败:failed
|
1240
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1241
|
+
:type RotationStatus: str
|
1242
|
+
:param _RotationMessage: 成功:success
|
1243
|
+
失败:失败信息
|
1244
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1245
|
+
:type RotationMessage: str
|
1246
|
+
"""
|
1247
|
+
self._Token = None
|
1248
|
+
self._CurrentTime = None
|
1249
|
+
self._NextRotationTime = None
|
1250
|
+
self._LastRotationTimeCost = None
|
1251
|
+
self._RotationStatus = None
|
1252
|
+
self._RotationMessage = None
|
1253
|
+
|
1254
|
+
@property
|
1255
|
+
def Token(self):
|
1256
|
+
return self._Token
|
1257
|
+
|
1258
|
+
@Token.setter
|
1259
|
+
def Token(self, Token):
|
1260
|
+
self._Token = Token
|
1261
|
+
|
1262
|
+
@property
|
1263
|
+
def CurrentTime(self):
|
1264
|
+
return self._CurrentTime
|
1265
|
+
|
1266
|
+
@CurrentTime.setter
|
1267
|
+
def CurrentTime(self, CurrentTime):
|
1268
|
+
self._CurrentTime = CurrentTime
|
1269
|
+
|
1270
|
+
@property
|
1271
|
+
def NextRotationTime(self):
|
1272
|
+
return self._NextRotationTime
|
1273
|
+
|
1274
|
+
@NextRotationTime.setter
|
1275
|
+
def NextRotationTime(self, NextRotationTime):
|
1276
|
+
self._NextRotationTime = NextRotationTime
|
1277
|
+
|
1278
|
+
@property
|
1279
|
+
def LastRotationTimeCost(self):
|
1280
|
+
return self._LastRotationTimeCost
|
1281
|
+
|
1282
|
+
@LastRotationTimeCost.setter
|
1283
|
+
def LastRotationTimeCost(self, LastRotationTimeCost):
|
1284
|
+
self._LastRotationTimeCost = LastRotationTimeCost
|
1285
|
+
|
1286
|
+
@property
|
1287
|
+
def RotationStatus(self):
|
1288
|
+
return self._RotationStatus
|
1289
|
+
|
1290
|
+
@RotationStatus.setter
|
1291
|
+
def RotationStatus(self, RotationStatus):
|
1292
|
+
self._RotationStatus = RotationStatus
|
1293
|
+
|
1294
|
+
@property
|
1295
|
+
def RotationMessage(self):
|
1296
|
+
return self._RotationMessage
|
1297
|
+
|
1298
|
+
@RotationMessage.setter
|
1299
|
+
def RotationMessage(self, RotationMessage):
|
1300
|
+
self._RotationMessage = RotationMessage
|
1301
|
+
|
1302
|
+
|
1303
|
+
def _deserialize(self, params):
|
1304
|
+
self._Token = params.get("Token")
|
1305
|
+
self._CurrentTime = params.get("CurrentTime")
|
1306
|
+
self._NextRotationTime = params.get("NextRotationTime")
|
1307
|
+
self._LastRotationTimeCost = params.get("LastRotationTimeCost")
|
1308
|
+
self._RotationStatus = params.get("RotationStatus")
|
1309
|
+
self._RotationMessage = params.get("RotationMessage")
|
1310
|
+
memeber_set = set(params.keys())
|
1311
|
+
for name, value in vars(self).items():
|
1312
|
+
property_name = name[1:]
|
1313
|
+
if property_name in memeber_set:
|
1314
|
+
memeber_set.remove(property_name)
|
1315
|
+
if len(memeber_set) > 0:
|
1316
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
1317
|
+
|
1318
|
+
|
1319
|
+
|
1320
|
+
class BuildDataFlowAuthTokenRequest(AbstractModel):
|
1321
|
+
"""BuildDataFlowAuthToken请求参数结构体
|
1322
|
+
|
1323
|
+
"""
|
1324
|
+
|
1325
|
+
def __init__(self):
|
1326
|
+
r"""
|
1327
|
+
:param _ResourceId: 资源ID
|
1328
|
+
:type ResourceId: str
|
1329
|
+
:param _ResourceRegion: 资源地域
|
1330
|
+
:type ResourceRegion: str
|
1331
|
+
:param _ResourceAccount: 资源用户名
|
1332
|
+
:type ResourceAccount: str
|
1333
|
+
"""
|
1334
|
+
self._ResourceId = None
|
1335
|
+
self._ResourceRegion = None
|
1336
|
+
self._ResourceAccount = None
|
1337
|
+
|
1338
|
+
@property
|
1339
|
+
def ResourceId(self):
|
1340
|
+
return self._ResourceId
|
1341
|
+
|
1342
|
+
@ResourceId.setter
|
1343
|
+
def ResourceId(self, ResourceId):
|
1344
|
+
self._ResourceId = ResourceId
|
1345
|
+
|
1346
|
+
@property
|
1347
|
+
def ResourceRegion(self):
|
1348
|
+
return self._ResourceRegion
|
1349
|
+
|
1350
|
+
@ResourceRegion.setter
|
1351
|
+
def ResourceRegion(self, ResourceRegion):
|
1352
|
+
self._ResourceRegion = ResourceRegion
|
1353
|
+
|
1354
|
+
@property
|
1355
|
+
def ResourceAccount(self):
|
1356
|
+
return self._ResourceAccount
|
1357
|
+
|
1358
|
+
@ResourceAccount.setter
|
1359
|
+
def ResourceAccount(self, ResourceAccount):
|
1360
|
+
self._ResourceAccount = ResourceAccount
|
1361
|
+
|
1362
|
+
|
1363
|
+
def _deserialize(self, params):
|
1364
|
+
self._ResourceId = params.get("ResourceId")
|
1365
|
+
self._ResourceRegion = params.get("ResourceRegion")
|
1366
|
+
self._ResourceAccount = params.get("ResourceAccount")
|
1367
|
+
memeber_set = set(params.keys())
|
1368
|
+
for name, value in vars(self).items():
|
1369
|
+
property_name = name[1:]
|
1370
|
+
if property_name in memeber_set:
|
1371
|
+
memeber_set.remove(property_name)
|
1372
|
+
if len(memeber_set) > 0:
|
1373
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
1374
|
+
|
1375
|
+
|
1376
|
+
|
1377
|
+
class BuildDataFlowAuthTokenResponse(AbstractModel):
|
1378
|
+
"""BuildDataFlowAuthToken返回参数结构体
|
1379
|
+
|
1380
|
+
"""
|
1381
|
+
|
1382
|
+
def __init__(self):
|
1383
|
+
r"""
|
1384
|
+
:param _Credentials: 认证凭据AuthToken信息
|
1385
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1386
|
+
:type Credentials: :class:`tencentcloud.cam.v20190116.models.AuthToken`
|
1387
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1388
|
+
:type RequestId: str
|
1389
|
+
"""
|
1390
|
+
self._Credentials = None
|
1391
|
+
self._RequestId = None
|
1392
|
+
|
1393
|
+
@property
|
1394
|
+
def Credentials(self):
|
1395
|
+
return self._Credentials
|
1396
|
+
|
1397
|
+
@Credentials.setter
|
1398
|
+
def Credentials(self, Credentials):
|
1399
|
+
self._Credentials = Credentials
|
1400
|
+
|
1401
|
+
@property
|
1402
|
+
def RequestId(self):
|
1403
|
+
return self._RequestId
|
1404
|
+
|
1405
|
+
@RequestId.setter
|
1406
|
+
def RequestId(self, RequestId):
|
1407
|
+
self._RequestId = RequestId
|
1408
|
+
|
1409
|
+
|
1410
|
+
def _deserialize(self, params):
|
1411
|
+
if params.get("Credentials") is not None:
|
1412
|
+
self._Credentials = AuthToken()
|
1413
|
+
self._Credentials._deserialize(params.get("Credentials"))
|
1414
|
+
self._RequestId = params.get("RequestId")
|
1415
|
+
|
1416
|
+
|
1220
1417
|
class ConsumeCustomMFATokenRequest(AbstractModel):
|
1221
1418
|
"""ConsumeCustomMFAToken请求参数结构体
|
1222
1419
|
|
@@ -2006,6 +2006,9 @@ class ProbeTask(AbstractModel):
|
|
2006
2006
|
:param _TagInfoList: 任务当前绑定的标签
|
2007
2007
|
注意:此字段可能返回 null,表示取不到有效值。
|
2008
2008
|
:type TagInfoList: list of KeyValuePair
|
2009
|
+
:param _SubSyncFlag: 是否为同步账号
|
2010
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2011
|
+
:type SubSyncFlag: int
|
2009
2012
|
"""
|
2010
2013
|
self._Name = None
|
2011
2014
|
self._TaskId = None
|
@@ -2023,6 +2026,7 @@ class ProbeTask(AbstractModel):
|
|
2023
2026
|
self._Cron = None
|
2024
2027
|
self._CronState = None
|
2025
2028
|
self._TagInfoList = None
|
2029
|
+
self._SubSyncFlag = None
|
2026
2030
|
|
2027
2031
|
@property
|
2028
2032
|
def Name(self):
|
@@ -2152,6 +2156,14 @@ class ProbeTask(AbstractModel):
|
|
2152
2156
|
def TagInfoList(self, TagInfoList):
|
2153
2157
|
self._TagInfoList = TagInfoList
|
2154
2158
|
|
2159
|
+
@property
|
2160
|
+
def SubSyncFlag(self):
|
2161
|
+
return self._SubSyncFlag
|
2162
|
+
|
2163
|
+
@SubSyncFlag.setter
|
2164
|
+
def SubSyncFlag(self, SubSyncFlag):
|
2165
|
+
self._SubSyncFlag = SubSyncFlag
|
2166
|
+
|
2155
2167
|
|
2156
2168
|
def _deserialize(self, params):
|
2157
2169
|
self._Name = params.get("Name")
|
@@ -2175,6 +2187,7 @@ class ProbeTask(AbstractModel):
|
|
2175
2187
|
obj = KeyValuePair()
|
2176
2188
|
obj._deserialize(item)
|
2177
2189
|
self._TagInfoList.append(obj)
|
2190
|
+
self._SubSyncFlag = params.get("SubSyncFlag")
|
2178
2191
|
memeber_set = set(params.keys())
|
2179
2192
|
for name, value in vars(self).items():
|
2180
2193
|
property_name = name[1:]
|
@@ -27,7 +27,9 @@ class CdsClient(AbstractClient):
|
|
27
27
|
|
28
28
|
|
29
29
|
def DescribeDasbImageIds(self, request):
|
30
|
-
"""
|
30
|
+
"""这些接口是传统版堡垒机接口.数审未用到,堡垒机的已全部迁移到dasb下,cds这边预下线
|
31
|
+
|
32
|
+
获取镜像列表
|
31
33
|
|
32
34
|
:param request: Request instance for DescribeDasbImageIds.
|
33
35
|
:type request: :class:`tencentcloud.cds.v20180420.models.DescribeDasbImageIdsRequest`
|
@@ -5147,6 +5147,8 @@ class CreateExportRequest(AbstractModel):
|
|
5147
5147
|
:param _SyntaxRule: 语法规则, 默认值为0。
|
5148
5148
|
0:Lucene语法,1:CQL语法。
|
5149
5149
|
:type SyntaxRule: int
|
5150
|
+
:param _DerivedFields: 导出字段
|
5151
|
+
:type DerivedFields: list of str
|
5150
5152
|
"""
|
5151
5153
|
self._TopicId = None
|
5152
5154
|
self._Count = None
|
@@ -5156,6 +5158,7 @@ class CreateExportRequest(AbstractModel):
|
|
5156
5158
|
self._Order = None
|
5157
5159
|
self._Format = None
|
5158
5160
|
self._SyntaxRule = None
|
5161
|
+
self._DerivedFields = None
|
5159
5162
|
|
5160
5163
|
@property
|
5161
5164
|
def TopicId(self):
|
@@ -5221,6 +5224,14 @@ class CreateExportRequest(AbstractModel):
|
|
5221
5224
|
def SyntaxRule(self, SyntaxRule):
|
5222
5225
|
self._SyntaxRule = SyntaxRule
|
5223
5226
|
|
5227
|
+
@property
|
5228
|
+
def DerivedFields(self):
|
5229
|
+
return self._DerivedFields
|
5230
|
+
|
5231
|
+
@DerivedFields.setter
|
5232
|
+
def DerivedFields(self, DerivedFields):
|
5233
|
+
self._DerivedFields = DerivedFields
|
5234
|
+
|
5224
5235
|
|
5225
5236
|
def _deserialize(self, params):
|
5226
5237
|
self._TopicId = params.get("TopicId")
|
@@ -5231,6 +5242,7 @@ class CreateExportRequest(AbstractModel):
|
|
5231
5242
|
self._Order = params.get("Order")
|
5232
5243
|
self._Format = params.get("Format")
|
5233
5244
|
self._SyntaxRule = params.get("SyntaxRule")
|
5245
|
+
self._DerivedFields = params.get("DerivedFields")
|
5234
5246
|
memeber_set = set(params.keys())
|
5235
5247
|
for name, value in vars(self).items():
|
5236
5248
|
property_name = name[1:]
|
@@ -11931,6 +11943,9 @@ class ExportInfo(AbstractModel):
|
|
11931
11943
|
:param _SyntaxRule: 语法规则。 默认值为0。
|
11932
11944
|
0:Lucene语法,1:CQL语法。
|
11933
11945
|
:type SyntaxRule: int
|
11946
|
+
:param _DerivedFields: 导出字段
|
11947
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
11948
|
+
:type DerivedFields: list of str
|
11934
11949
|
"""
|
11935
11950
|
self._TopicId = None
|
11936
11951
|
self._ExportId = None
|
@@ -11946,6 +11961,7 @@ class ExportInfo(AbstractModel):
|
|
11946
11961
|
self._CosPath = None
|
11947
11962
|
self._CreateTime = None
|
11948
11963
|
self._SyntaxRule = None
|
11964
|
+
self._DerivedFields = None
|
11949
11965
|
|
11950
11966
|
@property
|
11951
11967
|
def TopicId(self):
|
@@ -12059,6 +12075,14 @@ class ExportInfo(AbstractModel):
|
|
12059
12075
|
def SyntaxRule(self, SyntaxRule):
|
12060
12076
|
self._SyntaxRule = SyntaxRule
|
12061
12077
|
|
12078
|
+
@property
|
12079
|
+
def DerivedFields(self):
|
12080
|
+
return self._DerivedFields
|
12081
|
+
|
12082
|
+
@DerivedFields.setter
|
12083
|
+
def DerivedFields(self, DerivedFields):
|
12084
|
+
self._DerivedFields = DerivedFields
|
12085
|
+
|
12062
12086
|
|
12063
12087
|
def _deserialize(self, params):
|
12064
12088
|
self._TopicId = params.get("TopicId")
|
@@ -12075,6 +12099,7 @@ class ExportInfo(AbstractModel):
|
|
12075
12099
|
self._CosPath = params.get("CosPath")
|
12076
12100
|
self._CreateTime = params.get("CreateTime")
|
12077
12101
|
self._SyntaxRule = params.get("SyntaxRule")
|
12102
|
+
self._DerivedFields = params.get("DerivedFields")
|
12078
12103
|
memeber_set = set(params.keys())
|
12079
12104
|
for name, value in vars(self).items():
|
12080
12105
|
property_name = name[1:]
|
@@ -1637,7 +1637,6 @@ class EssbasicClient(AbstractClient):
|
|
1637
1637
|
<th>子客企业状态</th>
|
1638
1638
|
<th>子客企业员工状态</th>
|
1639
1639
|
<th>点击链接进入的流程</th>
|
1640
|
-
<th>视频样例</th>
|
1641
1640
|
</tr>
|
1642
1641
|
</thead>
|
1643
1642
|
<tbody>
|
@@ -1645,19 +1644,16 @@ class EssbasicClient(AbstractClient):
|
|
1645
1644
|
<td>企业未激活</td>
|
1646
1645
|
<td>员工未认证</td>
|
1647
1646
|
<td>进入企业激活流程,首次完成企业激活流程的员工会成为超管</td>
|
1648
|
-
<td><a href="https://dyn.ess.tencent.cn/guide/apivideo/CreateConsoleLoginUrl_noverify.mp4" target="_blank">打开</a></td>
|
1649
1647
|
</tr>
|
1650
1648
|
<tr>
|
1651
1649
|
<td>企业已激活</td>
|
1652
1650
|
<td>员工未认证</td>
|
1653
1651
|
<td>进入员认证并加入企业流程</td>
|
1654
|
-
<td>-</td>
|
1655
1652
|
</tr>
|
1656
1653
|
<tr>
|
1657
1654
|
<td>企业已激活</td>
|
1658
1655
|
<td>员工已认证</td>
|
1659
1656
|
<td>进入子客企业Web控制台</td>
|
1660
|
-
<td>-</td>
|
1661
1657
|
</tr>
|
1662
1658
|
</tbody>
|
1663
1659
|
</table>
|
@@ -1669,6 +1665,10 @@ class EssbasicClient(AbstractClient):
|
|
1669
1665
|
系统的渠道企业, 应用, 子客企业, 子客员工的组织形式
|
1670
1666
|

|
1671
1667
|
|
1668
|
+
|
1669
|
+
<font color="red">相关视频指引</font> <br>
|
1670
|
+
1. <a href="https://dyn.ess.tencent.cn/guide/apivideo/essbasic-createconsoleloginin.mp4" target="_blank">【生成子客登录链接】代码编写 & 子企业认证示例</a><br>
|
1671
|
+
|
1672
1672
|
:param request: Request instance for CreateConsoleLoginUrl.
|
1673
1673
|
:type request: :class:`tencentcloud.essbasic.v20210526.models.CreateConsoleLoginUrlRequest`
|
1674
1674
|
:rtype: :class:`tencentcloud.essbasic.v20210526.models.CreateConsoleLoginUrlResponse`
|
@@ -2433,6 +2433,102 @@ class DescribeBackupDownloadTaskResponse(AbstractModel):
|
|
2433
2433
|
self._RequestId = params.get("RequestId")
|
2434
2434
|
|
2435
2435
|
|
2436
|
+
class DescribeBackupRulesRequest(AbstractModel):
|
2437
|
+
"""DescribeBackupRules请求参数结构体
|
2438
|
+
|
2439
|
+
"""
|
2440
|
+
|
2441
|
+
def __init__(self):
|
2442
|
+
r"""
|
2443
|
+
:param _InstanceId: 指定实例ID。例如:cmgo-p8vn****。请登录 [MongoDB 控制台](https://console.cloud.tencent.com/mongodb)在实例列表复制实例 ID。
|
2444
|
+
:type InstanceId: str
|
2445
|
+
"""
|
2446
|
+
self._InstanceId = None
|
2447
|
+
|
2448
|
+
@property
|
2449
|
+
def InstanceId(self):
|
2450
|
+
return self._InstanceId
|
2451
|
+
|
2452
|
+
@InstanceId.setter
|
2453
|
+
def InstanceId(self, InstanceId):
|
2454
|
+
self._InstanceId = InstanceId
|
2455
|
+
|
2456
|
+
|
2457
|
+
def _deserialize(self, params):
|
2458
|
+
self._InstanceId = params.get("InstanceId")
|
2459
|
+
memeber_set = set(params.keys())
|
2460
|
+
for name, value in vars(self).items():
|
2461
|
+
property_name = name[1:]
|
2462
|
+
if property_name in memeber_set:
|
2463
|
+
memeber_set.remove(property_name)
|
2464
|
+
if len(memeber_set) > 0:
|
2465
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
2466
|
+
|
2467
|
+
|
2468
|
+
|
2469
|
+
class DescribeBackupRulesResponse(AbstractModel):
|
2470
|
+
"""DescribeBackupRules返回参数结构体
|
2471
|
+
|
2472
|
+
"""
|
2473
|
+
|
2474
|
+
def __init__(self):
|
2475
|
+
r"""
|
2476
|
+
:param _BackupSaveTime: 备份数据保留期限。单位为:天。
|
2477
|
+
:type BackupSaveTime: int
|
2478
|
+
:param _BackupTime: 自动备份开始时间。
|
2479
|
+
:type BackupTime: int
|
2480
|
+
:param _BackupMethod: 备份方式。
|
2481
|
+
- 0:逻辑备份。
|
2482
|
+
- 1:物理备份。
|
2483
|
+
:type BackupMethod: int
|
2484
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2485
|
+
:type RequestId: str
|
2486
|
+
"""
|
2487
|
+
self._BackupSaveTime = None
|
2488
|
+
self._BackupTime = None
|
2489
|
+
self._BackupMethod = None
|
2490
|
+
self._RequestId = None
|
2491
|
+
|
2492
|
+
@property
|
2493
|
+
def BackupSaveTime(self):
|
2494
|
+
return self._BackupSaveTime
|
2495
|
+
|
2496
|
+
@BackupSaveTime.setter
|
2497
|
+
def BackupSaveTime(self, BackupSaveTime):
|
2498
|
+
self._BackupSaveTime = BackupSaveTime
|
2499
|
+
|
2500
|
+
@property
|
2501
|
+
def BackupTime(self):
|
2502
|
+
return self._BackupTime
|
2503
|
+
|
2504
|
+
@BackupTime.setter
|
2505
|
+
def BackupTime(self, BackupTime):
|
2506
|
+
self._BackupTime = BackupTime
|
2507
|
+
|
2508
|
+
@property
|
2509
|
+
def BackupMethod(self):
|
2510
|
+
return self._BackupMethod
|
2511
|
+
|
2512
|
+
@BackupMethod.setter
|
2513
|
+
def BackupMethod(self, BackupMethod):
|
2514
|
+
self._BackupMethod = BackupMethod
|
2515
|
+
|
2516
|
+
@property
|
2517
|
+
def RequestId(self):
|
2518
|
+
return self._RequestId
|
2519
|
+
|
2520
|
+
@RequestId.setter
|
2521
|
+
def RequestId(self, RequestId):
|
2522
|
+
self._RequestId = RequestId
|
2523
|
+
|
2524
|
+
|
2525
|
+
def _deserialize(self, params):
|
2526
|
+
self._BackupSaveTime = params.get("BackupSaveTime")
|
2527
|
+
self._BackupTime = params.get("BackupTime")
|
2528
|
+
self._BackupMethod = params.get("BackupMethod")
|
2529
|
+
self._RequestId = params.get("RequestId")
|
2530
|
+
|
2531
|
+
|
2436
2532
|
class DescribeClientConnectionsRequest(AbstractModel):
|
2437
2533
|
"""DescribeClientConnections请求参数结构体
|
2438
2534
|
|
@@ -4010,6 +4106,190 @@ class DescribeSpecInfoResponse(AbstractModel):
|
|
4010
4106
|
self._RequestId = params.get("RequestId")
|
4011
4107
|
|
4012
4108
|
|
4109
|
+
class DescribeTransparentDataEncryptionStatusRequest(AbstractModel):
|
4110
|
+
"""DescribeTransparentDataEncryptionStatus请求参数结构体
|
4111
|
+
|
4112
|
+
"""
|
4113
|
+
|
4114
|
+
def __init__(self):
|
4115
|
+
r"""
|
4116
|
+
:param _InstanceId: 指定实例 ID。例如:cmgo-p8vn****。请登录 [MongoDB 控制台](https://console.cloud.tencent.com/mongodb)在实例列表复制实例 ID。
|
4117
|
+
:type InstanceId: str
|
4118
|
+
"""
|
4119
|
+
self._InstanceId = None
|
4120
|
+
|
4121
|
+
@property
|
4122
|
+
def InstanceId(self):
|
4123
|
+
return self._InstanceId
|
4124
|
+
|
4125
|
+
@InstanceId.setter
|
4126
|
+
def InstanceId(self, InstanceId):
|
4127
|
+
self._InstanceId = InstanceId
|
4128
|
+
|
4129
|
+
|
4130
|
+
def _deserialize(self, params):
|
4131
|
+
self._InstanceId = params.get("InstanceId")
|
4132
|
+
memeber_set = set(params.keys())
|
4133
|
+
for name, value in vars(self).items():
|
4134
|
+
property_name = name[1:]
|
4135
|
+
if property_name in memeber_set:
|
4136
|
+
memeber_set.remove(property_name)
|
4137
|
+
if len(memeber_set) > 0:
|
4138
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
4139
|
+
|
4140
|
+
|
4141
|
+
|
4142
|
+
class DescribeTransparentDataEncryptionStatusResponse(AbstractModel):
|
4143
|
+
"""DescribeTransparentDataEncryptionStatus返回参数结构体
|
4144
|
+
|
4145
|
+
"""
|
4146
|
+
|
4147
|
+
def __init__(self):
|
4148
|
+
r"""
|
4149
|
+
:param _TransparentDataEncryptionStatus: 表示是否开启了透明加密。
|
4150
|
+
- close:未开启。
|
4151
|
+
- open:已开启。
|
4152
|
+
:type TransparentDataEncryptionStatus: str
|
4153
|
+
:param _KeyInfoList: 已绑定的密钥列表,如未绑定,返回null。
|
4154
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4155
|
+
:type KeyInfoList: list of KMSInfoDetail
|
4156
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4157
|
+
:type RequestId: str
|
4158
|
+
"""
|
4159
|
+
self._TransparentDataEncryptionStatus = None
|
4160
|
+
self._KeyInfoList = None
|
4161
|
+
self._RequestId = None
|
4162
|
+
|
4163
|
+
@property
|
4164
|
+
def TransparentDataEncryptionStatus(self):
|
4165
|
+
return self._TransparentDataEncryptionStatus
|
4166
|
+
|
4167
|
+
@TransparentDataEncryptionStatus.setter
|
4168
|
+
def TransparentDataEncryptionStatus(self, TransparentDataEncryptionStatus):
|
4169
|
+
self._TransparentDataEncryptionStatus = TransparentDataEncryptionStatus
|
4170
|
+
|
4171
|
+
@property
|
4172
|
+
def KeyInfoList(self):
|
4173
|
+
return self._KeyInfoList
|
4174
|
+
|
4175
|
+
@KeyInfoList.setter
|
4176
|
+
def KeyInfoList(self, KeyInfoList):
|
4177
|
+
self._KeyInfoList = KeyInfoList
|
4178
|
+
|
4179
|
+
@property
|
4180
|
+
def RequestId(self):
|
4181
|
+
return self._RequestId
|
4182
|
+
|
4183
|
+
@RequestId.setter
|
4184
|
+
def RequestId(self, RequestId):
|
4185
|
+
self._RequestId = RequestId
|
4186
|
+
|
4187
|
+
|
4188
|
+
def _deserialize(self, params):
|
4189
|
+
self._TransparentDataEncryptionStatus = params.get("TransparentDataEncryptionStatus")
|
4190
|
+
if params.get("KeyInfoList") is not None:
|
4191
|
+
self._KeyInfoList = []
|
4192
|
+
for item in params.get("KeyInfoList"):
|
4193
|
+
obj = KMSInfoDetail()
|
4194
|
+
obj._deserialize(item)
|
4195
|
+
self._KeyInfoList.append(obj)
|
4196
|
+
self._RequestId = params.get("RequestId")
|
4197
|
+
|
4198
|
+
|
4199
|
+
class EnableTransparentDataEncryptionRequest(AbstractModel):
|
4200
|
+
"""EnableTransparentDataEncryption请求参数结构体
|
4201
|
+
|
4202
|
+
"""
|
4203
|
+
|
4204
|
+
def __init__(self):
|
4205
|
+
r"""
|
4206
|
+
:param _InstanceId: 实例 ID,例如:cmgo-p8vn****。请登录 [MongoDB 控制台](https://console.cloud.tencent.com/mongodb)在实例列表复制实例 ID。目前支持通用版本包含:4.4、5.0,云盘版暂不支持。
|
4207
|
+
:type InstanceId: str
|
4208
|
+
:param _KmsRegion: [密钥管理系统(Key Management Service,KMS)](https://cloud.tencent.com/document/product/573/18809)服务所在地域,例如 ap-shanghai。
|
4209
|
+
:type KmsRegion: str
|
4210
|
+
:param _KeyId: 密钥 ID。若不设置该参数,不指定具体的密钥 ID,由腾讯云自动生成密钥。
|
4211
|
+
:type KeyId: str
|
4212
|
+
"""
|
4213
|
+
self._InstanceId = None
|
4214
|
+
self._KmsRegion = None
|
4215
|
+
self._KeyId = None
|
4216
|
+
|
4217
|
+
@property
|
4218
|
+
def InstanceId(self):
|
4219
|
+
return self._InstanceId
|
4220
|
+
|
4221
|
+
@InstanceId.setter
|
4222
|
+
def InstanceId(self, InstanceId):
|
4223
|
+
self._InstanceId = InstanceId
|
4224
|
+
|
4225
|
+
@property
|
4226
|
+
def KmsRegion(self):
|
4227
|
+
return self._KmsRegion
|
4228
|
+
|
4229
|
+
@KmsRegion.setter
|
4230
|
+
def KmsRegion(self, KmsRegion):
|
4231
|
+
self._KmsRegion = KmsRegion
|
4232
|
+
|
4233
|
+
@property
|
4234
|
+
def KeyId(self):
|
4235
|
+
return self._KeyId
|
4236
|
+
|
4237
|
+
@KeyId.setter
|
4238
|
+
def KeyId(self, KeyId):
|
4239
|
+
self._KeyId = KeyId
|
4240
|
+
|
4241
|
+
|
4242
|
+
def _deserialize(self, params):
|
4243
|
+
self._InstanceId = params.get("InstanceId")
|
4244
|
+
self._KmsRegion = params.get("KmsRegion")
|
4245
|
+
self._KeyId = params.get("KeyId")
|
4246
|
+
memeber_set = set(params.keys())
|
4247
|
+
for name, value in vars(self).items():
|
4248
|
+
property_name = name[1:]
|
4249
|
+
if property_name in memeber_set:
|
4250
|
+
memeber_set.remove(property_name)
|
4251
|
+
if len(memeber_set) > 0:
|
4252
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
4253
|
+
|
4254
|
+
|
4255
|
+
|
4256
|
+
class EnableTransparentDataEncryptionResponse(AbstractModel):
|
4257
|
+
"""EnableTransparentDataEncryption返回参数结构体
|
4258
|
+
|
4259
|
+
"""
|
4260
|
+
|
4261
|
+
def __init__(self):
|
4262
|
+
r"""
|
4263
|
+
:param _FlowId: 开启透明加密的异步流程id,用于查询流程状态。
|
4264
|
+
:type FlowId: int
|
4265
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4266
|
+
:type RequestId: str
|
4267
|
+
"""
|
4268
|
+
self._FlowId = None
|
4269
|
+
self._RequestId = None
|
4270
|
+
|
4271
|
+
@property
|
4272
|
+
def FlowId(self):
|
4273
|
+
return self._FlowId
|
4274
|
+
|
4275
|
+
@FlowId.setter
|
4276
|
+
def FlowId(self, FlowId):
|
4277
|
+
self._FlowId = FlowId
|
4278
|
+
|
4279
|
+
@property
|
4280
|
+
def RequestId(self):
|
4281
|
+
return self._RequestId
|
4282
|
+
|
4283
|
+
@RequestId.setter
|
4284
|
+
def RequestId(self, RequestId):
|
4285
|
+
self._RequestId = RequestId
|
4286
|
+
|
4287
|
+
|
4288
|
+
def _deserialize(self, params):
|
4289
|
+
self._FlowId = params.get("FlowId")
|
4290
|
+
self._RequestId = params.get("RequestId")
|
4291
|
+
|
4292
|
+
|
4013
4293
|
class FBKeyValue(AbstractModel):
|
4014
4294
|
"""按key回档,用于筛选数据的键值对
|
4015
4295
|
|
@@ -6091,6 +6371,105 @@ class IsolateDBInstanceResponse(AbstractModel):
|
|
6091
6371
|
self._RequestId = params.get("RequestId")
|
6092
6372
|
|
6093
6373
|
|
6374
|
+
class KMSInfoDetail(AbstractModel):
|
6375
|
+
"""KMS密钥信息
|
6376
|
+
|
6377
|
+
"""
|
6378
|
+
|
6379
|
+
def __init__(self):
|
6380
|
+
r"""
|
6381
|
+
:param _KeyId: 主密钥 ID。
|
6382
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6383
|
+
:type KeyId: str
|
6384
|
+
:param _KeyName: 主密钥名称。
|
6385
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6386
|
+
:type KeyName: str
|
6387
|
+
:param _CreateTime: 实例与密钥绑定时间。
|
6388
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6389
|
+
:type CreateTime: str
|
6390
|
+
:param _Status: 密钥状态。
|
6391
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6392
|
+
:type Status: str
|
6393
|
+
:param _KeyUsage: 密钥用途。
|
6394
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6395
|
+
:type KeyUsage: str
|
6396
|
+
:param _KeyOrigin: 密钥来源。
|
6397
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6398
|
+
:type KeyOrigin: str
|
6399
|
+
"""
|
6400
|
+
self._KeyId = None
|
6401
|
+
self._KeyName = None
|
6402
|
+
self._CreateTime = None
|
6403
|
+
self._Status = None
|
6404
|
+
self._KeyUsage = None
|
6405
|
+
self._KeyOrigin = None
|
6406
|
+
|
6407
|
+
@property
|
6408
|
+
def KeyId(self):
|
6409
|
+
return self._KeyId
|
6410
|
+
|
6411
|
+
@KeyId.setter
|
6412
|
+
def KeyId(self, KeyId):
|
6413
|
+
self._KeyId = KeyId
|
6414
|
+
|
6415
|
+
@property
|
6416
|
+
def KeyName(self):
|
6417
|
+
return self._KeyName
|
6418
|
+
|
6419
|
+
@KeyName.setter
|
6420
|
+
def KeyName(self, KeyName):
|
6421
|
+
self._KeyName = KeyName
|
6422
|
+
|
6423
|
+
@property
|
6424
|
+
def CreateTime(self):
|
6425
|
+
return self._CreateTime
|
6426
|
+
|
6427
|
+
@CreateTime.setter
|
6428
|
+
def CreateTime(self, CreateTime):
|
6429
|
+
self._CreateTime = CreateTime
|
6430
|
+
|
6431
|
+
@property
|
6432
|
+
def Status(self):
|
6433
|
+
return self._Status
|
6434
|
+
|
6435
|
+
@Status.setter
|
6436
|
+
def Status(self, Status):
|
6437
|
+
self._Status = Status
|
6438
|
+
|
6439
|
+
@property
|
6440
|
+
def KeyUsage(self):
|
6441
|
+
return self._KeyUsage
|
6442
|
+
|
6443
|
+
@KeyUsage.setter
|
6444
|
+
def KeyUsage(self, KeyUsage):
|
6445
|
+
self._KeyUsage = KeyUsage
|
6446
|
+
|
6447
|
+
@property
|
6448
|
+
def KeyOrigin(self):
|
6449
|
+
return self._KeyOrigin
|
6450
|
+
|
6451
|
+
@KeyOrigin.setter
|
6452
|
+
def KeyOrigin(self, KeyOrigin):
|
6453
|
+
self._KeyOrigin = KeyOrigin
|
6454
|
+
|
6455
|
+
|
6456
|
+
def _deserialize(self, params):
|
6457
|
+
self._KeyId = params.get("KeyId")
|
6458
|
+
self._KeyName = params.get("KeyName")
|
6459
|
+
self._CreateTime = params.get("CreateTime")
|
6460
|
+
self._Status = params.get("Status")
|
6461
|
+
self._KeyUsage = params.get("KeyUsage")
|
6462
|
+
self._KeyOrigin = params.get("KeyOrigin")
|
6463
|
+
memeber_set = set(params.keys())
|
6464
|
+
for name, value in vars(self).items():
|
6465
|
+
property_name = name[1:]
|
6466
|
+
if property_name in memeber_set:
|
6467
|
+
memeber_set.remove(property_name)
|
6468
|
+
if len(memeber_set) > 0:
|
6469
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
6470
|
+
|
6471
|
+
|
6472
|
+
|
6094
6473
|
class KillOpsRequest(AbstractModel):
|
6095
6474
|
"""KillOps请求参数结构体
|
6096
6475
|
|
@@ -7640,6 +8019,114 @@ class SetAccountUserPrivilegeResponse(AbstractModel):
|
|
7640
8019
|
self._RequestId = params.get("RequestId")
|
7641
8020
|
|
7642
8021
|
|
8022
|
+
class SetBackupRulesRequest(AbstractModel):
|
8023
|
+
"""SetBackupRules请求参数结构体
|
8024
|
+
|
8025
|
+
"""
|
8026
|
+
|
8027
|
+
def __init__(self):
|
8028
|
+
r"""
|
8029
|
+
:param _InstanceId: 实例 ID,例如:cmgo-p8vn****。请登录 [MongoDB 控制台](https://console.cloud.tencent.com/mongodb)在实例列表复制实例 ID。
|
8030
|
+
:type InstanceId: str
|
8031
|
+
:param _BackupMethod: 设置自动备份方式。- 0:逻辑备份。- 1:物理备份。-3:快照备份(仅云盘版支持)。
|
8032
|
+
:type BackupMethod: int
|
8033
|
+
:param _BackupTime: 设置自动备份开始时间。取值范围为:[0,23],例如:该参数设置为2,表示02:00开始备份。
|
8034
|
+
:type BackupTime: int
|
8035
|
+
:param _Notify: 设置自动备份发生错误时,是否发送失败告警。
|
8036
|
+
- true:发送。
|
8037
|
+
- false:不发送。
|
8038
|
+
:type Notify: bool
|
8039
|
+
:param _BackupRetentionPeriod: 指定备份数据保存天数。默认为 7 天,支持设置为7、30、90、180、365。
|
8040
|
+
:type BackupRetentionPeriod: int
|
8041
|
+
"""
|
8042
|
+
self._InstanceId = None
|
8043
|
+
self._BackupMethod = None
|
8044
|
+
self._BackupTime = None
|
8045
|
+
self._Notify = None
|
8046
|
+
self._BackupRetentionPeriod = None
|
8047
|
+
|
8048
|
+
@property
|
8049
|
+
def InstanceId(self):
|
8050
|
+
return self._InstanceId
|
8051
|
+
|
8052
|
+
@InstanceId.setter
|
8053
|
+
def InstanceId(self, InstanceId):
|
8054
|
+
self._InstanceId = InstanceId
|
8055
|
+
|
8056
|
+
@property
|
8057
|
+
def BackupMethod(self):
|
8058
|
+
return self._BackupMethod
|
8059
|
+
|
8060
|
+
@BackupMethod.setter
|
8061
|
+
def BackupMethod(self, BackupMethod):
|
8062
|
+
self._BackupMethod = BackupMethod
|
8063
|
+
|
8064
|
+
@property
|
8065
|
+
def BackupTime(self):
|
8066
|
+
return self._BackupTime
|
8067
|
+
|
8068
|
+
@BackupTime.setter
|
8069
|
+
def BackupTime(self, BackupTime):
|
8070
|
+
self._BackupTime = BackupTime
|
8071
|
+
|
8072
|
+
@property
|
8073
|
+
def Notify(self):
|
8074
|
+
return self._Notify
|
8075
|
+
|
8076
|
+
@Notify.setter
|
8077
|
+
def Notify(self, Notify):
|
8078
|
+
self._Notify = Notify
|
8079
|
+
|
8080
|
+
@property
|
8081
|
+
def BackupRetentionPeriod(self):
|
8082
|
+
return self._BackupRetentionPeriod
|
8083
|
+
|
8084
|
+
@BackupRetentionPeriod.setter
|
8085
|
+
def BackupRetentionPeriod(self, BackupRetentionPeriod):
|
8086
|
+
self._BackupRetentionPeriod = BackupRetentionPeriod
|
8087
|
+
|
8088
|
+
|
8089
|
+
def _deserialize(self, params):
|
8090
|
+
self._InstanceId = params.get("InstanceId")
|
8091
|
+
self._BackupMethod = params.get("BackupMethod")
|
8092
|
+
self._BackupTime = params.get("BackupTime")
|
8093
|
+
self._Notify = params.get("Notify")
|
8094
|
+
self._BackupRetentionPeriod = params.get("BackupRetentionPeriod")
|
8095
|
+
memeber_set = set(params.keys())
|
8096
|
+
for name, value in vars(self).items():
|
8097
|
+
property_name = name[1:]
|
8098
|
+
if property_name in memeber_set:
|
8099
|
+
memeber_set.remove(property_name)
|
8100
|
+
if len(memeber_set) > 0:
|
8101
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
8102
|
+
|
8103
|
+
|
8104
|
+
|
8105
|
+
class SetBackupRulesResponse(AbstractModel):
|
8106
|
+
"""SetBackupRules返回参数结构体
|
8107
|
+
|
8108
|
+
"""
|
8109
|
+
|
8110
|
+
def __init__(self):
|
8111
|
+
r"""
|
8112
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
8113
|
+
:type RequestId: str
|
8114
|
+
"""
|
8115
|
+
self._RequestId = None
|
8116
|
+
|
8117
|
+
@property
|
8118
|
+
def RequestId(self):
|
8119
|
+
return self._RequestId
|
8120
|
+
|
8121
|
+
@RequestId.setter
|
8122
|
+
def RequestId(self, RequestId):
|
8123
|
+
self._RequestId = RequestId
|
8124
|
+
|
8125
|
+
|
8126
|
+
def _deserialize(self, params):
|
8127
|
+
self._RequestId = params.get("RequestId")
|
8128
|
+
|
8129
|
+
|
7643
8130
|
class SetInstanceMaintenanceRequest(AbstractModel):
|
7644
8131
|
"""SetInstanceMaintenance请求参数结构体
|
7645
8132
|
|
@@ -256,6 +256,29 @@ class MongodbClient(AbstractClient):
|
|
256
256
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
257
257
|
|
258
258
|
|
259
|
+
def DescribeBackupRules(self, request):
|
260
|
+
"""本接口(DescribeBackupRules)用于获取实例自动备份配置信息。
|
261
|
+
|
262
|
+
:param request: Request instance for DescribeBackupRules.
|
263
|
+
:type request: :class:`tencentcloud.mongodb.v20190725.models.DescribeBackupRulesRequest`
|
264
|
+
:rtype: :class:`tencentcloud.mongodb.v20190725.models.DescribeBackupRulesResponse`
|
265
|
+
|
266
|
+
"""
|
267
|
+
try:
|
268
|
+
params = request._serialize()
|
269
|
+
headers = request.headers
|
270
|
+
body = self.call("DescribeBackupRules", params, headers=headers)
|
271
|
+
response = json.loads(body)
|
272
|
+
model = models.DescribeBackupRulesResponse()
|
273
|
+
model._deserialize(response["Response"])
|
274
|
+
return model
|
275
|
+
except Exception as e:
|
276
|
+
if isinstance(e, TencentCloudSDKException):
|
277
|
+
raise
|
278
|
+
else:
|
279
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
280
|
+
|
281
|
+
|
259
282
|
def DescribeClientConnections(self, request):
|
260
283
|
"""本接口(DescribeClientConnections)用于查询实例客户端连接信息,包括连接 IP 和连接数量。
|
261
284
|
|
@@ -509,6 +532,52 @@ class MongodbClient(AbstractClient):
|
|
509
532
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
510
533
|
|
511
534
|
|
535
|
+
def DescribeTransparentDataEncryptionStatus(self, request):
|
536
|
+
"""获取实例透明加密的开启状态
|
537
|
+
|
538
|
+
:param request: Request instance for DescribeTransparentDataEncryptionStatus.
|
539
|
+
:type request: :class:`tencentcloud.mongodb.v20190725.models.DescribeTransparentDataEncryptionStatusRequest`
|
540
|
+
:rtype: :class:`tencentcloud.mongodb.v20190725.models.DescribeTransparentDataEncryptionStatusResponse`
|
541
|
+
|
542
|
+
"""
|
543
|
+
try:
|
544
|
+
params = request._serialize()
|
545
|
+
headers = request.headers
|
546
|
+
body = self.call("DescribeTransparentDataEncryptionStatus", params, headers=headers)
|
547
|
+
response = json.loads(body)
|
548
|
+
model = models.DescribeTransparentDataEncryptionStatusResponse()
|
549
|
+
model._deserialize(response["Response"])
|
550
|
+
return model
|
551
|
+
except Exception as e:
|
552
|
+
if isinstance(e, TencentCloudSDKException):
|
553
|
+
raise
|
554
|
+
else:
|
555
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
556
|
+
|
557
|
+
|
558
|
+
def EnableTransparentDataEncryption(self, request):
|
559
|
+
"""本接口(EnableTransparentDataEncryption)用于开启云数据库 MongoDB 的透明加密能力。
|
560
|
+
|
561
|
+
:param request: Request instance for EnableTransparentDataEncryption.
|
562
|
+
:type request: :class:`tencentcloud.mongodb.v20190725.models.EnableTransparentDataEncryptionRequest`
|
563
|
+
:rtype: :class:`tencentcloud.mongodb.v20190725.models.EnableTransparentDataEncryptionResponse`
|
564
|
+
|
565
|
+
"""
|
566
|
+
try:
|
567
|
+
params = request._serialize()
|
568
|
+
headers = request.headers
|
569
|
+
body = self.call("EnableTransparentDataEncryption", params, headers=headers)
|
570
|
+
response = json.loads(body)
|
571
|
+
model = models.EnableTransparentDataEncryptionResponse()
|
572
|
+
model._deserialize(response["Response"])
|
573
|
+
return model
|
574
|
+
except Exception as e:
|
575
|
+
if isinstance(e, TencentCloudSDKException):
|
576
|
+
raise
|
577
|
+
else:
|
578
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
579
|
+
|
580
|
+
|
512
581
|
def FlashBackDBInstance(self, request):
|
513
582
|
"""该接口用于发起按 Key 闪回任务,依据数据的闪回 Key(默认为 id)对数据进行极速回档,快速恢复业务。
|
514
583
|
**说明:按 Key 闪回于2023年09月11日正式进行公测,在此期间,该接口仅对公测用户开放。**
|
@@ -855,6 +924,29 @@ class MongodbClient(AbstractClient):
|
|
855
924
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
856
925
|
|
857
926
|
|
927
|
+
def SetBackupRules(self, request):
|
928
|
+
"""本接口(SetBackupRules)用于设置 MongoDB 云数据库的自动备份规则。
|
929
|
+
|
930
|
+
:param request: Request instance for SetBackupRules.
|
931
|
+
:type request: :class:`tencentcloud.mongodb.v20190725.models.SetBackupRulesRequest`
|
932
|
+
:rtype: :class:`tencentcloud.mongodb.v20190725.models.SetBackupRulesResponse`
|
933
|
+
|
934
|
+
"""
|
935
|
+
try:
|
936
|
+
params = request._serialize()
|
937
|
+
headers = request.headers
|
938
|
+
body = self.call("SetBackupRules", params, headers=headers)
|
939
|
+
response = json.loads(body)
|
940
|
+
model = models.SetBackupRulesResponse()
|
941
|
+
model._deserialize(response["Response"])
|
942
|
+
return model
|
943
|
+
except Exception as e:
|
944
|
+
if isinstance(e, TencentCloudSDKException):
|
945
|
+
raise
|
946
|
+
else:
|
947
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
948
|
+
|
949
|
+
|
858
950
|
def SetInstanceMaintenance(self, request):
|
859
951
|
"""本接口(SetInstanceMaintenance ) 用于设置实例维护时间窗。
|
860
952
|
|
@@ -9111,7 +9111,7 @@ class StartWebRecordRequest(AbstractModel):
|
|
9111
9111
|
:param _MaxDurationLimit: 录制最大时长限制, 单位 s, 合法取值范围[1800, 36000], 默认 36000s(10 小时)
|
9112
9112
|
|
9113
9113
|
:type MaxDurationLimit: int
|
9114
|
-
:param _StorageParams:
|
9114
|
+
:param _StorageParams: 云存储相关的参数,目前支持腾讯云对象存储以及腾讯云云点播VOD,不支持第三方云存储
|
9115
9115
|
:type StorageParams: :class:`tencentcloud.trtc.v20190722.models.StorageParams`
|
9116
9116
|
:param _WebRecordVideoParams: 页面录制视频参数
|
9117
9117
|
:type WebRecordVideoParams: :class:`tencentcloud.trtc.v20190722.models.WebRecordVideoParams`
|
{tencentcloud_sdk_python-3.0.1165.dist-info → tencentcloud_sdk_python-3.0.1166.dist-info}/RECORD
RENAMED
@@ -50,7 +50,7 @@ QcloudApi/modules/vod.py,sha256=l05_qYx0l5bq6LJ8mAX2YO3pRXzxY3JMdDHV1N_SRKE,679
|
|
50
50
|
QcloudApi/modules/vpc.py,sha256=JBiNpcnrAwf_UJ_UdpxQybKeCTfeveJ9R1B-vO1_w_U,679
|
51
51
|
QcloudApi/modules/wenzhi.py,sha256=hr1rRLU8TxxSfejMqV2O4alO_yXF3C0tfZMSzziu54Q,685
|
52
52
|
QcloudApi/modules/yunsou.py,sha256=JlgzMjnJaho6axFVhSTAv6DS0HLcjl0LJL02q6qI2yY,685
|
53
|
-
tencentcloud/__init__.py,sha256=
|
53
|
+
tencentcloud/__init__.py,sha256=30oklCPwv-Xde3NvcmFyCofUgA2MrG8EYI-7sXOHL4s,631
|
54
54
|
tencentcloud/aa/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
55
55
|
tencentcloud/aa/v20200224/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
56
56
|
tencentcloud/aa/v20200224/aa_client.py,sha256=L7P5zpJElo9WoLSkhvLxnfpEGCZ1q2e5Fzx3wLEioAA,2184
|
@@ -174,7 +174,7 @@ tencentcloud/billing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hS
|
|
174
174
|
tencentcloud/billing/v20180709/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
175
175
|
tencentcloud/billing/v20180709/billing_client.py,sha256=Vj8szGsdGN18pQ1LZR7yzvP4Lmbi4Hbr34jbkIHCRhc,44991
|
176
176
|
tencentcloud/billing/v20180709/errorcodes.py,sha256=GoddoQG8YWrSbIInxw-N9nGpuWsHXRN8EVHg3ceepL8,3227
|
177
|
-
tencentcloud/billing/v20180709/models.py,sha256=
|
177
|
+
tencentcloud/billing/v20180709/models.py,sha256=Q4PR2_5-oPaON2uujKT3DcBxIgTEejZyvjhtDvgKmxQ,699471
|
178
178
|
tencentcloud/bizlive/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
179
179
|
tencentcloud/bizlive/v20190313/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
180
180
|
tencentcloud/bizlive/v20190313/bizlive_client.py,sha256=SAkmc6ALTm-jYpTJsY9Rv-6J76YUtSXurSxo9cHVchQ,6329
|
@@ -235,9 +235,9 @@ tencentcloud/btoe/v20210514/errorcodes.py,sha256=_XTZXw3u0s4ZHYICOaJaYCItG5EWD33
|
|
235
235
|
tencentcloud/btoe/v20210514/models.py,sha256=LTJix83mCEnQiLhMbPO7eZ4-H4vVOYQSK4Og8b8nRp4,44810
|
236
236
|
tencentcloud/cam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
237
237
|
tencentcloud/cam/v20190116/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
238
|
-
tencentcloud/cam/v20190116/cam_client.py,sha256=
|
239
|
-
tencentcloud/cam/v20190116/errorcodes.py,sha256=
|
240
|
-
tencentcloud/cam/v20190116/models.py,sha256=
|
238
|
+
tencentcloud/cam/v20190116/cam_client.py,sha256=wqLlGTVCRK7nwQbSKm7KoYJuEhqOw42LOHEXcHrNXiQ,80281
|
239
|
+
tencentcloud/cam/v20190116/errorcodes.py,sha256=DtVVZ_iaLvom0wNaKG7QOxnBlr1ndm_sVQMo2CNREpI,12038
|
240
|
+
tencentcloud/cam/v20190116/models.py,sha256=FxUvU95XRnqVF5Cwf7KLFrkNvf-avpiLIUhn3IoYB0o,314615
|
241
241
|
tencentcloud/captcha/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
242
242
|
tencentcloud/captcha/v20190722/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
243
243
|
tencentcloud/captcha/v20190722/captcha_client.py,sha256=vgU7g8i_RwTjwoY70VaMQErxloH_1yEaV0fyrwG-gFQ,18807
|
@@ -252,7 +252,7 @@ tencentcloud/cat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
252
252
|
tencentcloud/cat/v20180409/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
253
253
|
tencentcloud/cat/v20180409/cat_client.py,sha256=jwBTvSQo8vJ6GrUkz5q92utVDS8nm4ht5ESw5y9EfTs,12021
|
254
254
|
tencentcloud/cat/v20180409/errorcodes.py,sha256=Qk_GYi4L1FpP0L4K5pPyiF-XRpejWn1_DCZnR-jR_kI,2879
|
255
|
-
tencentcloud/cat/v20180409/models.py,sha256=
|
255
|
+
tencentcloud/cat/v20180409/models.py,sha256=Y_C0q27_AhV3p8gpuZRMByPmFvDTXTtzIgsONrqZo5g,77781
|
256
256
|
tencentcloud/cbs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
257
257
|
tencentcloud/cbs/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
258
258
|
tencentcloud/cbs/v20170312/cbs_client.py,sha256=YTx4Yb3OheyJBt10m0JUJG350OHCzBlFviHPqZhcGUM,51017
|
@@ -280,7 +280,7 @@ tencentcloud/cdn/v20180606/errorcodes.py,sha256=9Nu4v78JfK2Uz9JCkB5mCrOLnfvnUakJ
|
|
280
280
|
tencentcloud/cdn/v20180606/models.py,sha256=dM-oOTglMUWY0471SkHt9br7r0jSpwoh1tuJAC0LD3M,864565
|
281
281
|
tencentcloud/cds/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
282
282
|
tencentcloud/cds/v20180420/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
283
|
-
tencentcloud/cds/v20180420/cds_client.py,sha256=
|
283
|
+
tencentcloud/cds/v20180420/cds_client.py,sha256=v4Q6ArXVRzUGG002LPypgfdolRqaRTwdb4lE7Wsl4ko,6950
|
284
284
|
tencentcloud/cds/v20180420/errorcodes.py,sha256=Ed_74EneNf3XeL2pqGL8M5l9JnqSjQOYjewjFCIxdJQ,966
|
285
285
|
tencentcloud/cds/v20180420/models.py,sha256=jPzgvczLcDoT6jn51084-hiwUjh2K9DW_hgSM_kQgAY,25586
|
286
286
|
tencentcloud/cdwch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -375,7 +375,7 @@ tencentcloud/cls/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
375
375
|
tencentcloud/cls/v20201016/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
376
376
|
tencentcloud/cls/v20201016/cls_client.py,sha256=44lVhzEDtNGhytJsea0T_23OEwk-0OLIOlVqib-CSNo,96929
|
377
377
|
tencentcloud/cls/v20201016/errorcodes.py,sha256=DA-WVSxt_AIKZrzHmd_UyXAyamqGSvILR_cfD16msH4,11155
|
378
|
-
tencentcloud/cls/v20201016/models.py,sha256=
|
378
|
+
tencentcloud/cls/v20201016/models.py,sha256=AL7TH9URqsNonEPisIc0JwQhwA9raV83DTfrozHSDG4,653777
|
379
379
|
tencentcloud/cme/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
380
380
|
tencentcloud/cme/v20191029/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
381
381
|
tencentcloud/cme/v20191029/cme_client.py,sha256=8p6sB5c5yqbFXsuoRE-tpGvaE0CwqzgwzEimXV_CUGw,55451
|
@@ -590,7 +590,7 @@ tencentcloud/essbasic/v20201222/essbasic_client.py,sha256=kua9joup-BLKbyITYpVovM
|
|
590
590
|
tencentcloud/essbasic/v20201222/models.py,sha256=Q2E6jmVT1emRziwRN-qj8XpdzpxvqqHTKOEQz8JaM_s,270905
|
591
591
|
tencentcloud/essbasic/v20210526/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
592
592
|
tencentcloud/essbasic/v20210526/errorcodes.py,sha256=L1_0J4AOPtBTgtVqauXq0aVisXRe03bOUWFB0QCnXRs,18219
|
593
|
-
tencentcloud/essbasic/v20210526/essbasic_client.py,sha256=
|
593
|
+
tencentcloud/essbasic/v20210526/essbasic_client.py,sha256=cizlEikpD7UtggxudnkTraPAxRtHTEjU0vglNPT0dPU,135009
|
594
594
|
tencentcloud/essbasic/v20210526/models.py,sha256=6xQwMAx80pPVV_xwdkgjv6yKTmuPqyftel9qgT8eu-s,743198
|
595
595
|
tencentcloud/facefusion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
596
596
|
tencentcloud/facefusion/v20181201/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -866,8 +866,8 @@ tencentcloud/mongodb/v20180408/models.py,sha256=J-4PKHcnuJueHQ6YfrAHugV3ImK_jrgn
|
|
866
866
|
tencentcloud/mongodb/v20180408/mongodb_client.py,sha256=LPLvUOeg8pyXAn1k5RdZaqWrnYSQ0aXJ-ioTuE92R3Q,13654
|
867
867
|
tencentcloud/mongodb/v20190725/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
868
868
|
tencentcloud/mongodb/v20190725/errorcodes.py,sha256=j2mowQzaQ7Xqyuy5tmLi2nJlO6iZRB1G50bkyEIilVk,7774
|
869
|
-
tencentcloud/mongodb/v20190725/models.py,sha256=
|
870
|
-
tencentcloud/mongodb/v20190725/mongodb_client.py,sha256=
|
869
|
+
tencentcloud/mongodb/v20190725/models.py,sha256=nGmJXJflovY1wzy9UZe-kd2AxN-AzlqmoNG8gKLwg2U,272023
|
870
|
+
tencentcloud/mongodb/v20190725/mongodb_client.py,sha256=ZwT9e8-GCGyCHP8qepOSthQ2eX83tLx1qbmzcG0UDUI,42653
|
871
871
|
tencentcloud/monitor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
872
872
|
tencentcloud/monitor/v20180724/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
873
873
|
tencentcloud/monitor/v20180724/errorcodes.py,sha256=dukIL6njXDrTpTbojusf4bCgdQtN8E69_kYRXrsrpuU,10438
|
@@ -1306,7 +1306,7 @@ tencentcloud/trro/v20220325/trro_client.py,sha256=UMXZ_jOKKI2_cydbscFAPxqVfSUpUm
|
|
1306
1306
|
tencentcloud/trtc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1307
1307
|
tencentcloud/trtc/v20190722/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1308
1308
|
tencentcloud/trtc/v20190722/errorcodes.py,sha256=pj8liwEqi-6N8RLQ9nBjYPmOueQHif8WlwzVOLR5RYc,11019
|
1309
|
-
tencentcloud/trtc/v20190722/models.py,sha256=
|
1309
|
+
tencentcloud/trtc/v20190722/models.py,sha256=M6lE-pPFsJD2qnlrI-C4h7RvChhqs3pVaj4ZaNGulB8,367629
|
1310
1310
|
tencentcloud/trtc/v20190722/trtc_client.py,sha256=o2RI6zx8svsSrRJwZBdEAkiUuHdGaVmNlSUi7wMsFsg,85727
|
1311
1311
|
tencentcloud/tse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1312
1312
|
tencentcloud/tse/v20201207/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1434,8 +1434,8 @@ tencentcloud/yunsou/v20191115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
1434
1434
|
tencentcloud/yunsou/v20191115/errorcodes.py,sha256=zB4-XPxmvEhgHoLsKlbayJVRLEagPDcs-UAheVZCoAc,1301
|
1435
1435
|
tencentcloud/yunsou/v20191115/models.py,sha256=sNTR9ixO8CV9yKQahrhOsEJlxOK5d7aXBoIBIPxfJsQ,23137
|
1436
1436
|
tencentcloud/yunsou/v20191115/yunsou_client.py,sha256=ly73Hr8rGamWa6AAvQjurKgd4L83PRY5WjcDv4ziQC8,2741
|
1437
|
-
tencentcloud_sdk_python-3.0.
|
1438
|
-
tencentcloud_sdk_python-3.0.
|
1439
|
-
tencentcloud_sdk_python-3.0.
|
1440
|
-
tencentcloud_sdk_python-3.0.
|
1441
|
-
tencentcloud_sdk_python-3.0.
|
1437
|
+
tencentcloud_sdk_python-3.0.1166.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
|
1438
|
+
tencentcloud_sdk_python-3.0.1166.dist-info/METADATA,sha256=6FsU5G3hbeQuyR99ALrkUEBEloop6GuKOLxastTkTrE,1511
|
1439
|
+
tencentcloud_sdk_python-3.0.1166.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
1440
|
+
tencentcloud_sdk_python-3.0.1166.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
|
1441
|
+
tencentcloud_sdk_python-3.0.1166.dist-info/RECORD,,
|
{tencentcloud_sdk_python-3.0.1165.dist-info → tencentcloud_sdk_python-3.0.1166.dist-info}/LICENSE
RENAMED
File without changes
|
{tencentcloud_sdk_python-3.0.1165.dist-info → tencentcloud_sdk_python-3.0.1166.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|