tencentcloud-sdk-python 3.0.1395__py2.py3-none-any.whl → 3.0.1396__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/apm/v20210622/models.py +17 -2
- tencentcloud/cbs/v20170312/cbs_client.py +3 -1
- tencentcloud/cdb/v20170320/models.py +6 -6
- tencentcloud/cfs/v20190719/models.py +2 -2
- tencentcloud/dbbrain/v20210527/dbbrain_client.py +1 -1
- tencentcloud/dbbrain/v20210527/models.py +4 -4
- tencentcloud/emr/v20190103/models.py +304 -4
- tencentcloud/ess/v20201111/ess_client.py +56 -0
- tencentcloud/ess/v20201111/models.py +255 -0
- tencentcloud/gs/v20191118/gs_client.py +161 -0
- tencentcloud/gs/v20191118/models.py +877 -23
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +2 -2
- tencentcloud/ocr/v20181119/models.py +131 -18
- tencentcloud/ocr/v20181119/ocr_client.py +1 -1
- tencentcloud/tem/v20210701/errorcodes.py +6 -0
- tencentcloud/tem/v20210701/models.py +200 -0
- tencentcloud/tem/v20210701/tem_client.py +23 -0
- tencentcloud/teo/v20220901/models.py +1417 -117
- tencentcloud/vod/v20180717/models.py +4 -0
- tencentcloud/waf/v20180125/models.py +0 -2
- tencentcloud/wedata/v20210820/models.py +1902 -0
- tencentcloud/wedata/v20210820/wedata_client.py +23 -0
- {tencentcloud_sdk_python-3.0.1395.dist-info → tencentcloud_sdk_python-3.0.1396.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1395.dist-info → tencentcloud_sdk_python-3.0.1396.dist-info}/RECORD +28 -28
- {tencentcloud_sdk_python-3.0.1395.dist-info → tencentcloud_sdk_python-3.0.1396.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1395.dist-info → tencentcloud_sdk_python-3.0.1396.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1395.dist-info → tencentcloud_sdk_python-3.0.1396.dist-info}/top_level.txt +0 -0
@@ -42643,6 +42643,8 @@ class MediaContentReviewSegmentItem(AbstractModel):
|
|
42643
42643
|
|
42644
42644
|
@property
|
42645
42645
|
def PicUrlExpireTimeStamp(self):
|
42646
|
+
warnings.warn("parameter `PicUrlExpireTimeStamp` is deprecated", DeprecationWarning)
|
42647
|
+
|
42646
42648
|
"""该字段已废弃,请使用 PicUrlExpireTime。
|
42647
42649
|
:rtype: int
|
42648
42650
|
"""
|
@@ -42650,6 +42652,8 @@ class MediaContentReviewSegmentItem(AbstractModel):
|
|
42650
42652
|
|
42651
42653
|
@PicUrlExpireTimeStamp.setter
|
42652
42654
|
def PicUrlExpireTimeStamp(self, PicUrlExpireTimeStamp):
|
42655
|
+
warnings.warn("parameter `PicUrlExpireTimeStamp` is deprecated", DeprecationWarning)
|
42656
|
+
|
42653
42657
|
self._PicUrlExpireTimeStamp = PicUrlExpireTimeStamp
|
42654
42658
|
|
42655
42659
|
@property
|
@@ -40664,7 +40664,6 @@ class UpdateProtectionModesResponse(AbstractModel):
|
|
40664
40664
|
def __init__(self):
|
40665
40665
|
r"""
|
40666
40666
|
:param _CommonRsp: 操作结果
|
40667
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
40668
40667
|
:type CommonRsp: :class:`tencentcloud.waf.v20180125.models.CommonRspData`
|
40669
40668
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
40670
40669
|
:type RequestId: str
|
@@ -40675,7 +40674,6 @@ class UpdateProtectionModesResponse(AbstractModel):
|
|
40675
40674
|
@property
|
40676
40675
|
def CommonRsp(self):
|
40677
40676
|
"""操作结果
|
40678
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
40679
40677
|
:rtype: :class:`tencentcloud.waf.v20180125.models.CommonRspData`
|
40680
40678
|
"""
|
40681
40679
|
return self._CommonRsp
|