tencentcloud-sdk-python 3.0.1368__py2.py3-none-any.whl → 3.0.1369__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.
Files changed (35) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/autoscaling/v20180419/autoscaling_client.py +2 -1
  3. tencentcloud/autoscaling/v20180419/models.py +198 -102
  4. tencentcloud/cbs/v20170312/cbs_client.py +1 -1
  5. tencentcloud/cbs/v20170312/models.py +41 -44
  6. tencentcloud/ccc/v20200210/models.py +15 -0
  7. tencentcloud/cdn/v20180606/cdn_client.py +45 -15
  8. tencentcloud/cfs/v20190719/models.py +15 -0
  9. tencentcloud/cvm/v20170312/cvm_client.py +1 -1
  10. tencentcloud/cvm/v20170312/errorcodes.py +1 -1
  11. tencentcloud/cvm/v20170312/models.py +83 -40
  12. tencentcloud/domain/v20180808/domain_client.py +4 -2
  13. tencentcloud/domain/v20180808/errorcodes.py +3 -0
  14. tencentcloud/domain/v20180808/models.py +254 -124
  15. tencentcloud/ioa/v20220601/models.py +19 -4
  16. tencentcloud/iotexplorer/v20190423/models.py +94 -4
  17. tencentcloud/iotvideoindustry/v20201201/models.py +15 -0
  18. tencentcloud/lcic/v20220817/errorcodes.py +1 -1
  19. tencentcloud/lke/v20231130/models.py +10 -2
  20. tencentcloud/mps/v20190612/models.py +2 -2
  21. tencentcloud/redis/v20180412/models.py +159 -6
  22. tencentcloud/tat/v20201028/errorcodes.py +6 -0
  23. tencentcloud/tat/v20201028/models.py +78 -32
  24. tencentcloud/tcss/v20201101/models.py +45 -0
  25. tencentcloud/teo/v20220901/models.py +35 -10
  26. tencentcloud/trtc/v20190722/models.py +2 -2
  27. tencentcloud/vod/v20180717/models.py +6 -6
  28. tencentcloud/vpc/v20170312/models.py +30 -74
  29. tencentcloud/wedata/v20210820/models.py +322 -0
  30. tencentcloud/wedata/v20210820/wedata_client.py +23 -0
  31. {tencentcloud_sdk_python-3.0.1368.dist-info → tencentcloud_sdk_python-3.0.1369.dist-info}/METADATA +1 -1
  32. {tencentcloud_sdk_python-3.0.1368.dist-info → tencentcloud_sdk_python-3.0.1369.dist-info}/RECORD +35 -35
  33. {tencentcloud_sdk_python-3.0.1368.dist-info → tencentcloud_sdk_python-3.0.1369.dist-info}/LICENSE +0 -0
  34. {tencentcloud_sdk_python-3.0.1368.dist-info → tencentcloud_sdk_python-3.0.1369.dist-info}/WHEEL +0 -0
  35. {tencentcloud_sdk_python-3.0.1368.dist-info → tencentcloud_sdk_python-3.0.1369.dist-info}/top_level.txt +0 -0
@@ -2876,7 +2876,7 @@ class DeviceDetail(AbstractModel):
2876
2876
  :type DeviceStrategyVer: str
2877
2877
  :param _NGNStrategyVer: NGN策略版本
2878
2878
  :type NGNStrategyVer: str
2879
- :param _IOAUserName: 最近登录账户的账号
2879
+ :param _IOAUserName: 最近登录账户的账号(账号系统用户账号)
2880
2880
  :type IOAUserName: str
2881
2881
  :param _DeviceNewStrategyVer: 设备管控新策略
2882
2882
  :type DeviceNewStrategyVer: str
@@ -2894,10 +2894,12 @@ class DeviceDetail(AbstractModel):
2894
2894
  :type IdentityNewStrategyVer: str
2895
2895
  :param _AccountGroupName: 最近登录账号部门
2896
2896
  :type AccountGroupName: str
