tencentcloud-sdk-python 3.0.1316__py2.py3-none-any.whl → 3.0.1318__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 (43) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/antiddos/v20200309/models.py +2 -2
  3. tencentcloud/ccc/v20200210/models.py +4 -4
  4. tencentcloud/cdn/v20180606/errorcodes.py +3 -0
  5. tencentcloud/cdn/v20180606/models.py +10 -10
  6. tencentcloud/cls/v20201016/models.py +2 -2
  7. tencentcloud/common/abstract_client.py +37 -18
  8. tencentcloud/common/profile/client_profile.py +4 -3
  9. tencentcloud/common/retry.py +62 -0
  10. tencentcloud/cvm/v20170312/models.py +15 -0
  11. tencentcloud/emr/v20190103/models.py +16 -1
  12. tencentcloud/ess/v20201111/errorcodes.py +3 -0
  13. tencentcloud/ess/v20201111/ess_client.py +73 -0
  14. tencentcloud/ess/v20201111/models.py +695 -97
  15. tencentcloud/gme/v20180711/models.py +64 -26
  16. tencentcloud/hunyuan/v20230901/models.py +8 -16
  17. tencentcloud/lcic/v20220817/lcic_client.py +21 -1
  18. tencentcloud/lcic/v20220817/models.py +0 -24
  19. tencentcloud/lighthouse/v20200324/models.py +0 -10
  20. tencentcloud/lkeap/v20240522/lkeap_client.py +2 -1
  21. tencentcloud/lkeap/v20240522/models.py +826 -39
  22. tencentcloud/mongodb/v20190725/models.py +155 -0
  23. tencentcloud/mongodb/v20190725/mongodb_client.py +23 -0
  24. tencentcloud/mps/v20190612/models.py +60 -0
  25. tencentcloud/ocr/v20181119/models.py +42 -4
  26. tencentcloud/redis/v20180412/models.py +0 -40
  27. tencentcloud/rum/v20210622/models.py +16 -0
  28. tencentcloud/smop/v20201203/models.py +0 -34
  29. tencentcloud/ssl/v20191205/models.py +33 -21
  30. tencentcloud/teo/v20220901/models.py +2 -4
  31. tencentcloud/tke/v20180525/models.py +30 -0
  32. tencentcloud/vms/v20200902/models.py +0 -2
  33. tencentcloud/vpc/v20170312/errorcodes.py +42 -0
  34. tencentcloud/vpc/v20170312/models.py +1853 -53
  35. tencentcloud/vpc/v20170312/vpc_client.py +279 -1
  36. tencentcloud/waf/v20180125/models.py +30 -0
  37. tencentcloud/wedata/v20210820/models.py +331 -0
  38. tencentcloud/wedata/v20210820/wedata_client.py +23 -0
  39. {tencentcloud_sdk_python-3.0.1316.dist-info → tencentcloud_sdk_python-3.0.1318.dist-info}/METADATA +1 -1
  40. {tencentcloud_sdk_python-3.0.1316.dist-info → tencentcloud_sdk_python-3.0.1318.dist-info}/RECORD +43 -42
  41. {tencentcloud_sdk_python-3.0.1316.dist-info → tencentcloud_sdk_python-3.0.1318.dist-info}/LICENSE +0 -0
  42. {tencentcloud_sdk_python-3.0.1316.dist-info → tencentcloud_sdk_python-3.0.1318.dist-info}/WHEEL +0 -0
  43. {tencentcloud_sdk_python-3.0.1316.dist-info → tencentcloud_sdk_python-3.0.1318.dist-info}/top_level.txt +0 -0
@@ -2742,6 +2742,77 @@ class DBInstancePrice(AbstractModel):
2742
2742
 
2743
2743
 
2744
2744
 
