tencentcloud-sdk-python 3.0.1284__py2.py3-none-any.whl → 3.0.1285__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/apm/v20210622/models.py +31 -59
- tencentcloud/billing/v20180709/models.py +8 -0
- tencentcloud/ccc/v20200210/models.py +15 -0
- tencentcloud/cdb/v20170320/cdb_client.py +23 -0
- tencentcloud/cdb/v20170320/models.py +79 -0
- tencentcloud/cfg/v20210820/models.py +30 -0
- tencentcloud/cloudapp/v20220530/models.py +15 -0
- tencentcloud/cloudaudit/v20190319/models.py +14 -0
- tencentcloud/cvm/v20170312/models.py +6 -6
- tencentcloud/cynosdb/v20190107/cynosdb_client.py +23 -0
- tencentcloud/cynosdb/v20190107/models.py +186 -0
- tencentcloud/domain/v20180808/errorcodes.py +3 -0
- tencentcloud/domain/v20180808/models.py +2 -2
- tencentcloud/ess/v20201111/ess_client.py +23 -0
- tencentcloud/ess/v20201111/models.py +108 -0
- tencentcloud/essbasic/v20210526/models.py +8 -2
- tencentcloud/gwlb/v20240906/models.py +48 -24
- tencentcloud/hunyuan/v20230901/models.py +2 -2
- tencentcloud/lcic/v20220817/models.py +6 -4
- tencentcloud/live/v20180801/models.py +8 -8
- tencentcloud/mongodb/v20180408/errorcodes.py +15 -0
- tencentcloud/mongodb/v20180408/models.py +27 -12
- tencentcloud/mongodb/v20180408/mongodb_client.py +0 -1
- tencentcloud/mongodb/v20190725/models.py +81 -58
- tencentcloud/mongodb/v20190725/mongodb_client.py +2 -2
- tencentcloud/vpc/v20170312/models.py +30 -0
- tencentcloud/vrs/v20200824/models.py +2 -2
- tencentcloud/vrs/v20200824/vrs_client.py +2 -2
- tencentcloud/wedata/v20210820/models.py +813 -2
- {tencentcloud_sdk_python-3.0.1284.dist-info → tencentcloud_sdk_python-3.0.1285.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1284.dist-info → tencentcloud_sdk_python-3.0.1285.dist-info}/RECORD +35 -35
- {tencentcloud_sdk_python-3.0.1284.dist-info → tencentcloud_sdk_python-3.0.1285.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1284.dist-info → tencentcloud_sdk_python-3.0.1285.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1284.dist-info → tencentcloud_sdk_python-3.0.1285.dist-info}/top_level.txt +0 -0
@@ -14987,6 +14987,192 @@ class DescribeChangedParamsAfterUpgradeResponse(AbstractModel):
|
|
14987
14987
|
self._RequestId = params.get("RequestId")
|
14988
14988
|
|
14989
14989
|
|
14990
|
+
class DescribeClusterDatabaseTablesRequest(AbstractModel):
|
14991
|
+
"""DescribeClusterDatabaseTables请求参数结构体
|
14992
|
+
|
14993
|
+
"""
|
14994
|
+
|
14995
|
+
def __init__(self):
|
14996
|
+
r"""
|
14997
|
+
:param _ClusterId: 集群id
|
14998
|
+
:type ClusterId: str
|
14999
|
+
:param _Db: 数据库名
|
15000
|
+
:type Db: str
|
15001
|
+
:param _Offset: 偏移
|
15002
|
+
:type Offset: int
|
15003
|
+
:param _Limit: 个数
|
15004
|
+
:type Limit: int
|
15005
|
+
:param _TableType: 数据表类型。
|
15006
|
+
"view"表示只返回 view,"base_table" 表示只返回基本表,"all" 表示返回 view 和表。默认为 all。
|
15007
|
+
:type TableType: str
|
15008
|
+
"""
|
15009
|
+
self._ClusterId = None
|
15010
|
+
self._Db = None
|
15011
|
+
self._Offset = None
|
15012
|
+
self._Limit = None
|
15013
|
+
self._TableType = None
|
15014
|
+
|
15015
|
+
@property
|
15016
|
+
def ClusterId(self):
|
15017
|
+
"""集群id
|
15018
|
+
:rtype: str
|
15019
|
+
"""
|
15020
|
+
return self._ClusterId
|
15021
|
+
|
15022
|
+
@ClusterId.setter
|
15023
|
+
def ClusterId(self, ClusterId):
|
15024
|
+
self._ClusterId = ClusterId
|
15025
|
+
|
15026
|
+
@property
|
15027
|
+
def Db(self):
|
15028
|
+
"""数据库名
|
15029
|
+
:rtype: str
|
15030
|
+
"""
|
15031
|
+
return self._Db
|
15032
|
+
|
15033
|
+
@Db.setter
|
15034
|
+
def Db(self, Db):
|
15035
|
+
self._Db = Db
|
15036
|
+
|
15037
|
+
@property
|
15038
|
+
def Offset(self):
|
15039
|
+
"""偏移
|
15040
|
+
:rtype: int
|
15041
|
+
"""
|
15042
|
+
return self._Offset
|
15043
|
+
|
15044
|
+
@Offset.setter
|
15045
|
+
def Offset(self, Offset):
|
15046
|
+
self._Offset = Offset
|
15047
|
+
|
15048
|
+
@property
|
15049
|
+
def Limit(self):
|
15050
|
+
"""个数
|
15051
|
+
:rtype: int
|
15052
|
+
"""
|
15053
|
+
return self._Limit
|
15054
|
+
|
15055
|
+
@Limit.setter
|
15056
|
+
def Limit(self, Limit):
|
15057
|
+
self._Limit = Limit
|
15058
|
+
|
15059
|
+
@property
|
15060
|
+
def TableType(self):
|
15061
|
+
"""数据表类型。
|
15062
|
+
"view"表示只返回 view,"base_table" 表示只返回基本表,"all" 表示返回 view 和表。默认为 all。
|
15063
|
+
:rtype: str
|
15064
|
+
"""
|
15065
|
+
return self._TableType
|
15066
|
+
|
15067
|
+
@TableType.setter
|
15068
|
+
def TableType(self, TableType):
|
15069
|
+
self._TableType = TableType
|
15070
|
+
|
15071
|
+
|
15072
|
+
def _deserialize(self, params):
|
15073
|
+
self._ClusterId = params.get("ClusterId")
|
15074
|
+
self._Db = params.get("Db")
|
15075
|
+
self._Offset = params.get("Offset")
|
15076
|
+
self._Limit = params.get("Limit")
|
15077
|
+
self._TableType = params.get("TableType")
|
15078
|
+
memeber_set = set(params.keys())
|
15079
|
+
for name, value in vars(self).items():
|
15080
|
+
property_name = name[1:]
|
15081
|
+
if property_name in memeber_set:
|
15082
|
+
memeber_set.remove(property_name)
|
15083
|
+
if len(memeber_set) > 0:
|
15084
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
15085
|
+
|
15086
|
+
|
15087
|
+
|
15088
|
+
class DescribeClusterDatabaseTablesResponse(AbstractModel):
|
15089
|
+
"""DescribeClusterDatabaseTables返回参数结构体
|
15090
|
+
|
15091
|
+
"""
|
15092
|
+
|
15093
|
+
def __init__(self):
|
15094
|
+
r"""
|
15095
|
+
:param _TotalCount: 总条数
|
15096
|
+
:type TotalCount: int
|
15097
|
+
:param _Offset: 分页偏移
|
15098
|
+
:type Offset: int
|
15099
|
+
:param _Limit: 分页限制数量
|
15100
|
+
:type Limit: int
|
15101
|
+
:param _Tables: 数据库表列表
|
15102
|
+
:type Tables: list of str
|
15103
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
15104
|
+
:type RequestId: str
|
15105
|
+
"""
|
15106
|
+
self._TotalCount = None
|
15107
|
+
self._Offset = None
|
15108
|
+
self._Limit = None
|
15109
|
+
self._Tables = None
|
15110
|
+
self._RequestId = None
|
15111
|
+
|
15112
|
+
@property
|
15113
|
+
def TotalCount(self):
|
15114
|
+
"""总条数
|
15115
|
+
:rtype: int
|
15116
|
+
"""
|
15117
|
+
return self._TotalCount
|
15118
|
+
|
15119
|
+
@TotalCount.setter
|
15120
|
+
def TotalCount(self, TotalCount):
|
15121
|
+
self._TotalCount = TotalCount
|
15122
|
+
|
15123
|
+
@property
|
15124
|
+
def Offset(self):
|
15125
|
+
"""分页偏移
|
15126
|
+
:rtype: int
|
15127
|
+
"""
|
15128
|
+
return self._Offset
|
15129
|
+
|
15130
|
+
@Offset.setter
|
15131
|
+
def Offset(self, Offset):
|
15132
|
+
self._Offset = Offset
|
15133
|
+
|
15134
|
+
@property
|
15135
|
+
def Limit(self):
|
15136
|
+
"""分页限制数量
|
15137
|
+
:rtype: int
|
15138
|
+
"""
|
15139
|
+
return self._Limit
|
15140
|
+
|
15141
|
+
@Limit.setter
|
15142
|
+
def Limit(self, Limit):
|
15143
|
+
self._Limit = Limit
|
15144
|
+
|
15145
|
+
@property
|
15146
|
+
def Tables(self):
|
15147
|
+
"""数据库表列表
|
15148
|
+
:rtype: list of str
|
15149
|
+
"""
|
15150
|
+
return self._Tables
|
15151
|
+
|
15152
|
+
@Tables.setter
|
15153
|
+
def Tables(self, Tables):
|
15154
|
+
self._Tables = Tables
|
15155
|
+
|
15156
|
+
@property
|
15157
|
+
def RequestId(self):
|
15158
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
15159
|
+
:rtype: str
|
15160
|
+
"""
|
15161
|
+
return self._RequestId
|
15162
|
+
|
15163
|
+
@RequestId.setter
|
15164
|
+
def RequestId(self, RequestId):
|
15165
|
+
self._RequestId = RequestId
|
15166
|
+
|
15167
|
+
|
15168
|
+
def _deserialize(self, params):
|
15169
|
+
self._TotalCount = params.get("TotalCount")
|
15170
|
+
self._Offset = params.get("Offset")
|
15171
|
+
self._Limit = params.get("Limit")
|
15172
|
+
self._Tables = params.get("Tables")
|
15173
|
+
self._RequestId = params.get("RequestId")
|
15174
|
+
|
15175
|
+
|
14990
15176
|
class DescribeClusterDatabasesRequest(AbstractModel):
|
14991
15177
|
"""DescribeClusterDatabases请求参数结构体
|
14992
15178
|
|
@@ -71,6 +71,9 @@ FAILEDOPERATION_GETDOMAINPRICEFAILED = 'FailedOperation.GetDomainPriceFailed'
|
|
71
71
|
# 域名过户失败。
|
72
72
|
FAILEDOPERATION_MODIFYDOMAINOWNERFAILED = 'FailedOperation.ModifyDomainOwnerFailed'
|
73
73
|
|
74
|
+
# 当前域名正在注册中无法进行账号间转移,请等待注册完成后再操作
|
75
|
+
FAILEDOPERATION_MODIFYDOMAINOWNERREGISTERDOING = 'FailedOperation.ModifyDomainOwnerRegisterDoing'
|
76
|
+
|
74
77
|
# 权限不足。
|
75
78
|
FAILEDOPERATION_PERMISSIONDENIED = 'FailedOperation.PermissionDenied'
|
76
79
|
|
@@ -6577,14 +6577,14 @@ class DescribeTemplateRequest(AbstractModel):
|
|
6577
6577
|
|
6578
6578
|
def __init__(self):
|
6579
6579
|
r"""
|
6580
|
-
:param _TemplateId: 模板ID
|
6580
|
+
:param _TemplateId: 模板ID(模板列表接口可获取)
|
6581
6581
|
:type TemplateId: str
|
6582
6582
|
"""
|
6583
6583
|
self._TemplateId = None
|
6584
6584
|
|
6585
6585
|
@property
|
6586
6586
|
def TemplateId(self):
|
6587
|
-
"""模板ID
|
6587
|
+
"""模板ID(模板列表接口可获取)
|
6588
6588
|
:rtype: str
|
6589
6589
|
"""
|
6590
6590
|
return self._TemplateId
|
@@ -2506,6 +2506,29 @@ class EssClient(AbstractClient):
|
|
2506
2506
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2507
2507
|
|
2508
2508
|
|
2509
|
+
def DescribeOrganizationVerifyStatus(self, request):
|
2510
|
+
"""仅且仅能查询企业本身在电子签的认证状态
|
2511
|
+
|
2512
|
+
:param request: Request instance for DescribeOrganizationVerifyStatus.
|
2513
|
+
:type request: :class:`tencentcloud.ess.v20201111.models.DescribeOrganizationVerifyStatusRequest`
|
2514
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.DescribeOrganizationVerifyStatusResponse`
|
2515
|
+
|
2516
|
+
"""
|
2517
|
+
try:
|
2518
|
+
params = request._serialize()
|
2519
|
+
headers = request.headers
|
2520
|
+
body = self.call("DescribeOrganizationVerifyStatus", params, headers=headers)
|
2521
|
+
response = json.loads(body)
|
2522
|
+
model = models.DescribeOrganizationVerifyStatusResponse()
|
2523
|
+
model._deserialize(response["Response"])
|
2524
|
+
return model
|
2525
|
+
except Exception as e:
|
2526
|
+
if isinstance(e, TencentCloudSDKException):
|
2527
|
+
raise
|
2528
|
+
else:
|
2529
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2530
|
+
|
2531
|
+
|
2509
2532
|
def DescribePersonCertificate(self, request):
|
2510
2533
|
"""此接口(DescribePersonCertificate)用于查询个人数字证书信息。<br />注:`1.目前仅用于查询开通了医疗自动签署功能的个人数字证书。`<br />`2.调用此接口需要开通白名单,使用前请联系相关人员开通白名单。`
|
2511
2534
|
|
@@ -20378,6 +20378,114 @@ class DescribeOrganizationSealsResponse(AbstractModel):
|
|
20378
20378
|
self._RequestId = params.get("RequestId")
|
20379
20379
|
|
20380
20380
|
|
20381
|
+
class DescribeOrganizationVerifyStatusRequest(AbstractModel):
|
20382
|
+
"""DescribeOrganizationVerifyStatus请求参数结构体
|
20383
|
+
|
20384
|
+
"""
|
20385
|
+
|
20386
|
+
def __init__(self):
|
20387
|
+
r"""
|
20388
|
+
:param _Operator: 执行本接口操作的员工信息。使用此接口时,必须填写userId。 支持填入集团子公司经办人 userId 代发合同。 注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
20389
|
+
:type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
20390
|
+
:param _Agent: 代理企业和员工的信息。 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
20391
|
+
:type Agent: :class:`tencentcloud.ess.v20201111.models.Agent`
|
20392
|
+
"""
|
20393
|
+
self._Operator = None
|
20394
|
+
self._Agent = None
|
20395
|
+
|
20396
|
+
@property
|
20397
|
+
def Operator(self):
|
20398
|
+
"""执行本接口操作的员工信息。使用此接口时,必须填写userId。 支持填入集团子公司经办人 userId 代发合同。 注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
20399
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
20400
|
+
"""
|
20401
|
+
return self._Operator
|
20402
|
+
|
20403
|
+
@Operator.setter
|
20404
|
+
def Operator(self, Operator):
|
20405
|
+
self._Operator = Operator
|
20406
|
+
|
20407
|
+
@property
|
20408
|
+
def Agent(self):
|
20409
|
+
"""代理企业和员工的信息。 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
20410
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.Agent`
|
20411
|
+
"""
|
20412
|
+
return self._Agent
|
20413
|
+
|
20414
|
+
@Agent.setter
|
20415
|
+
def Agent(self, Agent):
|
20416
|
+
self._Agent = Agent
|
20417
|
+
|
20418
|
+
|
20419
|
+
def _deserialize(self, params):
|
20420
|
+
if params.get("Operator") is not None:
|
20421
|
+
self._Operator = UserInfo()
|
20422
|
+
self._Operator._deserialize(params.get("Operator"))
|
20423
|
+
if params.get("Agent") is not None:
|
20424
|
+
self._Agent = Agent()
|
20425
|
+
self._Agent._deserialize(params.get("Agent"))
|
20426
|
+
memeber_set = set(params.keys())
|
20427
|
+
for name, value in vars(self).items():
|
20428
|
+
property_name = name[1:]
|
20429
|
+
if property_name in memeber_set:
|
20430
|
+
memeber_set.remove(property_name)
|
20431
|
+
if len(memeber_set) > 0:
|
20432
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
20433
|
+
|
20434
|
+
|
20435
|
+
|
20436
|
+
class DescribeOrganizationVerifyStatusResponse(AbstractModel):
|
20437
|
+
"""DescribeOrganizationVerifyStatus返回参数结构体
|
20438
|
+
|
20439
|
+
"""
|
20440
|
+
|
20441
|
+
def __init__(self):
|
20442
|
+
r"""
|
20443
|
+
:param _VerifyStatus: 当前企业认证状态
|
20444
|
+
<ul>
|
20445
|
+
<li> <b>0 </b>:未认证</li>
|
20446
|
+
<li> <b>1 </b> : 认证中</li>
|
20447
|
+
<li> <b>2 </b> : 已认证</li>
|
20448
|
+
</ul>
|
20449
|
+
:type VerifyStatus: int
|
20450
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
20451
|
+
:type RequestId: str
|
20452
|
+
"""
|
20453
|
+
self._VerifyStatus = None
|
20454
|
+
self._RequestId = None
|
20455
|
+
|
20456
|
+
@property
|
20457
|
+
def VerifyStatus(self):
|
20458
|
+
"""当前企业认证状态
|
20459
|
+
<ul>
|
20460
|
+
<li> <b>0 </b>:未认证</li>
|
20461
|
+
<li> <b>1 </b> : 认证中</li>
|
20462
|
+
<li> <b>2 </b> : 已认证</li>
|
20463
|
+
</ul>
|
20464
|
+
:rtype: int
|
20465
|
+
"""
|
20466
|
+
return self._VerifyStatus
|
20467
|
+
|
20468
|
+
@VerifyStatus.setter
|
20469
|
+
def VerifyStatus(self, VerifyStatus):
|
20470
|
+
self._VerifyStatus = VerifyStatus
|
20471
|
+
|
20472
|
+
@property
|
20473
|
+
def RequestId(self):
|
20474
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
20475
|
+
:rtype: str
|
20476
|
+
"""
|
20477
|
+
return self._RequestId
|
20478
|
+
|
20479
|
+
@RequestId.setter
|
20480
|
+
def RequestId(self, RequestId):
|
20481
|
+
self._RequestId = RequestId
|
20482
|
+
|
20483
|
+
|
20484
|
+
def _deserialize(self, params):
|
20485
|
+
self._VerifyStatus = params.get("VerifyStatus")
|
20486
|
+
self._RequestId = params.get("RequestId")
|
20487
|
+
|
20488
|
+
|
20381
20489
|
class DescribePersonCertificateRequest(AbstractModel):
|
20382
20490
|
"""DescribePersonCertificate请求参数结构体
|
20383
20491
|
|
@@ -285,7 +285,10 @@ class ApproverOption(AbstractModel):
|
|
285
285
|
:type NoRefuse: bool
|
286
286
|
:param _NoTransfer: 是否可以转发 默认false-可以转发 true-不可以转发
|
287
287
|
:type NoTransfer: bool
|
288
|
-
:param _HideOneKeySign:
|
288
|
+
:param _HideOneKeySign: 当签署方有多个签署区时候,是否隐藏一键所有的签署区
|
289
|
+
|
290
|
+
false:(默认)不隐藏
|
291
|
+
true:隐藏,每个签署区要单独选择印章或者签名
|
289
292
|
:type HideOneKeySign: bool
|
290
293
|
:param _FillType: 签署人信息补充类型,默认无需补充。
|
291
294
|
|
@@ -334,7 +337,10 @@ class ApproverOption(AbstractModel):
|
|
334
337
|
|
335
338
|
@property
|
336
339
|
def HideOneKeySign(self):
|
337
|
-
"""
|
340
|
+
"""当签署方有多个签署区时候,是否隐藏一键所有的签署区
|
341
|
+
|
342
|
+
false:(默认)不隐藏
|
343
|
+
true:隐藏,每个签署区要单独选择印章或者签名
|
338
344
|
:rtype: bool
|
339
345
|
"""
|
340
346
|
return self._HideOneKeySign
|
@@ -145,7 +145,7 @@ class CreateGatewayLoadBalancerRequest(AbstractModel):
|
|
145
145
|
|
146
146
|
def __init__(self):
|
147
147
|
r"""
|
148
|
-
:param _VpcId: 网关负载均衡后端目标设备所属的私有网络 ID,如vpc-
|
148
|
+
:param _VpcId: 网关负载均衡后端目标设备所属的私有网络 ID,如vpc-azd4dt1c,可以通过 [DescribeVpcs](https://cloud.tencent.com/document/product/215/15778) 接口获取。
|
149
149
|
:type VpcId: str
|
150
150
|
:param _SubnetId: 网关负载均衡后端目标设备所属的私有网络的子网ID。
|
151
151
|
:type SubnetId: str
|
@@ -167,7 +167,7 @@ class CreateGatewayLoadBalancerRequest(AbstractModel):
|
|
167
167
|
|
168
168
|
@property
|
169
169
|
def VpcId(self):
|
170
|
-
"""网关负载均衡后端目标设备所属的私有网络 ID,如vpc-
|
170
|
+
"""网关负载均衡后端目标设备所属的私有网络 ID,如vpc-azd4dt1c,可以通过 [DescribeVpcs](https://cloud.tencent.com/document/product/215/15778) 接口获取。
|
171
171
|
:rtype: str
|
172
172
|
"""
|
173
173
|
return self._VpcId
|
@@ -329,13 +329,13 @@ class CreateTargetGroupRequest(AbstractModel):
|
|
329
329
|
:type TargetGroupName: str
|
330
330
|
:param _VpcId: 目标组的vpcid属性,不填则使用默认vpc
|
331
331
|
:type VpcId: str
|
332
|
-
:param _Port: 目标组的默认端口, 后续添加服务器时可使用该默认端口。Port和TargetGroupInstances.N中的port
|
332
|
+
:param _Port: 目标组的默认端口, 后续添加服务器时可使用该默认端口。Port和TargetGroupInstances.N中的port二者必填其一。仅支持6081。
|
333
333
|
:type Port: int
|
334
334
|
:param _TargetGroupInstances: 目标组绑定的后端服务器
|
335
335
|
:type TargetGroupInstances: list of TargetGroupInstance
|
336
336
|
:param _Protocol: 网关负载均衡目标组协议。
|
337
337
|
- TENCENT_GENEVE :GENEVE 标准协议
|
338
|
-
- AWS_GENEVE:GENEVE
|
338
|
+
- AWS_GENEVE:GENEVE 兼容协议
|
339
339
|
:type Protocol: str
|
340
340
|
:param _HealthCheck: 健康检查设置。
|
341
341
|
:type HealthCheck: :class:`tencentcloud.gwlb.v20240906.models.TargetGroupHealthCheck`
|
@@ -378,7 +378,7 @@ class CreateTargetGroupRequest(AbstractModel):
|
|
378
378
|
|
379
379
|
@property
|
380
380
|
def Port(self):
|
381
|
-
"""目标组的默认端口, 后续添加服务器时可使用该默认端口。Port和TargetGroupInstances.N中的port
|
381
|
+
"""目标组的默认端口, 后续添加服务器时可使用该默认端口。Port和TargetGroupInstances.N中的port二者必填其一。仅支持6081。
|
382
382
|
:rtype: int
|
383
383
|
"""
|
384
384
|
return self._Port
|
@@ -402,7 +402,7 @@ class CreateTargetGroupRequest(AbstractModel):
|
|
402
402
|
def Protocol(self):
|
403
403
|
"""网关负载均衡目标组协议。
|
404
404
|
- TENCENT_GENEVE :GENEVE 标准协议
|
405
|
-
- AWS_GENEVE:GENEVE
|
405
|
+
- AWS_GENEVE:GENEVE 兼容协议
|
406
406
|
:rtype: str
|
407
407
|
"""
|
408
408
|
return self._Protocol
|
@@ -1006,6 +1006,10 @@ class DescribeTargetGroupInstancesRequest(AbstractModel):
|
|
1006
1006
|
def __init__(self):
|
1007
1007
|
r"""
|
1008
1008
|
:param _Filters: 过滤条件,当前仅支持TargetGroupId,BindIP,InstanceId过滤。
|
1009
|
+
|
1010
|
+
- TargetGroupId - String - 是否必填:否 - (过滤条件)目标组ID,如“lbtg-5xunivs0”。
|
1011
|
+
- BindIP - String - 是否必填:否 - (过滤条件)目标组绑定实例的IP地址,如“10.1.1.1”
|
1012
|
+
- InstanceId - String - 是否必填:否 - (过滤条件)目标组绑定实例的名称,如“ins_name”
|
1009
1013
|
:type Filters: list of Filter
|
1010
1014
|
:param _Limit: 显示数量限制,默认20。
|
1011
1015
|
:type Limit: int
|
@@ -1019,6 +1023,10 @@ class DescribeTargetGroupInstancesRequest(AbstractModel):
|
|
1019
1023
|
@property
|
1020
1024
|
def Filters(self):
|
1021
1025
|
"""过滤条件,当前仅支持TargetGroupId,BindIP,InstanceId过滤。
|
1026
|
+
|
1027
|
+
- TargetGroupId - String - 是否必填:否 - (过滤条件)目标组ID,如“lbtg-5xunivs0”。
|
1028
|
+
- BindIP - String - 是否必填:否 - (过滤条件)目标组绑定实例的IP地址,如“10.1.1.1”
|
1029
|
+
- InstanceId - String - 是否必填:否 - (过滤条件)目标组绑定实例的名称,如“ins_name”
|
1022
1030
|
:rtype: list of Filter
|
1023
1031
|
"""
|
1024
1032
|
return self._Filters
|
@@ -1156,7 +1164,10 @@ class DescribeTargetGroupListRequest(AbstractModel):
|
|
1156
1164
|
r"""
|
1157
1165
|
:param _TargetGroupIds: 目标组ID数组。
|
1158
1166
|
:type TargetGroupIds: list of str
|
1159
|
-
:param _Filters:
|
1167
|
+
:param _Filters: 过滤条件数组。
|
1168
|
+
|
1169
|
+
- TargetGroupVpcId - String - 是否必填:否 - (过滤条件)按照目标组所属的私有网络过滤,如“vpc-bhqk****”。
|
1170
|
+
- TargetGroupName - String - 是否必填:否 - (过滤条件)按照目标组的名称过滤,如“tg_name”
|
1160
1171
|
:type Filters: list of Filter
|
1161
1172
|
:param _Offset: 显示的偏移起始量。
|
1162
1173
|
:type Offset: int
|
@@ -1181,7 +1192,10 @@ class DescribeTargetGroupListRequest(AbstractModel):
|
|
1181
1192
|
|
1182
1193
|
@property
|
1183
1194
|
def Filters(self):
|
1184
|
-
"""
|
1195
|
+
"""过滤条件数组。
|
1196
|
+
|
1197
|
+
- TargetGroupVpcId - String - 是否必填:否 - (过滤条件)按照目标组所属的私有网络过滤,如“vpc-bhqk****”。
|
1198
|
+
- TargetGroupName - String - 是否必填:否 - (过滤条件)按照目标组的名称过滤,如“tg_name”
|
1185
1199
|
:rtype: list of Filter
|
1186
1200
|
"""
|
1187
1201
|
return self._Filters
|
@@ -1309,7 +1323,10 @@ class DescribeTargetGroupsRequest(AbstractModel):
|
|
1309
1323
|
:type Limit: int
|
1310
1324
|
:param _Offset: 显示的偏移起始量。
|
1311
1325
|
:type Offset: int
|
1312
|
-
:param _Filters:
|
1326
|
+
:param _Filters: 过滤条件数组。
|
1327
|
+
|
1328
|
+
- TargetGroupVpcId - String - 是否必填:否 - (过滤条件)按照目标组所属的私有网络过滤,如“vpc-bhqk****”。
|
1329
|
+
- TargetGroupName - String - 是否必填:否 - (过滤条件)按照目标组的名称过滤,如“tg_name”
|
1313
1330
|
:type Filters: list of Filter
|
1314
1331
|
"""
|
1315
1332
|
self._TargetGroupIds = None
|
@@ -1352,7 +1369,10 @@ class DescribeTargetGroupsRequest(AbstractModel):
|
|
1352
1369
|
|
1353
1370
|
@property
|
1354
1371
|
def Filters(self):
|
1355
|
-
"""
|
1372
|
+
"""过滤条件数组。
|
1373
|
+
|
1374
|
+
- TargetGroupVpcId - String - 是否必填:否 - (过滤条件)按照目标组所属的私有网络过滤,如“vpc-bhqk****”。
|
1375
|
+
- TargetGroupName - String - 是否必填:否 - (过滤条件)按照目标组的名称过滤,如“tg_name”
|
1356
1376
|
:rtype: list of Filter
|
1357
1377
|
"""
|
1358
1378
|
return self._Filters
|
@@ -2653,7 +2673,7 @@ class TargetGroupBackend(AbstractModel):
|
|
2653
2673
|
:type InstanceId: str
|
2654
2674
|
:param _Port: 后端服务的监听端口
|
2655
2675
|
:type Port: int
|
2656
|
-
:param _Weight:
|
2676
|
+
:param _Weight: 后端服务的转发权重,取值为0或16
|
2657
2677
|
:type Weight: int
|
2658
2678
|
:param _PublicIpAddresses: 后端服务的外网 IP
|
2659
2679
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -2732,7 +2752,7 @@ class TargetGroupBackend(AbstractModel):
|
|
2732
2752
|
|
2733
2753
|
@property
|
2734
2754
|
def Weight(self):
|
2735
|
-
"""
|
2755
|
+
"""后端服务的转发权重,取值为0或16
|
2736
2756
|
:rtype: int
|
2737
2757
|
"""
|
2738
2758
|
return self._Weight
|
@@ -2845,10 +2865,10 @@ class TargetGroupHealthCheck(AbstractModel):
|
|
2845
2865
|
r"""
|
2846
2866
|
:param _HealthSwitch: 是否开启健康检查。
|
2847
2867
|
:type HealthSwitch: bool
|
2848
|
-
:param _Protocol: 健康检查使用的协议。支持
|
2868
|
+
:param _Protocol: 健康检查使用的协议。支持PING和TCP两种方式,默认为PING。
|
2849
2869
|
|
2850
|
-
-
|
2851
|
-
-
|
2870
|
+
- icmp: 使用PING的方式进行健康检查
|
2871
|
+
- tcp: 使用TCP连接的方式进行健康检查
|
2852
2872
|
:type Protocol: str
|
2853
2873
|
:param _Port: 健康检查端口,探测协议为tcp时,该参数必填。
|
2854
2874
|
|
@@ -2883,10 +2903,10 @@ class TargetGroupHealthCheck(AbstractModel):
|
|
2883
2903
|
|
2884
2904
|
@property
|
2885
2905
|
def Protocol(self):
|
2886
|
-
"""健康检查使用的协议。支持
|
2906
|
+
"""健康检查使用的协议。支持PING和TCP两种方式,默认为PING。
|
2887
2907
|
|
2888
|
-
-
|
2889
|
-
-
|
2908
|
+
- icmp: 使用PING的方式进行健康检查
|
2909
|
+
- tcp: 使用TCP连接的方式进行健康检查
|
2890
2910
|
:rtype: str
|
2891
2911
|
"""
|
2892
2912
|
return self._Protocol
|
@@ -2993,11 +3013,13 @@ class TargetGroupInfo(AbstractModel):
|
|
2993
3013
|
:param _AssociatedRule: 关联到的规则数组。在DescribeTargetGroupList接口调用时无法获取到该参数。
|
2994
3014
|
注意:此字段可能返回 null,表示取不到有效值。
|
2995
3015
|
:type AssociatedRule: list of AssociationItem
|
2996
|
-
:param _Protocol:
|
3016
|
+
:param _Protocol: 网关负载均衡目标组协议。
|
3017
|
+
- tencent_geneve :GENEVE 标准协议
|
3018
|
+
- aws_geneve:GENEVE 兼容协议
|
2997
3019
|
注意:此字段可能返回 null,表示取不到有效值。
|
2998
3020
|
:type Protocol: str
|
2999
|
-
:param _ScheduleAlgorithm:
|
3000
|
-
|
3021
|
+
:param _ScheduleAlgorithm: 均衡算法。
|
3022
|
+
- ip_hash_3_elastic:弹性哈希
|
3001
3023
|
注意:此字段可能返回 null,表示取不到有效值。
|
3002
3024
|
:type ScheduleAlgorithm: str
|
3003
3025
|
:param _HealthCheck: 健康检查详情。
|
@@ -3108,7 +3130,9 @@ ip_hash_3:弹性哈希
|
|
3108
3130
|
|
3109
3131
|
@property
|
3110
3132
|
def Protocol(self):
|
3111
|
-
"""
|
3133
|
+
"""网关负载均衡目标组协议。
|
3134
|
+
- tencent_geneve :GENEVE 标准协议
|
3135
|
+
- aws_geneve:GENEVE 兼容协议
|
3112
3136
|
注意:此字段可能返回 null,表示取不到有效值。
|
3113
3137
|
:rtype: str
|
3114
3138
|
"""
|
@@ -3120,8 +3144,8 @@ ip_hash_3:弹性哈希
|
|
3120
3144
|
|
3121
3145
|
@property
|
3122
3146
|
def ScheduleAlgorithm(self):
|
3123
|
-
"""
|
3124
|
-
|
3147
|
+
"""均衡算法。
|
3148
|
+
- ip_hash_3_elastic:弹性哈希
|
3125
3149
|
注意:此字段可能返回 null,表示取不到有效值。
|
3126
3150
|
:rtype: str
|
3127
3151
|
"""
|
@@ -4152,7 +4152,7 @@ class RunThreadRequest(AbstractModel):
|
|
4152
4152
|
r"""
|
4153
4153
|
:param _ThreadID: 会话 ID
|
4154
4154
|
:type ThreadID: str
|
4155
|
-
:param _AssistantID: 助手 ID
|
4155
|
+
:param _AssistantID: 助手 ID(目前未使用,留空)
|
4156
4156
|
:type AssistantID: str
|
4157
4157
|
:param _Model: 模型名称,可选值包括 hunyuan-lite、hunyuan-standard、hunyuan-standard-256K、hunyuan-pro、 hunyuan-code、 hunyuan-role、 hunyuan-functioncall、 hunyuan-vision、 hunyuan-turbo。各模型介绍请阅读 [产品概述](https://cloud.tencent.com/document/product/1729/104753) 中的说明。注意:不同的模型计费不同,请根据 [购买指南](https://cloud.tencent.com/document/product/1729/97731) 按需调用。
|
4158
4158
|
:type Model: str
|
@@ -4198,7 +4198,7 @@ class RunThreadRequest(AbstractModel):
|
|
4198
4198
|
|
4199
4199
|
@property
|
4200
4200
|
def AssistantID(self):
|
4201
|
-
"""助手 ID
|
4201
|
+
"""助手 ID(目前未使用,留空)
|
4202
4202
|
:rtype: str
|
4203
4203
|
"""
|
4204
4204
|
return self._AssistantID
|
@@ -2201,7 +2201,7 @@ video 纯视频
|
|
2201
2201
|
:type RTCAudienceNumber: int
|
2202
2202
|
:param _AudienceType: 观看类型。互动观看 (默认)
|
2203
2203
|
:type AudienceType: int
|
2204
|
-
:param _RecordLayout:
|
2204
|
+
:param _RecordLayout: 录制模板。未配置时默认取值0。录制模板枚举值参考:https://cloud.tencent.com/document/product/1639/89744
|
2205
2205
|
:type RecordLayout: int
|
2206
2206
|
:param _GroupId: 房间绑定的群组ID,非空时限制组成员进入
|
2207
2207
|
:type GroupId: str
|
@@ -2230,7 +2230,8 @@ video 纯视频
|
|
2230
2230
|
:type EnableAutoStart: int
|
2231
2231
|
:param _RecordBackground: 录制文件背景图片,支持png、jpg、jpeg、bmp格式,暂不支持透明通道
|
2232
2232
|
:type RecordBackground: str
|
2233
|
-
:param _RecordScene:
|
2233
|
+
:param _RecordScene: 录制自定义场景。注意:仅recordlayout=9的时候此参数有效。需注意各类参数配置正确能够生效。不然会造成录制失败,失败后无法补救。
|
2234
|
+
数据内容为用户自定义场景参数,数据格式为json键值对方式,其中键值对的value为string类型。
|
2234
2235
|
:type RecordScene: str
|
2235
2236
|
:param _RecordLang: 录制自定义语言,仅recordlayout=9的时候此参数有效
|
2236
2237
|
:type RecordLang: str
|
@@ -2450,7 +2451,7 @@ video 纯视频
|
|
2450
2451
|
|
2451
2452
|
@property
|
2452
2453
|
def RecordLayout(self):
|
2453
|
-
"""
|
2454
|
+
"""录制模板。未配置时默认取值0。录制模板枚举值参考:https://cloud.tencent.com/document/product/1639/89744
|
2454
2455
|
:rtype: int
|
2455
2456
|
"""
|
2456
2457
|
return self._RecordLayout
|
@@ -2587,7 +2588,8 @@ video 纯视频
|
|
2587
2588
|
|
2588
2589
|
@property
|
2589
2590
|
def RecordScene(self):
|
2590
|
-
"""
|
2591
|
+
"""录制自定义场景。注意:仅recordlayout=9的时候此参数有效。需注意各类参数配置正确能够生效。不然会造成录制失败,失败后无法补救。
|
2592
|
+
数据内容为用户自定义场景参数,数据格式为json键值对方式,其中键值对的value为string类型。
|
2591
2593
|
:rtype: str
|
2592
2594
|
"""
|
2593
2595
|
return self._RecordScene
|