2897
- :param _AccountName: 最近登录账户的姓名
2897
+ :param _AccountName: 最近登录账户的姓名(账号系统用户姓名)
2898
2898
  :type AccountName: str
2899
2899
  :param _AccountGroupId: 账号组id
2900
2900
  :type AccountGroupId: int
2901
+ :param _RemarkName: 终端备注名
2902
+ :type RemarkName: str
2901
2903
  """
2902
2904
  self._Id = None
2903
2905
  self._Mid = None
@@ -2942,6 +2944,7 @@ class DeviceDetail(AbstractModel):
2942
2944
  self._AccountGroupName = None
2943
2945
  self._AccountName = None
2944
2946
  self._AccountGroupId = None
2947
+ self._RemarkName = None
2945
2948
 
2946
2949
  @property
2947
2950
  def Id(self):
@@ -3297,7 +3300,7 @@ class DeviceDetail(AbstractModel):
3297
3300
 
3298
3301
  @property
3299
3302
  def IOAUserName(self):
3300
- """最近登录账户的账号
3303
+ """最近登录账户的账号(账号系统用户账号)
3301
3304
  :rtype: str
3302
3305
  """
3303
3306
  return self._IOAUserName
@@ -3396,7 +3399,7 @@ class DeviceDetail(AbstractModel):
3396
3399
 
3397
3400
  @property
3398
3401
  def AccountName(self):
3399
- """最近登录账户的姓名
3402
+ """最近登录账户的姓名(账号系统用户姓名)
3400
3403
  :rtype: str
3401
3404
  """
3402
3405
  return self._AccountName
@@ -3416,6 +3419,17 @@ class DeviceDetail(AbstractModel):
3416
3419
  def AccountGroupId(self, AccountGroupId):
3417
3420
  self._AccountGroupId = AccountGroupId
3418
3421
 
3422
+ @property
3423
+ def RemarkName(self):
3424
+ """终端备注名
3425
+ :rtype: str
3426
+ """
3427
+ return self._RemarkName
3428
+
3429
+ @RemarkName.setter
3430
+ def RemarkName(self, RemarkName):
3431
+ self._RemarkName = RemarkName
3432
+
3419
3433
 
3420
3434
  def _deserialize(self, params):
3421
3435
  self._Id = params.get("Id")
@@ -3461,6 +3475,7 @@ class DeviceDetail(AbstractModel):
3461
3475
  self._AccountGroupName = params.get("AccountGroupName")
3462
3476
  self._AccountName = params.get("AccountName")
3463
3477
  self._AccountGroupId = params.get("AccountGroupId")
3478
+ self._RemarkName = params.get("RemarkName")
3464
3479
  memeber_set = set(params.keys())
3465
3480
  for name, value in vars(self).items():
3466
3481
  property_name = name[1:]
@@ -1786,10 +1786,14 @@ class CloudStorageAIServiceTask(AbstractModel):
1786
1786
  - `Highlight`:视频浓缩
1787
1787
  - `VideoToText`:视频语义理解
1788
1788
  :type ServiceType: str
1789
- :param _StartTime: 对应云存视频的起始时间
1789
+ :param _StartTime: 对应云存视频的起始时间(秒级 UNIX 时间戳)
1790
1790
  :type StartTime: int
1791
- :param _EndTime: 对应云存视频的结束时间
1791
+ :param _StartTimeMs: 对应云存视频的起始时间(毫秒级 UNIX 时间戳)
1792
+ :type StartTimeMs: int
1793
+ :param _EndTime: 对应云存视频的结束时间(秒级 UNIX 时间戳)
1792
1794
  :type EndTime: int
1795
+ :param _EndTimeMs: 对应云存视频的结束时间(毫秒级 UNIX 时间戳)
1796
+ :type EndTimeMs: int
1793
1797
  :param _Status: 任务状态(1:失败;2:成功但结果为空;3:成功且结果非空;4:执行中)
1794
1798
  :type Status: int
1795
1799
  :param _Result: 任务结果
@@ -1811,7 +1815,9 @@ class CloudStorageAIServiceTask(AbstractModel):
1811
1815
  self._ChannelId = None
1812
1816
  self._ServiceType = None
1813
1817
  self._StartTime = None
1818
+ self._StartTimeMs = None
1814
1819
  self._EndTime = None
1820
+ self._EndTimeMs = None
1815
1821
  self._Status = None
1816
1822
  self._Result = None
1817
1823
  self._Files = None
@@ -1881,7 +1887,7 @@ class CloudStorageAIServiceTask(AbstractModel):
1881
1887
 
1882
1888
  @property
1883
1889
  def StartTime(self):
1884
- """对应云存视频的起始时间
1890
+ """对应云存视频的起始时间(秒级 UNIX 时间戳)
1885
1891
  :rtype: int
1886
1892
  """
