tencentcloud-sdk-python 3.0.1296__py2.py3-none-any.whl → 3.0.1298__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 (39) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/billing/v20180709/models.py +90 -0
  3. tencentcloud/cam/v20190116/models.py +2 -2
  4. tencentcloud/ccc/v20200210/models.py +121 -0
  5. tencentcloud/cdb/v20170320/cdb_client.py +23 -0
  6. tencentcloud/cdb/v20170320/models.py +124 -0
  7. tencentcloud/cls/v20201016/models.py +2 -2
  8. tencentcloud/dbbrain/v20210527/models.py +17 -2
  9. tencentcloud/ess/v20201111/models.py +58 -156
  10. tencentcloud/essbasic/v20210526/models.py +6 -108
  11. tencentcloud/hunyuan/v20230901/models.py +7 -7
  12. tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +92 -0
  13. tencentcloud/iotexplorer/v20190423/models.py +288 -2
  14. tencentcloud/lcic/v20220817/models.py +10 -4
  15. tencentcloud/lkeap/__init__.py +0 -0
  16. tencentcloud/lkeap/v20240522/__init__.py +0 -0
  17. tencentcloud/lkeap/v20240522/errorcodes.py +66 -0
  18. tencentcloud/lkeap/v20240522/lkeap_client.py +597 -0
  19. tencentcloud/lkeap/v20240522/models.py +3789 -0
  20. tencentcloud/mongodb/v20180408/errorcodes.py +3 -0
  21. tencentcloud/mongodb/v20180408/models.py +76 -18
  22. tencentcloud/mongodb/v20180408/mongodb_client.py +1 -1
  23. tencentcloud/mongodb/v20190725/models.py +49 -96
  24. tencentcloud/monitor/v20180724/models.py +35 -0
  25. tencentcloud/ocr/v20181119/ocr_client.py +3 -3
  26. tencentcloud/sqlserver/v20180328/models.py +76 -4
  27. tencentcloud/ssl/v20191205/models.py +2 -2
  28. tencentcloud/tcb/v20180608/models.py +15 -29
  29. tencentcloud/tcbr/v20220217/models.py +51 -6
  30. tencentcloud/tdmq/v20200217/models.py +205 -0
  31. tencentcloud/tdmq/v20200217/tdmq_client.py +23 -0
  32. tencentcloud/trtc/v20190722/models.py +4 -8
  33. tencentcloud/vpc/v20170312/models.py +48 -23
  34. tencentcloud/wedata/v20210820/models.py +71 -2
  35. {tencentcloud_sdk_python-3.0.1296.dist-info → tencentcloud_sdk_python-3.0.1298.dist-info}/METADATA +1 -1
  36. {tencentcloud_sdk_python-3.0.1296.dist-info → tencentcloud_sdk_python-3.0.1298.dist-info}/RECORD +39 -34
  37. {tencentcloud_sdk_python-3.0.1296.dist-info → tencentcloud_sdk_python-3.0.1298.dist-info}/LICENSE +0 -0
  38. {tencentcloud_sdk_python-3.0.1296.dist-info → tencentcloud_sdk_python-3.0.1298.dist-info}/WHEEL +0 -0
  39. {tencentcloud_sdk_python-3.0.1296.dist-info → tencentcloud_sdk_python-3.0.1298.dist-info}/top_level.txt +0 -0
@@ -33,11 +33,14 @@ class BuildPacksInfo(AbstractModel):
33
33
  :type RepoLanguage: str
34
34
  :param _UploadFilename: 上传文件名
35
35
  :type UploadFilename: str
