tencentcloud-sdk-python 3.0.974__py2.py3-none-any.whl → 3.0.976__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.
Potentially problematic release.
This version of tencentcloud-sdk-python might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/cbs/v20170312/cbs_client.py +2 -2
- tencentcloud/ccc/v20200210/ccc_client.py +1 -1
- tencentcloud/ccc/v20200210/models.py +67 -1
- tencentcloud/cdb/v20170320/errorcodes.py +6 -0
- tencentcloud/cdwch/v20200915/models.py +201 -0
- tencentcloud/ckafka/v20190819/models.py +2 -2
- tencentcloud/clb/v20180317/models.py +52 -0
- tencentcloud/cls/v20201016/models.py +26 -0
- tencentcloud/cvm/v20170312/cvm_client.py +1 -0
- tencentcloud/cvm/v20170312/models.py +1 -13
- tencentcloud/cynosdb/v20190107/models.py +9 -6
- tencentcloud/dnspod/v20210323/errorcodes.py +7 -7
- tencentcloud/dnspod/v20210323/models.py +1 -1
- tencentcloud/ecm/v20190719/models.py +12 -0
- tencentcloud/eis/v20210601/errorcodes.py +3 -0
- tencentcloud/emr/v20190103/errorcodes.py +3 -0
- tencentcloud/ess/v20201111/ess_client.py +46 -24
- tencentcloud/ess/v20201111/models.py +274 -171
- tencentcloud/essbasic/v20210526/essbasic_client.py +7 -0
- tencentcloud/essbasic/v20210526/models.py +22 -15
- tencentcloud/faceid/v20180301/models.py +17 -1
- tencentcloud/iai/v20180301/models.py +3 -7
- tencentcloud/iai/v20200303/models.py +3 -7
- tencentcloud/lcic/v20220817/errorcodes.py +3 -0
- tencentcloud/lcic/v20220817/models.py +74 -0
- tencentcloud/monitor/v20180724/models.py +182 -2
- tencentcloud/monitor/v20180724/monitor_client.py +23 -0
- tencentcloud/mrs/v20200910/models.py +68 -0
- tencentcloud/oceanus/v20190422/models.py +15 -1
- tencentcloud/ses/v20201002/models.py +1 -1
- tencentcloud/sqlserver/v20180328/models.py +3 -3
- tencentcloud/sqlserver/v20180328/sqlserver_client.py +0 -1
- tencentcloud/ssl/v20191205/models.py +1836 -50
- tencentcloud/ssl/v20191205/ssl_client.py +69 -0
- tencentcloud/tdmq/v20200217/models.py +587 -1
- tencentcloud/tdmq/v20200217/tdmq_client.py +46 -0
- tencentcloud/tem/v20210701/errorcodes.py +3 -0
- tencentcloud/teo/v20220901/errorcodes.py +21 -0
- tencentcloud/teo/v20220901/models.py +96 -0
- tencentcloud/teo/v20220901/teo_client.py +23 -0
- tencentcloud/thpc/v20230321/models.py +33 -0
- tencentcloud/tione/v20211111/models.py +121 -0
- tencentcloud/trtc/v20190722/models.py +5 -2
- tencentcloud/tse/v20201207/models.py +13 -0
- tencentcloud/tsf/v20180326/models.py +4 -3
- tencentcloud/vpc/v20170312/errorcodes.py +3 -0
- tencentcloud/waf/v20180125/models.py +82 -0
- tencentcloud/waf/v20180125/waf_client.py +23 -0
- {tencentcloud_sdk_python-3.0.974.dist-info → tencentcloud_sdk_python-3.0.976.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.974.dist-info → tencentcloud_sdk_python-3.0.976.dist-info}/RECORD +54 -54
- {tencentcloud_sdk_python-3.0.974.dist-info → tencentcloud_sdk_python-3.0.976.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.974.dist-info → tencentcloud_sdk_python-3.0.976.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.974.dist-info → tencentcloud_sdk_python-3.0.976.dist-info}/top_level.txt +0 -0
|
@@ -1590,6 +1590,29 @@ class TdmqClient(AbstractClient):
|
|
|
1590
1590
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1591
1591
|
|
|
1592
1592
|
|
|
1593
|
+
def DescribeRocketMQMsgTrace(self, request):
|
|
1594
|
+
"""查询消息轨迹
|
|
1595
|
+
|
|
1596
|
+
:param request: Request instance for DescribeRocketMQMsgTrace.
|
|
1597
|
+
:type request: :class:`tencentcloud.tdmq.v20200217.models.DescribeRocketMQMsgTraceRequest`
|
|
1598
|
+
:rtype: :class:`tencentcloud.tdmq.v20200217.models.DescribeRocketMQMsgTraceResponse`
|
|
1599
|
+
|
|
1600
|
+
"""
|
|
1601
|
+
try:
|
|
1602
|
+
params = request._serialize()
|
|
1603
|
+
headers = request.headers
|
|
1604
|
+
body = self.call("DescribeRocketMQMsgTrace", params, headers=headers)
|
|
1605
|
+
response = json.loads(body)
|
|
1606
|
+
model = models.DescribeRocketMQMsgTraceResponse()
|
|
1607
|
+
model._deserialize(response["Response"])
|
|
1608
|
+
return model
|
|
1609
|
+
except Exception as e:
|
|
1610
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1611
|
+
raise
|
|
1612
|
+
else:
|
|
1613
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1614
|
+
|
|
1615
|
+
|
|
1593
1616
|
def DescribeRocketMQNamespaces(self, request):
|
|
1594
1617
|
"""获取RocketMQ命名空间列表
|
|
1595
1618
|
|
|
@@ -1613,6 +1636,29 @@ class TdmqClient(AbstractClient):
|
|
|
1613
1636
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1614
1637
|
|
|
1615
1638
|
|
|
1639
|
+
def DescribeRocketMQTopicMsgs(self, request):
|
|
1640
|
+
"""rocketmq 消息查询
|
|
1641
|
+
|
|
1642
|
+
:param request: Request instance for DescribeRocketMQTopicMsgs.
|
|
1643
|
+
:type request: :class:`tencentcloud.tdmq.v20200217.models.DescribeRocketMQTopicMsgsRequest`
|
|
1644
|
+
:rtype: :class:`tencentcloud.tdmq.v20200217.models.DescribeRocketMQTopicMsgsResponse`
|
|
1645
|
+
|
|
1646
|
+
"""
|
|
1647
|
+
try:
|
|
1648
|
+
params = request._serialize()
|
|
1649
|
+
headers = request.headers
|
|
1650
|
+
body = self.call("DescribeRocketMQTopicMsgs", params, headers=headers)
|
|
1651
|
+
response = json.loads(body)
|
|
1652
|
+
model = models.DescribeRocketMQTopicMsgsResponse()
|
|
1653
|
+
model._deserialize(response["Response"])
|
|
1654
|
+
return model
|
|
1655
|
+
except Exception as e:
|
|
1656
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1657
|
+
raise
|
|
1658
|
+
else:
|
|
1659
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1660
|
+
|
|
1661
|
+
|
|
1616
1662
|
def DescribeRocketMQTopics(self, request):
|
|
1617
1663
|
"""获取RocketMQ主题列表
|
|
1618
1664
|
|
|
@@ -179,6 +179,9 @@ INVALIDPARAMETERVALUE_CONFIGDATAALREADYEXIST = 'InvalidParameterValue.ConfigData
|
|
|
179
179
|
# 配置不合法。
|
|
180
180
|
INVALIDPARAMETERVALUE_CONFIGDATAINVALID = 'InvalidParameterValue.ConfigDataInvalid'
|
|
181
181
|
|
|
182
|
+
# 创建环境createRegion参数错误。
|
|
183
|
+
INVALIDPARAMETERVALUE_CREATENAMESPACEUNSUPPORTREGIONERROR = 'InvalidParameterValue.CreateNamespaceUnsupportRegionError'
|
|
184
|
+
|
|
182
185
|
# 定时弹性伸缩目标实例数不合法。
|
|
183
186
|
INVALIDPARAMETERVALUE_CRONHPAREPLICASINVALID = 'InvalidParameterValue.CronHpaReplicasInvalid'
|
|
184
187
|
|
|
@@ -218,6 +218,9 @@ INVALIDPARAMETER_INVALIDCACHECONFIGFOLLOWORIGIN = 'InvalidParameter.InvalidCache
|
|
|
218
218
|
# 无效的缓存键。
|
|
219
219
|
INVALIDPARAMETER_INVALIDCACHEKEY = 'InvalidParameter.InvalidCacheKey'
|
|
220
220
|
|
|
221
|
+
# 无效的自定义Cache Key Cookie无效。
|
|
222
|
+
INVALIDPARAMETER_INVALIDCACHEKEYCOOKIE = 'InvalidParameter.InvalidCacheKeyCookie'
|
|
223
|
+
|
|
221
224
|
# 无效的缓存键忽略大小写。
|
|
222
225
|
INVALIDPARAMETER_INVALIDCACHEKEYIGNORECASE = 'InvalidParameter.InvalidCacheKeyIgnoreCase'
|
|
223
226
|
|
|
@@ -440,9 +443,15 @@ INVALIDPARAMETERVALUE_INVALIDDOMAINNAME = 'InvalidParameterValue.InvalidDomainNa
|
|
|
440
443
|
# 加速域名状态不符合要求。
|
|
441
444
|
INVALIDPARAMETERVALUE_INVALIDDOMAINSTATUS = 'InvalidParameterValue.InvalidDomainStatus'
|
|
442
445
|
|
|
446
|
+
# 不支持接入泛域名 CNAME
|
|
447
|
+
INVALIDPARAMETERVALUE_NOTALLOWEDWILDCARDSHAREDCNAME = 'InvalidParameterValue.NotAllowedWildcardSharedCNAME'
|
|
448
|
+
|
|
443
449
|
# 指定的源站组不存在。
|
|
444
450
|
INVALIDPARAMETERVALUE_ORIGINGROUPNOTEXISTS = 'InvalidParameterValue.OriginGroupNotExists'
|
|
445
451
|
|
|
452
|
+
# 请输入合法的共享 CNAME 前缀,最大支持50个字符。
|
|
453
|
+
INVALIDPARAMETERVALUE_SHAREDCNAMEPREFIXNOTMATCH = 'InvalidParameterValue.SharedCNAMEPrefixNotMatch'
|
|
454
|
+
|
|
446
455
|
# 该同名站点标识已被占用,请重新输入。
|
|
447
456
|
INVALIDPARAMETERVALUE_ZONESAMEASNAME = 'InvalidParameterValue.ZoneSameAsName'
|
|
448
457
|
|
|
@@ -524,6 +533,15 @@ OPERATIONDENIED_RECORDISFORBIDDEN = 'OperationDenied.RecordIsForbidden'
|
|
|
524
533
|
# 当前有互相排斥的请求操作并行发起,请稍后重试。
|
|
525
534
|
OPERATIONDENIED_RESOURCELOCKEDTEMPORARY = 'OperationDenied.ResourceLockedTemporary'
|
|
526
535
|
|
|
536
|
+
# 绑定在共享 CNAME 中的域名不允许变更 中国大陆网络优化(国际加速)访问,如果您需要单独变更,请先将域名从共享 CNAME 中解绑。
|
|
537
|
+
OPERATIONDENIED_SHAREDCNAMEUNSUPPORTEDACCELERATEMAINLAND = 'OperationDenied.SharedCNAMEUnsupportedAccelerateMainland'
|
|
538
|
+
|
|
539
|
+
# 绑定在共享 CNAME 中的域名不允许变更 IPv6 访问,如果您需要单独变更,请先将域名从共享 CNAME 中解绑。
|
|
540
|
+
OPERATIONDENIED_SHAREDCNAMEUNSUPPORTEDIPV6 = 'OperationDenied.SharedCNAMEUnsupportedIPv6'
|
|
541
|
+
|
|
542
|
+
# 共享CNAME已被其他站点绑定,请先解绑才能删除站点
|
|
543
|
+
OPERATIONDENIED_ZONEISBINDINGSHAREDCNAME = 'OperationDenied.ZoneIsBindingSharedCNAME'
|
|
544
|
+
|
|
527
545
|
# 资源被占用。
|
|
528
546
|
RESOURCEINUSE = 'ResourceInUse'
|
|
529
547
|
|
|
@@ -599,6 +617,9 @@ RESOURCEUNAVAILABLE_DOMAINNOTFOUND = 'ResourceUnavailable.DomainNotFound'
|
|
|
599
617
|
# 域名不存在或未开启代理。
|
|
600
618
|
RESOURCEUNAVAILABLE_HOSTNOTFOUND = 'ResourceUnavailable.HostNotFound'
|
|
601
619
|
|
|
620
|
+
# 该共享 CNAME 已被占用,请重新输入。
|
|
621
|
+
RESOURCEUNAVAILABLE_SHAREDCNAMEALREADYEXISTS = 'ResourceUnavailable.SharedCNAMEAlreadyExists'
|
|
622
|
+
|
|
602
623
|
# 站点不存在或不属于该账号。
|
|
603
624
|
RESOURCEUNAVAILABLE_ZONENOTFOUND = 'ResourceUnavailable.ZoneNotFound'
|
|
604
625
|
|
|
@@ -4395,6 +4395,102 @@ class CreateSecurityIPGroupResponse(AbstractModel):
|
|
|
4395
4395
|
self._RequestId = params.get("RequestId")
|
|
4396
4396
|
|
|
4397
4397
|
|
|
4398
|
+
class CreateSharedCNAMERequest(AbstractModel):
|
|
4399
|
+
"""CreateSharedCNAME请求参数结构体
|
|
4400
|
+
|
|
4401
|
+
"""
|
|
4402
|
+
|
|
4403
|
+
def __init__(self):
|
|
4404
|
+
r"""
|
|
4405
|
+
:param _ZoneId: 共享 CNAME 所属站点的 ID。
|
|
4406
|
+
:type ZoneId: str
|
|
4407
|
+
:param _SharedCNAMEPrefix: 共享 CNAME 前缀。请输入合法的域名前缀,例如"test-api"、"test-api.com",限制输入 50 个字符。
|
|
4408
|
+
共享 CNAME 完整格式为:<自定义前缀>+<zoneid中的12位随机字符串>+"share.eo.dnse[0-5].com"。例如前缀传入 example.com,EO 会为您创建共享 CNAME:example.com.sai2ig51kaa5.eo.dns2.com
|
|
4409
|
+
示例值:example.com
|
|
4410
|
+
:type SharedCNAMEPrefix: str
|
|
4411
|
+
:param _Description: 描述。可输入 1-50 个任意字符。
|
|
4412
|
+
:type Description: str
|
|
4413
|
+
"""
|
|
4414
|
+
self._ZoneId = None
|
|
4415
|
+
self._SharedCNAMEPrefix = None
|
|
4416
|
+
self._Description = None
|
|
4417
|
+
|
|
4418
|
+
@property
|
|
4419
|
+
def ZoneId(self):
|
|
4420
|
+
return self._ZoneId
|
|
4421
|
+
|
|
4422
|
+
@ZoneId.setter
|
|
4423
|
+
def ZoneId(self, ZoneId):
|
|
4424
|
+
self._ZoneId = ZoneId
|
|
4425
|
+
|
|
4426
|
+
@property
|
|
4427
|
+
def SharedCNAMEPrefix(self):
|
|
4428
|
+
return self._SharedCNAMEPrefix
|
|
4429
|
+
|
|
4430
|
+
@SharedCNAMEPrefix.setter
|
|
4431
|
+
def SharedCNAMEPrefix(self, SharedCNAMEPrefix):
|
|
4432
|
+
self._SharedCNAMEPrefix = SharedCNAMEPrefix
|
|
4433
|
+
|
|
4434
|
+
@property
|
|
4435
|
+
def Description(self):
|
|
4436
|
+
return self._Description
|
|
4437
|
+
|
|
4438
|
+
@Description.setter
|
|
4439
|
+
def Description(self, Description):
|
|
4440
|
+
self._Description = Description
|
|
4441
|
+
|
|
4442
|
+
|
|
4443
|
+
def _deserialize(self, params):
|
|
4444
|
+
self._ZoneId = params.get("ZoneId")
|
|
4445
|
+
self._SharedCNAMEPrefix = params.get("SharedCNAMEPrefix")
|
|
4446
|
+
self._Description = params.get("Description")
|
|
4447
|
+
memeber_set = set(params.keys())
|
|
4448
|
+
for name, value in vars(self).items():
|
|
4449
|
+
property_name = name[1:]
|
|
4450
|
+
if property_name in memeber_set:
|
|
4451
|
+
memeber_set.remove(property_name)
|
|
4452
|
+
if len(memeber_set) > 0:
|
|
4453
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
4454
|
+
|
|
4455
|
+
|
|
4456
|
+
|
|
4457
|
+
class CreateSharedCNAMEResponse(AbstractModel):
|
|
4458
|
+
"""CreateSharedCNAME返回参数结构体
|
|
4459
|
+
|
|
4460
|
+
"""
|
|
4461
|
+
|
|
4462
|
+
def __init__(self):
|
|
4463
|
+
r"""
|
|
4464
|
+
:param _SharedCNAME: 共享 CNAME。格式为:<自定义前缀>+<ZoneId中的12位随机字符串>+"share.eo.dnse[0-5].com"
|
|
4465
|
+
:type SharedCNAME: str
|
|
4466
|
+
:param _RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4467
|
+
:type RequestId: str
|
|
4468
|
+
"""
|
|
4469
|
+
self._SharedCNAME = None
|
|
4470
|
+
self._RequestId = None
|
|
4471
|
+
|
|
4472
|
+
@property
|
|
4473
|
+
def SharedCNAME(self):
|
|
4474
|
+
return self._SharedCNAME
|
|
4475
|
+
|
|
4476
|
+
@SharedCNAME.setter
|
|
4477
|
+
def SharedCNAME(self, SharedCNAME):
|
|
4478
|
+
self._SharedCNAME = SharedCNAME
|
|
4479
|
+
|
|
4480
|
+
@property
|
|
4481
|
+
def RequestId(self):
|
|
4482
|
+
return self._RequestId
|
|
4483
|
+
|
|
4484
|
+
@RequestId.setter
|
|
4485
|
+
def RequestId(self, RequestId):
|
|
4486
|
+
self._RequestId = RequestId
|
|
4487
|
+
|
|
4488
|
+
|
|
4489
|
+
def _deserialize(self, params):
|
|
4490
|
+
self._SharedCNAME = params.get("SharedCNAME")
|
|
4491
|
+
self._RequestId = params.get("RequestId")
|
|
4492
|
+
|
|
4493
|
+
|
|
4398
4494
|
class CreateZoneRequest(AbstractModel):
|
|
4399
4495
|
"""CreateZone请求参数结构体
|
|
4400
4496
|
|
|
@@ -304,6 +304,29 @@ class TeoClient(AbstractClient):
|
|
|
304
304
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
305
305
|
|
|
306
306
|
|
|
307
|
+
def CreateSharedCNAME(self, request):
|
|
308
|
+
"""创建共享 CNAME
|
|
309
|
+
|
|
310
|
+
:param request: Request instance for CreateSharedCNAME.
|
|
311
|
+
:type request: :class:`tencentcloud.teo.v20220901.models.CreateSharedCNAMERequest`
|
|
312
|
+
:rtype: :class:`tencentcloud.teo.v20220901.models.CreateSharedCNAMEResponse`
|
|
313
|
+
|
|
314
|
+
"""
|
|
315
|
+
try:
|
|
316
|
+
params = request._serialize()
|
|
317
|
+
headers = request.headers
|
|
318
|
+
body = self.call("CreateSharedCNAME", params, headers=headers)
|
|
319
|
+
response = json.loads(body)
|
|
320
|
+
model = models.CreateSharedCNAMEResponse()
|
|
321
|
+
model._deserialize(response["Response"])
|
|
322
|
+
return model
|
|
323
|
+
except Exception as e:
|
|
324
|
+
if isinstance(e, TencentCloudSDKException):
|
|
325
|
+
raise
|
|
326
|
+
else:
|
|
327
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
328
|
+
|
|
329
|
+
|
|
307
330
|
def CreateZone(self, request):
|
|
308
331
|
"""用于用户接入新的站点。
|
|
309
332
|
|
|
@@ -3892,6 +3892,12 @@ class QueueConfig(AbstractModel):
|
|
|
3892
3892
|
:type ScaleOutNodeThreshold: int
|
|
3893
3893
|
:param _MaxNodesPerCycle: 每轮扩容最大节点个数。默认值:100。取值范围:1~100。
|
|
3894
3894
|
:type MaxNodesPerCycle: int
|
|
3895
|
+
:param _ScaleUpMemRatio: 扩容过程中,作业的内存在匹配实例机型时增大比例(不会影响作业提交的内存大小,只影响匹配计算过程)。<br/>
|
|
3896
|
+
针对场景:由于实例机型的总内存会大于实例内部的可用内存,16GB内存规格的实例,实例操作系统内的可用内存只有约14.9GB内存。假设此时提交一个需要15GB内存的作业,
|
|
3897
|
+
|
|
3898
|
+
- 当ScaleUpMemRatio=0时,会匹配到16GB内存规格的实例,但是由于操作系统内的可用内存为14.9GB小于作业所需的15GB,扩容出来的实例作业无法运行起来。
|
|
3899
|
+
- 当ScaleUpMemRatio=10时,匹配实例规格会按照15*(1+10%)=16.5GB来进行实例规格匹配,则不会匹配到16GB的实例,而是更大内存规格的实例来保证作业能够被运行起来。
|
|
3900
|
+
:type ScaleUpMemRatio: int
|
|
3895
3901
|
"""
|
|
3896
3902
|
self._QueueName = None
|
|
3897
3903
|
self._MinSize = None
|
|
@@ -3907,6 +3913,7 @@ class QueueConfig(AbstractModel):
|
|
|
3907
3913
|
self._ScaleOutRatio = None
|
|
3908
3914
|
self._ScaleOutNodeThreshold = None
|
|
3909
3915
|
self._MaxNodesPerCycle = None
|
|
3916
|
+
self._ScaleUpMemRatio = None
|
|
3910
3917
|
|
|
3911
3918
|
@property
|
|
3912
3919
|
def QueueName(self):
|
|
@@ -4020,6 +4027,14 @@ class QueueConfig(AbstractModel):
|
|
|
4020
4027
|
def MaxNodesPerCycle(self, MaxNodesPerCycle):
|
|
4021
4028
|
self._MaxNodesPerCycle = MaxNodesPerCycle
|
|
4022
4029
|
|
|
4030
|
+
@property
|
|
4031
|
+
def ScaleUpMemRatio(self):
|
|
4032
|
+
return self._ScaleUpMemRatio
|
|
4033
|
+
|
|
4034
|
+
@ScaleUpMemRatio.setter
|
|
4035
|
+
def ScaleUpMemRatio(self, ScaleUpMemRatio):
|
|
4036
|
+
self._ScaleUpMemRatio = ScaleUpMemRatio
|
|
4037
|
+
|
|
4023
4038
|
|
|
4024
4039
|
def _deserialize(self, params):
|
|
4025
4040
|
self._QueueName = params.get("QueueName")
|
|
@@ -4050,6 +4065,7 @@ class QueueConfig(AbstractModel):
|
|
|
4050
4065
|
self._ScaleOutRatio = params.get("ScaleOutRatio")
|
|
4051
4066
|
self._ScaleOutNodeThreshold = params.get("ScaleOutNodeThreshold")
|
|
4052
4067
|
self._MaxNodesPerCycle = params.get("MaxNodesPerCycle")
|
|
4068
|
+
self._ScaleUpMemRatio = params.get("ScaleUpMemRatio")
|
|
4053
4069
|
memeber_set = set(params.keys())
|
|
4054
4070
|
for name, value in vars(self).items():
|
|
4055
4071
|
property_name = name[1:]
|
|
@@ -4094,6 +4110,13 @@ class QueueConfigOverview(AbstractModel):
|
|
|
4094
4110
|
:param _MaxNodesPerCycle: 每轮扩容最大节点个数。
|
|
4095
4111
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4096
4112
|
:type MaxNodesPerCycle: int
|
|
4113
|
+
:param _ScaleUpMemRatio: 扩容过程中,作业的内存在匹配实例机型时增大比例(不会影响作业提交的内存大小,只影响匹配计算过程)。<br/>
|
|
4114
|
+
针对场景:由于实例机型的总内存会大于实例内部的可用内存,16GB内存规格的实例,实例操作系统内的可用内存只有约14.9GB内存。假设此时提交一个需要15GB内存的作业,
|
|
4115
|
+
|
|
4116
|
+
- 当ScaleUpMemRatio=0时,会匹配到16GB内存规格的实例,但是由于操作系统内的可用内存为14.9GB小于作业所需的15GB,扩容出来的实例作业无法运行起来。
|
|
4117
|
+
- 当ScaleUpMemRatio=10时,匹配实例规格会按照15*(1+10%)=16.5GB来进行实例规格匹配,则不会匹配到16GB的实例,而是更大内存规格的实例来保证作业能够被运行起来。
|
|
4118
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4119
|
+
:type ScaleUpMemRatio: int
|
|
4097
4120
|
"""
|
|
4098
4121
|
self._QueueName = None
|
|
4099
4122
|
self._MinSize = None
|
|
@@ -4105,6 +4128,7 @@ class QueueConfigOverview(AbstractModel):
|
|
|
4105
4128
|
self._ScaleOutRatio = None
|
|
4106
4129
|
self._ScaleOutNodeThreshold = None
|
|
4107
4130
|
self._MaxNodesPerCycle = None
|
|
4131
|
+
self._ScaleUpMemRatio = None
|
|
4108
4132
|
|
|
4109
4133
|
@property
|
|
4110
4134
|
def QueueName(self):
|
|
@@ -4186,6 +4210,14 @@ class QueueConfigOverview(AbstractModel):
|
|
|
4186
4210
|
def MaxNodesPerCycle(self, MaxNodesPerCycle):
|
|
4187
4211
|
self._MaxNodesPerCycle = MaxNodesPerCycle
|
|
4188
4212
|
|
|
4213
|
+
@property
|
|
4214
|
+
def ScaleUpMemRatio(self):
|
|
4215
|
+
return self._ScaleUpMemRatio
|
|
4216
|
+
|
|
4217
|
+
@ScaleUpMemRatio.setter
|
|
4218
|
+
def ScaleUpMemRatio(self, ScaleUpMemRatio):
|
|
4219
|
+
self._ScaleUpMemRatio = ScaleUpMemRatio
|
|
4220
|
+
|
|
4189
4221
|
|
|
4190
4222
|
def _deserialize(self, params):
|
|
4191
4223
|
self._QueueName = params.get("QueueName")
|
|
@@ -4203,6 +4235,7 @@ class QueueConfigOverview(AbstractModel):
|
|
|
4203
4235
|
self._ScaleOutRatio = params.get("ScaleOutRatio")
|
|
4204
4236
|
self._ScaleOutNodeThreshold = params.get("ScaleOutNodeThreshold")
|
|
4205
4237
|
self._MaxNodesPerCycle = params.get("MaxNodesPerCycle")
|
|
4238
|
+
self._ScaleUpMemRatio = params.get("ScaleUpMemRatio")
|
|
4206
4239
|
memeber_set = set(params.keys())
|
|
4207
4240
|
for name, value in vars(self).items():
|
|
4208
4241
|
property_name = name[1:]
|
|
@@ -2507,6 +2507,8 @@ HYBRID_PAID:
|
|
|
2507
2507
|
:type ServiceCategory: str
|
|
2508
2508
|
:param _Command: 服务的启动命令
|
|
2509
2509
|
:type Command: str
|
|
2510
|
+
:param _ServiceEIP: 是否开启TIONE内网访问外部
|
|
2511
|
+
:type ServiceEIP: :class:`tencentcloud.tione.v20211111.models.ServiceEIP`
|
|
2510
2512
|
"""
|
|
2511
2513
|
self._ServiceGroupId = None
|
|
2512
2514
|
self._ServiceGroupName = None
|
|
@@ -2538,6 +2540,7 @@ HYBRID_PAID:
|
|
|
2538
2540
|
self._ModelTurboEnable = None
|
|
2539
2541
|
self._ServiceCategory = None
|
|
2540
2542
|
self._Command = None
|
|
2543
|
+
self._ServiceEIP = None
|
|
2541
2544
|
|
|
2542
2545
|
@property
|
|
2543
2546
|
def ServiceGroupId(self):
|
|
@@ -2779,6 +2782,14 @@ HYBRID_PAID:
|
|
|
2779
2782
|
def Command(self, Command):
|
|
2780
2783
|
self._Command = Command
|
|
2781
2784
|
|
|
2785
|
+
@property
|
|
2786
|
+
def ServiceEIP(self):
|
|
2787
|
+
return self._ServiceEIP
|
|
2788
|
+
|
|
2789
|
+
@ServiceEIP.setter
|
|
2790
|
+
def ServiceEIP(self, ServiceEIP):
|
|
2791
|
+
self._ServiceEIP = ServiceEIP
|
|
2792
|
+
|
|
2782
2793
|
|
|
2783
2794
|
def _deserialize(self, params):
|
|
2784
2795
|
self._ServiceGroupId = params.get("ServiceGroupId")
|
|
@@ -2842,6 +2853,9 @@ HYBRID_PAID:
|
|
|
2842
2853
|
self._ModelTurboEnable = params.get("ModelTurboEnable")
|
|
2843
2854
|
self._ServiceCategory = params.get("ServiceCategory")
|
|
2844
2855
|
self._Command = params.get("Command")
|
|
2856
|
+
if params.get("ServiceEIP") is not None:
|
|
2857
|
+
self._ServiceEIP = ServiceEIP()
|
|
2858
|
+
self._ServiceEIP._deserialize(params.get("ServiceEIP"))
|
|
2845
2859
|
memeber_set = set(params.keys())
|
|
2846
2860
|
for name, value in vars(self).items():
|
|
2847
2861
|
property_name = name[1:]
|
|
@@ -12961,6 +12975,8 @@ HYBRID_PAID:
|
|
|
12961
12975
|
:type ModelTurboEnable: bool
|
|
12962
12976
|
:param _Command: 服务的启动命令
|
|
12963
12977
|
:type Command: str
|
|
12978
|
+
:param _ServiceEIP: 是否开启TIONE内网访问外部
|
|
12979
|
+
:type ServiceEIP: :class:`tencentcloud.tione.v20211111.models.ServiceEIP`
|
|
12964
12980
|
"""
|
|
12965
12981
|
self._ServiceId = None
|
|
12966
12982
|
self._ModelInfo = None
|
|
@@ -12984,6 +13000,7 @@ HYBRID_PAID:
|
|
|
12984
13000
|
self._VolumeMount = None
|
|
12985
13001
|
self._ModelTurboEnable = None
|
|
12986
13002
|
self._Command = None
|
|
13003
|
+
self._ServiceEIP = None
|
|
12987
13004
|
|
|
12988
13005
|
@property
|
|
12989
13006
|
def ServiceId(self):
|
|
@@ -13161,6 +13178,14 @@ HYBRID_PAID:
|
|
|
13161
13178
|
def Command(self, Command):
|
|
13162
13179
|
self._Command = Command
|
|
13163
13180
|
|
|
13181
|
+
@property
|
|
13182
|
+
def ServiceEIP(self):
|
|
13183
|
+
return self._ServiceEIP
|
|
13184
|
+
|
|
13185
|
+
@ServiceEIP.setter
|
|
13186
|
+
def ServiceEIP(self, ServiceEIP):
|
|
13187
|
+
self._ServiceEIP = ServiceEIP
|
|
13188
|
+
|
|
13164
13189
|
|
|
13165
13190
|
def _deserialize(self, params):
|
|
13166
13191
|
self._ServiceId = params.get("ServiceId")
|
|
@@ -13211,6 +13236,9 @@ HYBRID_PAID:
|
|
|
13211
13236
|
self._VolumeMount._deserialize(params.get("VolumeMount"))
|
|
13212
13237
|
self._ModelTurboEnable = params.get("ModelTurboEnable")
|
|
13213
13238
|
self._Command = params.get("Command")
|
|
13239
|
+
if params.get("ServiceEIP") is not None:
|
|
13240
|
+
self._ServiceEIP = ServiceEIP()
|
|
13241
|
+
self._ServiceEIP._deserialize(params.get("ServiceEIP"))
|
|
13214
13242
|
memeber_set = set(params.keys())
|
|
13215
13243
|
for name, value in vars(self).items():
|
|
13216
13244
|
property_name = name[1:]
|
|
@@ -15091,10 +15119,22 @@ class PodInfo(AbstractModel):
|
|
|
15091
15119
|
:param _Status: pod状态
|
|
15092
15120
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
15093
15121
|
:type Status: str
|
|
15122
|
+
:param _StartTime: pod启动时间
|
|
15123
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15124
|
+
:type StartTime: str
|
|
15125
|
+
:param _EndTime: pod结束时间
|
|
15126
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15127
|
+
:type EndTime: str
|
|
15128
|
+
:param _ResourceConfigInfo: pod资源配置
|
|
15129
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15130
|
+
:type ResourceConfigInfo: :class:`tencentcloud.tione.v20211111.models.ResourceConfigInfo`
|
|
15094
15131
|
"""
|
|
15095
15132
|
self._Name = None
|
|
15096
15133
|
self._IP = None
|
|
15097
15134
|
self._Status = None
|
|
15135
|
+
self._StartTime = None
|
|
15136
|
+
self._EndTime = None
|
|
15137
|
+
self._ResourceConfigInfo = None
|
|
15098
15138
|
|
|
15099
15139
|
@property
|
|
15100
15140
|
def Name(self):
|
|
@@ -15120,11 +15160,40 @@ class PodInfo(AbstractModel):
|
|
|
15120
15160
|
def Status(self, Status):
|
|
15121
15161
|
self._Status = Status
|
|
15122
15162
|
|
|
15163
|
+
@property
|
|
15164
|
+
def StartTime(self):
|
|
15165
|
+
return self._StartTime
|
|
15166
|
+
|
|
15167
|
+
@StartTime.setter
|
|
15168
|
+
def StartTime(self, StartTime):
|
|
15169
|
+
self._StartTime = StartTime
|
|
15170
|
+
|
|
15171
|
+
@property
|
|
15172
|
+
def EndTime(self):
|
|
15173
|
+
return self._EndTime
|
|
15174
|
+
|
|
15175
|
+
@EndTime.setter
|
|
15176
|
+
def EndTime(self, EndTime):
|
|
15177
|
+
self._EndTime = EndTime
|
|
15178
|
+
|
|
15179
|
+
@property
|
|
15180
|
+
def ResourceConfigInfo(self):
|
|
15181
|
+
return self._ResourceConfigInfo
|
|
15182
|
+
|
|
15183
|
+
@ResourceConfigInfo.setter
|
|
15184
|
+
def ResourceConfigInfo(self, ResourceConfigInfo):
|
|
15185
|
+
self._ResourceConfigInfo = ResourceConfigInfo
|
|
15186
|
+
|
|
15123
15187
|
|
|
15124
15188
|
def _deserialize(self, params):
|
|
15125
15189
|
self._Name = params.get("Name")
|
|
15126
15190
|
self._IP = params.get("IP")
|
|
15127
15191
|
self._Status = params.get("Status")
|
|
15192
|
+
self._StartTime = params.get("StartTime")
|
|
15193
|
+
self._EndTime = params.get("EndTime")
|
|
15194
|
+
if params.get("ResourceConfigInfo") is not None:
|
|
15195
|
+
self._ResourceConfigInfo = ResourceConfigInfo()
|
|
15196
|
+
self._ResourceConfigInfo._deserialize(params.get("ResourceConfigInfo"))
|
|
15128
15197
|
memeber_set = set(params.keys())
|
|
15129
15198
|
for name, value in vars(self).items():
|
|
15130
15199
|
property_name = name[1:]
|
|
@@ -18058,12 +18127,28 @@ class Spec(AbstractModel):
|
|
|
18058
18127
|
:type Available: bool
|
|
18059
18128
|
:param _AvailableRegion: 当前资源售罄时,可用的区域有哪些
|
|
18060
18129
|
:type AvailableRegion: list of str
|
|
18130
|
+
:param _SpecFeatures: 当前计费项支持的特性
|
|
18131
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
18132
|
+
:type SpecFeatures: list of str
|
|
18133
|
+
:param _SpecType: 计费项类型
|
|
18134
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
18135
|
+
:type SpecType: str
|
|
18136
|
+
:param _GpuType: GPU类型
|
|
18137
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
18138
|
+
:type GpuType: str
|
|
18139
|
+
:param _CategoryId: 计费项CategoryId
|
|
18140
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
18141
|
+
:type CategoryId: str
|
|
18061
18142
|
"""
|
|
18062
18143
|
self._SpecId = None
|
|
18063
18144
|
self._SpecName = None
|
|
18064
18145
|
self._SpecAlias = None
|
|
18065
18146
|
self._Available = None
|
|
18066
18147
|
self._AvailableRegion = None
|
|
18148
|
+
self._SpecFeatures = None
|
|
18149
|
+
self._SpecType = None
|
|
18150
|
+
self._GpuType = None
|
|
18151
|
+
self._CategoryId = None
|
|
18067
18152
|
|
|
18068
18153
|
@property
|
|
18069
18154
|
def SpecId(self):
|
|
@@ -18105,6 +18190,38 @@ class Spec(AbstractModel):
|
|
|
18105
18190
|
def AvailableRegion(self, AvailableRegion):
|
|
18106
18191
|
self._AvailableRegion = AvailableRegion
|
|
18107
18192
|
|
|
18193
|
+
@property
|
|
18194
|
+
def SpecFeatures(self):
|
|
18195
|
+
return self._SpecFeatures
|
|
18196
|
+
|
|
18197
|
+
@SpecFeatures.setter
|
|
18198
|
+
def SpecFeatures(self, SpecFeatures):
|
|
18199
|
+
self._SpecFeatures = SpecFeatures
|
|
18200
|
+
|
|
18201
|
+
@property
|
|
18202
|
+
def SpecType(self):
|
|
18203
|
+
return self._SpecType
|
|
18204
|
+
|
|
18205
|
+
@SpecType.setter
|
|
18206
|
+
def SpecType(self, SpecType):
|
|
18207
|
+
self._SpecType = SpecType
|
|
18208
|
+
|
|
18209
|
+
@property
|
|
18210
|
+
def GpuType(self):
|
|
18211
|
+
return self._GpuType
|
|
18212
|
+
|
|
18213
|
+
@GpuType.setter
|
|
18214
|
+
def GpuType(self, GpuType):
|
|
18215
|
+
self._GpuType = GpuType
|
|
18216
|
+
|
|
18217
|
+
@property
|
|
18218
|
+
def CategoryId(self):
|
|
18219
|
+
return self._CategoryId
|
|
18220
|
+
|
|
18221
|
+
@CategoryId.setter
|
|
18222
|
+
def CategoryId(self, CategoryId):
|
|
18223
|
+
self._CategoryId = CategoryId
|
|
18224
|
+
|
|
18108
18225
|
|
|
18109
18226
|
def _deserialize(self, params):
|
|
18110
18227
|
self._SpecId = params.get("SpecId")
|
|
@@ -18112,6 +18229,10 @@ class Spec(AbstractModel):
|
|
|
18112
18229
|
self._SpecAlias = params.get("SpecAlias")
|
|
18113
18230
|
self._Available = params.get("Available")
|
|
18114
18231
|
self._AvailableRegion = params.get("AvailableRegion")
|
|
18232
|
+
self._SpecFeatures = params.get("SpecFeatures")
|
|
18233
|
+
self._SpecType = params.get("SpecType")
|
|
18234
|
+
self._GpuType = params.get("GpuType")
|
|
18235
|
+
self._CategoryId = params.get("CategoryId")
|
|
18115
18236
|
memeber_set = set(params.keys())
|
|
18116
18237
|
for name, value in vars(self).items():
|
|
18117
18238
|
property_name = name[1:]
|
|
@@ -6681,7 +6681,9 @@ class RecordParams(AbstractModel):
|
|
|
6681
6681
|
:type StreamType: int
|
|
6682
6682
|
:param _SubscribeStreamUserIds: 指定订阅流白名单或者黑名单。
|
|
6683
6683
|
:type SubscribeStreamUserIds: :class:`tencentcloud.trtc.v20190722.models.SubscribeStreamUserIds`
|
|
6684
|
-
:param _OutputFormat:
|
|
6684
|
+
:param _OutputFormat: 输出文件的格式(存储至COS等第三方存储时有效)。0:(默认)输出文件为hls格式。1:输出文件格式为hls+mp4。2:输出文件格式为hls+aac 。3:输出文件格式为mp4。4:输出文件格式为aac。
|
|
6685
|
+
|
|
6686
|
+
存储到云点播VOD时此参数无效,存储到VOD时请通过TencentVod(https://cloud.tencent.com/document/api/647/44055#TencentVod)内的MediaType设置。
|
|
6685
6687
|
:type OutputFormat: int
|
|
6686
6688
|
:param _AvMerge: 单流录制模式下,用户的音视频是否合并,0:单流音视频不合并(默认)。1:单流音视频合并成一个ts。混流录制此参数无需设置,默认音视频合并。
|
|
6687
6689
|
:type AvMerge: int
|
|
@@ -8629,7 +8631,8 @@ class TencentVod(AbstractModel):
|
|
|
8629
8631
|
:type SessionContext: str
|
|
8630
8632
|
:param _SourceContext: 上传上下文,上传完成回调时透传。
|
|
8631
8633
|
:type SourceContext: str
|
|
8632
|
-
:param _MediaType: 上传到vod平台的录制文件格式类型,0:mp4(默认), 1: hls, 2:aac(StreamType=1纯音频录制时有效)
|
|
8634
|
+
:param _MediaType: 上传到vod平台的录制文件格式类型,0:mp4(默认), 1: hls, 2:aac(StreamType=1纯音频录制时有效),
|
|
8635
|
+
3: hls+mp4, 4: hls+aac(StreamType=1纯音频录制时有效)。
|
|
8633
8636
|
:type MediaType: int
|
|
8634
8637
|
:param _UserDefineRecordId: 仅支持API录制上传vod,该参数表示用户可以自定义录制文件名前缀,【限制长度为64字节,只允许包含大小写英文字母(a-zA-Z)、数字(0-9)及下划线和连词符】。前缀与自动生成的录制文件名之间用__UserId_u_分开。
|
|
8635
8638
|
:type UserDefineRecordId: str
|
|
@@ -7577,6 +7577,9 @@ class KongServicePreview(AbstractModel):
|
|
|
7577
7577
|
:param _Editable: 是否可编辑
|
|
7578
7578
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
7579
7579
|
:type Editable: bool
|
|
7580
|
+
:param _Path: 请求路径
|
|
7581
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7582
|
+
:type Path: str
|
|
7580
7583
|
"""
|
|
7581
7584
|
self._ID = None
|
|
7582
7585
|
self._Name = None
|
|
@@ -7585,6 +7588,7 @@ class KongServicePreview(AbstractModel):
|
|
|
7585
7588
|
self._UpstreamType = None
|
|
7586
7589
|
self._CreatedTime = None
|
|
7587
7590
|
self._Editable = None
|
|
7591
|
+
self._Path = None
|
|
7588
7592
|
|
|
7589
7593
|
@property
|
|
7590
7594
|
def ID(self):
|
|
@@ -7642,6 +7646,14 @@ class KongServicePreview(AbstractModel):
|
|
|
7642
7646
|
def Editable(self, Editable):
|
|
7643
7647
|
self._Editable = Editable
|
|
7644
7648
|
|
|
7649
|
+
@property
|
|
7650
|
+
def Path(self):
|
|
7651
|
+
return self._Path
|
|
7652
|
+
|
|
7653
|
+
@Path.setter
|
|
7654
|
+
def Path(self, Path):
|
|
7655
|
+
self._Path = Path
|
|
7656
|
+
|
|
7645
7657
|
|
|
7646
7658
|
def _deserialize(self, params):
|
|
7647
7659
|
self._ID = params.get("ID")
|
|
@@ -7653,6 +7665,7 @@ class KongServicePreview(AbstractModel):
|
|
|
7653
7665
|
self._UpstreamType = params.get("UpstreamType")
|
|
7654
7666
|
self._CreatedTime = params.get("CreatedTime")
|
|
7655
7667
|
self._Editable = params.get("Editable")
|
|
7668
|
+
self._Path = params.get("Path")
|
|
7656
7669
|
memeber_set = set(params.keys())
|
|
7657
7670
|
for name, value in vars(self).items():
|
|
7658
7671
|
property_name = name[1:]
|
|
@@ -13816,7 +13816,7 @@ class DeployGroupRequest(AbstractModel):
|
|
|
13816
13816
|
:type DeployBetaEnable: bool
|
|
13817
13817
|
:param _DeployBatch: 滚动发布每个批次参与的实例比率
|
|
13818
13818
|
:type DeployBatch: list of float
|
|
13819
|
-
:param _DeployExeMode:
|
|
13819
|
+
:param _DeployExeMode: 滚动发布的执行方式,auto表示自动, manual表示手动
|
|
13820
13820
|
:type DeployExeMode: str
|
|
13821
13821
|
:param _DeployWaitTime: 滚动发布每个批次的时间间隔
|
|
13822
13822
|
:type DeployWaitTime: int
|
|
@@ -13828,7 +13828,8 @@ class DeployGroupRequest(AbstractModel):
|
|
|
13828
13828
|
:type IncrementalDeployment: bool
|
|
13829
13829
|
:param _JdkName: JDK名称: konaJDK或openJDK
|
|
13830
13830
|
:type JdkName: str
|
|
13831
|
-
:param _JdkVersion:
|
|
13831
|
+
:param _JdkVersion: konaJDK版本:8、11和17
|
|
13832
|
+
openJDK版本:8、17
|
|
13832
13833
|
:type JdkVersion: str
|
|
13833
13834
|
:param _AgentProfileList: 部署agent的类型、版本
|
|
13834
13835
|
:type AgentProfileList: list of AgentProfile
|
|
@@ -43235,7 +43236,7 @@ class UpdateHealthCheckSettingsRequest(AbstractModel):
|
|
|
43235
43236
|
r"""
|
|
43236
43237
|
:param _GroupId: 部署组ID
|
|
43237
43238
|
:type GroupId: str
|
|
43238
|
-
:param _EnableHealthCheck:
|
|
43239
|
+
:param _EnableHealthCheck: 是否开启健康检查
|
|
43239
43240
|
:type EnableHealthCheck: bool
|
|
43240
43241
|
:param _HealthCheckSettings: 健康检查配置
|
|
43241
43242
|
:type HealthCheckSettings: :class:`tencentcloud.tsf.v20180326.models.HealthCheckSettings`
|
|
@@ -947,6 +947,9 @@ UNSUPPORTEDOPERATION_ROLENOTFOUND = 'UnsupportedOperation.RoleNotFound'
|
|
|
947
947
|
# 路由表绑定了子网。
|
|
948
948
|
UNSUPPORTEDOPERATION_ROUTETABLEHASSUBNETRULE = 'UnsupportedOperation.RouteTableHasSubnetRule'
|
|
949
949
|
|
|
950
|
+
# SslVpnClientIds:`vpnc-20f9b3d7` 证书状态已启用或Client证书状态不可用,不支持启用证书。
|
|
951
|
+
UNSUPPORTEDOPERATION_SSLCLIENTCERTALREADYENABLEORCERTABNORMAL = 'UnsupportedOperation.SSLClientCertAlreadyEnableOrCertAbnormal'
|
|
952
|
+
|
|
950
953
|
# SSL客户端状态不可用,不支持下载
|
|
951
954
|
UNSUPPORTEDOPERATION_SSLCLIENTCERTDISABLEUNSUPPORTEDDOWNLOADSSLCLIENTCERT = 'UnsupportedOperation.SSLClientCertDisableUnsupportedDownloadSSLClientCert'
|
|
952
955
|
|