1887
1893
  return self._StartTime
@@ -1890,9 +1896,20 @@ class CloudStorageAIServiceTask(AbstractModel):
1890
1896
  def StartTime(self, StartTime):
1891
1897
  self._StartTime = StartTime
1892
1898
 
1899
+ @property
1900
+ def StartTimeMs(self):
1901
+ """对应云存视频的起始时间(毫秒级 UNIX 时间戳)
1902
+ :rtype: int
1903
+ """
1904
+ return self._StartTimeMs
1905
+
1906
+ @StartTimeMs.setter
1907
+ def StartTimeMs(self, StartTimeMs):
1908
+ self._StartTimeMs = StartTimeMs
1909
+
1893
1910
  @property
1894
1911
  def EndTime(self):
1895
- """对应云存视频的结束时间
1912
+ """对应云存视频的结束时间(秒级 UNIX 时间戳)
1896
1913
  :rtype: int
1897
1914
  """
1898
1915
  return self._EndTime
@@ -1901,6 +1918,17 @@ class CloudStorageAIServiceTask(AbstractModel):
1901
1918
  def EndTime(self, EndTime):
1902
1919
  self._EndTime = EndTime
1903
1920
 
1921
+ @property
1922
+ def EndTimeMs(self):
1923
+ """对应云存视频的结束时间(毫秒级 UNIX 时间戳)
1924
+ :rtype: int
1925
+ """
1926
+ return self._EndTimeMs
1927
+
1928
+ @EndTimeMs.setter
1929
+ def EndTimeMs(self, EndTimeMs):
1930
+ self._EndTimeMs = EndTimeMs
1931
+
1904
1932
  @property
1905
1933
  def Status(self):
1906
1934
  """任务状态(1:失败;2:成功但结果为空;3:成功且结果非空;4:执行中)
@@ -1986,7 +2014,9 @@ class CloudStorageAIServiceTask(AbstractModel):
1986
2014
  self._ChannelId = params.get("ChannelId")
1987
2015
  self._ServiceType = params.get("ServiceType")
1988
2016
  self._StartTime = params.get("StartTime")
2017
+ self._StartTimeMs = params.get("StartTimeMs")
1989
2018
  self._EndTime = params.get("EndTime")
2019
+ self._EndTimeMs = params.get("EndTimeMs")
1990
2020
  self._Status = params.get("Status")
1991
2021
  self._Result = params.get("Result")
1992
2022
  self._Files = params.get("Files")
@@ -19998,11 +20028,14 @@ class InvokeAISearchServiceRequest(AbstractModel):
19998
20028
  :type Query: str
19999
20029
  :param _SummaryLang: 搜索结果总结的语言类型,支持的类型有:en-US、zh-CN、id-ID、th-TH
20000
20030
  :type SummaryLang: str