36
+ :param _LanguageVersion: 语言版本
37
+ :type LanguageVersion: str
36
38
  """
37
39
  self._BaseImage = None
38
40
  self._EntryPoint = None
39
41
  self._RepoLanguage = None
40
42
  self._UploadFilename = None
43
+ self._LanguageVersion = None
41
44
 
42
45
  @property
43
46
  def BaseImage(self):
@@ -83,12 +86,24 @@ class BuildPacksInfo(AbstractModel):
83
86
  def UploadFilename(self, UploadFilename):
84
87
  self._UploadFilename = UploadFilename
85
88
 
89
+ @property
90
+ def LanguageVersion(self):
91
+ """语言版本
92
+ :rtype: str
93
+ """
94
+ return self._LanguageVersion
95
+
96
+ @LanguageVersion.setter
97
+ def LanguageVersion(self, LanguageVersion):
98
+ self._LanguageVersion = LanguageVersion
99
+
86
100
 
87
101
  def _deserialize(self, params):
88
102
  self._BaseImage = params.get("BaseImage")
89
103
  self._EntryPoint = params.get("EntryPoint")
90
104
  self._RepoLanguage = params.get("RepoLanguage")
91
105
  self._UploadFilename = params.get("UploadFilename")
106
+ self._LanguageVersion = params.get("LanguageVersion")
92
107
  memeber_set = set(params.keys())
93
108
  for name, value in vars(self).items():
94
109
  property_name = name[1:]
@@ -203,11 +218,11 @@ Activity:活动来源
203
218
  :type SubNetIds: list of str
204
219
  :param _ReqKey: 请求key 用于防重
205
220
  :type ReqKey: str
206
- :param _Source: 来源:wechat | cloud
221
+ :param _Source: 来源:wechat | cloud | weda
207
222
  :type Source: str
208
- :param _Channel: 渠道:wechat | cloud
223
+ :param _Channel: 渠道:wechat | cloud | weda
209
224
  :type Channel: str
210
- :param _EnvId: 环境ID
225
+ :param _EnvId: 环境ID 云开发平台必填
211
226
  :type EnvId: str
212
227
  """
213
228
  self._PackageType = None
@@ -302,7 +317,7 @@ Activity:活动来源
302
317
 
303
318
  @property
304
319
  def Source(self):
305
- """来源:wechat | cloud
320
+ """来源:wechat | cloud | weda
306
321
  :rtype: str
307
322
  """
308
323
  return self._Source
@@ -313,7 +328,7 @@ Activity:活动来源
313
328
 
314
329
  @property
315
330
  def Channel(self):
316
- """渠道:wechat | cloud
331
+ """渠道:wechat | cloud | weda
317
332
  :rtype: str
318
333
  """
319
334
  return self._Channel
@@ -324,7 +339,7 @@ Activity:活动来源
324
339
 
325
340
  @property
326
341
  def EnvId(self):
327
- """环境ID
342
+ """环境ID 云开发平台必填
328
343
  :rtype: str
329
344
  """
330
345
  return self._EnvId
@@ -1189,10 +1204,13 @@ class DescribeEnvBaseInfoResponse(AbstractModel):
1189
1204
  r"""
1190
1205
  :param _EnvBaseInfo: 环境基础信息
1191
1206
  :type EnvBaseInfo: :class:`tencentcloud.tcbr.v20220217.models.EnvBaseInfo`
1207
+ :param _IsExist: 是否存在
1208
+ :type IsExist: bool
1192
1209
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1193
1210
  :type RequestId: str
1194
1211
  """
1195
1212
  self._EnvBaseInfo = None
1213
+ self._IsExist = None
1196
1214
  self._RequestId = None
1197
1215
 
1198
1216
  @property
@@ -1206,6 +1224,17 @@ class DescribeEnvBaseInfoResponse(AbstractModel):
1206
1224
  def EnvBaseInfo(self, EnvBaseInfo):
1207
1225
  self._EnvBaseInfo = EnvBaseInfo
1208
1226
 
1227
+ @property
1228
+ def IsExist(self):
1229
+ """是否存在
1230
+ :rtype: bool
1231
+ """
1232
+ return self._IsExist
1233
+
1234
+ @IsExist.setter
1235
+ def IsExist(self, IsExist):
1236
+ self._IsExist = IsExist
1237
+
1209
1238
  @property
1210
1239
  def RequestId(self):
1211
1240
  """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -1222,6 +1251,7 @@ class DescribeEnvBaseInfoResponse(AbstractModel):
