tencentcloud-sdk-python 3.0.1323__py2.py3-none-any.whl → 3.0.1325__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/aiart/v20221229/models.py +2 -2
  3. tencentcloud/antiddos/v20200309/models.py +27 -10
  4. tencentcloud/apm/v20210622/apm_client.py +23 -0
  5. tencentcloud/apm/v20210622/models.py +255 -2
  6. tencentcloud/cbs/v20170312/cbs_client.py +101 -0
  7. tencentcloud/cbs/v20170312/errorcodes.py +3 -0
  8. tencentcloud/cbs/v20170312/models.py +735 -5
  9. tencentcloud/cdwdoris/v20211228/models.py +17 -2
  10. tencentcloud/cls/v20201016/models.py +15 -0
  11. tencentcloud/dc/v20180410/models.py +15 -0
  12. tencentcloud/dlc/v20210125/models.py +0 -24
  13. tencentcloud/dts/v20211206/models.py +2 -2
  14. tencentcloud/emr/v20190103/models.py +96 -0
  15. tencentcloud/gme/v20180711/models.py +0 -18
  16. tencentcloud/mna/v20210119/models.py +0 -58
  17. tencentcloud/ocr/v20181119/models.py +158 -0
  18. tencentcloud/ocr/v20181119/ocr_client.py +3 -1
  19. tencentcloud/scf/v20180416/models.py +2 -2
  20. tencentcloud/ses/v20201002/models.py +15 -0
  21. tencentcloud/svp/v20240125/models.py +0 -6
  22. tencentcloud/teo/v20220901/models.py +64 -0
  23. tencentcloud/trp/v20210515/models.py +0 -360
  24. tencentcloud/vpc/v20170312/models.py +234 -0
  25. tencentcloud/vpc/v20170312/vpc_client.py +46 -0
  26. {tencentcloud_sdk_python-3.0.1323.dist-info → tencentcloud_sdk_python-3.0.1325.dist-info}/METADATA +1 -1
  27. {tencentcloud_sdk_python-3.0.1323.dist-info → tencentcloud_sdk_python-3.0.1325.dist-info}/RECORD +30 -35
  28. tencentcloud/aa/__init__.py +0 -0
  29. tencentcloud/aa/v20200224/__init__.py +0 -0
  30. tencentcloud/aa/v20200224/aa_client.py +0 -49
  31. tencentcloud/aa/v20200224/errorcodes.py +0 -78
  32. tencentcloud/aa/v20200224/models.py +0 -736
  33. {tencentcloud_sdk_python-3.0.1323.dist-info → tencentcloud_sdk_python-3.0.1325.dist-info}/LICENSE +0 -0
  34. {tencentcloud_sdk_python-3.0.1323.dist-info → tencentcloud_sdk_python-3.0.1325.dist-info}/WHEEL +0 -0
  35. {tencentcloud_sdk_python-3.0.1323.dist-info → tencentcloud_sdk_python-3.0.1325.dist-info}/top_level.txt +0 -0
@@ -4376,16 +4376,19 @@ class DescribeClusterConfigsRequest(AbstractModel):
4376
4376
  :type ConfigType: int
4377
4377
  :param _FileName: 模糊搜索关键字文件
4378
4378
  :type FileName: str
4379
- :param _ClusterConfigType: 0集群维度 1节点维度
4379
+ :param _ClusterConfigType: 0集群维度 1节点维度 2启动脚本 3计算组维度
4380
4380
  :type ClusterConfigType: int
4381
4381
  :param _IPAddress: eth0的ip地址
4382
4382
  :type IPAddress: str
4383
+ :param _ComputeGroupId: 计算组id
4384
+ :type ComputeGroupId: str
4383
4385
  """
4384
4386
  self._InstanceId = None
4385
4387
  self._ConfigType = None
4386
4388
  self._FileName = None
4387
4389
  self._ClusterConfigType = None
4388
4390
  self._IPAddress = None
4391
+ self._ComputeGroupId = None
4389
4392
 
4390
4393
  @property
4391
4394
  def InstanceId(self):
@@ -4422,7 +4425,7 @@ class DescribeClusterConfigsRequest(AbstractModel):
4422
4425
 
4423
4426
  @property
4424
4427
  def ClusterConfigType(self):
4425
- """0集群维度 1节点维度
4428
+ """0集群维度 1节点维度 2启动脚本 3计算组维度
4426
4429
  :rtype: int
4427
4430
  """
