tencentcloud-sdk-python 3.0.1361__py2.py3-none-any.whl → 3.0.1362__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 (31) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/cdwpg/v20201230/models.py +0 -136
  3. tencentcloud/cwp/v20180228/models.py +138 -12
  4. tencentcloud/dlc/v20210125/models.py +0 -2
  5. tencentcloud/es/v20250101/es_client.py +23 -0
  6. tencentcloud/es/v20250101/models.py +356 -1
  7. tencentcloud/gaap/v20180529/gaap_client.py +1 -1
  8. tencentcloud/gaap/v20180529/models.py +2 -20
  9. tencentcloud/gs/v20191118/gs_client.py +46 -0
  10. tencentcloud/gs/v20191118/models.py +385 -8
  11. tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +69 -0
  12. tencentcloud/iotexplorer/v20190423/models.py +578 -0
  13. tencentcloud/lcic/v20220817/models.py +30 -0
  14. tencentcloud/lighthouse/v20200324/errorcodes.py +0 -6
  15. tencentcloud/lighthouse/v20200324/lighthouse_client.py +0 -56
  16. tencentcloud/lighthouse/v20200324/models.py +0 -158
  17. tencentcloud/mps/v20190612/models.py +166 -15
  18. tencentcloud/oceanus/v20190422/models.py +2 -2
  19. tencentcloud/tcbr/v20220217/models.py +15 -0
  20. tencentcloud/tione/v20211111/models.py +91 -0
  21. tencentcloud/trocket/v20230308/models.py +141 -88
  22. tencentcloud/trocket/v20230308/trocket_client.py +2 -1
  23. tencentcloud/vcube/v20220410/models.py +15 -0
  24. tencentcloud/vdb/v20230616/models.py +15 -0
  25. tencentcloud/vpc/v20170312/models.py +307 -78
  26. tencentcloud/vpc/v20170312/vpc_client.py +31 -3
  27. {tencentcloud_sdk_python-3.0.1361.dist-info → tencentcloud_sdk_python-3.0.1362.dist-info}/METADATA +1 -1
  28. {tencentcloud_sdk_python-3.0.1361.dist-info → tencentcloud_sdk_python-3.0.1362.dist-info}/RECORD +31 -31
  29. {tencentcloud_sdk_python-3.0.1361.dist-info → tencentcloud_sdk_python-3.0.1362.dist-info}/LICENSE +0 -0
  30. {tencentcloud_sdk_python-3.0.1361.dist-info → tencentcloud_sdk_python-3.0.1362.dist-info}/WHEEL +0 -0
  31. {tencentcloud_sdk_python-3.0.1361.dist-info → tencentcloud_sdk_python-3.0.1362.dist-info}/top_level.txt +0 -0
@@ -462,6 +462,57 @@ class Choice(AbstractModel):
462
462
 
463
463
 
464
464
 
465
+ class CodeRepoConfig(AbstractModel):
466
+ """代码仓库配置
467
+
468
+ """
469
+
470
+ def __init__(self):
471
+ r"""
472
+ :param _Id: 代码仓库Id
473
+ :type Id: str
474
+ :param _TargetPath: 代码仓下载目标地址
475
+ :type TargetPath: str
476
+ """
477
+ self._Id = None
478
+ self._TargetPath = None
479
+
480
+ @property
481
+ def Id(self):
482
+ """代码仓库Id
483
+ :rtype: str
484
+ """
485
+ return self._Id
486
+
487
+ @Id.setter
488
+ def Id(self, Id):
489
+ self._Id = Id
490
+
491
+ @property
492
+ def TargetPath(self):
493
+ """代码仓下载目标地址
494
+ :rtype: str
495
+ """
496
+ return self._TargetPath
497
+
498
+ @TargetPath.setter
499
+ def TargetPath(self, TargetPath):
500
+ self._TargetPath = TargetPath
501
+
502
+
503
+ def _deserialize(self, params):
504
+ self._Id = params.get("Id")
505
+ self._TargetPath = params.get("TargetPath")
506
+ memeber_set = set(params.keys())
507
+ for name, value in vars(self).items():
508
+ property_name = name[1:]
509
+ if property_name in memeber_set:
510
+ memeber_set.remove(property_name)
511
+ if len(memeber_set) > 0:
512
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
513
+
514
+
515
+
465
516
  class Container(AbstractModel):
