tencentcloud-sdk-python 3.0.1248__py2.py3-none-any.whl → 3.0.1250__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/cbs/v20170312/models.py +3 -3
- tencentcloud/cdn/v20180606/models.py +1 -1
- tencentcloud/cdwch/v20200915/models.py +26 -0
- tencentcloud/clb/v20180317/models.py +10 -5
- tencentcloud/cls/v20201016/models.py +81 -0
- tencentcloud/cynosdb/v20190107/cynosdb_client.py +1 -1
- tencentcloud/cynosdb/v20190107/models.py +146 -0
- tencentcloud/dlc/v20210125/dlc_client.py +23 -0
- tencentcloud/dlc/v20210125/models.py +388 -0
- tencentcloud/dsgc/v20190723/models.py +190 -26
- tencentcloud/emr/v20190103/models.py +1 -1
- tencentcloud/ess/v20201111/ess_client.py +43 -21
- tencentcloud/ess/v20201111/models.py +126 -15
- tencentcloud/essbasic/v20210526/essbasic_client.py +35 -15
- tencentcloud/essbasic/v20210526/models.py +144 -4
- tencentcloud/faceid/v20180301/models.py +1 -1
- tencentcloud/iotexplorer/v20190423/errorcodes.py +6 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +46 -0
- tencentcloud/iotexplorer/v20190423/models.py +293 -0
- tencentcloud/lke/v20231130/models.py +1 -2
- tencentcloud/mongodb/v20190725/models.py +3 -4
- tencentcloud/mps/v20190612/errorcodes.py +3 -0
- tencentcloud/mps/v20190612/models.py +981 -17
- tencentcloud/mps/v20190612/mps_client.py +93 -0
- tencentcloud/oceanus/v20190422/models.py +146 -0
- tencentcloud/oceanus/v20190422/oceanus_client.py +23 -0
- tencentcloud/redis/v20180412/models.py +98 -1
- tencentcloud/redis/v20180412/redis_client.py +24 -1
- tencentcloud/tcss/v20201101/tcss_client.py +15 -5
- tencentcloud/tke/v20180525/models.py +0 -106
- tencentcloud/tke/v20180525/tke_client.py +0 -25
- tencentcloud/tms/v20201229/errorcodes.py +3 -0
- tencentcloud/tms/v20201229/models.py +1 -1
- tencentcloud/trtc/v20190722/models.py +24 -5
- tencentcloud/vod/v20180717/vod_client.py +1 -0
- tencentcloud/vpc/v20170312/errorcodes.py +6 -0
- tencentcloud/vpc/v20170312/models.py +16 -4
- tencentcloud/vpc/v20170312/vpc_client.py +1 -1
- tencentcloud/waf/v20180125/models.py +1456 -515
- tencentcloud/waf/v20180125/waf_client.py +46 -0
- {tencentcloud_sdk_python-3.0.1248.dist-info → tencentcloud_sdk_python-3.0.1250.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1248.dist-info → tencentcloud_sdk_python-3.0.1250.dist-info}/RECORD +46 -46
- {tencentcloud_sdk_python-3.0.1248.dist-info → tencentcloud_sdk_python-3.0.1250.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1248.dist-info → tencentcloud_sdk_python-3.0.1250.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1248.dist-info → tencentcloud_sdk_python-3.0.1250.dist-info}/top_level.txt +0 -0
@@ -530,26 +530,21 @@ class CloudStorage(AbstractModel):
|
|
530
530
|
0:腾讯云对象存储 COS
|
531
531
|
1:AWS
|
532
532
|
【注意】目前第三方云存储仅支持AWS,更多第三方云存储陆续支持中
|
533
|
-
示例值:0
|
534
533
|
:type Vendor: int
|
535
534
|
:param _Region: 腾讯云对象存储的[地域信息](https://cloud.tencent.com/document/product/436/6224#.E5.9C.B0.E5.9F.9F)。
|
536
535
|
示例值:cn-shanghai-1
|
537
536
|
|
538
537
|
AWS S3[地域信息](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-regions)
|
539
|
-
示例值:ap-southeast-3
|
540
538
|
:type Region: str
|
541
539
|
:param _Bucket: 云存储桶名称。
|
542
540
|
:type Bucket: str
|
543
541
|
:param _AccessKey: 云存储的access_key账号信息。
|
544
542
|
若存储至腾讯云对象存储COS,请前往https://console.cloud.tencent.com/cam/capi 查看或创建,对应链接中密钥字段的SecretId值。
|
545
|
-
示例值:test-accesskey
|
546
543
|
:type AccessKey: str
|
547
544
|
:param _SecretKey: 云存储的secret_key账号信息。
|
548
545
|
若存储至腾讯云对象存储COS,请前往https://console.cloud.tencent.com/cam/capi 查看或创建,对应链接中密钥字段的SecretKey值。
|
549
|
-
示例值:test-secretkey
|
550
546
|
:type SecretKey: str
|
551
547
|
:param _FileNamePrefix: 云存储bucket 的指定位置,由字符串数组组成。合法的字符串范围az,AZ,0~9,'_'和'-',举个例子,录制文件xxx.m3u8在 ["prefix1", "prefix2"]作用下,会变成prefix1/prefix2/TaskId/xxx.m3u8。
|
552
|
-
示例值:["prefix1", "prefix2"]
|
553
548
|
:type FileNamePrefix: list of str
|
554
549
|
"""
|
555
550
|
self._Vendor = None
|
@@ -9823,6 +9818,8 @@ class StartWebRecordRequest(AbstractModel):
|
|
9823
9818
|
:type RecordId: str
|
9824
9819
|
:param _PublishCdnParams: 若您想要推流到CDN,可以使用PublishCdnParams.N参数设置,支持最多同时推流到10个CDN地址。若转推地址是腾讯云CDN时,请将IsTencentCdn明确设置为1
|
9825
9820
|
:type PublishCdnParams: list of McuPublishCdnParam
|
9821
|
+
:param _ReadyTimeout: 录制页面资源加载的超时时间,单位:秒。默认值为 0 秒,该值需大于等于 0秒,且小于等于 60秒。录制页面未启用页面加载超时检测时,请勿设置此参数。
|
9822
|
+
:type ReadyTimeout: int
|
9826
9823
|
"""
|
9827
9824
|
self._RecordUrl = None
|
9828
9825
|
self._MaxDurationLimit = None
|
@@ -9831,6 +9828,7 @@ class StartWebRecordRequest(AbstractModel):
|
|
9831
9828
|
self._SdkAppId = None
|
9832
9829
|
self._RecordId = None
|
9833
9830
|
self._PublishCdnParams = None
|
9831
|
+
self._ReadyTimeout = None
|
9834
9832
|
|
9835
9833
|
@property
|
9836
9834
|
def RecordUrl(self):
|
@@ -9888,6 +9886,14 @@ class StartWebRecordRequest(AbstractModel):
|
|
9888
9886
|
def PublishCdnParams(self, PublishCdnParams):
|
9889
9887
|
self._PublishCdnParams = PublishCdnParams
|
9890
9888
|
|
9889
|
+
@property
|
9890
|
+
def ReadyTimeout(self):
|
9891
|
+
return self._ReadyTimeout
|
9892
|
+
|
9893
|
+
@ReadyTimeout.setter
|
9894
|
+
def ReadyTimeout(self, ReadyTimeout):
|
9895
|
+
self._ReadyTimeout = ReadyTimeout
|
9896
|
+
|
9891
9897
|
|
9892
9898
|
def _deserialize(self, params):
|
9893
9899
|
self._RecordUrl = params.get("RecordUrl")
|
@@ -9906,6 +9912,7 @@ class StartWebRecordRequest(AbstractModel):
|
|
9906
9912
|
obj = McuPublishCdnParam()
|
9907
9913
|
obj._deserialize(item)
|
9908
9914
|
self._PublishCdnParams.append(obj)
|
9915
|
+
self._ReadyTimeout = params.get("ReadyTimeout")
|
9909
9916
|
memeber_set = set(params.keys())
|
9910
9917
|
for name, value in vars(self).items():
|
9911
9918
|
property_name = name[1:]
|
@@ -10970,6 +10977,8 @@ https://cloud.tencent.com/document/product/269/31999#app-.E7.AE.A1.E7.90.86.E5.9
|
|
10970
10977
|
:type TranscriptionMode: int
|
10971
10978
|
:param _TargetUserId: TranscriptionMode为1时必填,机器人只会拉该userid的流,忽略房间里其他用户。
|
10972
10979
|
:type TargetUserId: str
|
10980
|
+
:param _TargetUserIdList: 机器人订阅的用户列表
|
10981
|
+
:type TargetUserIdList: list of str
|
10973
10982
|
"""
|
10974
10983
|
self._UserId = None
|
10975
10984
|
self._UserSig = None
|
@@ -10978,6 +10987,7 @@ https://cloud.tencent.com/document/product/269/31999#app-.E7.AE.A1.E7.90.86.E5.9
|
|
10978
10987
|
self._MaxIdleTime = None
|
10979
10988
|
self._TranscriptionMode = None
|
10980
10989
|
self._TargetUserId = None
|
10990
|
+
self._TargetUserIdList = None
|
10981
10991
|
|
10982
10992
|
@property
|
10983
10993
|
def UserId(self):
|
@@ -11043,6 +11053,14 @@ https://cloud.tencent.com/document/product/269/31999#app-.E7.AE.A1.E7.90.86.E5.9
|
|
11043
11053
|
def TargetUserId(self, TargetUserId):
|
11044
11054
|
self._TargetUserId = TargetUserId
|
11045
11055
|
|
11056
|
+
@property
|
11057
|
+
def TargetUserIdList(self):
|
11058
|
+
return self._TargetUserIdList
|
11059
|
+
|
11060
|
+
@TargetUserIdList.setter
|
11061
|
+
def TargetUserIdList(self, TargetUserIdList):
|
11062
|
+
self._TargetUserIdList = TargetUserIdList
|
11063
|
+
|
11046
11064
|
|
11047
11065
|
def _deserialize(self, params):
|
11048
11066
|
self._UserId = params.get("UserId")
|
@@ -11052,6 +11070,7 @@ https://cloud.tencent.com/document/product/269/31999#app-.E7.AE.A1.E7.90.86.E5.9
|
|
11052
11070
|
self._MaxIdleTime = params.get("MaxIdleTime")
|
11053
11071
|
self._TranscriptionMode = params.get("TranscriptionMode")
|
11054
11072
|
self._TargetUserId = params.get("TargetUserId")
|
11073
|
+
self._TargetUserIdList = params.get("TargetUserIdList")
|
11055
11074
|
memeber_set = set(params.keys())
|
11056
11075
|
for name, value in vars(self).items():
|
11057
11076
|
property_name = name[1:]
|
@@ -2951,6 +2951,7 @@ class VodClient(AbstractClient):
|
|
2951
2951
|
def ForbidMediaDistribution(self, request):
|
2952
2952
|
"""* 对媒体禁播后,除了点播控制台预览,其他场景访问视频各种资源的 URL(原始文件、转码输出文件、截图等)均会返回 403。
|
2953
2953
|
禁播/解禁操作全网生效时间约 5~10 分钟。
|
2954
|
+
* 注意:禁播媒体仅能操作标准存储和低频存储的媒体。低频存储媒体,必须存储至少 30 天,提前删除或变更存储类型,仍旧按照 30 天计费;如果禁播低频存储媒体,该媒体低频存储的时长不足 30 天,会产生提前删除计费;同时,禁播后该媒体的低频存储时长会从当前时间重新开始计算,如果不满 30 天继续对该媒体进行删除或变更存储类型,也将产生提前删除计费。例:媒体 001 已经低频存储了 10 天,此时对 001 进行禁播,低频存储的计费仍旧按 30 天计算(提前删除计费时长为 30 - 10 = 20 天);禁播后 001 的低频存储时长重新开始计算,如果禁播后第 5 天删除了 001,低频存储计费也会按 30 天计算(提前删除计费时长为 30 - 5 = 25 天);001 实际的低频存储时长为 10 + 5 = 15 天,低频存储计费时长为 10 + 20(提前删除计费)+ 5 + 25(提前删除计费) = 60 天。
|
2954
2955
|
|
2955
2956
|
:param request: Request instance for ForbidMediaDistribution.
|
2956
2957
|
:type request: :class:`tencentcloud.vod.v20180717.models.ForbidMediaDistributionRequest`
|
@@ -746,6 +746,9 @@ UNSUPPORTEDOPERATION_BANDWIDTHPACKAGEIDNOTSUPPORTED = 'UnsupportedOperation.Band
|
|
746
746
|
# 已绑定EIP。
|
747
747
|
UNSUPPORTEDOPERATION_BINDEIP = 'UnsupportedOperation.BindEIP'
|
748
748
|
|
749
|
+
# 添加 community 时,传播条件只支持 vpg 类型或 vpg 实例
|
750
|
+
UNSUPPORTEDOPERATION_BROADCASTCONDITIONMUSTBEVPGTYPEORVPGINSTANCE = 'UnsupportedOperation.BroadcastConditionMustBeVpgTypeOrVpgInstance'
|
751
|
+
|
749
752
|
# 指定VPC CIDR范围不支持私有网络和基础网络设备互通。
|
750
753
|
UNSUPPORTEDOPERATION_CIDRUNSUPPORTEDCLASSICLINK = 'UnsupportedOperation.CIDRUnSupportedClassicLink'
|
751
754
|
|
@@ -770,6 +773,9 @@ UNSUPPORTEDOPERATION_CCNNOTATTACHED = 'UnsupportedOperation.CcnNotAttached'
|
|
770
773
|
# 当前云联网未开启路由传播策略。
|
771
774
|
UNSUPPORTEDOPERATION_CCNNOTENABLEBROADCASTPOLICY = 'UnsupportedOperation.CcnNotEnableBroadcastPolicy'
|
772
775
|
|
776
|
+
# 添加 community 时,vpg 需要开通传播 community 白名单
|
777
|
+
UNSUPPORTEDOPERATION_CCNNOTENABLECOMMUNITY = 'UnsupportedOperation.CcnNotEnableCommunity'
|
778
|
+
|
773
779
|
# 跨账号场景下不支持自驾云账号实例 关联普通账号云联网。
|
774
780
|
UNSUPPORTEDOPERATION_CCNORDINARYACCOUNTREFUSEATTACH = 'UnsupportedOperation.CcnOrdinaryAccountRefuseAttach'
|
775
781
|
|
@@ -2388,12 +2388,15 @@ class AssociateAddressRequest(AbstractModel):
|
|
2388
2388
|
:type PrivateIpAddress: str
|
2389
2389
|
:param _EipDirectConnection: 指定绑定时是否设置直通。弹性公网 IP 直通请参见 [EIP 直通](https://cloud.tencent.com/document/product/1199/41709)。取值:True、False,默认值为 False。当绑定 CVM 实例、EKS 弹性集群时,可设定此参数为 True。此参数目前处于内测中,如需使用,请提交 [工单申请](https://console.cloud.tencent.com/workorder/category?level1_id=6&level2_id=163&source=0&data_title=%E8%B4%9F%E8%BD%BD%E5%9D%87%E8%A1%A1%20CLB&level3_id=1071&queue=96&scene_code=34639&step=2)。
|
2390
2390
|
:type EipDirectConnection: bool
|
2391
|
+
:param _InstanceRegion: 要绑定的实例所在的地域
|
2392
|
+
:type InstanceRegion: str
|
2391
2393
|
"""
|
2392
2394
|
self._AddressId = None
|
2393
2395
|
self._InstanceId = None
|
2394
2396
|
self._NetworkInterfaceId = None
|
2395
2397
|
self._PrivateIpAddress = None
|
2396
2398
|
self._EipDirectConnection = None
|
2399
|
+
self._InstanceRegion = None
|
2397
2400
|
|
2398
2401
|
@property
|
2399
2402
|
def AddressId(self):
|
@@ -2435,6 +2438,14 @@ class AssociateAddressRequest(AbstractModel):
|
|
2435
2438
|
def EipDirectConnection(self, EipDirectConnection):
|
2436
2439
|
self._EipDirectConnection = EipDirectConnection
|
2437
2440
|
|
2441
|
+
@property
|
2442
|
+
def InstanceRegion(self):
|
2443
|
+
return self._InstanceRegion
|
2444
|
+
|
2445
|
+
@InstanceRegion.setter
|
2446
|
+
def InstanceRegion(self, InstanceRegion):
|
2447
|
+
self._InstanceRegion = InstanceRegion
|
2448
|
+
|
2438
2449
|
|
2439
2450
|
def _deserialize(self, params):
|
2440
2451
|
self._AddressId = params.get("AddressId")
|
@@ -2442,6 +2453,7 @@ class AssociateAddressRequest(AbstractModel):
|
|
2442
2453
|
self._NetworkInterfaceId = params.get("NetworkInterfaceId")
|
2443
2454
|
self._PrivateIpAddress = params.get("PrivateIpAddress")
|
2444
2455
|
self._EipDirectConnection = params.get("EipDirectConnection")
|
2456
|
+
self._InstanceRegion = params.get("InstanceRegion")
|
2445
2457
|
memeber_set = set(params.keys())
|
2446
2458
|
for name, value in vars(self).items():
|
2447
2459
|
property_name = name[1:]
|
@@ -30404,7 +30416,7 @@ class DisableCcnRoutesRequest(AbstractModel):
|
|
30404
30416
|
r"""
|
30405
30417
|
:param _CcnId: CCN实例ID。形如:ccn-f49l6u0z。
|
30406
30418
|
:type CcnId: str
|
30407
|
-
:param _RouteIds: CCN路由策略唯一ID。形如:ccnr-f49l6u0z
|
30419
|
+
:param _RouteIds: CCN路由策略唯一ID。形如:ccnr-f49l6u0z。可通过DescribeCcnRoutes获取。
|
30408
30420
|
:type RouteIds: list of str
|
30409
30421
|
"""
|
30410
30422
|
self._CcnId = None
|
@@ -31560,7 +31572,7 @@ class EnableCcnRoutesRequest(AbstractModel):
|
|
31560
31572
|
r"""
|
31561
31573
|
:param _CcnId: CCN实例ID。形如:ccn-f49l6u0z。
|
31562
31574
|
:type CcnId: str
|
31563
|
-
:param _RouteIds: CCN路由策略唯一ID。形如:ccnr-f49l6u0z
|
31575
|
+
:param _RouteIds: CCN路由策略唯一ID。形如:ccnr-f49l6u0z。可通过DescribeCcnRoutes接口获取。
|
31564
31576
|
:type RouteIds: list of str
|
31565
31577
|
"""
|
31566
31578
|
self._CcnId = None
|
@@ -39787,9 +39799,9 @@ class ModifyRouteTableInfo(AbstractModel):
|
|
39787
39799
|
r"""
|
39788
39800
|
:param _RouteTableId: 云联网路由表id。
|
39789
39801
|
:type RouteTableId: str
|
39790
|
-
:param _Name: 云联网路由表名称。
|
39802
|
+
:param _Name: 云联网路由表名称。Name和Description 两者必传一个。
|
39791
39803
|
:type Name: str
|
39792
|
-
:param _Description: 云联网路由表描述。
|
39804
|
+
:param _Description: 云联网路由表描述。Name和Description 两者必传一个。
|
39793
39805
|
:type Description: str
|
39794
39806
|
"""
|
39795
39807
|
self._RouteTableId = None
|
@@ -8181,7 +8181,7 @@ class VpcClient(AbstractClient):
|
|
8181
8181
|
|
8182
8182
|
**路由条件支持以下四种:**
|
8183
8183
|
|
8184
|
-
- 实例类型: `instance-type`,可选值:私有网络 `VPC`、专线网关 `DIRECTCONNECT
|
8184
|
+
- 实例类型: `instance-type`,可选值:私有网络 `VPC`、专线网关 `DIRECTCONNECT`、VPN网关 `VPNGW`
|
8185
8185
|
- 实例ID: `instance-id`,例如:`dcg-8zljkrft`、`vpc-jdevjrup`,暂不支持 `Edge` 实例
|
8186
8186
|
- 实例地域: `instance-region`,例如:`ap-guangzhou`<br />产品支持的所有地域列表可通过接口 [DescribeRegions](https://cloud.tencent.com/document/product/1596/77930) 查询,其中参数 `Product` 设置为 `ccn`
|
8187
8187
|
- 路由前缀: `cidr-block`,例如:`10.1.0.0/16`
|