tencentcloud-sdk-python 3.0.1373__py2.py3-none-any.whl → 3.0.1375__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 (49) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/aiart/v20221229/models.py +16 -0
  3. tencentcloud/apm/v20210622/models.py +60 -0
  4. tencentcloud/asr/v20190614/asr_client.py +1 -1
  5. tencentcloud/asr/v20190614/models.py +8 -0
  6. tencentcloud/bh/v20230418/models.py +4 -8
  7. tencentcloud/cbs/v20170312/models.py +27 -2
  8. tencentcloud/chc/v20230418/models.py +84 -2
  9. tencentcloud/ckafka/v20190819/models.py +0 -24
  10. tencentcloud/clb/v20180317/clb_client.py +31 -23
  11. tencentcloud/clb/v20180317/errorcodes.py +3 -0
  12. tencentcloud/clb/v20180317/models.py +521 -262
  13. tencentcloud/cloudaudit/v20190319/models.py +0 -64
  14. tencentcloud/config/v20220802/models.py +0 -150
  15. tencentcloud/cvm/v20170312/models.py +4 -4
  16. tencentcloud/cynosdb/v20190107/cynosdb_client.py +23 -0
  17. tencentcloud/cynosdb/v20190107/models.py +128 -15
  18. tencentcloud/dlc/v20210125/models.py +30 -0
  19. tencentcloud/domain/v20180808/domain_client.py +4 -0
  20. tencentcloud/domain/v20180808/errorcodes.py +3 -0
  21. tencentcloud/domain/v20180808/models.py +184 -78
  22. tencentcloud/dsgc/v20190723/dsgc_client.py +23 -0
  23. tencentcloud/dsgc/v20190723/models.py +384 -0
  24. tencentcloud/es/v20250101/es_client.py +4 -2
  25. tencentcloud/es/v20250101/models.py +70 -70
  26. tencentcloud/iss/v20230517/models.py +0 -40
  27. tencentcloud/lowcode/v20210108/models.py +17 -2
  28. tencentcloud/ocr/v20181119/models.py +20 -2
  29. tencentcloud/organization/v20210331/models.py +0 -12
  30. tencentcloud/tdmq/v20200217/models.py +185 -15
  31. tencentcloud/thpc/v20230321/errorcodes.py +3 -0
  32. tencentcloud/tke/v20180525/models.py +72 -72
  33. tencentcloud/trocket/v20230308/models.py +190 -12
  34. tencentcloud/trocket/v20230308/trocket_client.py +0 -1
  35. tencentcloud/tsf/v20180326/errorcodes.py +3 -0
  36. tencentcloud/tsf/v20180326/models.py +2 -2
  37. tencentcloud/vod/v20180717/models.py +15 -0
  38. tencentcloud/vpc/v20170312/errorcodes.py +12 -0
  39. tencentcloud/vpc/v20170312/models.py +262 -254
  40. tencentcloud/vpc/v20170312/vpc_client.py +13 -13
  41. tencentcloud/waf/v20180125/models.py +34 -0
  42. tencentcloud/waf/v20180125/waf_client.py +23 -0
  43. tencentcloud/wedata/v20210820/models.py +1704 -0
  44. tencentcloud/wedata/v20210820/wedata_client.py +125 -9
  45. {tencentcloud_sdk_python-3.0.1373.dist-info → tencentcloud_sdk_python-3.0.1375.dist-info}/METADATA +1 -1
  46. {tencentcloud_sdk_python-3.0.1373.dist-info → tencentcloud_sdk_python-3.0.1375.dist-info}/RECORD +49 -49
  47. {tencentcloud_sdk_python-3.0.1373.dist-info → tencentcloud_sdk_python-3.0.1375.dist-info}/LICENSE +0 -0
  48. {tencentcloud_sdk_python-3.0.1373.dist-info → tencentcloud_sdk_python-3.0.1375.dist-info}/WHEEL +0 -0
  49. {tencentcloud_sdk_python-3.0.1373.dist-info → tencentcloud_sdk_python-3.0.1375.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py CHANGED
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1373'
17
+ __version__ = '3.0.1375'
@@ -1275,10 +1275,13 @@ class LogoParam(AbstractModel):
1275
1275
  def __init__(self):
1276
1276
  r"""
1277
1277
  :param _LogoUrl: 水印 Url
1278
+ 注意:此字段可能返回 null,表示取不到有效值。
1278
1279
  :type LogoUrl: str
1279
1280
  :param _LogoImage: 水印 Base64,Url 和 Base64 二选一传入,如果都提供以 Url 为准
1281
+ 注意:此字段可能返回 null,表示取不到有效值。
1280
1282
  :type LogoImage: str
1281
1283
  :param _LogoRect: 水印图片位于生成结果图中的坐标,将按照坐标对标识图片进行位置和大小的拉伸匹配
1284
+ 注意:此字段可能返回 null,表示取不到有效值。
1282
1285
  :type LogoRect: :class:`tencentcloud.aiart.v20221229.models.LogoRect`
1283
1286
  """
1284
1287
  self._LogoUrl = None
@@ -1288,6 +1291,7 @@ class LogoParam(AbstractModel):
1288
1291
  @property
1289
1292
  def LogoUrl(self):
1290
1293
  """水印 Url
1294
+ 注意:此字段可能返回 null,表示取不到有效值。
1291
1295
  :rtype: str
1292
1296
  """
1293
1297
  return self._LogoUrl
@@ -1299,6 +1303,7 @@ class LogoParam(AbstractModel):
1299
1303
  @property
1300
1304
  def LogoImage(self):
1301
1305
  """水印 Base64,Url 和 Base64 二选一传入,如果都提供以 Url 为准
1306
+ 注意:此字段可能返回 null,表示取不到有效值。
1302
1307
  :rtype: str
1303
1308
  """
1304
1309
  return self._LogoImage
@@ -1310,6 +1315,7 @@ class LogoParam(AbstractModel):
1310
1315
  @property
1311
1316
  def LogoRect(self):
1312
1317
  """水印图片位于生成结果图中的坐标,将按照坐标对标识图片进行位置和大小的拉伸匹配
1318
+ 注意:此字段可能返回 null,表示取不到有效值。
1313
1319
  :rtype: :class:`tencentcloud.aiart.v20221229.models.LogoRect`
1314
1320
  """
1315
1321
  return self._LogoRect
@@ -1343,12 +1349,16 @@ class LogoRect(AbstractModel):
1343
1349
  def __init__(self):
1344
1350
  r"""
1345
1351
  :param _X: 左上角X坐标
1352
+ 注意:此字段可能返回 null,表示取不到有效值。
1346
1353
  :type X: int
1347
1354
  :param _Y: 左上角Y坐标
1355
+ 注意:此字段可能返回 null,表示取不到有效值。
1348
1356
  :type Y: int
1349
1357
  :param _Width: 方框宽度
1358
+ 注意:此字段可能返回 null,表示取不到有效值。
1350
1359
  :type Width: int
1351
1360
  :param _Height: 方框高度
1361
+ 注意:此字段可能返回 null,表示取不到有效值。
1352
1362
  :type Height: int
1353
1363
  """
1354
1364
  self._X = None
@@ -1359,6 +1369,7 @@ class LogoRect(AbstractModel):
1359
1369
  @property
1360
1370
  def X(self):
1361
1371
  """左上角X坐标
1372
+ 注意:此字段可能返回 null,表示取不到有效值。
1362
1373
  :rtype: int
1363
1374
  """
1364
1375
  return self._X
@@ -1370,6 +1381,7 @@ class LogoRect(AbstractModel):
1370
1381
  @property
1371
1382
  def Y(self):
1372
1383
  """左上角Y坐标
1384
+ 注意:此字段可能返回 null,表示取不到有效值。
1373
1385
  :rtype: int
1374
1386
  """
1375
1387
  return self._Y
@@ -1381,6 +1393,7 @@ class LogoRect(AbstractModel):
1381
1393
  @property
1382
1394
  def Width(self):
1383
1395
  """方框宽度
1396
+ 注意:此字段可能返回 null,表示取不到有效值。
1384
1397
  :rtype: int
1385
1398
  """
1386
1399
  return self._Width
@@ -1392,6 +1405,7 @@ class LogoRect(AbstractModel):
1392
1405
  @property
1393
1406
  def Height(self):
1394
1407
  """方框高度
1408
+ 注意:此字段可能返回 null,表示取不到有效值。
1395
1409
  :rtype: int
1396
1410
  """
1397
1411
  return self._Height
@@ -2677,6 +2691,7 @@ class ResultConfig(AbstractModel):
2677
2691
  :param _Resolution: 生成图分辨率
2678
2692
 
2679
2693
  图像风格化(图生图)支持生成以下分辨率的图片:origin(与输入图分辨率一致,长边最高为2000,超出将做等比例缩小)、768:768(1:1)、768:1024(3:4)、1024:768(4:3),不传默认使用origin,如果指定生成的长宽比与输入图长宽比差异过大可能导致图片内容被裁剪。
2694
+ 注意:此字段可能返回 null,表示取不到有效值。
2680
2695
  :type Resolution: str
2681
2696
  """
2682
2697
  self._Resolution = None
@@ -2686,6 +2701,7 @@ class ResultConfig(AbstractModel):
2686
2701
  """生成图分辨率
2687
2702
 
2688
2703
  图像风格化(图生图)支持生成以下分辨率的图片:origin(与输入图分辨率一致,长边最高为2000,超出将做等比例缩小)、768:768(1:1)、768:1024(3:4)、1024:768(4:3),不传默认使用origin,如果指定生成的长宽比与输入图长宽比差异过大可能导致图片内容被裁剪。
2704
+ 注意:此字段可能返回 null,表示取不到有效值。
2689
2705
  :rtype: str
2690
2706
  """
2691
2707
  return self._Resolution
@@ -754,6 +754,10 @@ class ApmInstanceDetail(AbstractModel):
754
754
  8: 账号欠费
755
755
  }
756
756
  :type StopReason: int
757
+ :param _IsRemoteCommandExecutionAnalysis: 是否开远程命令执行检测(0=关, 1=开)
758
+ :type IsRemoteCommandExecutionAnalysis: int
759
+ :param _IsMemoryHijackingAnalysis: 是否开内存马执行检测(0=关, 1=开)
760
+ :type IsMemoryHijackingAnalysis: int
757
761
  """
758
762
  self._InstanceId = None
759
763
  self._Name = None
@@ -792,6 +796,8 @@ class ApmInstanceDetail(AbstractModel):
792
796
  self._IsInstrumentationVulnerabilityScan = None
793
797
  self._IsSqlInjectionAnalysis = None
794
798
  self._StopReason = None
799
+ self._IsRemoteCommandExecutionAnalysis = None
800
+ self._IsMemoryHijackingAnalysis = None
795
801
 
796
802
  @property
797
803
  def InstanceId(self):
@@ -1206,6 +1212,28 @@ class ApmInstanceDetail(AbstractModel):
1206
1212
  def StopReason(self, StopReason):
1207
1213
  self._StopReason = StopReason
1208
1214
 
1215
+ @property
1216
+ def IsRemoteCommandExecutionAnalysis(self):
1217
+ """是否开远程命令执行检测(0=关, 1=开)
1218
+ :rtype: int
1219
+ """
1220
+ return self._IsRemoteCommandExecutionAnalysis
1221
+
1222
+ @IsRemoteCommandExecutionAnalysis.setter
1223
+ def IsRemoteCommandExecutionAnalysis(self, IsRemoteCommandExecutionAnalysis):
1224
+ self._IsRemoteCommandExecutionAnalysis = IsRemoteCommandExecutionAnalysis
1225
+
1226
+ @property
1227
+ def IsMemoryHijackingAnalysis(self):
1228
+ """是否开内存马执行检测(0=关, 1=开)
1229
+ :rtype: int
1230
+ """
1231
+ return self._IsMemoryHijackingAnalysis
1232
+
1233
+ @IsMemoryHijackingAnalysis.setter
1234
+ def IsMemoryHijackingAnalysis(self, IsMemoryHijackingAnalysis):
1235
+ self._IsMemoryHijackingAnalysis = IsMemoryHijackingAnalysis
1236
+
1209
1237
 
1210
1238
  def _deserialize(self, params):
1211
1239
  self._InstanceId = params.get("InstanceId")
@@ -1250,6 +1278,8 @@ class ApmInstanceDetail(AbstractModel):
1250
1278
  self._IsInstrumentationVulnerabilityScan = params.get("IsInstrumentationVulnerabilityScan")
1251
1279
  self._IsSqlInjectionAnalysis = params.get("IsSqlInjectionAnalysis")
1252
1280
  self._StopReason = params.get("StopReason")
1281
+ self._IsRemoteCommandExecutionAnalysis = params.get("IsRemoteCommandExecutionAnalysis")
1282
+ self._IsMemoryHijackingAnalysis = params.get("IsMemoryHijackingAnalysis")
1253
1283
  memeber_set = set(params.keys())
1254
1284
  for name, value in vars(self).items():
1255
1285
  property_name = name[1:]
@@ -3697,6 +3727,10 @@ class ModifyApmInstanceRequest(AbstractModel):
3697
3727
  :type IsSqlInjectionAnalysis: int
3698
3728
  :param _IsInstrumentationVulnerabilityScan: 是否开启组件漏洞检测(0=关,1=开)
3699
3729
  :type IsInstrumentationVulnerabilityScan: int
3730
+ :param _IsRemoteCommandExecutionAnalysis: 是否开启远程命令攻击检测
3731
+ :type IsRemoteCommandExecutionAnalysis: int
3732
+ :param _IsMemoryHijackingAnalysis: 是否开启内存马检测
3733
+ :type IsMemoryHijackingAnalysis: int
3700
3734
  """
3701
3735
  self._InstanceId = None
3702
3736
  self._Name = None
@@ -3722,6 +3756,8 @@ class ModifyApmInstanceRequest(AbstractModel):
3722
3756
  self._DashboardTopicID = None
3723
3757
  self._IsSqlInjectionAnalysis = None
3724
3758
  self._IsInstrumentationVulnerabilityScan = None
3759
+ self._IsRemoteCommandExecutionAnalysis = None
3760
+ self._IsMemoryHijackingAnalysis = None
3725
3761
 
3726
3762
  @property
3727
3763
  def InstanceId(self):
@@ -3987,6 +4023,28 @@ class ModifyApmInstanceRequest(AbstractModel):
3987
4023
  def IsInstrumentationVulnerabilityScan(self, IsInstrumentationVulnerabilityScan):
3988
4024
  self._IsInstrumentationVulnerabilityScan = IsInstrumentationVulnerabilityScan
3989
4025
 
4026
+ @property
4027
+ def IsRemoteCommandExecutionAnalysis(self):
4028
+ """是否开启远程命令攻击检测
4029
+ :rtype: int
4030
+ """
4031
+ return self._IsRemoteCommandExecutionAnalysis
4032
+
4033
+ @IsRemoteCommandExecutionAnalysis.setter
4034
+ def IsRemoteCommandExecutionAnalysis(self, IsRemoteCommandExecutionAnalysis):
4035
+ self._IsRemoteCommandExecutionAnalysis = IsRemoteCommandExecutionAnalysis
4036
+
4037
+ @property
4038
+ def IsMemoryHijackingAnalysis(self):
4039
+ """是否开启内存马检测
4040
+ :rtype: int
4041
+ """
4042
+ return self._IsMemoryHijackingAnalysis
4043
+
4044
+ @IsMemoryHijackingAnalysis.setter
4045
+ def IsMemoryHijackingAnalysis(self, IsMemoryHijackingAnalysis):
4046
+ self._IsMemoryHijackingAnalysis = IsMemoryHijackingAnalysis
4047
+
3990
4048
 
3991
4049
  def _deserialize(self, params):
3992
4050
  self._InstanceId = params.get("InstanceId")
@@ -4018,6 +4076,8 @@ class ModifyApmInstanceRequest(AbstractModel):
4018
4076
  self._DashboardTopicID = params.get("DashboardTopicID")
4019
4077
  self._IsSqlInjectionAnalysis = params.get("IsSqlInjectionAnalysis")
4020
4078
  self._IsInstrumentationVulnerabilityScan = params.get("IsInstrumentationVulnerabilityScan")
4079
+ self._IsRemoteCommandExecutionAnalysis = params.get("IsRemoteCommandExecutionAnalysis")
4080
+ self._IsMemoryHijackingAnalysis = params.get("IsMemoryHijackingAnalysis")
4021
4081
  memeber_set = set(params.keys())
4022
4082
  for name, value in vars(self).items():
4023
4083
  property_name = name[1:]
@@ -545,7 +545,7 @@ class AsrClient(AbstractClient):
545
545
  def SentenceRecognition(self, request):
546
546
  """本接口用于对60秒之内的短音频文件进行识别。
547
547
  • 支持中文普通话、英语、粤语、日语、越南语、马来语、印度尼西亚语、菲律宾语、泰语、葡萄牙语、土耳其语、阿拉伯语、印地语、法语、德语、上海话、四川话、武汉话、贵阳话、昆明话、西安话、郑州话、太原话、兰州话、银川话、西宁话、南京话、合肥话、南昌话、长沙话、苏州话、杭州话、济南话、天津话、石家庄话、黑龙江话、吉林话、辽宁话。
548
- • 支持本地语音文件上传和语音URL上传两种请求方式,音频时长不能超过60s,音频文件大小不能超过3MB。推荐使用 [腾讯云COS](https://cloud.tencent.com/document/product/436/38484) 来存储音频、生成URL并提交请求,此种方式会走内网下载音频,极大降低整体请求时延;并且不会产生外网和流量下行费用,可节约成本(COS桶权限需要设置公有读私有写,或URL设置时效访问签名)
548
+ • 支持本地语音文件上传和语音URL上传两种请求方式,音频时长不能超过60s,音频文件大小不能超过3MB。推荐使用 [腾讯云COS](https://cloud.tencent.com/document/product/436/38484) 来存储音频、生成URL并提交请求,此种方式会走内网下载音频,极大降低整体请求时延;并且不会产生外网和流量下行费用,可节约成本(可参考COS预签名指南:[使用预签名 URL 访问 COS](https://cloud.tencent.com/document/product/436/68284) ,获取COS预签名url)
549
549
  • 音频格式支持wav、pcm、ogg-opus、speex、silk、mp3、m4a、aac、 amr。
550
550
  • 请求方法为 HTTP POST , Content-Type为"application/json; charset=utf-8"
551
551
  • 签名方法参考 [公共参数](https://cloud.tencent.com/document/api/1093/35640) 中签名方法v3。
@@ -2152,6 +2152,8 @@ class GetAsrVocabListRequest(AbstractModel):
2152
2152
 
2153
2153
  @property
2154
2154
  def TagInfos(self):
2155
+ warnings.warn("parameter `TagInfos` is deprecated", DeprecationWarning)
2156
+
2155
2157
  """标签信息,格式为“$TagKey : $TagValue ”,中间分隔符为“空格”+“:”+“空格”
2156
2158
  :rtype: list of str
2157
2159
  """
@@ -2159,6 +2161,8 @@ class GetAsrVocabListRequest(AbstractModel):
2159
2161
 
2160
2162
  @TagInfos.setter
2161
2163
  def TagInfos(self, TagInfos):
2164
+ warnings.warn("parameter `TagInfos` is deprecated", DeprecationWarning)
2165
+
2162
2166
  self._TagInfos = TagInfos
2163
2167
 
2164
2168
  @property
@@ -3232,6 +3236,8 @@ class Model(AbstractModel):
3232
3236
 
3233
3237
  @property
3234
3238
  def TagInfos(self):
3239
+ warnings.warn("parameter `TagInfos` is deprecated", DeprecationWarning)
3240
+
3235
3241
  """标签信息
3236
3242
  注意:此字段可能返回 null,表示取不到有效值。
3237
3243
  :rtype: list of str
@@ -3240,6 +3246,8 @@ class Model(AbstractModel):
3240
3246
 
3241
3247
  @TagInfos.setter
3242
3248
  def TagInfos(self, TagInfos):
3249
+ warnings.warn("parameter `TagInfos` is deprecated", DeprecationWarning)
3250
+
3243
3251
  self._TagInfos = TagInfos
3244
3252
 
3245
3253
 
@@ -3444,9 +3444,7 @@ class CreateCmdTemplateRequest(AbstractModel):
3444
3444
  :type Name: str
3445
3445
  :param _CmdList: 命令列表,\n分隔,最大长度32768字节
3446
3446
  :type CmdList: str
3447
- :param _Encoding: 标识cmdlist字段前端是否为base64加密传值.
3448
- 0:表示非base64加密
3449
- 1:表示是base64加密
3447
+ :param _Encoding: 标识CmdList字段前端是否为base64加密传值.0:表示非base64加密1:表示是base64加密
3450
3448
  :type Encoding: int
3451
3449
  """
3452
3450
  self._Name = None
@@ -3477,9 +3475,7 @@ class CreateCmdTemplateRequest(AbstractModel):
3477
3475
 
3478
3476
  @property
3479
3477
  def Encoding(self):
3480
- """标识cmdlist字段前端是否为base64加密传值.
3481
- 0:表示非base64加密
3482
- 1:表示是base64加密
3478
+ """标识CmdList字段前端是否为base64加密传值.0:表示非base64加密1:表示是base64加密
3483
3479
  :rtype: int
3484
3480
  """
3485
3481
  return self._Encoding
@@ -13873,7 +13869,7 @@ class SearchCommandResult(AbstractModel):
13873
13869
  :type FromIp: str
13874
13870
  :param _SessionTime: 该命令所属会话的会话开始时间
13875
13871
  :type SessionTime: str
13876
- :param _SessTime: 该命令所属会话的会话开始时间(废弃,使用SessionTime)
13872
+ :param _SessTime: 该命令所属会话的会话开始时间(使用SessionTime)
13877
13873
  :type SessTime: str
13878
13874
  :param _ConfirmTime: 复核时间
13879
13875
  :type ConfirmTime: str
@@ -14069,7 +14065,7 @@ class SearchCommandResult(AbstractModel):
14069
14065
 
14070
14066
  @property
14071
14067
  def SessTime(self):
14072
- """该命令所属会话的会话开始时间(废弃,使用SessionTime)
14068
+ """该命令所属会话的会话开始时间(使用SessionTime)
14073
14069
  :rtype: str
14074
14070
  """
14075
14071
  return self._SessTime
@@ -8689,7 +8689,11 @@ class SnapshotGroup(AbstractModel):
8689
8689
  :type ContainRootSnapshot: bool
8690
8690
  :param _SnapshotIdSet: 快照组包含的快照ID列表。
8691
8691
  :type SnapshotIdSet: list of str
8692
- :param _SnapshotGroupState: 快照组状态。<br><li>NORMAL: 正常<br><li>CREATING:创建中<br><li>ROLLBACKING:回滚中
8692
+ :param _SnapshotGroupState: <ul>
8693
+ <li>NORMAL: 正常</li>
8694
+ <li>CREATING: 创建中</li>
8695
+ <li>ROLLBACKING: 回滚中</li>
8696
+ </ul>
8693
8697
  :type SnapshotGroupState: str
8694
8698
  :param _Percent: 快照组创建进度。
8695
8699
  :type Percent: int
@@ -8708,6 +8712,9 @@ class SnapshotGroup(AbstractModel):
8708
8712
  :param _DeadlineTime: 快照组到期时间。
8709
8713
  注意:此字段可能返回 null,表示取不到有效值。
8710
8714
  :type DeadlineTime: str
8715
+ :param _AutoSnapshotPolicyId: 来源自动快照策略ID
8716
+ 注意:此字段可能返回 null,表示取不到有效值。
8717
+ :type AutoSnapshotPolicyId: str
8711
8718
  """
8712
8719
  self._SnapshotGroupId = None
8713
8720
  self._SnapshotGroupType = None
@@ -8722,6 +8729,7 @@ class SnapshotGroup(AbstractModel):
8722
8729
  self._ImageCount = None
8723
8730
  self._IsPermanent = None
8724
8731
  self._DeadlineTime = None
8732
+ self._AutoSnapshotPolicyId = None
8725
8733
 
8726
8734
  @property
8727
8735
  def SnapshotGroupId(self):
@@ -8769,7 +8777,11 @@ class SnapshotGroup(AbstractModel):
8769
8777
 
8770
8778
  @property
8771
8779
  def SnapshotGroupState(self):
8772
- """快照组状态。<br><li>NORMAL: 正常<br><li>CREATING:创建中<br><li>ROLLBACKING:回滚中
8780
+ """<ul>
8781
+ <li>NORMAL: 正常</li>
8782
+ <li>CREATING: 创建中</li>
8783
+ <li>ROLLBACKING: 回滚中</li>
8784
+ </ul>
8773
8785
  :rtype: str
8774
8786
  """
8775
8787
  return self._SnapshotGroupState
@@ -8867,6 +8879,18 @@ class SnapshotGroup(AbstractModel):
8867
8879
  def DeadlineTime(self, DeadlineTime):
8868
8880
  self._DeadlineTime = DeadlineTime
8869
8881
 
8882
+ @property
8883
+ def AutoSnapshotPolicyId(self):
8884
+ """来源自动快照策略ID
8885
+ 注意:此字段可能返回 null,表示取不到有效值。
8886
+ :rtype: str
8887
+ """
8888
+ return self._AutoSnapshotPolicyId
8889
+
8890
+ @AutoSnapshotPolicyId.setter
8891
+ def AutoSnapshotPolicyId(self, AutoSnapshotPolicyId):
8892
+ self._AutoSnapshotPolicyId = AutoSnapshotPolicyId
8893
+
8870
8894
 
8871
8895
  def _deserialize(self, params):
8872
8896
  self._SnapshotGroupId = params.get("SnapshotGroupId")
@@ -8887,6 +8911,7 @@ class SnapshotGroup(AbstractModel):
8887
8911
  self._ImageCount = params.get("ImageCount")
8888
8912
  self._IsPermanent = params.get("IsPermanent")
8889
8913
  self._DeadlineTime = params.get("DeadlineTime")
8914
+ self._AutoSnapshotPolicyId = params.get("AutoSnapshotPolicyId")
8890
8915
  memeber_set = set(params.keys())
8891
8916
  for name, value in vars(self).items():
8892
8917
  property_name = name[1:]
@@ -1995,7 +1995,7 @@ class CreateReceivingWorkOrderRequest(AbstractModel):
1995
1995
  :type ExpressInfo: :class:`tencentcloud.chc.v20230418.models.ExpressDelivery`
1996
1996
  :param _Remark: 备注
1997
1997
  :type Remark: str
1998
- :param _ServerDeviceList: 服务器收货列表
1998
+ :param _ServerDeviceList: 服务器收货列表。最大值:200
1999
1999
  :type ServerDeviceList: list of ServerReceivingInfo
2000
2000
  :param _NetDeviceList: 网络设备收货列表
2001
2001
  :type NetDeviceList: list of NetReceivingInfo
@@ -2003,6 +2003,16 @@ class CreateReceivingWorkOrderRequest(AbstractModel):
2003
2003
  :type WireDeviceList: list of WireReceivingInfo
2004
2004
  :param _OtherDeviceList: 其他设备收货列表
2005
2005
  :type OtherDeviceList: list of OtherDevReceivingInfo
2006
+ :param _WithRackOn: 收货后自动上架。此参数为true时,后台会自动提设备上架单
2007
+ :type WithRackOn: bool
2008
+ :param _DeviceRackOnList: 设备上架信息。当WithRackOn为true此参数必传,且sn需要和收货的列表一致
2009
+ :type DeviceRackOnList: list of DeviceRackOn
2010
+ :param _StuffOption: 上架人员 1.自行解决 2.由腾讯IDC负责
2011
+ :type StuffOption: str
2012
+ :param _SelfOperationInfo: 自行解决信息。当StuffOption为1时,此参数必填
2013
+ :type SelfOperationInfo: :class:`tencentcloud.chc.v20230418.models.SelfOperation`
2014
+ :param _WithPowerOn: 上架后自动开电。此参数为true时,后台会自动提设备开电单
2015
+ :type WithPowerOn: bool
2006
2016
  """
2007
2017
  self._IdcId = None
2008
2018
  self._DeviceType = None
@@ -2015,6 +2025,11 @@ class CreateReceivingWorkOrderRequest(AbstractModel):
2015
2025
  self._NetDeviceList = None
2016
2026
  self._WireDeviceList = None
2017
2027
  self._OtherDeviceList = None
2028
+ self._WithRackOn = None
2029
+ self._DeviceRackOnList = None
2030
+ self._StuffOption = None
2031
+ self._SelfOperationInfo = None
2032
+ self._WithPowerOn = None
2018
2033
 
2019
2034
  @property
2020
2035
  def IdcId(self):
@@ -2095,7 +2110,7 @@ class CreateReceivingWorkOrderRequest(AbstractModel):
2095
2110
 
2096
2111
  @property
2097
2112
  def ServerDeviceList(self):
2098
- """服务器收货列表
2113
+ """服务器收货列表。最大值:200
2099
2114
  :rtype: list of ServerReceivingInfo
2100
2115
  """
2101
2116
  return self._ServerDeviceList
@@ -2137,6 +2152,61 @@ class CreateReceivingWorkOrderRequest(AbstractModel):
2137
2152
  def OtherDeviceList(self, OtherDeviceList):
2138
2153
  self._OtherDeviceList = OtherDeviceList
2139
2154
 
2155
+ @property
2156
+ def WithRackOn(self):
2157
+ """收货后自动上架。此参数为true时,后台会自动提设备上架单
2158
+ :rtype: bool
2159
+ """
2160
+ return self._WithRackOn
2161
+
2162
+ @WithRackOn.setter
2163
+ def WithRackOn(self, WithRackOn):
2164
+ self._WithRackOn = WithRackOn
2165
+
2166
+ @property
2167
+ def DeviceRackOnList(self):
2168
+ """设备上架信息。当WithRackOn为true此参数必传,且sn需要和收货的列表一致
2169
+ :rtype: list of DeviceRackOn
2170
+ """
2171
+ return self._DeviceRackOnList
2172
+
2173
+ @DeviceRackOnList.setter
2174
+ def DeviceRackOnList(self, DeviceRackOnList):
2175
+ self._DeviceRackOnList = DeviceRackOnList
2176
+
2177
+ @property
2178
+ def StuffOption(self):
2179
+ """上架人员 1.自行解决 2.由腾讯IDC负责
2180
+ :rtype: str
2181
+ """
2182
+ return self._StuffOption
2183
+
2184
+ @StuffOption.setter
2185
+ def StuffOption(self, StuffOption):
2186
+ self._StuffOption = StuffOption
2187
+
2188
+ @property
2189
+ def SelfOperationInfo(self):
2190
+ """自行解决信息。当StuffOption为1时,此参数必填
2191
+ :rtype: :class:`tencentcloud.chc.v20230418.models.SelfOperation`
2192
+ """
2193
+ return self._SelfOperationInfo
2194
+
2195
+ @SelfOperationInfo.setter
2196
+ def SelfOperationInfo(self, SelfOperationInfo):
2197
+ self._SelfOperationInfo = SelfOperationInfo
2198
+
2199
+ @property
2200
+ def WithPowerOn(self):
2201
+ """上架后自动开电。此参数为true时,后台会自动提设备开电单
2202
+ :rtype: bool
2203
+ """
2204
+ return self._WithPowerOn
2205
+
2206
+ @WithPowerOn.setter
2207
+ def WithPowerOn(self, WithPowerOn):
2208
+ self._WithPowerOn = WithPowerOn
2209
+
2140
2210
 
2141
2211
  def _deserialize(self, params):
2142
2212
  self._IdcId = params.get("IdcId")
@@ -2172,6 +2242,18 @@ class CreateReceivingWorkOrderRequest(AbstractModel):
2172
2242
  obj = OtherDevReceivingInfo()
2173
2243
  obj._deserialize(item)
2174
2244
  self._OtherDeviceList.append(obj)
2245
+ self._WithRackOn = params.get("WithRackOn")
2246
+ if params.get("DeviceRackOnList") is not None:
2247
+ self._DeviceRackOnList = []
2248
+ for item in params.get("DeviceRackOnList"):
2249
+ obj = DeviceRackOn()
2250
+ obj._deserialize(item)
2251
+ self._DeviceRackOnList.append(obj)
2252
+ self._StuffOption = params.get("StuffOption")
2253
+ if params.get("SelfOperationInfo") is not None:
2254
+ self._SelfOperationInfo = SelfOperation()
2255
+ self._SelfOperationInfo._deserialize(params.get("SelfOperationInfo"))
2256
+ self._WithPowerOn = params.get("WithPowerOn")
2175
2257
  memeber_set = set(params.keys())
2176
2258
  for name, value in vars(self).items():
2177
2259
  property_name = name[1:]
@@ -21820,10 +21820,8 @@ class InstanceRoute(AbstractModel):
21820
21820
  def __init__(self):
21821
21821
  r"""
21822
21822
  :param _InstanceId: ckafka集群实例Id
21823
- 注意:此字段可能返回 null,表示取不到有效值。
21824
21823
  :type InstanceId: str
21825
21824
  :param _RouteId: 路由Id
21826
- 注意:此字段可能返回 null,表示取不到有效值。
21827
21825
  :type RouteId: int
21828
21826
  """
21829
21827
  self._InstanceId = None
@@ -21832,7 +21830,6 @@ class InstanceRoute(AbstractModel):
21832
21830
  @property
21833
21831
  def InstanceId(self):
21834
21832
  """ckafka集群实例Id
21835
- 注意:此字段可能返回 null,表示取不到有效值。
21836
21833
  :rtype: str
21837
21834
  """
21838
21835
  return self._InstanceId
@@ -21844,7 +21841,6 @@ class InstanceRoute(AbstractModel):
21844
21841
  @property
21845
21842
  def RouteId(self):
21846
21843
  """路由Id
21847
- 注意:此字段可能返回 null,表示取不到有效值。
21848
21844
  :rtype: int
21849
21845
  """
21850
21846
  return self._RouteId
@@ -28523,13 +28519,10 @@ class RouteFilter(AbstractModel):
28523
28519
  def __init__(self):
28524
28520
  r"""
28525
28521
  :param _Name: 过滤名称,目前支持security-group-id,按安全组关联过滤
28526
- 注意:此字段可能返回 null,表示取不到有效值。
28527
28522
  :type Name: str
28528
28523
  :param _Values: 过滤值,当过滤名称为security-group-id时仅支持传单个value
28529
- 注意:此字段可能返回 null,表示取不到有效值。
28530
28524
  :type Values: list of str
28531
28525
  :param _Relation: 过滤关系,支持IN和NOT_IN,默认为IN
28532
- 注意:此字段可能返回 null,表示取不到有效值。
28533
28526
  :type Relation: str
28534
28527
  """
28535
28528
  self._Name = None
@@ -28539,7 +28532,6 @@ class RouteFilter(AbstractModel):
28539
28532
  @property
28540
28533
  def Name(self):
28541
28534
  """过滤名称,目前支持security-group-id,按安全组关联过滤
28542
- 注意:此字段可能返回 null,表示取不到有效值。
28543
28535
  :rtype: str
28544
28536
  """
28545
28537
  return self._Name
@@ -28551,7 +28543,6 @@ class RouteFilter(AbstractModel):
28551
28543
  @property
28552
28544
  def Values(self):
28553
28545
  """过滤值,当过滤名称为security-group-id时仅支持传单个value
28554
- 注意:此字段可能返回 null,表示取不到有效值。
28555
28546
  :rtype: list of str
28556
28547
  """
28557
28548
  return self._Values
@@ -28563,7 +28554,6 @@ class RouteFilter(AbstractModel):
28563
28554
  @property
28564
28555
  def Relation(self):
28565
28556
  """过滤关系,支持IN和NOT_IN,默认为IN
28566
- 注意:此字段可能返回 null,表示取不到有效值。
28567
28557
  :rtype: str
28568
28558
  """
28569
28559
  return self._Relation
@@ -29417,19 +29407,14 @@ class SecurityGroupRoute(AbstractModel):
29417
29407
  def __init__(self):
29418
29408
  r"""
29419
29409
  :param _InstanceRoute: 路由信息
29420
- 注意:此字段可能返回 null,表示取不到有效值。
29421
29410
  :type InstanceRoute: :class:`tencentcloud.ckafka.v20190819.models.InstanceRoute`
29422
29411
  :param _SecurityGroupIds: 关联的安全组列表
29423
- 注意:此字段可能返回 null,表示取不到有效值。
29424
29412
  :type SecurityGroupIds: list of str
29425
29413
  :param _InstanceName: ckafka集群实例名称
29426
- 注意:此字段可能返回 null,表示取不到有效值。
29427
29414
  :type InstanceName: str
29428
29415
  :param _VpcId: 路由vpcId
29429
- 注意:此字段可能返回 null,表示取不到有效值。
29430
29416
  :type VpcId: str
29431
29417
  :param _Vip: 路由vip
29432
- 注意:此字段可能返回 null,表示取不到有效值。
29433
29418
  :type Vip: str
29434
29419
  """
29435
29420
  self._InstanceRoute = None
@@ -29441,7 +29426,6 @@ class SecurityGroupRoute(AbstractModel):
29441
29426
  @property
29442
29427
  def InstanceRoute(self):
29443
29428
  """路由信息
29444
- 注意:此字段可能返回 null,表示取不到有效值。
29445
29429
  :rtype: :class:`tencentcloud.ckafka.v20190819.models.InstanceRoute`
29446
29430
  """
29447
29431
  return self._InstanceRoute
@@ -29453,7 +29437,6 @@ class SecurityGroupRoute(AbstractModel):
29453
29437
  @property
29454
29438
  def SecurityGroupIds(self):
29455
29439
  """关联的安全组列表
29456
- 注意:此字段可能返回 null,表示取不到有效值。
29457
29440
  :rtype: list of str
29458
29441
  """
29459
29442
  return self._SecurityGroupIds
@@ -29465,7 +29448,6 @@ class SecurityGroupRoute(AbstractModel):
29465
29448
  @property
29466
29449
  def InstanceName(self):
29467
29450
  """ckafka集群实例名称
29468
- 注意:此字段可能返回 null,表示取不到有效值。
29469
29451
  :rtype: str
29470
29452
  """
29471
29453
  return self._InstanceName
@@ -29477,7 +29459,6 @@ class SecurityGroupRoute(AbstractModel):
29477
29459
  @property
29478
29460
  def VpcId(self):
29479
29461
  """路由vpcId
29480
- 注意:此字段可能返回 null,表示取不到有效值。
29481
29462
  :rtype: str
29482
29463
  """
29483
29464
  return self._VpcId
@@ -29489,7 +29470,6 @@ class SecurityGroupRoute(AbstractModel):
29489
29470
  @property
29490
29471
  def Vip(self):
29491
29472
  """路由vip
29492
- 注意:此字段可能返回 null,表示取不到有效值。
29493
29473
  :rtype: str
29494
29474
  """
29495
29475
  return self._Vip
@@ -29525,10 +29505,8 @@ class SecurityGroupRouteResp(AbstractModel):
29525
29505
  def __init__(self):
29526
29506
  r"""
29527
29507
  :param _TotalCount: 符合条件的安全组路由信息总数
29528
- 注意:此字段可能返回 null,表示取不到有效值。
29529
29508
  :type TotalCount: int
29530
29509
  :param _SecurityGroupRoutes: 符合条件的安全组路由信息列表
29531
- 注意:此字段可能返回 null,表示取不到有效值。
29532
29510
  :type SecurityGroupRoutes: list of SecurityGroupRoute
29533
29511
  """
29534
29512
  self._TotalCount = None
@@ -29537,7 +29515,6 @@ class SecurityGroupRouteResp(AbstractModel):
29537
29515
  @property
29538
29516
  def TotalCount(self):
29539
29517
  """符合条件的安全组路由信息总数
29540
- 注意:此字段可能返回 null,表示取不到有效值。
29541
29518
  :rtype: int
29542
29519
  """
29543
29520
  return self._TotalCount
@@ -29549,7 +29526,6 @@ class SecurityGroupRouteResp(AbstractModel):
29549
29526
  @property
29550
29527
  def SecurityGroupRoutes(self):
29551
29528
  """符合条件的安全组路由信息列表
29552
- 注意:此字段可能返回 null,表示取不到有效值。
29553
29529
  :rtype: list of SecurityGroupRoute
29554
29530
  """
29555
29531
  return self._SecurityGroupRoutes