466
517
  """容器信息
467
518
 
@@ -2852,6 +2903,8 @@ POSTPAID_BY_HOUR 按量计费
2852
2903
  :type CallbackUrl: str
2853
2904
  :param _EncodedStartCmdInfo: 编码后的任务启动命令,与StartCmdInfo同时配置时,仅当前参数生效
2854
2905
  :type EncodedStartCmdInfo: :class:`tencentcloud.tione.v20211111.models.EncodedStartCmdInfo`
2906
+ :param _CodeRepos: 代码仓库配置
2907
+ :type CodeRepos: list of CodeRepoConfig
2855
2908
  """
2856
2909
  self._Name = None
2857
2910
  self._ChargeType = None
@@ -2876,6 +2929,7 @@ POSTPAID_BY_HOUR 按量计费
2876
2929
  self._DataSource = None
2877
2930
  self._CallbackUrl = None
2878
2931
  self._EncodedStartCmdInfo = None
2932
+ self._CodeRepos = None
2879
2933
 
2880
2934
  @property
2881
2935
  def Name(self):
@@ -3131,6 +3185,17 @@ POSTPAID_BY_HOUR 按量计费
3131
3185
  def EncodedStartCmdInfo(self, EncodedStartCmdInfo):
3132
3186
  self._EncodedStartCmdInfo = EncodedStartCmdInfo
3133
3187
 
3188
+ @property
3189
+ def CodeRepos(self):
3190
+ """代码仓库配置
3191
+ :rtype: list of CodeRepoConfig
3192
+ """
3193
+ return self._CodeRepos
3194
+
3195
+ @CodeRepos.setter
3196
+ def CodeRepos(self, CodeRepos):
3197
+ self._CodeRepos = CodeRepos
3198
+
3134
3199
 
3135
3200
  def _deserialize(self, params):
3136
3201
  self._Name = params.get("Name")
@@ -3183,6 +3248,12 @@ POSTPAID_BY_HOUR 按量计费
3183
3248
  if params.get("EncodedStartCmdInfo") is not None:
3184
3249
  self._EncodedStartCmdInfo = EncodedStartCmdInfo()
3185
3250
  self._EncodedStartCmdInfo._deserialize(params.get("EncodedStartCmdInfo"))
3251
+ if params.get("CodeRepos") is not None:
3252
+ self._CodeRepos = []
3253
+ for item in params.get("CodeRepos"):
3254
+ obj = CodeRepoConfig()
3255
+ obj._deserialize(item)
3256
+ self._CodeRepos.append(obj)
3186
3257
  memeber_set = set(params.keys())
3187
3258
  for name, value in vars(self).items():
3188
3259
  property_name = name[1:]
@@ -19784,6 +19855,8 @@ class TrainingTaskDetail(AbstractModel):
19784
19855
  :param _CallbackUrl: 回调地址
19785
19856
  注意:此字段可能返回 null,表示取不到有效值。
19786
19857
  :type CallbackUrl: str
19858
+ :param _CodeRepos: 任务关联的代码仓库配置
19859
+ :type CodeRepos: list of CodeRepoConfig
19787
19860
  """
19788
19861
  self._Id = None
19789
19862
  self._Name = None
@@ -19825,6 +19898,7 @@ class TrainingTaskDetail(AbstractModel):
19825
19898
  self._Message = None
19826
19899
  self._Status = None
19827
19900
  self._CallbackUrl = None
19901
+ self._CodeRepos = None
19828
19902
 
19829
19903
  @property
19830
19904
  def Id(self):
@@ -20291,6 +20365,17 @@ class TrainingTaskDetail(AbstractModel):
20291
20365
  def CallbackUrl(self, CallbackUrl):
20292
20366
  self._CallbackUrl = CallbackUrl
20293
20367
 
20368
+ @property
20369
+ def CodeRepos(self):
20370
+ """任务关联的代码仓库配置
20371
+ :rtype: list of CodeRepoConfig
20372
+ """
20373
+ return self._CodeRepos
20374
+
20375
+ @CodeRepos.setter
20376
+ def CodeRepos(self, CodeRepos):
20377
+ self._CodeRepos = CodeRepos
20378
+
20294
20379
 
20295
20380
  def _deserialize(self, params):
20296
20381
  self._Id = params.get("Id")
@@ -20358,6 +20443,12 @@ class TrainingTaskDetail(AbstractModel):
20358
20443
  self._Message = params.get("Message")
20359
20444
  self._Status = params.get("Status")
20360
20445
  self._CallbackUrl = params.get("CallbackUrl")
20446
+ if params.get("CodeRepos") is not None:
20447
+ self._CodeRepos = []
20448
+ for item in params.get("CodeRepos"):
20449
+ obj = CodeRepoConfig()
20450
+ obj._deserialize(item)
20451
+ self._CodeRepos.append(obj)
20361
20452
  memeber_set = set(params.keys())
20362
20453
  for name, value in vars(self).items():
20363
20454
  property_name = name[1:]
@@ -331,12 +331,15 @@ class ConsumerClient(AbstractModel):
331
331
  :param _ConsumerLag: 客户端消费堆积
332
332
  注意:此字段可能返回 null,表示取不到有效值。
333
333
  :type ConsumerLag: int
334
+ :param _ChannelProtocol: 消费者客户端类型(grpc;remoting;http)
335
+ :type ChannelProtocol: str
334
336
  """
