tencentcloud-sdk-python 3.0.1425__py2.py3-none-any.whl → 3.0.1427__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 +0 -27
- tencentcloud/aiart/v20221229/models.py +0 -203
- tencentcloud/apm/v20210622/models.py +60 -0
- tencentcloud/autoscaling/v20180419/models.py +108 -0
- tencentcloud/ccc/v20200210/models.py +181 -0
- tencentcloud/cdb/v20170320/cdb_client.py +1 -1
- tencentcloud/cdb/v20170320/models.py +98 -12
- tencentcloud/cdwch/v20200915/models.py +40 -62
- tencentcloud/ctsdb/__init__.py +0 -0
- tencentcloud/ctsdb/v20230202/__init__.py +0 -0
- tencentcloud/ctsdb/v20230202/ctsdb_client.py +79 -0
- tencentcloud/ctsdb/v20230202/errorcodes.py +24 -0
- tencentcloud/ctsdb/v20230202/models.py +1256 -0
- tencentcloud/dbbrain/v20210527/models.py +60 -0
- tencentcloud/dlc/v20210125/dlc_client.py +23 -0
- tencentcloud/dlc/v20210125/models.py +64 -0
- tencentcloud/essbasic/v20210526/models.py +107 -4
- tencentcloud/gs/v20191118/models.py +49 -8
- tencentcloud/hunyuan/v20230901/models.py +120 -0
- tencentcloud/igtm/v20231024/models.py +4 -134
- tencentcloud/lke/v20231130/models.py +8 -2
- tencentcloud/securitylake/v20240117/models.py +0 -2
- tencentcloud/ssl/v20191205/models.py +75 -0
- tencentcloud/tcaplusdb/v20190823/tcaplusdb_client.py +3 -1
- tencentcloud/teo/v20220901/errorcodes.py +3 -0
- tencentcloud/teo/v20220901/models.py +90 -55
- tencentcloud/tsf/v20180326/errorcodes.py +1 -1
- tencentcloud/tts/v20190823/models.py +4 -6
- tencentcloud/tts/v20190823/tts_client.py +1 -0
- tencentcloud/vod/v20180717/models.py +19 -4
- tencentcloud/vpc/v20170312/errorcodes.py +3 -0
- {tencentcloud_sdk_python-3.0.1425.dist-info → tencentcloud_sdk_python-3.0.1427.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1425.dist-info → tencentcloud_sdk_python-3.0.1427.dist-info}/RECORD +37 -32
- {tencentcloud_sdk_python-3.0.1425.dist-info → tencentcloud_sdk_python-3.0.1427.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1425.dist-info → tencentcloud_sdk_python-3.0.1427.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1425.dist-info → tencentcloud_sdk_python-3.0.1427.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -502,33 +502,6 @@ class AiartClient(AbstractClient):
|
|
|
502
502
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
503
503
|
|
|
504
504
|
|
|
505
|
-
def TextToImage(self, request):
|
|
506
|
-
"""**本接口已迁移至腾讯混元大模型-文生图轻量版,即将停止此处维护,可切换至 [文生图轻量版 API](https://cloud.tencent.com/document/product/1729/108738) 继续使用。**
|
|
507
|
-
|
|
508
|
-
智能文生图接口基于文生图(标准版)模型,将根据输入的文本描述,智能生成与之相关的结果图。
|
|
509
|
-
|
|
510
|
-
智能文生图默认提供3个并发任务数,代表最多能同时处理3个已提交的任务,上一个任务处理完毕后才能开始处理下一个任务。
|
|
511
|
-
|
|
512
|
-
:param request: Request instance for TextToImage.
|
|
513
|
-
:type request: :class:`tencentcloud.aiart.v20221229.models.TextToImageRequest`
|
|
514
|
-
:rtype: :class:`tencentcloud.aiart.v20221229.models.TextToImageResponse`
|
|
515
|
-
|
|
516
|
-
"""
|
|
517
|
-
try:
|
|
518
|
-
params = request._serialize()
|
|
519
|
-
headers = request.headers
|
|
520
|
-
body = self.call("TextToImage", params, headers=headers)
|
|
521
|
-
response = json.loads(body)
|
|
522
|
-
model = models.TextToImageResponse()
|
|
523
|
-
model._deserialize(response["Response"])
|
|
524
|
-
return model
|
|
525
|
-
except Exception as e:
|
|
526
|
-
if isinstance(e, TencentCloudSDKException):
|
|
527
|
-
raise
|
|
528
|
-
else:
|
|
529
|
-
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
530
|
-
|
|
531
|
-
|
|
532
505
|
def TextToImageLite(self, request):
|
|
533
506
|
"""混元文生图接口,基于混元大模型,根据输入的文本描述智能生成图片
|
|
534
507
|
默认提供1个并发,代表最多能同时处理1个已提交的任务,上一个任务处理完毕后,才能开始处理下一个任务。
|
|
@@ -4356,209 +4356,6 @@ class TextToImageRapidResponse(AbstractModel):
|
|
|
4356
4356
|
self._RequestId = params.get("RequestId")
|
|
4357
4357
|
|
|
4358
4358
|
|
|
4359
|
-
class TextToImageRequest(AbstractModel):
|
|
4360
|
-
"""TextToImage请求参数结构体
|
|
4361
|
-
|
|
4362
|
-
"""
|
|
4363
|
-
|
|
4364
|
-
def __init__(self):
|
|
4365
|
-
r"""
|
|
4366
|
-
:param _Prompt: 文本描述。
|
|
4367
|
-
算法将根据输入的文本智能生成与之相关的图像。建议详细描述画面主体、细节、场景等,文本描述越丰富,生成效果越精美。
|
|
4368
|
-
不能为空,推荐使用中文。最多可传256个 utf-8 字符。
|
|
4369
|
-
:type Prompt: str
|
|
4370
|
-
:param _NegativePrompt: 反向文本描述。
|
|
4371
|
-
用于一定程度上从反面引导模型生成的走向,减少生成结果中出现描述内容的可能,但不能完全杜绝。
|
|
4372
|
-
推荐使用中文。最多可传256个 utf-8 字符。
|
|
4373
|
-
:type NegativePrompt: str
|
|
4374
|
-
:param _Styles: 绘画风格。
|
|
4375
|
-
请在 [智能文生图风格列表](https://cloud.tencent.com/document/product/1668/86249) 中选择期望的风格,传入风格编号。
|
|
4376
|
-
推荐使用且只使用一种风格。不传默认使用201(日系动漫风格)。
|
|
4377
|
-
:type Styles: list of str
|
|
4378
|
-
:param _ResultConfig: 生成图结果的配置,包括输出图片分辨率和尺寸等。
|
|
4379
|
-
支持生成以下分辨率的图片:768:768(1:1)、768:1024(3:4)、1024:768(4:3)、1024:1024(1:1)、720:1280(9:16)、1280:720(16:9)、768:1280(3:5)、1280:768(5:3)、1080:1920(9:16)、1920:1080(16:9),不传默认使用768:768。
|
|
4380
|
-
|
|
4381
|
-
:type ResultConfig: :class:`tencentcloud.aiart.v20221229.models.ResultConfig`
|
|
4382
|
-
:param _LogoAdd: 为生成结果图添加标识的开关,默认为1。
|
|
4383
|
-
1:添加标识。
|
|
4384
|
-
0:不添加标识。
|
|
4385
|
-
其他数值:默认按1处理。
|
|
4386
|
-
建议您使用显著标识来提示结果图使用了 AI 绘画技术,是 AI 生成的图片。
|
|
4387
|
-
:type LogoAdd: int
|
|
4388
|
-
:param _LogoParam: 标识内容设置。
|
|
4389
|
-
默认在生成结果图右下角添加“图片由 AI 生成”字样,您可根据自身需要替换为其他的标识图片。
|
|
4390
|
-
:type LogoParam: :class:`tencentcloud.aiart.v20221229.models.LogoParam`
|
|
4391
|
-
:param _RspImgType: 返回图像方式(base64 或 url) ,二选一,默认为 base64。url 有效期为1小时。
|
|
4392
|
-
:type RspImgType: str
|
|
4393
|
-
"""
|
|
4394
|
-
self._Prompt = None
|
|
4395
|
-
self._NegativePrompt = None
|
|
4396
|
-
self._Styles = None
|
|
4397
|
-
self._ResultConfig = None
|
|
4398
|
-
self._LogoAdd = None
|
|
4399
|
-
self._LogoParam = None
|
|
4400
|
-
self._RspImgType = None
|
|
4401
|
-
|
|
4402
|
-
@property
|
|
4403
|
-
def Prompt(self):
|
|
4404
|
-
"""文本描述。
|
|
4405
|
-
算法将根据输入的文本智能生成与之相关的图像。建议详细描述画面主体、细节、场景等,文本描述越丰富,生成效果越精美。
|
|
4406
|
-
不能为空,推荐使用中文。最多可传256个 utf-8 字符。
|
|
4407
|
-
:rtype: str
|
|
4408
|
-
"""
|
|
4409
|
-
return self._Prompt
|
|
4410
|
-
|
|
4411
|
-
@Prompt.setter
|
|
4412
|
-
def Prompt(self, Prompt):
|
|
4413
|
-
self._Prompt = Prompt
|
|
4414
|
-
|
|
4415
|
-
@property
|
|
4416
|
-
def NegativePrompt(self):
|
|
4417
|
-
"""反向文本描述。
|
|
4418
|
-
用于一定程度上从反面引导模型生成的走向,减少生成结果中出现描述内容的可能,但不能完全杜绝。
|
|
4419
|
-
推荐使用中文。最多可传256个 utf-8 字符。
|
|
4420
|
-
:rtype: str
|
|
4421
|
-
"""
|
|
4422
|
-
return self._NegativePrompt
|
|
4423
|
-
|
|
4424
|
-
@NegativePrompt.setter
|
|
4425
|
-
def NegativePrompt(self, NegativePrompt):
|
|
4426
|
-
self._NegativePrompt = NegativePrompt
|
|
4427
|
-
|
|
4428
|
-
@property
|
|
4429
|
-
def Styles(self):
|
|
4430
|
-
"""绘画风格。
|
|
4431
|
-
请在 [智能文生图风格列表](https://cloud.tencent.com/document/product/1668/86249) 中选择期望的风格,传入风格编号。
|
|
4432
|
-
推荐使用且只使用一种风格。不传默认使用201(日系动漫风格)。
|
|
4433
|
-
:rtype: list of str
|
|
4434
|
-
"""
|
|
4435
|
-
return self._Styles
|
|
4436
|
-
|
|
4437
|
-
@Styles.setter
|
|
4438
|
-
def Styles(self, Styles):
|
|
4439
|
-
self._Styles = Styles
|
|
4440
|
-
|
|
4441
|
-
@property
|
|
4442
|
-
def ResultConfig(self):
|
|
4443
|
-
"""生成图结果的配置,包括输出图片分辨率和尺寸等。
|
|
4444
|
-
支持生成以下分辨率的图片:768:768(1:1)、768:1024(3:4)、1024:768(4:3)、1024:1024(1:1)、720:1280(9:16)、1280:720(16:9)、768:1280(3:5)、1280:768(5:3)、1080:1920(9:16)、1920:1080(16:9),不传默认使用768:768。
|
|
4445
|
-
|
|
4446
|
-
:rtype: :class:`tencentcloud.aiart.v20221229.models.ResultConfig`
|
|
4447
|
-
"""
|
|
4448
|
-
return self._ResultConfig
|
|
4449
|
-
|
|
4450
|
-
@ResultConfig.setter
|
|
4451
|
-
def ResultConfig(self, ResultConfig):
|
|
4452
|
-
self._ResultConfig = ResultConfig
|
|
4453
|
-
|
|
4454
|
-
@property
|
|
4455
|
-
def LogoAdd(self):
|
|
4456
|
-
"""为生成结果图添加标识的开关,默认为1。
|
|
4457
|
-
1:添加标识。
|
|
4458
|
-
0:不添加标识。
|
|
4459
|
-
其他数值:默认按1处理。
|
|
4460
|
-
建议您使用显著标识来提示结果图使用了 AI 绘画技术,是 AI 生成的图片。
|
|
4461
|
-
:rtype: int
|
|
4462
|
-
"""
|
|
4463
|
-
return self._LogoAdd
|
|
4464
|
-
|
|
4465
|
-
@LogoAdd.setter
|
|
4466
|
-
def LogoAdd(self, LogoAdd):
|
|
4467
|
-
self._LogoAdd = LogoAdd
|
|
4468
|
-
|
|
4469
|
-
@property
|
|
4470
|
-
def LogoParam(self):
|
|
4471
|
-
"""标识内容设置。
|
|
4472
|
-
默认在生成结果图右下角添加“图片由 AI 生成”字样,您可根据自身需要替换为其他的标识图片。
|
|
4473
|
-
:rtype: :class:`tencentcloud.aiart.v20221229.models.LogoParam`
|
|
4474
|
-
"""
|
|
4475
|
-
return self._LogoParam
|
|
4476
|
-
|
|
4477
|
-
@LogoParam.setter
|
|
4478
|
-
def LogoParam(self, LogoParam):
|
|
4479
|
-
self._LogoParam = LogoParam
|
|
4480
|
-
|
|
4481
|
-
@property
|
|
4482
|
-
def RspImgType(self):
|
|
4483
|
-
"""返回图像方式(base64 或 url) ,二选一,默认为 base64。url 有效期为1小时。
|
|
4484
|
-
:rtype: str
|
|
4485
|
-
"""
|
|
4486
|
-
return self._RspImgType
|
|
4487
|
-
|
|
4488
|
-
@RspImgType.setter
|
|
4489
|
-
def RspImgType(self, RspImgType):
|
|
4490
|
-
self._RspImgType = RspImgType
|
|
4491
|
-
|
|
4492
|
-
|
|
4493
|
-
def _deserialize(self, params):
|
|
4494
|
-
self._Prompt = params.get("Prompt")
|
|
4495
|
-
self._NegativePrompt = params.get("NegativePrompt")
|
|
4496
|
-
self._Styles = params.get("Styles")
|
|
4497
|
-
if params.get("ResultConfig") is not None:
|
|
4498
|
-
self._ResultConfig = ResultConfig()
|
|
4499
|
-
self._ResultConfig._deserialize(params.get("ResultConfig"))
|
|
4500
|
-
self._LogoAdd = params.get("LogoAdd")
|
|
4501
|
-
if params.get("LogoParam") is not None:
|
|
4502
|
-
self._LogoParam = LogoParam()
|
|
4503
|
-
self._LogoParam._deserialize(params.get("LogoParam"))
|
|
4504
|
-
self._RspImgType = params.get("RspImgType")
|
|
4505
|
-
memeber_set = set(params.keys())
|
|
4506
|
-
for name, value in vars(self).items():
|
|
4507
|
-
property_name = name[1:]
|
|
4508
|
-
if property_name in memeber_set:
|
|
4509
|
-
memeber_set.remove(property_name)
|
|
4510
|
-
if len(memeber_set) > 0:
|
|
4511
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
4512
|
-
|
|
4513
|
-
|
|
4514
|
-
|
|
4515
|
-
class TextToImageResponse(AbstractModel):
|
|
4516
|
-
"""TextToImage返回参数结构体
|
|
4517
|
-
|
|
4518
|
-
"""
|
|
4519
|
-
|
|
4520
|
-
def __init__(self):
|
|
4521
|
-
r"""
|
|
4522
|
-
:param _ResultImage: 根据入参 RspImgType 填入不同,返回不同的内容。
|
|
4523
|
-
如果传入 base64 则返回生成图 Base64 编码。
|
|
4524
|
-
如果传入 url 则返回的生成图 URL , 有效期1小时,请及时保存。
|
|
4525
|
-
:type ResultImage: str
|
|
4526
|
-
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4527
|
-
:type RequestId: str
|
|
4528
|
-
"""
|
|
4529
|
-
self._ResultImage = None
|
|
4530
|
-
self._RequestId = None
|
|
4531
|
-
|
|
4532
|
-
@property
|
|
4533
|
-
def ResultImage(self):
|
|
4534
|
-
"""根据入参 RspImgType 填入不同,返回不同的内容。
|
|
4535
|
-
如果传入 base64 则返回生成图 Base64 编码。
|
|
4536
|
-
如果传入 url 则返回的生成图 URL , 有效期1小时,请及时保存。
|
|
4537
|
-
:rtype: str
|
|
4538
|
-
"""
|
|
4539
|
-
return self._ResultImage
|
|
4540
|
-
|
|
4541
|
-
@ResultImage.setter
|
|
4542
|
-
def ResultImage(self, ResultImage):
|
|
4543
|
-
self._ResultImage = ResultImage
|
|
4544
|
-
|
|
4545
|
-
@property
|
|
4546
|
-
def RequestId(self):
|
|
4547
|
-
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4548
|
-
:rtype: str
|
|
4549
|
-
"""
|
|
4550
|
-
return self._RequestId
|
|
4551
|
-
|
|
4552
|
-
@RequestId.setter
|
|
4553
|
-
def RequestId(self, RequestId):
|
|
4554
|
-
self._RequestId = RequestId
|
|
4555
|
-
|
|
4556
|
-
|
|
4557
|
-
def _deserialize(self, params):
|
|
4558
|
-
self._ResultImage = params.get("ResultImage")
|
|
4559
|
-
self._RequestId = params.get("RequestId")
|
|
4560
|
-
|
|
4561
|
-
|
|
4562
4359
|
class UploadTrainPortraitImagesRequest(AbstractModel):
|
|
4563
4360
|
"""UploadTrainPortraitImages请求参数结构体
|
|
4564
4361
|
|
|
@@ -788,6 +788,10 @@ class ApmInstanceDetail(AbstractModel):
|
|
|
788
788
|
:type IsDeserializationAnalysis: int
|
|
789
789
|
:param _Token: 业务系统鉴权 token
|
|
790
790
|
:type Token: str
|
|
791
|
+
:param _UrlLongSegmentThreshold: URL长分段收敛阈值
|
|
792
|
+
:type UrlLongSegmentThreshold: int
|
|
793
|
+
:param _UrlNumberSegmentThreshold: URL数字分段收敛阈值
|
|
794
|
+
:type UrlNumberSegmentThreshold: int
|
|
791
795
|
"""
|
|
792
796
|
self._InstanceId = None
|
|
793
797
|
self._Name = None
|
|
@@ -843,6 +847,8 @@ class ApmInstanceDetail(AbstractModel):
|
|
|
843
847
|
self._IsWebshellBackdoorAnalysis = None
|
|
844
848
|
self._IsDeserializationAnalysis = None
|
|
845
849
|
self._Token = None
|
|
850
|
+
self._UrlLongSegmentThreshold = None
|
|
851
|
+
self._UrlNumberSegmentThreshold = None
|
|
846
852
|
|
|
847
853
|
@property
|
|
848
854
|
def InstanceId(self):
|
|
@@ -1444,6 +1450,28 @@ class ApmInstanceDetail(AbstractModel):
|
|
|
1444
1450
|
def Token(self, Token):
|
|
1445
1451
|
self._Token = Token
|
|
1446
1452
|
|
|
1453
|
+
@property
|
|
1454
|
+
def UrlLongSegmentThreshold(self):
|
|
1455
|
+
"""URL长分段收敛阈值
|
|
1456
|
+
:rtype: int
|
|
1457
|
+
"""
|
|
1458
|
+
return self._UrlLongSegmentThreshold
|
|
1459
|
+
|
|
1460
|
+
@UrlLongSegmentThreshold.setter
|
|
1461
|
+
def UrlLongSegmentThreshold(self, UrlLongSegmentThreshold):
|
|
1462
|
+
self._UrlLongSegmentThreshold = UrlLongSegmentThreshold
|
|
1463
|
+
|
|
1464
|
+
@property
|
|
1465
|
+
def UrlNumberSegmentThreshold(self):
|
|
1466
|
+
"""URL数字分段收敛阈值
|
|
1467
|
+
:rtype: int
|
|
1468
|
+
"""
|
|
1469
|
+
return self._UrlNumberSegmentThreshold
|
|
1470
|
+
|
|
1471
|
+
@UrlNumberSegmentThreshold.setter
|
|
1472
|
+
def UrlNumberSegmentThreshold(self, UrlNumberSegmentThreshold):
|
|
1473
|
+
self._UrlNumberSegmentThreshold = UrlNumberSegmentThreshold
|
|
1474
|
+
|
|
1447
1475
|
|
|
1448
1476
|
def _deserialize(self, params):
|
|
1449
1477
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -1505,6 +1533,8 @@ class ApmInstanceDetail(AbstractModel):
|
|
|
1505
1533
|
self._IsWebshellBackdoorAnalysis = params.get("IsWebshellBackdoorAnalysis")
|
|
1506
1534
|
self._IsDeserializationAnalysis = params.get("IsDeserializationAnalysis")
|
|
1507
1535
|
self._Token = params.get("Token")
|
|
1536
|
+
self._UrlLongSegmentThreshold = params.get("UrlLongSegmentThreshold")
|
|
1537
|
+
self._UrlNumberSegmentThreshold = params.get("UrlNumberSegmentThreshold")
|
|
1508
1538
|
memeber_set = set(params.keys())
|
|
1509
1539
|
for name, value in vars(self).items():
|
|
1510
1540
|
property_name = name[1:]
|
|
@@ -4198,6 +4228,10 @@ class ModifyApmInstanceRequest(AbstractModel):
|
|
|
4198
4228
|
:type IsWebshellBackdoorAnalysis: int
|
|
4199
4229
|
:param _IsDeserializationAnalysis: 是否开启反序列化检测(0-关闭,1-开启)
|
|
4200
4230
|
:type IsDeserializationAnalysis: int
|
|
4231
|
+
:param _UrlLongSegmentThreshold: URL长分段收敛阈值
|
|
4232
|
+
:type UrlLongSegmentThreshold: int
|
|
4233
|
+
:param _UrlNumberSegmentThreshold: URL数字分段收敛阈值
|
|
4234
|
+
:type UrlNumberSegmentThreshold: int
|
|
4201
4235
|
"""
|
|
4202
4236
|
self._InstanceId = None
|
|
4203
4237
|
self._Name = None
|
|
@@ -4239,6 +4273,8 @@ class ModifyApmInstanceRequest(AbstractModel):
|
|
|
4239
4273
|
self._IsJNIInjectionAnalysis = None
|
|
4240
4274
|
self._IsWebshellBackdoorAnalysis = None
|
|
4241
4275
|
self._IsDeserializationAnalysis = None
|
|
4276
|
+
self._UrlLongSegmentThreshold = None
|
|
4277
|
+
self._UrlNumberSegmentThreshold = None
|
|
4242
4278
|
|
|
4243
4279
|
@property
|
|
4244
4280
|
def InstanceId(self):
|
|
@@ -4680,6 +4716,28 @@ class ModifyApmInstanceRequest(AbstractModel):
|
|
|
4680
4716
|
def IsDeserializationAnalysis(self, IsDeserializationAnalysis):
|
|
4681
4717
|
self._IsDeserializationAnalysis = IsDeserializationAnalysis
|
|
4682
4718
|
|
|
4719
|
+
@property
|
|
4720
|
+
def UrlLongSegmentThreshold(self):
|
|
4721
|
+
"""URL长分段收敛阈值
|
|
4722
|
+
:rtype: int
|
|
4723
|
+
"""
|
|
4724
|
+
return self._UrlLongSegmentThreshold
|
|
4725
|
+
|
|
4726
|
+
@UrlLongSegmentThreshold.setter
|
|
4727
|
+
def UrlLongSegmentThreshold(self, UrlLongSegmentThreshold):
|
|
4728
|
+
self._UrlLongSegmentThreshold = UrlLongSegmentThreshold
|
|
4729
|
+
|
|
4730
|
+
@property
|
|
4731
|
+
def UrlNumberSegmentThreshold(self):
|
|
4732
|
+
"""URL数字分段收敛阈值
|
|
4733
|
+
:rtype: int
|
|
4734
|
+
"""
|
|
4735
|
+
return self._UrlNumberSegmentThreshold
|
|
4736
|
+
|
|
4737
|
+
@UrlNumberSegmentThreshold.setter
|
|
4738
|
+
def UrlNumberSegmentThreshold(self, UrlNumberSegmentThreshold):
|
|
4739
|
+
self._UrlNumberSegmentThreshold = UrlNumberSegmentThreshold
|
|
4740
|
+
|
|
4683
4741
|
|
|
4684
4742
|
def _deserialize(self, params):
|
|
4685
4743
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -4727,6 +4785,8 @@ class ModifyApmInstanceRequest(AbstractModel):
|
|
|
4727
4785
|
self._IsJNIInjectionAnalysis = params.get("IsJNIInjectionAnalysis")
|
|
4728
4786
|
self._IsWebshellBackdoorAnalysis = params.get("IsWebshellBackdoorAnalysis")
|
|
4729
4787
|
self._IsDeserializationAnalysis = params.get("IsDeserializationAnalysis")
|
|
4788
|
+
self._UrlLongSegmentThreshold = params.get("UrlLongSegmentThreshold")
|
|
4789
|
+
self._UrlNumberSegmentThreshold = params.get("UrlNumberSegmentThreshold")
|
|
4730
4790
|
memeber_set = set(params.keys())
|
|
4731
4791
|
for name, value in vars(self).items():
|
|
4732
4792
|
property_name = name[1:]
|
|
@@ -5180,6 +5180,7 @@ class DescribeAutoScalingInstancesRequest(AbstractModel):
|
|
|
5180
5180
|
:param _Filters: 过滤条件。
|
|
5181
5181
|
<li> instance-id - String - 是否必填:否 -(过滤条件)按照实例ID过滤。可通过登录[控制台](https://console.cloud.tencent.com/cvm/index)或调用接口 [DescribeInstances](https://cloud.tencent.com/document/api/213/15728) ,取返回信息中的 `InstanceId` 获取实例ID。</li>
|
|
5182
5182
|
<li> auto-scaling-group-id - String - 是否必填:否 -(过滤条件)按照伸缩组ID过滤。可通过登录 [控制台](https://console.cloud.tencent.com/autoscaling/group) 或调用接口 [DescribeAutoScalingGroups](https://cloud.tencent.com/document/api/377/20438) ,取返回信息中的 AutoScalingGroupId 获取伸缩组ID。</li>
|
|
5183
|
+
<li> private-ip-address - String - 是否必填:否 -(过滤条件)按照实例内网IP过滤。可通过登录 [控制台](https://console.cloud.tencent.com/autoscaling/group) 或调用接口 [DescribeInstances](https://cloud.tencent.com/document/api/213/15728) ,取返回信息中的 `PrivateIpAddresses`获取实例内网IP。</li>
|
|
5183
5184
|
每次请求的`Filters`的上限为10,`Filter.Values`的上限为5。参数不支持同时指定`InstanceIds`和`Filters`。
|
|
5184
5185
|
:type Filters: list of Filter
|
|
5185
5186
|
:param _Offset: 偏移量,默认为0。关于`Offset`的更进一步介绍请参考 API [简介](https://cloud.tencent.com/document/api/213/15688)中的相关小节。
|
|
@@ -5211,6 +5212,7 @@ class DescribeAutoScalingInstancesRequest(AbstractModel):
|
|
|
5211
5212
|
"""过滤条件。
|
|
5212
5213
|
<li> instance-id - String - 是否必填:否 -(过滤条件)按照实例ID过滤。可通过登录[控制台](https://console.cloud.tencent.com/cvm/index)或调用接口 [DescribeInstances](https://cloud.tencent.com/document/api/213/15728) ,取返回信息中的 `InstanceId` 获取实例ID。</li>
|
|
5213
5214
|
<li> auto-scaling-group-id - String - 是否必填:否 -(过滤条件)按照伸缩组ID过滤。可通过登录 [控制台](https://console.cloud.tencent.com/autoscaling/group) 或调用接口 [DescribeAutoScalingGroups](https://cloud.tencent.com/document/api/377/20438) ,取返回信息中的 AutoScalingGroupId 获取伸缩组ID。</li>
|
|
5215
|
+
<li> private-ip-address - String - 是否必填:否 -(过滤条件)按照实例内网IP过滤。可通过登录 [控制台](https://console.cloud.tencent.com/autoscaling/group) 或调用接口 [DescribeInstances](https://cloud.tencent.com/document/api/213/15728) ,取返回信息中的 `PrivateIpAddresses`获取实例内网IP。</li>
|
|
5214
5216
|
每次请求的`Filters`的上限为10,`Filter.Values`的上限为5。参数不支持同时指定`InstanceIds`和`Filters`。
|
|
5215
5217
|
:rtype: list of Filter
|
|
5216
5218
|
"""
|
|
@@ -8155,11 +8157,46 @@ class InternetAccessible(AbstractModel):
|
|
|
8155
8157
|
:param _BandwidthPackageId: 带宽包ID。可通过[DescribeBandwidthPackages](https://cloud.tencent.com/document/api/215/19209)接口返回值中的`BandwidthPackageId`获取。
|
|
8156
8158
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
8157
8159
|
:type BandwidthPackageId: str
|
|
8160
|
+
:param _InternetServiceProvider: 线路类型。各种线路类型详情可参考:[EIP 的 IP 地址类型](https://cloud.tencent.com/document/product/1199/41646)。默认值:BGP。
|
|
8161
|
+
|
|
8162
|
+
<li>BGP:常规 BGP 线路</li>
|
|
8163
|
+
已开通静态单线IP白名单的用户,可选值:
|
|
8164
|
+
|
|
8165
|
+
<li>CMCC:中国移动</li>
|
|
8166
|
+
<li>CTCC:中国电信</li>
|
|
8167
|
+
<li>CUCC:中国联通</li>
|
|
8168
|
+
注意:仅部分地域支持静态单线IP。
|
|
8169
|
+
|
|
8170
|
+
:type InternetServiceProvider: str
|
|
8171
|
+
:param _IPv4AddressType: 公网 IP 类型。
|
|
8172
|
+
|
|
8173
|
+
<li> WanIP:普通公网IP。</li>
|
|
8174
|
+
<li> HighQualityEIP:精品 IP。仅新加坡和中国香港支持精品IP。</li>
|
|
8175
|
+
<li> AntiDDoSEIP:高防 IP。仅部分地域支持高防IP,详情可见[弹性公网IP产品概述](https://cloud.tencent.com/document/product/1199/41646) 。 </li>
|
|
8176
|
+
如需为资源分配公网IPv4地址,请指定公网IPv4地址类型。
|
|
8177
|
+
|
|
8178
|
+
精品IP 高防IP功能仅部分地区灰度开放,如需使用[请提交工单咨询](https://console.cloud.tencent.com/workorder/category)
|
|
8179
|
+
:type IPv4AddressType: str
|
|
8180
|
+
:param _AntiDDoSPackageId: 高防包唯一ID,申请高防IP时,该字段必传。
|
|
8181
|
+
:type AntiDDoSPackageId: str
|
|
8182
|
+
:param _IsKeepEIP: 实例销毁时是否一并销毁绑定的弹性IP。
|
|
8183
|
+
|
|
8184
|
+
取值范围:
|
|
8185
|
+
<li>TRUE:表示保留EIP</li>
|
|
8186
|
+
<li>FALSE:表示不保留</li>
|
|
8187
|
+
请注意,当IPv4AddressType字段指定EIP类型时,默认不保留EIP。WanIP不受此字段影响始终随实例销毁。
|
|
8188
|
+
变更配置此字段,已绑定伸缩组会立刻生效。
|
|
8189
|
+
|
|
8190
|
+
:type IsKeepEIP: bool
|
|
8158
8191
|
"""
|
|
8159
8192
|
self._InternetChargeType = None
|
|
8160
8193
|
self._InternetMaxBandwidthOut = None
|
|
8161
8194
|
self._PublicIpAssigned = None
|
|
8162
8195
|
self._BandwidthPackageId = None
|
|
8196
|
+
self._InternetServiceProvider = None
|
|
8197
|
+
self._IPv4AddressType = None
|
|
8198
|
+
self._AntiDDoSPackageId = None
|
|
8199
|
+
self._IsKeepEIP = None
|
|
8163
8200
|
|
|
8164
8201
|
@property
|
|
8165
8202
|
def InternetChargeType(self):
|
|
@@ -8209,12 +8246,83 @@ class InternetAccessible(AbstractModel):
|
|
|
8209
8246
|
def BandwidthPackageId(self, BandwidthPackageId):
|
|
8210
8247
|
self._BandwidthPackageId = BandwidthPackageId
|
|
8211
8248
|
|
|
8249
|
+
@property
|
|
8250
|
+
def InternetServiceProvider(self):
|
|
8251
|
+
"""线路类型。各种线路类型详情可参考:[EIP 的 IP 地址类型](https://cloud.tencent.com/document/product/1199/41646)。默认值:BGP。
|
|
8252
|
+
|
|
8253
|
+
<li>BGP:常规 BGP 线路</li>
|
|
8254
|
+
已开通静态单线IP白名单的用户,可选值:
|
|
8255
|
+
|
|
8256
|
+
<li>CMCC:中国移动</li>
|
|
8257
|
+
<li>CTCC:中国电信</li>
|
|
8258
|
+
<li>CUCC:中国联通</li>
|
|
8259
|
+
注意:仅部分地域支持静态单线IP。
|
|
8260
|
+
|
|
8261
|
+
:rtype: str
|
|
8262
|
+
"""
|
|
8263
|
+
return self._InternetServiceProvider
|
|
8264
|
+
|
|
8265
|
+
@InternetServiceProvider.setter
|
|
8266
|
+
def InternetServiceProvider(self, InternetServiceProvider):
|
|
8267
|
+
self._InternetServiceProvider = InternetServiceProvider
|
|
8268
|
+
|
|
8269
|
+
@property
|
|
8270
|
+
def IPv4AddressType(self):
|
|
8271
|
+
"""公网 IP 类型。
|
|
8272
|
+
|
|
8273
|
+
<li> WanIP:普通公网IP。</li>
|
|
8274
|
+
<li> HighQualityEIP:精品 IP。仅新加坡和中国香港支持精品IP。</li>
|
|
8275
|
+
<li> AntiDDoSEIP:高防 IP。仅部分地域支持高防IP,详情可见[弹性公网IP产品概述](https://cloud.tencent.com/document/product/1199/41646) 。 </li>
|
|
8276
|
+
如需为资源分配公网IPv4地址,请指定公网IPv4地址类型。
|
|
8277
|
+
|
|
8278
|
+
精品IP 高防IP功能仅部分地区灰度开放,如需使用[请提交工单咨询](https://console.cloud.tencent.com/workorder/category)
|
|
8279
|
+
:rtype: str
|
|
8280
|
+
"""
|
|
8281
|
+
return self._IPv4AddressType
|
|
8282
|
+
|
|
8283
|
+
@IPv4AddressType.setter
|
|
8284
|
+
def IPv4AddressType(self, IPv4AddressType):
|
|
8285
|
+
self._IPv4AddressType = IPv4AddressType
|
|
8286
|
+
|
|
8287
|
+
@property
|
|
8288
|
+
def AntiDDoSPackageId(self):
|
|
8289
|
+
"""高防包唯一ID,申请高防IP时,该字段必传。
|
|
8290
|
+
:rtype: str
|
|
8291
|
+
"""
|
|
8292
|
+
return self._AntiDDoSPackageId
|
|
8293
|
+
|
|
8294
|
+
@AntiDDoSPackageId.setter
|
|
8295
|
+
def AntiDDoSPackageId(self, AntiDDoSPackageId):
|
|
8296
|
+
self._AntiDDoSPackageId = AntiDDoSPackageId
|
|
8297
|
+
|
|
8298
|
+
@property
|
|
8299
|
+
def IsKeepEIP(self):
|
|
8300
|
+
"""实例销毁时是否一并销毁绑定的弹性IP。
|
|
8301
|
+
|
|
8302
|
+
取值范围:
|
|
8303
|
+
<li>TRUE:表示保留EIP</li>
|
|
8304
|
+
<li>FALSE:表示不保留</li>
|
|
8305
|
+
请注意,当IPv4AddressType字段指定EIP类型时,默认不保留EIP。WanIP不受此字段影响始终随实例销毁。
|
|
8306
|
+
变更配置此字段,已绑定伸缩组会立刻生效。
|
|
8307
|
+
|
|
8308
|
+
:rtype: bool
|
|
8309
|
+
"""
|
|
8310
|
+
return self._IsKeepEIP
|
|
8311
|
+
|
|
8312
|
+
@IsKeepEIP.setter
|
|
8313
|
+
def IsKeepEIP(self, IsKeepEIP):
|
|
8314
|
+
self._IsKeepEIP = IsKeepEIP
|
|
8315
|
+
|
|
8212
8316
|
|
|
8213
8317
|
def _deserialize(self, params):
|
|
8214
8318
|
self._InternetChargeType = params.get("InternetChargeType")
|
|
8215
8319
|
self._InternetMaxBandwidthOut = params.get("InternetMaxBandwidthOut")
|
|
8216
8320
|
self._PublicIpAssigned = params.get("PublicIpAssigned")
|
|
8217
8321
|
self._BandwidthPackageId = params.get("BandwidthPackageId")
|
|
8322
|
+
self._InternetServiceProvider = params.get("InternetServiceProvider")
|
|
8323
|
+
self._IPv4AddressType = params.get("IPv4AddressType")
|
|
8324
|
+
self._AntiDDoSPackageId = params.get("AntiDDoSPackageId")
|
|
8325
|
+
self._IsKeepEIP = params.get("IsKeepEIP")
|
|
8218
8326
|
memeber_set = set(params.keys())
|
|
8219
8327
|
for name, value in vars(self).items():
|
|
8220
8328
|
property_name = name[1:]
|