tencentcloud-sdk-python 3.0.1363__py2.py3-none-any.whl → 3.0.1365__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.
Files changed (52) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/cat/v20180409/cat_client.py +23 -0
  3. tencentcloud/cat/v20180409/models.py +199 -0
  4. tencentcloud/cbs/v20170312/models.py +26 -12
  5. tencentcloud/ccc/v20200210/models.py +71 -56
  6. tencentcloud/cdc/v20201214/cdc_client.py +46 -0
  7. tencentcloud/cdc/v20201214/errorcodes.py +18 -0
  8. tencentcloud/cdc/v20201214/models.py +173 -0
  9. tencentcloud/cdn/v20180606/models.py +15 -0
  10. tencentcloud/cdwpg/v20201230/models.py +0 -12
  11. tencentcloud/clb/v20180317/clb_client.py +1 -1
  12. tencentcloud/clb/v20180317/models.py +262 -368
  13. tencentcloud/cls/v20201016/models.py +35 -0
  14. tencentcloud/cvm/v20170312/errorcodes.py +1 -1
  15. tencentcloud/cvm/v20170312/models.py +34 -0
  16. tencentcloud/dbbrain/v20210527/dbbrain_client.py +23 -0
  17. tencentcloud/dbbrain/v20210527/models.py +109 -0
  18. tencentcloud/dlc/v20210125/dlc_client.py +23 -0
  19. tencentcloud/dlc/v20210125/models.py +124 -0
  20. tencentcloud/dts/v20211206/models.py +1 -1
  21. tencentcloud/ess/v20201111/models.py +16 -12
  22. tencentcloud/gwlb/v20240906/errorcodes.py +3 -0
  23. tencentcloud/gwlb/v20240906/gwlb_client.py +0 -1
  24. tencentcloud/gwlb/v20240906/models.py +4 -4
  25. tencentcloud/hunyuan/v20230901/models.py +2 -2
  26. tencentcloud/ioa/v20220601/ioa_client.py +46 -0
  27. tencentcloud/ioa/v20220601/models.py +538 -0
  28. tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +3 -1
  29. tencentcloud/lke/v20231130/errorcodes.py +3 -0
  30. tencentcloud/lke/v20231130/lke_client.py +4 -2
  31. tencentcloud/lke/v20231130/models.py +167 -6
  32. tencentcloud/lkeap/v20240522/lkeap_client.py +3 -3
  33. tencentcloud/lkeap/v20240522/models.py +2 -2
  34. tencentcloud/monitor/v20180724/models.py +8 -8
  35. tencentcloud/monitor/v20180724/monitor_client.py +1 -1
  36. tencentcloud/mps/v20190612/errorcodes.py +6 -0
  37. tencentcloud/mps/v20190612/models.py +133 -8
  38. tencentcloud/ssm/v20190923/models.py +45 -0
  39. tencentcloud/tds/v20220801/models.py +441 -0
  40. tencentcloud/tds/v20220801/tds_client.py +23 -0
  41. tencentcloud/tem/v20210701/models.py +0 -498
  42. tencentcloud/teo/v20220901/errorcodes.py +3 -0
  43. tencentcloud/teo/v20220901/models.py +12 -116
  44. tencentcloud/tsf/v20180326/models.py +15 -0
  45. tencentcloud/vpc/v20170312/models.py +710 -0
  46. tencentcloud/vpc/v20170312/vpc_client.py +115 -0
  47. tencentcloud/waf/v20180125/models.py +378 -0
  48. {tencentcloud_sdk_python-3.0.1363.dist-info → tencentcloud_sdk_python-3.0.1365.dist-info}/METADATA +1 -1
  49. {tencentcloud_sdk_python-3.0.1363.dist-info → tencentcloud_sdk_python-3.0.1365.dist-info}/RECORD +52 -52
  50. {tencentcloud_sdk_python-3.0.1363.dist-info → tencentcloud_sdk_python-3.0.1365.dist-info}/LICENSE +0 -0
  51. {tencentcloud_sdk_python-3.0.1363.dist-info → tencentcloud_sdk_python-3.0.1365.dist-info}/WHEEL +0 -0
  52. {tencentcloud_sdk_python-3.0.1363.dist-info → tencentcloud_sdk_python-3.0.1365.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py CHANGED
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1363'
17
+ __version__ = '3.0.1365'
@@ -118,6 +118,29 @@ class CatClient(AbstractClient):
118
118
  raise TencentCloudSDKException(type(e).__name__, str(e))
119
119
 
120
120
 
121
+ def DescribeNodeGroups(self, request):
122
+ """获取拨测点组(可用性拨测点组、高级拨测点组、我的拨测点组)
123
+
124
+ :param request: Request instance for DescribeNodeGroups.
125
+ :type request: :class:`tencentcloud.cat.v20180409.models.DescribeNodeGroupsRequest`
126
+ :rtype: :class:`tencentcloud.cat.v20180409.models.DescribeNodeGroupsResponse`
127
+
128
+ """
129
+ try:
130
+ params = request._serialize()
131
+ headers = request.headers
132
+ body = self.call("DescribeNodeGroups", params, headers=headers)
133
+ response = json.loads(body)
134
+ model = models.DescribeNodeGroupsResponse()
135
+ model._deserialize(response["Response"])
136
+ return model
137
+ except Exception as e:
138
+ if isinstance(e, TencentCloudSDKException):
139
+ raise
140
+ else:
141
+ raise TencentCloudSDKException(type(e).__name__, str(e))
142
+
143
+
121
144
  def DescribeNodes(self, request):
122
145
  """获取拨测节点
123
146
 
@@ -903,6 +903,205 @@ class DescribeInstantTasksResponse(AbstractModel):
903
903
  self._RequestId = params.get("RequestId")
904
904
 
905
905
 
906
+ class DescribeNodeGroupsRequest(AbstractModel):
907
+ """DescribeNodeGroups请求参数结构体
908
+
909
+ """
910
+
911
+ def __init__(self):
912
+ r"""
913
+ :param _NodeType: 节点类型。0: 全部 1: IDC 2: LastMile 3: Mobile,不填默认为0
914
+ :type NodeType: list of int
915
+ :param _TaskCategory: 节点分类。0: 全部 1: PC 2:Mobile,不填默认为0。PC分类包括IDC和LM节点类型,Mobile分类包括Mobile节点类型。与NodeType参数取交集。
916
+ :type TaskCategory: int
917
+ :param _IPType: IP类型。0: 全部 1: IPv4 2: IPv6,不填默认为0
918
+ :type IPType: int
919
+ :param _Name: 拨测点描述关键词。
920
+ :type Name: str
921
+ :param _RegionID: 地域ID。0: 精选拨测点 1: 国内 2: 港澳台 3: 亚太 4: 欧洲与美洲 5: 非洲与大洋洲,不填默认为0
922
+ :type RegionID: int
923
+ :param _DistrictID: 省份或国家ID。0表示全部,不填默认为0
924
+ :type DistrictID: int
925
+ :param _NetServiceID: 运营商ID。0: 全部 1: 中国电信 2: 中国联通 3: 中国移动 99: 其他,不填默认为0
926
+ :type NetServiceID: int
927
+ :param _NodeGroupType: 节点组类型。0: 高级拨测点组 1: 可用性节点 2: 我的拨测点组,不填默认为0
928
+ :type NodeGroupType: int
929
+ :param _TaskType: 任务类型,如1、2、3、4、5、6、7;1-页面性能、2-文件上传、3-文件下载、4-端口性能、5-网络质量、6-音视频体验、7-域名whois,不填默认为0,不对任务类型做过滤
930
+ :type TaskType: int
931
+ :param _ProbeType: 测试类型,包含定时测试与即时测试。0-定时拨测,其它表示即时拨测。
932
+ :type ProbeType: int
933
+ """
934
+ self._NodeType = None
935
+ self._TaskCategory = None
936
+ self._IPType = None
937
+ self._Name = None
938
+ self._RegionID = None
939
+ self._DistrictID = None
940
+ self._NetServiceID = None
941
+ self._NodeGroupType = None
942
+ self._TaskType = None
943
+ self._ProbeType = None
944
+
945
+ @property
946
+ def NodeType(self):
947
+ """节点类型。0: 全部 1: IDC 2: LastMile 3: Mobile,不填默认为0
948
+ :rtype: list of int
949
+ """
950
+ return self._NodeType
951
+
952
+ @NodeType.setter
953
+ def NodeType(self, NodeType):
954
+ self._NodeType = NodeType
955
+
956
+ @property
957
+ def TaskCategory(self):
958
+ """节点分类。0: 全部 1: PC 2:Mobile,不填默认为0。PC分类包括IDC和LM节点类型,Mobile分类包括Mobile节点类型。与NodeType参数取交集。
959
+ :rtype: int
960
+ """
961
+ return self._TaskCategory
962
+
963
+ @TaskCategory.setter
964
+ def TaskCategory(self, TaskCategory):
965
+ self._TaskCategory = TaskCategory
966
+
967
+ @property
968
+ def IPType(self):
969
+ """IP类型。0: 全部 1: IPv4 2: IPv6,不填默认为0
970
+ :rtype: int
971
+ """
972
+ return self._IPType
973
+
974
+ @IPType.setter
975
+ def IPType(self, IPType):
976
+ self._IPType = IPType
977
+
978
+ @property
979
+ def Name(self):
980
+ """拨测点描述关键词。
981
+ :rtype: str
982
+ """
983
+ return self._Name
984
+
985
+ @Name.setter
986
+ def Name(self, Name):
987
+ self._Name = Name
988
+
989
+ @property
990
+ def RegionID(self):
991
+ """地域ID。0: 精选拨测点 1: 国内 2: 港澳台 3: 亚太 4: 欧洲与美洲 5: 非洲与大洋洲,不填默认为0
992
+ :rtype: int
993
+ """
994
+ return self._RegionID
995
+
996
+ @RegionID.setter
997
+ def RegionID(self, RegionID):
998
+ self._RegionID = RegionID
999
+
1000
+ @property
1001
+ def DistrictID(self):
1002
+ """省份或国家ID。0表示全部,不填默认为0
1003
+ :rtype: int
1004
+ """
1005
+ return self._DistrictID
1006
+
1007
+ @DistrictID.setter
1008
+ def DistrictID(self, DistrictID):
1009
+ self._DistrictID = DistrictID
1010
+
1011
+ @property
1012
+ def NetServiceID(self):
1013
+ """运营商ID。0: 全部 1: 中国电信 2: 中国联通 3: 中国移动 99: 其他,不填默认为0
1014
+ :rtype: int
1015
+ """
1016
+ return self._NetServiceID
1017
+
1018
+ @NetServiceID.setter
1019
+ def NetServiceID(self, NetServiceID):
1020
+ self._NetServiceID = NetServiceID
1021
+
1022
+ @property
1023
+ def NodeGroupType(self):
1024
+ """节点组类型。0: 高级拨测点组 1: 可用性节点 2: 我的拨测点组,不填默认为0
1025
+ :rtype: int
1026
+ """
1027
+ return self._NodeGroupType
1028
+
1029
+ @NodeGroupType.setter
1030
+ def NodeGroupType(self, NodeGroupType):
1031
+ self._NodeGroupType = NodeGroupType
1032
+
1033
+ @property
1034
+ def TaskType(self):
1035
+ """任务类型,如1、2、3、4、5、6、7;1-页面性能、2-文件上传、3-文件下载、4-端口性能、5-网络质量、6-音视频体验、7-域名whois,不填默认为0,不对任务类型做过滤
1036
+ :rtype: int
1037
+ """
1038
+ return self._TaskType
1039
+
1040
+ @TaskType.setter
1041
+ def TaskType(self, TaskType):
1042
+ self._TaskType = TaskType
1043
+
1044
+ @property
1045
+ def ProbeType(self):
1046
+ """测试类型,包含定时测试与即时测试。0-定时拨测,其它表示即时拨测。
1047
+ :rtype: int
1048
+ """
1049
+ return self._ProbeType
1050
+
1051
+ @ProbeType.setter
1052
+ def ProbeType(self, ProbeType):
1053
+ self._ProbeType = ProbeType
1054
+
1055
+
1056
+ def _deserialize(self, params):
1057
+ self._NodeType = params.get("NodeType")
1058
+ self._TaskCategory = params.get("TaskCategory")
1059
+ self._IPType = params.get("IPType")
1060
+ self._Name = params.get("Name")
1061
+ self._RegionID = params.get("RegionID")
1062
+ self._DistrictID = params.get("DistrictID")
1063
+ self._NetServiceID = params.get("NetServiceID")
1064
+ self._NodeGroupType = params.get("NodeGroupType")
1065
+ self._TaskType = params.get("TaskType")
1066
+ self._ProbeType = params.get("ProbeType")
1067
+ memeber_set = set(params.keys())
1068
+ for name, value in vars(self).items():
1069
+ property_name = name[1:]
1070
+ if property_name in memeber_set:
1071
+ memeber_set.remove(property_name)
1072
+ if len(memeber_set) > 0:
1073
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
1074
+
1075
+
1076
+
1077
+ class DescribeNodeGroupsResponse(AbstractModel):
1078
+ """DescribeNodeGroups返回参数结构体
1079
+
1080
+ """
1081
+
1082
+ def __init__(self):
1083
+ r"""
1084
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1085
+ :type RequestId: str
1086
+ """
1087
+ self._RequestId = None
1088
+
1089
+ @property
1090
+ def RequestId(self):
1091
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1092
+ :rtype: str
1093
+ """
1094
+ return self._RequestId
1095
+
1096
+ @RequestId.setter
1097
+ def RequestId(self, RequestId):
1098
+ self._RequestId = RequestId
1099
+
1100
+
1101
+ def _deserialize(self, params):
1102
+ self._RequestId = params.get("RequestId")
1103
+
1104
+
906
1105
  class DescribeNodesRequest(AbstractModel):
907
1106
  """DescribeNodes请求参数结构体
908
1107
 
@@ -4079,17 +4079,24 @@ class DescribeSnapshotsRequest(AbstractModel):
4079
4079
  r"""
4080
4080
  :param _SnapshotIds: 要查询快照的ID列表。参数不支持同时指定`SnapshotIds`和`Filters`。
4081
4081
  :type SnapshotIds: list of str
4082
- :param _Filters: 过滤条件。参数不支持同时指定`SnapshotIds`和`Filters`。<br><li>snapshot-id - Array of String - 是否必填:否 -(过滤条件)按照快照的ID过滤。快照ID形如:`snap-11112222`。<br><li>snapshot-name - Array of String - 是否必填:否 -(过滤条件)按照快照名称过滤。<br><li>snapshot-state - Array of String - 是否必填:否 -(过滤条件)按照快照状态过滤。 (NORMAL:正常 | CREATING:创建中 | ROLLBACKING:回滚中。)<br><li>disk-usage - Array of String - 是否必填:否 -(过滤条件)按创建快照的云盘类型过滤。 (SYSTEM_DISK:代表系统盘 | DATA_DISK:代表数据盘。)<br><li>project-id - Array of String - 是否必填:否 -(过滤条件)按云硬盘所属项目ID过滤。<br><li>disk-id - Array of String - 是否必填:否 -(过滤条件)按照创建快照的云硬盘ID过滤。<br><li>zone - Array of String - 是否必填:否 -(过滤条件)按照[可用区](/document/product/213/15753#ZoneInfo)过滤。<br><li>encrypt - Array of String - 是否必填:否 -(过滤条件)按是否加密盘快照过滤。 (TRUE:表示加密盘快照 | FALSE:表示非加密盘快照。)
4083
- <li>snapshot-type- Array of String - 是否必填:否 -(过滤条件)根据snapshot-type指定的快照类型查询对应的快照。
4084
- (SHARED_SNAPSHOT:表示共享过来的快照 | PRIVATE_SNAPSHOT:表示自己私有快照。)
4082
+ :param _Filters: 过滤条件。参数不支持同时指定SnapshotIdsFilters。<br><ul><li>snapshot-id<ul><li>按照云硬盘快照ID进行过滤</li><li>类型:String</li><li>必选:否</li></ul></li><li>snapshot-name<ul><li>按照云硬盘快照名称进行过滤</li><li>类型:String</li><li>必选:否</li></ul></li><li>snapshot-state<ul><li>按照云硬盘快照状态进行过滤</li><li>类型:String</li><li>必选:否</li><li>取值范围:<ul><li><code>NORMAL</code>:正常 </li><li><code>CREATING</code>:创建中 </li><li><code>ROLLBACKING</code>:回滚中 </li><li><code>COPYING_FROM_REMOTE</code>:跨地域复制中 </li><li><code>CHECKING_COPIED</code>:复制校验中</li><li><code>TORECYCLE</code>:待回收</li></ul></li></ul></li><li>disk-usage<ul><li>按照云硬盘使用用途进行过滤</li><li>类型:String</li><li>必选:否</li><li>取值范围:<ul><li><code>SYSTEM_DISK</code>:代表系统盘</li><li><code>DATA_DISK</code>:代表数据盘</li></ul></li></ul></li><li>project-id<ul><li>按云硬盘所属项目ID过滤</li><li>类型:String</li><li>必选:否</li></ul></li><li>disk-id<ul><li>按照云硬盘ID进行过滤,一次最多只能传入10个值</li><li>类型:String</li><li>必选:否</li></ul></li><li>encrypt<ul><li>按是否加密进行过滤</li><li>类型:String</li><li>必选:否</li></ul></li><li>snapshot-type<ul><li>按快照归属类型查询</li><li>类型:String</li><li>必选:否</li><li>取值范围:<ul><li><code>SHARED_SNAPSHOT</code>:表示共享过来的快照</li><li><code>PRIVATE_SNAPSHOT</code>:表示自己的私有快照</li></ul></li></ul></li></ul>
4085
4083
  :type Filters: list of Filter
4086
4084
  :param _Limit: 返回数量,默认为20,最大值为100。关于`Limit`的更进一步介绍请参考 API [简介](/document/product/362/15633)中的相关小节。
4087
4085
  :type Limit: int
4088
- :param _OrderField: 快照列表排序的依据字段。取值范围:<br><li>CREATE_TIME:依据快照的创建时间排序<br>默认按创建时间排序。
4086
+ :param _OrderField: 快照列表排序的依据字段。取值范围:
4087
+ <ul>
4088
+ <li>CREATE_TIME:依据快照的创建时间排序</li>
4089
+ <li>默认按创建时间排序</li>
4090
+ </ul>
4089
4091
  :type OrderField: str
4090
4092
  :param _Offset: 偏移量,默认为0。关于`Offset`的更进一步介绍请参考API[简介](/document/product/362/15633)中的相关小节。
4091
4093
  :type Offset: int
4092
- :param _Order: 输出云盘列表的排列顺序。取值范围:<br><li>ASC:升序排列<br><li>DESC:降序排列。
4094
+ :param _Order: 输出云盘列表的排列顺序。取值范围:
4095
+ <ul>
4096
+ <li>ASC:升序排列</li>
4097
+ <li>DESC:降序排列。</li>
4098
+ </ul>
4099
+
4093
4100
  :type Order: str
4094
4101
  """
4095
4102
  self._SnapshotIds = None
@@ -4112,9 +4119,7 @@ class DescribeSnapshotsRequest(AbstractModel):
4112
4119
 
4113
4120
  @property
4114
4121
  def Filters(self):
4115
- """过滤条件。参数不支持同时指定`SnapshotIds`和`Filters`。<br><li>snapshot-id - Array of String - 是否必填:否 -(过滤条件)按照快照的ID过滤。快照ID形如:`snap-11112222`。<br><li>snapshot-name - Array of String - 是否必填:否 -(过滤条件)按照快照名称过滤。<br><li>snapshot-state - Array of String - 是否必填:否 -(过滤条件)按照快照状态过滤。 (NORMAL:正常 | CREATING:创建中 | ROLLBACKING:回滚中。)<br><li>disk-usage - Array of String - 是否必填:否 -(过滤条件)按创建快照的云盘类型过滤。 (SYSTEM_DISK:代表系统盘 | DATA_DISK:代表数据盘。)<br><li>project-id - Array of String - 是否必填:否 -(过滤条件)按云硬盘所属项目ID过滤。<br><li>disk-id - Array of String - 是否必填:否 -(过滤条件)按照创建快照的云硬盘ID过滤。<br><li>zone - Array of String - 是否必填:否 -(过滤条件)按照[可用区](/document/product/213/15753#ZoneInfo)过滤。<br><li>encrypt - Array of String - 是否必填:否 -(过滤条件)按是否加密盘快照过滤。 (TRUE:表示加密盘快照 | FALSE:表示非加密盘快照。)
4116
- <li>snapshot-type- Array of String - 是否必填:否 -(过滤条件)根据snapshot-type指定的快照类型查询对应的快照。
4117
- (SHARED_SNAPSHOT:表示共享过来的快照 | PRIVATE_SNAPSHOT:表示自己私有快照。)
4122
+ """过滤条件。参数不支持同时指定SnapshotIdsFilters。<br><ul><li>snapshot-id<ul><li>按照云硬盘快照ID进行过滤</li><li>类型:String</li><li>必选:否</li></ul></li><li>snapshot-name<ul><li>按照云硬盘快照名称进行过滤</li><li>类型:String</li><li>必选:否</li></ul></li><li>snapshot-state<ul><li>按照云硬盘快照状态进行过滤</li><li>类型:String</li><li>必选:否</li><li>取值范围:<ul><li><code>NORMAL</code>:正常 </li><li><code>CREATING</code>:创建中 </li><li><code>ROLLBACKING</code>:回滚中 </li><li><code>COPYING_FROM_REMOTE</code>:跨地域复制中 </li><li><code>CHECKING_COPIED</code>:复制校验中</li><li><code>TORECYCLE</code>:待回收</li></ul></li></ul></li><li>disk-usage<ul><li>按照云硬盘使用用途进行过滤</li><li>类型:String</li><li>必选:否</li><li>取值范围:<ul><li><code>SYSTEM_DISK</code>:代表系统盘</li><li><code>DATA_DISK</code>:代表数据盘</li></ul></li></ul></li><li>project-id<ul><li>按云硬盘所属项目ID过滤</li><li>类型:String</li><li>必选:否</li></ul></li><li>disk-id<ul><li>按照云硬盘ID进行过滤,一次最多只能传入10个值</li><li>类型:String</li><li>必选:否</li></ul></li><li>encrypt<ul><li>按是否加密进行过滤</li><li>类型:String</li><li>必选:否</li></ul></li><li>snapshot-type<ul><li>按快照归属类型查询</li><li>类型:String</li><li>必选:否</li><li>取值范围:<ul><li><code>SHARED_SNAPSHOT</code>:表示共享过来的快照</li><li><code>PRIVATE_SNAPSHOT</code>:表示自己的私有快照</li></ul></li></ul></li></ul>
4118
4123
  :rtype: list of Filter
4119
4124
  """
4120
4125
  return self._Filters
@@ -4136,7 +4141,11 @@ class DescribeSnapshotsRequest(AbstractModel):
4136
4141
 
4137
4142
  @property
4138
4143
  def OrderField(self):
4139
- """快照列表排序的依据字段。取值范围:<br><li>CREATE_TIME:依据快照的创建时间排序<br>默认按创建时间排序。
4144
+ """快照列表排序的依据字段。取值范围:
4145
+ <ul>
4146
+ <li>CREATE_TIME:依据快照的创建时间排序</li>
4147
+ <li>默认按创建时间排序</li>
4148
+ </ul>
4140
4149
  :rtype: str
4141
4150
  """
4142
4151
  return self._OrderField
@@ -4158,7 +4167,12 @@ class DescribeSnapshotsRequest(AbstractModel):
4158
4167
 
4159
4168
  @property
4160
4169
  def Order(self):
4161
- """输出云盘列表的排列顺序。取值范围:<br><li>ASC:升序排列<br><li>DESC:降序排列。
4170
+ """输出云盘列表的排列顺序。取值范围:
4171
+ <ul>
4172
+ <li>ASC:升序排列</li>
4173
+ <li>DESC:降序排列。</li>
4174
+ </ul>
4175
+
4162
4176
  :rtype: str
4163
4177
  """
4164
4178
  return self._Order
@@ -6563,7 +6577,7 @@ class ModifyAutoSnapshotPolicyAttributeRequest(AbstractModel):
6563
6577
 
6564
6578
  def __init__(self):
6565
6579
  r"""
6566
- :param _AutoSnapshotPolicyId: 定期快照策略ID
6580
+ :param _AutoSnapshotPolicyId: 定期快照策略ID。可以通过[查询定期快照策略](https://cloud.tencent.com/document/product/362/33556)API查询。
6567
6581
  :type AutoSnapshotPolicyId: str
6568
6582
  :param _IsActivated: 是否激活定期快照策略,FALSE表示未激活,TRUE表示激活,默认为TRUE。
6569
6583
  :type IsActivated: bool
@@ -6585,7 +6599,7 @@ class ModifyAutoSnapshotPolicyAttributeRequest(AbstractModel):
6585
6599
 
6586
6600
  @property
6587
6601
  def AutoSnapshotPolicyId(self):
6588
- """定期快照策略ID
6602
+ """定期快照策略ID。可以通过[查询定期快照策略](https://cloud.tencent.com/document/product/362/33556)API查询。
6589
6603
  :rtype: str
6590
6604
  """
6591
6605
  return self._AutoSnapshotPolicyId
@@ -15533,6 +15533,8 @@ class TelCdrInfo(AbstractModel):
15533
15533
  :type Time: int
15534
15534
  :param _Direction: 呼入呼出方向 0 呼入 1 呼出
15535
15535
  :type Direction: int
15536
+ :param _CallType: 通话类型 1 呼出 2 呼入 3 音频呼入 5 预测式外呼 6 内线呼叫
15537
+ :type CallType: int
15536
15538
  :param _Duration: 通话时长
15537
15539
  :type Duration: int
15538
15540
  :param _RecordURL: 录音信息
@@ -15545,15 +15547,15 @@ class TelCdrInfo(AbstractModel):
15545
15547
 
15546
15548
  **场景 EndStatus EndStatusString 状态说明**
15547
15549
 
15548
- 电话呼入&呼出 1 ok 正常结束
15550
+ 电话呼入&呼出 1 ok 正常通话
15549
15551
 
15550
- 电话呼入&呼出 0 error 系统错误
15552
+ 电话呼入&呼出 0 error 异常结束
15551
15553
 
15552
15554
  电话呼入 102 ivrGiveUp IVR 期间用户放弃
15553
15555
 
15554
- 电话呼入 103 waitingGiveUp 会话排队期间用户放弃
15556
+ 电话呼入 103 waitingGiveUp 排队时用户放弃
15555
15557
 
15556
- 电话呼入 104 ringingGiveUp 会话振铃期间用户放弃
15558
+ 电话呼入 104 ringingGiveUp 振铃时用户放弃
15557
15559
 
15558
15560
  电话呼入 105 noSeatOnline 无座席在线
15559
15561
 
@@ -15561,37 +15563,37 @@ class TelCdrInfo(AbstractModel):
15561
15563
 
15562
15564
  电话呼入 107 ivrEnd IVR 后直接结束
15563
15565
 
15564
- 电话呼入 100 blackList 呼入黑名单
15566
+ 电话呼入 100 blackList 黑名单
15565
15567
 
15566
15568
  电话呼出 2 unconnected 未接通
15567
15569
 
15568
15570
  电话呼出 108 restrictedCallee 被叫因高风险受限
15569
15571
 
15570
- 电话呼出 109 tooManyRequest 超频
15572
+ 电话呼出 109 tooManyRequest 外呼超频限制
15571
15573
 
15572
- 电话呼出 110 restrictedArea 外呼盲区
15574
+ 电话呼出 110 restrictedArea 外呼区域限制
15573
15575
 
15574
15576
  电话呼出 111 restrictedTime 外呼时间限制
15575
15577
 
15576
15578
  电话呼出 201 unknown 未知状态
15577
15579
 
15578
- 电话呼出 202 notAnswer 未接听
15580
+ 电话呼出 202 notAnswer 被叫未接听
15579
15581
 
15580
- 电话呼出 203 userReject 拒接挂断
15582
+ 电话呼出 203 userReject 被叫拒接挂断
15581
15583
 
15582
- 电话呼出 204 powerOff 关机
15584
+ 电话呼出 204 powerOff 被叫关机
15583
15585
 
15584
- 电话呼出 205 numberNotExist 空号
15586
+ 电话呼出 205 numberNotExist 被叫空号
15585
15587
 
15586
- 电话呼出 206 busy 通话中
15588
+ 电话呼出 206 busy 被叫忙
15587
15589
 
15588
- 电话呼出 207 outOfCredit 欠费
15590
+ 电话呼出 207 outOfCredit 被叫欠费
15589
15591
 
15590
15592
  电话呼出 208 operatorError 运营商线路异常
15591
15593
 
15592
15594
  电话呼出 209 callerCancel 主叫取消
15593
15595
 
15594
- 电话呼出 210 notInService 不在服务区
15596
+ 电话呼出 210 notInService 被叫不在服务区
15595
15597
 
15596
15598
  电话呼入&呼出 211 clientError 客户端错误
15597
15599
  电话呼出 212 carrierBlocked 运营商拦截
@@ -15620,15 +15622,15 @@ class TelCdrInfo(AbstractModel):
15620
15622
 
15621
15623
  **场景 EndStatus EndStatusString 状态说明**
15622
15624
 
15623
- 电话呼入&呼出 1 ok 正常结束
15625
+ 电话呼入&呼出 1 ok 正常通话
15624
15626
 
15625
- 电话呼入&呼出 0 error 系统错误
15627
+ 电话呼入&呼出 0 error 异常结束
15626
15628
 
15627
15629
  电话呼入 102 ivrGiveUp IVR 期间用户放弃
15628
15630
 
15629
- 电话呼入 103 waitingGiveUp 会话排队期间用户放弃
15631
+ 电话呼入 103 waitingGiveUp 排队时用户放弃
15630
15632
 
15631
- 电话呼入 104 ringingGiveUp 会话振铃期间用户放弃
15633
+ 电话呼入 104 ringingGiveUp 振铃时用户放弃
15632
15634
 
15633
15635
  电话呼入 105 noSeatOnline 无座席在线
15634
15636
 
@@ -15636,37 +15638,37 @@ class TelCdrInfo(AbstractModel):
15636
15638
 
15637
15639
  电话呼入 107 ivrEnd IVR 后直接结束
15638
15640
 
15639
- 电话呼入 100 blackList 呼入黑名单
15641
+ 电话呼入 100 blackList 黑名单
15640
15642
 
15641
15643
  电话呼出 2 unconnected 未接通
15642
15644
 
15643
15645
  电话呼出 108 restrictedCallee 被叫因高风险受限
15644
15646
 
15645
- 电话呼出 109 tooManyRequest 超频
15647
+ 电话呼出 109 tooManyRequest 外呼超频限制
15646
15648
 
15647
- 电话呼出 110 restrictedArea 外呼盲区
15649
+ 电话呼出 110 restrictedArea 外呼区域限制
15648
15650
 
15649
15651
  电话呼出 111 restrictedTime 外呼时间限制
15650
15652
 
15651
15653
  电话呼出 201 unknown 未知状态
15652
15654
 
15653
- 电话呼出 202 notAnswer 未接听
15655
+ 电话呼出 202 notAnswer 被叫未接听
15654
15656
 
15655
- 电话呼出 203 userReject 拒接挂断
15657
+ 电话呼出 203 userReject 被叫拒接挂断
15656
15658
 
15657
- 电话呼出 204 powerOff 关机
15659
+ 电话呼出 204 powerOff 被叫关机
15658
15660
 
15659
- 电话呼出 205 numberNotExist 空号
15661
+ 电话呼出 205 numberNotExist 被叫空号
15660
15662
 
15661
- 电话呼出 206 busy 通话中
15663
+ 电话呼出 206 busy 被叫忙
15662
15664
 
15663
- 电话呼出 207 outOfCredit 欠费
15665
+ 电话呼出 207 outOfCredit 被叫欠费
15664
15666
 
15665
15667
  电话呼出 208 operatorError 运营商线路异常
15666
15668
 
15667
15669
  电话呼出 209 callerCancel 主叫取消
15668
15670
 
15669
- 电话呼出 210 notInService 不在服务区
15671
+ 电话呼出 210 notInService 被叫不在服务区
15670
15672
 
15671
15673
  电话呼入&呼出 211 clientError 客户端错误
15672
15674
  电话呼出 212 carrierBlocked 运营商拦截
@@ -15716,6 +15718,7 @@ NotExists
15716
15718
  self._Callee = None
15717
15719
  self._Time = None
15718
15720
  self._Direction = None
15721
+ self._CallType = None
15719
15722
  self._Duration = None
15720
15723
  self._RecordURL = None
15721
15724
  self._RecordId = None
@@ -15794,6 +15797,17 @@ NotExists
15794
15797
  def Direction(self, Direction):
15795
15798
  self._Direction = Direction
15796
15799
 
15800
+ @property
15801
+ def CallType(self):
15802
+ """通话类型 1 呼出 2 呼入 3 音频呼入 5 预测式外呼 6 内线呼叫
15803
+ :rtype: int
15804
+ """
15805
+ return self._CallType
15806
+
15807
+ @CallType.setter
15808
+ def CallType(self, CallType):
15809
+ self._CallType = CallType
15810
+
15797
15811
  @property
15798
15812
  def Duration(self):
15799
15813
  """通话时长
@@ -15844,15 +15858,15 @@ NotExists
15844
15858
 
15845
15859
  **场景 EndStatus EndStatusString 状态说明**
15846
15860
 
15847
- 电话呼入&呼出 1 ok 正常结束
15861
+ 电话呼入&呼出 1 ok 正常通话
15848
15862
 
15849
- 电话呼入&呼出 0 error 系统错误
15863
+ 电话呼入&呼出 0 error 异常结束
15850
15864
 
15851
15865
  电话呼入 102 ivrGiveUp IVR 期间用户放弃
15852
15866
 
15853
- 电话呼入 103 waitingGiveUp 会话排队期间用户放弃
15867
+ 电话呼入 103 waitingGiveUp 排队时用户放弃
15854
15868
 
15855
- 电话呼入 104 ringingGiveUp 会话振铃期间用户放弃
15869
+ 电话呼入 104 ringingGiveUp 振铃时用户放弃
15856
15870
 
15857
15871
  电话呼入 105 noSeatOnline 无座席在线
15858
15872
 
@@ -15860,37 +15874,37 @@ NotExists
15860
15874
 
15861
15875
  电话呼入 107 ivrEnd IVR 后直接结束
15862
15876
 
15863
- 电话呼入 100 blackList 呼入黑名单
15877
+ 电话呼入 100 blackList 黑名单
15864
15878
 
15865
15879
  电话呼出 2 unconnected 未接通
15866
15880
 
15867
15881
  电话呼出 108 restrictedCallee 被叫因高风险受限
15868
15882
 
15869
- 电话呼出 109 tooManyRequest 超频
15883
+ 电话呼出 109 tooManyRequest 外呼超频限制
15870
15884
 
15871
- 电话呼出 110 restrictedArea 外呼盲区
15885
+ 电话呼出 110 restrictedArea 外呼区域限制
15872
15886
 
15873
15887
  电话呼出 111 restrictedTime 外呼时间限制
15874
15888
 
15875
15889
  电话呼出 201 unknown 未知状态
15876
15890
 
15877
- 电话呼出 202 notAnswer 未接听
15891
+ 电话呼出 202 notAnswer 被叫未接听
15878
15892
 
15879
- 电话呼出 203 userReject 拒接挂断
15893
+ 电话呼出 203 userReject 被叫拒接挂断
15880
15894
 
15881
- 电话呼出 204 powerOff 关机
15895
+ 电话呼出 204 powerOff 被叫关机
15882
15896
 
15883
- 电话呼出 205 numberNotExist 空号
15897
+ 电话呼出 205 numberNotExist 被叫空号
15884
15898
 
15885
- 电话呼出 206 busy 通话中
15899
+ 电话呼出 206 busy 被叫忙
15886
15900
 
15887
- 电话呼出 207 outOfCredit 欠费
15901
+ 电话呼出 207 outOfCredit 被叫欠费
15888
15902
 
15889
15903
  电话呼出 208 operatorError 运营商线路异常
15890
15904
 
15891
15905
  电话呼出 209 callerCancel 主叫取消
15892
15906
 
15893
- 电话呼出 210 notInService 不在服务区
15907
+ 电话呼出 210 notInService 被叫不在服务区
15894
15908
 
15895
15909
  电话呼入&呼出 211 clientError 客户端错误
15896
15910
  电话呼出 212 carrierBlocked 运营商拦截
@@ -16018,15 +16032,15 @@ NotExists
16018
16032
 
16019
16033
  **场景 EndStatus EndStatusString 状态说明**
16020
16034
 
16021
- 电话呼入&呼出 1 ok 正常结束
16035
+ 电话呼入&呼出 1 ok 正常通话
16022
16036
 
16023
- 电话呼入&呼出 0 error 系统错误
16037
+ 电话呼入&呼出 0 error 异常结束
16024
16038
 
16025
16039
  电话呼入 102 ivrGiveUp IVR 期间用户放弃
16026
16040
 
16027
- 电话呼入 103 waitingGiveUp 会话排队期间用户放弃
16041
+ 电话呼入 103 waitingGiveUp 排队时用户放弃
16028
16042
 
16029
- 电话呼入 104 ringingGiveUp 会话振铃期间用户放弃
16043
+ 电话呼入 104 ringingGiveUp 振铃时用户放弃
16030
16044
 
16031
16045
  电话呼入 105 noSeatOnline 无座席在线
16032
16046
 
@@ -16034,37 +16048,37 @@ NotExists
16034
16048
 
16035
16049
  电话呼入 107 ivrEnd IVR 后直接结束
16036
16050
 
16037
- 电话呼入 100 blackList 呼入黑名单
16051
+ 电话呼入 100 blackList 黑名单
16038
16052
 
16039
16053
  电话呼出 2 unconnected 未接通
16040
16054
 
16041
16055
  电话呼出 108 restrictedCallee 被叫因高风险受限
16042
16056
 
16043
- 电话呼出 109 tooManyRequest 超频
16057
+ 电话呼出 109 tooManyRequest 外呼超频限制
16044
16058
 
16045
- 电话呼出 110 restrictedArea 外呼盲区
16059
+ 电话呼出 110 restrictedArea 外呼区域限制
16046
16060
 
16047
16061
  电话呼出 111 restrictedTime 外呼时间限制
16048
16062
 
16049
16063
  电话呼出 201 unknown 未知状态
16050
16064
 
16051
- 电话呼出 202 notAnswer 未接听
16065
+ 电话呼出 202 notAnswer 被叫未接听
16052
16066
 
16053
- 电话呼出 203 userReject 拒接挂断
16067
+ 电话呼出 203 userReject 被叫拒接挂断
16054
16068
 
16055
- 电话呼出 204 powerOff 关机
16069
+ 电话呼出 204 powerOff 被叫关机
16056
16070
 
16057
- 电话呼出 205 numberNotExist 空号
16071
+ 电话呼出 205 numberNotExist 被叫空号
16058
16072
 
16059
- 电话呼出 206 busy 通话中
16073
+ 电话呼出 206 busy 被叫忙
16060
16074
 
16061
- 电话呼出 207 outOfCredit 欠费
16075
+ 电话呼出 207 outOfCredit 被叫欠费
16062
16076
 
16063
16077
  电话呼出 208 operatorError 运营商线路异常
16064
16078
 
16065
16079
  电话呼出 209 callerCancel 主叫取消
16066
16080
 
16067
- 电话呼出 210 notInService 不在服务区
16081
+ 电话呼出 210 notInService 被叫不在服务区
16068
16082
 
16069
16083
  电话呼入&呼出 211 clientError 客户端错误
16070
16084
  电话呼出 212 carrierBlocked 运营商拦截
@@ -16279,6 +16293,7 @@ NotExists
16279
16293
  self._Callee = params.get("Callee")
16280
16294
  self._Time = params.get("Time")
16281
16295
  self._Direction = params.get("Direction")
16296
+ self._CallType = params.get("CallType")
16282
16297
  self._Duration = params.get("Duration")
16283
16298
  self._RecordURL = params.get("RecordURL")
16284
16299
  self._RecordId = params.get("RecordId")