20031
+ :param _ChannelId: 通道ID
20032
+ :type ChannelId: int
20001
20033
  """
20002
20034
  self._ProductId = None
20003
20035
  self._DeviceName = None
20004
20036
  self._Query = None
20005
20037
  self._SummaryLang = None
20038
+ self._ChannelId = None
20006
20039
 
20007
20040
  @property
20008
20041
  def ProductId(self):
@@ -20048,12 +20081,24 @@ class InvokeAISearchServiceRequest(AbstractModel):
20048
20081
  def SummaryLang(self, SummaryLang):
20049
20082
  self._SummaryLang = SummaryLang
20050
20083
 
20084
+ @property
20085
+ def ChannelId(self):
20086
+ """通道ID
20087
+ :rtype: int
20088
+ """
20089
+ return self._ChannelId
20090
+
20091
+ @ChannelId.setter
20092
+ def ChannelId(self, ChannelId):
20093
+ self._ChannelId = ChannelId
20094
+
20051
20095
 
20052
20096
  def _deserialize(self, params):
20053
20097
  self._ProductId = params.get("ProductId")
20054
20098
  self._DeviceName = params.get("DeviceName")
20055
20099
  self._Query = params.get("Query")
20056
20100
  self._SummaryLang = params.get("SummaryLang")
20101
+ self._ChannelId = params.get("ChannelId")
20057
20102
  memeber_set = set(params.keys())
20058
20103
  for name, value in vars(self).items():
20059
20104
  property_name = name[1:]
@@ -20075,11 +20120,14 @@ class InvokeAISearchServiceResponse(AbstractModel):
20075
20120
  :type Summary: str
20076
20121
  :param _Targets: 视频结果集
20077
20122
  :type Targets: list of TargetInfo
20123
+ :param _VideoURL: 视频回放URL
20124
+ :type VideoURL: str
20078
20125
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
20079
20126
  :type RequestId: str
20080
20127
  """
20081
20128
  self._Summary = None
20082
20129
  self._Targets = None
20130
+ self._VideoURL = None
20083
20131
  self._RequestId = None
20084
20132
 
20085
20133
  @property
@@ -20104,6 +20152,17 @@ class InvokeAISearchServiceResponse(AbstractModel):
20104
20152
  def Targets(self, Targets):
20105
20153
  self._Targets = Targets
20106
20154
 
20155
+ @property
20156
+ def VideoURL(self):
20157
+ """视频回放URL
20158
+ :rtype: str
20159
+ """
20160
+ return self._VideoURL
20161
+
20162
+ @VideoURL.setter
20163
+ def VideoURL(self, VideoURL):
20164
+ self._VideoURL = VideoURL
20165
+
20107
20166
  @property
20108
20167
  def RequestId(self):
20109
20168
  """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -20124,6 +20183,7 @@ class InvokeAISearchServiceResponse(AbstractModel):
20124
20183
  obj = TargetInfo()
20125
20184
  obj._deserialize(item)
20126
20185
  self._Targets.append(obj)
20186
+ self._VideoURL = params.get("VideoURL")
20127
20187
  self._RequestId = params.get("RequestId")
20128
20188
 
20129
20189
 
@@ -28109,6 +28169,10 @@ class TargetInfo(AbstractModel):
28109
28169
  :type EventId: str
28110
28170
  :param _Summary: 视频内容摘要
28111
28171
  :type Summary: str
28172
+ :param _ChannelId: 通道ID
28173
+ :type ChannelId: int
28174
+ :param _Thumbnail: 缩略图路径
28175
+ :type Thumbnail: str
28112
28176
  """
28113
28177
  self._Id = None
28114
28178
  self._ProductId = None
@@ -28117,6 +28181,8 @@ class TargetInfo(AbstractModel):
28117
28181
  self._EndTimeMs = None
28118
28182
  self._EventId = None
28119
28183
  self._Summary = None
28184
+ self._ChannelId = None
28185
+ self._Thumbnail = None
28120
28186
 
28121
28187
  @property
28122
28188
  def Id(self):
@@ -28195,6 +28261,28 @@ class TargetInfo(AbstractModel):
28195
28261
  def Summary(self, Summary):
28196
28262
  self._Summary = Summary
28197
28263
 