4428
4431
  return self._ClusterConfigType
@@ -4442,6 +4445,17 @@ class DescribeClusterConfigsRequest(AbstractModel):
4442
4445
  def IPAddress(self, IPAddress):
4443
4446
  self._IPAddress = IPAddress
4444
4447
 
4448
+ @property
4449
+ def ComputeGroupId(self):
4450
+ """计算组id
4451
+ :rtype: str
4452
+ """
4453
+ return self._ComputeGroupId
4454
+
4455
+ @ComputeGroupId.setter
4456
+ def ComputeGroupId(self, ComputeGroupId):
4457
+ self._ComputeGroupId = ComputeGroupId
4458
+
4445
4459
 
4446
4460
  def _deserialize(self, params):
4447
4461
  self._InstanceId = params.get("InstanceId")
@@ -4449,6 +4463,7 @@ class DescribeClusterConfigsRequest(AbstractModel):
4449
4463
  self._FileName = params.get("FileName")
4450
4464
  self._ClusterConfigType = params.get("ClusterConfigType")
4451
4465
  self._IPAddress = params.get("IPAddress")
4466
+ self._ComputeGroupId = params.get("ComputeGroupId")
4452
4467
  memeber_set = set(params.keys())
4453
4468
  for name, value in vars(self).items():
4454
4469
  property_name = name[1:]
@@ -20194,6 +20194,8 @@ class LogRechargeRuleInfo(AbstractModel):
20194
20194
  :param _Keys: 日志Key列表,RechargeType为full_regex_log时必填
20195
20195
  注意:此字段可能返回 null,表示取不到有效值。
20196
20196
  :type Keys: list of str
20197
+ :param _ParseArray: json解析模式,开启首层数据解析
20198
+ :type ParseArray: bool
20197
20199
  """
20198
20200
  self._RechargeType = None
20199
20201
  self._EncodingFormat = None
@@ -20209,6 +20211,7 @@ class LogRechargeRuleInfo(AbstractModel):
20209
20211
  self._TimeZone = None
20210
20212
  self._Metadata = None
20211
20213
  self._Keys = None
20214
+ self._ParseArray = None
20212
20215
 
20213
20216
  @property
20214
20217
  def RechargeType(self):
@@ -20374,6 +20377,17 @@ class LogRechargeRuleInfo(AbstractModel):
20374
20377
  def Keys(self, Keys):
20375
20378
  self._Keys = Keys
20376
20379
 
20380
+ @property
20381
+ def ParseArray(self):
20382
+ """json解析模式,开启首层数据解析
20383
+ :rtype: bool
20384
+ """
20385
+ return self._ParseArray
20386
+
20387
+ @ParseArray.setter
20388
+ def ParseArray(self, ParseArray):
20389
+ self._ParseArray = ParseArray
20390
+
20377
20391
 
20378
20392
  def _deserialize(self, params):
20379
20393
  self._RechargeType = params.get("RechargeType")
@@ -20390,6 +20404,7 @@ class LogRechargeRuleInfo(AbstractModel):
20390
20404
  self._TimeZone = params.get("TimeZone")
20391
20405
  self._Metadata = params.get("Metadata")
20392
20406
  self._Keys = params.get("Keys")
20407
+ self._ParseArray = params.get("ParseArray")
20393
20408
  memeber_set = set(params.keys())
20394
20409
  for name, value in vars(self).items():
20395
20410
  property_name = name[1:]
@@ -113,6 +113,8 @@ class AccessPoint(AbstractModel):
113
113
  :type AccessPointType: str
114
114
  :param _AvailablePortInfo: 端口规格信息。
115
115
  :type AvailablePortInfo: list of PortSpecification
116
+ :param _Address: 接入点地址。
117
+ :type Address: str
116
118
  """
117
119
  self._AccessPointName = None
118
120
  self._AccessPointId = None
@@ -126,6 +128,7 @@ class AccessPoint(AbstractModel):
126
128
  self._Area = None
127
129
  self._AccessPointType = None