1222
1251
  if params.get("EnvBaseInfo") is not None:
1223
1252
  self._EnvBaseInfo = EnvBaseInfo()
1224
1253
  self._EnvBaseInfo._deserialize(params.get("EnvBaseInfo"))
1254
+ self._IsExist = params.get("IsExist")
1225
1255
  self._RequestId = params.get("RequestId")
1226
1256
 
1227
1257
 
@@ -2933,6 +2963,8 @@ class ServerBaseInfo(AbstractModel):
2933
2963
  :type AccessTypes: list of str
2934
2964
  :param _CustomDomainNames: 展示自定义域名
2935
2965
  :type CustomDomainNames: list of str
2966
+ :param _ServerType: 服务类型: function 云函数2.0;container 容器服务
2967
+ :type ServerType: str
2936
2968
  """
2937
2969
  self._ServerName = None
2938
2970
  self._DefaultDomainName = None
@@ -2941,6 +2973,7 @@ class ServerBaseInfo(AbstractModel):
2941
2973
  self._UpdateTime = None
2942
2974
  self._AccessTypes = None
2943
2975
  self._CustomDomainNames = None
2976
+ self._ServerType = None
2944
2977
 
2945
2978
  @property
2946
2979
  def ServerName(self):
@@ -3019,6 +3052,17 @@ class ServerBaseInfo(AbstractModel):
3019
3052
  def CustomDomainNames(self, CustomDomainNames):
3020
3053
  self._CustomDomainNames = CustomDomainNames
3021
3054
 
3055
+ @property
3056
+ def ServerType(self):
3057
+ """服务类型: function 云函数2.0;container 容器服务
3058
+ :rtype: str
3059
+ """
3060
+ return self._ServerType
3061
+
3062
+ @ServerType.setter
3063
+ def ServerType(self, ServerType):
3064
+ self._ServerType = ServerType
3065
+
3022
3066
 
3023
3067
  def _deserialize(self, params):
3024
3068
  self._ServerName = params.get("ServerName")
@@ -3028,6 +3072,7 @@ class ServerBaseInfo(AbstractModel):
3028
3072
  self._UpdateTime = params.get("UpdateTime")
3029
3073
  self._AccessTypes = params.get("AccessTypes")
3030
3074
  self._CustomDomainNames = params.get("CustomDomainNames")
3075
+ self._ServerType = params.get("ServerType")
3031
3076
  memeber_set = set(params.keys())
3032
3077
  for name, value in vars(self).items():
3033
3078
  property_name = name[1:]
@@ -21419,6 +21419,150 @@ class FilterSubscription(AbstractModel):
21419
21419
 
21420
21420
 
21421
21421
 
21422
+ class GetTopicListRequest(AbstractModel):
21423
+ """GetTopicList请求参数结构体
21424
+
21425
+ """
21426
+
21427
+ def __init__(self):
21428
+ r"""
21429
+ :param _EnvironmentId: 环境(命名空间)名称。
21430
+ :type EnvironmentId: str
21431
+ :param _ClusterId: Pulsar 集群的ID
21432
+ :type ClusterId: str
21433
+ :param _Offset: 起始下标,不填默认为0。
21434
+ :type Offset: int
21435
+ :param _Limit: 返回数量,不填则默认为10,最大值为20。
21436
+ :type Limit: int
21437
+ """
21438
+ self._EnvironmentId = None
21439
+ self._ClusterId = None
21440
+ self._Offset = None
21441
+ self._Limit = None
21442
+
21443
+ @property
21444
+ def EnvironmentId(self):
21445
+ """环境(命名空间)名称。
21446
+ :rtype: str
21447
+ """
21448
+ return self._EnvironmentId
21449
+
21450
+ @EnvironmentId.setter
21451
+ def EnvironmentId(self, EnvironmentId):
21452
+ self._EnvironmentId = EnvironmentId
21453
+
21454
+ @property
21455
+ def ClusterId(self):
21456
+ """Pulsar 集群的ID
21457
+ :rtype: str
21458
+ """
21459
+ return self._ClusterId
21460
+
21461
+ @ClusterId.setter
21462
+ def ClusterId(self, ClusterId):
21463
+ self._ClusterId = ClusterId
21464
+
21465
+ @property
21466
+ def Offset(self):
21467
+ """起始下标,不填默认为0。
21468
+ :rtype: int
21469
+ """
21470
+ return self._Offset
21471
+
21472
+ @Offset.setter
21473
+ def Offset(self, Offset):
21474
+ self._Offset = Offset
21475
+
21476
+ @property
21477
+ def Limit(self):
21478
+ """返回数量,不填则默认为10,最大值为20。
21479
+ :rtype: int
21480
+ """
21481
+ return self._Limit
21482
+
21483
+ @Limit.setter
21484
+ def Limit(self, Limit):
21485
+ self._Limit = Limit
21486
+
21487
+
21488
+ def _deserialize(self, params):
21489
+ self._EnvironmentId = params.get("EnvironmentId")
21490
+ self._ClusterId = params.get("ClusterId")
21491
+ self._Offset = params.get("Offset")
21492
+ self._Limit = params.get("Limit")
21493
+ memeber_set = set(params.keys())
21494
+ for name, value in vars(self).items():
21495
+ property_name = name[1:]
21496
+ if property_name in memeber_set:
21497
+ memeber_set.remove(property_name)
21498
+ if len(memeber_set) > 0:
21499
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
21500
+
21501
+
21502
+
21503
+ class GetTopicListResponse(AbstractModel):
21504
+ """GetTopicList返回参数结构体
21505
+
21506
+ """
21507
+
21508
+ def __init__(self):
21509
+ r"""
21510
+ :param _TotalCount: 主题数量。
21511
+ :type TotalCount: int
21512
+ :param _TopicList: 主题列表
21513
+ :type TopicList: list of Topic_Simplification
21514
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
21515
+ :type RequestId: str
21516
+ """
21517
+ self._TotalCount = None
21518
+ self._TopicList = None
21519
+ self._RequestId = None
21520
+
21521
+ @property
21522
+ def TotalCount(self):
21523
+ """主题数量。
21524
+ :rtype: int
21525
+ """
21526
+ return self._TotalCount
21527
+
21528
+ @TotalCount.setter
21529
+ def TotalCount(self, TotalCount):
21530
+ self._TotalCount = TotalCount
21531
+
21532
+ @property
21533
+ def TopicList(self):
21534
+ """主题列表
21535
+ :rtype: list of Topic_Simplification
21536
+ """
21537
+ return self._TopicList
21538
+
21539
+ @TopicList.setter
21540
+ def TopicList(self, TopicList):
21541
+ self._TopicList = TopicList
21542
+
21543
+ @property
21544
+ def RequestId(self):
21545
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
21546
+ :rtype: str
21547
+ """
21548
+ return self._RequestId
21549
+
21550
+ @RequestId.setter
21551
+ def RequestId(self, RequestId):
21552
+ self._RequestId = RequestId
21553
+
21554
+
21555
+ def _deserialize(self, params):
21556
+ self._TotalCount = params.get("TotalCount")
21557
+ if params.get("TopicList") is not None:
21558
+ self._TopicList = []
21559
+ for item in params.get("TopicList"):
21560
+ obj = Topic_Simplification()
21561
+ obj._deserialize(item)
21562
+ self._TopicList.append(obj)
21563
+ self._RequestId = params.get("RequestId")
21564
+
21565
+
21422
21566
  class ImportRocketMQConsumerGroupsRequest(AbstractModel):
