tencentcloud-sdk-python 3.0.1273__py2.py3-none-any.whl → 3.0.1275__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/apigateway/v20180808/apigateway_client.py +46 -0
- tencentcloud/apigateway/v20180808/models.py +362 -0
- tencentcloud/autoscaling/v20180419/models.py +13 -11
- tencentcloud/bi/v20220105/bi_client.py +46 -0
- tencentcloud/bi/v20220105/errorcodes.py +3 -0
- tencentcloud/bi/v20220105/models.py +701 -24
- tencentcloud/billing/v20180709/models.py +105 -114
- tencentcloud/cam/v20190116/models.py +2 -2
- tencentcloud/cdwch/v20200915/errorcodes.py +6 -0
- tencentcloud/cloudhsm/v20191112/models.py +10 -170
- tencentcloud/cls/v20201016/cls_client.py +1 -1
- tencentcloud/cls/v20201016/models.py +16 -4
- tencentcloud/config/v20220802/config_client.py +46 -0
- tencentcloud/config/v20220802/models.py +664 -0
- tencentcloud/dnspod/v20210323/dnspod_client.py +46 -0
- tencentcloud/dnspod/v20210323/models.py +188 -0
- tencentcloud/ess/v20201111/ess_client.py +1 -1
- tencentcloud/ess/v20201111/models.py +20 -12
- tencentcloud/essbasic/v20210526/essbasic_client.py +1 -1
- tencentcloud/essbasic/v20210526/models.py +12 -8
- tencentcloud/goosefs/v20220519/models.py +15 -0
- tencentcloud/gwlb/v20240906/models.py +2 -2
- tencentcloud/hunyuan/v20230901/models.py +21 -4
- tencentcloud/ivld/v20210903/errorcodes.py +2 -2
- tencentcloud/lcic/v20220817/lcic_client.py +46 -0
- tencentcloud/lcic/v20220817/models.py +505 -2
- tencentcloud/lighthouse/v20200324/errorcodes.py +3 -0
- tencentcloud/lighthouse/v20200324/models.py +24 -4
- tencentcloud/live/v20180801/errorcodes.py +12 -0
- tencentcloud/live/v20180801/live_client.py +142 -0
- tencentcloud/live/v20180801/models.py +619 -0
- tencentcloud/lke/v20231130/lke_client.py +1 -1
- tencentcloud/lke/v20231130/models.py +35 -1
- tencentcloud/mps/v20190612/models.py +17 -2
- tencentcloud/oceanus/v20190422/models.py +15 -0
- tencentcloud/ocr/v20181119/models.py +132 -1971
- tencentcloud/ocr/v20181119/ocr_client.py +0 -167
- tencentcloud/organization/v20210331/models.py +2 -330
- tencentcloud/privatedns/v20201028/errorcodes.py +0 -42
- tencentcloud/privatedns/v20201028/models.py +712 -2358
- tencentcloud/privatedns/v20201028/privatedns_client.py +0 -230
- tencentcloud/tke/v20220501/models.py +6 -2
- tencentcloud/trtc/v20190722/errorcodes.py +15 -0
- tencentcloud/trtc/v20190722/models.py +218 -0
- tencentcloud/trtc/v20190722/trtc_client.py +47 -0
- tencentcloud/vod/v20180717/models.py +30 -0
- tencentcloud/vpc/v20170312/models.py +30 -0
- {tencentcloud_sdk_python-3.0.1273.dist-info → tencentcloud_sdk_python-3.0.1275.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1273.dist-info → tencentcloud_sdk_python-3.0.1275.dist-info}/RECORD +53 -53
- {tencentcloud_sdk_python-3.0.1273.dist-info → tencentcloud_sdk_python-3.0.1275.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1273.dist-info → tencentcloud_sdk_python-3.0.1275.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1273.dist-info → tencentcloud_sdk_python-3.0.1275.dist-info}/top_level.txt +0 -0
@@ -4511,7 +4511,7 @@ class DescribeSafeAuthFlagResponse(AbstractModel):
|
|
4511
4511
|
:type ActionFlag: :class:`tencentcloud.cam.v20190116.models.LoginActionFlag`
|
4512
4512
|
:param _OffsiteFlag: 异地登录保护设置
|
4513
4513
|
:type OffsiteFlag: :class:`tencentcloud.cam.v20190116.models.OffsiteFlag`
|
4514
|
-
:param _PromptTrust: 1: 提示
|
4514
|
+
:param _PromptTrust: 是否提示信任设备:1: 提示 0: 不提示
|
4515
4515
|
:type PromptTrust: int
|
4516
4516
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4517
4517
|
:type RequestId: str
|
@@ -4557,7 +4557,7 @@ class DescribeSafeAuthFlagResponse(AbstractModel):
|
|
4557
4557
|
|
4558
4558
|
@property
|
4559
4559
|
def PromptTrust(self):
|
4560
|
-
"""1: 提示
|
4560
|
+
"""是否提示信任设备:1: 提示 0: 不提示
|
4561
4561
|
:rtype: int
|
4562
4562
|
"""
|
4563
4563
|
return self._PromptTrust
|