128
130
  self._AvailablePortInfo = None
131
+ self._Address = None
129
132
 
130
133
  @property
131
134
  def AccessPointName(self):
@@ -259,6 +262,17 @@ class AccessPoint(AbstractModel):
259
262
  def AvailablePortInfo(self, AvailablePortInfo):
260
263
  self._AvailablePortInfo = AvailablePortInfo
261
264
 
265
+ @property
266
+ def Address(self):
267
+ """接入点地址。
268
+ :rtype: str
269
+ """
270
+ return self._Address
271
+
272
+ @Address.setter
273
+ def Address(self, Address):
274
+ self._Address = Address
275
+
262
276
 
263
277
  def _deserialize(self, params):
264
278
  self._AccessPointName = params.get("AccessPointName")
@@ -280,6 +294,7 @@ class AccessPoint(AbstractModel):
280
294
  obj = PortSpecification()
281
295
  obj._deserialize(item)
282
296
  self._AvailablePortInfo.append(obj)
297
+ self._Address = params.get("Address")
283
298
  memeber_set = set(params.keys())
284
299
  for name, value in vars(self).items():
285
300
  property_name = name[1:]
@@ -9017,18 +9017,14 @@ class DataEngineBasicInfo(AbstractModel):
9017
9017
  :param _UpdateTime: 更新时间
9018
9018
  :type UpdateTime: int
9019
9019
  :param _Message: 返回信息
9020
- 注意:此字段可能返回 null,表示取不到有效值。
9021
9020
  :type Message: str
9022
9021
  :param _DataEngineId: 引擎id
9023
9022
  :type DataEngineId: str
9024
9023
  :param _DataEngineType: 引擎类型,有效值:PrestoSQL/SparkSQL/SparkBatch
9025
- 注意:此字段可能返回 null,表示取不到有效值。
9026
9024
  :type DataEngineType: str
9027
9025
  :param _AppId: 用户ID
9028
- 注意:此字段可能返回 null,表示取不到有效值。
9029
9026
  :type AppId: int
9030
9027
  :param _UserUin: 账号ID
9031
- 注意:此字段可能返回 null,表示取不到有效值。
9032
9028
  :type UserUin: str
9033
9029
  """
9034
9030
  self._DataEngineName = None
@@ -9088,7 +9084,6 @@ class DataEngineBasicInfo(AbstractModel):
9088
9084
  @property
9089
9085
  def Message(self):
9090
9086
  """返回信息
9091
- 注意:此字段可能返回 null,表示取不到有效值。
9092
9087
  :rtype: str
9093
9088
  """
9094
9089
  return self._Message
@@ -9111,7 +9106,6 @@ class DataEngineBasicInfo(AbstractModel):
9111
9106
  @property
9112
9107
  def DataEngineType(self):
9113
9108
  """引擎类型,有效值:PrestoSQL/SparkSQL/SparkBatch
9114
- 注意:此字段可能返回 null,表示取不到有效值。
9115
9109
  :rtype: str
9116
9110
  """
9117
9111
  return self._DataEngineType
@@ -9123,7 +9117,6 @@ class DataEngineBasicInfo(AbstractModel):
9123
9117
  @property
9124
9118
  def AppId(self):
9125
9119
  """用户ID
9126
- 注意:此字段可能返回 null,表示取不到有效值。
9127
9120
  :rtype: int
9128
9121
  """
9129
9122
  return self._AppId
@@ -9135,7 +9128,6 @@ class DataEngineBasicInfo(AbstractModel):
9135
9128
  @property
9136
9129
  def UserUin(self):
9137
9130
  """账号ID
9138
- 注意:此字段可能返回 null,表示取不到有效值。
9139
9131
  :rtype: str
9140
9132
  """
9141
9133
  return self._UserUin
@@ -9248,10 +9240,8 @@ class DataEngineConfigPair(AbstractModel):
9248
9240
  def __init__(self):
9249
9241
  r"""
9250
9242
  :param _ConfigItem: 配置项
9251
- 注意:此字段可能返回 null,表示取不到有效值。
9252
9243
  :type ConfigItem: str
9253
9244
  :param _ConfigValue: 配置值
9254
- 注意:此字段可能返回 null,表示取不到有效值。
9255
9245
  :type ConfigValue: str