21423
21567
  """ImportRocketMQConsumerGroups请求参数结构体
21424
21568
 
@@ -36702,6 +36846,67 @@ class TopicStats(AbstractModel):
36702
36846
 
36703
36847
 
36704
36848
 
36849
+ class Topic_Simplification(AbstractModel):
36850
+ """主题实例
36851
+
36852
+ """
36853
+
36854
+ def __init__(self):
36855
+ r"""
36856
+ :param _TopicName: 主题名称。
36857
+ 注意:此字段可能返回 null,表示取不到有效值。
36858
+ :type TopicName: str
36859
+ :param _PulsarTopicType: 0: 非持久非分区
36860
+ 1: 非持久分区
36861
+ 2: 持久非分区
36862
+ 3: 持久分区
36863
+ 注意:此字段可能返回 null,表示取不到有效值。
36864
+ :type PulsarTopicType: int
36865
+ """
36866
+ self._TopicName = None
36867
+ self._PulsarTopicType = None
36868
+
36869
+ @property
36870
+ def TopicName(self):
36871
+ """主题名称。
36872
+ 注意:此字段可能返回 null,表示取不到有效值。
36873
+ :rtype: str
36874
+ """
36875
+ return self._TopicName
36876
+
36877
+ @TopicName.setter
36878
+ def TopicName(self, TopicName):
36879
+ self._TopicName = TopicName
36880
+
36881
+ @property
36882
+ def PulsarTopicType(self):
36883
+ """0: 非持久非分区
36884
+ 1: 非持久分区
36885
+ 2: 持久非分区
36886
+ 3: 持久分区
36887
+ 注意:此字段可能返回 null,表示取不到有效值。
36888
+ :rtype: int
36889
+ """
36890
+ return self._PulsarTopicType
36891
+
36892
+ @PulsarTopicType.setter
36893
+ def PulsarTopicType(self, PulsarTopicType):
36894
+ self._PulsarTopicType = PulsarTopicType
36895
+
36896
+
36897
+ def _deserialize(self, params):
36898
+ self._TopicName = params.get("TopicName")
36899
+ self._PulsarTopicType = params.get("PulsarTopicType")
36900
+ memeber_set = set(params.keys())
36901
+ for name, value in vars(self).items():
36902
+ property_name = name[1:]
36903
+ if property_name in memeber_set:
36904
+ memeber_set.remove(property_name)
36905
+ if len(memeber_set) > 0:
36906
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
36907
+
36908
+
36909
+
36705
36910
  class TraceResult(AbstractModel):
36706
36911
  """消息轨迹结果