335
337
  self._ClientId = None
336
338
  self._ClientAddr = None
337
339
  self._Language = None
338
340
  self._Version = None
339
341
  self._ConsumerLag = None
342
+ self._ChannelProtocol = None
340
343
 
341
344
  @property
342
345
  def ClientId(self):
@@ -394,6 +397,17 @@ class ConsumerClient(AbstractModel):
394
397
  def ConsumerLag(self, ConsumerLag):
395
398
  self._ConsumerLag = ConsumerLag
396
399
 
400
+ @property
401
+ def ChannelProtocol(self):
402
+ """消费者客户端类型(grpc;remoting;http)
403
+ :rtype: str
404
+ """
405
+ return self._ChannelProtocol
406
+
407
+ @ChannelProtocol.setter
408
+ def ChannelProtocol(self, ChannelProtocol):
409
+ self._ChannelProtocol = ChannelProtocol
410
+
397
411
 
398
412
  def _deserialize(self, params):
399
413
  self._ClientId = params.get("ClientId")
@@ -401,6 +415,7 @@ class ConsumerClient(AbstractModel):
401
415
  self._Language = params.get("Language")
402
416
  self._Version = params.get("Version")
403
417
  self._ConsumerLag = params.get("ConsumerLag")
418
+ self._ChannelProtocol = params.get("ChannelProtocol")
404
419
  memeber_set = set(params.keys())
405
420
  for name, value in vars(self).items():
406
421
  property_name = name[1:]
@@ -6925,16 +6940,12 @@ class DescribeMigratingGroupStatsResponse(AbstractModel):
6925
6940
  def __init__(self):
6926
6941
  r"""
6927
6942
  :param _SourceConsumeLag: 源集群消费组堆积
6928
- 注意:此字段可能返回 null,表示取不到有效值。
6929
6943
  :type SourceConsumeLag: int
6930
6944
  :param _TargetConsumeLag: 目标集群消费组堆积
6931
- 注意:此字段可能返回 null,表示取不到有效值。
6932
6945
  :type TargetConsumeLag: int
6933
6946
  :param _SourceConsumerClients: 源集群连接客户端列表
6934
- 注意:此字段可能返回 null,表示取不到有效值。
6935
6947
  :type SourceConsumerClients: list of ConsumerClient
6936
6948
  :param _TargetConsumerClients: 目标集群连接客户端列表
6937
- 注意:此字段可能返回 null,表示取不到有效值。
6938
6949
  :type TargetConsumerClients: list of ConsumerClient
6939
6950
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6940
6951
  :type RequestId: str
@@ -6948,7 +6959,6 @@ class DescribeMigratingGroupStatsResponse(AbstractModel):
6948
6959
  @property
6949
6960
  def SourceConsumeLag(self):
6950
6961
  """源集群消费组堆积
6951
- 注意:此字段可能返回 null,表示取不到有效值。
6952
6962
  :rtype: int
6953
6963
  """
6954
6964
  return self._SourceConsumeLag
@@ -6960,7 +6970,6 @@ class DescribeMigratingGroupStatsResponse(AbstractModel):
6960
6970
  @property
6961
6971
  def TargetConsumeLag(self):
6962
6972
  """目标集群消费组堆积
6963
- 注意:此字段可能返回 null,表示取不到有效值。
6964
6973
  :rtype: int
6965
6974
  """
6966
6975
  return self._TargetConsumeLag
@@ -6972,7 +6981,6 @@ class DescribeMigratingGroupStatsResponse(AbstractModel):
6972
6981
  @property
6973
6982
  def SourceConsumerClients(self):
6974
6983
  """源集群连接客户端列表
6975
- 注意:此字段可能返回 null,表示取不到有效值。
6976
6984
  :rtype: list of ConsumerClient