9256
9246
  """
9257
9247
  self._ConfigItem = None
@@ -9260,7 +9250,6 @@ class DataEngineConfigPair(AbstractModel):
9260
9250
  @property
9261
9251
  def ConfigItem(self):
9262
9252
  """配置项
9263
- 注意:此字段可能返回 null,表示取不到有效值。
9264
9253
  :rtype: str
9265
9254
  """
9266
9255
  return self._ConfigItem
@@ -9272,7 +9261,6 @@ class DataEngineConfigPair(AbstractModel):
9272
9261
  @property
9273
9262
  def ConfigValue(self):
9274
9263
  """配置值
9275
- 注意:此字段可能返回 null,表示取不到有效值。
9276
9264
  :rtype: str
9277
9265
  """
9278
9266
  return self._ConfigValue
@@ -10478,13 +10466,10 @@ class DataEngineScaleInfo(AbstractModel):
10478
10466
  def __init__(self):
10479
10467
  r"""
10480
10468
  :param _DataEngineId: 引擎ID
10481
- 注意:此字段可能返回 null,表示取不到有效值。
10482
10469
  :type DataEngineId: str
10483
10470
  :param _DataEngineName: 引擎名称
10484
- 注意:此字段可能返回 null,表示取不到有效值。
10485
10471
  :type DataEngineName: str
10486
10472
  :param _ScaleDetail: 引擎规格详情
10487
- 注意:此字段可能返回 null,表示取不到有效值。
10488
10473
  :type ScaleDetail: list of DataEngineScaleInfoDetail
10489
10474
  """
10490
10475
  self._DataEngineId = None
@@ -10494,7 +10479,6 @@ class DataEngineScaleInfo(AbstractModel):
10494
10479
  @property
10495
10480
  def DataEngineId(self):
10496
10481
  """引擎ID
10497
- 注意:此字段可能返回 null,表示取不到有效值。
10498
10482
  :rtype: str
10499
10483
  """
10500
10484
  return self._DataEngineId
@@ -10506,7 +10490,6 @@ class DataEngineScaleInfo(AbstractModel):
10506
10490
  @property
10507
10491
  def DataEngineName(self):
10508
10492
  """引擎名称
10509
- 注意:此字段可能返回 null,表示取不到有效值。
10510
10493
  :rtype: str
10511
10494
  """
10512
10495
  return self._DataEngineName
@@ -10518,7 +10501,6 @@ class DataEngineScaleInfo(AbstractModel):
10518
10501
  @property
10519
10502
  def ScaleDetail(self):
10520
10503
  """引擎规格详情
10521
- 注意:此字段可能返回 null,表示取不到有效值。
10522
10504
  :rtype: list of DataEngineScaleInfoDetail
10523
10505
  """
10524
10506
  return self._ScaleDetail
@@ -10555,13 +10537,10 @@ class DataEngineScaleInfoDetail(AbstractModel):
10555
10537
  def __init__(self):
10556
10538
  r"""
10557
10539
  :param _StartTime: 统计开始时间,格式为:yyyy-MM-dd HH:mm:ss
10558
- 注意:此字段可能返回 null,表示取不到有效值。
10559
10540
  :type StartTime: str
10560
10541
  :param _EndTime: 统计结束时间,格式为:yyyy-MM-dd HH:mm:ss
10561
- 注意:此字段可能返回 null,表示取不到有效值。
10562
10542
  :type EndTime: str
10563
10543
  :param _CU: 当前统计时间段,引擎规格
10564
- 注意:此字段可能返回 null,表示取不到有效值。
10565
10544
  :type CU: int
10566
10545
  """
10567
10546
  self._StartTime = None
@@ -10571,7 +10550,6 @@ class DataEngineScaleInfoDetail(AbstractModel):
10571
10550
  @property
10572
10551
  def StartTime(self):
10573
10552
  """统计开始时间,格式为:yyyy-MM-dd HH:mm:ss
10574
- 注意:此字段可能返回 null,表示取不到有效值。
10575
10553
  :rtype: str
