tencentcloud-sdk-python-intl-en 3.0.1226__py2.py3-none-any.whl → 3.0.1228__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 +2 -2
- tencentcloud/sqlserver/v20180328/models.py +56 -26
- tencentcloud/sqlserver/v20180328/sqlserver_client.py +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1226.dist-info → tencentcloud_sdk_python_intl_en-3.0.1228.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1226.dist-info → tencentcloud_sdk_python_intl_en-3.0.1228.dist-info}/RECORD +12 -12
- {tencentcloud_sdk_python_intl_en-3.0.1226.dist-info → tencentcloud_sdk_python_intl_en-3.0.1228.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1226.dist-info → tencentcloud_sdk_python_intl_en-3.0.1228.dist-info}/top_level.txt +0 -0
|
@@ -353,6 +353,30 @@ class IntlpartnersmgtClient(AbstractClient):
|
|
|
353
353
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
354
354
|
|
|
355
355
|
|
|
356
|
+
def DescribeCustomerBillDetailByDay(self, request):
|
|
357
|
+
"""This API is used to query the daily bill expenditure of cu by resellers.
|
|
358
|
+
Invocation Role: first-level reseller, second-level reseller, reseller.
|
|
359
|
+
|
|
360
|
+
:param request: Request instance for DescribeCustomerBillDetailByDay.
|
|
361
|
+
:type request: :class:`tencentcloud.intlpartnersmgt.v20220928.models.DescribeCustomerBillDetailByDayRequest`
|
|
362
|
+
:rtype: :class:`tencentcloud.intlpartnersmgt.v20220928.models.DescribeCustomerBillDetailByDayResponse`
|
|
363
|
+
|
|
364
|
+
"""
|
|
365
|
+
try:
|
|
366
|
+
params = request._serialize()
|
|
367
|
+
headers = request.headers
|
|
368
|
+
body = self.call("DescribeCustomerBillDetailByDay", params, headers=headers)
|
|
369
|
+
response = json.loads(body)
|
|
370
|
+
model = models.DescribeCustomerBillDetailByDayResponse()
|
|
371
|
+
model._deserialize(response["Response"])
|
|
372
|
+
return model
|
|
373
|
+
except Exception as e:
|
|
374
|
+
if isinstance(e, TencentCloudSDKException):
|
|
375
|
+
raise
|
|
376
|
+
else:
|
|
377
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
378
|
+
|
|
379
|
+
|
|
356
380
|
def DescribeCustomerBillDownloadUrl(self, request):
|
|
357
381
|
"""This API is used to get the URL for downloading the customer bill file by reseller. The download conditions are as follows:
|
|
358
382
|
1. Detailed bills (billDetail and billDetailPack) can be downloaded starting from June 2022; resource bills (billResource and billResourcePack) can be downloaded starting from November 2023.
|
|
@@ -2883,6 +2883,104 @@ class DescribeBillSummaryResponse(AbstractModel):
|
|
|
2883
2883
|
self._RequestId = params.get("RequestId")
|
|
2884
2884
|
|
|
2885
2885
|
|
|
2886
|
+
class DescribeCustomerBillDetailByDayRequest(AbstractModel):
|
|
2887
|
+
"""DescribeCustomerBillDetailByDay request structure.
|
|
2888
|
+
|
|
2889
|
+
"""
|
|
2890
|
+
|
|
2891
|
+
def __init__(self):
|
|
2892
|
+
r"""
|
|
2893
|
+
:param _CustomerUin: Sub-account UIN.
|
|
2894
|
+
Such as "10000000001"
|
|
2895
|
+
:type CustomerUin: int
|
|
2896
|
+
:param _Date: Date.
|
|
2897
|
+
Such as" 2025-06-25"
|
|
2898
|
+
:type Date: str
|
|
2899
|
+
"""
|
|
2900
|
+
self._CustomerUin = None
|
|
2901
|
+
self._Date = None
|
|
2902
|
+
|
|
2903
|
+
@property
|
|
2904
|
+
def CustomerUin(self):
|
|
2905
|
+
"""Sub-account UIN.
|
|
2906
|
+
Such as "10000000001"
|
|
2907
|
+
:rtype: int
|
|
2908
|
+
"""
|
|
2909
|
+
return self._CustomerUin
|
|
2910
|
+
|
|
2911
|
+
@CustomerUin.setter
|
|
2912
|
+
def CustomerUin(self, CustomerUin):
|
|
2913
|
+
self._CustomerUin = CustomerUin
|
|
2914
|
+
|
|
2915
|
+
@property
|
|
2916
|
+
def Date(self):
|
|
2917
|
+
"""Date.
|
|
2918
|
+
Such as" 2025-06-25"
|
|
2919
|
+
:rtype: str
|
|
2920
|
+
"""
|
|
2921
|
+
return self._Date
|
|
2922
|
+
|
|
2923
|
+
@Date.setter
|
|
2924
|
+
def Date(self, Date):
|
|
2925
|
+
self._Date = Date
|
|
2926
|
+
|
|
2927
|
+
|
|
2928
|
+
def _deserialize(self, params):
|
|
2929
|
+
self._CustomerUin = params.get("CustomerUin")
|
|
2930
|
+
self._Date = params.get("Date")
|
|
2931
|
+
memeber_set = set(params.keys())
|
|
2932
|
+
for name, value in vars(self).items():
|
|
2933
|
+
property_name = name[1:]
|
|
2934
|
+
if property_name in memeber_set:
|
|
2935
|
+
memeber_set.remove(property_name)
|
|
2936
|
+
if len(memeber_set) > 0:
|
|
2937
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
2938
|
+
|
|
2939
|
+
|
|
2940
|
+
|
|
2941
|
+
class DescribeCustomerBillDetailByDayResponse(AbstractModel):
|
|
2942
|
+
"""DescribeCustomerBillDetailByDay response structure.
|
|
2943
|
+
|
|
2944
|
+
"""
|
|
2945
|
+
|
|
2946
|
+
def __init__(self):
|
|
2947
|
+
r"""
|
|
2948
|
+
:param _TotalCost: Total spending.
|
|
2949
|
+
:type TotalCost: str
|
|
2950
|
+
: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.
|
|
2951
|
+
:type RequestId: str
|
|
2952
|
+
"""
|
|
2953
|
+
self._TotalCost = None
|
|
2954
|
+
self._RequestId = None
|
|
2955
|
+
|
|
2956
|
+
@property
|
|
2957
|
+
def TotalCost(self):
|
|
2958
|
+
"""Total spending.
|
|
2959
|
+
:rtype: str
|
|
2960
|
+
"""
|
|
2961
|
+
return self._TotalCost
|
|
2962
|
+
|
|
2963
|
+
@TotalCost.setter
|
|
2964
|
+
def TotalCost(self, TotalCost):
|
|
2965
|
+
self._TotalCost = TotalCost
|
|
2966
|
+
|
|
2967
|
+
@property
|
|
2968
|
+
def RequestId(self):
|
|
2969
|
+
"""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.
|
|
2970
|
+
:rtype: str
|
|
2971
|
+
"""
|
|
2972
|
+
return self._RequestId
|
|
2973
|
+
|
|
2974
|
+
@RequestId.setter
|
|
2975
|
+
def RequestId(self, RequestId):
|
|
2976
|
+
self._RequestId = RequestId
|
|
2977
|
+
|
|
2978
|
+
|
|
2979
|
+
def _deserialize(self, params):
|
|
2980
|
+
self._TotalCost = params.get("TotalCost")
|
|
2981
|
+
self._RequestId = params.get("RequestId")
|
|
2982
|
+
|
|
2983
|
+
|
|
2886
2984
|
class DescribeCustomerBillDetailRequest(AbstractModel):
|
|
2887
2985
|
"""DescribeCustomerBillDetail request structure.
|
|
2888
2986
|
|
|
@@ -5101,14 +5199,13 @@ class QueryCustomerBillingQuotaData(AbstractModel):
|
|
|
5101
5199
|
|
|
5102
5200
|
def __init__(self):
|
|
5103
5201
|
r"""
|
|
5104
|
-
:param _TotalCredit: Total credit limit (unit:
|
|
5202
|
+
:param _TotalCredit: Total credit limit (unit: usd), accurate down to two decimal places.
|
|
5105
5203
|
:type TotalCredit: float
|
|
5106
|
-
:param _RemainingCredit: Remaining credit limit (unit:
|
|
5204
|
+
:param _RemainingCredit: Remaining credit limit (unit: usd), accurate down to two decimal places.
|
|
5107
5205
|
:type RemainingCredit: float
|
|
5108
|
-
:param _RemainingVoucher: Remaining total voucher amount (unit:
|
|
5206
|
+
:param _RemainingVoucher: Remaining total voucher amount (unit: usd), accurate down to two decimal places.
|
|
5109
5207
|
:type RemainingVoucher: float
|
|
5110
|
-
:param _Force: Forced status
|
|
5111
|
-
.
|
|
5208
|
+
:param _Force: Forced status.
|
|
5112
5209
|
Note: this field may return null, indicating that no valid values can be obtained.
|
|
5113
5210
|
:type Force: int
|
|
5114
5211
|
:param _PrepayFrozen: Prepaid frozen amount.
|
|
@@ -5125,7 +5222,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
5125
5222
|
|
|
5126
5223
|
@property
|
|
5127
5224
|
def TotalCredit(self):
|
|
5128
|
-
"""Total credit limit (unit:
|
|
5225
|
+
"""Total credit limit (unit: usd), accurate down to two decimal places.
|
|
5129
5226
|
:rtype: float
|
|
5130
5227
|
"""
|
|
5131
5228
|
return self._TotalCredit
|
|
@@ -5136,7 +5233,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
5136
5233
|
|
|
5137
5234
|
@property
|
|
5138
5235
|
def RemainingCredit(self):
|
|
5139
|
-
"""Remaining credit limit (unit:
|
|
5236
|
+
"""Remaining credit limit (unit: usd), accurate down to two decimal places.
|
|
5140
5237
|
:rtype: float
|
|
5141
5238
|
"""
|
|
5142
5239
|
return self._RemainingCredit
|
|
@@ -5147,7 +5244,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
5147
5244
|
|
|
5148
5245
|
@property
|
|
5149
5246
|
def RemainingVoucher(self):
|
|
5150
|
-
"""Remaining total voucher amount (unit:
|
|
5247
|
+
"""Remaining total voucher amount (unit: usd), accurate down to two decimal places.
|
|
5151
5248
|
:rtype: float
|
|
5152
5249
|
"""
|
|
5153
5250
|
return self._RemainingVoucher
|
|
@@ -5158,8 +5255,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
5158
5255
|
|
|
5159
5256
|
@property
|
|
5160
5257
|
def Force(self):
|
|
5161
|
-
"""Forced status
|
|
5162
|
-
.
|
|
5258
|
+
"""Forced status.
|
|
5163
5259
|
Note: this field may return null, indicating that no valid values can be obtained.
|
|
5164
5260
|
:rtype: int
|
|
5165
5261
|
"""
|
|
@@ -14847,7 +14847,7 @@ class SmartStructuralOCRV2Response(AbstractModel):
|
|
|
14847
14847
|
:type StructuralList: list of GroupInfo
|
|
14848
14848
|
:param _WordList: The recognized text information.
|
|
14849
14849
|
:type WordList: list of WordItem
|
|
14850
|
-
:param _RequestId: The unique request ID,
|
|
14850
|
+
: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.
|
|
14851
14851
|
:type RequestId: str
|
|
14852
14852
|
"""
|
|
14853
14853
|
self._Angle = None
|
|
@@ -14890,7 +14890,7 @@ class SmartStructuralOCRV2Response(AbstractModel):
|
|
|
14890
14890
|
|
|
14891
14891
|
@property
|
|
14892
14892
|
def RequestId(self):
|
|
14893
|
-
"""The unique request ID,
|
|
14893
|
+
"""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.
|
|
14894
14894
|
:rtype: str
|
|
14895
14895
|
"""
|
|
14896
14896
|
return self._RequestId
|
|
@@ -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=UdCmVmwtYEQrAUQLg8st6OoQNn7dDWU5d_gKsDRwf7I,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,7 +418,7 @@ 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=
|
|
421
|
+
tencentcloud/ocr/v20181119/models.py,sha256=Ibui5uxRUweMgNeaOJ5IWXVPmLSl5fjs-QAu-KoS-Jw,601235
|
|
422
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
|
|
@@ -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.1228.dist-info/METADATA,sha256=B3RGu6wXYvBdW4j5h_46l5yq-cHqzsq1dwEfKLsrvNY,1628
|
|
663
|
+
tencentcloud_sdk_python_intl_en-3.0.1228.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
664
|
+
tencentcloud_sdk_python_intl_en-3.0.1228.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
665
|
+
tencentcloud_sdk_python_intl_en-3.0.1228.dist-info/RECORD,,
|
|
File without changes
|