6977
6985
  """
6978
6986
  return self._SourceConsumerClients
@@ -6984,7 +6992,6 @@ class DescribeMigratingGroupStatsResponse(AbstractModel):
6984
6992
  @property
6985
6993
  def TargetConsumerClients(self):
6986
6994
  """目标集群连接客户端列表
6987
- 注意:此字段可能返回 null,表示取不到有效值。
6988
6995
  :rtype: list of ConsumerClient
6989
6996
  """
6990
6997
  return self._TargetConsumerClients
@@ -7030,41 +7037,19 @@ class DescribeMigratingTopicListRequest(AbstractModel):
7030
7037
 
7031
7038
  def __init__(self):
7032
7039
  r"""
7033
- :param _Offset: 查询起始位置
7034
- :type Offset: int
7035
- :param _Limit: 查询结果限制数量
7036
- :type Limit: int
7037
7040
  :param _TaskId: 任务ID
7038
7041
  :type TaskId: str
7039
7042
  :param _Filters: 查询条件列表
7040
7043
  :type Filters: list of Filter
7044
+ :param _Offset: 查询起始位置
7045
+ :type Offset: int
7046
+ :param _Limit: 查询结果限制数量
7047
+ :type Limit: int
7041
7048
  """
7042
- self._Offset = None
7043
- self._Limit = None
7044
7049
  self._TaskId = None
7045
7050
  self._Filters = None
7046
-
7047
- @property
7048
- def Offset(self):
7049
- """查询起始位置
7050
- :rtype: int
7051
- """
7052
- return self._Offset
7053
-
7054
- @Offset.setter
7055
- def Offset(self, Offset):
7056
- self._Offset = Offset
7057
-
7058
- @property
7059
- def Limit(self):
7060
- """查询结果限制数量
7061
- :rtype: int
7062
- """
7063
- return self._Limit
7064
-
7065
- @Limit.setter
7066
- def Limit(self, Limit):
7067
- self._Limit = Limit
7051
+ self._Offset = None
7052
+ self._Limit = None
7068
7053
 
7069
7054
  @property
7070
7055
  def TaskId(self):
@@ -7088,10 +7073,30 @@ class DescribeMigratingTopicListRequest(AbstractModel):
7088
7073
  def Filters(self, Filters):
7089
7074
  self._Filters = Filters
7090
7075
 
7076
+ @property
7077
+ def Offset(self):
7078
+ """查询起始位置
7079
+ :rtype: int
7080
+ """
7081
+ return self._Offset
7082
+
7083
+ @Offset.setter
7084
+ def Offset(self, Offset):
7085
+ self._Offset = Offset
7086
+
7087
+ @property
7088
+ def Limit(self):
7089
+ """查询结果限制数量
7090
+ :rtype: int
7091
+ """
7092
+ return self._Limit
7093
+
7094
+ @Limit.setter
7095
+ def Limit(self, Limit):
7096
+ self._Limit = Limit
7097
+
7091
7098
 
7092
7099
  def _deserialize(self, params):
7093
- self._Offset = params.get("Offset")
7094
- self._Limit = params.get("Limit")
7095
7100
  self._TaskId = params.get("TaskId")
7096
7101
  if params.get("Filters") is not None:
7097
7102
  self._Filters = []
@@ -7099,6 +7104,8 @@ class DescribeMigratingTopicListRequest(AbstractModel):
7099
7104
  obj = Filter()
7100
7105
  obj._deserialize(item)
7101
7106
  self._Filters.append(obj)
7107
+ self._Offset = params.get("Offset")
7108
+ self._Limit = params.get("Limit")
7102
7109
  memeber_set = set(params.keys())
7103
7110
  for name, value in vars(self).items():
7104
7111
  property_name = name[1:]
@@ -7117,7 +7124,6 @@ class DescribeMigratingTopicListResponse(AbstractModel):
7117
7124
  def __init__(self):
7118
7125
  r"""
7119
7126
  :param _TotalCount: 查询总数
7120
- 注意:此字段可能返回 null,表示取不到有效值。
7121
7127
  :type TotalCount: int
7122
7128
  :param _MigrateTopics: 主题列表
7123
7129
  :type MigrateTopics: list of MigratingTopic
@@ -7131,7 +7137,6 @@ class DescribeMigratingTopicListResponse(AbstractModel):
7131
7137
  @property
7132
7138
  def TotalCount(self):
7133
7139
  """查询总数
7134
- 注意:此字段可能返回 null,表示取不到有效值。
7135
7140
  :rtype: int
7136
7141
  """
