tencentcloud-sdk-python-intl-en 3.0.1255__py2.py3-none-any.whl → 3.0.1257__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/dnspod/v20210323/dnspod_client.py +23 -0
- tencentcloud/dnspod/v20210323/errorcodes.py +6 -0
- tencentcloud/dnspod/v20210323/models.py +85 -0
- tencentcloud/lighthouse/v20200324/errorcodes.py +2 -2
- tencentcloud/sqlserver/v20180328/models.py +95 -80
- {tencentcloud_sdk_python_intl_en-3.0.1255.dist-info → tencentcloud_sdk_python_intl_en-3.0.1257.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1255.dist-info → tencentcloud_sdk_python_intl_en-3.0.1257.dist-info}/RECORD +10 -10
- {tencentcloud_sdk_python_intl_en-3.0.1255.dist-info → tencentcloud_sdk_python_intl_en-3.0.1257.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1255.dist-info → tencentcloud_sdk_python_intl_en-3.0.1257.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -118,6 +118,29 @@ class DnspodClient(AbstractClient):
|
|
118
118
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
119
119
|
|
120
120
|
|
121
|
+
def CreatePackageOrder(self, request):
|
122
|
+
"""This API is used to enable a paid plan on the international website.
|
123
|
+
|
124
|
+
:param request: Request instance for CreatePackageOrder.
|
125
|
+
:type request: :class:`tencentcloud.dnspod.v20210323.models.CreatePackageOrderRequest`
|
126
|
+
:rtype: :class:`tencentcloud.dnspod.v20210323.models.CreatePackageOrderResponse`
|
127
|
+
|
128
|
+
"""
|
129
|
+
try:
|
130
|
+
params = request._serialize()
|
131
|
+
headers = request.headers
|
132
|
+
body = self.call("CreatePackageOrder", params, headers=headers)
|
133
|
+
response = json.loads(body)
|
134
|
+
model = models.CreatePackageOrderResponse()
|
135
|
+
model._deserialize(response["Response"])
|
136
|
+
return model
|
137
|
+
except Exception as e:
|
138
|
+
if isinstance(e, TencentCloudSDKException):
|
139
|
+
raise
|
140
|
+
else:
|
141
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
142
|
+
|
143
|
+
|
121
144
|
def CreateRecord(self, request):
|
122
145
|
"""This API is used to add a record.
|
123
146
|
|
@@ -50,12 +50,18 @@ FAILEDOPERATION_LOGINAREANOTALLOWED = 'FailedOperation.LoginAreaNotAllowed'
|
|
50
50
|
# Login failed. Check whether the account and password are correct.
|
51
51
|
FAILEDOPERATION_LOGINFAILED = 'FailedOperation.LoginFailed'
|
52
52
|
|
53
|
+
# Failed to get the balance of the international account or no card is bound.
|
54
|
+
FAILEDOPERATION_NOTBINDCREDITCARD = 'FailedOperation.NotBindCreditCard'
|
55
|
+
|
53
56
|
# You are not the domain owner.
|
54
57
|
FAILEDOPERATION_NOTDOMAINOWNER = 'FailedOperation.NotDomainOwner'
|
55
58
|
|
56
59
|
# Your account identity has not been verified. Complete identity verification first before performing this operation.
|
57
60
|
FAILEDOPERATION_NOTREALNAMEDUSER = 'FailedOperation.NotRealNamedUser'
|
58
61
|
|
62
|
+
# Postpaid billing account not opened.
|
63
|
+
FAILEDOPERATION_POSTPAYPAYMENTNOTOPEN = 'FailedOperation.PostPayPaymentNotOpen'
|
64
|
+
|
59
65
|
# The number of requests is currently unavailable. Try again later.
|
60
66
|
FAILEDOPERATION_TEMPORARYERROR = 'FailedOperation.TemporaryError'
|
61
67
|
|
@@ -1157,6 +1157,91 @@ class CreateDomainResponse(AbstractModel):
|
|
1157
1157
|
self._RequestId = params.get("RequestId")
|
1158
1158
|
|
1159
1159
|
|
1160
|
+
class CreatePackageOrderRequest(AbstractModel):
|
1161
|
+
"""CreatePackageOrder request structure.
|
1162
|
+
|
1163
|
+
"""
|
1164
|
+
|
1165
|
+
def __init__(self):
|
1166
|
+
r"""
|
1167
|
+
:param _Domain: Domain
|
1168
|
+
:type Domain: str
|
1169
|
+
:param _Grade: Valid options for the package version are as follows:
|
1170
|
+
DPG_PROFESSIONAL
|
1171
|
+
DPG_ENTERPRISE
|
1172
|
+
DPG_ULTIMATE
|
1173
|
+
:type Grade: str
|
1174
|
+
"""
|
1175
|
+
self._Domain = None
|
1176
|
+
self._Grade = None
|
1177
|
+
|
1178
|
+
@property
|
1179
|
+
def Domain(self):
|
1180
|
+
"""Domain
|
1181
|
+
:rtype: str
|
1182
|
+
"""
|
1183
|
+
return self._Domain
|
1184
|
+
|
1185
|
+
@Domain.setter
|
1186
|
+
def Domain(self, Domain):
|
1187
|
+
self._Domain = Domain
|
1188
|
+
|
1189
|
+
@property
|
1190
|
+
def Grade(self):
|
1191
|
+
"""Valid options for the package version are as follows:
|
1192
|
+
DPG_PROFESSIONAL
|
1193
|
+
DPG_ENTERPRISE
|
1194
|
+
DPG_ULTIMATE
|
1195
|
+
:rtype: str
|
1196
|
+
"""
|
1197
|
+
return self._Grade
|
1198
|
+
|
1199
|
+
@Grade.setter
|
1200
|
+
def Grade(self, Grade):
|
1201
|
+
self._Grade = Grade
|
1202
|
+
|
1203
|
+
|
1204
|
+
def _deserialize(self, params):
|
1205
|
+
self._Domain = params.get("Domain")
|
1206
|
+
self._Grade = params.get("Grade")
|
1207
|
+
memeber_set = set(params.keys())
|
1208
|
+
for name, value in vars(self).items():
|
1209
|
+
property_name = name[1:]
|
1210
|
+
if property_name in memeber_set:
|
1211
|
+
memeber_set.remove(property_name)
|
1212
|
+
if len(memeber_set) > 0:
|
1213
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
1214
|
+
|
1215
|
+
|
1216
|
+
|
1217
|
+
class CreatePackageOrderResponse(AbstractModel):
|
1218
|
+
"""CreatePackageOrder response structure.
|
1219
|
+
|
1220
|
+
"""
|
1221
|
+
|
1222
|
+
def __init__(self):
|
1223
|
+
r"""
|
1224
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
1225
|
+
:type RequestId: str
|
1226
|
+
"""
|
1227
|
+
self._RequestId = None
|
1228
|
+
|
1229
|
+
@property
|
1230
|
+
def RequestId(self):
|
1231
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
1232
|
+
:rtype: str
|
1233
|
+
"""
|
1234
|
+
return self._RequestId
|
1235
|
+
|
1236
|
+
@RequestId.setter
|
1237
|
+
def RequestId(self, RequestId):
|
1238
|
+
self._RequestId = RequestId
|
1239
|
+
|
1240
|
+
|
1241
|
+
def _deserialize(self, params):
|
1242
|
+
self._RequestId = params.get("RequestId")
|
1243
|
+
|
1244
|
+
|
1160
1245
|
class CreateRecordBatchDetail(AbstractModel):
|
1161
1246
|
"""Response structure for bulk adding records
|
1162
1247
|
|
@@ -497,7 +497,7 @@ UNAUTHORIZEDOPERATION_MFAEXPIRED = 'UnauthorizedOperation.MFAExpired'
|
|
497
497
|
# MFA does not exist.
|
498
498
|
UNAUTHORIZEDOPERATION_MFANOTFOUND = 'UnauthorizedOperation.MFANotFound'
|
499
499
|
|
500
|
-
# No permission
|
500
|
+
# No permission.
|
501
501
|
UNAUTHORIZEDOPERATION_NOPERMISSION = 'UnauthorizedOperation.NoPermission'
|
502
502
|
|
503
503
|
#
|
@@ -590,7 +590,7 @@ UNSUPPORTEDOPERATION_RESOURCENOTRETURNABLE = 'UnsupportedOperation.ResourceNotRe
|
|
590
590
|
# The snapshot is busy.
|
591
591
|
UNSUPPORTEDOPERATION_SNAPSHOTBUSY = 'UnsupportedOperation.SnapshotBusy'
|
592
592
|
|
593
|
-
# System busy
|
593
|
+
# System busy.
|
594
594
|
UNSUPPORTEDOPERATION_SYSTEMBUSY = 'UnsupportedOperation.SystemBusy'
|
595
595
|
|
596
596
|
# TAT agent on the instance is not online.
|
@@ -3174,11 +3174,11 @@ class CreateCloudReadOnlyDBInstancesRequest(AbstractModel):
|
|
3174
3174
|
:type Zone: str
|
3175
3175
|
:param _ReadOnlyGroupType: Read-only group types. Valid values: `1` (each read-only replica is placed in one auto-created read-only group), `2` (all read-only replicas are placed in one auto-created read-only group), `3` (all read-only replicas are placed in one existing read-only group).
|
3176
3176
|
:type ReadOnlyGroupType: int
|
3177
|
-
:param _Memory: Instance memory size in GB
|
3177
|
+
:param _Memory: Instance memory size in GB.
|
3178
3178
|
:type Memory: int
|
3179
|
-
:param _Storage: Instance disk size in GB
|
3179
|
+
:param _Storage: Instance disk size in GB.
|
3180
3180
|
:type Storage: int
|
3181
|
-
:param _Cpu: Number of instance cores
|
3181
|
+
:param _Cpu: Number of instance cores.
|
3182
3182
|
:type Cpu: int
|
3183
3183
|
:param _MachineType: The host type of purchased instance. Valid values: `CLOUD_HSSD` (virtual machine with enhanced SSD), `CLOUD_TSSD` (virtual machine with ulTra SSD), `CLOUD_BSSD` (virtual machine with balanced SSD).
|
3184
3184
|
:type MachineType: str
|
@@ -3208,14 +3208,16 @@ class CreateCloudReadOnlyDBInstancesRequest(AbstractModel):
|
|
3208
3208
|
:type SecurityGroupList: list of str
|
3209
3209
|
:param _AutoVoucher: Whether to automatically use voucher. Valid values: `0` (no, default), `1` (yes).
|
3210
3210
|
:type AutoVoucher: int
|
3211
|
-
:param _VoucherIds: Array of voucher IDs (currently, only one voucher can be used per order)
|
3211
|
+
:param _VoucherIds: Array of voucher IDs (currently, only one voucher can be used per order).
|
3212
3212
|
:type VoucherIds: list of str
|
3213
|
-
:param _ResourceTags: Tags associated with the instances to be created
|
3213
|
+
:param _ResourceTags: Tags associated with the instances to be created.
|
3214
3214
|
:type ResourceTags: list of ResourceTag
|
3215
|
-
:param _Collation: Collation of system character sets. Default value: Chinese_PRC_CI_AS
|
3215
|
+
:param _Collation: Collation of system character sets. Default value: Chinese_PRC_CI_AS.
|
3216
3216
|
:type Collation: str
|
3217
|
-
:param _TimeZone: System time zone. Default value: `China Standard Time
|
3217
|
+
:param _TimeZone: System time zone. Default value: `China Standard Time`.
|
3218
3218
|
:type TimeZone: str
|
3219
|
+
:param _DiskEncryptFlag: Disk encryption identification, 0 - no encryption, 1 - encryption.
|
3220
|
+
:type DiskEncryptFlag: int
|
3219
3221
|
"""
|
3220
3222
|
self._InstanceId = None
|
3221
3223
|
self._Zone = None
|
@@ -3241,6 +3243,7 @@ class CreateCloudReadOnlyDBInstancesRequest(AbstractModel):
|
|
3241
3243
|
self._ResourceTags = None
|
3242
3244
|
self._Collation = None
|
3243
3245
|
self._TimeZone = None
|
3246
|
+
self._DiskEncryptFlag = None
|
3244
3247
|
|
3245
3248
|
@property
|
3246
3249
|
def InstanceId(self):
|
@@ -3277,7 +3280,7 @@ class CreateCloudReadOnlyDBInstancesRequest(AbstractModel):
|
|
3277
3280
|
|
3278
3281
|
@property
|
3279
3282
|
def Memory(self):
|
3280
|
-
"""Instance memory size in GB
|
3283
|
+
"""Instance memory size in GB.
|
3281
3284
|
:rtype: int
|
3282
3285
|
"""
|
3283
3286
|
return self._Memory
|
@@ -3288,7 +3291,7 @@ class CreateCloudReadOnlyDBInstancesRequest(AbstractModel):
|
|
3288
3291
|
|
3289
3292
|
@property
|
3290
3293
|
def Storage(self):
|
3291
|
-
"""Instance disk size in GB
|
3294
|
+
"""Instance disk size in GB.
|
3292
3295
|
:rtype: int
|
3293
3296
|
"""
|
3294
3297
|
return self._Storage
|
@@ -3299,7 +3302,7 @@ class CreateCloudReadOnlyDBInstancesRequest(AbstractModel):
|
|
3299
3302
|
|
3300
3303
|
@property
|
3301
3304
|
def Cpu(self):
|
3302
|
-
"""Number of instance cores
|
3305
|
+
"""Number of instance cores.
|
3303
3306
|
:rtype: int
|
3304
3307
|
"""
|
3305
3308
|
return self._Cpu
|
@@ -3464,7 +3467,7 @@ class CreateCloudReadOnlyDBInstancesRequest(AbstractModel):
|
|
3464
3467
|
|
3465
3468
|
@property
|
3466
3469
|
def VoucherIds(self):
|
3467
|
-
"""Array of voucher IDs (currently, only one voucher can be used per order)
|
3470
|
+
"""Array of voucher IDs (currently, only one voucher can be used per order).
|
3468
3471
|
:rtype: list of str
|
3469
3472
|
"""
|
3470
3473
|
return self._VoucherIds
|
@@ -3475,7 +3478,7 @@ class CreateCloudReadOnlyDBInstancesRequest(AbstractModel):
|
|
3475
3478
|
|
3476
3479
|
@property
|
3477
3480
|
def ResourceTags(self):
|
3478
|
-
"""Tags associated with the instances to be created
|
3481
|
+
"""Tags associated with the instances to be created.
|
3479
3482
|
:rtype: list of ResourceTag
|
3480
3483
|
"""
|
3481
3484
|
return self._ResourceTags
|
@@ -3486,7 +3489,7 @@ class CreateCloudReadOnlyDBInstancesRequest(AbstractModel):
|
|
3486
3489
|
|
3487
3490
|
@property
|
3488
3491
|
def Collation(self):
|
3489
|
-
"""Collation of system character sets. Default value: Chinese_PRC_CI_AS
|
3492
|
+
"""Collation of system character sets. Default value: Chinese_PRC_CI_AS.
|
3490
3493
|
:rtype: str
|
3491
3494
|
"""
|
3492
3495
|
return self._Collation
|
@@ -3497,7 +3500,7 @@ class CreateCloudReadOnlyDBInstancesRequest(AbstractModel):
|
|
3497
3500
|
|
3498
3501
|
@property
|
3499
3502
|
def TimeZone(self):
|
3500
|
-
"""System time zone. Default value: `China Standard Time
|
3503
|
+
"""System time zone. Default value: `China Standard Time`.
|
3501
3504
|
:rtype: str
|
3502
3505
|
"""
|
3503
3506
|
return self._TimeZone
|
@@ -3506,6 +3509,17 @@ class CreateCloudReadOnlyDBInstancesRequest(AbstractModel):
|
|
3506
3509
|
def TimeZone(self, TimeZone):
|
3507
3510
|
self._TimeZone = TimeZone
|
3508
3511
|
|
3512
|
+
@property
|
3513
|
+
def DiskEncryptFlag(self):
|
3514
|
+
"""Disk encryption identification, 0 - no encryption, 1 - encryption.
|
3515
|
+
:rtype: int
|
3516
|
+
"""
|
3517
|
+
return self._DiskEncryptFlag
|
3518
|
+
|
3519
|
+
@DiskEncryptFlag.setter
|
3520
|
+
def DiskEncryptFlag(self, DiskEncryptFlag):
|
3521
|
+
self._DiskEncryptFlag = DiskEncryptFlag
|
3522
|
+
|
3509
3523
|
|
3510
3524
|
def _deserialize(self, params):
|
3511
3525
|
self._InstanceId = params.get("InstanceId")
|
@@ -3537,6 +3551,7 @@ class CreateCloudReadOnlyDBInstancesRequest(AbstractModel):
|
|
3537
3551
|
self._ResourceTags.append(obj)
|
3538
3552
|
self._Collation = params.get("Collation")
|
3539
3553
|
self._TimeZone = params.get("TimeZone")
|
3554
|
+
self._DiskEncryptFlag = params.get("DiskEncryptFlag")
|
3540
3555
|
memeber_set = set(params.keys())
|
3541
3556
|
for name, value in vars(self).items():
|
3542
3557
|
property_name = name[1:]
|
@@ -3554,7 +3569,7 @@ class CreateCloudReadOnlyDBInstancesResponse(AbstractModel):
|
|
3554
3569
|
|
3555
3570
|
def __init__(self):
|
3556
3571
|
r"""
|
3557
|
-
:param _DealNames: Order name in array
|
3572
|
+
:param _DealNames: Order name in array.
|
3558
3573
|
:type DealNames: list of str
|
3559
3574
|
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
3560
3575
|
:type RequestId: str
|
@@ -3564,7 +3579,7 @@ class CreateCloudReadOnlyDBInstancesResponse(AbstractModel):
|
|
3564
3579
|
|
3565
3580
|
@property
|
3566
3581
|
def DealNames(self):
|
3567
|
-
"""Order name in array
|
3582
|
+
"""Order name in array.
|
3568
3583
|
:rtype: list of str
|
3569
3584
|
"""
|
3570
3585
|
return self._DealNames
|
@@ -4447,49 +4462,49 @@ class CreateReadOnlyDBInstancesRequest(AbstractModel):
|
|
4447
4462
|
|
4448
4463
|
def __init__(self):
|
4449
4464
|
r"""
|
4450
|
-
:param _InstanceId:
|
4465
|
+
:param _InstanceId: Instance ID in the format of `mssql-3l3fgqn7`.
|
4451
4466
|
:type InstanceId: str
|
4452
|
-
:param _Zone:
|
4467
|
+
:param _Zone: Instance AZ, such as `ap-guangzhou-1` (Guangzhou Zone 1). Purchasable AZs for an instance can be obtained through the`DescribeZones` API.
|
4453
4468
|
:type Zone: str
|
4454
|
-
:param _ReadOnlyGroupType:
|
4469
|
+
:param _ReadOnlyGroupType: Read-only group types. Valid values: `1` (each read-only replica is placed in one auto-created read-only group), `2` (all read-only replicas are placed in one auto-created read-only group), `3` (all read-only replicas are placed in one existing read-only group).
|
4455
4470
|
:type ReadOnlyGroupType: int
|
4456
|
-
:param _Memory:
|
4471
|
+
:param _Memory: Instance memory size in GB.
|
4457
4472
|
:type Memory: int
|
4458
|
-
:param _Storage:
|
4473
|
+
:param _Storage: Instance disk size in GB.
|
4459
4474
|
:type Storage: int
|
4460
|
-
:param _ReadOnlyGroupForcedUpgrade:
|
4475
|
+
:param _ReadOnlyGroupForcedUpgrade: Valid values: `0` (not upgrade the primary instance by default), `1` (upgrade the primary instance to complete the RO deployment). You need to pass in `1` for this parameter and upgrade the primary instance to cluster edition.
|
4461
4476
|
:type ReadOnlyGroupForcedUpgrade: int
|
4462
|
-
:param _ReadOnlyGroupId:
|
4477
|
+
:param _ReadOnlyGroupId: Existing read-only group ID, which is required when `ReadOnlyGroupType` is `3`.
|
4463
4478
|
:type ReadOnlyGroupId: str
|
4464
|
-
:param _ReadOnlyGroupName:
|
4479
|
+
:param _ReadOnlyGroupName: New read-only group ID, which is required when `ReadOnlyGroupType` is `2`.
|
4465
4480
|
:type ReadOnlyGroupName: str
|
4466
|
-
:param _ReadOnlyGroupIsOfflineDelay:
|
4481
|
+
:param _ReadOnlyGroupIsOfflineDelay: Whether delayed read-only instance removal is enabled in a new read-only group, which is required when `ReadOnlyGroupType` is `2`. Valid values: `1` (enabled), `0` (disabled). The read-only replica will be automatically removed when the delay between it and the primary instance exceeds the threshold.
|
4467
4482
|
:type ReadOnlyGroupIsOfflineDelay: int
|
4468
|
-
:param _ReadOnlyGroupMaxDelayTime:
|
4483
|
+
:param _ReadOnlyGroupMaxDelayTime: The delay threshold for a new read-only group, which is required when `ReadOnlyGroupType` is `2` and `ReadOnlyGroupIsOfflineDelay` is `1`.
|
4469
4484
|
:type ReadOnlyGroupMaxDelayTime: int
|
4470
|
-
:param _ReadOnlyGroupMinInGroup:
|
4485
|
+
:param _ReadOnlyGroupMinInGroup: Minimum number of reserved read-only replicas when the delayed removal is enabled for the new read-only group, which is required when `ReadOnlyGroupType` is `2` and `ReadOnlyGroupIsOfflineDelay` is `1`.
|
4471
4486
|
:type ReadOnlyGroupMinInGroup: int
|
4472
|
-
:param _InstanceChargeType:
|
4487
|
+
:param _InstanceChargeType: Billing mode. Valid values: `PREPAID` (monthly subscription), `POSTPAID` (pay-as-you-go).
|
4473
4488
|
:type InstanceChargeType: str
|
4474
|
-
:param _GoodsNum:
|
4489
|
+
:param _GoodsNum: Number of read-only instances to be purchased this time. Default value: `2`.
|
4475
4490
|
:type GoodsNum: int
|
4476
|
-
:param _SubnetId:
|
4491
|
+
:param _SubnetId: VPC subnet ID in the format of `subnet-bdoe83fa`. Both `SubnetId` and `VpcId` need to be set or unset at the same time.
|
4477
4492
|
:type SubnetId: str
|
4478
|
-
:param _VpcId:
|
4493
|
+
:param _VpcId: VPC ID in the format of `vpc-dsp338hz`. Both `SubnetId` and `VpcId` need to be set or unset at the same time.
|
4479
4494
|
:type VpcId: str
|
4480
|
-
:param _Period:
|
4495
|
+
:param _Period: The purchase period of an instance. Default value: `1` (one month). Maximum value: `48`.
|
4481
4496
|
:type Period: int
|
4482
|
-
:param _SecurityGroupList:
|
4497
|
+
:param _SecurityGroupList: Security group list, which contains security group IDs in the format of `sg-xxx`.
|
4483
4498
|
:type SecurityGroupList: list of str
|
4484
|
-
:param _AutoVoucher:
|
4499
|
+
:param _AutoVoucher: Whether to automatically use voucher. Valid values: `0` (no, default), `1` (yes).
|
4485
4500
|
:type AutoVoucher: int
|
4486
|
-
:param _VoucherIds:
|
4501
|
+
:param _VoucherIds: Array of voucher IDs (currently, only one voucher can be used per order).
|
4487
4502
|
:type VoucherIds: list of str
|
4488
|
-
:param _ResourceTags:
|
4503
|
+
:param _ResourceTags: Tags associated with the instances to be created.
|
4489
4504
|
:type ResourceTags: list of ResourceTag
|
4490
|
-
:param _Collation:
|
4505
|
+
:param _Collation: Collation of system character sets. Default value: Chinese_PRC_CI_AS.
|
4491
4506
|
:type Collation: str
|
4492
|
-
:param _TimeZone:
|
4507
|
+
:param _TimeZone: System time zone. Default value: `China Standard Time`.
|
4493
4508
|
:type TimeZone: str
|
4494
4509
|
"""
|
4495
4510
|
self._InstanceId = None
|
@@ -4517,7 +4532,7 @@ class CreateReadOnlyDBInstancesRequest(AbstractModel):
|
|
4517
4532
|
|
4518
4533
|
@property
|
4519
4534
|
def InstanceId(self):
|
4520
|
-
"""
|
4535
|
+
"""Instance ID in the format of `mssql-3l3fgqn7`.
|
4521
4536
|
:rtype: str
|
4522
4537
|
"""
|
4523
4538
|
return self._InstanceId
|
@@ -4528,7 +4543,7 @@ class CreateReadOnlyDBInstancesRequest(AbstractModel):
|
|
4528
4543
|
|
4529
4544
|
@property
|
4530
4545
|
def Zone(self):
|
4531
|
-
"""
|
4546
|
+
"""Instance AZ, such as `ap-guangzhou-1` (Guangzhou Zone 1). Purchasable AZs for an instance can be obtained through the`DescribeZones` API.
|
4532
4547
|
:rtype: str
|
4533
4548
|
"""
|
4534
4549
|
return self._Zone
|
@@ -4539,7 +4554,7 @@ class CreateReadOnlyDBInstancesRequest(AbstractModel):
|
|
4539
4554
|
|
4540
4555
|
@property
|
4541
4556
|
def ReadOnlyGroupType(self):
|
4542
|
-
"""
|
4557
|
+
"""Read-only group types. Valid values: `1` (each read-only replica is placed in one auto-created read-only group), `2` (all read-only replicas are placed in one auto-created read-only group), `3` (all read-only replicas are placed in one existing read-only group).
|
4543
4558
|
:rtype: int
|
4544
4559
|
"""
|
4545
4560
|
return self._ReadOnlyGroupType
|
@@ -4550,7 +4565,7 @@ class CreateReadOnlyDBInstancesRequest(AbstractModel):
|
|
4550
4565
|
|
4551
4566
|
@property
|
4552
4567
|
def Memory(self):
|
4553
|
-
"""
|
4568
|
+
"""Instance memory size in GB.
|
4554
4569
|
:rtype: int
|
4555
4570
|
"""
|
4556
4571
|
return self._Memory
|
@@ -4561,7 +4576,7 @@ class CreateReadOnlyDBInstancesRequest(AbstractModel):
|
|
4561
4576
|
|
4562
4577
|
@property
|
4563
4578
|
def Storage(self):
|
4564
|
-
"""
|
4579
|
+
"""Instance disk size in GB.
|
4565
4580
|
:rtype: int
|
4566
4581
|
"""
|
4567
4582
|
return self._Storage
|
@@ -4572,7 +4587,7 @@ class CreateReadOnlyDBInstancesRequest(AbstractModel):
|
|
4572
4587
|
|
4573
4588
|
@property
|
4574
4589
|
def ReadOnlyGroupForcedUpgrade(self):
|
4575
|
-
"""
|
4590
|
+
"""Valid values: `0` (not upgrade the primary instance by default), `1` (upgrade the primary instance to complete the RO deployment). You need to pass in `1` for this parameter and upgrade the primary instance to cluster edition.
|
4576
4591
|
:rtype: int
|
4577
4592
|
"""
|
4578
4593
|
return self._ReadOnlyGroupForcedUpgrade
|
@@ -4583,7 +4598,7 @@ class CreateReadOnlyDBInstancesRequest(AbstractModel):
|
|
4583
4598
|
|
4584
4599
|
@property
|
4585
4600
|
def ReadOnlyGroupId(self):
|
4586
|
-
"""
|
4601
|
+
"""Existing read-only group ID, which is required when `ReadOnlyGroupType` is `3`.
|
4587
4602
|
:rtype: str
|
4588
4603
|
"""
|
4589
4604
|
return self._ReadOnlyGroupId
|
@@ -4594,7 +4609,7 @@ class CreateReadOnlyDBInstancesRequest(AbstractModel):
|
|
4594
4609
|
|
4595
4610
|
@property
|
4596
4611
|
def ReadOnlyGroupName(self):
|
4597
|
-
"""
|
4612
|
+
"""New read-only group ID, which is required when `ReadOnlyGroupType` is `2`.
|
4598
4613
|
:rtype: str
|
4599
4614
|
"""
|
4600
4615
|
return self._ReadOnlyGroupName
|
@@ -4605,7 +4620,7 @@ class CreateReadOnlyDBInstancesRequest(AbstractModel):
|
|
4605
4620
|
|
4606
4621
|
@property
|
4607
4622
|
def ReadOnlyGroupIsOfflineDelay(self):
|
4608
|
-
"""
|
4623
|
+
"""Whether delayed read-only instance removal is enabled in a new read-only group, which is required when `ReadOnlyGroupType` is `2`. Valid values: `1` (enabled), `0` (disabled). The read-only replica will be automatically removed when the delay between it and the primary instance exceeds the threshold.
|
4609
4624
|
:rtype: int
|
4610
4625
|
"""
|
4611
4626
|
return self._ReadOnlyGroupIsOfflineDelay
|
@@ -4616,7 +4631,7 @@ class CreateReadOnlyDBInstancesRequest(AbstractModel):
|
|
4616
4631
|
|
4617
4632
|
@property
|
4618
4633
|
def ReadOnlyGroupMaxDelayTime(self):
|
4619
|
-
"""
|
4634
|
+
"""The delay threshold for a new read-only group, which is required when `ReadOnlyGroupType` is `2` and `ReadOnlyGroupIsOfflineDelay` is `1`.
|
4620
4635
|
:rtype: int
|
4621
4636
|
"""
|
4622
4637
|
return self._ReadOnlyGroupMaxDelayTime
|
@@ -4627,7 +4642,7 @@ class CreateReadOnlyDBInstancesRequest(AbstractModel):
|
|
4627
4642
|
|
4628
4643
|
@property
|
4629
4644
|
def ReadOnlyGroupMinInGroup(self):
|
4630
|
-
"""
|
4645
|
+
"""Minimum number of reserved read-only replicas when the delayed removal is enabled for the new read-only group, which is required when `ReadOnlyGroupType` is `2` and `ReadOnlyGroupIsOfflineDelay` is `1`.
|
4631
4646
|
:rtype: int
|
4632
4647
|
"""
|
4633
4648
|
return self._ReadOnlyGroupMinInGroup
|
@@ -4638,7 +4653,7 @@ class CreateReadOnlyDBInstancesRequest(AbstractModel):
|
|
4638
4653
|
|
4639
4654
|
@property
|
4640
4655
|
def InstanceChargeType(self):
|
4641
|
-
"""
|
4656
|
+
"""Billing mode. Valid values: `PREPAID` (monthly subscription), `POSTPAID` (pay-as-you-go).
|
4642
4657
|
:rtype: str
|
4643
4658
|
"""
|
4644
4659
|
return self._InstanceChargeType
|
@@ -4649,7 +4664,7 @@ class CreateReadOnlyDBInstancesRequest(AbstractModel):
|
|
4649
4664
|
|
4650
4665
|
@property
|
4651
4666
|
def GoodsNum(self):
|
4652
|
-
"""
|
4667
|
+
"""Number of read-only instances to be purchased this time. Default value: `2`.
|
4653
4668
|
:rtype: int
|
4654
4669
|
"""
|
4655
4670
|
return self._GoodsNum
|
@@ -4660,7 +4675,7 @@ class CreateReadOnlyDBInstancesRequest(AbstractModel):
|
|
4660
4675
|
|
4661
4676
|
@property
|
4662
4677
|
def SubnetId(self):
|
4663
|
-
"""
|
4678
|
+
"""VPC subnet ID in the format of `subnet-bdoe83fa`. Both `SubnetId` and `VpcId` need to be set or unset at the same time.
|
4664
4679
|
:rtype: str
|
4665
4680
|
"""
|
4666
4681
|
return self._SubnetId
|
@@ -4671,7 +4686,7 @@ class CreateReadOnlyDBInstancesRequest(AbstractModel):
|
|
4671
4686
|
|
4672
4687
|
@property
|
4673
4688
|
def VpcId(self):
|
4674
|
-
"""
|
4689
|
+
"""VPC ID in the format of `vpc-dsp338hz`. Both `SubnetId` and `VpcId` need to be set or unset at the same time.
|
4675
4690
|
:rtype: str
|
4676
4691
|
"""
|
4677
4692
|
return self._VpcId
|
@@ -4682,7 +4697,7 @@ class CreateReadOnlyDBInstancesRequest(AbstractModel):
|
|
4682
4697
|
|
4683
4698
|
@property
|
4684
4699
|
def Period(self):
|
4685
|
-
"""
|
4700
|
+
"""The purchase period of an instance. Default value: `1` (one month). Maximum value: `48`.
|
4686
4701
|
:rtype: int
|
4687
4702
|
"""
|
4688
4703
|
return self._Period
|
@@ -4693,7 +4708,7 @@ class CreateReadOnlyDBInstancesRequest(AbstractModel):
|
|
4693
4708
|
|
4694
4709
|
@property
|
4695
4710
|
def SecurityGroupList(self):
|
4696
|
-
"""
|
4711
|
+
"""Security group list, which contains security group IDs in the format of `sg-xxx`.
|
4697
4712
|
:rtype: list of str
|
4698
4713
|
"""
|
4699
4714
|
return self._SecurityGroupList
|
@@ -4704,7 +4719,7 @@ class CreateReadOnlyDBInstancesRequest(AbstractModel):
|
|
4704
4719
|
|
4705
4720
|
@property
|
4706
4721
|
def AutoVoucher(self):
|
4707
|
-
"""
|
4722
|
+
"""Whether to automatically use voucher. Valid values: `0` (no, default), `1` (yes).
|
4708
4723
|
:rtype: int
|
4709
4724
|
"""
|
4710
4725
|
return self._AutoVoucher
|
@@ -4715,7 +4730,7 @@ class CreateReadOnlyDBInstancesRequest(AbstractModel):
|
|
4715
4730
|
|
4716
4731
|
@property
|
4717
4732
|
def VoucherIds(self):
|
4718
|
-
"""
|
4733
|
+
"""Array of voucher IDs (currently, only one voucher can be used per order).
|
4719
4734
|
:rtype: list of str
|
4720
4735
|
"""
|
4721
4736
|
return self._VoucherIds
|
@@ -4726,7 +4741,7 @@ class CreateReadOnlyDBInstancesRequest(AbstractModel):
|
|
4726
4741
|
|
4727
4742
|
@property
|
4728
4743
|
def ResourceTags(self):
|
4729
|
-
"""
|
4744
|
+
"""Tags associated with the instances to be created.
|
4730
4745
|
:rtype: list of ResourceTag
|
4731
4746
|
"""
|
4732
4747
|
return self._ResourceTags
|
@@ -4737,7 +4752,7 @@ class CreateReadOnlyDBInstancesRequest(AbstractModel):
|
|
4737
4752
|
|
4738
4753
|
@property
|
4739
4754
|
def Collation(self):
|
4740
|
-
"""
|
4755
|
+
"""Collation of system character sets. Default value: Chinese_PRC_CI_AS.
|
4741
4756
|
:rtype: str
|
4742
4757
|
"""
|
4743
4758
|
return self._Collation
|
@@ -4748,7 +4763,7 @@ class CreateReadOnlyDBInstancesRequest(AbstractModel):
|
|
4748
4763
|
|
4749
4764
|
@property
|
4750
4765
|
def TimeZone(self):
|
4751
|
-
"""
|
4766
|
+
"""System time zone. Default value: `China Standard Time`.
|
4752
4767
|
:rtype: str
|
4753
4768
|
"""
|
4754
4769
|
return self._TimeZone
|
@@ -4803,7 +4818,7 @@ class CreateReadOnlyDBInstancesResponse(AbstractModel):
|
|
4803
4818
|
|
4804
4819
|
def __init__(self):
|
4805
4820
|
r"""
|
4806
|
-
:param _DealNames:
|
4821
|
+
:param _DealNames: Order name in array.
|
4807
4822
|
:type DealNames: list of str
|
4808
4823
|
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
4809
4824
|
:type RequestId: str
|
@@ -4813,7 +4828,7 @@ class CreateReadOnlyDBInstancesResponse(AbstractModel):
|
|
4813
4828
|
|
4814
4829
|
@property
|
4815
4830
|
def DealNames(self):
|
4816
|
-
"""
|
4831
|
+
"""Order name in array.
|
4817
4832
|
:rtype: list of str
|
4818
4833
|
"""
|
4819
4834
|
return self._DealNames
|
@@ -8766,13 +8781,13 @@ class DescribeDBInstanceInterRequest(AbstractModel):
|
|
8766
8781
|
r"""
|
8767
8782
|
:param _Limit: The maximum number of results returned per page. Value range: 1-100.
|
8768
8783
|
:type Limit: int
|
8769
|
-
:param _InstanceId: Filter by instance ID
|
8784
|
+
:param _InstanceId: Filter by instance ID.
|
8770
8785
|
:type InstanceId: str
|
8771
8786
|
:param _Status: Filter by status. Valid values: `1` (Enabling interworking IP), `2` (Enabled interworking IP), `3` (Adding to interworking group), `4` (Added to interworking group), `5` (Reclaiming interworking IP), `6` (Reclaimed interworking IP), `7` (Removing from interworking group), `8` (Removed from interworking group).
|
8772
8787
|
:type Status: int
|
8773
|
-
:param _VersionSet: The list of instance version numbers
|
8788
|
+
:param _VersionSet: The list of instance version numbers.
|
8774
8789
|
:type VersionSet: list of str
|
8775
|
-
:param _Zone: Instance AZ ID in the format of ap-guangzhou-
|
8790
|
+
:param _Zone: Instance AZ ID in the format of ap-guangzhou-3.
|
8776
8791
|
:type Zone: str
|
8777
8792
|
:param _Offset: Page number. Default value: `0`.
|
8778
8793
|
:type Offset: int
|
@@ -8797,7 +8812,7 @@ class DescribeDBInstanceInterRequest(AbstractModel):
|
|
8797
8812
|
|
8798
8813
|
@property
|
8799
8814
|
def InstanceId(self):
|
8800
|
-
"""Filter by instance ID
|
8815
|
+
"""Filter by instance ID.
|
8801
8816
|
:rtype: str
|
8802
8817
|
"""
|
8803
8818
|
return self._InstanceId
|
@@ -8819,7 +8834,7 @@ class DescribeDBInstanceInterRequest(AbstractModel):
|
|
8819
8834
|
|
8820
8835
|
@property
|
8821
8836
|
def VersionSet(self):
|
8822
|
-
"""The list of instance version numbers
|
8837
|
+
"""The list of instance version numbers.
|
8823
8838
|
:rtype: list of str
|
8824
8839
|
"""
|
8825
8840
|
return self._VersionSet
|
@@ -8830,7 +8845,7 @@ class DescribeDBInstanceInterRequest(AbstractModel):
|
|
8830
8845
|
|
8831
8846
|
@property
|
8832
8847
|
def Zone(self):
|
8833
|
-
"""Instance AZ ID in the format of ap-guangzhou-
|
8848
|
+
"""Instance AZ ID in the format of ap-guangzhou-3.
|
8834
8849
|
:rtype: str
|
8835
8850
|
"""
|
8836
8851
|
return self._Zone
|
@@ -8875,9 +8890,9 @@ class DescribeDBInstanceInterResponse(AbstractModel):
|
|
8875
8890
|
|
8876
8891
|
def __init__(self):
|
8877
8892
|
r"""
|
8878
|
-
:param _TotalCount: Number of records returned
|
8893
|
+
:param _TotalCount: Number of records returned.
|
8879
8894
|
:type TotalCount: int
|
8880
|
-
:param _InterInstanceSet: Details of instance in the interworking group
|
8895
|
+
:param _InterInstanceSet: Details of instance in the interworking group.
|
8881
8896
|
:type InterInstanceSet: list of InterInstance
|
8882
8897
|
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
8883
8898
|
:type RequestId: str
|
@@ -8888,7 +8903,7 @@ class DescribeDBInstanceInterResponse(AbstractModel):
|
|
8888
8903
|
|
8889
8904
|
@property
|
8890
8905
|
def TotalCount(self):
|
8891
|
-
"""Number of records returned
|
8906
|
+
"""Number of records returned.
|
8892
8907
|
:rtype: int
|
8893
8908
|
"""
|
8894
8909
|
return self._TotalCount
|
@@ -8899,7 +8914,7 @@ class DescribeDBInstanceInterResponse(AbstractModel):
|
|
8899
8914
|
|
8900
8915
|
@property
|
8901
8916
|
def InterInstanceSet(self):
|
8902
|
-
"""Details of instance in the interworking group
|
8917
|
+
"""Details of instance in the interworking group.
|
8903
8918
|
:rtype: list of InterInstance
|
8904
8919
|
"""
|
8905
8920
|
return self._InterInstanceSet
|
@@ -11104,9 +11119,9 @@ class DescribeProductConfigRequest(AbstractModel):
|
|
11104
11119
|
|
11105
11120
|
def __init__(self):
|
11106
11121
|
r"""
|
11107
|
-
:param _Zone: AZ ID in the format of ap-guangzhou-1
|
11122
|
+
:param _Zone: AZ ID in the format of ap-guangzhou-1.
|
11108
11123
|
:type Zone: str
|
11109
|
-
:param _InstanceType: Type of purchased instance. Valid values: HA - local disk high availability (including dual-machine high availability, AlwaysOn Cluster), RO - local disk read-only replica, SI - cloud disk edition single node, BI - business intelligence service, cvmHA - cloud disk edition high availability, cvmRO - cloud disk edition read-only replica
|
11124
|
+
:param _InstanceType: Type of purchased instance. Valid values: HA - local disk high availability (including dual-machine high availability, AlwaysOn Cluster), RO - local disk read-only replica, SI - cloud disk edition single node, BI - business intelligence service, cvmHA - cloud disk edition high availability, cvmRO - cloud disk edition read-only replica.
|
11110
11125
|
:type InstanceType: str
|
11111
11126
|
"""
|
11112
11127
|
self._Zone = None
|
@@ -11114,7 +11129,7 @@ class DescribeProductConfigRequest(AbstractModel):
|
|
11114
11129
|
|
11115
11130
|
@property
|
11116
11131
|
def Zone(self):
|
11117
|
-
"""AZ ID in the format of ap-guangzhou-1
|
11132
|
+
"""AZ ID in the format of ap-guangzhou-1.
|
11118
11133
|
:rtype: str
|
11119
11134
|
"""
|
11120
11135
|
return self._Zone
|
@@ -11125,7 +11140,7 @@ class DescribeProductConfigRequest(AbstractModel):
|
|
11125
11140
|
|
11126
11141
|
@property
|
11127
11142
|
def InstanceType(self):
|
11128
|
-
"""Type of purchased instance. Valid values: HA - local disk high availability (including dual-machine high availability, AlwaysOn Cluster), RO - local disk read-only replica, SI - cloud disk edition single node, BI - business intelligence service, cvmHA - cloud disk edition high availability, cvmRO - cloud disk edition read-only replica
|
11143
|
+
"""Type of purchased instance. Valid values: HA - local disk high availability (including dual-machine high availability, AlwaysOn Cluster), RO - local disk read-only replica, SI - cloud disk edition single node, BI - business intelligence service, cvmHA - cloud disk edition high availability, cvmRO - cloud disk edition read-only replica.
|
11129
11144
|
:rtype: str
|
11130
11145
|
"""
|
11131
11146
|
return self._InstanceType
|
@@ -11155,9 +11170,9 @@ class DescribeProductConfigResponse(AbstractModel):
|
|
11155
11170
|
|
11156
11171
|
def __init__(self):
|
11157
11172
|
r"""
|
11158
|
-
:param _SpecInfoList: Specification information array
|
11173
|
+
:param _SpecInfoList: Specification information array.
|
11159
11174
|
:type SpecInfoList: list of SpecInfo
|
11160
|
-
:param _TotalCount: Number of date entries returned
|
11175
|
+
:param _TotalCount: Number of date entries returned.
|
11161
11176
|
:type TotalCount: int
|
11162
11177
|
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
11163
11178
|
:type RequestId: str
|
@@ -11168,7 +11183,7 @@ class DescribeProductConfigResponse(AbstractModel):
|
|
11168
11183
|
|
11169
11184
|
@property
|
11170
11185
|
def SpecInfoList(self):
|
11171
|
-
"""Specification information array
|
11186
|
+
"""Specification information array.
|
11172
11187
|
:rtype: list of SpecInfo
|
11173
11188
|
"""
|
11174
11189
|
return self._SpecInfoList
|
@@ -11179,7 +11194,7 @@ class DescribeProductConfigResponse(AbstractModel):
|
|
11179
11194
|
|
11180
11195
|
@property
|
11181
11196
|
def TotalCount(self):
|
11182
|
-
"""Number of date entries returned
|
11197
|
+
"""Number of date entries returned.
|
11183
11198
|
:rtype: int
|
11184
11199
|
"""
|
11185
11200
|
return self._TotalCount
|
@@ -1,4 +1,4 @@
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
1
|
+
tencentcloud/__init__.py,sha256=eXTWx1915eqX4x3KgUX7KjGFfGQjJ1AMtSKB5O1PwuI,630
|
2
2
|
tencentcloud/advisor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
3
|
tencentcloud/advisor/v20200721/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
4
|
tencentcloud/advisor/v20200721/advisor_client.py,sha256=fiBV7Nao68T0UJdOUt5BxEABWr7mG_J9NPJT2lXDdyw,2897
|
@@ -248,9 +248,9 @@ tencentcloud/dms/v20200819/errorcodes.py,sha256=3hvPXaIjO7tzBkOst8P9NvgkH7uzuLZA
|
|
248
248
|
tencentcloud/dms/v20200819/models.py,sha256=MxKF0In5IVpuWmmJeLATDATEHHj3M29_6EAGQ71HbRo,9476
|
249
249
|
tencentcloud/dnspod/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
250
250
|
tencentcloud/dnspod/v20210323/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
251
|
-
tencentcloud/dnspod/v20210323/dnspod_client.py,sha256=
|
252
|
-
tencentcloud/dnspod/v20210323/errorcodes.py,sha256
|
253
|
-
tencentcloud/dnspod/v20210323/models.py,sha256=
|
251
|
+
tencentcloud/dnspod/v20210323/dnspod_client.py,sha256=Y-T5i_FqiVpg79kaj1WQ-iGkkuSso7vJRvTXZQ38uBw,35645
|
252
|
+
tencentcloud/dnspod/v20210323/errorcodes.py,sha256=-MLQ71Ose-V-cg7iFfx34Kr5DMGzpgav0KCBV5CK_NI,16261
|
253
|
+
tencentcloud/dnspod/v20210323/models.py,sha256=dpyCgp_4d00YY1ACYAitjiP4HUXBRKyy02dp5mKbxhA,241143
|
254
254
|
tencentcloud/domain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
255
255
|
tencentcloud/domain/v20180808/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
256
256
|
tencentcloud/domain/v20180808/domain_client.py,sha256=pqMkqn0nExl_pvK5wHsMH7tO7ikusa9IXQuEoWcHq7w,23820
|
@@ -372,7 +372,7 @@ tencentcloud/lcic/v20220817/lcic_client.py,sha256=909s3nXzHB0uRz9wLSQmd-i9sQHOP2
|
|
372
372
|
tencentcloud/lcic/v20220817/models.py,sha256=cRZaBkQw-PpT9CXbzQ0TwFYYSkPy1CA3rBsNCvb8cu4,336179
|
373
373
|
tencentcloud/lighthouse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
374
374
|
tencentcloud/lighthouse/v20200324/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
375
|
-
tencentcloud/lighthouse/v20200324/errorcodes.py,sha256=
|
375
|
+
tencentcloud/lighthouse/v20200324/errorcodes.py,sha256=bZ6dDfyqS5pxIKitZ2AVMYt-pe4VejCfPkMRpiryCV0,26580
|
376
376
|
tencentcloud/lighthouse/v20200324/lighthouse_client.py,sha256=QwHozP43be76qha0eRPM_6OT_nHBxbLiSgHyL0a1QNs,88018
|
377
377
|
tencentcloud/lighthouse/v20200324/models.py,sha256=OknSSoXOExOyBK3a4Px3QDWZ97Chd6daCbIJSwiV-jY,425996
|
378
378
|
tencentcloud/live/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -501,7 +501,7 @@ tencentcloud/sms/v20210111/sms_client.py,sha256=YcJdikNNoXH8RtG1ovFY2vTHVz7cfQzM
|
|
501
501
|
tencentcloud/sqlserver/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
502
502
|
tencentcloud/sqlserver/v20180328/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
503
503
|
tencentcloud/sqlserver/v20180328/errorcodes.py,sha256=OWVsl9dhn6kXevI661iAy2QmK1rmqO7EZ_uqtgpRcwk,10007
|
504
|
-
tencentcloud/sqlserver/v20180328/models.py,sha256=
|
504
|
+
tencentcloud/sqlserver/v20180328/models.py,sha256=HSGzAMUXARjTqx_1K-XmEIWFZiYK3FCF8Md0QLmMXnM,622436
|
505
505
|
tencentcloud/sqlserver/v20180328/sqlserver_client.py,sha256=HxRmG7lBq7g3TflU75L9ufdY7KqW5MUift9N_nkyc2Q,79528
|
506
506
|
tencentcloud/ssl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
507
507
|
tencentcloud/ssl/v20191205/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -678,7 +678,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
678
678
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=g2ac3Fxgbof23WWhGj9VxvuLJZNshnB0Mg7jWUzTh24,3168
|
679
679
|
tencentcloud/yunjing/v20180228/models.py,sha256=vFpNnPGWiOLdTut0XPTpRRF5lobWUTkFUO1EHc9RkBk,330643
|
680
680
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=PqtaJz4gQ-rIxKXVMNtOKx7kFBQdUn-zKVuH2NcMFcA,67362
|
681
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
682
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
683
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
684
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
681
|
+
tencentcloud_sdk_python_intl_en-3.0.1257.dist-info/METADATA,sha256=YeFpRDHoQp6qhdOSLvN537Zqli77jFoIL2SZby8HaTA,1628
|
682
|
+
tencentcloud_sdk_python_intl_en-3.0.1257.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
683
|
+
tencentcloud_sdk_python_intl_en-3.0.1257.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
684
|
+
tencentcloud_sdk_python_intl_en-3.0.1257.dist-info/RECORD,,
|
File without changes
|