tencentcloud-sdk-python 3.0.1434__py2.py3-none-any.whl → 3.0.1436__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.
Potentially problematic release.
This version of tencentcloud-sdk-python might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/autoscaling/v20180419/models.py +2 -2
- tencentcloud/bi/v20220105/models.py +156 -2
- tencentcloud/cam/v20190116/cam_client.py +23 -0
- tencentcloud/cam/v20190116/errorcodes.py +15 -0
- tencentcloud/cam/v20190116/models.py +180 -0
- tencentcloud/cdb/v20170320/cdb_client.py +2 -1
- tencentcloud/cdb/v20170320/models.py +62 -44
- tencentcloud/cdn/v20180606/cdn_client.py +0 -575
- tencentcloud/cdn/v20180606/errorcodes.py +0 -48
- tencentcloud/cdn/v20180606/models.py +12881 -21511
- tencentcloud/cfs/v20190719/cfs_client.py +299 -0
- tencentcloud/cfs/v20190719/errorcodes.py +54 -0
- tencentcloud/cfs/v20190719/models.py +4445 -1986
- tencentcloud/clb/v20180317/models.py +44 -14
- tencentcloud/cls/v20201016/models.py +370 -136
- tencentcloud/ctem/v20231128/models.py +405 -15
- tencentcloud/dlc/v20210125/dlc_client.py +529 -0
- tencentcloud/dlc/v20210125/errorcodes.py +30 -0
- tencentcloud/dlc/v20210125/models.py +7581 -2530
- tencentcloud/emr/v20190103/models.py +2 -2
- tencentcloud/es/v20250101/models.py +70 -0
- tencentcloud/ess/v20201111/ess_client.py +53 -1
- tencentcloud/ess/v20201111/models.py +680 -0
- tencentcloud/hunyuan/v20230901/errorcodes.py +0 -27
- tencentcloud/hunyuan/v20230901/hunyuan_client.py +0 -46
- tencentcloud/hunyuan/v20230901/models.py +0 -357
- tencentcloud/kms/v20190118/models.py +2 -2
- tencentcloud/live/v20180801/models.py +2 -2
- tencentcloud/lowcode/v20210108/lowcode_client.py +92 -0
- tencentcloud/lowcode/v20210108/models.py +423 -0
- tencentcloud/mps/v20190612/models.py +24 -8
- tencentcloud/mqtt/v20240516/models.py +150 -0
- tencentcloud/ocr/v20181119/models.py +4 -4
- tencentcloud/ssl/v20191205/errorcodes.py +1 -1
- tencentcloud/ssl/v20191205/models.py +45 -30
- tencentcloud/teo/v20220901/errorcodes.py +24 -0
- tencentcloud/teo/v20220901/models.py +3491 -433
- tencentcloud/teo/v20220901/teo_client.py +462 -0
- tencentcloud/tione/v20211111/models.py +15 -0
- tencentcloud/trtc/v20190722/models.py +70 -6
- tencentcloud/waf/v20180125/models.py +1029 -151
- tencentcloud/waf/v20180125/waf_client.py +92 -0
- tencentcloud/wedata/v20210820/models.py +321 -15
- tencentcloud/wedata/v20210820/wedata_client.py +23 -0
- {tencentcloud_sdk_python-3.0.1434.dist-info → tencentcloud_sdk_python-3.0.1436.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1434.dist-info → tencentcloud_sdk_python-3.0.1436.dist-info}/RECORD +50 -50
- {tencentcloud_sdk_python-3.0.1434.dist-info → tencentcloud_sdk_python-3.0.1436.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1434.dist-info → tencentcloud_sdk_python-3.0.1436.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1434.dist-info → tencentcloud_sdk_python-3.0.1436.dist-info}/top_level.txt +0 -0
|
@@ -18,6 +18,115 @@ import warnings
|
|
|
18
18
|
from tencentcloud.common.abstract_model import AbstractModel
|
|
19
19
|
|
|
20
20
|
|
|
21
|
+
class CheckDeployAppRequest(AbstractModel):
|
|
22
|
+
"""CheckDeployApp请求参数结构体
|
|
23
|
+
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
def __init__(self):
|
|
27
|
+
r"""
|
|
28
|
+
:param _EnvId: 环境ID
|
|
29
|
+
:type EnvId: str
|
|
30
|
+
:param _Id: 应用id
|
|
31
|
+
:type Id: str
|
|
32
|
+
:param _BuildId: 构建 Id
|
|
33
|
+
:type BuildId: str
|
|
34
|
+
"""
|
|
35
|
+
self._EnvId = None
|
|
36
|
+
self._Id = None
|
|
37
|
+
self._BuildId = None
|
|
38
|
+
|
|
39
|
+
@property
|
|
40
|
+
def EnvId(self):
|
|
41
|
+
"""环境ID
|
|
42
|
+
:rtype: str
|
|
43
|
+
"""
|
|
44
|
+
return self._EnvId
|
|
45
|
+
|
|
46
|
+
@EnvId.setter
|
|
47
|
+
def EnvId(self, EnvId):
|
|
48
|
+
self._EnvId = EnvId
|
|
49
|
+
|
|
50
|
+
@property
|
|
51
|
+
def Id(self):
|
|
52
|
+
"""应用id
|
|
53
|
+
:rtype: str
|
|
54
|
+
"""
|
|
55
|
+
return self._Id
|
|
56
|
+
|
|
57
|
+
@Id.setter
|
|
58
|
+
def Id(self, Id):
|
|
59
|
+
self._Id = Id
|
|
60
|
+
|
|
61
|
+
@property
|
|
62
|
+
def BuildId(self):
|
|
63
|
+
"""构建 Id
|
|
64
|
+
:rtype: str
|
|
65
|
+
"""
|
|
66
|
+
return self._BuildId
|
|
67
|
+
|
|
68
|
+
@BuildId.setter
|
|
69
|
+
def BuildId(self, BuildId):
|
|
70
|
+
self._BuildId = BuildId
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
def _deserialize(self, params):
|
|
74
|
+
self._EnvId = params.get("EnvId")
|
|
75
|
+
self._Id = params.get("Id")
|
|
76
|
+
self._BuildId = params.get("BuildId")
|
|
77
|
+
memeber_set = set(params.keys())
|
|
78
|
+
for name, value in vars(self).items():
|
|
79
|
+
property_name = name[1:]
|
|
80
|
+
if property_name in memeber_set:
|
|
81
|
+
memeber_set.remove(property_name)
|
|
82
|
+
if len(memeber_set) > 0:
|
|
83
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
class CheckDeployAppResponse(AbstractModel):
|
|
88
|
+
"""CheckDeployApp返回参数结构体
|
|
89
|
+
|
|
90
|
+
"""
|
|
91
|
+
|
|
92
|
+
def __init__(self):
|
|
93
|
+
r"""
|
|
94
|
+
:param _Status: 状态:success、building、reviewFail、releaseSuccess、underReview
|
|
95
|
+
:type Status: str
|
|
96
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
97
|
+
:type RequestId: str
|
|
98
|
+
"""
|
|
99
|
+
self._Status = None
|
|
100
|
+
self._RequestId = None
|
|
101
|
+
|
|
102
|
+
@property
|
|
103
|
+
def Status(self):
|
|
104
|
+
"""状态:success、building、reviewFail、releaseSuccess、underReview
|
|
105
|
+
:rtype: str
|
|
106
|
+
"""
|
|
107
|
+
return self._Status
|
|
108
|
+
|
|
109
|
+
@Status.setter
|
|
110
|
+
def Status(self, Status):
|
|
111
|
+
self._Status = Status
|
|
112
|
+
|
|
113
|
+
@property
|
|
114
|
+
def RequestId(self):
|
|
115
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
116
|
+
:rtype: str
|
|
117
|
+
"""
|
|
118
|
+
return self._RequestId
|
|
119
|
+
|
|
120
|
+
@RequestId.setter
|
|
121
|
+
def RequestId(self, RequestId):
|
|
122
|
+
self._RequestId = RequestId
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
def _deserialize(self, params):
|
|
126
|
+
self._Status = params.get("Status")
|
|
127
|
+
self._RequestId = params.get("RequestId")
|
|
128
|
+
|
|
129
|
+
|
|
21
130
|
class CreateKnowledgeSetRequest(AbstractModel):
|
|
22
131
|
"""CreateKnowledgeSet请求参数结构体
|
|
23
132
|
|
|
@@ -1011,6 +1120,70 @@ class DataSourceQueryOption(AbstractModel):
|
|
|
1011
1120
|
|
|
1012
1121
|
|
|
1013
1122
|
|
|
1123
|
+
class DeleteAppBindWxAppRequest(AbstractModel):
|
|
1124
|
+
"""DeleteAppBindWxApp请求参数结构体
|
|
1125
|
+
|
|
1126
|
+
"""
|
|
1127
|
+
|
|
1128
|
+
def __init__(self):
|
|
1129
|
+
r"""
|
|
1130
|
+
:param _WeappId: 应用id
|
|
1131
|
+
:type WeappId: str
|
|
1132
|
+
"""
|
|
1133
|
+
self._WeappId = None
|
|
1134
|
+
|
|
1135
|
+
@property
|
|
1136
|
+
def WeappId(self):
|
|
1137
|
+
"""应用id
|
|
1138
|
+
:rtype: str
|
|
1139
|
+
"""
|
|
1140
|
+
return self._WeappId
|
|
1141
|
+
|
|
1142
|
+
@WeappId.setter
|
|
1143
|
+
def WeappId(self, WeappId):
|
|
1144
|
+
self._WeappId = WeappId
|
|
1145
|
+
|
|
1146
|
+
|
|
1147
|
+
def _deserialize(self, params):
|
|
1148
|
+
self._WeappId = params.get("WeappId")
|
|
1149
|
+
memeber_set = set(params.keys())
|
|
1150
|
+
for name, value in vars(self).items():
|
|
1151
|
+
property_name = name[1:]
|
|
1152
|
+
if property_name in memeber_set:
|
|
1153
|
+
memeber_set.remove(property_name)
|
|
1154
|
+
if len(memeber_set) > 0:
|
|
1155
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
1156
|
+
|
|
1157
|
+
|
|
1158
|
+
|
|
1159
|
+
class DeleteAppBindWxAppResponse(AbstractModel):
|
|
1160
|
+
"""DeleteAppBindWxApp返回参数结构体
|
|
1161
|
+
|
|
1162
|
+
"""
|
|
1163
|
+
|
|
1164
|
+
def __init__(self):
|
|
1165
|
+
r"""
|
|
1166
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1167
|
+
:type RequestId: str
|
|
1168
|
+
"""
|
|
1169
|
+
self._RequestId = None
|
|
1170
|
+
|
|
1171
|
+
@property
|
|
1172
|
+
def RequestId(self):
|
|
1173
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1174
|
+
:rtype: str
|
|
1175
|
+
"""
|
|
1176
|
+
return self._RequestId
|
|
1177
|
+
|
|
1178
|
+
@RequestId.setter
|
|
1179
|
+
def RequestId(self, RequestId):
|
|
1180
|
+
self._RequestId = RequestId
|
|
1181
|
+
|
|
1182
|
+
|
|
1183
|
+
def _deserialize(self, params):
|
|
1184
|
+
self._RequestId = params.get("RequestId")
|
|
1185
|
+
|
|
1186
|
+
|
|
1014
1187
|
class DeleteKnowledgeDocumentSetRequest(AbstractModel):
|
|
1015
1188
|
"""DeleteKnowledgeDocumentSet请求参数结构体
|
|
1016
1189
|
|
|
@@ -1239,6 +1412,177 @@ class DeleteKnowledgeSetResponse(AbstractModel):
|
|
|
1239
1412
|
self._RequestId = params.get("RequestId")
|
|
1240
1413
|
|
|
1241
1414
|
|
|
1415
|
+
class DeployAppRequest(AbstractModel):
|
|
1416
|
+
"""DeployApp请求参数结构体
|
|
1417
|
+
|
|
1418
|
+
"""
|
|
1419
|
+
|
|
1420
|
+
def __init__(self):
|
|
1421
|
+
r"""
|
|
1422
|
+
:param _EnvId: 环境ID
|
|
1423
|
+
:type EnvId: str
|
|
1424
|
+
:param _Id: 应用id
|
|
1425
|
+
:type Id: str
|
|
1426
|
+
:param _Mode: 发布体验preview/正式upload
|
|
1427
|
+
:type Mode: str
|
|
1428
|
+
:param _BuildType: 构建类型:mp、pc、web、adminPortal
|
|
1429
|
+
:type BuildType: str
|
|
1430
|
+
:param _SubAppIds: 子包数组
|
|
1431
|
+
:type SubAppIds: list of str
|
|
1432
|
+
"""
|
|
1433
|
+
self._EnvId = None
|
|
1434
|
+
self._Id = None
|
|
1435
|
+
self._Mode = None
|
|
1436
|
+
self._BuildType = None
|
|
1437
|
+
self._SubAppIds = None
|
|
1438
|
+
|
|
1439
|
+
@property
|
|
1440
|
+
def EnvId(self):
|
|
1441
|
+
"""环境ID
|
|
1442
|
+
:rtype: str
|
|
1443
|
+
"""
|
|
1444
|
+
return self._EnvId
|
|
1445
|
+
|
|
1446
|
+
@EnvId.setter
|
|
1447
|
+
def EnvId(self, EnvId):
|
|
1448
|
+
self._EnvId = EnvId
|
|
1449
|
+
|
|
1450
|
+
@property
|
|
1451
|
+
def Id(self):
|
|
1452
|
+
"""应用id
|
|
1453
|
+
:rtype: str
|
|
1454
|
+
"""
|
|
1455
|
+
return self._Id
|
|
1456
|
+
|
|
1457
|
+
@Id.setter
|
|
1458
|
+
def Id(self, Id):
|
|
1459
|
+
self._Id = Id
|
|
1460
|
+
|
|
1461
|
+
@property
|
|
1462
|
+
def Mode(self):
|
|
1463
|
+
"""发布体验preview/正式upload
|
|
1464
|
+
:rtype: str
|
|
1465
|
+
"""
|
|
1466
|
+
return self._Mode
|
|
1467
|
+
|
|
1468
|
+
@Mode.setter
|
|
1469
|
+
def Mode(self, Mode):
|
|
1470
|
+
self._Mode = Mode
|
|
1471
|
+
|
|
1472
|
+
@property
|
|
1473
|
+
def BuildType(self):
|
|
1474
|
+
"""构建类型:mp、pc、web、adminPortal
|
|
1475
|
+
:rtype: str
|
|
1476
|
+
"""
|
|
1477
|
+
return self._BuildType
|
|
1478
|
+
|
|
1479
|
+
@BuildType.setter
|
|
1480
|
+
def BuildType(self, BuildType):
|
|
1481
|
+
self._BuildType = BuildType
|
|
1482
|
+
|
|
1483
|
+
@property
|
|
1484
|
+
def SubAppIds(self):
|
|
1485
|
+
"""子包数组
|
|
1486
|
+
:rtype: list of str
|
|
1487
|
+
"""
|
|
1488
|
+
return self._SubAppIds
|
|
1489
|
+
|
|
1490
|
+
@SubAppIds.setter
|
|
1491
|
+
def SubAppIds(self, SubAppIds):
|
|
1492
|
+
self._SubAppIds = SubAppIds
|
|
1493
|
+
|
|
1494
|
+
|
|
1495
|
+
def _deserialize(self, params):
|
|
1496
|
+
self._EnvId = params.get("EnvId")
|
|
1497
|
+
self._Id = params.get("Id")
|
|
1498
|
+
self._Mode = params.get("Mode")
|
|
1499
|
+
self._BuildType = params.get("BuildType")
|
|
1500
|
+
self._SubAppIds = params.get("SubAppIds")
|
|
1501
|
+
memeber_set = set(params.keys())
|
|
1502
|
+
for name, value in vars(self).items():
|
|
1503
|
+
property_name = name[1:]
|
|
1504
|
+
if property_name in memeber_set:
|
|
1505
|
+
memeber_set.remove(property_name)
|
|
1506
|
+
if len(memeber_set) > 0:
|
|
1507
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
1508
|
+
|
|
1509
|
+
|
|
1510
|
+
|
|
1511
|
+
class DeployAppResponse(AbstractModel):
|
|
1512
|
+
"""DeployApp返回参数结构体
|
|
1513
|
+
|
|
1514
|
+
"""
|
|
1515
|
+
|
|
1516
|
+
def __init__(self):
|
|
1517
|
+
r"""
|
|
1518
|
+
:param _BuildId: 构建id
|
|
1519
|
+
:type BuildId: str
|
|
1520
|
+
:param _DeployErrCode: 发布错误code
|
|
1521
|
+
:type DeployErrCode: int
|
|
1522
|
+
:param _DeployErrMsg: 发布错误信息
|
|
1523
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1524
|
+
:type DeployErrMsg: str
|
|
1525
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1526
|
+
:type RequestId: str
|
|
1527
|
+
"""
|
|
1528
|
+
self._BuildId = None
|
|
1529
|
+
self._DeployErrCode = None
|
|
1530
|
+
self._DeployErrMsg = None
|
|
1531
|
+
self._RequestId = None
|
|
1532
|
+
|
|
1533
|
+
@property
|
|
1534
|
+
def BuildId(self):
|
|
1535
|
+
"""构建id
|
|
1536
|
+
:rtype: str
|
|
1537
|
+
"""
|
|
1538
|
+
return self._BuildId
|
|
1539
|
+
|
|
1540
|
+
@BuildId.setter
|
|
1541
|
+
def BuildId(self, BuildId):
|
|
1542
|
+
self._BuildId = BuildId
|
|
1543
|
+
|
|
1544
|
+
@property
|
|
1545
|
+
def DeployErrCode(self):
|
|
1546
|
+
"""发布错误code
|
|
1547
|
+
:rtype: int
|
|
1548
|
+
"""
|
|
1549
|
+
return self._DeployErrCode
|
|
1550
|
+
|
|
1551
|
+
@DeployErrCode.setter
|
|
1552
|
+
def DeployErrCode(self, DeployErrCode):
|
|
1553
|
+
self._DeployErrCode = DeployErrCode
|
|
1554
|
+
|
|
1555
|
+
@property
|
|
1556
|
+
def DeployErrMsg(self):
|
|
1557
|
+
"""发布错误信息
|
|
1558
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1559
|
+
:rtype: str
|
|
1560
|
+
"""
|
|
1561
|
+
return self._DeployErrMsg
|
|
1562
|
+
|
|
1563
|
+
@DeployErrMsg.setter
|
|
1564
|
+
def DeployErrMsg(self, DeployErrMsg):
|
|
1565
|
+
self._DeployErrMsg = DeployErrMsg
|
|
1566
|
+
|
|
1567
|
+
@property
|
|
1568
|
+
def RequestId(self):
|
|
1569
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1570
|
+
:rtype: str
|
|
1571
|
+
"""
|
|
1572
|
+
return self._RequestId
|
|
1573
|
+
|
|
1574
|
+
@RequestId.setter
|
|
1575
|
+
def RequestId(self, RequestId):
|
|
1576
|
+
self._RequestId = RequestId
|
|
1577
|
+
|
|
1578
|
+
|
|
1579
|
+
def _deserialize(self, params):
|
|
1580
|
+
self._BuildId = params.get("BuildId")
|
|
1581
|
+
self._DeployErrCode = params.get("DeployErrCode")
|
|
1582
|
+
self._DeployErrMsg = params.get("DeployErrMsg")
|
|
1583
|
+
self._RequestId = params.get("RequestId")
|
|
1584
|
+
|
|
1585
|
+
|
|
1242
1586
|
class DescribeDataSourceListRequest(AbstractModel):
|
|
1243
1587
|
"""DescribeDataSourceList请求参数结构体
|
|
1244
1588
|
|
|
@@ -2886,6 +3230,85 @@ class PageQuery(AbstractModel):
|
|
|
2886
3230
|
|
|
2887
3231
|
|
|
2888
3232
|
|
|
3233
|
+
class PutWxAppIdToWeAppRequest(AbstractModel):
|
|
3234
|
+
"""PutWxAppIdToWeApp请求参数结构体
|
|
3235
|
+
|
|
3236
|
+
"""
|
|
3237
|
+
|
|
3238
|
+
def __init__(self):
|
|
3239
|
+
r"""
|
|
3240
|
+
:param _WeAppId: 应用ID
|
|
3241
|
+
:type WeAppId: str
|
|
3242
|
+
:param _WxAppId: 微信AppId
|
|
3243
|
+
:type WxAppId: str
|
|
3244
|
+
"""
|
|
3245
|
+
self._WeAppId = None
|
|
3246
|
+
self._WxAppId = None
|
|
3247
|
+
|
|
3248
|
+
@property
|
|
3249
|
+
def WeAppId(self):
|
|
3250
|
+
"""应用ID
|
|
3251
|
+
:rtype: str
|
|
3252
|
+
"""
|
|
3253
|
+
return self._WeAppId
|
|
3254
|
+
|
|
3255
|
+
@WeAppId.setter
|
|
3256
|
+
def WeAppId(self, WeAppId):
|
|
3257
|
+
self._WeAppId = WeAppId
|
|
3258
|
+
|
|
3259
|
+
@property
|
|
3260
|
+
def WxAppId(self):
|
|
3261
|
+
"""微信AppId
|
|
3262
|
+
:rtype: str
|
|
3263
|
+
"""
|
|
3264
|
+
return self._WxAppId
|
|
3265
|
+
|
|
3266
|
+
@WxAppId.setter
|
|
3267
|
+
def WxAppId(self, WxAppId):
|
|
3268
|
+
self._WxAppId = WxAppId
|
|
3269
|
+
|
|
3270
|
+
|
|
3271
|
+
def _deserialize(self, params):
|
|
3272
|
+
self._WeAppId = params.get("WeAppId")
|
|
3273
|
+
self._WxAppId = params.get("WxAppId")
|
|
3274
|
+
memeber_set = set(params.keys())
|
|
3275
|
+
for name, value in vars(self).items():
|
|
3276
|
+
property_name = name[1:]
|
|
3277
|
+
if property_name in memeber_set:
|
|
3278
|
+
memeber_set.remove(property_name)
|
|
3279
|
+
if len(memeber_set) > 0:
|
|
3280
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
3281
|
+
|
|
3282
|
+
|
|
3283
|
+
|
|
3284
|
+
class PutWxAppIdToWeAppResponse(AbstractModel):
|
|
3285
|
+
"""PutWxAppIdToWeApp返回参数结构体
|
|
3286
|
+
|
|
3287
|
+
"""
|
|
3288
|
+
|
|
3289
|
+
def __init__(self):
|
|
3290
|
+
r"""
|
|
3291
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3292
|
+
:type RequestId: str
|
|
3293
|
+
"""
|
|
3294
|
+
self._RequestId = None
|
|
3295
|
+
|
|
3296
|
+
@property
|
|
3297
|
+
def RequestId(self):
|
|
3298
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3299
|
+
:rtype: str
|
|
3300
|
+
"""
|
|
3301
|
+
return self._RequestId
|
|
3302
|
+
|
|
3303
|
+
@RequestId.setter
|
|
3304
|
+
def RequestId(self, RequestId):
|
|
3305
|
+
self._RequestId = RequestId
|
|
3306
|
+
|
|
3307
|
+
|
|
3308
|
+
def _deserialize(self, params):
|
|
3309
|
+
self._RequestId = params.get("RequestId")
|
|
3310
|
+
|
|
3311
|
+
|
|
2889
3312
|
class QureyKnowledgeDocumentSet(AbstractModel):
|
|
2890
3313
|
"""搜索数据的集合
|
|
2891
3314
|
|
|
@@ -62405,17 +62405,25 @@ class TimeSpotCheck(AbstractModel):
|
|
|
62405
62405
|
|
|
62406
62406
|
def __init__(self):
|
|
62407
62407
|
r"""
|
|
62408
|
-
:param _CheckDuration:
|
|
62408
|
+
:param _CheckDuration: 每次循环检测的时长。取值范围(单位s):
|
|
62409
62409
|
|
|
62410
62410
|
- 最小值:10
|
|
62411
62411
|
- 最大值:86400
|
|
62412
62412
|
|
|
62413
62413
|
:type CheckDuration: int
|
|
62414
|
-
:param _CheckInterval:
|
|
62414
|
+
:param _CheckInterval: 抽检间隔,表示在一次检测结束后,等待多长时间后,再次检测。取值范围(单位 s):
|
|
62415
|
+
- 最小值:10
|
|
62416
|
+
- 最大值:3600
|
|
62415
62417
|
:type CheckInterval: int
|
|
62416
|
-
:param _SkipDuration:
|
|
62418
|
+
:param _SkipDuration: 片头跳过时长。取值范围(单位 s):
|
|
62419
|
+
- 最小值:1
|
|
62420
|
+
- 最大值:1800
|
|
62417
62421
|
:type SkipDuration: int
|
|
62418
|
-
:param _CirclesNumber:
|
|
62422
|
+
:param _CirclesNumber: 循环次数。取值范围:
|
|
62423
|
+
- 最小值:0
|
|
62424
|
+
- 最大值:1000
|
|
62425
|
+
|
|
62426
|
+
取值为 0 或为空时,表示循环至视频结束。
|
|
62419
62427
|
:type CirclesNumber: int
|
|
62420
62428
|
"""
|
|
62421
62429
|
self._CheckDuration = None
|
|
@@ -62425,7 +62433,7 @@ class TimeSpotCheck(AbstractModel):
|
|
|
62425
62433
|
|
|
62426
62434
|
@property
|
|
62427
62435
|
def CheckDuration(self):
|
|
62428
|
-
"""
|
|
62436
|
+
"""每次循环检测的时长。取值范围(单位s):
|
|
62429
62437
|
|
|
62430
62438
|
- 最小值:10
|
|
62431
62439
|
- 最大值:86400
|
|
@@ -62440,7 +62448,9 @@ class TimeSpotCheck(AbstractModel):
|
|
|
62440
62448
|
|
|
62441
62449
|
@property
|
|
62442
62450
|
def CheckInterval(self):
|
|
62443
|
-
"""
|
|
62451
|
+
"""抽检间隔,表示在一次检测结束后,等待多长时间后,再次检测。取值范围(单位 s):
|
|
62452
|
+
- 最小值:10
|
|
62453
|
+
- 最大值:3600
|
|
62444
62454
|
:rtype: int
|
|
62445
62455
|
"""
|
|
62446
62456
|
return self._CheckInterval
|
|
@@ -62451,7 +62461,9 @@ class TimeSpotCheck(AbstractModel):
|
|
|
62451
62461
|
|
|
62452
62462
|
@property
|
|
62453
62463
|
def SkipDuration(self):
|
|
62454
|
-
"""
|
|
62464
|
+
"""片头跳过时长。取值范围(单位 s):
|
|
62465
|
+
- 最小值:1
|
|
62466
|
+
- 最大值:1800
|
|
62455
62467
|
:rtype: int
|
|
62456
62468
|
"""
|
|
62457
62469
|
return self._SkipDuration
|
|
@@ -62462,7 +62474,11 @@ class TimeSpotCheck(AbstractModel):
|
|
|
62462
62474
|
|
|
62463
62475
|
@property
|
|
62464
62476
|
def CirclesNumber(self):
|
|
62465
|
-
"""
|
|
62477
|
+
"""循环次数。取值范围:
|
|
62478
|
+
- 最小值:0
|
|
62479
|
+
- 最大值:1000
|
|
62480
|
+
|
|
62481
|
+
取值为 0 或为空时,表示循环至视频结束。
|
|
62466
62482
|
:rtype: int
|
|
62467
62483
|
"""
|
|
62468
62484
|
return self._CirclesNumber
|