7137
7142
  return self._TotalCount
@@ -7542,41 +7547,19 @@ class DescribeSourceClusterGroupListRequest(AbstractModel):
7542
7547
 
7543
7548
  def __init__(self):
7544
7549
  r"""
7545
- :param _Offset: 查询起始位置
7546
- :type Offset: int
7547
- :param _Limit: 查询结果限制数量
7548
- :type Limit: int
7549
7550
  :param _TaskId: 任务ID
7550
7551
  :type TaskId: str
7551
7552
  :param _Filters: 查询条件列表
7552
7553
  :type Filters: list of Filter
7554
+ :param _Offset: 查询起始位置
7555
+ :type Offset: int
7556
+ :param _Limit: 查询结果限制数量
7557
+ :type Limit: int
7553
7558
  """
7554
- self._Offset = None
7555
- self._Limit = None
7556
7559
  self._TaskId = None
7557
7560
  self._Filters = None
7558
-
7559
- @property
7560
- def Offset(self):
7561
- """查询起始位置
7562
- :rtype: int
7563
- """
7564
- return self._Offset
7565
-
7566
- @Offset.setter
7567
- def Offset(self, Offset):
7568
- self._Offset = Offset
7569
-
7570
- @property
7571
- def Limit(self):
7572
- """查询结果限制数量
7573
- :rtype: int
7574
- """
7575
- return self._Limit
7576
-
7577
- @Limit.setter
7578
- def Limit(self, Limit):
7579
- self._Limit = Limit
7561
+ self._Offset = None
7562
+ self._Limit = None
7580
7563
 
7581
7564
  @property
7582
7565
  def TaskId(self):
@@ -7600,10 +7583,30 @@ class DescribeSourceClusterGroupListRequest(AbstractModel):
7600
7583
  def Filters(self, Filters):
7601
7584
  self._Filters = Filters
7602
7585
 
7586
+ @property
7587
+ def Offset(self):
7588
+ """查询起始位置
7589
+ :rtype: int
7590
+ """
7591
+ return self._Offset
7592
+
7593
+ @Offset.setter
7594
+ def Offset(self, Offset):
7595
+ self._Offset = Offset
7596
+
7597
+ @property
7598
+ def Limit(self):
7599
+ """查询结果限制数量
7600
+ :rtype: int
7601
+ """
7602
+ return self._Limit
7603
+
7604
+ @Limit.setter
7605
+ def Limit(self, Limit):
7606
+ self._Limit = Limit
7607
+
7603
7608
 
7604
7609
  def _deserialize(self, params):
7605
- self._Offset = params.get("Offset")
7606
- self._Limit = params.get("Limit")
7607
7610
  self._TaskId = params.get("TaskId")
7608
7611
  if params.get("Filters") is not None:
7609
7612
  self._Filters = []
@@ -7611,6 +7614,8 @@ class DescribeSourceClusterGroupListRequest(AbstractModel):
7611
7614
  obj = Filter()
7612
7615
  obj._deserialize(item)
7613
7616
  self._Filters.append(obj)
7617
+ self._Offset = params.get("Offset")
7618
+ self._Limit = params.get("Limit")
7614
7619
  memeber_set = set(params.keys())
7615
7620
  for name, value in vars(self).items():
7616
7621
  property_name = name[1:]
@@ -7629,7 +7634,6 @@ class DescribeSourceClusterGroupListResponse(AbstractModel):
7629
7634
  def __init__(self):
7630
7635
  r"""
7631
7636
  :param _TotalCount: 查询总数
7632
- 注意:此字段可能返回 null,表示取不到有效值。
7633
7637
  :type TotalCount: int
7634
7638
  :param _Groups: 消费组配置列表
7635
7639
  :type Groups: list of SourceClusterGroupConfig
@@ -7643,7 +7647,6 @@ class DescribeSourceClusterGroupListResponse(AbstractModel):
7643
7647
  @property
7644
7648
  def TotalCount(self):
7645
7649
  """查询总数
7646
- 注意:此字段可能返回 null,表示取不到有效值。
7647
7650
  :rtype: int
7648
7651
  """
7649
7652
  return self._TotalCount
@@ -11228,31 +11231,40 @@ class MigratingTopic(AbstractModel):
11228
11231
  def __init__(self):
11229
11232
  r"""
11230
11233
  :param _TopicName: 主题名称
11231
- 注意:此字段可能返回 null,表示取不到有效值。
11232
11234
  :type TopicName: str