36707
36912
 
@@ -2560,6 +2560,29 @@ class TdmqClient(AbstractClient):
2560
2560
  raise TencentCloudSDKException(type(e).__name__, str(e))
2561
2561
 
2562
2562
 
2563
+ def GetTopicList(self, request):
2564
+ """获取环境下主题列表
2565
+
2566
+ :param request: Request instance for GetTopicList.
2567
+ :type request: :class:`tencentcloud.tdmq.v20200217.models.GetTopicListRequest`
2568
+ :rtype: :class:`tencentcloud.tdmq.v20200217.models.GetTopicListResponse`
2569
+
2570
+ """
2571
+ try:
2572
+ params = request._serialize()
2573
+ headers = request.headers
2574
+ body = self.call("GetTopicList", params, headers=headers)
2575
+ response = json.loads(body)
2576
+ model = models.GetTopicListResponse()
2577
+ model._deserialize(response["Response"])
2578
+ return model
2579
+ except Exception as e:
2580
+ if isinstance(e, TencentCloudSDKException):
2581
+ raise
2582
+ else:
2583
+ raise TencentCloudSDKException(type(e).__name__, str(e))
2584
+
2585
+
2563
2586
  def ImportRocketMQConsumerGroups(self, request):
2564
2587
  """输入迁移任务id和要导入的Group,导入后台
2565
2588
 
@@ -1642,7 +1642,7 @@ class DeleteBasicModerationRequest(AbstractModel):
1642
1642
 
1643
1643
  def __init__(self):
1644
1644
  r"""
