tencentcloud-sdk-python 3.0.1196__py2.py3-none-any.whl → 3.0.1197__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/ccc/v20200210/models.py +3 -3
- tencentcloud/cfw/v20190904/models.py +37 -0
- tencentcloud/cls/v20201016/cls_client.py +0 -12
- tencentcloud/cls/v20201016/models.py +5 -1
- tencentcloud/dbbrain/v20210527/models.py +12 -0
- tencentcloud/ess/v20201111/ess_client.py +2 -1
- tencentcloud/ess/v20201111/models.py +47 -21
- tencentcloud/essbasic/v20210526/models.py +1 -1
- tencentcloud/hunyuan/v20230901/models.py +2 -1
- tencentcloud/mongodb/v20190725/models.py +106 -0
- tencentcloud/mongodb/v20190725/mongodb_client.py +23 -0
- tencentcloud/monitor/v20180724/models.py +3 -8
- tencentcloud/ocr/v20181119/models.py +24 -0
- tencentcloud/redis/v20180412/models.py +2 -3
- tencentcloud/vpc/v20170312/errorcodes.py +3 -0
- tencentcloud/vpc/v20170312/models.py +1 -1
- tencentcloud/waf/v20180125/models.py +13 -41
- tencentcloud/wedata/v20210820/models.py +13 -0
- {tencentcloud_sdk_python-3.0.1196.dist-info → tencentcloud_sdk_python-3.0.1197.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1196.dist-info → tencentcloud_sdk_python-3.0.1197.dist-info}/RECORD +24 -24
- {tencentcloud_sdk_python-3.0.1196.dist-info → tencentcloud_sdk_python-3.0.1197.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1196.dist-info → tencentcloud_sdk_python-3.0.1197.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1196.dist-info → tencentcloud_sdk_python-3.0.1197.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -3165,7 +3165,7 @@ class DeleteStaffRequest(AbstractModel):
|
|
3165
3165
|
r"""
|
3166
3166
|
:param _SdkAppId: 应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
|
3167
3167
|
:type SdkAppId: int
|
3168
|
-
:param _StaffList:
|
3168
|
+
:param _StaffList: 待删除客服邮箱列表,一次最大支持200个。
|
3169
3169
|
:type StaffList: list of str
|
3170
3170
|
"""
|
3171
3171
|
self._SdkAppId = None
|
@@ -6653,9 +6653,9 @@ class DescribeTelCdrRequest(AbstractModel):
|
|
6653
6653
|
|
6654
6654
|
def __init__(self):
|
6655
6655
|
r"""
|
6656
|
-
:param _StartTimeStamp: 起始时间戳,Unix
|
6656
|
+
:param _StartTimeStamp: 起始时间戳,Unix 秒级时间戳,最大支持近180天。
|
6657
6657
|
:type StartTimeStamp: int
|
6658
|
-
:param _EndTimeStamp: 结束时间戳,Unix
|
6658
|
+
:param _EndTimeStamp: 结束时间戳,Unix 秒级时间戳,结束时间与开始时间的区间范围小于90天。
|
6659
6659
|
:type EndTimeStamp: int
|
6660
6660
|
:param _InstanceId: 实例 ID(废弃)
|
6661
6661
|
:type InstanceId: int
|
@@ -6215,6 +6215,10 @@ class DescribeAddressTemplateListResponse(AbstractModel):
|
|
6215
6215
|
:type DomainTemplateCount: int
|
6216
6216
|
:param _PortTemplateCount: 协议端口模板数量
|
6217
6217
|
:type PortTemplateCount: int
|
6218
|
+
:param _UsedTemplateCount: 已使用的地址模版数
|
6219
|
+
:type UsedTemplateCount: int
|
6220
|
+
:param _TemplateQuotaCount: 地址模版配额数量
|
6221
|
+
:type TemplateQuotaCount: int
|
6218
6222
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6219
6223
|
:type RequestId: str
|
6220
6224
|
"""
|
@@ -6224,6 +6228,8 @@ class DescribeAddressTemplateListResponse(AbstractModel):
|
|
6224
6228
|
self._IpTemplateCount = None
|
6225
6229
|
self._DomainTemplateCount = None
|
6226
6230
|
self._PortTemplateCount = None
|
6231
|
+
self._UsedTemplateCount = None
|
6232
|
+
self._TemplateQuotaCount = None
|
6227
6233
|
self._RequestId = None
|
6228
6234
|
|
6229
6235
|
@property
|
@@ -6274,6 +6280,22 @@ class DescribeAddressTemplateListResponse(AbstractModel):
|
|
6274
6280
|
def PortTemplateCount(self, PortTemplateCount):
|
6275
6281
|
self._PortTemplateCount = PortTemplateCount
|
6276
6282
|
|
6283
|
+
@property
|
6284
|
+
def UsedTemplateCount(self):
|
6285
|
+
return self._UsedTemplateCount
|
6286
|
+
|
6287
|
+
@UsedTemplateCount.setter
|
6288
|
+
def UsedTemplateCount(self, UsedTemplateCount):
|
6289
|
+
self._UsedTemplateCount = UsedTemplateCount
|
6290
|
+
|
6291
|
+
@property
|
6292
|
+
def TemplateQuotaCount(self):
|
6293
|
+
return self._TemplateQuotaCount
|
6294
|
+
|
6295
|
+
@TemplateQuotaCount.setter
|
6296
|
+
def TemplateQuotaCount(self, TemplateQuotaCount):
|
6297
|
+
self._TemplateQuotaCount = TemplateQuotaCount
|
6298
|
+
|
6277
6299
|
@property
|
6278
6300
|
def RequestId(self):
|
6279
6301
|
return self._RequestId
|
@@ -6295,6 +6317,8 @@ class DescribeAddressTemplateListResponse(AbstractModel):
|
|
6295
6317
|
self._IpTemplateCount = params.get("IpTemplateCount")
|
6296
6318
|
self._DomainTemplateCount = params.get("DomainTemplateCount")
|
6297
6319
|
self._PortTemplateCount = params.get("PortTemplateCount")
|
6320
|
+
self._UsedTemplateCount = params.get("UsedTemplateCount")
|
6321
|
+
self._TemplateQuotaCount = params.get("TemplateQuotaCount")
|
6298
6322
|
self._RequestId = params.get("RequestId")
|
6299
6323
|
|
6300
6324
|
|
@@ -8410,6 +8434,9 @@ class DescribeLogsResponse(AbstractModel):
|
|
8410
8434
|
:type ReturnCode: int
|
8411
8435
|
:param _ReturnMsg: 返回信息 success 成功 其他 不成功
|
8412
8436
|
:type ReturnMsg: str
|
8437
|
+
:param _AppProtocolList: 七层协议,NTA日志有效
|
8438
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8439
|
+
:type AppProtocolList: list of str
|
8413
8440
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
8414
8441
|
:type RequestId: str
|
8415
8442
|
"""
|
@@ -8417,6 +8444,7 @@ class DescribeLogsResponse(AbstractModel):
|
|
8417
8444
|
self._Total = None
|
8418
8445
|
self._ReturnCode = None
|
8419
8446
|
self._ReturnMsg = None
|
8447
|
+
self._AppProtocolList = None
|
8420
8448
|
self._RequestId = None
|
8421
8449
|
|
8422
8450
|
@property
|
@@ -8451,6 +8479,14 @@ class DescribeLogsResponse(AbstractModel):
|
|
8451
8479
|
def ReturnMsg(self, ReturnMsg):
|
8452
8480
|
self._ReturnMsg = ReturnMsg
|
8453
8481
|
|
8482
|
+
@property
|
8483
|
+
def AppProtocolList(self):
|
8484
|
+
return self._AppProtocolList
|
8485
|
+
|
8486
|
+
@AppProtocolList.setter
|
8487
|
+
def AppProtocolList(self, AppProtocolList):
|
8488
|
+
self._AppProtocolList = AppProtocolList
|
8489
|
+
|
8454
8490
|
@property
|
8455
8491
|
def RequestId(self):
|
8456
8492
|
return self._RequestId
|
@@ -8465,6 +8501,7 @@ class DescribeLogsResponse(AbstractModel):
|
|
8465
8501
|
self._Total = params.get("Total")
|
8466
8502
|
self._ReturnCode = params.get("ReturnCode")
|
8467
8503
|
self._ReturnMsg = params.get("ReturnMsg")
|
8504
|
+
self._AppProtocolList = params.get("AppProtocolList")
|
8468
8505
|
self._RequestId = params.get("RequestId")
|
8469
8506
|
|
8470
8507
|
|
@@ -2250,18 +2250,6 @@ class ClsClient(AbstractClient):
|
|
2250
2250
|
|
2251
2251
|
本接口用于将日志写入到指定的日志主题。
|
2252
2252
|
|
2253
|
-
日志服务提供以下两种模式:
|
2254
|
-
|
2255
|
-
#### 负载均衡模式
|
2256
|
-
|
2257
|
-
系统根据当前日志主题下所有可读写的分区,遵循负载均衡原则自动分配写入的目标分区。该模式适合消费不保序的场景。
|
2258
|
-
|
2259
|
-
#### 哈希路由模式
|
2260
|
-
|
2261
|
-
系统根据携带的哈希值(X-CLS-HashKey)将数据写入到符合范围要求的目标分区。例如,可以将某个日志源端通过 hashkey 与某个主题分区强绑定,这样可以保证数据在该分区上写入和消费是严格保序的。
|
2262
|
-
|
2263
|
-
|
2264
|
-
|
2265
2253
|
#### 输入参数(pb二进制流,位于body中)
|
2266
2254
|
|
2267
2255
|
| 字段名 | 类型 | 位置 | 必须 | 含义 |
|
@@ -21544,7 +21544,7 @@ class UploadLogRequest(AbstractModel):
|
|
21544
21544
|
r"""
|
21545
21545
|
:param _TopicId: 主题id
|
21546
21546
|
:type TopicId: str
|
21547
|
-
:param _HashKey:
|
21547
|
+
:param _HashKey: 该参数已废弃,请勿使用
|
21548
21548
|
:type HashKey: str
|
21549
21549
|
:param _CompressType: 压缩方法
|
21550
21550
|
:type CompressType: str
|
@@ -21563,10 +21563,14 @@ class UploadLogRequest(AbstractModel):
|
|
21563
21563
|
|
21564
21564
|
@property
|
21565
21565
|
def HashKey(self):
|
21566
|
+
warnings.warn("parameter `HashKey` is deprecated", DeprecationWarning)
|
21567
|
+
|
21566
21568
|
return self._HashKey
|
21567
21569
|
|
21568
21570
|
@HashKey.setter
|
21569
21571
|
def HashKey(self, HashKey):
|
21572
|
+
warnings.warn("parameter `HashKey` is deprecated", DeprecationWarning)
|
21573
|
+
|
21570
21574
|
self._HashKey = HashKey
|
21571
21575
|
|
21572
21576
|
@property
|
@@ -1667,6 +1667,8 @@ class CreateKillTaskRequest(AbstractModel):
|
|
1667
1667
|
:type Command: str
|
1668
1668
|
:param _Info: 任务过滤条件,支持单条件前缀匹配。
|
1669
1669
|
:type Info: str
|
1670
|
+
:param _Infos: 任务过滤条件,支持多个关键字匹配,与Info参数互斥。
|
1671
|
+
:type Infos: list of str
|
1670
1672
|
:param _User: 任务过滤条件,用户类型。
|
1671
1673
|
:type User: str
|
1672
1674
|
:param _Time: 任务过滤条件,会话持续时长,单位秒。
|
@@ -1680,6 +1682,7 @@ class CreateKillTaskRequest(AbstractModel):
|
|
1680
1682
|
self._DB = None
|
1681
1683
|
self._Command = None
|
1682
1684
|
self._Info = None
|
1685
|
+
self._Infos = None
|
1683
1686
|
self._User = None
|
1684
1687
|
self._Time = None
|
1685
1688
|
self._Product = None
|
@@ -1732,6 +1735,14 @@ class CreateKillTaskRequest(AbstractModel):
|
|
1732
1735
|
def Info(self, Info):
|
1733
1736
|
self._Info = Info
|
1734
1737
|
|
1738
|
+
@property
|
1739
|
+
def Infos(self):
|
1740
|
+
return self._Infos
|
1741
|
+
|
1742
|
+
@Infos.setter
|
1743
|
+
def Infos(self, Infos):
|
1744
|
+
self._Infos = Infos
|
1745
|
+
|
1735
1746
|
@property
|
1736
1747
|
def User(self):
|
1737
1748
|
return self._User
|
@@ -1764,6 +1775,7 @@ class CreateKillTaskRequest(AbstractModel):
|
|
1764
1775
|
self._DB = params.get("DB")
|
1765
1776
|
self._Command = params.get("Command")
|
1766
1777
|
self._Info = params.get("Info")
|
1778
|
+
self._Infos = params.get("Infos")
|
1767
1779
|
self._User = params.get("User")
|
1768
1780
|
self._Time = params.get("Time")
|
1769
1781
|
self._Product = params.get("Product")
|
@@ -1265,7 +1265,7 @@ class EssClient(AbstractClient):
|
|
1265
1265
|
|
1266
1266
|
|
1267
1267
|
def CreatePartnerAutoSignAuthUrl(self, request):
|
1268
|
-
"""
|
1268
|
+
"""创建他方自动签授权链接(他方授权/我方授权),通过该链接可进入小程序进行合作方企业的自动签授权,若授权企业未开通企业自动签,通过该链接会先引导开通本企业自动签。
|
1269
1269
|
该接口效果同控制台: 企业设置-> 扩展服务 -> 企业自动签署 -> 合作企业方授权
|
1270
1270
|
|
1271
1271
|
|
@@ -1273,6 +1273,7 @@ class EssClient(AbstractClient):
|
|
1273
1273
|
注:
|
1274
1274
|
1. <font color='red'>所在企业的超管、法人才有权限调用此接口</font>(Operator.UserId 需要传递超管或者法人的UserId)
|
1275
1275
|
2. 已经在授权中或者授权成功的企业,无法重复授权
|
1276
|
+
3. 授权企业和被授权企业必须都是已认证企业
|
1276
1277
|
|
1277
1278
|
:param request: Request instance for CreatePartnerAutoSignAuthUrl.
|
1278
1279
|
:type request: :class:`tencentcloud.ess.v20201111.models.CreatePartnerAutoSignAuthUrlRequest`
|
@@ -8268,19 +8268,43 @@ class CreatePartnerAutoSignAuthUrlRequest(AbstractModel):
|
|
8268
8268
|
|
8269
8269
|
def __init__(self):
|
8270
8270
|
r"""
|
8271
|
-
:param _AuthorizedOrganizationId: 被授企业id
|
8272
|
-
:type AuthorizedOrganizationId: str
|
8273
|
-
:param _SealTypes: 指定印章类型,指定后只能选择该类型的印章进行授权支持以下印章类型:- OFFICIAL : 企业公章- CONTRACT : 合同专用章- FINANCE : 财务专用章- PERSONNEL : 人事专用章
|
8274
|
-
:type SealTypes: list of str
|
8275
8271
|
:param _Agent: 代理企业和员工的信息。<br/>在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
8276
8272
|
:type Agent: :class:`tencentcloud.ess.v20201111.models.Agent`
|
8277
8273
|
:param _Operator: 执行本接口操作的员工信息。<br/>注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
8278
8274
|
:type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
8275
|
+
:param _AuthorizedOrganizationId: 被授企业id/授权方企业id,和AuthorizedOrganizationName二选一传入
|
8276
|
+
:type AuthorizedOrganizationId: str
|
8277
|
+
:param _AuthorizedOrganizationName: 被授企业名称/授权方企业名称,和AuthorizedOrganizationId二选一传入
|
8278
|
+
:type AuthorizedOrganizationName: str
|
8279
|
+
:param _SealTypes: 指定印章类型,指定后只能选择该类型的印章进行授权支持以下印章类型:- OFFICIAL : 企业公章- CONTRACT : 合同专用章- FINANCE : 财务专用章- PERSONNEL : 人事专用章
|
8280
|
+
:type SealTypes: list of str
|
8281
|
+
:param _AuthToMe: 他方授权给我方:
|
8282
|
+
- false:我方授权他方,AuthorizedOrganizationName代表【被授权方】企业名称
|
8283
|
+
- true:他方授权我方,AuthorizedOrganizationName代表【授权方】企业名称
|
8284
|
+
:type AuthToMe: bool
|
8279
8285
|
"""
|
8280
|
-
self._AuthorizedOrganizationId = None
|
8281
|
-
self._SealTypes = None
|
8282
8286
|
self._Agent = None
|
8283
8287
|
self._Operator = None
|
8288
|
+
self._AuthorizedOrganizationId = None
|
8289
|
+
self._AuthorizedOrganizationName = None
|
8290
|
+
self._SealTypes = None
|
8291
|
+
self._AuthToMe = None
|
8292
|
+
|
8293
|
+
@property
|
8294
|
+
def Agent(self):
|
8295
|
+
return self._Agent
|
8296
|
+
|
8297
|
+
@Agent.setter
|
8298
|
+
def Agent(self, Agent):
|
8299
|
+
self._Agent = Agent
|
8300
|
+
|
8301
|
+
@property
|
8302
|
+
def Operator(self):
|
8303
|
+
return self._Operator
|
8304
|
+
|
8305
|
+
@Operator.setter
|
8306
|
+
def Operator(self, Operator):
|
8307
|
+
self._Operator = Operator
|
8284
8308
|
|
8285
8309
|
@property
|
8286
8310
|
def AuthorizedOrganizationId(self):
|
@@ -8290,6 +8314,14 @@ class CreatePartnerAutoSignAuthUrlRequest(AbstractModel):
|
|
8290
8314
|
def AuthorizedOrganizationId(self, AuthorizedOrganizationId):
|
8291
8315
|
self._AuthorizedOrganizationId = AuthorizedOrganizationId
|
8292
8316
|
|
8317
|
+
@property
|
8318
|
+
def AuthorizedOrganizationName(self):
|
8319
|
+
return self._AuthorizedOrganizationName
|
8320
|
+
|
8321
|
+
@AuthorizedOrganizationName.setter
|
8322
|
+
def AuthorizedOrganizationName(self, AuthorizedOrganizationName):
|
8323
|
+
self._AuthorizedOrganizationName = AuthorizedOrganizationName
|
8324
|
+
|
8293
8325
|
@property
|
8294
8326
|
def SealTypes(self):
|
8295
8327
|
return self._SealTypes
|
@@ -8299,31 +8331,25 @@ class CreatePartnerAutoSignAuthUrlRequest(AbstractModel):
|
|
8299
8331
|
self._SealTypes = SealTypes
|
8300
8332
|
|
8301
8333
|
@property
|
8302
|
-
def
|
8303
|
-
return self.
|
8334
|
+
def AuthToMe(self):
|
8335
|
+
return self._AuthToMe
|
8304
8336
|
|
8305
|
-
@
|
8306
|
-
def
|
8307
|
-
self.
|
8308
|
-
|
8309
|
-
@property
|
8310
|
-
def Operator(self):
|
8311
|
-
return self._Operator
|
8312
|
-
|
8313
|
-
@Operator.setter
|
8314
|
-
def Operator(self, Operator):
|
8315
|
-
self._Operator = Operator
|
8337
|
+
@AuthToMe.setter
|
8338
|
+
def AuthToMe(self, AuthToMe):
|
8339
|
+
self._AuthToMe = AuthToMe
|
8316
8340
|
|
8317
8341
|
|
8318
8342
|
def _deserialize(self, params):
|
8319
|
-
self._AuthorizedOrganizationId = params.get("AuthorizedOrganizationId")
|
8320
|
-
self._SealTypes = params.get("SealTypes")
|
8321
8343
|
if params.get("Agent") is not None:
|
8322
8344
|
self._Agent = Agent()
|
8323
8345
|
self._Agent._deserialize(params.get("Agent"))
|
8324
8346
|
if params.get("Operator") is not None:
|
8325
8347
|
self._Operator = UserInfo()
|
8326
8348
|
self._Operator._deserialize(params.get("Operator"))
|
8349
|
+
self._AuthorizedOrganizationId = params.get("AuthorizedOrganizationId")
|
8350
|
+
self._AuthorizedOrganizationName = params.get("AuthorizedOrganizationName")
|
8351
|
+
self._SealTypes = params.get("SealTypes")
|
8352
|
+
self._AuthToMe = params.get("AuthToMe")
|
8327
8353
|
memeber_set = set(params.keys())
|
8328
8354
|
for name, value in vars(self).items():
|
8329
8355
|
property_name = name[1:]
|
@@ -12046,7 +12046,7 @@ class DescribeBatchOrganizationRegistrationUrlsResponse(AbstractModel):
|
|
12046
12046
|
|
12047
12047
|
def __init__(self):
|
12048
12048
|
r"""
|
12049
|
-
:param _OrganizationAuthUrls:
|
12049
|
+
:param _OrganizationAuthUrls: 子企业注册认证的链接列表
|
12050
12050
|
:type OrganizationAuthUrls: list of OrganizationAuthUrl
|
12051
12051
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
12052
12052
|
:type RequestId: str
|
@@ -439,7 +439,8 @@ class Content(AbstractModel):
|
|
439
439
|
:param _Text: 当 Type 为 text 时使用,表示具体的文本内容
|
440
440
|
注意:此字段可能返回 null,表示取不到有效值。
|
441
441
|
:type Text: str
|
442
|
-
:param _ImageUrl:
|
442
|
+
:param _ImageUrl: 图片的url,当 Type 为 image_url 时使用,表示具体的图片内容
|
443
|
+
如"https://example.com/1.png" 或 图片的base64(注意 "data:image/jpeg;base64" 为必要部分):"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAA......"
|
443
444
|
注意:此字段可能返回 null,表示取不到有效值。
|
444
445
|
:type ImageUrl: :class:`tencentcloud.hunyuan.v20230901.models.ImageUrl`
|
445
446
|
"""
|
@@ -1035,6 +1035,8 @@ class CreateDBInstanceHourRequest(AbstractModel):
|
|
1035
1035
|
:type ReadonlyNodeAvailabilityZoneList: list of str
|
1036
1036
|
:param _HiddenZone: Hidden节点所属可用区。跨可用区部署实例,必须配置该参数。
|
1037
1037
|
:type HiddenZone: str
|
1038
|
+
:param _ParamTemplateId: 参数模板 ID。参数模板是一组 MongoDB 的参数并为预设置了参数值的集合,将一组有相同诉求的参数及值 存为模板,在创建实例时,可直接引用参数值到新实例。合理使用参数模板,可以提高MongoDB数据库的效率。模板列表从 DescribeDBInstanceParamTpl 接口获取,注意模板支持的版本。
|
1039
|
+
:type ParamTemplateId: str
|
1038
1040
|
"""
|
1039
1041
|
self._Memory = None
|
1040
1042
|
self._Volume = None
|
@@ -1062,6 +1064,7 @@ class CreateDBInstanceHourRequest(AbstractModel):
|
|
1062
1064
|
self._ReadonlyNodeNum = None
|
1063
1065
|
self._ReadonlyNodeAvailabilityZoneList = None
|
1064
1066
|
self._HiddenZone = None
|
1067
|
+
self._ParamTemplateId = None
|
1065
1068
|
|
1066
1069
|
@property
|
1067
1070
|
def Memory(self):
|
@@ -1271,6 +1274,14 @@ class CreateDBInstanceHourRequest(AbstractModel):
|
|
1271
1274
|
def HiddenZone(self, HiddenZone):
|
1272
1275
|
self._HiddenZone = HiddenZone
|
1273
1276
|
|
1277
|
+
@property
|
1278
|
+
def ParamTemplateId(self):
|
1279
|
+
return self._ParamTemplateId
|
1280
|
+
|
1281
|
+
@ParamTemplateId.setter
|
1282
|
+
def ParamTemplateId(self, ParamTemplateId):
|
1283
|
+
self._ParamTemplateId = ParamTemplateId
|
1284
|
+
|
1274
1285
|
|
1275
1286
|
def _deserialize(self, params):
|
1276
1287
|
self._Memory = params.get("Memory")
|
@@ -1304,6 +1315,7 @@ class CreateDBInstanceHourRequest(AbstractModel):
|
|
1304
1315
|
self._ReadonlyNodeNum = params.get("ReadonlyNodeNum")
|
1305
1316
|
self._ReadonlyNodeAvailabilityZoneList = params.get("ReadonlyNodeAvailabilityZoneList")
|
1306
1317
|
self._HiddenZone = params.get("HiddenZone")
|
1318
|
+
self._ParamTemplateId = params.get("ParamTemplateId")
|
1307
1319
|
memeber_set = set(params.keys())
|
1308
1320
|
for name, value in vars(self).items():
|
1309
1321
|
property_name = name[1:]
|
@@ -1593,6 +1605,8 @@ class CreateDBInstanceRequest(AbstractModel):
|
|
1593
1605
|
:type ReadonlyNodeAvailabilityZoneList: list of str
|
1594
1606
|
:param _HiddenZone: Hidden节点所属可用区。跨可用区部署实例,必须配置该参数。
|
1595
1607
|
:type HiddenZone: str
|
1608
|
+
:param _ParamTemplateId: 参数模板 ID。参数模板是一组 MongoDB 的参数并为预设置了参数值的集合,将一组有相同诉求的参数及值 存为模板,在创建实例时,可直接引用参数值到新实例。合理使用参数模板,可以提高MongoDB数据库的效率。模板列表从 DescribeDBInstanceParamTpl 接口获取,注意模板支持的版本及实例类型。
|
1609
|
+
:type ParamTemplateId: str
|
1596
1610
|
"""
|
1597
1611
|
self._NodeNum = None
|
1598
1612
|
self._Memory = None
|
@@ -1623,6 +1637,7 @@ class CreateDBInstanceRequest(AbstractModel):
|
|
1623
1637
|
self._ReadonlyNodeNum = None
|
1624
1638
|
self._ReadonlyNodeAvailabilityZoneList = None
|
1625
1639
|
self._HiddenZone = None
|
1640
|
+
self._ParamTemplateId = None
|
1626
1641
|
|
1627
1642
|
@property
|
1628
1643
|
def NodeNum(self):
|
@@ -1856,6 +1871,14 @@ class CreateDBInstanceRequest(AbstractModel):
|
|
1856
1871
|
def HiddenZone(self, HiddenZone):
|
1857
1872
|
self._HiddenZone = HiddenZone
|
1858
1873
|
|
1874
|
+
@property
|
1875
|
+
def ParamTemplateId(self):
|
1876
|
+
return self._ParamTemplateId
|
1877
|
+
|
1878
|
+
@ParamTemplateId.setter
|
1879
|
+
def ParamTemplateId(self, ParamTemplateId):
|
1880
|
+
self._ParamTemplateId = ParamTemplateId
|
1881
|
+
|
1859
1882
|
|
1860
1883
|
def _deserialize(self, params):
|
1861
1884
|
self._NodeNum = params.get("NodeNum")
|
@@ -1892,6 +1915,7 @@ class CreateDBInstanceRequest(AbstractModel):
|
|
1892
1915
|
self._ReadonlyNodeNum = params.get("ReadonlyNodeNum")
|
1893
1916
|
self._ReadonlyNodeAvailabilityZoneList = params.get("ReadonlyNodeAvailabilityZoneList")
|
1894
1917
|
self._HiddenZone = params.get("HiddenZone")
|
1918
|
+
self._ParamTemplateId = params.get("ParamTemplateId")
|
1895
1919
|
memeber_set = set(params.keys())
|
1896
1920
|
for name, value in vars(self).items():
|
1897
1921
|
property_name = name[1:]
|
@@ -8655,6 +8679,88 @@ class ResetDBInstancePasswordResponse(AbstractModel):
|
|
8655
8679
|
self._RequestId = params.get("RequestId")
|
8656
8680
|
|
8657
8681
|
|
8682
|
+
class RestartNodesRequest(AbstractModel):
|
8683
|
+
"""RestartNodes请求参数结构体
|
8684
|
+
|
8685
|
+
"""
|
8686
|
+
|
8687
|
+
def __init__(self):
|
8688
|
+
r"""
|
8689
|
+
:param _InstanceId: 实例ID,格式如:cmgo-p8vnipr5。与云数据库控制台页面中显示的实例ID相同。
|
8690
|
+
:type InstanceId: str
|
8691
|
+
:param _NodeIds: 节点Id。
|
8692
|
+
:type NodeIds: list of str
|
8693
|
+
"""
|
8694
|
+
self._InstanceId = None
|
8695
|
+
self._NodeIds = None
|
8696
|
+
|
8697
|
+
@property
|
8698
|
+
def InstanceId(self):
|
8699
|
+
return self._InstanceId
|
8700
|
+
|
8701
|
+
@InstanceId.setter
|
8702
|
+
def InstanceId(self, InstanceId):
|
8703
|
+
self._InstanceId = InstanceId
|
8704
|
+
|
8705
|
+
@property
|
8706
|
+
def NodeIds(self):
|
8707
|
+
return self._NodeIds
|
8708
|
+
|
8709
|
+
@NodeIds.setter
|
8710
|
+
def NodeIds(self, NodeIds):
|
8711
|
+
self._NodeIds = NodeIds
|
8712
|
+
|
8713
|
+
|
8714
|
+
def _deserialize(self, params):
|
8715
|
+
self._InstanceId = params.get("InstanceId")
|
8716
|
+
self._NodeIds = params.get("NodeIds")
|
8717
|
+
memeber_set = set(params.keys())
|
8718
|
+
for name, value in vars(self).items():
|
8719
|
+
property_name = name[1:]
|
8720
|
+
if property_name in memeber_set:
|
8721
|
+
memeber_set.remove(property_name)
|
8722
|
+
if len(memeber_set) > 0:
|
8723
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
8724
|
+
|
8725
|
+
|
8726
|
+
|
8727
|
+
class RestartNodesResponse(AbstractModel):
|
8728
|
+
"""RestartNodes返回参数结构体
|
8729
|
+
|
8730
|
+
"""
|
8731
|
+
|
8732
|
+
def __init__(self):
|
8733
|
+
r"""
|
8734
|
+
:param _FlowId: 流程Id。
|
8735
|
+
:type FlowId: int
|
8736
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
8737
|
+
:type RequestId: str
|
8738
|
+
"""
|
8739
|
+
self._FlowId = None
|
8740
|
+
self._RequestId = None
|
8741
|
+
|
8742
|
+
@property
|
8743
|
+
def FlowId(self):
|
8744
|
+
return self._FlowId
|
8745
|
+
|
8746
|
+
@FlowId.setter
|
8747
|
+
def FlowId(self, FlowId):
|
8748
|
+
self._FlowId = FlowId
|
8749
|
+
|
8750
|
+
@property
|
8751
|
+
def RequestId(self):
|
8752
|
+
return self._RequestId
|
8753
|
+
|
8754
|
+
@RequestId.setter
|
8755
|
+
def RequestId(self, RequestId):
|
8756
|
+
self._RequestId = RequestId
|
8757
|
+
|
8758
|
+
|
8759
|
+
def _deserialize(self, params):
|
8760
|
+
self._FlowId = params.get("FlowId")
|
8761
|
+
self._RequestId = params.get("RequestId")
|
8762
|
+
|
8763
|
+
|
8658
8764
|
class SecurityGroup(AbstractModel):
|
8659
8765
|
"""安全组信息
|
8660
8766
|
|
@@ -1044,6 +1044,29 @@ class MongodbClient(AbstractClient):
|
|
1044
1044
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1045
1045
|
|
1046
1046
|
|
1047
|
+
def RestartNodes(self, request):
|
1048
|
+
"""本接口用于重启数据库节点。
|
1049
|
+
|
1050
|
+
:param request: Request instance for RestartNodes.
|
1051
|
+
:type request: :class:`tencentcloud.mongodb.v20190725.models.RestartNodesRequest`
|
1052
|
+
:rtype: :class:`tencentcloud.mongodb.v20190725.models.RestartNodesResponse`
|
1053
|
+
|
1054
|
+
"""
|
1055
|
+
try:
|
1056
|
+
params = request._serialize()
|
1057
|
+
headers = request.headers
|
1058
|
+
body = self.call("RestartNodes", params, headers=headers)
|
1059
|
+
response = json.loads(body)
|
1060
|
+
model = models.RestartNodesResponse()
|
1061
|
+
model._deserialize(response["Response"])
|
1062
|
+
return model
|
1063
|
+
except Exception as e:
|
1064
|
+
if isinstance(e, TencentCloudSDKException):
|
1065
|
+
raise
|
1066
|
+
else:
|
1067
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1068
|
+
|
1069
|
+
|
1047
1070
|
def SetAccountUserPrivilege(self, request):
|
1048
1071
|
"""本接口(SetAccountUserPrivilege)用于设置实例的账号权限。
|
1049
1072
|
|
@@ -17921,18 +17921,13 @@ class DescribePrometheusRecordRulesRequest(AbstractModel):
|
|
17921
17921
|
|
17922
17922
|
def __init__(self):
|
17923
17923
|
r"""
|
17924
|
-
:param _InstanceId: 实例ID
|
17925
|
-
|
17926
|
-
示例值:prom-343kafd34
|
17924
|
+
:param _InstanceId: Prometheus 实例 ID
|
17927
17925
|
:type InstanceId: str
|
17928
|
-
:param _Offset: 偏移量,默认为0。
|
17926
|
+
:param _Offset: 偏移量,默认为0。
|
17929
17927
|
:type Offset: int
|
17930
17928
|
:param _Limit: 返回数量,默认为20,最大值为100。
|
17931
|
-
示例值:1
|
17932
17929
|
:type Limit: int
|
17933
|
-
:param _Filters: 仅支持按Name, Values
|
17934
|
-
- Name = Name
|
17935
|
-
按照给定的预聚合名称列表匹配
|
17930
|
+
:param _Filters: 仅支持按Name, Values字段过滤。
|
17936
17931
|
:type Filters: list of Filter
|
17937
17932
|
"""
|
17938
17933
|
self._InstanceId = None
|
@@ -14690,9 +14690,12 @@ class PermitOCRRequest(AbstractModel):
|
|
14690
14690
|
图片存储于腾讯云的 Url 可保障更高的下载速度和稳定性,建议图片存储于腾讯云。
|
14691
14691
|
非腾讯云存储的 Url 速度和稳定性可能受一定影响。
|
14692
14692
|
:type ImageUrl: str
|
14693
|
+
:param _CropPortrait: 是否返回头像照片,默认为 false
|
14694
|
+
:type CropPortrait: bool
|
14693
14695
|
"""
|
14694
14696
|
self._ImageBase64 = None
|
14695
14697
|
self._ImageUrl = None
|
14698
|
+
self._CropPortrait = None
|
14696
14699
|
|
14697
14700
|
@property
|
14698
14701
|
def ImageBase64(self):
|
@@ -14710,10 +14713,19 @@ class PermitOCRRequest(AbstractModel):
|
|
14710
14713
|
def ImageUrl(self, ImageUrl):
|
14711
14714
|
self._ImageUrl = ImageUrl
|
14712
14715
|
|
14716
|
+
@property
|
14717
|
+
def CropPortrait(self):
|
14718
|
+
return self._CropPortrait
|
14719
|
+
|
14720
|
+
@CropPortrait.setter
|
14721
|
+
def CropPortrait(self, CropPortrait):
|
14722
|
+
self._CropPortrait = CropPortrait
|
14723
|
+
|
14713
14724
|
|
14714
14725
|
def _deserialize(self, params):
|
14715
14726
|
self._ImageBase64 = params.get("ImageBase64")
|
14716
14727
|
self._ImageUrl = params.get("ImageUrl")
|
14728
|
+
self._CropPortrait = params.get("CropPortrait")
|
14717
14729
|
memeber_set = set(params.keys())
|
14718
14730
|
for name, value in vars(self).items():
|
14719
14731
|
property_name = name[1:]
|
@@ -14747,6 +14759,8 @@ class PermitOCRResponse(AbstractModel):
|
|
14747
14759
|
:type IssueAddress: str
|
14748
14760
|
:param _Birthday: 出生日期
|
14749
14761
|
:type Birthday: str
|
14762
|
+
:param _PortraitImage: 头像照片的base64
|
14763
|
+
:type PortraitImage: str
|
14750
14764
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
14751
14765
|
:type RequestId: str
|
14752
14766
|
"""
|
@@ -14758,6 +14772,7 @@ class PermitOCRResponse(AbstractModel):
|
|
14758
14772
|
self._IssueAuthority = None
|
14759
14773
|
self._IssueAddress = None
|
14760
14774
|
self._Birthday = None
|
14775
|
+
self._PortraitImage = None
|
14761
14776
|
self._RequestId = None
|
14762
14777
|
|
14763
14778
|
@property
|
@@ -14824,6 +14839,14 @@ class PermitOCRResponse(AbstractModel):
|
|
14824
14839
|
def Birthday(self, Birthday):
|
14825
14840
|
self._Birthday = Birthday
|
14826
14841
|
|
14842
|
+
@property
|
14843
|
+
def PortraitImage(self):
|
14844
|
+
return self._PortraitImage
|
14845
|
+
|
14846
|
+
@PortraitImage.setter
|
14847
|
+
def PortraitImage(self, PortraitImage):
|
14848
|
+
self._PortraitImage = PortraitImage
|
14849
|
+
|
14827
14850
|
@property
|
14828
14851
|
def RequestId(self):
|
14829
14852
|
return self._RequestId
|
@@ -14842,6 +14865,7 @@ class PermitOCRResponse(AbstractModel):
|
|
14842
14865
|
self._IssueAuthority = params.get("IssueAuthority")
|
14843
14866
|
self._IssueAddress = params.get("IssueAddress")
|
14844
14867
|
self._Birthday = params.get("Birthday")
|
14868
|
+
self._PortraitImage = params.get("PortraitImage")
|
14845
14869
|
self._RequestId = params.get("RequestId")
|
14846
14870
|
|
14847
14871
|
|
@@ -8944,7 +8944,6 @@ class Groups(AbstractModel):
|
|
8944
8944
|
- 1:广州
|
8945
8945
|
- 4:上海
|
8946
8946
|
- 5:中国香港
|
8947
|
-
- 6:多伦多
|
8948
8947
|
- 7:上海金融
|
8949
8948
|
- 8:北京
|
8950
8949
|
- 9:新加坡
|
@@ -10691,7 +10690,7 @@ class InstanceSet(AbstractModel):
|
|
10691
10690
|
:type Appid: int
|
10692
10691
|
:param _ProjectId: 项目 ID。
|
10693
10692
|
:type ProjectId: int
|
10694
|
-
:param _RegionId: 地域 ID。<ul><li>1:广州。</li><li>4:上海。</li><li>5:中国香港。</li><li>
|
10693
|
+
:param _RegionId: 地域 ID。<ul><li>1:广州。</li><li>4:上海。</li><li>5:中国香港。</li><li>7:上海金融。</li> <li>8:北京。</li> <li>9:新加坡。</li> <li>11:深圳金融。</li> <li>15:美西(硅谷)。</li><li>16:成都。</li><li>17:法兰克福。</li><li>18:首尔。</li><li>19:重庆。</li><li>21:孟买。</li><li>22:美东(弗吉尼亚)。</li><li>23:曼谷。</li><li>25:东京。</li></ul>
|
10695
10694
|
:type RegionId: int
|
10696
10695
|
:param _ZoneId: 区域 ID。
|
10697
10696
|
:type ZoneId: int
|
@@ -11704,7 +11703,7 @@ class Instances(AbstractModel):
|
|
11704
11703
|
:type InstanceId: str
|
11705
11704
|
:param _InstanceName: 实例名称。
|
11706
11705
|
:type InstanceName: str
|
11707
|
-
:param _RegionId: 地域ID。<ul><li>1:广州。</li><li>4:上海。</li><li> 5:香港。</li>
|
11706
|
+
:param _RegionId: 地域ID。<ul><li>1:广州。</li><li>4:上海。</li><li> 5:香港。</li> <li> 7:上海金融。</li> <li> 8:北京。</li> <li> 9:新加坡。</li> <li> 11:深圳金融。</li> <li> 15:美西(硅谷)。</li> </ul>
|
11708
11707
|
:type RegionId: int
|
11709
11708
|
:param _ZoneId: 区域 ID。
|
11710
11709
|
:type ZoneId: int
|
@@ -560,6 +560,9 @@ LIMITEXCEEDED_DAILYALLOCATEADDRESSQUOTALIMITEXCEEDED = 'LimitExceeded.DailyAlloc
|
|
560
560
|
# 超过每日更换IP配额。
|
561
561
|
LIMITEXCEEDED_DAILYCHANGEADDRESSQUOTA = 'LimitExceeded.DailyChangeAddressQuota'
|
562
562
|
|
563
|
+
# 默认VPC数量已达到上限。
|
564
|
+
LIMITEXCEEDED_DEFAULTVPCLIMITEXCEEDED = 'LimitExceeded.DefaultVpcLimitExceeded'
|
565
|
+
|
563
566
|
# 实例绑定的弹性IP超过配额。
|
564
567
|
LIMITEXCEEDED_INSTANCEADDRESSQUOTA = 'LimitExceeded.InstanceAddressQuota'
|
565
568
|
|
@@ -40850,7 +40850,7 @@ class NetworkAclEntry(AbstractModel):
|
|
40850
40850
|
r"""
|
40851
40851
|
:param _Protocol: 协议, 取值: TCP,UDP, ICMP, ALL。
|
40852
40852
|
:type Protocol: str
|
40853
|
-
:param _Port: 端口(all, 单个port, range)。当Protocol为ALL或ICMP时,不能指定Port。
|
40853
|
+
:param _Port: 端口(all, 单个port, range)。当Protocol为ALL或ICMP时,不能指定Port。使用-指定端口范围,如:10-20。
|
40854
40854
|
:type Port: str
|
40855
40855
|
:param _CidrBlock: 网段或IP(互斥)。增量创建ACL规则时,CidrBlock和Ipv6CidrBlock至少提供一个。
|
40856
40856
|
:type CidrBlock: str
|
@@ -24276,10 +24276,7 @@ class ModifySpartaProtectionRequest(AbstractModel):
|
|
24276
24276
|
:type DomainId: str
|
24277
24277
|
:param _InstanceID: 必填项。域名所属实例id
|
24278
24278
|
:type InstanceID: str
|
24279
|
-
:param _CertType:
|
24280
|
-
0:仅配置HTTP监听端口,没有证书
|
24281
|
-
1:证书来源为自有证书
|
24282
|
-
2:证书来源为托管证书
|
24279
|
+
:param _CertType: 证书类型。0:仅配置HTTP监听端口,没有证书1:证书来源为自有证书2:证书来源为托管证书
|
24283
24280
|
:type CertType: int
|
24284
24281
|
:param _Cert: CertType为1时,需要填充此参数,表示自有证书的证书链
|
24285
24282
|
:type Cert: str
|
@@ -24287,11 +24284,7 @@ class ModifySpartaProtectionRequest(AbstractModel):
|
|
24287
24284
|
:type PrivateKey: str
|
24288
24285
|
:param _SSLId: CertType为2时,需要填充此参数,表示腾讯云SSL平台托管的证书id
|
24289
24286
|
:type SSLId: str
|
24290
|
-
:param _IsCdn:
|
24291
|
-
0:没有部署代理服务
|
24292
|
-
1:有部署代理服务,waf将使用XFF获取客户端IP
|
24293
|
-
2:有部署代理服务,waf将使用remote_addr获取客户端IP
|
24294
|
-
3:有部署代理服务,waf将使用ip_headers中的自定义header获取客户端IP
|
24287
|
+
:param _IsCdn: waf前是否部署有七层代理服务。0:没有部署代理服务1:有部署代理服务,waf将使用XFF获取客户端IP2:有部署代理服务,waf将使用remote_addr获取客户端IP3:有部署代理服务,waf将使用ip_headers中的自定义header获取客户端IP
|
24295
24288
|
:type IsCdn: int
|
24296
24289
|
:param _UpstreamScheme: 服务配置有HTTPS端口时,HTTPS的回源协议。
|
24297
24290
|
http:使用http协议回源,和HttpsUpstreamPort配合使用
|
@@ -24299,58 +24292,39 @@ https:使用https协议回源
|
|
24299
24292
|
:type UpstreamScheme: str
|
24300
24293
|
:param _HttpsUpstreamPort: HTTPS回源端口,仅UpstreamScheme为http时需要填当前字段
|
24301
24294
|
:type HttpsUpstreamPort: str
|
24302
|
-
:param _HttpsRewrite:
|
24303
|
-
0:不强制跳转
|
24304
|
-
1:开启强制跳转
|
24295
|
+
:param _HttpsRewrite: 是否开启HTTP强制跳转到HTTPS。0:不强制跳转1:开启强制跳转
|
24305
24296
|
:type HttpsRewrite: int
|
24306
|
-
:param _UpstreamType:
|
24307
|
-
0:通过IP回源
|
24308
|
-
1:通过域名回源
|
24297
|
+
:param _UpstreamType: 回源类型。0:通过IP回源1:通过域名回源
|
24309
24298
|
:type UpstreamType: int
|
24310
24299
|
:param _UpstreamDomain: 域名回源时的回源域名。UpstreamType为1时,需要填充此字段
|
24311
24300
|
:type UpstreamDomain: str
|
24312
24301
|
:param _SrcList: IP回源时的回源IP列表。UpstreamType为0时,需要填充此字段
|
24313
24302
|
:type SrcList: list of str
|
24314
|
-
:param _IsHttp2:
|
24315
|
-
0:关闭
|
24316
|
-
1:开启
|
24303
|
+
:param _IsHttp2: 是否开启HTTP2,需要开启HTTPS协议支持。0:关闭1:开启
|
24317
24304
|
:type IsHttp2: int
|
24318
|
-
:param _IsWebsocket:
|
24319
|
-
0:关闭
|
24320
|
-
1:开启
|
24305
|
+
:param _IsWebsocket: 是否开启WebSocket支持。0:关闭1:开启
|
24321
24306
|
:type IsWebsocket: int
|
24322
|
-
:param _LoadBalance:
|
24323
|
-
0:轮询
|
24324
|
-
1:IP hash
|
24325
|
-
2:加权轮询
|
24307
|
+
:param _LoadBalance: 回源负载均衡策略。0:轮询1:IP hash2:加权轮询
|
24326
24308
|
:type LoadBalance: int
|
24327
24309
|
:param _IsGray: 待废弃,可不填。是否开启灰度,0表示不开启灰度。
|
24328
24310
|
:type IsGray: int
|
24329
24311
|
:param _Edition: 域名所属实例类型
|
24330
24312
|
:type Edition: str
|
24331
|
-
:param _Ports:
|
24313
|
+
:param _Ports: 端口信息,可通过DescribeDomains接口获取具体参数信息。
|
24332
24314
|
:type Ports: list of SpartaProtectionPort
|
24333
|
-
:param _IsKeepAlive:
|
24334
|
-
0: 短连接
|
24335
|
-
1: 长连接
|
24315
|
+
:param _IsKeepAlive: 是否开启长连接。0: 短连接1: 长连接
|
24336
24316
|
:type IsKeepAlive: str
|
24337
|
-
:param _Anycast:
|
24317
|
+
:param _Anycast: 待废弃。目前填0即可。anycast IP类型开关: 0 普通IP 1 Anycast IP
|
24338
24318
|
:type Anycast: int
|
24339
24319
|
:param _Weights: 回源IP列表各IP的权重,和SrcList一一对应。当且仅当UpstreamType为0,并且SrcList有多个IP,并且LoadBalance为2时需要填写,否则填 []
|
24340
24320
|
:type Weights: list of int
|
24341
|
-
:param _ActiveCheck:
|
24342
|
-
0:不开启
|
24343
|
-
1:开启
|
24321
|
+
:param _ActiveCheck: 是否开启主动健康检测。0:不开启1:开启
|
24344
24322
|
:type ActiveCheck: int
|
24345
24323
|
:param _TLSVersion: TLS版本信息
|
24346
24324
|
:type TLSVersion: int
|
24347
24325
|
:param _Ciphers: 加密套件信息
|
24348
24326
|
:type Ciphers: list of int
|
24349
|
-
:param _CipherTemplate:
|
24350
|
-
0:不支持选择,使用默认模板
|
24351
|
-
1:通用型模板
|
24352
|
-
2:安全型模板
|
24353
|
-
3:自定义模板
|
24327
|
+
:param _CipherTemplate: 加密套件模板。0:不支持选择,使用默认模板 1:通用型模板 2:安全型模板3:自定义模板
|
24354
24328
|
:type CipherTemplate: int
|
24355
24329
|
:param _ProxyReadTimeout: WAF与源站的读超时时间,默认300s。
|
24356
24330
|
:type ProxyReadTimeout: int
|
@@ -24366,9 +24340,7 @@ https:使用https协议回源
|
|
24366
24340
|
:type SniHost: str
|
24367
24341
|
:param _IpHeaders: IsCdn=3时,需要填此参数,表示自定义header
|
24368
24342
|
:type IpHeaders: list of str
|
24369
|
-
:param _XFFReset:
|
24370
|
-
0:关闭
|
24371
|
-
1:开启
|
24343
|
+
:param _XFFReset: 是否开启XFF重置。0:关闭1:开启
|
24372
24344
|
:type XFFReset: int
|
24373
24345
|
:param _Note: 域名备注信息
|
24374
24346
|
:type Note: str
|
@@ -43374,6 +43374,9 @@ class OrganizationalFunction(AbstractModel):
|
|
43374
43374
|
:param _OwnerUserIdsStr: 公有云 Owner ID 列表
|
43375
43375
|
注意:此字段可能返回 null,表示取不到有效值。
|
43376
43376
|
:type OwnerUserIdsStr: list of str
|
43377
|
+
:param _EnvType: 数据库环境
|
43378
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
43379
|
+
:type EnvType: str
|
43377
43380
|
"""
|
43378
43381
|
self._Name = None
|
43379
43382
|
self._DisplayName = None
|
@@ -43403,6 +43406,7 @@ class OrganizationalFunction(AbstractModel):
|
|
43403
43406
|
self._Tag = None
|
43404
43407
|
self._OperatorUserIdsStr = None
|
43405
43408
|
self._OwnerUserIdsStr = None
|
43409
|
+
self._EnvType = None
|
43406
43410
|
|
43407
43411
|
@property
|
43408
43412
|
def Name(self):
|
@@ -43628,6 +43632,14 @@ class OrganizationalFunction(AbstractModel):
|
|
43628
43632
|
def OwnerUserIdsStr(self, OwnerUserIdsStr):
|
43629
43633
|
self._OwnerUserIdsStr = OwnerUserIdsStr
|
43630
43634
|
|
43635
|
+
@property
|
43636
|
+
def EnvType(self):
|
43637
|
+
return self._EnvType
|
43638
|
+
|
43639
|
+
@EnvType.setter
|
43640
|
+
def EnvType(self, EnvType):
|
43641
|
+
self._EnvType = EnvType
|
43642
|
+
|
43631
43643
|
|
43632
43644
|
def _deserialize(self, params):
|
43633
43645
|
self._Name = params.get("Name")
|
@@ -43663,6 +43675,7 @@ class OrganizationalFunction(AbstractModel):
|
|
43663
43675
|
self._Tag = params.get("Tag")
|
43664
43676
|
self._OperatorUserIdsStr = params.get("OperatorUserIdsStr")
|
43665
43677
|
self._OwnerUserIdsStr = params.get("OwnerUserIdsStr")
|
43678
|
+
self._EnvType = params.get("EnvType")
|
43666
43679
|
memeber_set = set(params.keys())
|
43667
43680
|
for name, value in vars(self).items():
|
43668
43681
|
property_name = name[1:]
|
{tencentcloud_sdk_python-3.0.1196.dist-info → tencentcloud_sdk_python-3.0.1197.dist-info}/RECORD
RENAMED
@@ -50,7 +50,7 @@ QcloudApi/modules/vod.py,sha256=l05_qYx0l5bq6LJ8mAX2YO3pRXzxY3JMdDHV1N_SRKE,679
|
|
50
50
|
QcloudApi/modules/vpc.py,sha256=JBiNpcnrAwf_UJ_UdpxQybKeCTfeveJ9R1B-vO1_w_U,679
|
51
51
|
QcloudApi/modules/wenzhi.py,sha256=hr1rRLU8TxxSfejMqV2O4alO_yXF3C0tfZMSzziu54Q,685
|
52
52
|
QcloudApi/modules/yunsou.py,sha256=JlgzMjnJaho6axFVhSTAv6DS0HLcjl0LJL02q6qI2yY,685
|
53
|
-
tencentcloud/__init__.py,sha256=
|
53
|
+
tencentcloud/__init__.py,sha256=j0bDsSGhW31Z1g1Vs9trkmbnySd5LO_HAc0BJphNwQM,631
|
54
54
|
tencentcloud/aa/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
55
55
|
tencentcloud/aa/v20200224/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
56
56
|
tencentcloud/aa/v20200224/aa_client.py,sha256=L7P5zpJElo9WoLSkhvLxnfpEGCZ1q2e5Fzx3wLEioAA,2184
|
@@ -262,7 +262,7 @@ tencentcloud/ccc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
262
262
|
tencentcloud/ccc/v20200210/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
263
263
|
tencentcloud/ccc/v20200210/ccc_client.py,sha256=4xxdgvjXjvvUn4OpVYdEwV5vLo4omeJCB7nJ8Caa-dw,54871
|
264
264
|
tencentcloud/ccc/v20200210/errorcodes.py,sha256=TDZ6CztQMJkwo2sphqrixg_bNZc7q-RZxfKEq6NRRMw,5516
|
265
|
-
tencentcloud/ccc/v20200210/models.py,sha256=
|
265
|
+
tencentcloud/ccc/v20200210/models.py,sha256=6k3n_mbqmudPCBtMELU1806ivUHucnm_FMEqklABneI,338400
|
266
266
|
tencentcloud/cdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
267
267
|
tencentcloud/cdb/v20170320/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
268
268
|
tencentcloud/cdb/v20170320/cdb_client.py,sha256=aGIuGSePIVc-07E5XD6bhOuBnSRvn9TXW3QbEDmP_LE,168228
|
@@ -317,7 +317,7 @@ tencentcloud/cfw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
317
317
|
tencentcloud/cfw/v20190904/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
318
318
|
tencentcloud/cfw/v20190904/cfw_client.py,sha256=ENaeC81-O-W-w5tXjYKchAE_7NOwUa0QzMEDlvMseQA,104089
|
319
319
|
tencentcloud/cfw/v20190904/errorcodes.py,sha256=2y2EJLTrMm-Ru0J3RAq8x59OHTtWQrRQMTQOf3_D1v0,1836
|
320
|
-
tencentcloud/cfw/v20190904/models.py,sha256=
|
320
|
+
tencentcloud/cfw/v20190904/models.py,sha256=xraKVYLe9_f264QFOX4-xtaggV4RzqeYwYrft8NxIDc,604856
|
321
321
|
tencentcloud/chdfs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
322
322
|
tencentcloud/chdfs/v20190718/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
323
323
|
tencentcloud/chdfs/v20190718/chdfs_client.py,sha256=Rs7ao2yC5zWwgkwE0eEzhzpW-1ZWQD695AhlXe_LfZE,28126
|
@@ -383,9 +383,9 @@ tencentcloud/cloudstudio/v20230508/errorcodes.py,sha256=PGo2Rfu82U_OL4kWfErtQclB
|
|
383
383
|
tencentcloud/cloudstudio/v20230508/models.py,sha256=HJvFETbu7Sag5bL_8M9CobfJqfH-ZK-kFjDogRi8vyg,36611
|
384
384
|
tencentcloud/cls/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
385
385
|
tencentcloud/cls/v20201016/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
386
|
-
tencentcloud/cls/v20201016/cls_client.py,sha256=
|
386
|
+
tencentcloud/cls/v20201016/cls_client.py,sha256=dBEAtF0VSKb6Cf9uSRpF6voV_oNxWUj0TWjmErYCtrM,96380
|
387
387
|
tencentcloud/cls/v20201016/errorcodes.py,sha256=DA-WVSxt_AIKZrzHmd_UyXAyamqGSvILR_cfD16msH4,11155
|
388
|
-
tencentcloud/cls/v20201016/models.py,sha256=
|
388
|
+
tencentcloud/cls/v20201016/models.py,sha256=pRh1HC4o480rspEQaDTlOFaLFs3Nv7IIKCj2EaUj2zE,663205
|
389
389
|
tencentcloud/cme/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
390
390
|
tencentcloud/cme/v20191029/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
391
391
|
tencentcloud/cme/v20191029/cme_client.py,sha256=8p6sB5c5yqbFXsuoRE-tpGvaE0CwqzgwzEimXV_CUGw,55451
|
@@ -484,7 +484,7 @@ tencentcloud/dbbrain/v20191016/models.py,sha256=MjeSEX69xOQbyJ2HbgiFEkEnt5oJxokR
|
|
484
484
|
tencentcloud/dbbrain/v20210527/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
485
485
|
tencentcloud/dbbrain/v20210527/dbbrain_client.py,sha256=haKd0OEiHaNkpQHpmfDOLpUXxKA2V9r8_5DwZ-X1-34,62076
|
486
486
|
tencentcloud/dbbrain/v20210527/errorcodes.py,sha256=1_O1MV43gQWvTMJGz66l4BgfmMXaz2EI_v069aadx0E,2143
|
487
|
-
tencentcloud/dbbrain/v20210527/models.py,sha256=
|
487
|
+
tencentcloud/dbbrain/v20210527/models.py,sha256=9cs6X6XfOmOF-PoqkanA_IZckLkEBdeMOCAMmmf7yX4,396999
|
488
488
|
tencentcloud/dbdc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
489
489
|
tencentcloud/dbdc/v20201029/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
490
490
|
tencentcloud/dbdc/v20201029/dbdc_client.py,sha256=u0LObYXKo57Z9dUOqLMt36POqXlxiM3UA4PoKtJxZS4,6439
|
@@ -591,8 +591,8 @@ tencentcloud/es/v20180416/models.py,sha256=-i32wrdsrgQ37QVL2bDdmA5gQ99SU1pbKX7K8
|
|
591
591
|
tencentcloud/ess/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
592
592
|
tencentcloud/ess/v20201111/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
593
593
|
tencentcloud/ess/v20201111/errorcodes.py,sha256=2n89U4czb0w4J8VyN7uMdYmbK8tGlK8nJHuVZbGrKRg,25736
|
594
|
-
tencentcloud/ess/v20201111/ess_client.py,sha256=
|
595
|
-
tencentcloud/ess/v20201111/models.py,sha256=
|
594
|
+
tencentcloud/ess/v20201111/ess_client.py,sha256=u6gKXpe00ZgcvX93q4Bl1MBVWayvgXwn7pLckqI9wMg,146474
|
595
|
+
tencentcloud/ess/v20201111/models.py,sha256=E3NoesEbEcc1BL3xV7N049x95bN_tI01wk243v1KYGU,854122
|
596
596
|
tencentcloud/essbasic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
597
597
|
tencentcloud/essbasic/v20201222/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
598
598
|
tencentcloud/essbasic/v20201222/errorcodes.py,sha256=cZPs0vLmArRFQoZqxM4alb0WeBF9f0V0IHmt65dUdxs,5392
|
@@ -601,7 +601,7 @@ tencentcloud/essbasic/v20201222/models.py,sha256=Q2E6jmVT1emRziwRN-qj8XpdzpxvqqH
|
|
601
601
|
tencentcloud/essbasic/v20210526/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
602
602
|
tencentcloud/essbasic/v20210526/errorcodes.py,sha256=L1_0J4AOPtBTgtVqauXq0aVisXRe03bOUWFB0QCnXRs,18219
|
603
603
|
tencentcloud/essbasic/v20210526/essbasic_client.py,sha256=n7ZOo530PrNmUjBj8EVTZ36USiMVdI7yogl8Nq_qlxA,142256
|
604
|
-
tencentcloud/essbasic/v20210526/models.py,sha256=
|
604
|
+
tencentcloud/essbasic/v20210526/models.py,sha256=zzXg8POFQFdOkF02RYzX5V019E3Ka5Cri8X-sHwfroI,762476
|
605
605
|
tencentcloud/facefusion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
606
606
|
tencentcloud/facefusion/v20181201/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
607
607
|
tencentcloud/facefusion/v20181201/errorcodes.py,sha256=v269JghsRzIpaQbiHgyqn8wKNfvjYkVM7SjaPBRQYPs,5731
|
@@ -680,7 +680,7 @@ tencentcloud/hunyuan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hS
|
|
680
680
|
tencentcloud/hunyuan/v20230901/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
681
681
|
tencentcloud/hunyuan/v20230901/errorcodes.py,sha256=IWgQkpe5W36F9wcH98DZndBAy_JYjVaJnYIKseLae6Q,2032
|
682
682
|
tencentcloud/hunyuan/v20230901/hunyuan_client.py,sha256=rvu-ml2PcGr1zvuQ6m2v-rT5kSPLZs2R36S_9yvLoCc,8673
|
683
|
-
tencentcloud/hunyuan/v20230901/models.py,sha256=
|
683
|
+
tencentcloud/hunyuan/v20230901/models.py,sha256=FoO4qaywI3QEeNIkR_Vt1ZzBgB9TuabAtS8sXb8yO8Y,55368
|
684
684
|
tencentcloud/iai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
685
685
|
tencentcloud/iai/v20180301/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
686
686
|
tencentcloud/iai/v20180301/errorcodes.py,sha256=xzb_jVEPBY2KTTJJcsktqdNxS6Bz5-wq8ufnGgMmMX8,11999
|
@@ -876,12 +876,12 @@ tencentcloud/mongodb/v20180408/models.py,sha256=J-4PKHcnuJueHQ6YfrAHugV3ImK_jrgn
|
|
876
876
|
tencentcloud/mongodb/v20180408/mongodb_client.py,sha256=LPLvUOeg8pyXAn1k5RdZaqWrnYSQ0aXJ-ioTuE92R3Q,13654
|
877
877
|
tencentcloud/mongodb/v20190725/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
878
878
|
tencentcloud/mongodb/v20190725/errorcodes.py,sha256=gVLZqB0hb5mcc2Bc0RDZd0xlLuZymXVHOYCuAsciIfE,8238
|
879
|
-
tencentcloud/mongodb/v20190725/models.py,sha256=
|
880
|
-
tencentcloud/mongodb/v20190725/mongodb_client.py,sha256=
|
879
|
+
tencentcloud/mongodb/v20190725/models.py,sha256=VgFb31t9WrgTw1eHO92PdRiLmBDhLO7GOiGWqrgC8-s,307878
|
880
|
+
tencentcloud/mongodb/v20190725/mongodb_client.py,sha256=KDC8KMdk1ZetJ3yh_2jgd_8KicBLfbKwoTlioSH-lBA,50089
|
881
881
|
tencentcloud/monitor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
882
882
|
tencentcloud/monitor/v20180724/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
883
883
|
tencentcloud/monitor/v20180724/errorcodes.py,sha256=dukIL6njXDrTpTbojusf4bCgdQtN8E69_kYRXrsrpuU,10438
|
884
|
-
tencentcloud/monitor/v20180724/models.py,sha256=
|
884
|
+
tencentcloud/monitor/v20180724/models.py,sha256=bHObB4sO6SVuEbr_DR4cXRsI8c0bfI5GlR3XJg4J5Yw,949896
|
885
885
|
tencentcloud/monitor/v20180724/monitor_client.py,sha256=a7CPYYNV0C04Nkquzs1NlivIpjYYWCQCuD5CuaU-D64,153728
|
886
886
|
tencentcloud/mps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
887
887
|
tencentcloud/mps/v20190612/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -926,7 +926,7 @@ tencentcloud/oceanus/v20190422/oceanus_client.py,sha256=WrNxEBxvdzq4OBK9Zd8H3uLJ
|
|
926
926
|
tencentcloud/ocr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
927
927
|
tencentcloud/ocr/v20181119/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
928
928
|
tencentcloud/ocr/v20181119/errorcodes.py,sha256=zB_fK0zPn6XUMFcH7nmaLeonyqUHqu0m9CZrX8yb6pE,6678
|
929
|
-
tencentcloud/ocr/v20181119/models.py,sha256=
|
929
|
+
tencentcloud/ocr/v20181119/models.py,sha256=tT3qGvGs8iGjFjS5v4JyTWNitYyEtD05864he32lX5E,958477
|
930
930
|
tencentcloud/ocr/v20181119/ocr_client.py,sha256=L59aeSMFvA9phm0DpsSh6GVeYRCq7EEVaYw9nor0H3A,117940
|
931
931
|
tencentcloud/omics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
932
932
|
tencentcloud/omics/v20221128/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -975,7 +975,7 @@ tencentcloud/rce/v20201103/rce_client.py,sha256=HIwYdqWmTYoWccklsPSzZB7AbEuXi5qr
|
|
975
975
|
tencentcloud/redis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
976
976
|
tencentcloud/redis/v20180412/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
977
977
|
tencentcloud/redis/v20180412/errorcodes.py,sha256=WK4ma6-bD4uo_6-uEMOkKjCVPpu4IEZkrONWPc0pf-k,12533
|
978
|
-
tencentcloud/redis/v20180412/models.py,sha256=
|
978
|
+
tencentcloud/redis/v20180412/models.py,sha256=SwGyIiFrLEV9hUd_kCZ5nr_V2PVAlcgG85VhzngyS8U,527998
|
979
979
|
tencentcloud/redis/v20180412/redis_client.py,sha256=7WNXJGBz2XmhN3Z_CmyJvx0FKsSjZjswaguBOKOYelA,97833
|
980
980
|
tencentcloud/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
981
981
|
tencentcloud/region/v20220627/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1392,8 +1392,8 @@ tencentcloud/vod/v20180717/models.py,sha256=jw6YFpI1R8j2y0Y4uPI9YM8GDsBGwcFy6gvn
|
|
1392
1392
|
tencentcloud/vod/v20180717/vod_client.py,sha256=PW6XKUtH7dCyiEkrG0xJKVeZwwK9FuKROf8XEJ4qLu8,202886
|
1393
1393
|
tencentcloud/vpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1394
1394
|
tencentcloud/vpc/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1395
|
-
tencentcloud/vpc/v20170312/errorcodes.py,sha256
|
1396
|
-
tencentcloud/vpc/v20170312/models.py,sha256=
|
1395
|
+
tencentcloud/vpc/v20170312/errorcodes.py,sha256=5Hf1F7Fb42z5NDO4PLYYWWJdxjXnNYPCWvvrWOWdCqI,51466
|
1396
|
+
tencentcloud/vpc/v20170312/models.py,sha256=ifhf3nMugqtKqcjf3aMxisHhEqfKLgiXGK1L8uQppJI,1596283
|
1397
1397
|
tencentcloud/vpc/v20170312/vpc_client.py,sha256=J-fVO90xgOjmr-JhnUs99jD7cRQfdsXfyV3AZu5pG6A,381268
|
1398
1398
|
tencentcloud/vrs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1399
1399
|
tencentcloud/vrs/v20200824/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1408,7 +1408,7 @@ tencentcloud/vtc/v20240223/vtc_client.py,sha256=wKEl18_qAgYTCSrBP1O-tRzss_0zKwFh
|
|
1408
1408
|
tencentcloud/waf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1409
1409
|
tencentcloud/waf/v20180125/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1410
1410
|
tencentcloud/waf/v20180125/errorcodes.py,sha256=TfdUI69vFYieWMbAHQ3DdrM-F4M7ZB-zYAbO5wyYNto,6152
|
1411
|
-
tencentcloud/waf/v20180125/models.py,sha256=
|
1411
|
+
tencentcloud/waf/v20180125/models.py,sha256=KuHW1MpPUTnWqRv1sK94zbv7fRkcFkDdA6XPU5Mz39U,821939
|
1412
1412
|
tencentcloud/waf/v20180125/waf_client.py,sha256=9k5gFwdFtkDPswVEr35h0Yru3flMdyWbiUcbIubZoJ4,129357
|
1413
1413
|
tencentcloud/wav/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1414
1414
|
tencentcloud/wav/v20210129/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1418,7 +1418,7 @@ tencentcloud/wav/v20210129/wav_client.py,sha256=UihFmkJEfK6tTfxFgAop0q0bs9ODjlCv
|
|
1418
1418
|
tencentcloud/wedata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1419
1419
|
tencentcloud/wedata/v20210820/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1420
1420
|
tencentcloud/wedata/v20210820/errorcodes.py,sha256=ryPsvuqhHS6hwiPAaA33r06CuR4_FVCg9t__9nqzPz4,3643
|
1421
|
-
tencentcloud/wedata/v20210820/models.py,sha256=
|
1421
|
+
tencentcloud/wedata/v20210820/models.py,sha256=3fTYs0kFBoSW6ANTW5XusziqXHtn6d_YARTXq5XOdqM,1807206
|
1422
1422
|
tencentcloud/wedata/v20210820/wedata_client.py,sha256=9xbNe9FlHCG0sniAGZEYvpw0fknIR-H9OBJPG_y6JgQ,207806
|
1423
1423
|
tencentcloud/weilingwith/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1424
1424
|
tencentcloud/weilingwith/v20230427/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1454,8 +1454,8 @@ tencentcloud/yunsou/v20191115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
1454
1454
|
tencentcloud/yunsou/v20191115/errorcodes.py,sha256=zB4-XPxmvEhgHoLsKlbayJVRLEagPDcs-UAheVZCoAc,1301
|
1455
1455
|
tencentcloud/yunsou/v20191115/models.py,sha256=sNTR9ixO8CV9yKQahrhOsEJlxOK5d7aXBoIBIPxfJsQ,23137
|
1456
1456
|
tencentcloud/yunsou/v20191115/yunsou_client.py,sha256=ly73Hr8rGamWa6AAvQjurKgd4L83PRY5WjcDv4ziQC8,2741
|
1457
|
-
tencentcloud_sdk_python-3.0.
|
1458
|
-
tencentcloud_sdk_python-3.0.
|
1459
|
-
tencentcloud_sdk_python-3.0.
|
1460
|
-
tencentcloud_sdk_python-3.0.
|
1461
|
-
tencentcloud_sdk_python-3.0.
|
1457
|
+
tencentcloud_sdk_python-3.0.1197.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
|
1458
|
+
tencentcloud_sdk_python-3.0.1197.dist-info/METADATA,sha256=KsbjR6BlHBd_JnUEe5T5_JYDp9JdOgyoFUlAWnNZ5U0,1511
|
1459
|
+
tencentcloud_sdk_python-3.0.1197.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
1460
|
+
tencentcloud_sdk_python-3.0.1197.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
|
1461
|
+
tencentcloud_sdk_python-3.0.1197.dist-info/RECORD,,
|
{tencentcloud_sdk_python-3.0.1196.dist-info → tencentcloud_sdk_python-3.0.1197.dist-info}/LICENSE
RENAMED
File without changes
|
{tencentcloud_sdk_python-3.0.1196.dist-info → tencentcloud_sdk_python-3.0.1197.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|