11233
11235
  :param _MigrationStatus: 迁移状态 S_RW_D_NA 源集群读写 S_RW_D_R 源集群读写目标集群读 S_RW_D_RW 源集群读写目标集群读写 S_R_D_RW 源集群读目标集群读写 S_NA_D_RW 目标集群读写
11234
- 注意:此字段可能返回 null,表示取不到有效值。
11235
11236
  :type MigrationStatus: str
11236
11237
  :param _HealthCheckPassed: 是否完成健康检查
11237
- 注意:此字段可能返回 null,表示取不到有效值。
11238
11238
  :type HealthCheckPassed: bool
11239
11239
  :param _HealthCheckError: 上次健康检查返回的错误信息,仅在HealthCheckPassed为false时有效。 NotChecked 未执行检查, Unknown 未知错误, TopicNotImported 主题未导入, TopicNotExistsInSourceCluster 主题在源集群中不存在, TopicNotExistsInTargetCluster 主题在目标集群中不存在, ConsumerConnectedOnTarget 目标集群上存在消费者连接, SourceTopicHasNewMessagesIn5Minutes 源集群主题前5分钟内有新消息写入, TargetTopicHasNewMessagesIn5Minutes 目标集群主题前5分钟内有新消息写入, SourceTopicHasNoMessagesIn5Minutes 源集群前5分钟内没有新消息写入, TargetTopicHasNoMessagesIn5Minutes 源集群前5分钟内没有新消息写入, ConsumerGroupCountNotMatch 订阅组数量不一致, SourceTopicHasUnconsumedMessages 源集群主题存在未消费消息,
11240
- 注意:此字段可能返回 null,表示取不到有效值。
11241
11240
  :type HealthCheckError: str
11242
11241
  :param _Namespace: 命名空间,仅4.x集群有效
11243
- 注意:此字段可能返回 null,表示取不到有效值。
11244
11242
  :type Namespace: str
11243
+ :param _NamespaceV4: 4.x的命名空间
11244
+ 注意:此字段可能返回 null,表示取不到有效值。
11245
+ :type NamespaceV4: str
11246
+ :param _TopicNameV4: 4.x的主题名称
11247
+ 注意:此字段可能返回 null,表示取不到有效值。
11248
+ :type TopicNameV4: str
11249
+ :param _FullNamespaceV4: 4.x的完整命名空间
11250
+ 注意:此字段可能返回 null,表示取不到有效值。
11251
+ :type FullNamespaceV4: str
11252
+ :param _HealthCheckErrorList: 上次健康检查返回的错误列表
11253
+ :type HealthCheckErrorList: list of str
11245
11254
  """
11246
11255
  self._TopicName = None
11247
11256
  self._MigrationStatus = None
11248
11257
  self._HealthCheckPassed = None
11249
11258
  self._HealthCheckError = None
11250
11259
  self._Namespace = None
11260
+ self._NamespaceV4 = None
11261
+ self._TopicNameV4 = None
11262
+ self._FullNamespaceV4 = None
11263
+ self._HealthCheckErrorList = None
11251
11264
 
11252
11265
  @property
11253
11266
  def TopicName(self):
11254
11267
  """主题名称
11255
- 注意:此字段可能返回 null,表示取不到有效值。
11256
11268
  :rtype: str
11257
11269
  """
11258
11270
  return self._TopicName
@@ -11264,7 +11276,6 @@ class MigratingTopic(AbstractModel):
11264
11276
  @property
11265
11277
  def MigrationStatus(self):
11266
11278
  """迁移状态 S_RW_D_NA 源集群读写 S_RW_D_R 源集群读写目标集群读 S_RW_D_RW 源集群读写目标集群读写 S_R_D_RW 源集群读目标集群读写 S_NA_D_RW 目标集群读写
11267
- 注意:此字段可能返回 null,表示取不到有效值。
11268
11279
  :rtype: str
11269
11280
  """
11270
11281
  return self._MigrationStatus
@@ -11276,7 +11287,6 @@ class MigratingTopic(AbstractModel):
11276
11287
  @property
11277
11288
  def HealthCheckPassed(self):
11278
11289
  """是否完成健康检查
11279
- 注意:此字段可能返回 null,表示取不到有效值。
11280
11290
  :rtype: bool