1645
- :param _SdkAppId: TRTC的SDKAppId,和TRTC的房间所对应的SDKAppId相同。
1645
+ :param _SdkAppId: TRTC的SDKAppId,和TRTC的房间所使用的SDKAppId相同。
1646
1646
  :type SdkAppId: int
1647
1647
  :param _TaskId: 审核任务的唯一Id,在启动审核任务成功后会返回。
1648
1648
  :type TaskId: str
@@ -1652,7 +1652,7 @@ class DeleteBasicModerationRequest(AbstractModel):
1652
1652
 
1653
1653
  @property
1654
1654
  def SdkAppId(self):
1655
- """TRTC的SDKAppId,和TRTC的房间所对应的SDKAppId相同。
1655
+ """TRTC的SDKAppId,和TRTC的房间所使用的SDKAppId相同。
1656
1656
  :rtype: int
1657
1657
  """
1658
1658
  return self._SdkAppId
@@ -1693,7 +1693,7 @@ class DeleteBasicModerationResponse(AbstractModel):
1693
1693
 
1694
1694
  def __init__(self):
1695
1695
  r"""
1696
- :param _TaskId: 审核任务的唯一Id,在启动审核任务成功后会返回。
1696
+ :param _TaskId: 审核任务的唯一Id
1697
1697
  :type TaskId: str
1698
1698
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1699
1699
  :type RequestId: str
@@ -1703,7 +1703,7 @@ class DeleteBasicModerationResponse(AbstractModel):
1703
1703
 
1704
1704
  @property
1705
1705
  def TaskId(self):
1706
- """审核任务的唯一Id,在启动审核任务成功后会返回。
1706
+ """审核任务的唯一Id
1707
1707
  :rtype: str
1708
1708
  """
1709
1709
  return self._TaskId
@@ -5698,10 +5698,8 @@ class DescribeWebRecordResponse(AbstractModel):
5698
5698
  :param _Status: 1: 正在录制中
5699
5699
  :type Status: int
5700
5700
  :param _TaskId: 在使用RecordId查询时返回
5701
- 注意:此字段可能返回 null,表示取不到有效值。
5702
5701
  :type TaskId: str
5703
5702
  :param _RecordId: 在使用TaskId查询时返回
5704
- 注意:此字段可能返回 null,表示取不到有效值。
5705
5703
  :type RecordId: str
5706
5704
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5707
5705
  :type RequestId: str
@@ -5725,7 +5723,6 @@ class DescribeWebRecordResponse(AbstractModel):
5725
5723
  @property
5726
5724
  def TaskId(self):
5727
5725
  """在使用RecordId查询时返回
5728
- 注意:此字段可能返回 null,表示取不到有效值。
5729
5726
  :rtype: str
5730
5727
  """
5731
5728
  return self._TaskId
@@ -5737,7 +5734,6 @@ class DescribeWebRecordResponse(AbstractModel):
5737
5734
  @property
5738
5735
  def RecordId(self):
5739
5736
  """在使用TaskId查询时返回
5740
- 注意:此字段可能返回 null,表示取不到有效值。
5741
5737
  :rtype: str
5742
5738
  """
5743
5739
  return self._RecordId
@@ -1484,9 +1484,9 @@ class AddressTemplateItem(AbstractModel):
1484
1484
  r"""
1485
1485
  :param _AddressTemplateId: IP地址模板ID
1486
1486
  :type AddressTemplateId: str
