tencentcloud-sdk-python 3.0.1332__py2.py3-none-any.whl → 3.0.1334__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/models.py +2 -0
- tencentcloud/antiddos/v20200309/models.py +2 -2
- tencentcloud/apm/v20210622/models.py +63 -55
- tencentcloud/billing/v20180709/models.py +30 -474
- tencentcloud/cat/v20180409/models.py +4 -4
- tencentcloud/cdwpg/v20201230/cdwpg_client.py +368 -0
- tencentcloud/cdwpg/v20201230/models.py +5699 -1484
- tencentcloud/ciam/v20220331/models.py +0 -92
- tencentcloud/cls/v20201016/models.py +0 -2
- tencentcloud/common/abstract_client.py +3 -0
- tencentcloud/controlcenter/v20230110/models.py +0 -4
- tencentcloud/csip/v20221121/models.py +94 -4
- tencentcloud/cvm/v20170312/models.py +49 -212
- tencentcloud/dbbrain/v20191016/models.py +0 -6
- tencentcloud/dbbrain/v20210527/models.py +0 -12
- tencentcloud/dlc/v20210125/models.py +32 -0
- tencentcloud/emr/v20190103/models.py +17 -0
- tencentcloud/es/v20180416/models.py +15 -0
- tencentcloud/essbasic/v20210526/essbasic_client.py +1 -1
- tencentcloud/goosefs/v20220519/models.py +0 -10
- tencentcloud/gwlb/v20240906/models.py +34 -2
- tencentcloud/iotcloud/v20210408/models.py +15 -15
- tencentcloud/keewidb/v20220308/models.py +0 -76
- tencentcloud/live/v20180801/models.py +8 -58
- tencentcloud/lke/v20231130/lke_client.py +46 -0
- tencentcloud/lke/v20231130/models.py +385 -0
- tencentcloud/mongodb/v20190725/models.py +10 -4
- tencentcloud/mps/v20190612/models.py +31 -2
- tencentcloud/mqtt/v20240516/models.py +154 -0
- tencentcloud/mqtt/v20240516/mqtt_client.py +23 -0
- tencentcloud/ocr/v20181119/errorcodes.py +3 -0
- tencentcloud/ocr/v20181119/models.py +28 -6
- tencentcloud/pts/v20210728/models.py +68 -6
- tencentcloud/redis/v20180412/models.py +0 -66
- tencentcloud/rum/v20210622/models.py +150 -0
- tencentcloud/tag/v20180813/models.py +2 -2
- tencentcloud/tdmq/v20200217/models.py +192 -0
- tencentcloud/tdmq/v20200217/tdmq_client.py +23 -0
- tencentcloud/tke/v20180525/models.py +0 -20
- tencentcloud/tms/v20201229/models.py +15 -0
- tencentcloud/trp/v20210515/models.py +0 -6
- tencentcloud/tsf/v20180326/models.py +0 -880
- tencentcloud/vod/v20180717/models.py +8 -8
- tencentcloud/vod/v20180717/vod_client.py +2 -2
- tencentcloud/vpc/v20170312/errorcodes.py +3 -0
- tencentcloud/waf/v20180125/models.py +0 -6
- tencentcloud/wedata/v20210820/models.py +173 -0
- {tencentcloud_sdk_python-3.0.1332.dist-info → tencentcloud_sdk_python-3.0.1334.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1332.dist-info → tencentcloud_sdk_python-3.0.1334.dist-info}/RECORD +53 -53
- {tencentcloud_sdk_python-3.0.1332.dist-info → tencentcloud_sdk_python-3.0.1334.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1332.dist-info → tencentcloud_sdk_python-3.0.1334.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1332.dist-info → tencentcloud_sdk_python-3.0.1334.dist-info}/top_level.txt +0 -0
@@ -4352,6 +4352,130 @@ class CreateReleaseResponse(AbstractModel):
|
|
4352
4352
|
self._RequestId = params.get("RequestId")
|
4353
4353
|
|
4354
4354
|
|
4355
|
+
class CreateVarRequest(AbstractModel):
|
4356
|
+
"""CreateVar请求参数结构体
|
4357
|
+
|
4358
|
+
"""
|
4359
|
+
|
4360
|
+
def __init__(self):
|
4361
|
+
r"""
|
4362
|
+
:param _AppBizId: 应用ID
|
4363
|
+
:type AppBizId: str
|
4364
|
+
:param _VarName: 变量名称,不允许重复,最大支持50个字符
|
4365
|
+
:type VarName: str
|
4366
|
+
:param _VarDesc: 变量描述,最大支持120个字符
|
4367
|
+
:type VarDesc: str
|
4368
|
+
:param _VarType: 变量类型定义,支持类型如下:(STRING,INT,FLOAT,BOOL,OBJECT,ARRAY_STRING,ARRAY_INT,ARRAY_FLOAT,ARRAY_BOOL,ARRAY_OBJECT,FILE,DOCUMENT,IMAGE,AUDIO);传输过程是json字符串,标签中仅支持"STRING"类型使用
|
4369
|
+
:type VarType: str
|
4370
|
+
"""
|
4371
|
+
self._AppBizId = None
|
4372
|
+
self._VarName = None
|
4373
|
+
self._VarDesc = None
|
4374
|
+
self._VarType = None
|
4375
|
+
|
4376
|
+
@property
|
4377
|
+
def AppBizId(self):
|
4378
|
+
"""应用ID
|
4379
|
+
:rtype: str
|
4380
|
+
"""
|
4381
|
+
return self._AppBizId
|
4382
|
+
|
4383
|
+
@AppBizId.setter
|
4384
|
+
def AppBizId(self, AppBizId):
|
4385
|
+
self._AppBizId = AppBizId
|
4386
|
+
|
4387
|
+
@property
|
4388
|
+
def VarName(self):
|
4389
|
+
"""变量名称,不允许重复,最大支持50个字符
|
4390
|
+
:rtype: str
|
4391
|
+
"""
|
4392
|
+
return self._VarName
|
4393
|
+
|
4394
|
+
@VarName.setter
|
4395
|
+
def VarName(self, VarName):
|
4396
|
+
self._VarName = VarName
|
4397
|
+
|
4398
|
+
@property
|
4399
|
+
def VarDesc(self):
|
4400
|
+
"""变量描述,最大支持120个字符
|
4401
|
+
:rtype: str
|
4402
|
+
"""
|
4403
|
+
return self._VarDesc
|
4404
|
+
|
4405
|
+
@VarDesc.setter
|
4406
|
+
def VarDesc(self, VarDesc):
|
4407
|
+
self._VarDesc = VarDesc
|
4408
|
+
|
4409
|
+
@property
|
4410
|
+
def VarType(self):
|
4411
|
+
"""变量类型定义,支持类型如下:(STRING,INT,FLOAT,BOOL,OBJECT,ARRAY_STRING,ARRAY_INT,ARRAY_FLOAT,ARRAY_BOOL,ARRAY_OBJECT,FILE,DOCUMENT,IMAGE,AUDIO);传输过程是json字符串,标签中仅支持"STRING"类型使用
|
4412
|
+
:rtype: str
|
4413
|
+
"""
|
4414
|
+
return self._VarType
|
4415
|
+
|
4416
|
+
@VarType.setter
|
4417
|
+
def VarType(self, VarType):
|
4418
|
+
self._VarType = VarType
|
4419
|
+
|
4420
|
+
|
4421
|
+
def _deserialize(self, params):
|
4422
|
+
self._AppBizId = params.get("AppBizId")
|
4423
|
+
self._VarName = params.get("VarName")
|
4424
|
+
self._VarDesc = params.get("VarDesc")
|
4425
|
+
self._VarType = params.get("VarType")
|
4426
|
+
memeber_set = set(params.keys())
|
4427
|
+
for name, value in vars(self).items():
|
4428
|
+
property_name = name[1:]
|
4429
|
+
if property_name in memeber_set:
|
4430
|
+
memeber_set.remove(property_name)
|
4431
|
+
if len(memeber_set) > 0:
|
4432
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
4433
|
+
|
4434
|
+
|
4435
|
+
|
4436
|
+
class CreateVarResponse(AbstractModel):
|
4437
|
+
"""CreateVar返回参数结构体
|
4438
|
+
|
4439
|
+
"""
|
4440
|
+
|
4441
|
+
def __init__(self):
|
4442
|
+
r"""
|
4443
|
+
:param _VarId: 变量ID
|
4444
|
+
:type VarId: str
|
4445
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4446
|
+
:type RequestId: str
|
4447
|
+
"""
|
4448
|
+
self._VarId = None
|
4449
|
+
self._RequestId = None
|
4450
|
+
|
4451
|
+
@property
|
4452
|
+
def VarId(self):
|
4453
|
+
"""变量ID
|
4454
|
+
:rtype: str
|
4455
|
+
"""
|
4456
|
+
return self._VarId
|
4457
|
+
|
4458
|
+
@VarId.setter
|
4459
|
+
def VarId(self, VarId):
|
4460
|
+
self._VarId = VarId
|
4461
|
+
|
4462
|
+
@property
|
4463
|
+
def RequestId(self):
|
4464
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4465
|
+
:rtype: str
|
4466
|
+
"""
|
4467
|
+
return self._RequestId
|
4468
|
+
|
4469
|
+
@RequestId.setter
|
4470
|
+
def RequestId(self, RequestId):
|
4471
|
+
self._RequestId = RequestId
|
4472
|
+
|
4473
|
+
|
4474
|
+
def _deserialize(self, params):
|
4475
|
+
self._VarId = params.get("VarId")
|
4476
|
+
self._RequestId = params.get("RequestId")
|
4477
|
+
|
4478
|
+
|
4355
4479
|
class Credentials(AbstractModel):
|
4356
4480
|
"""临时密钥结构
|
4357
4481
|
|
@@ -11824,6 +11948,180 @@ class GetTaskStatusResponse(AbstractModel):
|
|
11824
11948
|
self._RequestId = params.get("RequestId")
|
11825
11949
|
|
11826
11950
|
|
11951
|
+
class GetVarListRequest(AbstractModel):
|
11952
|
+
"""GetVarList请求参数结构体
|
11953
|
+
|
11954
|
+
"""
|
11955
|
+
|
11956
|
+
def __init__(self):
|
11957
|
+
r"""
|
11958
|
+
:param _AppBizId: 应用ID
|
11959
|
+
:type AppBizId: str
|
11960
|
+
:param _VarIds: 变量ID数组
|
11961
|
+
:type VarIds: list of str
|
11962
|
+
:param _Keyword: 按变量名称关键词搜索
|
11963
|
+
:type Keyword: str
|
11964
|
+
:param _Offset: 起始偏移量(默认0)
|
11965
|
+
:type Offset: int
|
11966
|
+
:param _Limit: 限定数量(默认15)
|
11967
|
+
:type Limit: int
|
11968
|
+
:param _VarType: 按变量类型过滤,默认查询所有类型(STRING,INT,FLOAT,BOOL,OBJECT,ARRAY_STRING,ARRAY_INT,ARRAY_FLOAT,ARRAY_BOOL,ARRAY_OBJECT,FILE,DOCUMENT,IMAGE,AUDIO)
|
11969
|
+
:type VarType: str
|
11970
|
+
"""
|
11971
|
+
self._AppBizId = None
|
11972
|
+
self._VarIds = None
|
11973
|
+
self._Keyword = None
|
11974
|
+
self._Offset = None
|
11975
|
+
self._Limit = None
|
11976
|
+
self._VarType = None
|
11977
|
+
|
11978
|
+
@property
|
11979
|
+
def AppBizId(self):
|
11980
|
+
"""应用ID
|
11981
|
+
:rtype: str
|
11982
|
+
"""
|
11983
|
+
return self._AppBizId
|
11984
|
+
|
11985
|
+
@AppBizId.setter
|
11986
|
+
def AppBizId(self, AppBizId):
|
11987
|
+
self._AppBizId = AppBizId
|
11988
|
+
|
11989
|
+
@property
|
11990
|
+
def VarIds(self):
|
11991
|
+
"""变量ID数组
|
11992
|
+
:rtype: list of str
|
11993
|
+
"""
|
11994
|
+
return self._VarIds
|
11995
|
+
|
11996
|
+
@VarIds.setter
|
11997
|
+
def VarIds(self, VarIds):
|
11998
|
+
self._VarIds = VarIds
|
11999
|
+
|
12000
|
+
@property
|
12001
|
+
def Keyword(self):
|
12002
|
+
"""按变量名称关键词搜索
|
12003
|
+
:rtype: str
|
12004
|
+
"""
|
12005
|
+
return self._Keyword
|
12006
|
+
|
12007
|
+
@Keyword.setter
|
12008
|
+
def Keyword(self, Keyword):
|
12009
|
+
self._Keyword = Keyword
|
12010
|
+
|
12011
|
+
@property
|
12012
|
+
def Offset(self):
|
12013
|
+
"""起始偏移量(默认0)
|
12014
|
+
:rtype: int
|
12015
|
+
"""
|
12016
|
+
return self._Offset
|
12017
|
+
|
12018
|
+
@Offset.setter
|
12019
|
+
def Offset(self, Offset):
|
12020
|
+
self._Offset = Offset
|
12021
|
+
|
12022
|
+
@property
|
12023
|
+
def Limit(self):
|
12024
|
+
"""限定数量(默认15)
|
12025
|
+
:rtype: int
|
12026
|
+
"""
|
12027
|
+
return self._Limit
|
12028
|
+
|
12029
|
+
@Limit.setter
|
12030
|
+
def Limit(self, Limit):
|
12031
|
+
self._Limit = Limit
|
12032
|
+
|
12033
|
+
@property
|
12034
|
+
def VarType(self):
|
12035
|
+
"""按变量类型过滤,默认查询所有类型(STRING,INT,FLOAT,BOOL,OBJECT,ARRAY_STRING,ARRAY_INT,ARRAY_FLOAT,ARRAY_BOOL,ARRAY_OBJECT,FILE,DOCUMENT,IMAGE,AUDIO)
|
12036
|
+
:rtype: str
|
12037
|
+
"""
|
12038
|
+
return self._VarType
|
12039
|
+
|
12040
|
+
@VarType.setter
|
12041
|
+
def VarType(self, VarType):
|
12042
|
+
self._VarType = VarType
|
12043
|
+
|
12044
|
+
|
12045
|
+
def _deserialize(self, params):
|
12046
|
+
self._AppBizId = params.get("AppBizId")
|
12047
|
+
self._VarIds = params.get("VarIds")
|
12048
|
+
self._Keyword = params.get("Keyword")
|
12049
|
+
self._Offset = params.get("Offset")
|
12050
|
+
self._Limit = params.get("Limit")
|
12051
|
+
self._VarType = params.get("VarType")
|
12052
|
+
memeber_set = set(params.keys())
|
12053
|
+
for name, value in vars(self).items():
|
12054
|
+
property_name = name[1:]
|
12055
|
+
if property_name in memeber_set:
|
12056
|
+
memeber_set.remove(property_name)
|
12057
|
+
if len(memeber_set) > 0:
|
12058
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
12059
|
+
|
12060
|
+
|
12061
|
+
|
12062
|
+
class GetVarListResponse(AbstractModel):
|
12063
|
+
"""GetVarList返回参数结构体
|
12064
|
+
|
12065
|
+
"""
|
12066
|
+
|
12067
|
+
def __init__(self):
|
12068
|
+
r"""
|
12069
|
+
:param _Total: 变量总数
|
12070
|
+
:type Total: int
|
12071
|
+
:param _List: 变量信息列表
|
12072
|
+
:type List: list of TaskFLowVar
|
12073
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
12074
|
+
:type RequestId: str
|
12075
|
+
"""
|
12076
|
+
self._Total = None
|
12077
|
+
self._List = None
|
12078
|
+
self._RequestId = None
|
12079
|
+
|
12080
|
+
@property
|
12081
|
+
def Total(self):
|
12082
|
+
"""变量总数
|
12083
|
+
:rtype: int
|
12084
|
+
"""
|
12085
|
+
return self._Total
|
12086
|
+
|
12087
|
+
@Total.setter
|
12088
|
+
def Total(self, Total):
|
12089
|
+
self._Total = Total
|
12090
|
+
|
12091
|
+
@property
|
12092
|
+
def List(self):
|
12093
|
+
"""变量信息列表
|
12094
|
+
:rtype: list of TaskFLowVar
|
12095
|
+
"""
|
12096
|
+
return self._List
|
12097
|
+
|
12098
|
+
@List.setter
|
12099
|
+
def List(self, List):
|
12100
|
+
self._List = List
|
12101
|
+
|
12102
|
+
@property
|
12103
|
+
def RequestId(self):
|
12104
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
12105
|
+
:rtype: str
|
12106
|
+
"""
|
12107
|
+
return self._RequestId
|
12108
|
+
|
12109
|
+
@RequestId.setter
|
12110
|
+
def RequestId(self, RequestId):
|
12111
|
+
self._RequestId = RequestId
|
12112
|
+
|
12113
|
+
|
12114
|
+
def _deserialize(self, params):
|
12115
|
+
self._Total = params.get("Total")
|
12116
|
+
if params.get("List") is not None:
|
12117
|
+
self._List = []
|
12118
|
+
for item in params.get("List"):
|
12119
|
+
obj = TaskFLowVar()
|
12120
|
+
obj._deserialize(item)
|
12121
|
+
self._List.append(obj)
|
12122
|
+
self._RequestId = params.get("RequestId")
|
12123
|
+
|
12124
|
+
|
11827
12125
|
class GetWsTokenReq_Label(AbstractModel):
|
11828
12126
|
"""获取ws token label
|
11829
12127
|
|
@@ -25084,6 +25382,93 @@ class SummaryOutput(AbstractModel):
|
|
25084
25382
|
|
25085
25383
|
|
25086
25384
|
|
25385
|
+
class TaskFLowVar(AbstractModel):
|
25386
|
+
"""变量详情
|
25387
|
+
|
25388
|
+
"""
|
25389
|
+
|
25390
|
+
def __init__(self):
|
25391
|
+
r"""
|
25392
|
+
:param _VarId: 变量ID
|
25393
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
25394
|
+
:type VarId: str
|
25395
|
+
:param _VarName: 变量名称
|
25396
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
25397
|
+
:type VarName: str
|
25398
|
+
:param _VarDesc: 变量描述(默认为"-")
|
25399
|
+
:type VarDesc: str
|
25400
|
+
:param _VarType: 变量类型 (STRING,INT,FLOAT,BOOL,OBJECT,ARRAY_STRING,ARRAY_INT,ARRAY_FLOAT,ARRAY_BOOL,ARRAY_OBJECT,FILE,DOCUMENT,IMAGE,AUDIO)
|
25401
|
+
|
25402
|
+
:type VarType: str
|
25403
|
+
"""
|
25404
|
+
self._VarId = None
|
25405
|
+
self._VarName = None
|
25406
|
+
self._VarDesc = None
|
25407
|
+
self._VarType = None
|
25408
|
+
|
25409
|
+
@property
|
25410
|
+
def VarId(self):
|
25411
|
+
"""变量ID
|
25412
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
25413
|
+
:rtype: str
|
25414
|
+
"""
|
25415
|
+
return self._VarId
|
25416
|
+
|
25417
|
+
@VarId.setter
|
25418
|
+
def VarId(self, VarId):
|
25419
|
+
self._VarId = VarId
|
25420
|
+
|
25421
|
+
@property
|
25422
|
+
def VarName(self):
|
25423
|
+
"""变量名称
|
25424
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
25425
|
+
:rtype: str
|
25426
|
+
"""
|
25427
|
+
return self._VarName
|
25428
|
+
|
25429
|
+
@VarName.setter
|
25430
|
+
def VarName(self, VarName):
|
25431
|
+
self._VarName = VarName
|
25432
|
+
|
25433
|
+
@property
|
25434
|
+
def VarDesc(self):
|
25435
|
+
"""变量描述(默认为"-")
|
25436
|
+
:rtype: str
|
25437
|
+
"""
|
25438
|
+
return self._VarDesc
|
25439
|
+
|
25440
|
+
@VarDesc.setter
|
25441
|
+
def VarDesc(self, VarDesc):
|
25442
|
+
self._VarDesc = VarDesc
|
25443
|
+
|
25444
|
+
@property
|
25445
|
+
def VarType(self):
|
25446
|
+
"""变量类型 (STRING,INT,FLOAT,BOOL,OBJECT,ARRAY_STRING,ARRAY_INT,ARRAY_FLOAT,ARRAY_BOOL,ARRAY_OBJECT,FILE,DOCUMENT,IMAGE,AUDIO)
|
25447
|
+
|
25448
|
+
:rtype: str
|
25449
|
+
"""
|
25450
|
+
return self._VarType
|
25451
|
+
|
25452
|
+
@VarType.setter
|
25453
|
+
def VarType(self, VarType):
|
25454
|
+
self._VarType = VarType
|
25455
|
+
|
25456
|
+
|
25457
|
+
def _deserialize(self, params):
|
25458
|
+
self._VarId = params.get("VarId")
|
25459
|
+
self._VarName = params.get("VarName")
|
25460
|
+
self._VarDesc = params.get("VarDesc")
|
25461
|
+
self._VarType = params.get("VarType")
|
25462
|
+
memeber_set = set(params.keys())
|
25463
|
+
for name, value in vars(self).items():
|
25464
|
+
property_name = name[1:]
|
25465
|
+
if property_name in memeber_set:
|
25466
|
+
memeber_set.remove(property_name)
|
25467
|
+
if len(memeber_set) > 0:
|
25468
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
25469
|
+
|
25470
|
+
|
25471
|
+
|
25087
25472
|
class TaskFlowInfo(AbstractModel):
|
25088
25473
|
"""任务流程信息
|
25089
25474
|
|
@@ -4508,7 +4508,10 @@ class DescribeDBInstanceParamTplRequest(AbstractModel):
|
|
4508
4508
|
:type TplIds: list of str
|
4509
4509
|
:param _TplNames: 模板名称,查询条件。
|
4510
4510
|
:type TplNames: list of str
|
4511
|
-
:param _MongoVersion:
|
4511
|
+
:param _MongoVersion: 根据版本号查询参数模板,具体支持的售卖版本,请参见[DescribeSpecInfo](https://cloud.tencent.com/document/product/240/38567)查询云数据库的售卖规格的返回结果。参数与版本对应关系如下所示:
|
4512
|
+
- MONGO_36_WT:MongoDB 3.6 WiredTiger存储引擎版本。
|
4513
|
+
- MONGO_40_WT:MongoDB 4.0 WiredTiger存储引擎版本。
|
4514
|
+
- MONGO_42_WT:MongoDB 4.2 WiredTiger存储引擎版本。
|
4512
4515
|
:type MongoVersion: list of str
|
4513
4516
|
:param _TplType: 根据模板类型查询参数模板,支持DEFAULT(默认模板)和CUSTOMIZE(自定义模板)两种。
|
4514
4517
|
:type TplType: str
|
@@ -4542,7 +4545,10 @@ class DescribeDBInstanceParamTplRequest(AbstractModel):
|
|
4542
4545
|
|
4543
4546
|
@property
|
4544
4547
|
def MongoVersion(self):
|
4545
|
-
"""
|
4548
|
+
"""根据版本号查询参数模板,具体支持的售卖版本,请参见[DescribeSpecInfo](https://cloud.tencent.com/document/product/240/38567)查询云数据库的售卖规格的返回结果。参数与版本对应关系如下所示:
|
4549
|
+
- MONGO_36_WT:MongoDB 3.6 WiredTiger存储引擎版本。
|
4550
|
+
- MONGO_40_WT:MongoDB 4.0 WiredTiger存储引擎版本。
|
4551
|
+
- MONGO_42_WT:MongoDB 4.2 WiredTiger存储引擎版本。
|
4546
4552
|
:rtype: list of str
|
4547
4553
|
"""
|
4548
4554
|
return self._MongoVersion
|
@@ -9089,7 +9095,7 @@ class ModifyDBInstanceSpecRequest(AbstractModel):
|
|
9089
9095
|
:param _NodeNum: 实例变更后mongod的节点数(不包含readonly节点数)。
|
9090
9096
|
- 变更mongod CPU与内存规格时,该参数可以不配置或者输入当前 mongod(不包含readonly) 节点数量。
|
9091
9097
|
- 变更 mongos CPU与内存规格时,该参数可以不配置或者输入当前 mongod(不包含readonly) 节点数量。
|
9092
|
-
- 节点变更时(全部类型),该参数可不配置或输入变更后的 mongod(不包含
|
9098
|
+
- 节点变更时(全部类型),该参数可不配置或输入变更后的 mongod(不包含readonly) 节点数量。
|
9093
9099
|
- 副本集节点数:请确认节点数量取值范围,通过云数据库的售卖规格 [DescribeSpecInfo ](https://cloud.tencent.com/document/product/240/38565)接口返回的参数 MinNodeNum 与 MaxNodeNum 获取。
|
9094
9100
|
- 分片集群每个分片节点数:请确认节点数量取值范围,通过云数据库的售卖规格 [DescribeSpecInfo ](https://cloud.tencent.com/document/product/240/38565)接口返回的参数 MinReplicateSetNodeNum 与 MaxReplicateSetNodeNum 获取。
|
9095
9101
|
:type NodeNum: int
|
@@ -9175,7 +9181,7 @@ class ModifyDBInstanceSpecRequest(AbstractModel):
|
|
9175
9181
|
"""实例变更后mongod的节点数(不包含readonly节点数)。
|
9176
9182
|
- 变更mongod CPU与内存规格时,该参数可以不配置或者输入当前 mongod(不包含readonly) 节点数量。
|
9177
9183
|
- 变更 mongos CPU与内存规格时,该参数可以不配置或者输入当前 mongod(不包含readonly) 节点数量。
|
9178
|
-
- 节点变更时(全部类型),该参数可不配置或输入变更后的 mongod(不包含
|
9184
|
+
- 节点变更时(全部类型),该参数可不配置或输入变更后的 mongod(不包含readonly) 节点数量。
|
9179
9185
|
- 副本集节点数:请确认节点数量取值范围,通过云数据库的售卖规格 [DescribeSpecInfo ](https://cloud.tencent.com/document/product/240/38565)接口返回的参数 MinNodeNum 与 MaxNodeNum 获取。
|
9180
9186
|
- 分片集群每个分片节点数:请确认节点数量取值范围,通过云数据库的售卖规格 [DescribeSpecInfo ](https://cloud.tencent.com/document/product/240/38565)接口返回的参数 MinReplicateSetNodeNum 与 MaxReplicateSetNodeNum 获取。
|
9181
9187
|
:rtype: int
|
@@ -3635,7 +3635,11 @@ class AiAnalysisTaskInput(AbstractModel):
|
|
3635
3635
|
:param _Definition: 视频内容分析模板 ID。
|
3636
3636
|
:type Definition: int
|
3637
3637
|
:param _ExtendedParameter: 扩展参数,其值为序列化的 json字符串。
|
3638
|
-
|
3638
|
+
注意:此参数为定制需求参数,参考如下:
|
3639
|
+
智能檫除:https://cloud.tencent.com/document/product/862/101530
|
3640
|
+
智能拆条:https://cloud.tencent.com/document/product/862/112098
|
3641
|
+
高光集锦:https://cloud.tencent.com/document/product/862/107280
|
3642
|
+
智能横转竖:https://cloud.tencent.com/document/product/862/112112
|
3639
3643
|
注意:此字段可能返回 null,表示取不到有效值。
|
3640
3644
|
:type ExtendedParameter: str
|
3641
3645
|
"""
|
@@ -3656,7 +3660,11 @@ class AiAnalysisTaskInput(AbstractModel):
|
|
3656
3660
|
@property
|
3657
3661
|
def ExtendedParameter(self):
|
3658
3662
|
"""扩展参数,其值为序列化的 json字符串。
|
3659
|
-
|
3663
|
+
注意:此参数为定制需求参数,参考如下:
|
3664
|
+
智能檫除:https://cloud.tencent.com/document/product/862/101530
|
3665
|
+
智能拆条:https://cloud.tencent.com/document/product/862/112098
|
3666
|
+
高光集锦:https://cloud.tencent.com/document/product/862/107280
|
3667
|
+
智能横转竖:https://cloud.tencent.com/document/product/862/112112
|
3660
3668
|
注意:此字段可能返回 null,表示取不到有效值。
|
3661
3669
|
:rtype: str
|
3662
3670
|
"""
|
@@ -29456,6 +29464,9 @@ class DrmInfo(AbstractModel):
|
|
29456
29464
|
r"""
|
29457
29465
|
:param _Type: 加密类型:
|
29458
29466
|
<li> simpleaes: aes-128 加密</li>
|
29467
|
+
<li> widevine</li>
|
29468
|
+
<li> fairplay:Dash不支持fairplay加密</li>
|
29469
|
+
<li> playready</li>
|
29459
29470
|
注意:此字段可能返回 null,表示取不到有效值。
|
29460
29471
|
:type Type: str
|
29461
29472
|
:param _SimpleAesDrm: SimpleAes 加密信息。
|
@@ -29469,6 +29480,9 @@ class DrmInfo(AbstractModel):
|
|
29469
29480
|
def Type(self):
|
29470
29481
|
"""加密类型:
|
29471
29482
|
<li> simpleaes: aes-128 加密</li>
|
29483
|
+
<li> widevine</li>
|
29484
|
+
<li> fairplay:Dash不支持fairplay加密</li>
|
29485
|
+
<li> playready</li>
|
29472
29486
|
注意:此字段可能返回 null,表示取不到有效值。
|
29473
29487
|
:rtype: str
|
29474
29488
|
"""
|
@@ -47703,6 +47717,8 @@ class ProcessMediaRequest(AbstractModel):
|
|
47703
47717
|
<li> Online:实时任务</li>
|
47704
47718
|
<li> Offline:闲时任务,不保证实效性,默认3天内处理完</li>
|
47705
47719
|
:type TaskType: str
|
47720
|
+
:param _ResourceId: 资源ID,需要保证对应资源是开启状态。默认为帐号主资源ID。
|
47721
|
+
:type ResourceId: str
|
47706
47722
|
"""
|
47707
47723
|
self._InputInfo = None
|
47708
47724
|
self._OutputStorage = None
|
@@ -47718,6 +47734,7 @@ class ProcessMediaRequest(AbstractModel):
|
|
47718
47734
|
self._SessionId = None
|
47719
47735
|
self._SessionContext = None
|
47720
47736
|
self._TaskType = None
|
47737
|
+
self._ResourceId = None
|
47721
47738
|
|
47722
47739
|
@property
|
47723
47740
|
def InputInfo(self):
|
@@ -47884,6 +47901,17 @@ class ProcessMediaRequest(AbstractModel):
|
|
47884
47901
|
def TaskType(self, TaskType):
|
47885
47902
|
self._TaskType = TaskType
|
47886
47903
|
|
47904
|
+
@property
|
47905
|
+
def ResourceId(self):
|
47906
|
+
"""资源ID,需要保证对应资源是开启状态。默认为帐号主资源ID。
|
47907
|
+
:rtype: str
|
47908
|
+
"""
|
47909
|
+
return self._ResourceId
|
47910
|
+
|
47911
|
+
@ResourceId.setter
|
47912
|
+
def ResourceId(self, ResourceId):
|
47913
|
+
self._ResourceId = ResourceId
|
47914
|
+
|
47887
47915
|
|
47888
47916
|
def _deserialize(self, params):
|
47889
47917
|
if params.get("InputInfo") is not None:
|
@@ -47916,6 +47944,7 @@ class ProcessMediaRequest(AbstractModel):
|
|
47916
47944
|
self._SessionId = params.get("SessionId")
|
47917
47945
|
self._SessionContext = params.get("SessionContext")
|
47918
47946
|
self._TaskType = params.get("TaskType")
|
47947
|
+
self._ResourceId = params.get("ResourceId")
|
47919
47948
|
memeber_set = set(params.keys())
|
47920
47949
|
for name, value in vars(self).items():
|
47921
47950
|
property_name = name[1:]
|
@@ -7657,6 +7657,160 @@ class PublicAccessRule(AbstractModel):
|
|
7657
7657
|
|
7658
7658
|
|
7659
7659
|
|
7660
|
+
class PublishMessageRequest(AbstractModel):
|
7661
|
+
"""PublishMessage请求参数结构体
|
7662
|
+
|
7663
|
+
"""
|
7664
|
+
|
7665
|
+
def __init__(self):
|
7666
|
+
r"""
|
7667
|
+
:param _InstanceId: 实例ID
|
7668
|
+
:type InstanceId: str
|
7669
|
+
:param _Payload: 消息 payload,需要按 encoding 指定的编码方式进行编码
|
7670
|
+
:type Payload: str
|
7671
|
+
:param _TargetTopic: 消息目的主题,该参数与 TargetClientId 二选一
|
7672
|
+
:type TargetTopic: str
|
7673
|
+
:param _TargetClientId: 消息目的客户端 ID,该参数与 TargetTopic 二选一
|
7674
|
+
:type TargetClientId: str
|
7675
|
+
:param _Encoding: 消息 payload 编码,可选 plain 或 base64,默认为 plain(即不编码)
|
7676
|
+
:type Encoding: str
|
7677
|
+
:param _Qos: 消息的服务质量等级,默认为 1
|
7678
|
+
:type Qos: int
|
7679
|
+
:param _Retain: 是否为保留消息,默认为 false,且仅支持发布到主题的消息设置为 true
|
7680
|
+
:type Retain: bool
|
7681
|
+
"""
|
7682
|
+
self._InstanceId = None
|
7683
|
+
self._Payload = None
|
7684
|
+
self._TargetTopic = None
|
7685
|
+
self._TargetClientId = None
|
7686
|
+
self._Encoding = None
|
7687
|
+
self._Qos = None
|
7688
|
+
self._Retain = None
|
7689
|
+
|
7690
|
+
@property
|
7691
|
+
def InstanceId(self):
|
7692
|
+
"""实例ID
|
7693
|
+
:rtype: str
|
7694
|
+
"""
|
7695
|
+
return self._InstanceId
|
7696
|
+
|
7697
|
+
@InstanceId.setter
|
7698
|
+
def InstanceId(self, InstanceId):
|
7699
|
+
self._InstanceId = InstanceId
|
7700
|
+
|
7701
|
+
@property
|
7702
|
+
def Payload(self):
|
7703
|
+
"""消息 payload,需要按 encoding 指定的编码方式进行编码
|
7704
|
+
:rtype: str
|
7705
|
+
"""
|
7706
|
+
return self._Payload
|
7707
|
+
|
7708
|
+
@Payload.setter
|
7709
|
+
def Payload(self, Payload):
|
7710
|
+
self._Payload = Payload
|
7711
|
+
|
7712
|
+
@property
|
7713
|
+
def TargetTopic(self):
|
7714
|
+
"""消息目的主题,该参数与 TargetClientId 二选一
|
7715
|
+
:rtype: str
|
7716
|
+
"""
|
7717
|
+
return self._TargetTopic
|
7718
|
+
|
7719
|
+
@TargetTopic.setter
|
7720
|
+
def TargetTopic(self, TargetTopic):
|
7721
|
+
self._TargetTopic = TargetTopic
|
7722
|
+
|
7723
|
+
@property
|
7724
|
+
def TargetClientId(self):
|
7725
|
+
"""消息目的客户端 ID,该参数与 TargetTopic 二选一
|
7726
|
+
:rtype: str
|
7727
|
+
"""
|
7728
|
+
return self._TargetClientId
|
7729
|
+
|
7730
|
+
@TargetClientId.setter
|
7731
|
+
def TargetClientId(self, TargetClientId):
|
7732
|
+
self._TargetClientId = TargetClientId
|
7733
|
+
|
7734
|
+
@property
|
7735
|
+
def Encoding(self):
|
7736
|
+
"""消息 payload 编码,可选 plain 或 base64,默认为 plain(即不编码)
|
7737
|
+
:rtype: str
|
7738
|
+
"""
|
7739
|
+
return self._Encoding
|
7740
|
+
|
7741
|
+
@Encoding.setter
|
7742
|
+
def Encoding(self, Encoding):
|
7743
|
+
self._Encoding = Encoding
|
7744
|
+
|
7745
|
+
@property
|
7746
|
+
def Qos(self):
|
7747
|
+
"""消息的服务质量等级,默认为 1
|
7748
|
+
:rtype: int
|
7749
|
+
"""
|
7750
|
+
return self._Qos
|
7751
|
+
|
7752
|
+
@Qos.setter
|
7753
|
+
def Qos(self, Qos):
|
7754
|
+
self._Qos = Qos
|
7755
|
+
|
7756
|
+
@property
|
7757
|
+
def Retain(self):
|
7758
|
+
"""是否为保留消息,默认为 false,且仅支持发布到主题的消息设置为 true
|
7759
|
+
:rtype: bool
|
7760
|
+
"""
|
7761
|
+
return self._Retain
|
7762
|
+
|
7763
|
+
@Retain.setter
|
7764
|
+
def Retain(self, Retain):
|
7765
|
+
self._Retain = Retain
|
7766
|
+
|
7767
|
+
|
7768
|
+
def _deserialize(self, params):
|
7769
|
+
self._InstanceId = params.get("InstanceId")
|
7770
|
+
self._Payload = params.get("Payload")
|
7771
|
+
self._TargetTopic = params.get("TargetTopic")
|
7772
|
+
self._TargetClientId = params.get("TargetClientId")
|
7773
|
+
self._Encoding = params.get("Encoding")
|
7774
|
+
self._Qos = params.get("Qos")
|
7775
|
+
self._Retain = params.get("Retain")
|
7776
|
+
memeber_set = set(params.keys())
|
7777
|
+
for name, value in vars(self).items():
|
7778
|
+
property_name = name[1:]
|
7779
|
+
if property_name in memeber_set:
|
7780
|
+
memeber_set.remove(property_name)
|
7781
|
+
if len(memeber_set) > 0:
|
7782
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
7783
|
+
|
7784
|
+
|
7785
|
+
|
7786
|
+
class PublishMessageResponse(AbstractModel):
|
7787
|
+
"""PublishMessage返回参数结构体
|
7788
|
+
|
7789
|
+
"""
|
7790
|
+
|
7791
|
+
def __init__(self):
|
7792
|
+
r"""
|
7793
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7794
|
+
:type RequestId: str
|
7795
|
+
"""
|
7796
|
+
self._RequestId = None
|
7797
|
+
|
7798
|
+
@property
|
7799
|
+
def RequestId(self):
|
7800
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7801
|
+
:rtype: str
|
7802
|
+
"""
|
7803
|
+
return self._RequestId
|
7804
|
+
|
7805
|
+
@RequestId.setter
|
7806
|
+
def RequestId(self, RequestId):
|
7807
|
+
self._RequestId = RequestId
|
7808
|
+
|
7809
|
+
|
7810
|
+
def _deserialize(self, params):
|
7811
|
+
self._RequestId = params.get("RequestId")
|
7812
|
+
|
7813
|
+
|
7660
7814
|
class RegisterCaCertificateRequest(AbstractModel):
|
7661
7815
|
"""RegisterCaCertificate请求参数结构体
|
7662
7816
|
|