11281
11291
  """
11282
11292
  return self._HealthCheckPassed
@@ -11288,7 +11298,6 @@ class MigratingTopic(AbstractModel):
11288
11298
  @property
11289
11299
  def HealthCheckError(self):
11290
11300
  """上次健康检查返回的错误信息,仅在HealthCheckPassed为false时有效。 NotChecked 未执行检查, Unknown 未知错误, TopicNotImported 主题未导入, TopicNotExistsInSourceCluster 主题在源集群中不存在, TopicNotExistsInTargetCluster 主题在目标集群中不存在, ConsumerConnectedOnTarget 目标集群上存在消费者连接, SourceTopicHasNewMessagesIn5Minutes 源集群主题前5分钟内有新消息写入, TargetTopicHasNewMessagesIn5Minutes 目标集群主题前5分钟内有新消息写入, SourceTopicHasNoMessagesIn5Minutes 源集群前5分钟内没有新消息写入, TargetTopicHasNoMessagesIn5Minutes 源集群前5分钟内没有新消息写入, ConsumerGroupCountNotMatch 订阅组数量不一致, SourceTopicHasUnconsumedMessages 源集群主题存在未消费消息,
11291
- 注意:此字段可能返回 null,表示取不到有效值。
11292
11301
  :rtype: str
11293
11302
  """
11294
11303
  return self._HealthCheckError
@@ -11300,7 +11309,6 @@ class MigratingTopic(AbstractModel):
11300
11309
  @property
11301
11310
  def Namespace(self):
11302
11311
  """命名空间,仅4.x集群有效
11303
- 注意:此字段可能返回 null,表示取不到有效值。
11304
11312
  :rtype: str
11305
11313
  """
11306
11314
  return self._Namespace
@@ -11309,6 +11317,53 @@ class MigratingTopic(AbstractModel):
11309
11317
  def Namespace(self, Namespace):
11310
11318
  self._Namespace = Namespace
11311
11319
 
11320
+ @property
11321
+ def NamespaceV4(self):
11322
+ """4.x的命名空间
11323
+ 注意:此字段可能返回 null,表示取不到有效值。
11324
+ :rtype: str
11325
+ """
11326
+ return self._NamespaceV4
11327
+
11328
+ @NamespaceV4.setter
11329
+ def NamespaceV4(self, NamespaceV4):
11330
+ self._NamespaceV4 = NamespaceV4
11331
+
11332
+ @property
11333
+ def TopicNameV4(self):
11334
+ """4.x的主题名称
11335
+ 注意:此字段可能返回 null,表示取不到有效值。
11336
+ :rtype: str
11337
+ """
11338
+ return self._TopicNameV4
11339
+
11340
+ @TopicNameV4.setter
11341
+ def TopicNameV4(self, TopicNameV4):
11342
+ self._TopicNameV4 = TopicNameV4
11343
+
11344
+ @property
11345
+ def FullNamespaceV4(self):
11346
+ """4.x的完整命名空间
11347
+ 注意:此字段可能返回 null,表示取不到有效值。
11348
+ :rtype: str
11349
+ """
11350
+ return self._FullNamespaceV4
11351
+
11352
+ @FullNamespaceV4.setter
11353
+ def FullNamespaceV4(self, FullNamespaceV4):
11354
+ self._FullNamespaceV4 = FullNamespaceV4
11355
+
11356
+ @property
11357
+ def HealthCheckErrorList(self):
11358
+ """上次健康检查返回的错误列表
11359
+ :rtype: list of str
11360
+ """
11361
+ return self._HealthCheckErrorList
11362
+
11363
+ @HealthCheckErrorList.setter
11364
+ def HealthCheckErrorList(self, HealthCheckErrorList):
11365
+ self._HealthCheckErrorList = HealthCheckErrorList
11366
+
11312
11367
 
11313
11368
  def _deserialize(self, params):
11314
11369
  self._TopicName = params.get("TopicName")
@@ -11316,6 +11371,10 @@ class MigratingTopic(AbstractModel):
11316
11371
  self._HealthCheckPassed = params.get("HealthCheckPassed")
11317
11372
  self._HealthCheckError = params.get("HealthCheckError")
11318
11373
  self._Namespace = params.get("Namespace")
11374
+ self._NamespaceV4 = params.get("NamespaceV4")
11375
+ self._TopicNameV4 = params.get("TopicNameV4")
11376
+ self._FullNamespaceV4 = params.get("FullNamespaceV4")
11377
+ self._HealthCheckErrorList = params.get("HealthCheckErrorList")
11319
11378
  memeber_set = set(params.keys())
11320
11379
  for name, value in vars(self).items():
11321
11380
  property_name = name[1:]
@@ -14756,13 +14815,10 @@ class TopicStageChangeResult(AbstractModel):
14756
14815
  def __init__(self):
14757
14816
  r"""