1487
- :param _AddressTemplateName: IP模板名称
1487
+ :param _AddressTemplateName: IP模板名称。
1488
1488
  :type AddressTemplateName: str
1489
- :param _From: 废弃字段
1489
+ :param _From: 废弃字段。
1490
1490
  :type From: str
1491
1491
  :param _To: 废弃字段
1492
1492
  :type To: str
@@ -1509,7 +1509,7 @@ class AddressTemplateItem(AbstractModel):
1509
1509
 
1510
1510
  @property
1511
1511
  def AddressTemplateName(self):
1512
- """IP模板名称
1512
+ """IP模板名称。
1513
1513
  :rtype: str
1514
1514
  """
1515
1515
  return self._AddressTemplateName
@@ -1520,7 +1520,7 @@ class AddressTemplateItem(AbstractModel):
1520
1520
 
1521
1521
  @property
1522
1522
  def From(self):
1523
- """废弃字段
1523
+ """废弃字段。
1524
1524
  :rtype: str
1525
1525
  """
1526
1526
  return self._From
@@ -41110,32 +41110,20 @@ class HaVipAssociation(AbstractModel):
41110
41110
 
41111
41111
  def __init__(self):
41112
41112
  r"""
41113
- :param _HaVipId: HaVip实例唯一ID。
41114
- 注意:此字段可能返回 null,表示取不到有效值。
41115
- :type HaVipId: str
41116
41113
  :param _InstanceId: HaVip绑定的子机或网卡唯一ID。
41117
41114
  注意:此字段可能返回 null,表示取不到有效值。
41118
41115
  :type InstanceId: str
41116
+ :param _HaVipId: HaVip实例唯一ID。
41117
+ 注意:此字段可能返回 null,表示取不到有效值。
41118
+ :type HaVipId: str
41119
41119
  :param _InstanceType: HaVip绑定的类型。取值:CVM, ENI。
41120
41120
  注意:此字段可能返回 null,表示取不到有效值。
41121
41121
  :type InstanceType: str
41122
41122
  """
41123
- self._HaVipId = None
41124
41123
  self._InstanceId = None
41124
+ self._HaVipId = None
41125
41125
  self._InstanceType = None
41126
41126
 
41127
- @property
41128
- def HaVipId(self):
41129
- """HaVip实例唯一ID。
41130
- 注意:此字段可能返回 null,表示取不到有效值。
41131
- :rtype: str
41132
- """
41133
- return self._HaVipId
41134
-
41135
- @HaVipId.setter
41136
- def HaVipId(self, HaVipId):
41137
- self._HaVipId = HaVipId
41138
-
41139
41127
  @property
41140
41128
  def InstanceId(self):
41141
41129
  """HaVip绑定的子机或网卡唯一ID。
@@ -41148,6 +41136,18 @@ class HaVipAssociation(AbstractModel):
41148
41136
  def InstanceId(self, InstanceId):
41149
41137
  self._InstanceId = InstanceId
41150
41138
 
41139
+ @property
41140
+ def HaVipId(self):
41141
+ """HaVip实例唯一ID。
41142
+ 注意:此字段可能返回 null,表示取不到有效值。
41143
+ :rtype: str
41144
+ """
41145
+ return self._HaVipId
41146
+
41147
+ @HaVipId.setter
41148
+ def HaVipId(self, HaVipId):
41149
+ self._HaVipId = HaVipId
41150
+
41151
41151
  @property
41152
41152
  def InstanceType(self):
41153
41153
  """HaVip绑定的类型。取值:CVM, ENI。
@@ -41162,8 +41162,8 @@ class HaVipAssociation(AbstractModel):
41162
41162
 
41163
41163
 
41164
41164
  def _deserialize(self, params):
41165
- self._HaVipId = params.get("HaVipId")
41166
41165
  self._InstanceId = params.get("InstanceId")
41166
+ self._HaVipId = params.get("HaVipId")
41167
41167
  self._InstanceType = params.get("InstanceType")
