tencentcloud-sdk-python-intl-en 3.0.1225__py2.py3-none-any.whl → 3.0.1227__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of tencentcloud-sdk-python-intl-en might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/csip/v20221121/csip_client.py +69 -0
- tencentcloud/csip/v20221121/models.py +1710 -115
- tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py +24 -0
- tencentcloud/intlpartnersmgt/v20220928/models.py +106 -10
- tencentcloud/ocr/v20181119/models.py +306 -2
- tencentcloud/ocr/v20181119/ocr_client.py +23 -0
- tencentcloud/sqlserver/v20180328/models.py +56 -26
- tencentcloud/sqlserver/v20180328/sqlserver_client.py +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1225.dist-info → tencentcloud_sdk_python_intl_en-3.0.1227.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1225.dist-info → tencentcloud_sdk_python_intl_en-3.0.1227.dist-info}/RECORD +13 -13
- {tencentcloud_sdk_python_intl_en-3.0.1225.dist-info → tencentcloud_sdk_python_intl_en-3.0.1227.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1225.dist-info → tencentcloud_sdk_python_intl_en-3.0.1227.dist-info}/top_level.txt +0 -0
|
@@ -3597,27 +3597,27 @@ class CreateDBInstancesRequest(AbstractModel):
|
|
|
3597
3597
|
|
|
3598
3598
|
def __init__(self):
|
|
3599
3599
|
r"""
|
|
3600
|
-
:param _Zone: Instance AZ, such as ap-guangzhou-1 (Guangzhou Zone 1). Purchasable AZs for an instance can be obtained through the `DescribeZones` API
|
|
3600
|
+
:param _Zone: Instance AZ, such as ap-guangzhou-1 (Guangzhou Zone 1). Purchasable AZs for an instance can be obtained through the `DescribeZones` API.
|
|
3601
3601
|
:type Zone: str
|
|
3602
|
-
:param _Memory: Instance memory size in GB
|
|
3602
|
+
:param _Memory: Instance memory size in GB.
|
|
3603
3603
|
:type Memory: int
|
|
3604
|
-
:param _Storage: Instance storage capacity in GB
|
|
3604
|
+
:param _Storage: Instance storage capacity in GB.
|
|
3605
3605
|
:type Storage: int
|
|
3606
3606
|
:param _InstanceChargeType: Billing mode. Valid value: POSTPAID (pay-as-you-go).
|
|
3607
3607
|
:type InstanceChargeType: str
|
|
3608
|
-
:param _ProjectId: Project ID
|
|
3608
|
+
:param _ProjectId: Project ID.
|
|
3609
3609
|
:type ProjectId: int
|
|
3610
|
-
:param _GoodsNum: Number of instances purchased this time. Default value: 1. Maximum value: 10
|
|
3610
|
+
:param _GoodsNum: Number of instances purchased this time. Default value: 1. Maximum value: 10.
|
|
3611
3611
|
:type GoodsNum: int
|
|
3612
|
-
:param _SubnetId: VPC subnet ID in the format of subnet-bdoe83fa. `SubnetId` and `VpcId` should be set or ignored simultaneously
|
|
3612
|
+
:param _SubnetId: VPC subnet ID in the format of subnet-bdoe83fa. `SubnetId` and `VpcId` should be set or ignored simultaneously.
|
|
3613
3613
|
:type SubnetId: str
|
|
3614
|
-
:param _VpcId: VPC ID in the format of vpc-dsp338hz. `SubnetId` and `VpcId` should be set or ignored simultaneously
|
|
3614
|
+
:param _VpcId: VPC ID in the format of vpc-dsp338hz. `SubnetId` and `VpcId` should be set or ignored simultaneously.
|
|
3615
3615
|
:type VpcId: str
|
|
3616
|
-
:param _Period: Length of purchase of instance. The default value is 1, indicating one month. The value cannot exceed 48
|
|
3616
|
+
:param _Period: Length of purchase of instance. The default value is 1, indicating one month. The value cannot exceed 48.
|
|
3617
3617
|
:type Period: int
|
|
3618
|
-
:param _AutoVoucher: Whether to automatically use voucher. 0: no, 1: yes. Default value: no
|
|
3618
|
+
:param _AutoVoucher: Whether to automatically use voucher. 0: no, 1: yes. Default value: no.
|
|
3619
3619
|
:type AutoVoucher: int
|
|
3620
|
-
:param _VoucherIds: Array of voucher IDs (currently, only one voucher can be used per order)
|
|
3620
|
+
:param _VoucherIds: Array of voucher IDs (currently, only one voucher can be used per order).
|
|
3621
3621
|
:type VoucherIds: list of str
|
|
3622
3622
|
:param _DBVersion: SQL Server version. Valid values: `2008R2` (SQL Server 2008 R2 Enterprise), `2012SP3` (SQL Server 2012 Enterprise), `201202` (SQL Server 2012 Standard), `2014SP2` (SQL Server 2014 Enterprise), 201402 (SQL Server 2014 Standard), `2016SP1` (SQL Server 2016 Enterprise), `201602` (SQL Server 2016 Standard), `2017` (SQL Server 2017 Enterprise), `201702` (SQL Server 2017 Standard), `2019` (SQL Server 2019 Enterprise), `201902` (SQL Server 2019 Standard). Default value: `2008R2`. The available version varies by region, and you can pull the version information by calling the `DescribeProductConfig` API.
|
|
3623
3623
|
:type DBVersion: str
|
|
@@ -3635,12 +3635,16 @@ class CreateDBInstancesRequest(AbstractModel):
|
|
|
3635
3635
|
:type HAType: str
|
|
3636
3636
|
:param _MultiZones: Whether to deploy across availability zones. Default value: false.
|
|
3637
3637
|
:type MultiZones: bool
|
|
3638
|
-
:param _ResourceTags: Tags associated with the instances to be created
|
|
3638
|
+
:param _ResourceTags: Tags associated with the instances to be created.
|
|
3639
3639
|
:type ResourceTags: list of ResourceTag
|
|
3640
3640
|
:param _Collation: Collation of system character sets. Default value: `Chinese_PRC_CI_AS`.
|
|
3641
3641
|
:type Collation: str
|
|
3642
3642
|
:param _TimeZone: System time zone. Default value: `China Standard Time`.
|
|
3643
3643
|
:type TimeZone: str
|
|
3644
|
+
:param _MultiNodes: Whether it is a multi-node architecture instance. Default value: `false`.If MultiNodes = true, the value of the MultiZones parameter must be true.
|
|
3645
|
+
:type MultiNodes: bool
|
|
3646
|
+
:param _DrZones: The zone in which the standby node is available. Default is empty. When MultiNodes = true, the availability zones of the primary and standby nodes cannot all be the same. The minimum number of availability zones for the standby nodes is 2, and the maximum is 5.
|
|
3647
|
+
:type DrZones: list of str
|
|
3644
3648
|
"""
|
|
3645
3649
|
self._Zone = None
|
|
3646
3650
|
self._Memory = None
|
|
@@ -3664,10 +3668,12 @@ class CreateDBInstancesRequest(AbstractModel):
|
|
|
3664
3668
|
self._ResourceTags = None
|
|
3665
3669
|
self._Collation = None
|
|
3666
3670
|
self._TimeZone = None
|
|
3671
|
+
self._MultiNodes = None
|
|
3672
|
+
self._DrZones = None
|
|
3667
3673
|
|
|
3668
3674
|
@property
|
|
3669
3675
|
def Zone(self):
|
|
3670
|
-
"""Instance AZ, such as ap-guangzhou-1 (Guangzhou Zone 1). Purchasable AZs for an instance can be obtained through the `DescribeZones` API
|
|
3676
|
+
"""Instance AZ, such as ap-guangzhou-1 (Guangzhou Zone 1). Purchasable AZs for an instance can be obtained through the `DescribeZones` API.
|
|
3671
3677
|
:rtype: str
|
|
3672
3678
|
"""
|
|
3673
3679
|
return self._Zone
|
|
@@ -3678,7 +3684,7 @@ class CreateDBInstancesRequest(AbstractModel):
|
|
|
3678
3684
|
|
|
3679
3685
|
@property
|
|
3680
3686
|
def Memory(self):
|
|
3681
|
-
"""Instance memory size in GB
|
|
3687
|
+
"""Instance memory size in GB.
|
|
3682
3688
|
:rtype: int
|
|
3683
3689
|
"""
|
|
3684
3690
|
return self._Memory
|
|
@@ -3689,7 +3695,7 @@ class CreateDBInstancesRequest(AbstractModel):
|
|
|
3689
3695
|
|
|
3690
3696
|
@property
|
|
3691
3697
|
def Storage(self):
|
|
3692
|
-
"""Instance storage capacity in GB
|
|
3698
|
+
"""Instance storage capacity in GB.
|
|
3693
3699
|
:rtype: int
|
|
3694
3700
|
"""
|
|
3695
3701
|
return self._Storage
|
|
@@ -3711,7 +3717,7 @@ class CreateDBInstancesRequest(AbstractModel):
|
|
|
3711
3717
|
|
|
3712
3718
|
@property
|
|
3713
3719
|
def ProjectId(self):
|
|
3714
|
-
"""Project ID
|
|
3720
|
+
"""Project ID.
|
|
3715
3721
|
:rtype: int
|
|
3716
3722
|
"""
|
|
3717
3723
|
return self._ProjectId
|
|
@@ -3722,7 +3728,7 @@ class CreateDBInstancesRequest(AbstractModel):
|
|
|
3722
3728
|
|
|
3723
3729
|
@property
|
|
3724
3730
|
def GoodsNum(self):
|
|
3725
|
-
"""Number of instances purchased this time. Default value: 1. Maximum value: 10
|
|
3731
|
+
"""Number of instances purchased this time. Default value: 1. Maximum value: 10.
|
|
3726
3732
|
:rtype: int
|
|
3727
3733
|
"""
|
|
3728
3734
|
return self._GoodsNum
|
|
@@ -3733,7 +3739,7 @@ class CreateDBInstancesRequest(AbstractModel):
|
|
|
3733
3739
|
|
|
3734
3740
|
@property
|
|
3735
3741
|
def SubnetId(self):
|
|
3736
|
-
"""VPC subnet ID in the format of subnet-bdoe83fa. `SubnetId` and `VpcId` should be set or ignored simultaneously
|
|
3742
|
+
"""VPC subnet ID in the format of subnet-bdoe83fa. `SubnetId` and `VpcId` should be set or ignored simultaneously.
|
|
3737
3743
|
:rtype: str
|
|
3738
3744
|
"""
|
|
3739
3745
|
return self._SubnetId
|
|
@@ -3744,7 +3750,7 @@ class CreateDBInstancesRequest(AbstractModel):
|
|
|
3744
3750
|
|
|
3745
3751
|
@property
|
|
3746
3752
|
def VpcId(self):
|
|
3747
|
-
"""VPC ID in the format of vpc-dsp338hz. `SubnetId` and `VpcId` should be set or ignored simultaneously
|
|
3753
|
+
"""VPC ID in the format of vpc-dsp338hz. `SubnetId` and `VpcId` should be set or ignored simultaneously.
|
|
3748
3754
|
:rtype: str
|
|
3749
3755
|
"""
|
|
3750
3756
|
return self._VpcId
|
|
@@ -3755,7 +3761,7 @@ class CreateDBInstancesRequest(AbstractModel):
|
|
|
3755
3761
|
|
|
3756
3762
|
@property
|
|
3757
3763
|
def Period(self):
|
|
3758
|
-
"""Length of purchase of instance. The default value is 1, indicating one month. The value cannot exceed 48
|
|
3764
|
+
"""Length of purchase of instance. The default value is 1, indicating one month. The value cannot exceed 48.
|
|
3759
3765
|
:rtype: int
|
|
3760
3766
|
"""
|
|
3761
3767
|
return self._Period
|
|
@@ -3766,7 +3772,7 @@ class CreateDBInstancesRequest(AbstractModel):
|
|
|
3766
3772
|
|
|
3767
3773
|
@property
|
|
3768
3774
|
def AutoVoucher(self):
|
|
3769
|
-
"""Whether to automatically use voucher. 0: no, 1: yes. Default value: no
|
|
3775
|
+
"""Whether to automatically use voucher. 0: no, 1: yes. Default value: no.
|
|
3770
3776
|
:rtype: int
|
|
3771
3777
|
"""
|
|
3772
3778
|
return self._AutoVoucher
|
|
@@ -3777,7 +3783,7 @@ class CreateDBInstancesRequest(AbstractModel):
|
|
|
3777
3783
|
|
|
3778
3784
|
@property
|
|
3779
3785
|
def VoucherIds(self):
|
|
3780
|
-
"""Array of voucher IDs (currently, only one voucher can be used per order)
|
|
3786
|
+
"""Array of voucher IDs (currently, only one voucher can be used per order).
|
|
3781
3787
|
:rtype: list of str
|
|
3782
3788
|
"""
|
|
3783
3789
|
return self._VoucherIds
|
|
@@ -3876,7 +3882,7 @@ class CreateDBInstancesRequest(AbstractModel):
|
|
|
3876
3882
|
|
|
3877
3883
|
@property
|
|
3878
3884
|
def ResourceTags(self):
|
|
3879
|
-
"""Tags associated with the instances to be created
|
|
3885
|
+
"""Tags associated with the instances to be created.
|
|
3880
3886
|
:rtype: list of ResourceTag
|
|
3881
3887
|
"""
|
|
3882
3888
|
return self._ResourceTags
|
|
@@ -3907,6 +3913,28 @@ class CreateDBInstancesRequest(AbstractModel):
|
|
|
3907
3913
|
def TimeZone(self, TimeZone):
|
|
3908
3914
|
self._TimeZone = TimeZone
|
|
3909
3915
|
|
|
3916
|
+
@property
|
|
3917
|
+
def MultiNodes(self):
|
|
3918
|
+
"""Whether it is a multi-node architecture instance. Default value: `false`.If MultiNodes = true, the value of the MultiZones parameter must be true.
|
|
3919
|
+
:rtype: bool
|
|
3920
|
+
"""
|
|
3921
|
+
return self._MultiNodes
|
|
3922
|
+
|
|
3923
|
+
@MultiNodes.setter
|
|
3924
|
+
def MultiNodes(self, MultiNodes):
|
|
3925
|
+
self._MultiNodes = MultiNodes
|
|
3926
|
+
|
|
3927
|
+
@property
|
|
3928
|
+
def DrZones(self):
|
|
3929
|
+
"""The zone in which the standby node is available. Default is empty. When MultiNodes = true, the availability zones of the primary and standby nodes cannot all be the same. The minimum number of availability zones for the standby nodes is 2, and the maximum is 5.
|
|
3930
|
+
:rtype: list of str
|
|
3931
|
+
"""
|
|
3932
|
+
return self._DrZones
|
|
3933
|
+
|
|
3934
|
+
@DrZones.setter
|
|
3935
|
+
def DrZones(self, DrZones):
|
|
3936
|
+
self._DrZones = DrZones
|
|
3937
|
+
|
|
3910
3938
|
|
|
3911
3939
|
def _deserialize(self, params):
|
|
3912
3940
|
self._Zone = params.get("Zone")
|
|
@@ -3936,6 +3964,8 @@ class CreateDBInstancesRequest(AbstractModel):
|
|
|
3936
3964
|
self._ResourceTags.append(obj)
|
|
3937
3965
|
self._Collation = params.get("Collation")
|
|
3938
3966
|
self._TimeZone = params.get("TimeZone")
|
|
3967
|
+
self._MultiNodes = params.get("MultiNodes")
|
|
3968
|
+
self._DrZones = params.get("DrZones")
|
|
3939
3969
|
memeber_set = set(params.keys())
|
|
3940
3970
|
for name, value in vars(self).items():
|
|
3941
3971
|
property_name = name[1:]
|
|
@@ -3953,9 +3983,9 @@ class CreateDBInstancesResponse(AbstractModel):
|
|
|
3953
3983
|
|
|
3954
3984
|
def __init__(self):
|
|
3955
3985
|
r"""
|
|
3956
|
-
:param _DealName: Order name
|
|
3986
|
+
:param _DealName: Order name.
|
|
3957
3987
|
:type DealName: str
|
|
3958
|
-
:param _DealNames: Order name array
|
|
3988
|
+
:param _DealNames: Order name array.
|
|
3959
3989
|
:type DealNames: list of str
|
|
3960
3990
|
: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.
|
|
3961
3991
|
:type RequestId: str
|
|
@@ -3966,7 +3996,7 @@ class CreateDBInstancesResponse(AbstractModel):
|
|
|
3966
3996
|
|
|
3967
3997
|
@property
|
|
3968
3998
|
def DealName(self):
|
|
3969
|
-
"""Order name
|
|
3999
|
+
"""Order name.
|
|
3970
4000
|
:rtype: str
|
|
3971
4001
|
"""
|
|
3972
4002
|
return self._DealName
|
|
@@ -3977,7 +4007,7 @@ class CreateDBInstancesResponse(AbstractModel):
|
|
|
3977
4007
|
|
|
3978
4008
|
@property
|
|
3979
4009
|
def DealNames(self):
|
|
3980
|
-
"""Order name array
|
|
4010
|
+
"""Order name array.
|
|
3981
4011
|
:rtype: list of str
|
|
3982
4012
|
"""
|
|
3983
4013
|
return self._DealNames
|
|
@@ -280,7 +280,7 @@ class SqlserverClient(AbstractClient):
|
|
|
280
280
|
|
|
281
281
|
|
|
282
282
|
def CreateDBInstances(self, request):
|
|
283
|
-
"""This API is used to create high-availability instances (local disk)
|
|
283
|
+
"""This API is used to create high-availability instances (local disk).
|
|
284
284
|
|
|
285
285
|
:param request: Request instance for CreateDBInstances.
|
|
286
286
|
:type request: :class:`tencentcloud.sqlserver.v20180328.models.CreateDBInstancesRequest`
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256
|
|
1
|
+
tencentcloud/__init__.py,sha256=KXghz6GMYtHY2rvn08QAeq87LCozIi4bzF7YHntXNJk,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=FuBG5ZJpmnVpDyVC84G_cjEWSa-mm6oyBvOIDe5SP-g,2924
|
|
@@ -179,9 +179,9 @@ tencentcloud/controlcenter/v20230110/errorcodes.py,sha256=LH56iO93MIBKn-vRsFXloR
|
|
|
179
179
|
tencentcloud/controlcenter/v20230110/models.py,sha256=Wi6cxCjzAyKFC5GbjxgkJGVpHsWFIhTHL-BSu0xmbpg,5825
|
|
180
180
|
tencentcloud/csip/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
181
181
|
tencentcloud/csip/v20221121/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
182
|
-
tencentcloud/csip/v20221121/csip_client.py,sha256=
|
|
182
|
+
tencentcloud/csip/v20221121/csip_client.py,sha256=rT4c6qpcRXHTOEwLfiqjpHsssMQGjqvW9nZbpvwXU_Q,33324
|
|
183
183
|
tencentcloud/csip/v20221121/errorcodes.py,sha256=BtrJ2Ezz21uWHzoEJED1bUeiBgp3zuf7rUC3ZcMRJ8k,2201
|
|
184
|
-
tencentcloud/csip/v20221121/models.py,sha256=
|
|
184
|
+
tencentcloud/csip/v20221121/models.py,sha256=c8jV3-DIk7QhPdnxefo39aueR6I3Jg-0mQT7Tb-Gb8I,522364
|
|
185
185
|
tencentcloud/cvm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
186
186
|
tencentcloud/cvm/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
187
187
|
tencentcloud/cvm/v20170312/cvm_client.py,sha256=WE4nGUgHxTwO2tyqZytS61J_mk8leMNY2nImC_mvp6I,96295
|
|
@@ -338,8 +338,8 @@ tencentcloud/ims/v20201229/models.py,sha256=Sfna_x1BytKq04dX2wwI9wbXDh9N4JPyS6WD
|
|
|
338
338
|
tencentcloud/intlpartnersmgt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
339
339
|
tencentcloud/intlpartnersmgt/v20220928/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
340
340
|
tencentcloud/intlpartnersmgt/v20220928/errorcodes.py,sha256=ob6XjXp7Alcx0kON4shg4STrhKSTTomJjKjifRV3jJg,8738
|
|
341
|
-
tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py,sha256=
|
|
342
|
-
tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=
|
|
341
|
+
tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py,sha256=igrhuf-hY3O6zEtbi97Nx30MkwF_8FmQicsjGcYiXVM,45369
|
|
342
|
+
tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=dXQAAIyyUhSLrU2TB20mT6Ba1i8-Z1xuJTKJhPyToT4,256362
|
|
343
343
|
tencentcloud/iotcloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
344
344
|
tencentcloud/iotcloud/v20210408/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
345
345
|
tencentcloud/iotcloud/v20210408/errorcodes.py,sha256=ot2acVUWnZ1XbJLkM4K-jT_Gw5TQD53TtZwnfFzJJ9Y,5887
|
|
@@ -418,8 +418,8 @@ tencentcloud/msp/v20180319/msp_client.py,sha256=ciNfy4xBXjMLxouGxPRu_EnyugEMzKWj
|
|
|
418
418
|
tencentcloud/ocr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
419
419
|
tencentcloud/ocr/v20181119/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
420
420
|
tencentcloud/ocr/v20181119/errorcodes.py,sha256=hwNIDFXG88AaadfzCfTamVSiVVIYoPf9OftekhNw2vI,4200
|
|
421
|
-
tencentcloud/ocr/v20181119/models.py,sha256=
|
|
422
|
-
tencentcloud/ocr/v20181119/ocr_client.py,sha256=
|
|
421
|
+
tencentcloud/ocr/v20181119/models.py,sha256=Ibui5uxRUweMgNeaOJ5IWXVPmLSl5fjs-QAu-KoS-Jw,601235
|
|
422
|
+
tencentcloud/ocr/v20181119/ocr_client.py,sha256=YqKY6bShDXSGP67uhUi9Gcr6iC_GiBtOpbjLjZ17lp4,51432
|
|
423
423
|
tencentcloud/omics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
424
424
|
tencentcloud/omics/v20221128/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
425
425
|
tencentcloud/omics/v20221128/errorcodes.py,sha256=VEkh5arAi4YIbf5y4krDS23zC6KcL6WnOxhpPLsiCGc,4862
|
|
@@ -486,8 +486,8 @@ tencentcloud/sms/v20210111/sms_client.py,sha256=OM034Nl5EK8H9hEdx0M23lBTbMcmI0eQ
|
|
|
486
486
|
tencentcloud/sqlserver/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
487
487
|
tencentcloud/sqlserver/v20180328/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
488
488
|
tencentcloud/sqlserver/v20180328/errorcodes.py,sha256=ypazBCQaGSMMfaaaYIWNpwgz4CuAULLitwpLuXS4RVw,10034
|
|
489
|
-
tencentcloud/sqlserver/v20180328/models.py,sha256=
|
|
490
|
-
tencentcloud/sqlserver/v20180328/sqlserver_client.py,sha256=
|
|
489
|
+
tencentcloud/sqlserver/v20180328/models.py,sha256=XnVjHAFjvYGJw8fz-VyINmmHwa1CY2c4cb5VEeAIm3c,614729
|
|
490
|
+
tencentcloud/sqlserver/v20180328/sqlserver_client.py,sha256=TUeAyefb-fs4BU0wC5kpPNsKKrliXXHqsqq9oLFKb9Q,79555
|
|
491
491
|
tencentcloud/ssl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
492
492
|
tencentcloud/ssl/v20191205/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
493
493
|
tencentcloud/ssl/v20191205/errorcodes.py,sha256=zpL4WMmK8ykGToj_vb0Hz2kCZ8UJIylhzeKoLQgfyKQ,10803
|
|
@@ -659,7 +659,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
659
659
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
|
|
660
660
|
tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
|
|
661
661
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=LY01pPiy1k_AXnHgG0FonGekRSFMY3t9pcYH8aE27oQ,67389
|
|
662
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
663
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
664
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
665
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
662
|
+
tencentcloud_sdk_python_intl_en-3.0.1227.dist-info/METADATA,sha256=r-SZvcj0jHpiv-cEw2z88lvqDw3mLXsDDoGHWSPJLCU,1628
|
|
663
|
+
tencentcloud_sdk_python_intl_en-3.0.1227.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
664
|
+
tencentcloud_sdk_python_intl_en-3.0.1227.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
665
|
+
tencentcloud_sdk_python_intl_en-3.0.1227.dist-info/RECORD,,
|
|
File without changes
|