28264
+ @property
28265
+ def ChannelId(self):
28266
+ """通道ID
28267
+ :rtype: int
28268
+ """
28269
+ return self._ChannelId
28270
+
28271
+ @ChannelId.setter
28272
+ def ChannelId(self, ChannelId):
28273
+ self._ChannelId = ChannelId
28274
+
28275
+ @property
28276
+ def Thumbnail(self):
28277
+ """缩略图路径
28278
+ :rtype: str
28279
+ """
28280
+ return self._Thumbnail
28281
+
28282
+ @Thumbnail.setter
28283
+ def Thumbnail(self, Thumbnail):
28284
+ self._Thumbnail = Thumbnail
28285
+
28198
28286
 
28199
28287
  def _deserialize(self, params):
28200
28288
  self._Id = params.get("Id")
@@ -28204,6 +28292,8 @@ class TargetInfo(AbstractModel):
28204
28292
  self._EndTimeMs = params.get("EndTimeMs")
28205
28293
  self._EventId = params.get("EventId")
28206
28294
  self._Summary = params.get("Summary")
28295
+ self._ChannelId = params.get("ChannelId")
28296
+ self._Thumbnail = params.get("Thumbnail")
28207
28297
  memeber_set = set(params.keys())
28208
28298
  for name, value in vars(self).items():
28209
28299
  property_name = name[1:]
@@ -3529,11 +3529,25 @@ class DeleteWarningResponse(AbstractModel):
3529
3529
 
3530
3530
  def __init__(self):
3531
3531
  r"""
3532
+ :param _Cnt: 操作个数
3533
+ :type Cnt: int
3532
3534
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3533
3535
  :type RequestId: str
3534
3536
  """
3537
+ self._Cnt = None
3535
3538
  self._RequestId = None
3536
3539
 
3540
+ @property
3541
+ def Cnt(self):
3542
+ """操作个数
3543
+ :rtype: int
3544
+ """
3545
+ return self._Cnt
3546
+
3547
+ @Cnt.setter
3548
+ def Cnt(self, Cnt):
3549
+ self._Cnt = Cnt
3550
+
3537
3551
  @property
3538
3552
  def RequestId(self):
3539
3553
  """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -3547,6 +3561,7 @@ class DeleteWarningResponse(AbstractModel):
3547
3561
 
3548
3562
 
3549
3563
  def _deserialize(self, params):
3564
+ self._Cnt = params.get("Cnt")
3550
3565
  self._RequestId = params.get("RequestId")
3551
3566
 
3552
3567
 
@@ -113,7 +113,7 @@ RESOURCEINUSE = 'ResourceInUse'
113
113
  # 资源不足。
114
114
  RESOURCEINSUFFICIENT = 'ResourceInsufficient'
115
115
 
116
- # 存储空间已无剩余,无法使用存储功能。
116
+ # 录制功能因存储超量或账号欠费而受限。
117
117
  RESOURCEINSUFFICIENT_RECORD = 'ResourceInsufficient.Record'
118
118
 
119
119
  # 打开课堂失败,请前往控制台查看用量情况。
@@ -24393,7 +24393,11 @@ class SaveDocRequest(AbstractModel):
24393
24393
  :type CosUrl: str
24394
24394
  :param _ETag: ETag 全称为 Entity Tag,是对象被创建时标识对象内容的信息标签,可用于检查对象的内容是否发生变化 成功上传cos后,从返回头中获取
24395
24395
  :type ETag: str
24396
- :param _CosHash: cos_hash x-cos-hash-crc64ecma 头部中的 CRC64编码进行校验上传到云端的文件和本地文件的一致性 <br> 成功上传cos后,从返回头中获取
24396
+ :param _CosHash: cos_hash x-cos-hash-crc64ecma 头部中的 CRC64编码进行校验上传到云端的文件和本地文件的一致性
24397
+ 成功上传cos后,从返回头中获取
24398
+
24399
+ 请注意:
24400
+ cos_hash为文档唯一性标识,与文件名无关 相同的cos_hash会被判定为重复文档
24397
24401
  :type CosHash: str
24398
24402
  :param _Size: 文件大小
24399
24403
  :type Size: str
@@ -24494,7 +24498,11 @@ class SaveDocRequest(AbstractModel):
24494
24498
 
24495
24499
  @property
24496
24500
  def CosHash(self):
24497
- """cos_hash x-cos-hash-crc64ecma 头部中的 CRC64编码进行校验上传到云端的文件和本地文件的一致性 <br> 成功上传cos后,从返回头中获取
24501
+ """cos_hash x-cos-hash-crc64ecma 头部中的 CRC64编码进行校验上传到云端的文件和本地文件的一致性
24502
+ 成功上传cos后,从返回头中获取
24503
+
24504
+ 请注意:
24505
+ cos_hash为文档唯一性标识,与文件名无关 相同的cos_hash会被判定为重复文档
24498
24506
  :rtype: str
24499
24507
  """