10576
10554
  """
10577
10555
  return self._StartTime
@@ -10583,7 +10561,6 @@ class DataEngineScaleInfoDetail(AbstractModel):
10583
10561
  @property
10584
10562
  def EndTime(self):
10585
10563
  """统计结束时间,格式为:yyyy-MM-dd HH:mm:ss
10586
- 注意:此字段可能返回 null,表示取不到有效值。
10587
10564
  :rtype: str
10588
10565
  """
10589
10566
  return self._EndTime
@@ -10595,7 +10572,6 @@ class DataEngineScaleInfoDetail(AbstractModel):
10595
10572
  @property
10596
10573
  def CU(self):
10597
10574
  """当前统计时间段,引擎规格
10598
- 注意:此字段可能返回 null,表示取不到有效值。
10599
10575
  :rtype: int
10600
10576
  """
10601
10577
  return self._CU
@@ -14092,7 +14092,7 @@ class Options(AbstractModel):
14092
14092
  :param _AddAdditionalColumn: 是否添加附加列
14093
14093
  注意:此字段可能返回 null,表示取不到有效值。
14094
14094
  :type AddAdditionalColumn: bool
14095
- :param _OpTypes: 所要同步的DML和DDL的选项,Insert(插入操作)、Update(更新操作)、Delete(删除操作)、DDL(结构同步), 不填(不选),PartialDDL(自定义,和DdlOptions一起起作用 )
14095
+ :param _OpTypes: 所要同步的DML和DDL的选项,Insert(插入操作)、Update(更新操作)、Delete(删除操作)、DDL(结构同步), PartialDDL(自定义,和DdlOptions一起配合使用)。注意,这里至少需要包含DML中的一种。
14096
14096
  注意:此字段可能返回 null,表示取不到有效值。
14097
14097
  :type OpTypes: list of str
14098
14098
  :param _ConflictHandleOption: 冲突处理的详细选项,如条件覆盖中的条件行和条件操作
@@ -14184,7 +14184,7 @@ class Options(AbstractModel):
14184
14184
 
14185
14185
  @property
14186
14186
  def OpTypes(self):
14187
- """所要同步的DML和DDL的选项,Insert(插入操作)、Update(更新操作)、Delete(删除操作)、DDL(结构同步), 不填(不选),PartialDDL(自定义,和DdlOptions一起起作用 )
14187
+ """所要同步的DML和DDL的选项,Insert(插入操作)、Update(更新操作)、Delete(删除操作)、DDL(结构同步), PartialDDL(自定义,和DdlOptions一起配合使用)。注意,这里至少需要包含DML中的一种。
14188
14188
  注意:此字段可能返回 null,表示取不到有效值。
14189
14189
  :rtype: list of str
14190
14190
  """
@@ -18605,9 +18605,24 @@ class LoadAutoScaleStrategy(AbstractModel):
18605
18605
  "CPU"表示按照机器的核数计算。
18606
18606
  "MEMORYGB"表示按照机器内存数计算。
18607
18607
  :type MeasureMethod: str
