tencentcloud-sdk-python-intl-en 3.0.1223__py2.py3-none-any.whl → 3.0.1224__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/billing/v20180709/models.py +32 -46
- tencentcloud/emr/v20190103/models.py +392 -35
- tencentcloud/intlpartnersmgt/v20220928/models.py +19 -6
- tencentcloud/iotcloud/v20210408/models.py +2 -2
- tencentcloud/mps/v20190612/models.py +254 -194
- tencentcloud/redis/v20180412/models.py +50 -2
- tencentcloud/ssl/v20191205/errorcodes.py +3 -0
- tencentcloud/ssl/v20191205/models.py +4724 -3397
- tencentcloud/ssl/v20191205/ssl_client.py +138 -0
- {tencentcloud_sdk_python_intl_en-3.0.1223.dist-info → tencentcloud_sdk_python_intl_en-3.0.1224.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1223.dist-info → tencentcloud_sdk_python_intl_en-3.0.1224.dist-info}/RECORD +14 -14
- {tencentcloud_sdk_python_intl_en-3.0.1223.dist-info → tencentcloud_sdk_python_intl_en-3.0.1224.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1223.dist-info → tencentcloud_sdk_python_intl_en-3.0.1224.dist-info}/top_level.txt +0 -0
|
@@ -4250,6 +4250,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
4250
4250
|
|
|
4251
4251
|
@property
|
|
4252
4252
|
def DownloadUrl(self):
|
|
4253
|
+
warnings.warn("parameter `DownloadUrl` is deprecated", DeprecationWarning)
|
|
4254
|
+
|
|
4253
4255
|
"""Public network download address (valid for six hours). This field will be disused soon.
|
|
4254
4256
|
:rtype: list of str
|
|
4255
4257
|
"""
|
|
@@ -4257,10 +4259,14 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
4257
4259
|
|
|
4258
4260
|
@DownloadUrl.setter
|
|
4259
4261
|
def DownloadUrl(self, DownloadUrl):
|
|
4262
|
+
warnings.warn("parameter `DownloadUrl` is deprecated", DeprecationWarning)
|
|
4263
|
+
|
|
4260
4264
|
self._DownloadUrl = DownloadUrl
|
|
4261
4265
|
|
|
4262
4266
|
@property
|
|
4263
4267
|
def InnerDownloadUrl(self):
|
|
4268
|
+
warnings.warn("parameter `InnerDownloadUrl` is deprecated", DeprecationWarning)
|
|
4269
|
+
|
|
4264
4270
|
"""Private network download address (valid for six hours). This field will be disused soon.
|
|
4265
4271
|
:rtype: list of str
|
|
4266
4272
|
"""
|
|
@@ -4268,10 +4274,14 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
4268
4274
|
|
|
4269
4275
|
@InnerDownloadUrl.setter
|
|
4270
4276
|
def InnerDownloadUrl(self, InnerDownloadUrl):
|
|
4277
|
+
warnings.warn("parameter `InnerDownloadUrl` is deprecated", DeprecationWarning)
|
|
4278
|
+
|
|
4271
4279
|
self._InnerDownloadUrl = InnerDownloadUrl
|
|
4272
4280
|
|
|
4273
4281
|
@property
|
|
4274
4282
|
def Filenames(self):
|
|
4283
|
+
warnings.warn("parameter `Filenames` is deprecated", DeprecationWarning)
|
|
4284
|
+
|
|
4275
4285
|
"""Filename. This field will be disused soon.
|
|
4276
4286
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4277
4287
|
:rtype: list of str
|
|
@@ -4280,6 +4290,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
4280
4290
|
|
|
4281
4291
|
@Filenames.setter
|
|
4282
4292
|
def Filenames(self, Filenames):
|
|
4293
|
+
warnings.warn("parameter `Filenames` is deprecated", DeprecationWarning)
|
|
4294
|
+
|
|
4283
4295
|
self._Filenames = Filenames
|
|
4284
4296
|
|
|
4285
4297
|
@property
|
|
@@ -10151,6 +10163,8 @@ class DescribeSlowLogResponse(AbstractModel):
|
|
|
10151
10163
|
|
|
10152
10164
|
@property
|
|
10153
10165
|
def InstanceSlowlogDetail(self):
|
|
10166
|
+
warnings.warn("parameter `InstanceSlowlogDetail` is deprecated", DeprecationWarning)
|
|
10167
|
+
|
|
10154
10168
|
"""Slow query log details. This parameter has been deprecated and will be replaced by InstanceSlowLogDetail because it is not properly named.
|
|
10155
10169
|
:rtype: list of InstanceSlowlogDetail
|
|
10156
10170
|
"""
|
|
@@ -10158,6 +10172,8 @@ class DescribeSlowLogResponse(AbstractModel):
|
|
|
10158
10172
|
|
|
10159
10173
|
@InstanceSlowlogDetail.setter
|
|
10160
10174
|
def InstanceSlowlogDetail(self, InstanceSlowlogDetail):
|
|
10175
|
+
warnings.warn("parameter `InstanceSlowlogDetail` is deprecated", DeprecationWarning)
|
|
10176
|
+
|
|
10161
10177
|
self._InstanceSlowlogDetail = InstanceSlowlogDetail
|
|
10162
10178
|
|
|
10163
10179
|
@property
|
|
@@ -10622,6 +10638,8 @@ class DescribeTaskListRequest(AbstractModel):
|
|
|
10622
10638
|
|
|
10623
10639
|
@property
|
|
10624
10640
|
def OperatorUin(self):
|
|
10641
|
+
warnings.warn("parameter `OperatorUin` is deprecated", DeprecationWarning)
|
|
10642
|
+
|
|
10625
10643
|
"""The field `OperatorUin` has been disused and replaced by `OperateUin`.
|
|
10626
10644
|
:rtype: list of int
|
|
10627
10645
|
"""
|
|
@@ -10629,6 +10647,8 @@ class DescribeTaskListRequest(AbstractModel):
|
|
|
10629
10647
|
|
|
10630
10648
|
@OperatorUin.setter
|
|
10631
10649
|
def OperatorUin(self, OperatorUin):
|
|
10650
|
+
warnings.warn("parameter `OperatorUin` is deprecated", DeprecationWarning)
|
|
10651
|
+
|
|
10632
10652
|
self._OperatorUin = OperatorUin
|
|
10633
10653
|
|
|
10634
10654
|
@property
|
|
@@ -11315,6 +11335,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
11315
11335
|
|
|
11316
11336
|
@property
|
|
11317
11337
|
def Status(self):
|
|
11338
|
+
warnings.warn("parameter `Status` is deprecated", DeprecationWarning)
|
|
11339
|
+
|
|
11318
11340
|
"""Valid values: `ERROR`, `OK`. This field has been disused.
|
|
11319
11341
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
11320
11342
|
:rtype: str
|
|
@@ -11323,6 +11345,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
11323
11345
|
|
|
11324
11346
|
@Status.setter
|
|
11325
11347
|
def Status(self, Status):
|
|
11348
|
+
warnings.warn("parameter `Status` is deprecated", DeprecationWarning)
|
|
11349
|
+
|
|
11326
11350
|
self._Status = Status
|
|
11327
11351
|
|
|
11328
11352
|
@property
|
|
@@ -13738,6 +13762,8 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
13738
13762
|
|
|
13739
13763
|
@property
|
|
13740
13764
|
def SizeUsed(self):
|
|
13765
|
+
warnings.warn("parameter `SizeUsed` is deprecated", DeprecationWarning)
|
|
13766
|
+
|
|
13741
13767
|
"""This parameter has been deprecated. Obtain the memory capacity used by the instance through the TCOP API [GetMonitorData](https://intl.cloud.tencent.com/document/product/248/31014?from_cn_redirect=1).
|
|
13742
13768
|
:rtype: float
|
|
13743
13769
|
"""
|
|
@@ -13745,6 +13771,8 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
13745
13771
|
|
|
13746
13772
|
@SizeUsed.setter
|
|
13747
13773
|
def SizeUsed(self, SizeUsed):
|
|
13774
|
+
warnings.warn("parameter `SizeUsed` is deprecated", DeprecationWarning)
|
|
13775
|
+
|
|
13748
13776
|
self._SizeUsed = SizeUsed
|
|
13749
13777
|
|
|
13750
13778
|
@property
|
|
@@ -17093,6 +17121,8 @@ class ModifyInstanceRequest(AbstractModel):
|
|
|
17093
17121
|
|
|
17094
17122
|
@property
|
|
17095
17123
|
def InstanceId(self):
|
|
17124
|
+
warnings.warn("parameter `InstanceId` is deprecated", DeprecationWarning)
|
|
17125
|
+
|
|
17096
17126
|
"""This parameter is currently being deprecated and can still be used by existing users. It is recommended that new users use InstanceIds.
|
|
17097
17127
|
:rtype: str
|
|
17098
17128
|
"""
|
|
@@ -17100,10 +17130,14 @@ class ModifyInstanceRequest(AbstractModel):
|
|
|
17100
17130
|
|
|
17101
17131
|
@InstanceId.setter
|
|
17102
17132
|
def InstanceId(self, InstanceId):
|
|
17133
|
+
warnings.warn("parameter `InstanceId` is deprecated", DeprecationWarning)
|
|
17134
|
+
|
|
17103
17135
|
self._InstanceId = InstanceId
|
|
17104
17136
|
|
|
17105
17137
|
@property
|
|
17106
17138
|
def InstanceName(self):
|
|
17139
|
+
warnings.warn("parameter `InstanceName` is deprecated", DeprecationWarning)
|
|
17140
|
+
|
|
17107
17141
|
"""Disused
|
|
17108
17142
|
:rtype: str
|
|
17109
17143
|
"""
|
|
@@ -17111,10 +17145,14 @@ class ModifyInstanceRequest(AbstractModel):
|
|
|
17111
17145
|
|
|
17112
17146
|
@InstanceName.setter
|
|
17113
17147
|
def InstanceName(self, InstanceName):
|
|
17148
|
+
warnings.warn("parameter `InstanceName` is deprecated", DeprecationWarning)
|
|
17149
|
+
|
|
17114
17150
|
self._InstanceName = InstanceName
|
|
17115
17151
|
|
|
17116
17152
|
@property
|
|
17117
17153
|
def AutoRenew(self):
|
|
17154
|
+
warnings.warn("parameter `AutoRenew` is deprecated", DeprecationWarning)
|
|
17155
|
+
|
|
17118
17156
|
"""This parameter has been deprecated.
|
|
17119
17157
|
:rtype: int
|
|
17120
17158
|
"""
|
|
@@ -17122,6 +17160,8 @@ class ModifyInstanceRequest(AbstractModel):
|
|
|
17122
17160
|
|
|
17123
17161
|
@AutoRenew.setter
|
|
17124
17162
|
def AutoRenew(self, AutoRenew):
|
|
17163
|
+
warnings.warn("parameter `AutoRenew` is deprecated", DeprecationWarning)
|
|
17164
|
+
|
|
17125
17165
|
self._AutoRenew = AutoRenew
|
|
17126
17166
|
|
|
17127
17167
|
|
|
@@ -18447,6 +18487,8 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
18447
18487
|
|
|
18448
18488
|
@property
|
|
18449
18489
|
def EnableRepicaReadOnly(self):
|
|
18490
|
+
warnings.warn("parameter `EnableRepicaReadOnly` is deprecated", DeprecationWarning)
|
|
18491
|
+
|
|
18450
18492
|
"""Due to spelling inconsistency in this parameter name, it is recommended to use the **EnableReplicaReadOnly** parameter instead. Its meaning refers to whether the Read-Only Replica is supported.
|
|
18451
18493
|
- true: Supported.
|
|
18452
18494
|
- false: Not supported.
|
|
@@ -18456,6 +18498,8 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
18456
18498
|
|
|
18457
18499
|
@EnableRepicaReadOnly.setter
|
|
18458
18500
|
def EnableRepicaReadOnly(self, EnableRepicaReadOnly):
|
|
18501
|
+
warnings.warn("parameter `EnableRepicaReadOnly` is deprecated", DeprecationWarning)
|
|
18502
|
+
|
|
18459
18503
|
self._EnableRepicaReadOnly = EnableRepicaReadOnly
|
|
18460
18504
|
|
|
18461
18505
|
@property
|
|
@@ -20926,6 +20970,8 @@ class StartupInstanceResponse(AbstractModel):
|
|
|
20926
20970
|
|
|
20927
20971
|
@property
|
|
20928
20972
|
def TaskId(self):
|
|
20973
|
+
warnings.warn("parameter `TaskId` is deprecated", DeprecationWarning)
|
|
20974
|
+
|
|
20929
20975
|
"""This parameter has been deprecated. Determine whether the instance has been deisolated based on the status obtained through the instance query API.
|
|
20930
20976
|
:rtype: int
|
|
20931
20977
|
"""
|
|
@@ -20933,6 +20979,8 @@ class StartupInstanceResponse(AbstractModel):
|
|
|
20933
20979
|
|
|
20934
20980
|
@TaskId.setter
|
|
20935
20981
|
def TaskId(self, TaskId):
|
|
20982
|
+
warnings.warn("parameter `TaskId` is deprecated", DeprecationWarning)
|
|
20983
|
+
|
|
20936
20984
|
self._TaskId = TaskId
|
|
20937
20985
|
|
|
20938
20986
|
@property
|
|
@@ -21717,7 +21765,7 @@ class TradeDealDetail(AbstractModel):
|
|
|
21717
21765
|
:type Status: int
|
|
21718
21766
|
:param _Description: Order status description
|
|
21719
21767
|
:type Description: str
|
|
21720
|
-
:param _Price:
|
|
21768
|
+
:param _Price: Order actual total price (in cents)
|
|
21721
21769
|
:type Price: int
|
|
21722
21770
|
:param _InstanceIds: Instance ID
|
|
21723
21771
|
:type InstanceIds: list of str
|
|
@@ -21847,7 +21895,7 @@ class TradeDealDetail(AbstractModel):
|
|
|
21847
21895
|
|
|
21848
21896
|
@property
|
|
21849
21897
|
def Price(self):
|
|
21850
|
-
"""
|
|
21898
|
+
"""Order actual total price (in cents)
|
|
21851
21899
|
:rtype: int
|
|
21852
21900
|
"""
|
|
21853
21901
|
return self._Price
|
|
@@ -194,6 +194,9 @@ INVALIDPARAMETER = 'InvalidParameter'
|
|
|
194
194
|
# u200cYou cannot re-submit a review application for a certificate in this status.
|
|
195
195
|
INVALIDPARAMETER_CERTIFICATESTATUSNOTALLOWRESUBMIT = 'InvalidParameter.CertificateStatusNotAllowResubmit'
|
|
196
196
|
|
|
197
|
+
# Number of certificates exceed the limit.
|
|
198
|
+
INVALIDPARAMETER_CERTIFICATESNUMBEREXCEEDED = 'InvalidParameter.CertificatesNumberExceeded'
|
|
199
|
+
|
|
197
200
|
# Incorrect CSR ID.
|
|
198
201
|
INVALIDPARAMETER_INVALIDCSRID = 'InvalidParameter.InvalidCSRId'
|
|
199
202
|
|