24500
24508
  return self._CosHash
@@ -27409,7 +27409,7 @@ class DescribeSmartSubtitleTemplatesRequest(AbstractModel):
27409
27409
 
27410
27410
  def __init__(self):
27411
27411
  r"""
27412
- :param _Definitions: 智能字幕模板唯一标识过滤条件,数组长度限制:10
27412
+ :param _Definitions: 智能字幕模板唯一标识过滤条件,数组长度限制:100
27413
27413
  :type Definitions: list of int
27414
27414
  :param _Offset: 分页偏移量,默认值:0。
27415
27415
  :type Offset: int
@@ -27430,7 +27430,7 @@ class DescribeSmartSubtitleTemplatesRequest(AbstractModel):
27430
27430
 
27431
27431
  @property
27432
27432
  def Definitions(self):
27433
- """智能字幕模板唯一标识过滤条件,数组长度限制:10
27433
+ """智能字幕模板唯一标识过滤条件,数组长度限制:100
27434
27434
  :rtype: list of int
27435
27435
  """
27436
27436
  return self._Definitions
@@ -12117,17 +12117,29 @@ class InquiryPriceCreateInstanceResponse(AbstractModel):
12117
12117
 
12118
12118
  def __init__(self):
12119
12119
  r"""
12120
- :param _Price: 价格,单位:分
12120
+ :param _Price: 价格
12121
12121
  :type Price: float
12122
+ :param _HighPrecisionPrice: 高精度价格
12123
+ :type HighPrecisionPrice: float
12124
+ :param _Currency: 币种
12125
+ :type Currency: str
12126
+ :param _AmountUnit: 价格金额单位
12127
+
12128
+ - pent: 分
12129
+ - microPent: 微分
12130
+ :type AmountUnit: str
12122
12131
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12123
12132
  :type RequestId: str
12124
12133
  """
12125
12134
  self._Price = None
12135
+ self._HighPrecisionPrice = None
12136
+ self._Currency = None
12137
+ self._AmountUnit = None
12126
12138
  self._RequestId = None
12127
12139
 
12128
12140
  @property
12129
12141
  def Price(self):
12130
- """价格,单位:分
12142
+ """价格
12131
12143
  :rtype: float
12132
12144
  """
12133
12145
  return self._Price
@@ -12136,6 +12148,42 @@ class InquiryPriceCreateInstanceResponse(AbstractModel):
12136
12148
  def Price(self, Price):
12137
12149
  self._Price = Price
12138
12150
 
12151
+ @property
12152
+ def HighPrecisionPrice(self):
12153
+ """高精度价格
12154
+ :rtype: float
12155
+ """
12156
+ return self._HighPrecisionPrice
12157
+
12158
+ @HighPrecisionPrice.setter
12159
+ def HighPrecisionPrice(self, HighPrecisionPrice):
12160
+ self._HighPrecisionPrice = HighPrecisionPrice
12161
+
12162
+ @property
12163
+ def Currency(self):
12164
+ """币种
12165
+ :rtype: str
12166
+ """
12167
+ return self._Currency
12168
+
12169
+ @Currency.setter
12170
+ def Currency(self, Currency):
12171
+ self._Currency = Currency
12172
+
12173
+ @property
12174
+ def AmountUnit(self):
12175
+ """价格金额单位
12176
+
12177
+ - pent: 分
12178
+ - microPent: 微分
12179
+ :rtype: str
12180
+ """
12181
+ return self._AmountUnit
12182
+
12183
+ @AmountUnit.setter
12184
+ def AmountUnit(self, AmountUnit):
12185
+ self._AmountUnit = AmountUnit
12186
+
12139
12187
  @property
12140
12188
  def RequestId(self):
12141
12189
  """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -12150,6 +12198,9 @@ class InquiryPriceCreateInstanceResponse(AbstractModel):