41168
41168
  memeber_set = set(params.keys())
41169
41169
  for name, value in vars(self).items():
@@ -53449,6 +53449,14 @@ class NetworkInterface(AbstractModel):
53449
53449
  <li>`DETACHING`:解绑中</li>
53450
53450
  <li>`DELETING`:删除中</li>
53451
53451
  :type State: str
53452
+ :param _NetworkInterfaceState: 弹性网卡状态:
53453
+ <li>`PENDING`:创建中</li>
53454
+ <li>`AVAILABLE`:可用的</li>
53455
+ <li>`ATTACHING`:绑定中</li>
53456
+ <li>`DETACHING`:解绑中</li>
53457
+ <li>`DELETING`:删除中</li>
53458
+ <li>`INUSE`:已绑定</li>
53459
+ :type NetworkInterfaceState: str
53452
53460
  :param _PrivateIpAddressSet: 内网IP信息。
53453
53461
  :type PrivateIpAddressSet: list of PrivateIpAddressSpecification
53454
53462
  :param _Attachment: 绑定的云服务器对象。
@@ -53493,6 +53501,7 @@ class NetworkInterface(AbstractModel):
53493
53501
  self._Primary = None
53494
53502
  self._MacAddress = None
53495
53503
  self._State = None
53504
+ self._NetworkInterfaceState = None
53496
53505
  self._PrivateIpAddressSet = None
53497
53506
  self._Attachment = None
53498
53507
  self._Zone = None
@@ -53610,6 +53619,23 @@ class NetworkInterface(AbstractModel):
53610
53619
  def State(self, State):
53611
53620
  self._State = State
53612
53621
 
53622
+ @property
53623
+ def NetworkInterfaceState(self):
53624
+ """弹性网卡状态:
53625
+ <li>`PENDING`:创建中</li>
53626
+ <li>`AVAILABLE`:可用的</li>
53627
+ <li>`ATTACHING`:绑定中</li>
53628
+ <li>`DETACHING`:解绑中</li>
53629
+ <li>`DELETING`:删除中</li>
53630
+ <li>`INUSE`:已绑定</li>
53631
+ :rtype: str
53632
+ """
53633
+ return self._NetworkInterfaceState
53634
+
53635
+ @NetworkInterfaceState.setter
53636
+ def NetworkInterfaceState(self, NetworkInterfaceState):
53637
+ self._NetworkInterfaceState = NetworkInterfaceState
53638
+
53613
53639
  @property
53614
53640
  def PrivateIpAddressSet(self):
53615
53641
  """内网IP信息。
@@ -53763,6 +53789,7 @@ class NetworkInterface(AbstractModel):
53763
53789
  self._Primary = params.get("Primary")
53764
53790
  self._MacAddress = params.get("MacAddress")
53765
53791
  self._State = params.get("State")
53792
+ self._NetworkInterfaceState = params.get("NetworkInterfaceState")
53766
53793
  if params.get("PrivateIpAddressSet") is not None:
53767
53794
  self._PrivateIpAddressSet = []
53768
53795
  for item in params.get("PrivateIpAddressSet"):
@@ -60668,7 +60695,6 @@ class ServicesInfo(AbstractModel):
60668
60695
  :param _Service: 协议端口。
60669
60696
  :type Service: str
60670
60697
  :param _Description: 备注。
60671
- 注意:此字段可能返回 null,表示取不到有效值。
60672
60698
  :type Description: str
60673
60699
  """
60674
60700
  self._Service = None
@@ -60688,7 +60714,6 @@ class ServicesInfo(AbstractModel):
60688
60714
  @property
60689
60715
  def Description(self):
60690
60716
  """备注。
60691
- 注意:此字段可能返回 null,表示取不到有效值。
60692
60717
  :rtype: str
60693
60718
  """
60694
60719
  return self._Description