18608
+ :param _SoftDeployDesc: 节点部署服务列表,例如["HDFS-3.1.2","YARN-3.1.2"]。
18609
+ 注意:此字段可能返回 null,表示取不到有效值。
18610
+ :type SoftDeployDesc: list of str
18611
+ :param _ServiceNodeDesc: 启动进程列表,例如["NodeManager"]。
18612
+ :type ServiceNodeDesc: str
18613
+ :param _ServiceNodeInfo: 启动进程列表。
18614
+ 注意:此字段可能返回 null,表示取不到有效值。
18615
+ :type ServiceNodeInfo: list of int
18616
+ :param _SoftDeployInfo: 节点部署服务列表。部署服务仅填写HDFS、YARN。[组件名对应的映射关系表](https://cloud.tencent.com/document/product/589/98760)
18617
+ 注意:此字段可能返回 null,表示取不到有效值。
18618
+ :type SoftDeployInfo: list of int
18608
18619
  :param _LoadMetricsConditions: 多指标触发条件
18609
18620
  注意:此字段可能返回 null,表示取不到有效值。
18610
18621
  :type LoadMetricsConditions: :class:`tencentcloud.emr.v20190103.models.LoadMetricsConditions`
18622
+ :param _GroupId: 伸缩组Id
18623
+ :type GroupId: int
18624
+ :param _Soft: soft例如yarn
18625
+ :type Soft: str
18611
18626
  """
18612
18627
  self._StrategyId = None
18613
18628
  self._StrategyName = None
@@ -18624,7 +18639,13 @@ class LoadAutoScaleStrategy(AbstractModel):
18624
18639
  self._Tags = None
18625
18640
  self._ConfigGroupAssigned = None
18626
18641
  self._MeasureMethod = None
18642
+ self._SoftDeployDesc = None
18643
+ self._ServiceNodeDesc = None
18644
+ self._ServiceNodeInfo = None
18645
+ self._SoftDeployInfo = None
18627
18646
  self._LoadMetricsConditions = None
18647
+ self._GroupId = None
18648
+ self._Soft = None
18628
18649
 
18629
18650
  @property
18630
18651
  def StrategyId(self):
@@ -18796,6 +18817,53 @@ class LoadAutoScaleStrategy(AbstractModel):
18796
18817
  def MeasureMethod(self, MeasureMethod):
18797
18818
  self._MeasureMethod = MeasureMethod
18798
18819
 
18820
+ @property
18821
+ def SoftDeployDesc(self):
18822
+ """节点部署服务列表,例如["HDFS-3.1.2","YARN-3.1.2"]。
18823
+ 注意:此字段可能返回 null,表示取不到有效值。
18824
+ :rtype: list of str
18825
+ """
18826
+ return self._SoftDeployDesc
18827
+
18828
+ @SoftDeployDesc.setter
18829
+ def SoftDeployDesc(self, SoftDeployDesc):
18830
+ self._SoftDeployDesc = SoftDeployDesc
18831
+
18832
+ @property
18833
+ def ServiceNodeDesc(self):
18834
+ """启动进程列表,例如["NodeManager"]。
18835
+ :rtype: str
18836
+ """
18837
+ return self._ServiceNodeDesc
18838
+
18839
+ @ServiceNodeDesc.setter
18840
+ def ServiceNodeDesc(self, ServiceNodeDesc):
18841
+ self._ServiceNodeDesc = ServiceNodeDesc
18842
+
18843
+ @property
18844
+ def ServiceNodeInfo(self):
18845
+ """启动进程列表。
18846
+ 注意:此字段可能返回 null,表示取不到有效值。
18847
+ :rtype: list of int
18848
+ """
18849
+ return self._ServiceNodeInfo
18850
+
18851
+ @ServiceNodeInfo.setter
18852
+ def ServiceNodeInfo(self, ServiceNodeInfo):
18853
+ self._ServiceNodeInfo = ServiceNodeInfo
18854
+
18855
+ @property
18856
+ def SoftDeployInfo(self):
18857
+ """节点部署服务列表。部署服务仅填写HDFS、YARN。[组件名对应的映射关系表](https://cloud.tencent.com/document/product/589/98760)
18858
+ 注意:此字段可能返回 null,表示取不到有效值。
18859
+ :rtype: list of int
18860
+ """
18861
+ return self._SoftDeployInfo
18862
+
18863
+ @SoftDeployInfo.setter
18864
+ def SoftDeployInfo(self, SoftDeployInfo):
18865
+ self._SoftDeployInfo = SoftDeployInfo
18866
+
18799
18867
  @property
18800
18868
  def LoadMetricsConditions(self):
18801
18869
  """多指标触发条件
@@ -18808,6 +18876,28 @@ class LoadAutoScaleStrategy(AbstractModel):
18808
18876
  def LoadMetricsConditions(self, LoadMetricsConditions):
18809
18877
  self._LoadMetricsConditions = LoadMetricsConditions
18810
18878
 
18879
+ @property
18880
+ def GroupId(self):
18881
+ """伸缩组Id
18882
+ :rtype: int
18883
+ """
18884
+ return self._GroupId
18885
+
18886
+ @GroupId.setter
18887
+ def GroupId(self, GroupId):
18888
+ self._GroupId = GroupId
18889
+
18890
+ @property
18891
+ def Soft(self):
18892
+ """soft例如yarn
18893
+ :rtype: str
18894
+ """
18895
+ return self._Soft
18896
+
18897
+ @Soft.setter
18898
+ def Soft(self, Soft):
18899
+ self._Soft = Soft
18900
+
18811
18901
 
18812
18902
  def _deserialize(self, params):
18813
18903
  self._StrategyId = params.get("StrategyId")
@@ -18830,9 +18920,15 @@ class LoadAutoScaleStrategy(AbstractModel):
18830
18920
  self._Tags.append(obj)
18831
18921
  self._ConfigGroupAssigned = params.get("ConfigGroupAssigned")
18832
18922
  self._MeasureMethod = params.get("MeasureMethod")
18923
+ self._SoftDeployDesc = params.get("SoftDeployDesc")
18924
+ self._ServiceNodeDesc = params.get("ServiceNodeDesc")
18925
+ self._ServiceNodeInfo = params.get("ServiceNodeInfo")
18926
+ self._SoftDeployInfo = params.get("SoftDeployInfo")
18833
18927
  if params.get("LoadMetricsConditions") is not None:
18834
18928
  self._LoadMetricsConditions = LoadMetricsConditions()
18835
18929
  self._LoadMetricsConditions._deserialize(params.get("LoadMetricsConditions"))
18930
+ self._GroupId = params.get("GroupId")
18931
+ self._Soft = params.get("Soft")
18836
18932
  memeber_set = set(params.keys())
18837
18933
  for name, value in vars(self).items():
18838
18934
  property_name = name[1:]
@@ -2833,7 +2833,6 @@ class DescribeRecordInfoResponse(AbstractModel):
2833
2833
  def __init__(self):
2834
2834
  r"""
2835
2835
  :param _RecordInfo: 录制信息。
2836
- 注意:此字段可能返回 null,表示取不到有效值。
2837
2836
  :type RecordInfo: list of RecordInfo
2838
2837
  :param _RecordMode: 录制类型:1代表单流 2代表混流 3代表单流和混流。
2839
2838
  :type RecordMode: int
@@ -2850,7 +2849,6 @@ class DescribeRecordInfoResponse(AbstractModel):
2850
2849
  @property
2851
2850
  def RecordInfo(self):
2852
2851
  """录制信息。
2853
- 注意:此字段可能返回 null,表示取不到有效值。
2854
2852
  :rtype: list of RecordInfo
2855
2853
  """
2856
2854
  return self._RecordInfo
@@ -2979,10 +2977,8 @@ class DescribeRoomInfoResponse(AbstractModel):
2979
2977
  def __init__(self):
2980
2978
  r"""
2981
2979
  :param _Result: 操作结果, 0成功, 非0失败
2982
- 注意:此字段可能返回 null,表示取不到有效值。
2983
2980
  :type Result: int
2984
2981
  :param _RoomUsers: 房间用户信息
2985
- 注意:此字段可能返回 null,表示取不到有效值。
2986
2982
  :type RoomUsers: list of RoomUser
2987
2983
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2988
2984
  :type RequestId: str
@@ -2994,7 +2990,6 @@ class DescribeRoomInfoResponse(AbstractModel):
2994
2990
  @property
2995
2991
  def Result(self):
2996
2992
  """操作结果, 0成功, 非0失败
2997
- 注意:此字段可能返回 null,表示取不到有效值。
2998
2993
  :rtype: int
2999
2994
  """
3000
2995
  return self._Result
@@ -3006,7 +3001,6 @@ class DescribeRoomInfoResponse(AbstractModel):
3006
3001
  @property
3007
3002
  def RoomUsers(self):
3008
3003
  """房间用户信息
3009
- 注意:此字段可能返回 null,表示取不到有效值。
3010
3004
  :rtype: list of RoomUser
3011
3005
  """
3012
3006
  return self._RoomUsers
@@ -3339,7 +3333,6 @@ class DescribeScanResultListResponse(AbstractModel):
3339
3333
  def __init__(self):
3340
3334
  r"""
3341
3335
  :param _Data: 要查询的语音检测任务的结果
3342
- 注意:此字段可能返回 null,表示取不到有效值。
3343
3336
  :type Data: list of DescribeScanResult
3344
3337
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3345
3338
  :type RequestId: str
@@ -3350,7 +3343,6 @@ class DescribeScanResultListResponse(AbstractModel):
3350
3343
  @property
3351
3344
  def Data(self):
3352
3345
  """要查询的语音检测任务的结果
3353
- 注意:此字段可能返回 null,表示取不到有效值。
3354
3346
  :rtype: list of DescribeScanResult
3355
3347
  """
3356
3348
  return self._Data
@@ -3440,13 +3432,10 @@ class DescribeTaskInfoResponse(AbstractModel):
3440
3432
  def __init__(self):
3441
3433
  r"""
3442
3434
  :param _TaskId: 进行中的任务taskid(StartRecord接口返回)。
3443
- 注意:此字段可能返回 null,表示取不到有效值。
3444
3435
  :type TaskId: int
3445
3436
  :param _RecordMode: 录制类型:1代表单流 2代表混流 3代表单流和混流。
3446
- 注意:此字段可能返回 null,表示取不到有效值。
3447
3437
  :type RecordMode: int
3448
3438
  :param _SubscribeRecordUserIds: 指定订阅流白名单或者黑名单。
3449
- 注意:此字段可能返回 null,表示取不到有效值。
3450
3439
  :type SubscribeRecordUserIds: :class:`tencentcloud.gme.v20180711.models.SubscribeRecordUserIds`
3451
3440
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3452
3441
  :type RequestId: str
@@ -3459,7 +3448,6 @@ class DescribeTaskInfoResponse(AbstractModel):
3459
3448
  @property
3460
3449
  def TaskId(self):
3461
3450
  """进行中的任务taskid(StartRecord接口返回)。
3462
- 注意:此字段可能返回 null,表示取不到有效值。
3463
3451
  :rtype: int
3464
3452
  """
3465
3453
  return self._TaskId
@@ -3471,7 +3459,6 @@ class DescribeTaskInfoResponse(AbstractModel):
3471
3459
  @property
3472
3460
  def RecordMode(self):
3473
3461
  """录制类型:1代表单流 2代表混流 3代表单流和混流。
3474
- 注意:此字段可能返回 null,表示取不到有效值。
3475
3462
  :rtype: int
3476
3463
  """
3477
3464
  return self._RecordMode
@@ -3483,7 +3470,6 @@ class DescribeTaskInfoResponse(AbstractModel):
3483
3470
  @property
3484
3471
  def SubscribeRecordUserIds(self):
3485
3472
  """指定订阅流白名单或者黑名单。
3486
- 注意:此字段可能返回 null,表示取不到有效值。
3487
3473
  :rtype: :class:`tencentcloud.gme.v20180711.models.SubscribeRecordUserIds`
3488
3474
  """
3489
3475
  return self._SubscribeRecordUserIds
@@ -3767,7 +3753,6 @@ class GetCustomizationListResponse(AbstractModel):
3767
3753
  def __init__(self):
3768
3754
  r"""
3769
3755
  :param _CustomizationConfigs: 语音消息转文本热句模型配置
3770
- 注意:此字段可能返回 null,表示取不到有效值。
3771
3756
  :type CustomizationConfigs: list of CustomizationConfigs
3772
3757
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3773
3758
  :type RequestId: str
@@ -3778,7 +3763,6 @@ class GetCustomizationListResponse(AbstractModel):
3778
3763
  @property
3779
3764
  def CustomizationConfigs(self):
3780
3765
  """语音消息转文本热句模型配置
3781
- 注意:此字段可能返回 null,表示取不到有效值。
3782
3766
  :rtype: list of CustomizationConfigs
3783
3767
  """
3784
3768
  return self._CustomizationConfigs
@@ -6170,7 +6154,6 @@ class UpdateScanRoomsResponse(AbstractModel):
6170
6154
  def __init__(self):
6171
6155
  r"""
6172
6156
  :param _ErrorCode: 返回结果码
6173
- 注意:此字段可能返回 null,表示取不到有效值。
6174
6157
  :type ErrorCode: int
6175
6158
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6176
6159
  :type RequestId: str
@@ -6181,7 +6164,6 @@ class UpdateScanRoomsResponse(AbstractModel):
6181
6164
  @property
6182
6165
  def ErrorCode(self):
6183
6166
  """返回结果码
6184
- 注意:此字段可能返回 null,表示取不到有效值。
6185
6167
  :rtype: int
6186
6168
  """
6187
6169
  return self._ErrorCode