12150
12198
 
12151
12199
  def _deserialize(self, params):
12152
12200
  self._Price = params.get("Price")
12201
+ self._HighPrecisionPrice = params.get("HighPrecisionPrice")
12202
+ self._Currency = params.get("Currency")
12203
+ self._AmountUnit = params.get("AmountUnit")
12153
12204
  self._RequestId = params.get("RequestId")
12154
12205
 
12155
12206
 
@@ -12211,17 +12262,29 @@ class InquiryPriceRenewInstanceResponse(AbstractModel):
12211
12262
 
12212
12263
  def __init__(self):
12213
12264
  r"""
12214
- :param _Price: 价格,单位:分。
12265
+ :param _Price: 价格
12215
12266
  :type Price: float
12267
+ :param _HighPrecisionPrice: 高精度价格
12268
+ :type HighPrecisionPrice: float
12269
+ :param _Currency: 币种
12270
+ :type Currency: str
12271
+ :param _AmountUnit: 价格金额单位
12272
+
12273
+ - pent: 分
12274
+ - microPent: 微分
12275
+ :type AmountUnit: str
12216
12276
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12217
12277
  :type RequestId: str
12218
12278
  """
12219
12279
  self._Price = None
12280
+ self._HighPrecisionPrice = None
12281
+ self._Currency = None
12282
+ self._AmountUnit = None
12220
12283
  self._RequestId = None
12221
12284
 
12222
12285
  @property
12223
12286
  def Price(self):
12224
- """价格,单位:分。
12287
+ """价格
12225
12288
  :rtype: float
12226
12289
  """
12227
12290
  return self._Price
@@ -12230,6 +12293,42 @@ class InquiryPriceRenewInstanceResponse(AbstractModel):
12230
12293
  def Price(self, Price):
12231
12294
  self._Price = Price
12232
12295
 
12296
+ @property
12297
+ def HighPrecisionPrice(self):
12298
+ """高精度价格
12299
+ :rtype: float
12300
+ """
12301
+ return self._HighPrecisionPrice
12302
+
12303
+ @HighPrecisionPrice.setter
12304
+ def HighPrecisionPrice(self, HighPrecisionPrice):
12305
+ self._HighPrecisionPrice = HighPrecisionPrice
12306
+
12307
+ @property
12308
+ def Currency(self):
12309
+ """币种
12310
+ :rtype: str
12311
+ """
12312
+ return self._Currency
12313
+
12314
+ @Currency.setter
12315
+ def Currency(self, Currency):
12316
+ self._Currency = Currency
12317
+
12318
+ @property
12319
+ def AmountUnit(self):
12320
+ """价格金额单位
12321
+
12322
+ - pent: 分
12323
+ - microPent: 微分
12324
+ :rtype: str
12325
+ """
12326
+ return self._AmountUnit
12327
+
12328
+ @AmountUnit.setter
12329
+ def AmountUnit(self, AmountUnit):
12330
+ self._AmountUnit = AmountUnit
12331
+
12233
12332
  @property
12234
12333
  def RequestId(self):
12235
12334
  """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -12244,6 +12343,9 @@ class InquiryPriceRenewInstanceResponse(AbstractModel):
12244
12343
 
12245
12344
  def _deserialize(self, params):
12246
12345
  self._Price = params.get("Price")
12346
+ self._HighPrecisionPrice = params.get("HighPrecisionPrice")
12347
+ self._Currency = params.get("Currency")
12348
+ self._AmountUnit = params.get("AmountUnit")
12247
12349
  self._RequestId = params.get("RequestId")
12248
12350
 
12249
12351
 
