tencentcloud-sdk-python 3.0.1134__py2.py3-none-any.whl → 3.0.1136__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/apm/v20210622/apm_client.py +69 -0
- tencentcloud/apm/v20210622/errorcodes.py +27 -0
- tencentcloud/apm/v20210622/models.py +639 -0
- tencentcloud/billing/v20180709/models.py +39 -0
- tencentcloud/ccc/v20200210/models.py +5 -1
- tencentcloud/cdn/v20180606/cdn_client.py +1 -1
- tencentcloud/cloudstudio/v20230508/models.py +1 -1
- tencentcloud/dcdb/v20180411/models.py +74 -0
- tencentcloud/ess/v20201111/models.py +97 -0
- tencentcloud/essbasic/v20210526/models.py +97 -0
- tencentcloud/ims/v20201229/errorcodes.py +3 -0
- tencentcloud/ims/v20201229/ims_client.py +2 -3
- tencentcloud/ims/v20201229/models.py +12 -12
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +23 -0
- tencentcloud/iotexplorer/v20190423/models.py +145 -0
- tencentcloud/iss/v20230517/models.py +48 -0
- 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/errorcodes.py +0 -12
- tencentcloud/lke/v20231130/lke_client.py +0 -46
- tencentcloud/lke/v20231130/models.py +0 -242
- tencentcloud/mariadb/v20170312/models.py +74 -0
- tencentcloud/ocr/v20181119/models.py +1 -0
- tencentcloud/tdid/v20210519/tdid_client.py +1 -1
- tencentcloud/tdmq/v20200217/models.py +51 -0
- tencentcloud/teo/v20220901/models.py +19 -20
- tencentcloud/tione/v20211111/models.py +49 -0
- {tencentcloud_sdk_python-3.0.1134.dist-info → tencentcloud_sdk_python-3.0.1136.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1134.dist-info → tencentcloud_sdk_python-3.0.1136.dist-info}/RECORD +36 -36
- {tencentcloud_sdk_python-3.0.1134.dist-info → tencentcloud_sdk_python-3.0.1136.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1134.dist-info → tencentcloud_sdk_python-3.0.1136.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1134.dist-info → tencentcloud_sdk_python-3.0.1136.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
|
@@ -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
|
|
@@ -115,6 +115,9 @@ class AccelerationDomain(AbstractModel):
|
|
115
115
|
<li>HTTPS: HTTPS协议回源。</li>
|
116
116
|
注意:此字段可能返回 null,表示取不到有效值。
|
117
117
|
:type OriginProtocol: str
|
118
|
+
:param _Certificate: 域名证书信息
|
119
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
120
|
+
:type Certificate: :class:`tencentcloud.teo.v20220901.models.AccelerationDomainCertificate`
|
118
121
|
:param _HttpOriginPort: HTTP回源端口。
|
119
122
|
注意:此字段可能返回 null,表示取不到有效值。
|
120
123
|
:type HttpOriginPort: int
|
@@ -139,15 +142,13 @@ class AccelerationDomain(AbstractModel):
|
|
139
142
|
:param _OwnershipVerification: 当域名需要进行归属权验证才能继续提供服务时,该对象会携带对应验证方式所需要的信息。
|
140
143
|
注意:此字段可能返回 null,表示取不到有效值。
|
141
144
|
:type OwnershipVerification: :class:`tencentcloud.teo.v20220901.models.OwnershipVerification`
|
142
|
-
:param _Certificate: 域名证书信息
|
143
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
144
|
-
:type Certificate: :class:`tencentcloud.teo.v20220901.models.AccelerationDomainCertificate`
|
145
145
|
"""
|
146
146
|
self._ZoneId = None
|
147
147
|
self._DomainName = None
|
148
148
|
self._DomainStatus = None
|
149
149
|
self._OriginDetail = None
|
150
150
|
self._OriginProtocol = None
|
151
|
+
self._Certificate = None
|
151
152
|
self._HttpOriginPort = None
|
152
153
|
self._HttpsOriginPort = None
|
153
154
|
self._IPv6Status = None
|
@@ -156,7 +157,6 @@ class AccelerationDomain(AbstractModel):
|
|
156
157
|
self._CreatedOn = None
|
157
158
|
self._ModifiedOn = None
|
158
159
|
self._OwnershipVerification = None
|
159
|
-
self._Certificate = None
|
160
160
|
|
161
161
|
@property
|
162
162
|
def ZoneId(self):
|
@@ -198,6 +198,14 @@ class AccelerationDomain(AbstractModel):
|
|
198
198
|
def OriginProtocol(self, OriginProtocol):
|
199
199
|
self._OriginProtocol = OriginProtocol
|
200
200
|
|
201
|
+
@property
|
202
|
+
def Certificate(self):
|
203
|
+
return self._Certificate
|
204
|
+
|
205
|
+
@Certificate.setter
|
206
|
+
def Certificate(self, Certificate):
|
207
|
+
self._Certificate = Certificate
|
208
|
+
|
201
209
|
@property
|
202
210
|
def HttpOriginPort(self):
|
203
211
|
return self._HttpOriginPort
|
@@ -262,14 +270,6 @@ class AccelerationDomain(AbstractModel):
|
|
262
270
|
def OwnershipVerification(self, OwnershipVerification):
|
263
271
|
self._OwnershipVerification = OwnershipVerification
|
264
272
|
|
265
|
-
@property
|
266
|
-
def Certificate(self):
|
267
|
-
return self._Certificate
|
268
|
-
|
269
|
-
@Certificate.setter
|
270
|
-
def Certificate(self, Certificate):
|
271
|
-
self._Certificate = Certificate
|
272
|
-
|
273
273
|
|
274
274
|
def _deserialize(self, params):
|
275
275
|
self._ZoneId = params.get("ZoneId")
|
@@ -279,6 +279,9 @@ class AccelerationDomain(AbstractModel):
|
|
279
279
|
self._OriginDetail = OriginDetail()
|
280
280
|
self._OriginDetail._deserialize(params.get("OriginDetail"))
|
281
281
|
self._OriginProtocol = params.get("OriginProtocol")
|
282
|
+
if params.get("Certificate") is not None:
|
283
|
+
self._Certificate = AccelerationDomainCertificate()
|
284
|
+
self._Certificate._deserialize(params.get("Certificate"))
|
282
285
|
self._HttpOriginPort = params.get("HttpOriginPort")
|
283
286
|
self._HttpsOriginPort = params.get("HttpsOriginPort")
|
284
287
|
self._IPv6Status = params.get("IPv6Status")
|
@@ -289,9 +292,6 @@ class AccelerationDomain(AbstractModel):
|
|
289
292
|
if params.get("OwnershipVerification") is not None:
|
290
293
|
self._OwnershipVerification = OwnershipVerification()
|
291
294
|
self._OwnershipVerification._deserialize(params.get("OwnershipVerification"))
|
292
|
-
if params.get("Certificate") is not None:
|
293
|
-
self._Certificate = AccelerationDomainCertificate()
|
294
|
-
self._Certificate._deserialize(params.get("Certificate"))
|
295
295
|
memeber_set = set(params.keys())
|
296
296
|
for name, value in vars(self).items():
|
297
297
|
property_name = name[1:]
|
@@ -19342,7 +19342,7 @@ class OriginDetail(AbstractModel):
|
|
19342
19342
|
<li>COS:腾讯云 COS 对象存储源站;</li>
|
19343
19343
|
<li>AWS_S3:AWS S3 对象存储源站;</li>
|
19344
19344
|
<li>ORIGIN_GROUP:源站组类型源站;</li>
|
19345
|
-
|
19345
|
+
<li>VODEO:云点播(混合云版);</li>
|
19346
19346
|
<li>SPACE:源站卸载,当前仅白名单开放;</li>
|
19347
19347
|
<li>LB:负载均衡,当前仅白名单开放。</li>
|
19348
19348
|
:type OriginType: str
|
@@ -19352,7 +19352,6 @@ class OriginDetail(AbstractModel):
|
|
19352
19352
|
<li>当 OriginType = AWS_S3,该参数为 S3 桶的访问域名;</li>
|
19353
19353
|
<li>当 OriginType = ORIGIN_GROUP 时,该参数为源站组 ID;</li>
|
19354
19354
|
<li>当 OriginType = VODEO 时,如果 VodeoDistributionRange = ALL,则该参数为 "all-buckets-in-vodeo-application";如果 VodeoDistributionRange = Bucket,则该参数为对应存储桶域名。</li>
|
19355
|
-
|
19356
19355
|
:type Origin: str
|
19357
19356
|
:param _BackupOrigin: 备用源站组 ID,该参数仅在 OriginType = ORIGIN_GROUP 且配置了备源站组时会生效。
|
19358
19357
|
:type BackupOrigin: str
|
@@ -19360,17 +19359,17 @@ class OriginDetail(AbstractModel):
|
|
19360
19359
|
:type OriginGroupName: str
|
19361
19360
|
:param _BackOriginGroupName: 备用源站组名称,该参数仅当 OriginType = ORIGIN_GROUP 且配置了备用源站组时会生效。
|
19362
19361
|
:type BackOriginGroupName: str
|
19363
|
-
:param _PrivateAccess: 指定是否允许访问私有对象存储源站,该参数仅当源站类型
|
19362
|
+
:param _PrivateAccess: 指定是否允许访问私有对象存储源站,该参数仅当源站类型OriginType = COS 或 AWS_S3 时会生效,取值有:
|
19364
19363
|
<li>on:使用私有鉴权;</li>
|
19365
19364
|
<li>off:不使用私有鉴权。</li>
|
19366
|
-
不填写,默认值为off。
|
19365
|
+
不填写,默认值为 off。
|
19367
19366
|
:type PrivateAccess: str
|
19368
19367
|
:param _PrivateParameters: 私有鉴权使用参数,该参数仅当源站类型 PrivateAccess = on 时会生效。
|
19369
19368
|
注意:此字段可能返回 null,表示取不到有效值。
|
19370
19369
|
:type PrivateParameters: list of PrivateParameter
|
19371
19370
|
:param _VodeoSubAppId: MO 子应用 ID
|
19372
19371
|
:type VodeoSubAppId: int
|
19373
|
-
:param _VodeoDistributionRange: MO 分发范围,取值有: <li>All:全部</li> <li>Bucket:存储桶</li>
|
19372
|
+
:param _VodeoDistributionRange: MO 分发范围,取值有: <li>All:全部</li> <li>Bucket:存储桶</li>
|
19374
19373
|
:type VodeoDistributionRange: str
|
19375
19374
|
:param _VodeoBucketId: MO 存储桶 ID,分发范围(DistributionRange)为存储桶(Bucket)时必填
|
19376
19375
|
:type VodeoBucketId: str
|
@@ -4739,6 +4739,9 @@ class DataConfig(AbstractModel):
|
|
4739
4739
|
:param _CFSTurboSource: 配置TurboFS的数据
|
4740
4740
|
注意:此字段可能返回 null,表示取不到有效值。
|
4741
4741
|
:type CFSTurboSource: :class:`tencentcloud.tione.v20211111.models.CFSTurbo`
|
4742
|
+
:param _LocalDiskSource: 来自本地磁盘的信息
|
4743
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4744
|
+
:type LocalDiskSource: :class:`tencentcloud.tione.v20211111.models.LocalDisk`
|
4742
4745
|
"""
|
4743
4746
|
self._MappingPath = None
|
4744
4747
|
self._DataSourceType = None
|
@@ -4748,6 +4751,7 @@ class DataConfig(AbstractModel):
|
|
4748
4751
|
self._HDFSSource = None
|
4749
4752
|
self._GooseFSSource = None
|
4750
4753
|
self._CFSTurboSource = None
|
4754
|
+
self._LocalDiskSource = None
|
4751
4755
|
|
4752
4756
|
@property
|
4753
4757
|
def MappingPath(self):
|
@@ -4813,6 +4817,14 @@ class DataConfig(AbstractModel):
|
|
4813
4817
|
def CFSTurboSource(self, CFSTurboSource):
|
4814
4818
|
self._CFSTurboSource = CFSTurboSource
|
4815
4819
|
|
4820
|
+
@property
|
4821
|
+
def LocalDiskSource(self):
|
4822
|
+
return self._LocalDiskSource
|
4823
|
+
|
4824
|
+
@LocalDiskSource.setter
|
4825
|
+
def LocalDiskSource(self, LocalDiskSource):
|
4826
|
+
self._LocalDiskSource = LocalDiskSource
|
4827
|
+
|
4816
4828
|
|
4817
4829
|
def _deserialize(self, params):
|
4818
4830
|
self._MappingPath = params.get("MappingPath")
|
@@ -4835,6 +4847,9 @@ class DataConfig(AbstractModel):
|
|
4835
4847
|
if params.get("CFSTurboSource") is not None:
|
4836
4848
|
self._CFSTurboSource = CFSTurbo()
|
4837
4849
|
self._CFSTurboSource._deserialize(params.get("CFSTurboSource"))
|
4850
|
+
if params.get("LocalDiskSource") is not None:
|
4851
|
+
self._LocalDiskSource = LocalDisk()
|
4852
|
+
self._LocalDiskSource._deserialize(params.get("LocalDiskSource"))
|
4838
4853
|
memeber_set = set(params.keys())
|
4839
4854
|
for name, value in vars(self).items():
|
4840
4855
|
property_name = name[1:]
|
@@ -13227,6 +13242,40 @@ class IntranetCallInfo(AbstractModel):
|
|
13227
13242
|
|
13228
13243
|
|
13229
13244
|
|
13245
|
+
class LocalDisk(AbstractModel):
|
13246
|
+
"""本地磁盘信息
|
13247
|
+
|
13248
|
+
"""
|
13249
|
+
|
13250
|
+
def __init__(self):
|
13251
|
+
r"""
|
13252
|
+
:param _InstanceId: 节点ID
|
13253
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
13254
|
+
:type InstanceId: str
|
13255
|
+
"""
|
13256
|
+
self._InstanceId = None
|
13257
|
+
|
13258
|
+
@property
|
13259
|
+
def InstanceId(self):
|
13260
|
+
return self._InstanceId
|
13261
|
+
|
13262
|
+
@InstanceId.setter
|
13263
|
+
def InstanceId(self, InstanceId):
|
13264
|
+
self._InstanceId = InstanceId
|
13265
|
+
|
13266
|
+
|
13267
|
+
def _deserialize(self, params):
|
13268
|
+
self._InstanceId = params.get("InstanceId")
|
13269
|
+
memeber_set = set(params.keys())
|
13270
|
+
for name, value in vars(self).items():
|
13271
|
+
property_name = name[1:]
|
13272
|
+
if property_name in memeber_set:
|
13273
|
+
memeber_set.remove(property_name)
|
13274
|
+
if len(memeber_set) > 0:
|
13275
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
13276
|
+
|
13277
|
+
|
13278
|
+
|
13230
13279
|
class LogConfig(AbstractModel):
|
13231
13280
|
"""日志配置
|
13232
13281
|
|