2745
+ class DbURL(AbstractModel):
2746
+ """数据库实例 URI 形式的连接串访问地址示例。
2747
+
2748
+ """
2749
+
2750
+ def __init__(self):
2751
+ r"""
2752
+ :param _URLType: 指 URI 类别,包括:,
2753
+ - CLUSTER_ALL:指通过该 URI 连接库实例的主节点,可读写。
2754
+ - CLUSTER_READ_READONLY:指通过该 URI 连接实例只读节点。
2755
+ - CLUSTER_READ_SECONDARY:指通过该 URI 连接实例从节点。
2756
+ - CLUSTER_READ_SECONDARY_AND_READONLY:指通过该 URI 连接实例只读从节点。
2757
+ - CLUSTER_PRIMARY_AND_SECONDARY:指通过该 URI 连接实例 主节点与从节点。
2758
+ - MONGOS_ALL:指通过该 URI 连接每个 Mongos 节点,可读写。
2759
+ - MONGOS_READ_READONLY:指通过该 URI 连接 Mongos 的只读节点。
2760
+ - MONGOS_READ_SECONDARY:指通过该 URI 连接 Mongos 的从节点。
2761
+ - MONGOS_READ_PRIMARY_AND_SECONDARY:指通过该URI 连接 Mongos 的主节点与从节点。
2762
+ - MONGOS_READ_SECONDARY_AND_READONLY:指通过该URI 连接 Mongos 的从节点与只读节点。
2763
+ :type URLType: str
2764
+ :param _Address: 实例 URI 形式的连接串访问地址示例。
2765
+ :type Address: str
2766
+ """
2767
+ self._URLType = None
2768
+ self._Address = None
2769
+
2770
+ @property
2771
+ def URLType(self):
2772
+ """指 URI 类别,包括:,
2773
+ - CLUSTER_ALL:指通过该 URI 连接库实例的主节点,可读写。
2774
+ - CLUSTER_READ_READONLY:指通过该 URI 连接实例只读节点。
2775
+ - CLUSTER_READ_SECONDARY:指通过该 URI 连接实例从节点。
2776
+ - CLUSTER_READ_SECONDARY_AND_READONLY:指通过该 URI 连接实例只读从节点。
2777
+ - CLUSTER_PRIMARY_AND_SECONDARY:指通过该 URI 连接实例 主节点与从节点。
2778
+ - MONGOS_ALL:指通过该 URI 连接每个 Mongos 节点,可读写。
2779
+ - MONGOS_READ_READONLY:指通过该 URI 连接 Mongos 的只读节点。
2780
+ - MONGOS_READ_SECONDARY:指通过该 URI 连接 Mongos 的从节点。
2781
+ - MONGOS_READ_PRIMARY_AND_SECONDARY:指通过该URI 连接 Mongos 的主节点与从节点。
2782
+ - MONGOS_READ_SECONDARY_AND_READONLY:指通过该URI 连接 Mongos 的从节点与只读节点。
2783
+ :rtype: str
2784
+ """
2785
+ return self._URLType
2786
+
2787
+ @URLType.setter
2788
+ def URLType(self, URLType):
2789
+ self._URLType = URLType
2790
+
2791
+ @property
2792
+ def Address(self):
2793
+ """实例 URI 形式的连接串访问地址示例。
2794
+ :rtype: str
2795
+ """
2796
+ return self._Address
2797
+
2798
+ @Address.setter
2799
+ def Address(self, Address):
2800
+ self._Address = Address
2801
+
2802
+
2803
+ def _deserialize(self, params):
2804
+ self._URLType = params.get("URLType")
2805
+ self._Address = params.get("Address")
2806
+ memeber_set = set(params.keys())
2807
+ for name, value in vars(self).items():
2808
+ property_name = name[1:]
2809
+ if property_name in memeber_set:
2810
+ memeber_set.remove(property_name)
2811
+ if len(memeber_set) > 0:
2812
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
2813
+
2814
+
2815
+
2745
2816
  class DeleteAccountUserRequest(AbstractModel):