@@ -12335,17 +12437,29 @@ class InquiryPriceUpgradeInstanceResponse(AbstractModel):
12335
12437
 
12336
12438
  def __init__(self):
12337
12439
  r"""
12338
- :param _Price: 价格,单位:分
12440
+ :param _Price: 价格
12339
12441
  :type Price: float
12442
+ :param _HighPrecisionPrice: 高精度价格
12443
+ :type HighPrecisionPrice: float
12444
+ :param _Currency: 币种
12445
+ :type Currency: str
12446
+ :param _AmountUnit: 价格金额单位
12447
+
12448
+ - pent: 分
12449
+ - microPent: 微分
12450
+ :type AmountUnit: str
12340
12451
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12341
12452
  :type RequestId: str
12342
12453
  """
12343
12454
  self._Price = None
12455
+ self._HighPrecisionPrice = None
12456
+ self._Currency = None
12457
+ self._AmountUnit = None
12344
12458
  self._RequestId = None
12345
12459
 
12346
12460
  @property
12347
12461
  def Price(self):
12348
- """价格,单位:分
12462
+ """价格
12349
12463
  :rtype: float
12350
12464
  """
12351
12465
  return self._Price
@@ -12354,6 +12468,42 @@ class InquiryPriceUpgradeInstanceResponse(AbstractModel):
12354
12468
  def Price(self, Price):
12355
12469
  self._Price = Price
12356
12470
 
12471
+ @property
12472
+ def HighPrecisionPrice(self):
12473
+ """高精度价格
12474
+ :rtype: float
12475
+ """
12476
+ return self._HighPrecisionPrice
12477
+
12478
+ @HighPrecisionPrice.setter
12479
+ def HighPrecisionPrice(self, HighPrecisionPrice):
12480
+ self._HighPrecisionPrice = HighPrecisionPrice
12481
+
12482
+ @property
12483
+ def Currency(self):
12484
+ """币种
12485
+ :rtype: str
12486
+ """
12487
+ return self._Currency
12488
+
12489
+ @Currency.setter
12490
+ def Currency(self, Currency):
12491
+ self._Currency = Currency
12492
+
12493
+ @property
12494
+ def AmountUnit(self):
12495
+ """价格金额单位
12496
+
12497
+ - pent: 分
12498
+ - microPent: 微分
12499
+ :rtype: str
12500
+ """
12501
+ return self._AmountUnit
12502
+
12503
+ @AmountUnit.setter
12504
+ def AmountUnit(self, AmountUnit):
12505
+ self._AmountUnit = AmountUnit
12506
+
12357
12507
  @property
12358
12508
  def RequestId(self):
12359
12509
  """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -12368,6 +12518,9 @@ class InquiryPriceUpgradeInstanceResponse(AbstractModel):
12368
12518
 
12369
12519
  def _deserialize(self, params):
12370
12520
  self._Price = params.get("Price")
12521
+ self._HighPrecisionPrice = params.get("HighPrecisionPrice")
12522
+ self._Currency = params.get("Currency")
12523
+ self._AmountUnit = params.get("AmountUnit")
12371
12524
  self._RequestId = params.get("RequestId")
12372
12525
 
12373
12526
 
@@ -53,6 +53,12 @@ INVALIDPARAMETERVALUE_COMMANDCONTENTINVALID = 'InvalidParameterValue.CommandCont
53
53
  # Command 名称重复。
54
54
  INVALIDPARAMETERVALUE_COMMANDNAMEDUPLICATED = 'InvalidParameterValue.CommandNameDuplicated'
55
55
 
56
+ # ID 格式错误。
57
+ INVALIDPARAMETERVALUE_ID = 'InvalidParameterValue.ID'
58
+
59
+ # ID 数组中,ID 格式错误或格式不一致。
60
+ INVALIDPARAMETERVALUE_INCONSISTENTID = 'InvalidParameterValue.InconsistentID'
61
+
56
62
  # 实例类型不一致。
57
63
  INVALIDPARAMETERVALUE_INCONSISTENTINSTANCE = 'InvalidParameterValue.InconsistentInstance'
58
64