14758
14817
  :param _TopicName: 主题名称
14759
- 注意:此字段可能返回 null,表示取不到有效值。
14760
14818
  :type TopicName: str
14761
14819
  :param _Success: 是否成功
14762
- 注意:此字段可能返回 null,表示取不到有效值。
14763
14820
  :type Success: bool
14764
14821
  :param _Namespace: 命名空间,仅4.x有效
14765
- 注意:此字段可能返回 null,表示取不到有效值。
14766
14822
  :type Namespace: str
14767
14823
  """
14768
14824
  self._TopicName = None
@@ -14772,7 +14828,6 @@ class TopicStageChangeResult(AbstractModel):
14772
14828
  @property
14773
14829
  def TopicName(self):
14774
14830
  """主题名称
14775
- 注意:此字段可能返回 null,表示取不到有效值。
14776
14831
  :rtype: str
14777
14832
  """
14778
14833
  return self._TopicName
@@ -14784,7 +14839,6 @@ class TopicStageChangeResult(AbstractModel):
14784
14839
  @property
14785
14840
  def Success(self):
14786
14841
  """是否成功
14787
- 注意:此字段可能返回 null,表示取不到有效值。
14788
14842
  :rtype: bool
14789
14843
  """
14790
14844
  return self._Success
@@ -14796,7 +14850,6 @@ class TopicStageChangeResult(AbstractModel):
14796
14850
  @property
14797
14851
  def Namespace(self):
14798
14852
  """命名空间,仅4.x有效
14799
- 注意:此字段可能返回 null,表示取不到有效值。
14800
14853
  :rtype: str
14801
14854
  """
14802
14855
  return self._Namespace
@@ -997,7 +997,7 @@ class TrocketClient(AbstractClient):
997
997
  def DescribeMigratingTopicList(self, request):
998
998
  """查询Topic迁移状态列表
999
999
 
1000
- 查询过滤器,支持TopicName、MigrationStatus查询
1000
+ 查询过滤器,支持TopicName、MigrationStatus、Namespace查询
1001
1001
 
1002
1002
  :param request: Request instance for DescribeMigratingTopicList.
1003
1003
  :type request: :class:`tencentcloud.trocket.v20230308.models.DescribeMigratingTopicListRequest`
@@ -1098,6 +1098,7 @@ class TrocketClient(AbstractClient):
1098
1098
  GroupName,消费组名称模糊搜索
1099
1099
  Imported,是否已导入
1100
1100
  ImportStatus,导入状态
1101
+ Namespace,命名空间
1101
1102
 
1102
1103
  :param request: Request instance for DescribeSourceClusterGroupList.
1103
1104
  :type request: :class:`tencentcloud.trocket.v20230308.models.DescribeSourceClusterGroupListRequest`
@@ -258,6 +258,8 @@ class ApplicationInfo(AbstractModel):
258
258
  :type DomainList: list of str
259
259
  :param _AppId: 账号AppId
260
260
  :type AppId: str
261
+ :param _NameLimit: 扩展包名数量上限
262
+ :type NameLimit: int
261
263
  """
262
264
  self._AppName = None
263
265
  self._BundleId = None
@@ -274,6 +276,7 @@ class ApplicationInfo(AbstractModel):
274
276
  self._WinProcessName = None
275
277
  self._DomainList = None
276
278
  self._AppId = None
279
+ self._NameLimit = None
277
280
 
278
281
  @property
279
282
  def AppName(self):
@@ -447,6 +450,17 @@ class ApplicationInfo(AbstractModel):
447
450
  def AppId(self, AppId):
448
451
  self._AppId = AppId
449
452
 
453
+ @property
454
+ def NameLimit(self):
455
+ """扩展包名数量上限
456
+ :rtype: int
457
+ """
458
+ return self._NameLimit
459
+
460
+ @NameLimit.setter
461
+ def NameLimit(self, NameLimit):
462
+ self._NameLimit = NameLimit
463
+
450
464
 
451
465
  def _deserialize(self, params):
452
466
  self._AppName = params.get("AppName")
@@ -474,6 +488,7 @@ class ApplicationInfo(AbstractModel):
474
488
  self._WinProcessName = params.get("WinProcessName")
475
489
  self._DomainList = params.get("DomainList")
476
490
  self._AppId = params.get("AppId")
491
+ self._NameLimit = params.get("NameLimit")
477
492
  memeber_set = set(params.keys())
478
493
  for name, value in vars(self).items():
479
494
  property_name = name[1:]