2746
2817
  """DeleteAccountUser请求参数结构体
2747
2818
 
@@ -4570,6 +4641,90 @@ class DescribeDBInstanceParamTplResponse(AbstractModel):
4570
4641
  self._RequestId = params.get("RequestId")
4571
4642
 
4572
4643
 
4644
+ class DescribeDBInstanceURLRequest(AbstractModel):
4645
+ """DescribeDBInstanceURL请求参数结构体
4646
+
4647
+ """
4648
+
4649
+ def __init__(self):
4650
+ r"""
4651
+ :param _InstanceId: 实例 ID。请登录 [MongoDB 控制台](https://console.cloud.tencent.com/mongodb#/)在实例列表复制实例 ID。
4652
+ :type InstanceId: str
4653
+ """
4654
+ self._InstanceId = None
4655
+
4656
+ @property
4657
+ def InstanceId(self):
4658
+ """实例 ID。请登录 [MongoDB 控制台](https://console.cloud.tencent.com/mongodb#/)在实例列表复制实例 ID。
4659
+ :rtype: str
4660
+ """
4661
+ return self._InstanceId
4662
+
4663
+ @InstanceId.setter
4664
+ def InstanceId(self, InstanceId):
4665
+ self._InstanceId = InstanceId
4666
+
4667
+
4668
+ def _deserialize(self, params):
4669
+ self._InstanceId = params.get("InstanceId")
4670
+ memeber_set = set(params.keys())
4671
+ for name, value in vars(self).items():
4672
+ property_name = name[1:]
4673
+ if property_name in memeber_set:
4674
+ memeber_set.remove(property_name)
4675
+ if len(memeber_set) > 0:
4676
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
4677
+
4678
+
4679
+
4680
+ class DescribeDBInstanceURLResponse(AbstractModel):
4681
+ """DescribeDBInstanceURL返回参数结构体
4682
+
4683
+ """
4684
+
4685
+ def __init__(self):
4686
+ r"""
4687
+ :param _Urls: 实例 URI 形式的连接串访问地址示例。包含:URI 类型及连接串地址。
4688
+ :type Urls: list of DbURL
4689
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4690
+ :type RequestId: str
4691
+ """
4692
+ self._Urls = None
4693
+ self._RequestId = None
4694
+
4695
+ @property
4696
+ def Urls(self):
4697
+ """实例 URI 形式的连接串访问地址示例。包含:URI 类型及连接串地址。
4698
+ :rtype: list of DbURL
4699
+ """
4700
+ return self._Urls
4701
+
4702
+ @Urls.setter
4703
+ def Urls(self, Urls):
4704
+ self._Urls = Urls
4705
+
4706
+ @property
4707
+ def RequestId(self):
4708
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4709
+ :rtype: str
4710
+ """
4711
+ return self._RequestId
4712
+
4713
+ @RequestId.setter
4714
+ def RequestId(self, RequestId):
4715
+ self._RequestId = RequestId
4716
+
4717
+
4718
+ def _deserialize(self, params):
4719
+ if params.get("Urls") is not None:
4720
+ self._Urls = []
4721
+ for item in params.get("Urls"):
4722
+ obj = DbURL()
4723
+ obj._deserialize(item)
4724
+ self._Urls.append(obj)
4725
+ self._RequestId = params.get("RequestId")
4726
+
4727
+
4573
4728
  class DescribeDBInstancesRequest(AbstractModel):
4574
4729
  """DescribeDBInstances请求参数结构体
4575
4730
 
@@ -466,6 +466,29 @@ class MongodbClient(AbstractClient):
466
466
  raise TencentCloudSDKException(type(e).__name__, str(e))
467
467
 
468
468
 
469
+ def DescribeDBInstanceURL(self, request):
470
+ """本接口(DescribeDBInstanceURL)用于获取指定实例的 URI 形式的连接串访问地址示例。
471
+
472
+ :param request: Request instance for DescribeDBInstanceURL.
473
+ :type request: :class:`tencentcloud.mongodb.v20190725.models.DescribeDBInstanceURLRequest`
474
+ :rtype: :class:`tencentcloud.mongodb.v20190725.models.DescribeDBInstanceURLResponse`
475
+
476
+ """
477
+ try:
478
+ params = request._serialize()
479
+ headers = request.headers
480
+ body = self.call("DescribeDBInstanceURL", params, headers=headers)
481
+ response = json.loads(body)
482
+ model = models.DescribeDBInstanceURLResponse()
483
+ model._deserialize(response["Response"])
484
+ return model
485
+ except Exception as e:
486
+ if isinstance(e, TencentCloudSDKException):
487
+ raise
488
+ else:
489
+ raise TencentCloudSDKException(type(e).__name__, str(e))
490
+
491
+
469
492
  def DescribeDBInstances(self, request):
470
493
  """本接口(DescribeDBInstances)用于查询云数据库实例列表,支持通过项目ID、实例ID、实例状态等过滤条件来筛选主实例、灾备实例和只读实例信息列表。
471
494
 
@@ -4392,6 +4392,10 @@ class AiParagraphInfo(AbstractModel):
4392
4392
  :param _Summary: 分段摘要
4393
4393
  注意:此字段可能返回 null,表示取不到有效值。
4394
4394
  :type Summary: str
4395
+ :param _Title: 分段标题
4396
+ :type Title: str
4397
+ :param _Keywords: 分段关键词
4398
+ :type Keywords: list of str
4395
4399
  :param _StartTimeOffset: 分段起始时间点,秒
4396
4400
  注意:此字段可能返回 null,表示取不到有效值。
4397
4401
  :type StartTimeOffset: float
@@ -4400,6 +4404,8 @@ class AiParagraphInfo(AbstractModel):
4400
4404
  :type EndTimeOffset: float
4401
4405
  """
4402
4406
  self._Summary = None
4407
+ self._Title = None
4408
+ self._Keywords = None
4403
4409
  self._StartTimeOffset = None
4404
4410
  self._EndTimeOffset = None
4405
4411
 
@@ -4415,6 +4421,28 @@ class AiParagraphInfo(AbstractModel):
4415
4421
  def Summary(self, Summary):
4416
4422
  self._Summary = Summary
4417
4423
 
4424
+ @property
4425
+ def Title(self):
4426
+ """分段标题
4427
+ :rtype: str
4428
+ """
4429
+ return self._Title
4430
+
4431
+ @Title.setter
4432
+ def Title(self, Title):
4433
+ self._Title = Title
4434
+
4435
+ @property
4436
+ def Keywords(self):
4437
+ """分段关键词
4438
+ :rtype: list of str
4439
+ """
4440
+ return self._Keywords
4441
+
4442
+ @Keywords.setter
4443
+ def Keywords(self, Keywords):
4444
+ self._Keywords = Keywords
4445
+
4418
4446
  @property
4419
4447
  def StartTimeOffset(self):
4420
4448
  """分段起始时间点,秒
@@ -4442,6 +4470,8 @@ class AiParagraphInfo(AbstractModel):
4442
4470
 
4443
4471
  def _deserialize(self, params):
4444
4472
  self._Summary = params.get("Summary")
4473
+ self._Title = params.get("Title")
4474
+ self._Keywords = params.get("Keywords")
4445
4475
  self._StartTimeOffset = params.get("StartTimeOffset")
4446
4476
  self._EndTimeOffset = params.get("EndTimeOffset")
4447
4477
  memeber_set = set(params.keys())
@@ -37264,12 +37294,18 @@ class MediaAiAnalysisDescriptionItem(AbstractModel):
37264
37294
  :type Description: str
37265
37295
  :param _Confidence: 智能描述的可信度,取值范围是 0 到 100。
37266
37296
  :type Confidence: float
37297
+ :param _Title: 智能描述标题
37298
+ :type Title: str
37299
+ :param _Keywords: 智能描述关键词
37300
+ :type Keywords: list of str
37267
37301
  :param _Paragraphs: 分段结果。
37268
37302
  注意:此字段可能返回 null,表示取不到有效值。
37269
37303
  :type Paragraphs: list of AiParagraphInfo
37270
37304
  """
37271
37305
  self._Description = None
37272
37306
  self._Confidence = None
37307
+ self._Title = None
37308
+ self._Keywords = None
37273
37309
  self._Paragraphs = None
37274
37310
 
37275
37311
  @property
@@ -37294,6 +37330,28 @@ class MediaAiAnalysisDescriptionItem(AbstractModel):
37294
37330
  def Confidence(self, Confidence):
37295
37331
  self._Confidence = Confidence
37296
37332
 
37333
+ @property
37334
+ def Title(self):
37335
+ """智能描述标题
37336
+ :rtype: str
37337
+ """
37338
+ return self._Title
37339
+
37340
+ @Title.setter
37341
+ def Title(self, Title):
37342
+ self._Title = Title
37343
+
37344
+ @property
37345
+ def Keywords(self):
37346
+ """智能描述关键词
37347
+ :rtype: list of str
37348
+ """
37349
+ return self._Keywords
37350
+
37351
+ @Keywords.setter
37352
+ def Keywords(self, Keywords):
37353
+ self._Keywords = Keywords
37354
+
37297
37355
  @property
37298
37356
  def Paragraphs(self):
37299
37357
  """分段结果。
@@ -37310,6 +37368,8 @@ class MediaAiAnalysisDescriptionItem(AbstractModel):
37310
37368
  def _deserialize(self, params):
37311
37369
  self._Description = params.get("Description")
37312
37370
  self._Confidence = params.get("Confidence")
37371
+ self._Title = params.get("Title")
37372
+ self._Keywords = params.get("Keywords")
37313
37373
  if params.get("Paragraphs") is not None:
37314
37374
  self._Paragraphs = []
37315
37375
  for item in params.get("Paragraphs"):
@@ -3956,19 +3956,29 @@ class ContentInfo(AbstractModel):
3956
3956
  :type Content: str
3957
3957
  :param _Confidence: 结果置信度
3958
3958
  :type Confidence: int
3959
- :param _IsInComplete: 字段是否不完整
3959
+ :param _IsInComplete: 字段是否不完整(value内容)
3960
3960
  0 字段正常
3961
3961
  1 字段不完整
3962
3962
  :type IsInComplete: int
3963
- :param _IsReflect: 字段反光
3963
+ :param _IsReflect: 字段反光(value内容)
3964
3964
  0 字段正常
3965
3965
  1 字段有反光
3966
3966
  :type IsReflect: int
3967
+ :param _IsKeyInComplete: 字段是否不完整(key内容)
3968
+ 0 字段正常
3969
+ 1 字段不完整
3970
+ :type IsKeyInComplete: int
3971
+ :param _IsKeyReflect: 字段反光(key内容)
3972
+ 0 字段正常
3973
+ 1 字段有反光
3974
+ :type IsKeyReflect: int
3967
3975
  """
3968
3976
  self._Content = None
3969
3977
  self._Confidence = None
3970
3978
  self._IsInComplete = None
3971
3979
  self._IsReflect = None
3980
+ self._IsKeyInComplete = None
3981
+ self._IsKeyReflect = None
3972
3982
 
3973
3983
  @property
3974
3984
  def Content(self):
@@ -3994,7 +4004,7 @@ class ContentInfo(AbstractModel):
3994
4004
 
3995
4005
  @property
3996
4006
  def IsInComplete(self):
3997
- """字段是否不完整
4007
+ """字段是否不完整(value内容)
3998
4008
  0 字段正常
3999
4009
  1 字段不完整
4000
4010
  :rtype: int
@@ -4007,7 +4017,7 @@ class ContentInfo(AbstractModel):
4007
4017
 
4008
4018
  @property
4009
4019
  def IsReflect(self):
4010
- """字段反光
4020
+ """字段反光(value内容)
4011
4021
  0 字段正常
4012
4022
  1 字段有反光
4013
4023
  :rtype: int
@@ -4018,12 +4028,40 @@ class ContentInfo(AbstractModel):
4018
4028
  def IsReflect(self, IsReflect):
4019
4029
  self._IsReflect = IsReflect
4020
4030
 
4031
+ @property
4032
+ def IsKeyInComplete(self):
4033
+ """字段是否不完整(key内容)
4034
+ 0 字段正常
4035
+ 1 字段不完整
4036
+ :rtype: int
4037
+ """
4038
+ return self._IsKeyInComplete
4039
+
4040
+ @IsKeyInComplete.setter
4041
+ def IsKeyInComplete(self, IsKeyInComplete):
4042
+ self._IsKeyInComplete = IsKeyInComplete
4043
+
4044
+ @property
4045
+ def IsKeyReflect(self):
4046
+ """字段反光(key内容)
4047
+ 0 字段正常
4048
+ 1 字段有反光
4049
+ :rtype: int
4050
+ """
4051
+ return self._IsKeyReflect
4052
+
4053
+ @IsKeyReflect.setter
4054
+ def IsKeyReflect(self, IsKeyReflect):
4055
+ self._IsKeyReflect = IsKeyReflect
4056
+
4021
4057
 
4022
4058
  def _deserialize(self, params):
4023
4059
  self._Content = params.get("Content")
4024
4060
  self._Confidence = params.get("Confidence")
4025
4061
  self._IsInComplete = params.get("IsInComplete")
4026
4062
  self._IsReflect = params.get("IsReflect")
4063
+ self._IsKeyInComplete = params.get("IsKeyInComplete")
4064
+ self._IsKeyReflect = params.get("IsKeyReflect")
4027
4065
  memeber_set = set(params.keys())
4028
4066
  for name, value in vars(self).items():
4029
4067
  property_name = name[1:]
@@ -4255,7 +4255,6 @@ class DescribeBackupUrlResponse(AbstractModel):
4255
4255
  注意:此字段可能返回 null,表示取不到有效值。
4256
4256
  :type Filenames: list of str
4257
4257
  :param _BackupInfos: 备份文件信息列表。
4258
- 注意:此字段可能返回 null,表示取不到有效值。
4259
4258
  :type BackupInfos: list of BackupDownloadInfo
4260
4259
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4261
4260
  :type RequestId: str
@@ -4303,7 +4302,6 @@ class DescribeBackupUrlResponse(AbstractModel):
4303
4302
  @property
4304
4303
  def BackupInfos(self):
4305
4304
  """备份文件信息列表。
4306
- 注意:此字段可能返回 null,表示取不到有效值。
4307
4305
  :rtype: list of BackupDownloadInfo
4308
4306
  """
4309
4307
  return self._BackupInfos
@@ -4999,10 +4997,8 @@ class DescribeInstanceAccountResponse(AbstractModel):
4999
4997
  def __init__(self):
5000
4998
  r"""
5001
4999
  :param _Accounts: 账号详细信息。
5002
- 注意:此字段可能返回 null,表示取不到有效值。
5003
5000
  :type Accounts: list of Account
5004
5001
  :param _TotalCount: 账号个数。
5005
- 注意:此字段可能返回 null,表示取不到有效值。
5006
5002
  :type TotalCount: int
5007
5003
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5008
5004
  :type RequestId: str
@@ -5014,7 +5010,6 @@ class DescribeInstanceAccountResponse(AbstractModel):
5014
5010
  @property
5015
5011
  def Accounts(self):
5016
5012
  """账号详细信息。
5017
- 注意:此字段可能返回 null,表示取不到有效值。
5018
5013
  :rtype: list of Account
5019
5014
  """
5020
5015
  return self._Accounts
@@ -5026,7 +5021,6 @@ class DescribeInstanceAccountResponse(AbstractModel):
5026
5021
  @property
5027
5022
  def TotalCount(self):
5028
5023
  """账号个数。
5029
- 注意:此字段可能返回 null,表示取不到有效值。
5030
5024
  :rtype: int
5031
5025
  """
5032
5026
  return self._TotalCount
@@ -5303,28 +5297,20 @@ class DescribeInstanceDTSInfoResponse(AbstractModel):
5303
5297
  def __init__(self):
5304
5298
  r"""
5305
5299
  :param _JobId: DTS任务ID
5306
- 注意:此字段可能返回 null,表示取不到有效值。
5307
5300
  :type JobId: str
5308
5301
  :param _JobName: DTS任务名称
5309
- 注意:此字段可能返回 null,表示取不到有效值。
5310
5302
  :type JobName: str
5311
5303
  :param _Status: 任务状态,取值为:1-创建中(Creating),3-校验中(Checking)4-校验通过(CheckPass),5-校验不通过(CheckNotPass),7-任务运行(Running),8-准备完成(ReadyComplete),9-任务成功(Success),10-任务失败(Failed),11-撤销中(Stopping),12-完成中(Completing)
5312
- 注意:此字段可能返回 null,表示取不到有效值。
5313
5304
  :type Status: int
5314
5305
  :param _StatusDesc: 状态描述
5315
- 注意:此字段可能返回 null,表示取不到有效值。
5316
5306
  :type StatusDesc: str
5317
5307
  :param _Offset: 同步时延,单位:字节
5318
- 注意:此字段可能返回 null,表示取不到有效值。
5319
5308
  :type Offset: int
5320
5309
  :param _CutDownTime: 断开时间
5321
- 注意:此字段可能返回 null,表示取不到有效值。
5322
5310
  :type CutDownTime: str
5323
5311
  :param _SrcInfo: 源实例信息
5324
- 注意:此字段可能返回 null,表示取不到有效值。
5325
5312
  :type SrcInfo: :class:`tencentcloud.redis.v20180412.models.DescribeInstanceDTSInstanceInfo`
5326
5313
  :param _DstInfo: 目标实例信息
5327
- 注意:此字段可能返回 null,表示取不到有效值。
5328
5314
  :type DstInfo: :class:`tencentcloud.redis.v20180412.models.DescribeInstanceDTSInstanceInfo`
5329
5315
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5330
5316
  :type RequestId: str
@@ -5342,7 +5328,6 @@ class DescribeInstanceDTSInfoResponse(AbstractModel):
5342
5328
  @property
5343
5329
  def JobId(self):
5344
5330
  """DTS任务ID
5345
- 注意:此字段可能返回 null,表示取不到有效值。
5346
5331
  :rtype: str
5347
5332
  """
5348
5333
  return self._JobId
@@ -5354,7 +5339,6 @@ class DescribeInstanceDTSInfoResponse(AbstractModel):
5354
5339
  @property
5355
5340
  def JobName(self):
5356
5341
  """DTS任务名称
5357
- 注意:此字段可能返回 null,表示取不到有效值。
5358
5342
  :rtype: str
5359
5343
  """
5360
5344
  return self._JobName
@@ -5366,7 +5350,6 @@ class DescribeInstanceDTSInfoResponse(AbstractModel):
5366
5350
  @property
5367
5351
  def Status(self):
5368
5352
  """任务状态,取值为:1-创建中(Creating),3-校验中(Checking)4-校验通过(CheckPass),5-校验不通过(CheckNotPass),7-任务运行(Running),8-准备完成(ReadyComplete),9-任务成功(Success),10-任务失败(Failed),11-撤销中(Stopping),12-完成中(Completing)
5369
- 注意:此字段可能返回 null,表示取不到有效值。
5370
5353
  :rtype: int
5371
5354
  """
5372
5355
  return self._Status
@@ -5378,7 +5361,6 @@ class DescribeInstanceDTSInfoResponse(AbstractModel):
5378
5361
  @property
5379
5362
  def StatusDesc(self):
5380
5363
  """状态描述
5381
- 注意:此字段可能返回 null,表示取不到有效值。
5382
5364
  :rtype: str
5383
5365
  """
5384
5366
  return self._StatusDesc
@@ -5390,7 +5372,6 @@ class DescribeInstanceDTSInfoResponse(AbstractModel):
5390
5372
  @property
5391
5373
  def Offset(self):
5392
5374
  """同步时延,单位:字节
5393
- 注意:此字段可能返回 null,表示取不到有效值。
5394
5375
  :rtype: int
5395
5376
  """
5396
5377
  return self._Offset
@@ -5402,7 +5383,6 @@ class DescribeInstanceDTSInfoResponse(AbstractModel):
5402
5383
  @property
5403
5384
  def CutDownTime(self):
5404
5385
  """断开时间
5405
- 注意:此字段可能返回 null,表示取不到有效值。
5406
5386
  :rtype: str
5407
5387
  """
5408
5388
  return self._CutDownTime
@@ -5414,7 +5394,6 @@ class DescribeInstanceDTSInfoResponse(AbstractModel):
5414
5394
  @property
5415
5395
  def SrcInfo(self):
5416
5396
  """源实例信息
5417
- 注意:此字段可能返回 null,表示取不到有效值。
5418
5397
  :rtype: :class:`tencentcloud.redis.v20180412.models.DescribeInstanceDTSInstanceInfo`
5419
5398
  """
5420
5399
  return self._SrcInfo
@@ -5426,7 +5405,6 @@ class DescribeInstanceDTSInfoResponse(AbstractModel):
5426
5405
  @property
5427
5406
  def DstInfo(self):
5428
5407
  """目标实例信息
5429
- 注意:此字段可能返回 null,表示取不到有效值。
5430
5408
  :rtype: :class:`tencentcloud.redis.v20180412.models.DescribeInstanceDTSInstanceInfo`
5431
5409
  """
5432
5410
  return self._DstInfo
@@ -6920,17 +6898,14 @@ class DescribeInstanceNodeInfoResponse(AbstractModel):
6920
6898
  :param _ProxyCount: Proxy节点数量。
6921
6899
  :type ProxyCount: int
6922
6900
  :param _Proxy: Proxy节点信息。
6923
- 注意:此字段可能返回 null,表示取不到有效值。
6924
6901
  :type Proxy: list of ProxyNodes
6925
6902
  :param _RedisCount: Redis节点数量。
6926
6903
  :type RedisCount: int
6927
6904
  :param _Redis: Redis节点信息。
6928
- 注意:此字段可能返回 null,表示取不到有效值。
6929
6905
  :type Redis: list of RedisNodes
6930
6906
  :param _TendisCount: 该参数不再使用,请忽略。
6931
6907
  :type TendisCount: int
6932
6908
  :param _Tendis: 该参数不再使用,请忽略。
6933
- 注意:此字段可能返回 null,表示取不到有效值。
6934
6909
  :type Tendis: list of TendisNodes
6935
6910
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6936
6911
  :type RequestId: str
@@ -6957,7 +6932,6 @@ class DescribeInstanceNodeInfoResponse(AbstractModel):
6957
6932
  @property
6958
6933
  def Proxy(self):
6959
6934
  """Proxy节点信息。
6960
- 注意:此字段可能返回 null,表示取不到有效值。
6961
6935
  :rtype: list of ProxyNodes
6962
6936
  """
6963
6937
  return self._Proxy
@@ -6980,7 +6954,6 @@ class DescribeInstanceNodeInfoResponse(AbstractModel):
6980
6954
  @property
6981
6955
  def Redis(self):
6982
6956
  """Redis节点信息。
6983
- 注意:此字段可能返回 null,表示取不到有效值。
6984
6957
  :rtype: list of RedisNodes
6985
6958
  """
6986
6959
  return self._Redis
@@ -7003,7 +6976,6 @@ class DescribeInstanceNodeInfoResponse(AbstractModel):
7003
6976
  @property
7004
6977
  def Tendis(self):
7005
6978
  """该参数不再使用,请忽略。
7006
- 注意:此字段可能返回 null,表示取不到有效值。
7007
6979
  :rtype: list of TendisNodes
7008
6980
  """
7009
6981
  return self._Tendis
@@ -11315,7 +11287,6 @@ class DisableReplicaReadonlyResponse(AbstractModel):
11315
11287
  def __init__(self):
11316
11288
  r"""
11317
11289
  :param _TaskId: 任务ID
11318
- 注意:此字段可能返回 null,表示取不到有效值。
11319
11290
  :type TaskId: int
11320
11291
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
11321
11292
  :type RequestId: str
@@ -11326,7 +11297,6 @@ class DisableReplicaReadonlyResponse(AbstractModel):
11326
11297
  @property
11327
11298
  def TaskId(self):
11328
11299
  """任务ID
11329
- 注意:此字段可能返回 null,表示取不到有效值。
11330
11300
  :rtype: int
11331
11301
  """
11332
11302
  return self._TaskId
@@ -11511,10 +11481,8 @@ class EnableReplicaReadonlyResponse(AbstractModel):
11511
11481
  def __init__(self):
11512
11482
  r"""
11513
11483
  :param _Status: 错误:ERROR,正确OK(已废弃)
11514
- 注意:此字段可能返回 null,表示取不到有效值。
11515
11484
  :type Status: str
11516
11485
  :param _TaskId: 任务ID
11517
- 注意:此字段可能返回 null,表示取不到有效值。
11518
11486
  :type TaskId: int
11519
11487
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
11520
11488
  :type RequestId: str
@@ -11526,7 +11494,6 @@ class EnableReplicaReadonlyResponse(AbstractModel):
11526
11494
  @property
11527
11495
  def Status(self):
11528
11496
  """错误:ERROR,正确OK(已废弃)
11529
- 注意:此字段可能返回 null,表示取不到有效值。
11530
11497
  :rtype: str
11531
11498
  """
11532
11499
  return self._Status
@@ -11538,7 +11505,6 @@ class EnableReplicaReadonlyResponse(AbstractModel):
11538
11505
  @property
11539
11506
  def TaskId(self):
11540
11507
  """任务ID
11541
- 注意:此字段可能返回 null,表示取不到有效值。
11542
11508
  :rtype: int
11543
11509
  """
11544
11510
  return self._TaskId
@@ -12194,7 +12160,6 @@ class InquiryPriceCreateInstanceResponse(AbstractModel):
12194
12160
  def __init__(self):
12195
12161
  r"""
12196
12162
  :param _Price: 价格,单位:分
12197
- 注意:此字段可能返回 null,表示取不到有效值。
12198
12163
  :type Price: float
12199
12164
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12200
12165
  :type RequestId: str
@@ -12205,7 +12170,6 @@ class InquiryPriceCreateInstanceResponse(AbstractModel):
12205
12170
  @property
12206
12171
  def Price(self):
12207
12172
  """价格,单位:分
12208
- 注意:此字段可能返回 null,表示取不到有效值。
12209
12173
  :rtype: float
12210
12174
  """
12211
12175
  return self._Price
@@ -12290,7 +12254,6 @@ class InquiryPriceRenewInstanceResponse(AbstractModel):
12290
12254
  def __init__(self):
12291
12255
  r"""
12292
12256
  :param _Price: 价格,单位:分。
12293
- 注意:此字段可能返回 null,表示取不到有效值。
12294
12257
  :type Price: float
12295
12258
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12296
12259
  :type RequestId: str
@@ -12301,7 +12264,6 @@ class InquiryPriceRenewInstanceResponse(AbstractModel):
12301
12264
  @property
12302
12265
  def Price(self):
12303
12266
  """价格,单位:分。
12304
- 注意:此字段可能返回 null,表示取不到有效值。
12305
12267
  :rtype: float
12306
12268
  """
12307
12269
  return self._Price
@@ -12416,7 +12378,6 @@ class InquiryPriceUpgradeInstanceResponse(AbstractModel):
12416
12378
  def __init__(self):
12417
12379
  r"""
12418
12380
  :param _Price: 价格,单位:分
12419
- 注意:此字段可能返回 null,表示取不到有效值。
12420
12381
  :type Price: float
12421
12382
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12422
12383
  :type RequestId: str
@@ -12427,7 +12388,6 @@ class InquiryPriceUpgradeInstanceResponse(AbstractModel):
12427
12388
  @property
12428
12389
  def Price(self):
12429
12390
  """价格,单位:分
12430
- 注意:此字段可能返回 null,表示取不到有效值。
12431
12391
  :rtype: float
12432
12392
  """
12433
12393
  return self._Price