tencentcloud-sdk-python 3.0.1133__py2.py3-none-any.whl → 3.0.1135__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/aiart/v20221229/aiart_client.py +140 -0
- tencentcloud/aiart/v20221229/models.py +684 -0
- tencentcloud/billing/v20180709/models.py +39 -0
- tencentcloud/ccc/v20200210/ccc_client.py +24 -1
- tencentcloud/ccc/v20200210/models.py +87 -1
- tencentcloud/cdb/v20170320/models.py +12 -0
- tencentcloud/cdn/v20180606/cdn_client.py +1 -1
- tencentcloud/common/abstract_client.py +21 -0
- tencentcloud/csip/v20221121/csip_client.py +23 -0
- tencentcloud/csip/v20221121/models.py +1876 -13
- tencentcloud/cynosdb/v20190107/cynosdb_client.py +23 -0
- tencentcloud/cynosdb/v20190107/models.py +82 -0
- tencentcloud/dcdb/v20180411/models.py +74 -0
- tencentcloud/dlc/v20210125/models.py +39 -0
- tencentcloud/hunyuan/v20230901/hunyuan_client.py +2 -2
- tencentcloud/hunyuan/v20230901/models.py +7 -7
- tencentcloud/lighthouse/v20200324/lighthouse_client.py +2 -0
- tencentcloud/live/v20180801/live_client.py +1 -1
- tencentcloud/live/v20180801/models.py +4 -4
- tencentcloud/lke/v20231130/lke_client.py +2 -0
- tencentcloud/lke/v20231130/models.py +116 -1
- tencentcloud/mariadb/v20170312/models.py +74 -0
- tencentcloud/ocr/v20181119/models.py +1 -0
- tencentcloud/ssl/v20191205/models.py +60 -12
- tencentcloud/tdmq/v20200217/models.py +51 -0
- tencentcloud/trtc/v20190722/errorcodes.py +3 -0
- tencentcloud/trtc/v20190722/models.py +49 -14
- tencentcloud/trtc/v20190722/trtc_client.py +1 -1
- tencentcloud/vpc/v20170312/models.py +15 -3
- {tencentcloud_sdk_python-3.0.1133.dist-info → tencentcloud_sdk_python-3.0.1135.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1133.dist-info → tencentcloud_sdk_python-3.0.1135.dist-info}/RECORD +35 -35
- {tencentcloud_sdk_python-3.0.1133.dist-info → tencentcloud_sdk_python-3.0.1135.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1133.dist-info → tencentcloud_sdk_python-3.0.1135.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1133.dist-info → tencentcloud_sdk_python-3.0.1135.dist-info}/top_level.txt +0 -0
@@ -4676,6 +4676,8 @@ class DescribeDBInstanceDetailResponse(AbstractModel):
|
|
4676
4676
|
:type IsDcnStrongSyncSupported: int
|
4677
4677
|
:param _IsDcnSwitchSupported: 是否支持DCN切换
|
4678
4678
|
:type IsDcnSwitchSupported: int
|
4679
|
+
:param _ProxyVersion: proxy版本号
|
4680
|
+
:type ProxyVersion: str
|
4679
4681
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4680
4682
|
:type RequestId: str
|
4681
4683
|
"""
|
@@ -4738,6 +4740,7 @@ class DescribeDBInstanceDetailResponse(AbstractModel):
|
|
4738
4740
|
self._IsPhysicalReplicationSupported = None
|
4739
4741
|
self._IsDcnStrongSyncSupported = None
|
4740
4742
|
self._IsDcnSwitchSupported = None
|
4743
|
+
self._ProxyVersion = None
|
4741
4744
|
self._RequestId = None
|
4742
4745
|
|
4743
4746
|
@property
|
@@ -5212,6 +5215,14 @@ class DescribeDBInstanceDetailResponse(AbstractModel):
|
|
5212
5215
|
def IsDcnSwitchSupported(self, IsDcnSwitchSupported):
|
5213
5216
|
self._IsDcnSwitchSupported = IsDcnSwitchSupported
|
5214
5217
|
|
5218
|
+
@property
|
5219
|
+
def ProxyVersion(self):
|
5220
|
+
return self._ProxyVersion
|
5221
|
+
|
5222
|
+
@ProxyVersion.setter
|
5223
|
+
def ProxyVersion(self, ProxyVersion):
|
5224
|
+
self._ProxyVersion = ProxyVersion
|
5225
|
+
|
5215
5226
|
@property
|
5216
5227
|
def RequestId(self):
|
5217
5228
|
return self._RequestId
|
@@ -5300,6 +5311,7 @@ class DescribeDBInstanceDetailResponse(AbstractModel):
|
|
5300
5311
|
self._IsPhysicalReplicationSupported = params.get("IsPhysicalReplicationSupported")
|
5301
5312
|
self._IsDcnStrongSyncSupported = params.get("IsDcnStrongSyncSupported")
|
5302
5313
|
self._IsDcnSwitchSupported = params.get("IsDcnSwitchSupported")
|
5314
|
+
self._ProxyVersion = params.get("ProxyVersion")
|
5303
5315
|
self._RequestId = params.get("RequestId")
|
5304
5316
|
|
5305
5317
|
|
@@ -5390,6 +5402,8 @@ class DescribeDBInstancesRequest(AbstractModel):
|
|
5390
5402
|
:type ExclusterIds: list of str
|
5391
5403
|
:param _TagKeys: 按标签key查询
|
5392
5404
|
:type TagKeys: list of str
|
5405
|
+
:param _Tags: 标签
|
5406
|
+
:type Tags: list of Tag
|
5393
5407
|
:param _FilterInstanceType: 实例类型过滤,1-独享实例,2-主实例,3-灾备实例,多个按逗号分隔
|
5394
5408
|
:type FilterInstanceType: str
|
5395
5409
|
:param _Status: 按照实例状态进行筛选
|
@@ -5413,6 +5427,7 @@ class DescribeDBInstancesRequest(AbstractModel):
|
|
5413
5427
|
self._ExclusterType = None
|
5414
5428
|
self._ExclusterIds = None
|
5415
5429
|
self._TagKeys = None
|
5430
|
+
self._Tags = None
|
5416
5431
|
self._FilterInstanceType = None
|
5417
5432
|
self._Status = None
|
5418
5433
|
self._ExcludeStatus = None
|
@@ -5545,6 +5560,14 @@ class DescribeDBInstancesRequest(AbstractModel):
|
|
5545
5560
|
def TagKeys(self, TagKeys):
|
5546
5561
|
self._TagKeys = TagKeys
|
5547
5562
|
|
5563
|
+
@property
|
5564
|
+
def Tags(self):
|
5565
|
+
return self._Tags
|
5566
|
+
|
5567
|
+
@Tags.setter
|
5568
|
+
def Tags(self, Tags):
|
5569
|
+
self._Tags = Tags
|
5570
|
+
|
5548
5571
|
@property
|
5549
5572
|
def FilterInstanceType(self):
|
5550
5573
|
return self._FilterInstanceType
|
@@ -5587,6 +5610,12 @@ class DescribeDBInstancesRequest(AbstractModel):
|
|
5587
5610
|
self._ExclusterType = params.get("ExclusterType")
|
5588
5611
|
self._ExclusterIds = params.get("ExclusterIds")
|
5589
5612
|
self._TagKeys = params.get("TagKeys")
|
5613
|
+
if params.get("Tags") is not None:
|
5614
|
+
self._Tags = []
|
5615
|
+
for item in params.get("Tags"):
|
5616
|
+
obj = Tag()
|
5617
|
+
obj._deserialize(item)
|
5618
|
+
self._Tags.append(obj)
|
5590
5619
|
self._FilterInstanceType = params.get("FilterInstanceType")
|
5591
5620
|
self._Status = params.get("Status")
|
5592
5621
|
self._ExcludeStatus = params.get("ExcludeStatus")
|
@@ -12024,6 +12053,51 @@ class TablePrivilege(AbstractModel):
|
|
12024
12053
|
|
12025
12054
|
|
12026
12055
|
|
12056
|
+
class Tag(AbstractModel):
|
12057
|
+
"""标签
|
12058
|
+
|
12059
|
+
"""
|
12060
|
+
|
12061
|
+
def __init__(self):
|
12062
|
+
r"""
|
12063
|
+
:param _TagKey: 标签键
|
12064
|
+
:type TagKey: str
|
12065
|
+
:param _TagValue: 标签值
|
12066
|
+
:type TagValue: str
|
12067
|
+
"""
|
12068
|
+
self._TagKey = None
|
12069
|
+
self._TagValue = None
|
12070
|
+
|
12071
|
+
@property
|
12072
|
+
def TagKey(self):
|
12073
|
+
return self._TagKey
|
12074
|
+
|
12075
|
+
@TagKey.setter
|
12076
|
+
def TagKey(self, TagKey):
|
12077
|
+
self._TagKey = TagKey
|
12078
|
+
|
12079
|
+
@property
|
12080
|
+
def TagValue(self):
|
12081
|
+
return self._TagValue
|
12082
|
+
|
12083
|
+
@TagValue.setter
|
12084
|
+
def TagValue(self, TagValue):
|
12085
|
+
self._TagValue = TagValue
|
12086
|
+
|
12087
|
+
|
12088
|
+
def _deserialize(self, params):
|
12089
|
+
self._TagKey = params.get("TagKey")
|
12090
|
+
self._TagValue = params.get("TagValue")
|
12091
|
+
memeber_set = set(params.keys())
|
12092
|
+
for name, value in vars(self).items():
|
12093
|
+
property_name = name[1:]
|
12094
|
+
if property_name in memeber_set:
|
12095
|
+
memeber_set.remove(property_name)
|
12096
|
+
if len(memeber_set) > 0:
|
12097
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
12098
|
+
|
12099
|
+
|
12100
|
+
|
12027
12101
|
class TerminateDedicatedDBInstanceRequest(AbstractModel):
|
12028
12102
|
"""TerminateDedicatedDBInstance请求参数结构体
|
12029
12103
|
|
@@ -21122,6 +21122,7 @@ OnboardingDocuments -- 入职材料识别
|
|
21122
21122
|
PropertyOwnershipCertificate -- 房产证识别
|
21123
21123
|
RealEstateCertificate --不动产权证识别
|
21124
21124
|
HouseEncumbranceCertificate -- 他权证识别
|
21125
|
+
CarInsurance -- 车险保单
|
21125
21126
|
:type ConfigId: str
|
21126
21127
|
:param _EnableSealRecognize: 是否打开印章识别
|
21127
21128
|
:type EnableSealRecognize: bool
|
@@ -6933,17 +6933,29 @@ class DescribeHostCosInstanceListRequest(AbstractModel):
|
|
6933
6933
|
r"""
|
6934
6934
|
:param _CertificateId: 待部署的证书ID
|
6935
6935
|
:type CertificateId: str
|
6936
|
-
:param _ResourceType: 部署资源类型 cos
|
6937
|
-
:type ResourceType: str
|
6938
6936
|
:param _IsCache: 是否查询缓存,1:是; 0:否, 默认为查询缓存,缓存半小时
|
6939
6937
|
:type IsCache: int
|
6940
6938
|
:param _Filters: 过滤参数列表
|
6941
6939
|
:type Filters: list of Filter
|
6940
|
+
:param _ResourceType: 部署资源类型 cos
|
6941
|
+
:type ResourceType: str
|
6942
|
+
:param _OldCertificateId: 原证书ID
|
6943
|
+
:type OldCertificateId: str
|
6944
|
+
:param _Offset: 分页偏移量,从0开始。
|
6945
|
+
:type Offset: int
|
6946
|
+
:param _Limit: 每页数量,默认10。
|
6947
|
+
:type Limit: int
|
6948
|
+
:param _AsyncCache: 是否异步
|
6949
|
+
:type AsyncCache: int
|
6942
6950
|
"""
|
6943
6951
|
self._CertificateId = None
|
6944
|
-
self._ResourceType = None
|
6945
6952
|
self._IsCache = None
|
6946
6953
|
self._Filters = None
|
6954
|
+
self._ResourceType = None
|
6955
|
+
self._OldCertificateId = None
|
6956
|
+
self._Offset = None
|
6957
|
+
self._Limit = None
|
6958
|
+
self._AsyncCache = None
|
6947
6959
|
|
6948
6960
|
@property
|
6949
6961
|
def CertificateId(self):
|
@@ -6953,14 +6965,6 @@ class DescribeHostCosInstanceListRequest(AbstractModel):
|
|
6953
6965
|
def CertificateId(self, CertificateId):
|
6954
6966
|
self._CertificateId = CertificateId
|
6955
6967
|
|
6956
|
-
@property
|
6957
|
-
def ResourceType(self):
|
6958
|
-
return self._ResourceType
|
6959
|
-
|
6960
|
-
@ResourceType.setter
|
6961
|
-
def ResourceType(self, ResourceType):
|
6962
|
-
self._ResourceType = ResourceType
|
6963
|
-
|
6964
6968
|
@property
|
6965
6969
|
def IsCache(self):
|
6966
6970
|
return self._IsCache
|
@@ -6977,10 +6981,49 @@ class DescribeHostCosInstanceListRequest(AbstractModel):
|
|
6977
6981
|
def Filters(self, Filters):
|
6978
6982
|
self._Filters = Filters
|
6979
6983
|
|
6984
|
+
@property
|
6985
|
+
def ResourceType(self):
|
6986
|
+
return self._ResourceType
|
6987
|
+
|
6988
|
+
@ResourceType.setter
|
6989
|
+
def ResourceType(self, ResourceType):
|
6990
|
+
self._ResourceType = ResourceType
|
6991
|
+
|
6992
|
+
@property
|
6993
|
+
def OldCertificateId(self):
|
6994
|
+
return self._OldCertificateId
|
6995
|
+
|
6996
|
+
@OldCertificateId.setter
|
6997
|
+
def OldCertificateId(self, OldCertificateId):
|
6998
|
+
self._OldCertificateId = OldCertificateId
|
6999
|
+
|
7000
|
+
@property
|
7001
|
+
def Offset(self):
|
7002
|
+
return self._Offset
|
7003
|
+
|
7004
|
+
@Offset.setter
|
7005
|
+
def Offset(self, Offset):
|
7006
|
+
self._Offset = Offset
|
7007
|
+
|
7008
|
+
@property
|
7009
|
+
def Limit(self):
|
7010
|
+
return self._Limit
|
7011
|
+
|
7012
|
+
@Limit.setter
|
7013
|
+
def Limit(self, Limit):
|
7014
|
+
self._Limit = Limit
|
7015
|
+
|
7016
|
+
@property
|
7017
|
+
def AsyncCache(self):
|
7018
|
+
return self._AsyncCache
|
7019
|
+
|
7020
|
+
@AsyncCache.setter
|
7021
|
+
def AsyncCache(self, AsyncCache):
|
7022
|
+
self._AsyncCache = AsyncCache
|
7023
|
+
|
6980
7024
|
|
6981
7025
|
def _deserialize(self, params):
|
6982
7026
|
self._CertificateId = params.get("CertificateId")
|
6983
|
-
self._ResourceType = params.get("ResourceType")
|
6984
7027
|
self._IsCache = params.get("IsCache")
|
6985
7028
|
if params.get("Filters") is not None:
|
6986
7029
|
self._Filters = []
|
@@ -6988,6 +7031,11 @@ class DescribeHostCosInstanceListRequest(AbstractModel):
|
|
6988
7031
|
obj = Filter()
|
6989
7032
|
obj._deserialize(item)
|
6990
7033
|
self._Filters.append(obj)
|
7034
|
+
self._ResourceType = params.get("ResourceType")
|
7035
|
+
self._OldCertificateId = params.get("OldCertificateId")
|
7036
|
+
self._Offset = params.get("Offset")
|
7037
|
+
self._Limit = params.get("Limit")
|
7038
|
+
self._AsyncCache = params.get("AsyncCache")
|
6991
7039
|
memeber_set = set(params.keys())
|
6992
7040
|
for name, value in vars(self).items():
|
6993
7041
|
property_name = name[1:]
|
@@ -4001,11 +4001,14 @@ class CreateRabbitMQVirtualHostRequest(AbstractModel):
|
|
4001
4001
|
:type Description: str
|
4002
4002
|
:param _TraceFlag: 消息轨迹开关,true打开,false关闭,默认关闭
|
4003
4003
|
:type TraceFlag: bool
|
4004
|
+
:param _MirrorQueuePolicyFlag: 是否创建镜像队列策略,默认值 true
|
4005
|
+
:type MirrorQueuePolicyFlag: bool
|
4004
4006
|
"""
|
4005
4007
|
self._InstanceId = None
|
4006
4008
|
self._VirtualHost = None
|
4007
4009
|
self._Description = None
|
4008
4010
|
self._TraceFlag = None
|
4011
|
+
self._MirrorQueuePolicyFlag = None
|
4009
4012
|
|
4010
4013
|
@property
|
4011
4014
|
def InstanceId(self):
|
@@ -4039,12 +4042,21 @@ class CreateRabbitMQVirtualHostRequest(AbstractModel):
|
|
4039
4042
|
def TraceFlag(self, TraceFlag):
|
4040
4043
|
self._TraceFlag = TraceFlag
|
4041
4044
|
|
4045
|
+
@property
|
4046
|
+
def MirrorQueuePolicyFlag(self):
|
4047
|
+
return self._MirrorQueuePolicyFlag
|
4048
|
+
|
4049
|
+
@MirrorQueuePolicyFlag.setter
|
4050
|
+
def MirrorQueuePolicyFlag(self, MirrorQueuePolicyFlag):
|
4051
|
+
self._MirrorQueuePolicyFlag = MirrorQueuePolicyFlag
|
4052
|
+
|
4042
4053
|
|
4043
4054
|
def _deserialize(self, params):
|
4044
4055
|
self._InstanceId = params.get("InstanceId")
|
4045
4056
|
self._VirtualHost = params.get("VirtualHost")
|
4046
4057
|
self._Description = params.get("Description")
|
4047
4058
|
self._TraceFlag = params.get("TraceFlag")
|
4059
|
+
self._MirrorQueuePolicyFlag = params.get("MirrorQueuePolicyFlag")
|
4048
4060
|
memeber_set = set(params.keys())
|
4049
4061
|
for name, value in vars(self).items():
|
4050
4062
|
property_name = name[1:]
|
@@ -10167,6 +10179,15 @@ class DescribeRabbitMQQueueDetailResponse(AbstractModel):
|
|
10167
10179
|
:param _Node: 节点
|
10168
10180
|
注意:此字段可能返回 null,表示取不到有效值。
|
10169
10181
|
:type Node: str
|
10182
|
+
:param _DeadLetterStrategy: 仲裁队列死信一致性策略
|
10183
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
10184
|
+
:type DeadLetterStrategy: str
|
10185
|
+
:param _QueueLeaderLocator: 仲裁队列的领导者选举策略
|
10186
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
10187
|
+
:type QueueLeaderLocator: str
|
10188
|
+
:param _QuorumInitialGroupSize: 仲裁队列的初始副本组大小
|
10189
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
10190
|
+
:type QuorumInitialGroupSize: int
|
10170
10191
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
10171
10192
|
:type RequestId: str
|
10172
10193
|
"""
|
@@ -10194,6 +10215,9 @@ class DescribeRabbitMQQueueDetailResponse(AbstractModel):
|
|
10194
10215
|
self._MaxInMemoryBytes = None
|
10195
10216
|
self._CreateTime = None
|
10196
10217
|
self._Node = None
|
10218
|
+
self._DeadLetterStrategy = None
|
10219
|
+
self._QueueLeaderLocator = None
|
10220
|
+
self._QuorumInitialGroupSize = None
|
10197
10221
|
self._RequestId = None
|
10198
10222
|
|
10199
10223
|
@property
|
@@ -10388,6 +10412,30 @@ class DescribeRabbitMQQueueDetailResponse(AbstractModel):
|
|
10388
10412
|
def Node(self, Node):
|
10389
10413
|
self._Node = Node
|
10390
10414
|
|
10415
|
+
@property
|
10416
|
+
def DeadLetterStrategy(self):
|
10417
|
+
return self._DeadLetterStrategy
|
10418
|
+
|
10419
|
+
@DeadLetterStrategy.setter
|
10420
|
+
def DeadLetterStrategy(self, DeadLetterStrategy):
|
10421
|
+
self._DeadLetterStrategy = DeadLetterStrategy
|
10422
|
+
|
10423
|
+
@property
|
10424
|
+
def QueueLeaderLocator(self):
|
10425
|
+
return self._QueueLeaderLocator
|
10426
|
+
|
10427
|
+
@QueueLeaderLocator.setter
|
10428
|
+
def QueueLeaderLocator(self, QueueLeaderLocator):
|
10429
|
+
self._QueueLeaderLocator = QueueLeaderLocator
|
10430
|
+
|
10431
|
+
@property
|
10432
|
+
def QuorumInitialGroupSize(self):
|
10433
|
+
return self._QuorumInitialGroupSize
|
10434
|
+
|
10435
|
+
@QuorumInitialGroupSize.setter
|
10436
|
+
def QuorumInitialGroupSize(self, QuorumInitialGroupSize):
|
10437
|
+
self._QuorumInitialGroupSize = QuorumInitialGroupSize
|
10438
|
+
|
10391
10439
|
@property
|
10392
10440
|
def RequestId(self):
|
10393
10441
|
return self._RequestId
|
@@ -10422,6 +10470,9 @@ class DescribeRabbitMQQueueDetailResponse(AbstractModel):
|
|
10422
10470
|
self._MaxInMemoryBytes = params.get("MaxInMemoryBytes")
|
10423
10471
|
self._CreateTime = params.get("CreateTime")
|
10424
10472
|
self._Node = params.get("Node")
|
10473
|
+
self._DeadLetterStrategy = params.get("DeadLetterStrategy")
|
10474
|
+
self._QueueLeaderLocator = params.get("QueueLeaderLocator")
|
10475
|
+
self._QuorumInitialGroupSize = params.get("QuorumInitialGroupSize")
|
10425
10476
|
self._RequestId = params.get("RequestId")
|
10426
10477
|
|
10427
10478
|
|
@@ -41,6 +41,9 @@ FAILEDOPERATION_NOTRTMPFUNCTION = 'FailedOperation.NotRtmpFunction'
|
|
41
41
|
# 查询任务失败
|
42
42
|
FAILEDOPERATION_QUERYTASKINFOFAILED = 'FailedOperation.QueryTaskInfoFailed'
|
43
43
|
|
44
|
+
# 请求过期。
|
45
|
+
FAILEDOPERATION_REQUESTOUTDATED = 'FailedOperation.RequestOutdated'
|
46
|
+
|
44
47
|
# 云API混流模板和SDK混流冲突。
|
45
48
|
FAILEDOPERATION_REQUESTREJECTION = 'FailedOperation.RequestRejection'
|
46
49
|
|
@@ -408,27 +408,36 @@ class AudioParams(AbstractModel):
|
|
408
408
|
|
409
409
|
|
410
410
|
class CloudStorage(AbstractModel):
|
411
|
-
"""
|
411
|
+
"""腾讯云对象存储COS以及第三方云存储的账号信息
|
412
412
|
|
413
413
|
"""
|
414
414
|
|
415
415
|
def __init__(self):
|
416
416
|
r"""
|
417
|
-
:param _Vendor:
|
418
|
-
0
|
419
|
-
|
417
|
+
:param _Vendor: 腾讯云对象存储COS以及第三方云存储账号信息
|
418
|
+
0:腾讯云对象存储 COS
|
419
|
+
1:AWS
|
420
|
+
【注意】目前第三方云存储仅支持AWS,更多第三方云存储陆续支持中
|
421
|
+
示例值:0
|
420
422
|
:type Vendor: int
|
421
|
-
:param _Region:
|
423
|
+
:param _Region: 腾讯云对象存储的[地域信息](https://cloud.tencent.com/document/product/436/6224#.E5.9C.B0.E5.9F.9F)。
|
424
|
+
示例值:cn-shanghai-1
|
425
|
+
|
426
|
+
AWS S3[地域信息](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-regions)
|
427
|
+
示例值:ap-southeast-3
|
422
428
|
:type Region: str
|
423
|
-
:param _Bucket:
|
429
|
+
:param _Bucket: 云存储桶名称。
|
424
430
|
:type Bucket: str
|
425
|
-
:param _AccessKey:
|
426
|
-
|
431
|
+
:param _AccessKey: 云存储的access_key账号信息。
|
432
|
+
若存储至腾讯云对象存储COS,请前往https://console.cloud.tencent.com/cam/capi 查看或创建,对应链接中密钥字段的SecretId值。
|
433
|
+
示例值:test-accesskey
|
427
434
|
:type AccessKey: str
|
428
|
-
:param _SecretKey:
|
429
|
-
|
435
|
+
:param _SecretKey: 云存储的secret_key账号信息。
|
436
|
+
若存储至腾讯云对象存储COS,请前往https://console.cloud.tencent.com/cam/capi 查看或创建,对应链接中密钥字段的SecretKey值。
|
437
|
+
示例值:test-secretkey
|
430
438
|
:type SecretKey: str
|
431
|
-
:param _FileNamePrefix:
|
439
|
+
:param _FileNamePrefix: 云存储bucket 的指定位置,由字符串数组组成。合法的字符串范围az,AZ,0~9,'_'和'-',举个例子,录制文件xxx.m3u8在 ["prefix1", "prefix2"]作用下,会变成prefix1/prefix2/TaskId/xxx.m3u8。
|
440
|
+
示例值:["prefix1", "prefix2"]
|
432
441
|
:type FileNamePrefix: list of str
|
433
442
|
"""
|
434
443
|
self._Vendor = None
|
@@ -3962,10 +3971,18 @@ class DescribeWebRecordResponse(AbstractModel):
|
|
3962
3971
|
r"""
|
3963
3972
|
:param _Status: 1: 正在录制中
|
3964
3973
|
:type Status: int
|
3974
|
+
:param _TaskId: 在使用RecordId查询时返回
|
3975
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3976
|
+
:type TaskId: str
|
3977
|
+
:param _RecordId: 在使用TaskId查询时返回
|
3978
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3979
|
+
:type RecordId: str
|
3965
3980
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3966
3981
|
:type RequestId: str
|
3967
3982
|
"""
|
3968
3983
|
self._Status = None
|
3984
|
+
self._TaskId = None
|
3985
|
+
self._RecordId = None
|
3969
3986
|
self._RequestId = None
|
3970
3987
|
|
3971
3988
|
@property
|
@@ -3976,6 +3993,22 @@ class DescribeWebRecordResponse(AbstractModel):
|
|
3976
3993
|
def Status(self, Status):
|
3977
3994
|
self._Status = Status
|
3978
3995
|
|
3996
|
+
@property
|
3997
|
+
def TaskId(self):
|
3998
|
+
return self._TaskId
|
3999
|
+
|
4000
|
+
@TaskId.setter
|
4001
|
+
def TaskId(self, TaskId):
|
4002
|
+
self._TaskId = TaskId
|
4003
|
+
|
4004
|
+
@property
|
4005
|
+
def RecordId(self):
|
4006
|
+
return self._RecordId
|
4007
|
+
|
4008
|
+
@RecordId.setter
|
4009
|
+
def RecordId(self, RecordId):
|
4010
|
+
self._RecordId = RecordId
|
4011
|
+
|
3979
4012
|
@property
|
3980
4013
|
def RequestId(self):
|
3981
4014
|
return self._RequestId
|
@@ -3987,6 +4020,8 @@ class DescribeWebRecordResponse(AbstractModel):
|
|
3987
4020
|
|
3988
4021
|
def _deserialize(self, params):
|
3989
4022
|
self._Status = params.get("Status")
|
4023
|
+
self._TaskId = params.get("TaskId")
|
4024
|
+
self._RecordId = params.get("RecordId")
|
3990
4025
|
self._RequestId = params.get("RequestId")
|
3991
4026
|
|
3992
4027
|
|
@@ -9207,15 +9242,15 @@ audio_video:音视频录制文件
|
|
9207
9242
|
|
9208
9243
|
|
9209
9244
|
class StorageParams(AbstractModel):
|
9210
|
-
"""
|
9245
|
+
"""录制存储参数
|
9211
9246
|
|
9212
9247
|
"""
|
9213
9248
|
|
9214
9249
|
def __init__(self):
|
9215
9250
|
r"""
|
9216
|
-
:param _CloudStorage:
|
9251
|
+
:param _CloudStorage: 腾讯云对象存储COS以及第三方云存储的账号信息
|
9217
9252
|
:type CloudStorage: :class:`tencentcloud.trtc.v20190722.models.CloudStorage`
|
9218
|
-
:param _CloudVod:
|
9253
|
+
:param _CloudVod: 腾讯云云点播Vod的存储信息
|
9219
9254
|
:type CloudVod: :class:`tencentcloud.trtc.v20190722.models.CloudVod`
|
9220
9255
|
"""
|
9221
9256
|
self._CloudStorage = None
|
@@ -32,7 +32,7 @@ class TrtcClient(AbstractClient):
|
|
32
32
|
|
33
33
|
您可以通过此接口实现如下目标:
|
34
34
|
* 指定订阅流参数(RecordParams)来指定需要录制的主播的黑名单或者白名单。
|
35
|
-
*
|
35
|
+
* 指定录制存储参数(StorageParams)来指定上传到您希望的云存储,目前支持腾讯云(云点播VOD、对象存储COS)和第三方AWS
|
36
36
|
* 指定混流模式下的音视频转码详细参数(MixTranscodeParams),包括视频分辨率、视频码率、视频帧率、以及声音质量等
|
37
37
|
* 指定混流模式各路画面的位置和布局或者也可以指定自动模板的方式来配置。
|
38
38
|
|
@@ -17707,6 +17707,8 @@ class DescribeGatewayFlowMonitorDetailRequest(AbstractModel):
|
|
17707
17707
|
:type OrderField: str
|
17708
17708
|
:param _OrderDirection: 排序方法。顺序:`ASC`,倒序:`DESC`。默认值`DESC`。
|
17709
17709
|
:type OrderDirection: str
|
17710
|
+
:param _PrivateIpAddress: VPC内部IPv4地址,精确匹配
|
17711
|
+
:type PrivateIpAddress: str
|
17710
17712
|
"""
|
17711
17713
|
self._TimePoint = None
|
17712
17714
|
self._VpnId = None
|
@@ -17717,6 +17719,7 @@ class DescribeGatewayFlowMonitorDetailRequest(AbstractModel):
|
|
17717
17719
|
self._Limit = None
|
17718
17720
|
self._OrderField = None
|
17719
17721
|
self._OrderDirection = None
|
17722
|
+
self._PrivateIpAddress = None
|
17720
17723
|
|
17721
17724
|
@property
|
17722
17725
|
def TimePoint(self):
|
@@ -17790,6 +17793,14 @@ class DescribeGatewayFlowMonitorDetailRequest(AbstractModel):
|
|
17790
17793
|
def OrderDirection(self, OrderDirection):
|
17791
17794
|
self._OrderDirection = OrderDirection
|
17792
17795
|
|
17796
|
+
@property
|
17797
|
+
def PrivateIpAddress(self):
|
17798
|
+
return self._PrivateIpAddress
|
17799
|
+
|
17800
|
+
@PrivateIpAddress.setter
|
17801
|
+
def PrivateIpAddress(self, PrivateIpAddress):
|
17802
|
+
self._PrivateIpAddress = PrivateIpAddress
|
17803
|
+
|
17793
17804
|
|
17794
17805
|
def _deserialize(self, params):
|
17795
17806
|
self._TimePoint = params.get("TimePoint")
|
@@ -17801,6 +17812,7 @@ class DescribeGatewayFlowMonitorDetailRequest(AbstractModel):
|
|
17801
17812
|
self._Limit = params.get("Limit")
|
17802
17813
|
self._OrderField = params.get("OrderField")
|
17803
17814
|
self._OrderDirection = params.get("OrderDirection")
|
17815
|
+
self._PrivateIpAddress = params.get("PrivateIpAddress")
|
17804
17816
|
memeber_set = set(params.keys())
|
17805
17817
|
for name, value in vars(self).items():
|
17806
17818
|
property_name = name[1:]
|
@@ -26710,7 +26722,7 @@ class DownloadCustomerGatewayConfigurationRequest(AbstractModel):
|
|
26710
26722
|
:type VpnGatewayId: str
|
26711
26723
|
:param _VpnConnectionId: VPN通道实例ID。形如:vpnx-f49l6u0z。
|
26712
26724
|
:type VpnConnectionId: str
|
26713
|
-
:param _CustomerGatewayVendor: 对端网关厂商信息对象,可通过[DescribeCustomerGatewayVendors](https://cloud.tencent.com/document/api/215/
|
26725
|
+
:param _CustomerGatewayVendor: 对端网关厂商信息对象,可通过[DescribeCustomerGatewayVendors](https://cloud.tencent.com/document/api/215/17517)获取。
|
26714
26726
|
:type CustomerGatewayVendor: :class:`tencentcloud.vpc.v20170312.models.CustomerGatewayVendor`
|
26715
26727
|
:param _InterfaceName: 通道接入设备物理接口名称。
|
26716
26728
|
:type InterfaceName: str
|
@@ -35451,8 +35463,8 @@ class NatGateway(AbstractModel):
|
|
35451
35463
|
:param _CreatedTime: NAT网关创建的时间。
|
35452
35464
|
:type CreatedTime: str
|
35453
35465
|
:param _State: NAT网关的状态。
|
35454
|
-
'PENDING':生产中,'DELETING'
|
35455
|
-
‘
|
35466
|
+
'PENDING':生产中,'DELETING':删除中/子实例关闭中,'AVAILABLE':运行中,'UPDATING':升级中,
|
35467
|
+
‘PENDFAILURE’:创建失败,‘DELETEFAILURE:删除失败,‘DENIED’:子实例关闭中
|
35456
35468
|
:type State: str
|
35457
35469
|
:param _InternetMaxBandwidthOut: 网关最大外网出带宽(单位:Mbps)。
|
35458
35470
|
:type InternetMaxBandwidthOut: int
|