tencentcloud-sdk-python 3.0.1424__py2.py3-none-any.whl → 3.0.1426__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/aiart/v20221229/aiart_client.py +0 -27
- tencentcloud/aiart/v20221229/models.py +2 -205
- tencentcloud/batch/v20170312/errorcodes.py +3 -0
- tencentcloud/cbs/v20170312/errorcodes.py +3 -0
- tencentcloud/ccc/v20200210/models.py +15 -0
- tencentcloud/cdb/v20170320/cdb_client.py +1 -1
- tencentcloud/cdb/v20170320/models.py +98 -12
- tencentcloud/cfg/v20210820/models.py +15 -0
- tencentcloud/cfs/v20190719/models.py +90 -0
- tencentcloud/csip/v20221121/models.py +32 -2
- tencentcloud/dbbrain/v20210527/models.py +60 -0
- tencentcloud/dlc/v20210125/dlc_client.py +23 -0
- tencentcloud/dlc/v20210125/models.py +64 -0
- tencentcloud/eb/v20210416/models.py +8 -8
- tencentcloud/ess/v20201111/models.py +2 -2
- tencentcloud/gs/v20191118/models.py +49 -8
- tencentcloud/iai/v20180301/iai_client.py +0 -1
- tencentcloud/iai/v20180301/models.py +168 -126
- tencentcloud/igtm/v20231024/models.py +12 -238
- tencentcloud/ims/v20201229/errorcodes.py +3 -0
- tencentcloud/lighthouse/v20200324/models.py +15 -0
- tencentcloud/lke/v20231130/models.py +4 -4
- tencentcloud/lkeap/v20240522/models.py +6 -58
- tencentcloud/scf/v20180416/errorcodes.py +93 -0
- tencentcloud/tcbr/v20220217/models.py +15 -0
- tencentcloud/tke/v20180525/models.py +95 -0
- tencentcloud/trtc/v20190722/models.py +2583 -725
- tencentcloud/trtc/v20190722/trtc_client.py +194 -0
- tencentcloud/tsf/v20180326/errorcodes.py +2 -2
- tencentcloud/tts/v20190823/tts_client.py +1 -1
- tencentcloud/vod/v20180717/errorcodes.py +3 -0
- tencentcloud/vod/v20180717/models.py +19 -4
- tencentcloud/wedata/v20210820/errorcodes.py +12 -0
- tencentcloud/wedata/v20210820/models.py +865 -2
- tencentcloud/wedata/v20210820/wedata_client.py +161 -0
- {tencentcloud_sdk_python-3.0.1424.dist-info → tencentcloud_sdk_python-3.0.1426.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1424.dist-info → tencentcloud_sdk_python-3.0.1426.dist-info}/RECORD +41 -41
- {tencentcloud_sdk_python-3.0.1424.dist-info → tencentcloud_sdk_python-3.0.1426.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1424.dist-info → tencentcloud_sdk_python-3.0.1426.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1424.dist-info → tencentcloud_sdk_python-3.0.1426.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个已提交的任务,上一个任务处理完毕后,才能开始处理下一个任务。
|
|
@@ -3151,7 +3151,7 @@ class SubmitGlamPicJobRequest(AbstractModel):
|
|
|
3151
3151
|
图片限制:模板图中最多出现5张人脸,单边分辨率大于300,转成 Base64 字符串后小于 10MB,格式支持 jpg、jpeg、png、bmp、tiff、webp。
|
|
3152
3152
|
:type TemplateUrl: str
|
|
3153
3153
|
:param _FaceInfos: 用户图 URL 列表,以及模板图中需要替换成用户的人脸框信息。
|
|
3154
|
-
一张美照中可包含1 ~ 5个用户形象。每个用户需上传1 ~ 6
|
|
3154
|
+
一张美照中可包含1 ~ 5个用户形象。每个用户需上传1 ~ 6张照片,仅支持单人照。
|
|
3155
3155
|
模板图中的人脸数量需要大于等于用户个数。如果不传每个用户在模板图中的人脸框位置,默认按照模板图人脸框从大到小的顺序进行替换。如需自定义顺序,需要依次上传每个用户在模板图中的人脸框位置。
|
|
3156
3156
|
图片限制:每张图片转成 Base64 字符串后小于 10MB,格式支持 jpg、jpeg、png、bmp、tiff、webp。建议使用单人、正脸、脸部区域占比较大、脸部清晰无遮挡、无大角度偏转、无夸张表情的用户图。
|
|
3157
3157
|
:type FaceInfos: list of FaceInfo
|
|
@@ -3204,7 +3204,7 @@ x4:4倍超分
|
|
|
3204
3204
|
@property
|
|
3205
3205
|
def FaceInfos(self):
|
|
3206
3206
|
"""用户图 URL 列表,以及模板图中需要替换成用户的人脸框信息。
|
|
3207
|
-
一张美照中可包含1 ~ 5个用户形象。每个用户需上传1 ~ 6
|
|
3207
|
+
一张美照中可包含1 ~ 5个用户形象。每个用户需上传1 ~ 6张照片,仅支持单人照。
|
|
3208
3208
|
模板图中的人脸数量需要大于等于用户个数。如果不传每个用户在模板图中的人脸框位置,默认按照模板图人脸框从大到小的顺序进行替换。如需自定义顺序,需要依次上传每个用户在模板图中的人脸框位置。
|
|
3209
3209
|
图片限制:每张图片转成 Base64 字符串后小于 10MB,格式支持 jpg、jpeg、png、bmp、tiff、webp。建议使用单人、正脸、脸部区域占比较大、脸部清晰无遮挡、无大角度偏转、无夸张表情的用户图。
|
|
3210
3210
|
:rtype: list of FaceInfo
|
|
@@ -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
|
|
|
@@ -152,6 +152,9 @@ INVALIDPARAMETERVALUE_REMOTESTORAGESCHEMETYPE = 'InvalidParameterValue.RemoteSto
|
|
|
152
152
|
# 指定的ResourceType不合法。
|
|
153
153
|
INVALIDPARAMETERVALUE_RESOURCETYPE = 'InvalidParameterValue.ResourceType'
|
|
154
154
|
|
|
155
|
+
# 提交任务时指定的task实例副本参数不符合预期
|
|
156
|
+
INVALIDPARAMETERVALUE_TASKINSTANCENUM = 'InvalidParameterValue.TaskInstanceNum'
|
|
157
|
+
|
|
155
158
|
# Zone不可用。
|
|
156
159
|
INVALIDPARAMETERVALUE_UNAVAILABLEZONE = 'InvalidParameterValue.UnavailableZone'
|
|
157
160
|
|
|
@@ -146,6 +146,9 @@ RESOURCEINSUFFICIENT_OVERQUOTA = 'ResourceInsufficient.OverQuota'
|
|
|
146
146
|
# 云盘退还数量已达上限,不能再退还。
|
|
147
147
|
RESOURCEINSUFFICIENT_OVERREFUNDQUOTA = 'ResourceInsufficient.OverRefundQuota'
|
|
148
148
|
|
|
149
|
+
# 云硬盘升级服务繁忙,请稍后重试。
|
|
150
|
+
RESOURCEINSUFFICIENT_UPGRADESERVICEBUSY = 'ResourceInsufficient.UpgradeServiceBusy'
|
|
151
|
+
|
|
149
152
|
# 资源不存在。
|
|
150
153
|
RESOURCENOTFOUND = 'ResourceNotFound'
|
|
151
154
|
|
|
@@ -15222,6 +15222,8 @@ class SkillGroupInfoItem(AbstractModel):
|
|
|
15222
15222
|
:type SkillGroupType: int
|
|
15223
15223
|
:param _Alias: 技能组内线号码
|
|
15224
15224
|
:type Alias: str
|
|
15225
|
+
:param _RingAll: 是否同振
|
|
15226
|
+
:type RingAll: bool
|
|
15225
15227
|
"""
|
|
15226
15228
|
self._SkillGroupId = None
|
|
15227
15229
|
self._SkillGroupName = None
|
|
@@ -15232,6 +15234,7 @@ class SkillGroupInfoItem(AbstractModel):
|
|
|
15232
15234
|
self._LastModifyTimestamp = None
|
|
15233
15235
|
self._SkillGroupType = None
|
|
15234
15236
|
self._Alias = None
|
|
15237
|
+
self._RingAll = None
|
|
15235
15238
|
|
|
15236
15239
|
@property
|
|
15237
15240
|
def SkillGroupId(self):
|
|
@@ -15332,6 +15335,17 @@ class SkillGroupInfoItem(AbstractModel):
|
|
|
15332
15335
|
def Alias(self, Alias):
|
|
15333
15336
|
self._Alias = Alias
|
|
15334
15337
|
|
|
15338
|
+
@property
|
|
15339
|
+
def RingAll(self):
|
|
15340
|
+
"""是否同振
|
|
15341
|
+
:rtype: bool
|
|
15342
|
+
"""
|
|
15343
|
+
return self._RingAll
|
|
15344
|
+
|
|
15345
|
+
@RingAll.setter
|
|
15346
|
+
def RingAll(self, RingAll):
|
|
15347
|
+
self._RingAll = RingAll
|
|
15348
|
+
|
|
15335
15349
|
|
|
15336
15350
|
def _deserialize(self, params):
|
|
15337
15351
|
self._SkillGroupId = params.get("SkillGroupId")
|
|
@@ -15343,6 +15357,7 @@ class SkillGroupInfoItem(AbstractModel):
|
|
|
15343
15357
|
self._LastModifyTimestamp = params.get("LastModifyTimestamp")
|
|
15344
15358
|
self._SkillGroupType = params.get("SkillGroupType")
|
|
15345
15359
|
self._Alias = params.get("Alias")
|
|
15360
|
+
self._RingAll = params.get("RingAll")
|
|
15346
15361
|
memeber_set = set(params.keys())
|
|
15347
15362
|
for name, value in vars(self).items():
|
|
15348
15363
|
property_name = name[1:]
|
|
@@ -830,7 +830,7 @@ class CdbClient(AbstractClient):
|
|
|
830
830
|
|
|
831
831
|
|
|
832
832
|
def DeleteBackup(self, request):
|
|
833
|
-
"""
|
|
833
|
+
"""本接口(DeleteBackup)用于删除数据库备份。本接口只支持删除手动发起的备份。
|
|
834
834
|
|
|
835
835
|
:param request: Request instance for DeleteBackup.
|
|
836
836
|
:type request: :class:`tencentcloud.cdb.v20170320.models.DeleteBackupRequest`
|
|
@@ -4668,6 +4668,10 @@ class CdbZoneSellConf(AbstractModel):
|
|
|
4668
4668
|
:type IsSupportIpv6: bool
|
|
4669
4669
|
:param _EngineType: 可支持的售卖数据库引擎类型
|
|
4670
4670
|
:type EngineType: list of str
|
|
4671
|
+
:param _CloudNativeClusterStatus: 集群版实例在当前可用区的售卖状态。可能的返回值为:1-上线;3-停售;4-不展示
|
|
4672
|
+
:type CloudNativeClusterStatus: int
|
|
4673
|
+
:param _DiskTypeConf: 集群版或者单节点基础型支持的磁盘类型。
|
|
4674
|
+
:type DiskTypeConf: list of DiskTypeConfigItem
|
|
4671
4675
|
"""
|
|
4672
4676
|
self._Status = None
|
|
4673
4677
|
self._ZoneName = None
|
|
@@ -4691,6 +4695,8 @@ class CdbZoneSellConf(AbstractModel):
|
|
|
4691
4695
|
self._ZoneId = None
|
|
4692
4696
|
self._IsSupportIpv6 = None
|
|
4693
4697
|
self._EngineType = None
|
|
4698
|
+
self._CloudNativeClusterStatus = None
|
|
4699
|
+
self._DiskTypeConf = None
|
|
4694
4700
|
|
|
4695
4701
|
@property
|
|
4696
4702
|
def Status(self):
|
|
@@ -4934,6 +4940,28 @@ class CdbZoneSellConf(AbstractModel):
|
|
|
4934
4940
|
def EngineType(self, EngineType):
|
|
4935
4941
|
self._EngineType = EngineType
|
|
4936
4942
|
|
|
4943
|
+
@property
|
|
4944
|
+
def CloudNativeClusterStatus(self):
|
|
4945
|
+
"""集群版实例在当前可用区的售卖状态。可能的返回值为:1-上线;3-停售;4-不展示
|
|
4946
|
+
:rtype: int
|
|
4947
|
+
"""
|
|
4948
|
+
return self._CloudNativeClusterStatus
|
|
4949
|
+
|
|
4950
|
+
@CloudNativeClusterStatus.setter
|
|
4951
|
+
def CloudNativeClusterStatus(self, CloudNativeClusterStatus):
|
|
4952
|
+
self._CloudNativeClusterStatus = CloudNativeClusterStatus
|
|
4953
|
+
|
|
4954
|
+
@property
|
|
4955
|
+
def DiskTypeConf(self):
|
|
4956
|
+
"""集群版或者单节点基础型支持的磁盘类型。
|
|
4957
|
+
:rtype: list of DiskTypeConfigItem
|
|
4958
|
+
"""
|
|
4959
|
+
return self._DiskTypeConf
|
|
4960
|
+
|
|
4961
|
+
@DiskTypeConf.setter
|
|
4962
|
+
def DiskTypeConf(self, DiskTypeConf):
|
|
4963
|
+
self._DiskTypeConf = DiskTypeConf
|
|
4964
|
+
|
|
4937
4965
|
|
|
4938
4966
|
def _deserialize(self, params):
|
|
4939
4967
|
self._Status = params.get("Status")
|
|
@@ -4967,6 +4995,13 @@ class CdbZoneSellConf(AbstractModel):
|
|
|
4967
4995
|
self._ZoneId = params.get("ZoneId")
|
|
4968
4996
|
self._IsSupportIpv6 = params.get("IsSupportIpv6")
|
|
4969
4997
|
self._EngineType = params.get("EngineType")
|
|
4998
|
+
self._CloudNativeClusterStatus = params.get("CloudNativeClusterStatus")
|
|
4999
|
+
if params.get("DiskTypeConf") is not None:
|
|
5000
|
+
self._DiskTypeConf = []
|
|
5001
|
+
for item in params.get("DiskTypeConf"):
|
|
5002
|
+
obj = DiskTypeConfigItem()
|
|
5003
|
+
obj._deserialize(item)
|
|
5004
|
+
self._DiskTypeConf.append(obj)
|
|
4970
5005
|
memeber_set = set(params.keys())
|
|
4971
5006
|
for name, value in vars(self).items():
|
|
4972
5007
|
property_name = name[1:]
|
|
@@ -23468,6 +23503,57 @@ class DisassociateSecurityGroupsResponse(AbstractModel):
|
|
|
23468
23503
|
self._RequestId = params.get("RequestId")
|
|
23469
23504
|
|
|
23470
23505
|
|
|
23506
|
+
class DiskTypeConfigItem(AbstractModel):
|
|
23507
|
+
"""磁盘售卖类型
|
|
23508
|
+
|
|
23509
|
+
"""
|
|
23510
|
+
|
|
23511
|
+
def __init__(self):
|
|
23512
|
+
r"""
|
|
23513
|
+
:param _DeviceType: 磁盘对应的实例类型。仅支持单节点基础型和集群版。
|
|
23514
|
+
:type DeviceType: str
|
|
23515
|
+
:param _DiskType: 可以选择的磁盘类型列表。
|
|
23516
|
+
:type DiskType: list of str
|
|
23517
|
+
"""
|
|
23518
|
+
self._DeviceType = None
|
|
23519
|
+
self._DiskType = None
|
|
23520
|
+
|
|
23521
|
+
@property
|
|
23522
|
+
def DeviceType(self):
|
|
23523
|
+
"""磁盘对应的实例类型。仅支持单节点基础型和集群版。
|
|
23524
|
+
:rtype: str
|
|
23525
|
+
"""
|
|
23526
|
+
return self._DeviceType
|
|
23527
|
+
|
|
23528
|
+
@DeviceType.setter
|
|
23529
|
+
def DeviceType(self, DeviceType):
|
|
23530
|
+
self._DeviceType = DeviceType
|
|
23531
|
+
|
|
23532
|
+
@property
|
|
23533
|
+
def DiskType(self):
|
|
23534
|
+
"""可以选择的磁盘类型列表。
|
|
23535
|
+
:rtype: list of str
|
|
23536
|
+
"""
|
|
23537
|
+
return self._DiskType
|
|
23538
|
+
|
|
23539
|
+
@DiskType.setter
|
|
23540
|
+
def DiskType(self, DiskType):
|
|
23541
|
+
self._DiskType = DiskType
|
|
23542
|
+
|
|
23543
|
+
|
|
23544
|
+
def _deserialize(self, params):
|
|
23545
|
+
self._DeviceType = params.get("DeviceType")
|
|
23546
|
+
self._DiskType = params.get("DiskType")
|
|
23547
|
+
memeber_set = set(params.keys())
|
|
23548
|
+
for name, value in vars(self).items():
|
|
23549
|
+
property_name = name[1:]
|
|
23550
|
+
if property_name in memeber_set:
|
|
23551
|
+
memeber_set.remove(property_name)
|
|
23552
|
+
if len(memeber_set) > 0:
|
|
23553
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
23554
|
+
|
|
23555
|
+
|
|
23556
|
+
|
|
23471
23557
|
class DrInfo(AbstractModel):
|
|
23472
23558
|
"""灾备实例信息
|
|
23473
23559
|
|
|
@@ -25864,15 +25950,15 @@ class IsolateDBInstanceResponse(AbstractModel):
|
|
|
25864
25950
|
|
|
25865
25951
|
|
|
25866
25952
|
class LocalBinlogConfig(AbstractModel):
|
|
25867
|
-
"""本地binlog保留配置
|
|
25953
|
+
"""本地 binlog 保留配置
|
|
25868
25954
|
|
|
25869
25955
|
"""
|
|
25870
25956
|
|
|
25871
25957
|
def __init__(self):
|
|
25872
25958
|
r"""
|
|
25873
|
-
:param _SaveHours: 本地binlog保留时长,可取值范围:[
|
|
25959
|
+
:param _SaveHours: 本地 binlog 保留时长,可取值范围:[6,168]。
|
|
25874
25960
|
:type SaveHours: int
|
|
25875
|
-
:param _MaxUsage: 本地binlog空间使用率,可取值范围:[30,50]。
|
|
25961
|
+
:param _MaxUsage: 本地 binlog 空间使用率,可取值范围:[30,50]。
|
|
25876
25962
|
:type MaxUsage: int
|
|
25877
25963
|
"""
|
|
25878
25964
|
self._SaveHours = None
|
|
@@ -25880,7 +25966,7 @@ class LocalBinlogConfig(AbstractModel):
|
|
|
25880
25966
|
|
|
25881
25967
|
@property
|
|
25882
25968
|
def SaveHours(self):
|
|
25883
|
-
"""本地binlog保留时长,可取值范围:[
|
|
25969
|
+
"""本地 binlog 保留时长,可取值范围:[6,168]。
|
|
25884
25970
|
:rtype: int
|
|
25885
25971
|
"""
|
|
25886
25972
|
return self._SaveHours
|
|
@@ -25891,7 +25977,7 @@ class LocalBinlogConfig(AbstractModel):
|
|
|
25891
25977
|
|
|
25892
25978
|
@property
|
|
25893
25979
|
def MaxUsage(self):
|
|
25894
|
-
"""本地binlog空间使用率,可取值范围:[30,50]。
|
|
25980
|
+
"""本地 binlog 空间使用率,可取值范围:[30,50]。
|
|
25895
25981
|
:rtype: int
|
|
25896
25982
|
"""
|
|
25897
25983
|
return self._MaxUsage
|
|
@@ -25915,15 +26001,15 @@ class LocalBinlogConfig(AbstractModel):
|
|
|
25915
26001
|
|
|
25916
26002
|
|
|
25917
26003
|
class LocalBinlogConfigDefault(AbstractModel):
|
|
25918
|
-
"""本地binlog
|
|
26004
|
+
"""本地 binlog 保留策略默认配置
|
|
25919
26005
|
|
|
25920
26006
|
"""
|
|
25921
26007
|
|
|
25922
26008
|
def __init__(self):
|
|
25923
26009
|
r"""
|
|
25924
|
-
:param _SaveHours: 本地binlog保留时长,可取值范围:[
|
|
26010
|
+
:param _SaveHours: 本地 binlog 保留时长,可取值范围:[6,168]。
|
|
25925
26011
|
:type SaveHours: int
|
|
25926
|
-
:param _MaxUsage: 本地binlog空间使用率,可取值范围:[30,50]。
|
|
26012
|
+
:param _MaxUsage: 本地 binlog 空间使用率,可取值范围:[30,50]。
|
|
25927
26013
|
:type MaxUsage: int
|
|
25928
26014
|
"""
|
|
25929
26015
|
self._SaveHours = None
|
|
@@ -25931,7 +26017,7 @@ class LocalBinlogConfigDefault(AbstractModel):
|
|
|
25931
26017
|
|
|
25932
26018
|
@property
|
|
25933
26019
|
def SaveHours(self):
|
|
25934
|
-
"""本地binlog保留时长,可取值范围:[
|
|
26020
|
+
"""本地 binlog 保留时长,可取值范围:[6,168]。
|
|
25935
26021
|
:rtype: int
|
|
25936
26022
|
"""
|
|
25937
26023
|
return self._SaveHours
|
|
@@ -25942,7 +26028,7 @@ class LocalBinlogConfigDefault(AbstractModel):
|
|
|
25942
26028
|
|
|
25943
26029
|
@property
|
|
25944
26030
|
def MaxUsage(self):
|
|
25945
|
-
"""本地binlog空间使用率,可取值范围:[30,50]。
|
|
26031
|
+
"""本地 binlog 空间使用率,可取值范围:[30,50]。
|
|
25946
26032
|
:rtype: int
|
|
25947
26033
|
"""
|
|
25948
26034
|
return self._MaxUsage
|
|
@@ -35901,7 +35987,7 @@ class SlowLogInfo(AbstractModel):
|
|
|
35901
35987
|
:type Name: str
|
|
35902
35988
|
:param _Size: 备份文件大小,单位:Byte
|
|
35903
35989
|
:type Size: int
|
|
35904
|
-
:param _Date: 备份快照时间,时间格式:2016-03-17
|
|
35990
|
+
:param _Date: 备份快照时间,时间格式:2016-03-17
|
|
35905
35991
|
:type Date: str
|
|
35906
35992
|
:param _IntranetUrl: 内网下载地址
|
|
35907
35993
|
:type IntranetUrl: str
|
|
@@ -35941,7 +36027,7 @@ class SlowLogInfo(AbstractModel):
|
|
|
35941
36027
|
|
|
35942
36028
|
@property
|
|
35943
36029
|
def Date(self):
|
|
35944
|
-
"""备份快照时间,时间格式:2016-03-17
|
|
36030
|
+
"""备份快照时间,时间格式:2016-03-17
|
|
35945
36031
|
:rtype: str
|
|
35946
36032
|
"""
|
|
35947
36033
|
return self._Date
|
|
@@ -6231,11 +6231,14 @@ class TaskTarget(AbstractModel):
|
|
|
6231
6231
|
:type Type: int
|
|
6232
6232
|
:param _Source: 1:平台 2:用户个人
|
|
6233
6233
|
:type Source: int
|
|
6234
|
+
:param _TargetStatus: 目标标签是否已被删除
|
|
6235
|
+
:type TargetStatus: int
|
|
6234
6236
|
"""
|
|
6235
6237
|
self._TargetId = None
|
|
6236
6238
|
self._TargetDesc = None
|
|
6237
6239
|
self._Type = None
|
|
6238
6240
|
self._Source = None
|
|
6241
|
+
self._TargetStatus = None
|
|
6239
6242
|
|
|
6240
6243
|
@property
|
|
6241
6244
|
def TargetId(self):
|
|
@@ -6282,12 +6285,24 @@ class TaskTarget(AbstractModel):
|
|
|
6282
6285
|
def Source(self, Source):
|
|
6283
6286
|
self._Source = Source
|
|
6284
6287
|
|
|
6288
|
+
@property
|
|
6289
|
+
def TargetStatus(self):
|
|
6290
|
+
"""目标标签是否已被删除
|
|
6291
|
+
:rtype: int
|
|
6292
|
+
"""
|
|
6293
|
+
return self._TargetStatus
|
|
6294
|
+
|
|
6295
|
+
@TargetStatus.setter
|
|
6296
|
+
def TargetStatus(self, TargetStatus):
|
|
6297
|
+
self._TargetStatus = TargetStatus
|
|
6298
|
+
|
|
6285
6299
|
|
|
6286
6300
|
def _deserialize(self, params):
|
|
6287
6301
|
self._TargetId = params.get("TargetId")
|
|
6288
6302
|
self._TargetDesc = params.get("TargetDesc")
|
|
6289
6303
|
self._Type = params.get("Type")
|
|
6290
6304
|
self._Source = params.get("Source")
|
|
6305
|
+
self._TargetStatus = params.get("TargetStatus")
|
|
6291
6306
|
memeber_set = set(params.keys())
|
|
6292
6307
|
for name, value in vars(self).items():
|
|
6293
6308
|
property_name = name[1:]
|