tencentcloud-sdk-python 3.0.974__py2.py3-none-any.whl → 3.0.976__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 might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/cbs/v20170312/cbs_client.py +2 -2
- tencentcloud/ccc/v20200210/ccc_client.py +1 -1
- tencentcloud/ccc/v20200210/models.py +67 -1
- tencentcloud/cdb/v20170320/errorcodes.py +6 -0
- tencentcloud/cdwch/v20200915/models.py +201 -0
- tencentcloud/ckafka/v20190819/models.py +2 -2
- tencentcloud/clb/v20180317/models.py +52 -0
- tencentcloud/cls/v20201016/models.py +26 -0
- tencentcloud/cvm/v20170312/cvm_client.py +1 -0
- tencentcloud/cvm/v20170312/models.py +1 -13
- tencentcloud/cynosdb/v20190107/models.py +9 -6
- tencentcloud/dnspod/v20210323/errorcodes.py +7 -7
- tencentcloud/dnspod/v20210323/models.py +1 -1
- tencentcloud/ecm/v20190719/models.py +12 -0
- tencentcloud/eis/v20210601/errorcodes.py +3 -0
- tencentcloud/emr/v20190103/errorcodes.py +3 -0
- tencentcloud/ess/v20201111/ess_client.py +46 -24
- tencentcloud/ess/v20201111/models.py +274 -171
- tencentcloud/essbasic/v20210526/essbasic_client.py +7 -0
- tencentcloud/essbasic/v20210526/models.py +22 -15
- tencentcloud/faceid/v20180301/models.py +17 -1
- tencentcloud/iai/v20180301/models.py +3 -7
- tencentcloud/iai/v20200303/models.py +3 -7
- tencentcloud/lcic/v20220817/errorcodes.py +3 -0
- tencentcloud/lcic/v20220817/models.py +74 -0
- tencentcloud/monitor/v20180724/models.py +182 -2
- tencentcloud/monitor/v20180724/monitor_client.py +23 -0
- tencentcloud/mrs/v20200910/models.py +68 -0
- tencentcloud/oceanus/v20190422/models.py +15 -1
- tencentcloud/ses/v20201002/models.py +1 -1
- tencentcloud/sqlserver/v20180328/models.py +3 -3
- tencentcloud/sqlserver/v20180328/sqlserver_client.py +0 -1
- tencentcloud/ssl/v20191205/models.py +1836 -50
- tencentcloud/ssl/v20191205/ssl_client.py +69 -0
- tencentcloud/tdmq/v20200217/models.py +587 -1
- tencentcloud/tdmq/v20200217/tdmq_client.py +46 -0
- tencentcloud/tem/v20210701/errorcodes.py +3 -0
- tencentcloud/teo/v20220901/errorcodes.py +21 -0
- tencentcloud/teo/v20220901/models.py +96 -0
- tencentcloud/teo/v20220901/teo_client.py +23 -0
- tencentcloud/thpc/v20230321/models.py +33 -0
- tencentcloud/tione/v20211111/models.py +121 -0
- tencentcloud/trtc/v20190722/models.py +5 -2
- tencentcloud/tse/v20201207/models.py +13 -0
- tencentcloud/tsf/v20180326/models.py +4 -3
- tencentcloud/vpc/v20170312/errorcodes.py +3 -0
- tencentcloud/waf/v20180125/models.py +82 -0
- tencentcloud/waf/v20180125/waf_client.py +23 -0
- {tencentcloud_sdk_python-3.0.974.dist-info → tencentcloud_sdk_python-3.0.976.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.974.dist-info → tencentcloud_sdk_python-3.0.976.dist-info}/RECORD +54 -54
- {tencentcloud_sdk_python-3.0.974.dist-info → tencentcloud_sdk_python-3.0.976.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.974.dist-info → tencentcloud_sdk_python-3.0.976.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.974.dist-info → tencentcloud_sdk_python-3.0.976.dist-info}/top_level.txt +0 -0
|
@@ -9994,6 +9994,9 @@ class Organ(AbstractModel):
|
|
|
9994
9994
|
:param _Coords: 器官在报告图片中的坐标
|
|
9995
9995
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
9996
9996
|
:type Coords: list of Coord
|
|
9997
|
+
:param _IsthmusThickness: 峡部厚度
|
|
9998
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9999
|
+
:type IsthmusThickness: :class:`tencentcloud.mrs.v20200910.models.Size`
|
|
9997
10000
|
"""
|
|
9998
10001
|
self._Part = None
|
|
9999
10002
|
self._Size = None
|
|
@@ -10032,6 +10035,7 @@ class Organ(AbstractModel):
|
|
|
10032
10035
|
self._Trend = None
|
|
10033
10036
|
self._Operation = None
|
|
10034
10037
|
self._Coords = None
|
|
10038
|
+
self._IsthmusThickness = None
|
|
10035
10039
|
|
|
10036
10040
|
@property
|
|
10037
10041
|
def Part(self):
|
|
@@ -10179,10 +10183,14 @@ class Organ(AbstractModel):
|
|
|
10179
10183
|
|
|
10180
10184
|
@property
|
|
10181
10185
|
def IsthmusThicknese(self):
|
|
10186
|
+
warnings.warn("parameter `IsthmusThicknese` is deprecated", DeprecationWarning)
|
|
10187
|
+
|
|
10182
10188
|
return self._IsthmusThicknese
|
|
10183
10189
|
|
|
10184
10190
|
@IsthmusThicknese.setter
|
|
10185
10191
|
def IsthmusThicknese(self, IsthmusThicknese):
|
|
10192
|
+
warnings.warn("parameter `IsthmusThicknese` is deprecated", DeprecationWarning)
|
|
10193
|
+
|
|
10186
10194
|
self._IsthmusThicknese = IsthmusThicknese
|
|
10187
10195
|
|
|
10188
10196
|
@property
|
|
@@ -10329,6 +10337,14 @@ class Organ(AbstractModel):
|
|
|
10329
10337
|
def Coords(self, Coords):
|
|
10330
10338
|
self._Coords = Coords
|
|
10331
10339
|
|
|
10340
|
+
@property
|
|
10341
|
+
def IsthmusThickness(self):
|
|
10342
|
+
return self._IsthmusThickness
|
|
10343
|
+
|
|
10344
|
+
@IsthmusThickness.setter
|
|
10345
|
+
def IsthmusThickness(self, IsthmusThickness):
|
|
10346
|
+
self._IsthmusThickness = IsthmusThickness
|
|
10347
|
+
|
|
10332
10348
|
|
|
10333
10349
|
def _deserialize(self, params):
|
|
10334
10350
|
if params.get("Part") is not None:
|
|
@@ -10444,6 +10460,9 @@ class Organ(AbstractModel):
|
|
|
10444
10460
|
obj = Coord()
|
|
10445
10461
|
obj._deserialize(item)
|
|
10446
10462
|
self._Coords.append(obj)
|
|
10463
|
+
if params.get("IsthmusThickness") is not None:
|
|
10464
|
+
self._IsthmusThickness = Size()
|
|
10465
|
+
self._IsthmusThickness._deserialize(params.get("IsthmusThickness"))
|
|
10447
10466
|
memeber_set = set(params.keys())
|
|
10448
10467
|
for name, value in vars(self).items():
|
|
10449
10468
|
property_name = name[1:]
|
|
@@ -10870,6 +10889,9 @@ class ParagraphBlock(AbstractModel):
|
|
|
10870
10889
|
:param _TreatmentResultText: 治疗结果
|
|
10871
10890
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10872
10891
|
:type TreatmentResultText: str
|
|
10892
|
+
:param _MenstrualHistoryText: 月经史
|
|
10893
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10894
|
+
:type MenstrualHistoryText: str
|
|
10873
10895
|
"""
|
|
10874
10896
|
self._IncisionHealingText = None
|
|
10875
10897
|
self._AuxiliaryExaminationText = None
|
|
@@ -10898,6 +10920,7 @@ class ParagraphBlock(AbstractModel):
|
|
|
10898
10920
|
self._BodyExaminationText = None
|
|
10899
10921
|
self._SpecialistExaminationText = None
|
|
10900
10922
|
self._TreatmentResultText = None
|
|
10923
|
+
self._MenstrualHistoryText = None
|
|
10901
10924
|
|
|
10902
10925
|
@property
|
|
10903
10926
|
def IncisionHealingText(self):
|
|
@@ -11045,10 +11068,14 @@ class ParagraphBlock(AbstractModel):
|
|
|
11045
11068
|
|
|
11046
11069
|
@property
|
|
11047
11070
|
def MenstruallHistoryText(self):
|
|
11071
|
+
warnings.warn("parameter `MenstruallHistoryText` is deprecated", DeprecationWarning)
|
|
11072
|
+
|
|
11048
11073
|
return self._MenstruallHistoryText
|
|
11049
11074
|
|
|
11050
11075
|
@MenstruallHistoryText.setter
|
|
11051
11076
|
def MenstruallHistoryText(self, MenstruallHistoryText):
|
|
11077
|
+
warnings.warn("parameter `MenstruallHistoryText` is deprecated", DeprecationWarning)
|
|
11078
|
+
|
|
11052
11079
|
self._MenstruallHistoryText = MenstruallHistoryText
|
|
11053
11080
|
|
|
11054
11081
|
@property
|
|
@@ -11115,6 +11142,14 @@ class ParagraphBlock(AbstractModel):
|
|
|
11115
11142
|
def TreatmentResultText(self, TreatmentResultText):
|
|
11116
11143
|
self._TreatmentResultText = TreatmentResultText
|
|
11117
11144
|
|
|
11145
|
+
@property
|
|
11146
|
+
def MenstrualHistoryText(self):
|
|
11147
|
+
return self._MenstrualHistoryText
|
|
11148
|
+
|
|
11149
|
+
@MenstrualHistoryText.setter
|
|
11150
|
+
def MenstrualHistoryText(self, MenstrualHistoryText):
|
|
11151
|
+
self._MenstrualHistoryText = MenstrualHistoryText
|
|
11152
|
+
|
|
11118
11153
|
|
|
11119
11154
|
def _deserialize(self, params):
|
|
11120
11155
|
self._IncisionHealingText = params.get("IncisionHealingText")
|
|
@@ -11144,6 +11179,7 @@ class ParagraphBlock(AbstractModel):
|
|
|
11144
11179
|
self._BodyExaminationText = params.get("BodyExaminationText")
|
|
11145
11180
|
self._SpecialistExaminationText = params.get("SpecialistExaminationText")
|
|
11146
11181
|
self._TreatmentResultText = params.get("TreatmentResultText")
|
|
11182
|
+
self._MenstrualHistoryText = params.get("MenstrualHistoryText")
|
|
11147
11183
|
memeber_set = set(params.keys())
|
|
11148
11184
|
for name, value in vars(self).items():
|
|
11149
11185
|
property_name = name[1:]
|
|
@@ -13308,6 +13344,9 @@ class ReportInfo(AbstractModel):
|
|
|
13308
13344
|
:param _Times: 未归类时间
|
|
13309
13345
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
13310
13346
|
:type Times: list of Time
|
|
13347
|
+
:param _BedNo: 床号
|
|
13348
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13349
|
+
:type BedNo: str
|
|
13311
13350
|
"""
|
|
13312
13351
|
self._Hospital = None
|
|
13313
13352
|
self._DepartmentName = None
|
|
@@ -13334,6 +13373,7 @@ class ReportInfo(AbstractModel):
|
|
|
13334
13373
|
self._OtherTime = None
|
|
13335
13374
|
self._PrintTime = None
|
|
13336
13375
|
self._Times = None
|
|
13376
|
+
self._BedNo = None
|
|
13337
13377
|
|
|
13338
13378
|
@property
|
|
13339
13379
|
def Hospital(self):
|
|
@@ -13535,6 +13575,14 @@ class ReportInfo(AbstractModel):
|
|
|
13535
13575
|
def Times(self, Times):
|
|
13536
13576
|
self._Times = Times
|
|
13537
13577
|
|
|
13578
|
+
@property
|
|
13579
|
+
def BedNo(self):
|
|
13580
|
+
return self._BedNo
|
|
13581
|
+
|
|
13582
|
+
@BedNo.setter
|
|
13583
|
+
def BedNo(self, BedNo):
|
|
13584
|
+
self._BedNo = BedNo
|
|
13585
|
+
|
|
13538
13586
|
|
|
13539
13587
|
def _deserialize(self, params):
|
|
13540
13588
|
self._Hospital = params.get("Hospital")
|
|
@@ -13567,6 +13615,7 @@ class ReportInfo(AbstractModel):
|
|
|
13567
13615
|
obj = Time()
|
|
13568
13616
|
obj._deserialize(item)
|
|
13569
13617
|
self._Times.append(obj)
|
|
13618
|
+
self._BedNo = params.get("BedNo")
|
|
13570
13619
|
memeber_set = set(params.keys())
|
|
13571
13620
|
for name, value in vars(self).items():
|
|
13572
13621
|
property_name = name[1:]
|
|
@@ -16914,6 +16963,9 @@ class TuberInfo(AbstractModel):
|
|
|
16914
16963
|
:param _Coords: 在报告图片中的坐标
|
|
16915
16964
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
16916
16965
|
:type Coords: list of Coord
|
|
16966
|
+
:param _IsthmusThickness: 峡部厚度
|
|
16967
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
16968
|
+
:type IsthmusThickness: :class:`tencentcloud.mrs.v20200910.models.Size`
|
|
16917
16969
|
"""
|
|
16918
16970
|
self._Type = None
|
|
16919
16971
|
self._Part = None
|
|
@@ -16960,6 +17012,7 @@ class TuberInfo(AbstractModel):
|
|
|
16960
17012
|
self._SymDesc = None
|
|
16961
17013
|
self._ImageFeature = None
|
|
16962
17014
|
self._Coords = None
|
|
17015
|
+
self._IsthmusThickness = None
|
|
16963
17016
|
|
|
16964
17017
|
@property
|
|
16965
17018
|
def Type(self):
|
|
@@ -17211,10 +17264,14 @@ class TuberInfo(AbstractModel):
|
|
|
17211
17264
|
|
|
17212
17265
|
@property
|
|
17213
17266
|
def IsthmusThicknese(self):
|
|
17267
|
+
warnings.warn("parameter `IsthmusThicknese` is deprecated", DeprecationWarning)
|
|
17268
|
+
|
|
17214
17269
|
return self._IsthmusThicknese
|
|
17215
17270
|
|
|
17216
17271
|
@IsthmusThicknese.setter
|
|
17217
17272
|
def IsthmusThicknese(self, IsthmusThicknese):
|
|
17273
|
+
warnings.warn("parameter `IsthmusThicknese` is deprecated", DeprecationWarning)
|
|
17274
|
+
|
|
17218
17275
|
self._IsthmusThicknese = IsthmusThicknese
|
|
17219
17276
|
|
|
17220
17277
|
@property
|
|
@@ -17321,6 +17378,14 @@ class TuberInfo(AbstractModel):
|
|
|
17321
17378
|
def Coords(self, Coords):
|
|
17322
17379
|
self._Coords = Coords
|
|
17323
17380
|
|
|
17381
|
+
@property
|
|
17382
|
+
def IsthmusThickness(self):
|
|
17383
|
+
return self._IsthmusThickness
|
|
17384
|
+
|
|
17385
|
+
@IsthmusThickness.setter
|
|
17386
|
+
def IsthmusThickness(self, IsthmusThickness):
|
|
17387
|
+
self._IsthmusThickness = IsthmusThickness
|
|
17388
|
+
|
|
17324
17389
|
|
|
17325
17390
|
def _deserialize(self, params):
|
|
17326
17391
|
if params.get("Type") is not None:
|
|
@@ -17463,6 +17528,9 @@ class TuberInfo(AbstractModel):
|
|
|
17463
17528
|
obj = Coord()
|
|
17464
17529
|
obj._deserialize(item)
|
|
17465
17530
|
self._Coords.append(obj)
|
|
17531
|
+
if params.get("IsthmusThickness") is not None:
|
|
17532
|
+
self._IsthmusThickness = Size()
|
|
17533
|
+
self._IsthmusThickness._deserialize(params.get("IsthmusThickness"))
|
|
17466
17534
|
memeber_set = set(params.keys())
|
|
17467
17535
|
for name, value in vars(self).items():
|
|
17468
17536
|
property_name = name[1:]
|
|
@@ -7060,9 +7060,11 @@ class RunJobDescription(AbstractModel):
|
|
|
7060
7060
|
:type JobId: str
|
|
7061
7061
|
:param _RunType: 运行类型,1:启动,2:恢复
|
|
7062
7062
|
:type RunType: int
|
|
7063
|
-
:param _StartMode: 兼容旧版 SQL
|
|
7063
|
+
:param _StartMode: 兼容旧版 SQL 类型作业启动参数:指定数据源消费起始时间点(建议传值)
|
|
7064
|
+
保证参数为 LATEST、EARLIEST、T+Timestamp (例:T1557394288000)
|
|
7064
7065
|
:type StartMode: str
|
|
7065
7066
|
:param _JobConfigVersion: 当前作业的某个版本
|
|
7067
|
+
(不传默认为非草稿的作业版本)
|
|
7066
7068
|
:type JobConfigVersion: int
|
|
7067
7069
|
:param _SavepointPath: Savepoint路径
|
|
7068
7070
|
:type SavepointPath: str
|
|
@@ -7070,6 +7072,8 @@ class RunJobDescription(AbstractModel):
|
|
|
7070
7072
|
:type SavepointId: str
|
|
7071
7073
|
:param _UseOldSystemConnector: 使用历史版本系统依赖
|
|
7072
7074
|
:type UseOldSystemConnector: bool
|
|
7075
|
+
:param _CustomTimestamp: 自定义时间戳
|
|
7076
|
+
:type CustomTimestamp: int
|
|
7073
7077
|
"""
|
|
7074
7078
|
self._JobId = None
|
|
7075
7079
|
self._RunType = None
|
|
@@ -7078,6 +7082,7 @@ class RunJobDescription(AbstractModel):
|
|
|
7078
7082
|
self._SavepointPath = None
|
|
7079
7083
|
self._SavepointId = None
|
|
7080
7084
|
self._UseOldSystemConnector = None
|
|
7085
|
+
self._CustomTimestamp = None
|
|
7081
7086
|
|
|
7082
7087
|
@property
|
|
7083
7088
|
def JobId(self):
|
|
@@ -7135,6 +7140,14 @@ class RunJobDescription(AbstractModel):
|
|
|
7135
7140
|
def UseOldSystemConnector(self, UseOldSystemConnector):
|
|
7136
7141
|
self._UseOldSystemConnector = UseOldSystemConnector
|
|
7137
7142
|
|
|
7143
|
+
@property
|
|
7144
|
+
def CustomTimestamp(self):
|
|
7145
|
+
return self._CustomTimestamp
|
|
7146
|
+
|
|
7147
|
+
@CustomTimestamp.setter
|
|
7148
|
+
def CustomTimestamp(self, CustomTimestamp):
|
|
7149
|
+
self._CustomTimestamp = CustomTimestamp
|
|
7150
|
+
|
|
7138
7151
|
|
|
7139
7152
|
def _deserialize(self, params):
|
|
7140
7153
|
self._JobId = params.get("JobId")
|
|
@@ -7144,6 +7157,7 @@ class RunJobDescription(AbstractModel):
|
|
|
7144
7157
|
self._SavepointPath = params.get("SavepointPath")
|
|
7145
7158
|
self._SavepointId = params.get("SavepointId")
|
|
7146
7159
|
self._UseOldSystemConnector = params.get("UseOldSystemConnector")
|
|
7160
|
+
self._CustomTimestamp = params.get("CustomTimestamp")
|
|
7147
7161
|
memeber_set = set(params.keys())
|
|
7148
7162
|
for name, value in vars(self).items():
|
|
7149
7163
|
property_name = name[1:]
|
|
@@ -27,7 +27,7 @@ class Attachment(AbstractModel):
|
|
|
27
27
|
r"""
|
|
28
28
|
:param _FileName: 附件名称,最大支持255个字符长度,不支持部分附件类型,详情请参考[附件类型](https://cloud.tencent.com/document/product/1288/51951)。
|
|
29
29
|
:type FileName: str
|
|
30
|
-
:param _Content: Base64
|
|
30
|
+
:param _Content: Base64之后的附件内容,您可以发送的附件大小上限为4M。注意:腾讯云接口请求最大支持 8M 的请求包,附件内容经过 Base64 预期扩大1.5倍。应该控制所有附件的总大小最大在 4M 以内,整体请求超出 8M 接口会返回错误。
|
|
31
31
|
:type Content: str
|
|
32
32
|
"""
|
|
33
33
|
self._FileName = None
|
|
@@ -2859,7 +2859,7 @@ class CreateCloudReadOnlyDBInstancesRequest(AbstractModel):
|
|
|
2859
2859
|
:type ReadOnlyGroupMinInGroup: int
|
|
2860
2860
|
:param _InstanceChargeType: 付费模式,取值支持 PREPAID(预付费),POSTPAID(后付费)。
|
|
2861
2861
|
:type InstanceChargeType: str
|
|
2862
|
-
:param _GoodsNum:
|
|
2862
|
+
:param _GoodsNum: 本次即将购买的实例数量,默认取值2。
|
|
2863
2863
|
:type GoodsNum: int
|
|
2864
2864
|
:param _SubnetId: VPC子网ID,形如subnet-bdoe83fa;SubnetId和VpcId需同时设置或者同时不设置
|
|
2865
2865
|
:type SubnetId: str
|
|
@@ -5474,7 +5474,7 @@ class DBTDEEncrypt(AbstractModel):
|
|
|
5474
5474
|
r"""
|
|
5475
5475
|
:param _DBName: 数据库名称
|
|
5476
5476
|
:type DBName: str
|
|
5477
|
-
:param _Encryption: enable
|
|
5477
|
+
:param _Encryption: enable-开启数据库TDE加密,disable-关闭数据库TDE加密
|
|
5478
5478
|
:type Encryption: str
|
|
5479
5479
|
"""
|
|
5480
5480
|
self._DBName = None
|
|
@@ -12276,7 +12276,7 @@ class InquiryPriceCreateDBInstancesRequest(AbstractModel):
|
|
|
12276
12276
|
:type DBVersion: str
|
|
12277
12277
|
:param _Cpu: 预购买实例的CPU核心数
|
|
12278
12278
|
:type Cpu: int
|
|
12279
|
-
:param _InstanceType: 购买实例的类型 HA-高可用型(包括双机高可用,alwaysOn集群),RO-只读副本型,SI-单节点型,cvmHA
|
|
12279
|
+
:param _InstanceType: 购买实例的类型 HA-高可用型(包括双机高可用,alwaysOn集群),RO-只读副本型,SI-单节点型,cvmHA-虚拟机双机高可用,cvmRO-虚拟机只读
|
|
12280
12280
|
:type InstanceType: str
|
|
12281
12281
|
:param _MachineType: 购买实例的宿主机类型,PM-物理机, CLOUD_PREMIUM-虚拟机高性能云盘,CLOUD_SSD-虚拟机SSD云盘,
|
|
12282
12282
|
CLOUD_HSSD-虚拟机加强型SSD云盘,CLOUD_TSSD-虚拟机极速型SSD云盘,CLOUD_BSSD-虚拟机通用型SSD云盘
|
|
@@ -1615,7 +1615,6 @@ class SqlserverClient(AbstractClient):
|
|
|
1615
1615
|
|
|
1616
1616
|
def InquiryPriceUpgradeDBInstance(self, request):
|
|
1617
1617
|
"""本接口(InquiryPriceUpgradeDBInstance)用于查询包年包月实例升级变配的价格。
|
|
1618
|
-
按量计费实例变配后的价格参考InquiryPriceCreateDBInstances接口。
|
|
1619
1618
|
|
|
1620
1619
|
:param request: Request instance for InquiryPriceUpgradeDBInstance.
|
|
1621
1620
|
:type request: :class:`tencentcloud.sqlserver.v20180328.models.InquiryPriceUpgradeDBInstanceRequest`
|