tencentcloud-sdk-python 3.0.1377__py2.py3-none-any.whl → 3.0.1379__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 (51) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/apm/v20210622/models.py +34 -4
  3. tencentcloud/autoscaling/v20180419/models.py +45 -16
  4. tencentcloud/batch/v20170312/batch_client.py +3 -3
  5. tencentcloud/batch/v20170312/models.py +230 -168
  6. tencentcloud/billing/v20180709/billing_client.py +322 -0
  7. tencentcloud/billing/v20180709/errorcodes.py +9 -0
  8. tencentcloud/billing/v20180709/models.py +4894 -2542
  9. tencentcloud/cbs/v20170312/cbs_client.py +1 -1
  10. tencentcloud/cbs/v20170312/models.py +18 -18
  11. tencentcloud/clb/v20180317/clb_client.py +7 -7
  12. tencentcloud/clb/v20180317/models.py +51 -41
  13. tencentcloud/dbbrain/v20210527/dbbrain_client.py +46 -0
  14. tencentcloud/dbbrain/v20210527/models.py +368 -0
  15. tencentcloud/dnspod/v20210323/dnspod_client.py +23 -0
  16. tencentcloud/dnspod/v20210323/models.py +503 -0
  17. tencentcloud/domain/v20180808/errorcodes.py +3 -0
  18. tencentcloud/domain/v20180808/models.py +68 -44
  19. tencentcloud/hunyuan/v20230901/models.py +260 -0
  20. tencentcloud/lighthouse/v20200324/lighthouse_client.py +1 -1
  21. tencentcloud/lighthouse/v20200324/models.py +2 -2
  22. tencentcloud/lke/v20231130/models.py +192 -2
  23. tencentcloud/lkeap/v20240522/lkeap_client.py +1 -1
  24. tencentcloud/mps/v20190612/models.py +211 -2
  25. tencentcloud/postgres/v20170312/models.py +12 -4
  26. tencentcloud/tag/v20180813/models.py +8 -8
  27. tencentcloud/tcb/v20180608/models.py +34 -4
  28. tencentcloud/tdmq/v20200217/errorcodes.py +27 -0
  29. tencentcloud/teo/v20220901/models.py +0 -20
  30. tencentcloud/thpc/v20211109/models.py +2 -2
  31. tencentcloud/thpc/v20220401/models.py +4 -4
  32. tencentcloud/thpc/v20230321/errorcodes.py +9 -0
  33. tencentcloud/thpc/v20230321/models.py +85 -8
  34. tencentcloud/thpc/v20230321/thpc_client.py +23 -0
  35. tencentcloud/tione/v20211111/models.py +274 -0
  36. tencentcloud/tke/v20180525/models.py +10 -0
  37. tencentcloud/tmt/v20180321/errorcodes.py +3 -0
  38. tencentcloud/tmt/v20180321/models.py +296 -1
  39. tencentcloud/tmt/v20180321/tmt_client.py +28 -0
  40. tencentcloud/trtc/v20190722/models.py +15 -0
  41. tencentcloud/vod/v20180717/models.py +2 -2
  42. tencentcloud/vpc/v20170312/models.py +24 -18
  43. tencentcloud/waf/v20180125/models.py +15 -0
  44. tencentcloud/wedata/v20210820/errorcodes.py +9 -0
  45. tencentcloud/wedata/v20210820/models.py +1078 -0
  46. tencentcloud/wedata/v20210820/wedata_client.py +46 -0
  47. {tencentcloud_sdk_python-3.0.1377.dist-info → tencentcloud_sdk_python-3.0.1379.dist-info}/METADATA +1 -1
  48. {tencentcloud_sdk_python-3.0.1377.dist-info → tencentcloud_sdk_python-3.0.1379.dist-info}/RECORD +51 -51
  49. {tencentcloud_sdk_python-3.0.1377.dist-info → tencentcloud_sdk_python-3.0.1379.dist-info}/LICENSE +0 -0
  50. {tencentcloud_sdk_python-3.0.1377.dist-info → tencentcloud_sdk_python-3.0.1379.dist-info}/WHEEL +0 -0
  51. {tencentcloud_sdk_python-3.0.1377.dist-info → tencentcloud_sdk_python-3.0.1379.dist-info}/top_level.txt +0 -0
@@ -34734,6 +34734,69 @@ class HighlightSegmentItem(AbstractModel):
34734
34734
 
34735
34735
 
34736
34736
 
34737
+ class ImageAreaBoxInfo(AbstractModel):
34738
+ """图片框选区域信息
34739
+
34740
+ """
34741
+
34742
+ def __init__(self):
34743
+ r"""
34744
+ :param _Type: 图片框选区域类型,可选值:
34745
+ <li>logo:图标;</li>
34746
+ <li>text:文字。</li>
34747
+ 默认值:logo。
34748
+ 注意:此字段可能返回 null,表示取不到有效值。
34749
+ :type Type: str
34750
+ :param _AreaCoordSet: 图片框选区域坐标 (像素级),[x1, y1, x2, y2],即左上角坐标、右下角坐标。
34751
+ 示例值:[101, 85, 111, 95]
34752
+ 注意:此字段可能返回 null,表示取不到有效值。
34753
+ :type AreaCoordSet: list of int
34754
+ """
34755
+ self._Type = None
34756
+ self._AreaCoordSet = None
34757
+
34758
+ @property
34759
+ def Type(self):
34760
+ """图片框选区域类型,可选值:
34761
+ <li>logo:图标;</li>
34762
+ <li>text:文字。</li>
34763
+ 默认值:logo。
34764
+ 注意:此字段可能返回 null,表示取不到有效值。
34765
+ :rtype: str
34766
+ """
34767
+ return self._Type
34768
+
34769
+ @Type.setter
34770
+ def Type(self, Type):
34771
+ self._Type = Type
34772
+
34773
+ @property
34774
+ def AreaCoordSet(self):
34775
+ """图片框选区域坐标 (像素级),[x1, y1, x2, y2],即左上角坐标、右下角坐标。
34776
+ 示例值:[101, 85, 111, 95]
34777
+ 注意:此字段可能返回 null,表示取不到有效值。
34778
+ :rtype: list of int
34779
+ """
34780
+ return self._AreaCoordSet
34781
+
34782
+ @AreaCoordSet.setter
34783
+ def AreaCoordSet(self, AreaCoordSet):
34784
+ self._AreaCoordSet = AreaCoordSet
34785
+
34786
+
34787
+ def _deserialize(self, params):
34788
+ self._Type = params.get("Type")
34789
+ self._AreaCoordSet = params.get("AreaCoordSet")
34790
+ memeber_set = set(params.keys())
34791
+ for name, value in vars(self).items():
34792
+ property_name = name[1:]
34793
+ if property_name in memeber_set:
34794
+ memeber_set.remove(property_name)
34795
+ if len(memeber_set) > 0:
34796
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
34797
+
34798
+
34799
+
34737
34800
  class ImageEncodeConfig(AbstractModel):
34738
34801
  """图片编码格式参数
34739
34802
 
@@ -34741,7 +34804,7 @@ class ImageEncodeConfig(AbstractModel):
34741
34804
 
34742
34805
  def __init__(self):
34743
34806
  r"""
34744
- :param _Format: 图片格式,取值范围:JPG、BMP、GIF、PNG、WebP,缺省为原图格式。
34807
+ :param _Format: 图片格式,取值范围:JPEGPNG、BMP、WebP,缺省为原图格式。不支持动画。
34745
34808
  注意:此字段可能返回 null,表示取不到有效值。
34746
34809
  :type Format: str
34747
34810
  :param _Quality: 图片的相对质量,取值范围:1 - 100,数值以原图质量为标准,缺省为原图质量。
@@ -34753,7 +34816,7 @@ class ImageEncodeConfig(AbstractModel):
34753
34816
 
34754
34817
  @property
34755
34818
  def Format(self):
34756
- """图片格式,取值范围:JPG、BMP、GIF、PNG、WebP,缺省为原图格式。
34819
+ """图片格式,取值范围:JPEGPNG、BMP、WebP,缺省为原图格式。不支持动画。
34757
34820
  注意:此字段可能返回 null,表示取不到有效值。
34758
34821
  :rtype: str
34759
34822
  """
@@ -34799,6 +34862,9 @@ class ImageEnhanceConfig(AbstractModel):
34799
34862
  :param _SuperResolution: 超分配置。
34800
34863
  注意:此字段可能返回 null,表示取不到有效值。
34801
34864
  :type SuperResolution: :class:`tencentcloud.mps.v20190612.models.SuperResolutionConfig`
34865
+ :param _ImageQualityEnhance: 综合增强配置。
34866
+ 注意:此字段可能返回 null,表示取不到有效值。
34867
+ :type ImageQualityEnhance: :class:`tencentcloud.mps.v20190612.models.ImageQualityEnhanceConfig`
34802
34868
  :param _ColorEnhance: 色彩增强配置。
34803
34869
  注意:此字段可能返回 null,表示取不到有效值。
34804
34870
  :type ColorEnhance: :class:`tencentcloud.mps.v20190612.models.ColorEnhanceConfig`
@@ -34810,6 +34876,7 @@ class ImageEnhanceConfig(AbstractModel):
34810
34876
  :type FaceEnhance: :class:`tencentcloud.mps.v20190612.models.FaceEnhanceConfig`
34811
34877
  """
34812
34878
  self._SuperResolution = None
34879
+ self._ImageQualityEnhance = None
34813
34880
  self._ColorEnhance = None
34814
34881
  self._SharpEnhance = None
34815
34882
  self._FaceEnhance = None
@@ -34826,6 +34893,18 @@ class ImageEnhanceConfig(AbstractModel):
34826
34893
  def SuperResolution(self, SuperResolution):
34827
34894
  self._SuperResolution = SuperResolution
34828
34895
 
34896
+ @property
34897
+ def ImageQualityEnhance(self):
34898
+ """综合增强配置。
34899
+ 注意:此字段可能返回 null,表示取不到有效值。
34900
+ :rtype: :class:`tencentcloud.mps.v20190612.models.ImageQualityEnhanceConfig`
34901
+ """
34902
+ return self._ImageQualityEnhance
34903
+
34904
+ @ImageQualityEnhance.setter
34905
+ def ImageQualityEnhance(self, ImageQualityEnhance):
34906
+ self._ImageQualityEnhance = ImageQualityEnhance
34907
+
34829
34908
  @property
34830
34909
  def ColorEnhance(self):
34831
34910
  """色彩增强配置。
@@ -34867,6 +34946,9 @@ class ImageEnhanceConfig(AbstractModel):
34867
34946
  if params.get("SuperResolution") is not None:
34868
34947
  self._SuperResolution = SuperResolutionConfig()
34869
34948
  self._SuperResolution._deserialize(params.get("SuperResolution"))
34949
+ if params.get("ImageQualityEnhance") is not None:
34950
+ self._ImageQualityEnhance = ImageQualityEnhanceConfig()
34951
+ self._ImageQualityEnhance._deserialize(params.get("ImageQualityEnhance"))
34870
34952
  if params.get("ColorEnhance") is not None:
34871
34953
  self._ColorEnhance = ColorEnhanceConfig()
34872
34954
  self._ColorEnhance._deserialize(params.get("ColorEnhance"))
@@ -34886,6 +34968,114 @@ class ImageEnhanceConfig(AbstractModel):
34886
34968
 
34887
34969
 
34888
34970
 
34971
+ class ImageEraseConfig(AbstractModel):
34972
+ """图片擦除参数
34973
+
34974
+ """
34975
+
34976
+ def __init__(self):
34977
+ r"""
34978
+ :param _ImageEraseLogo: 图标擦除配置。
34979
+ 注意:此字段可能返回 null,表示取不到有效值。
34980
+ :type ImageEraseLogo: :class:`tencentcloud.mps.v20190612.models.ImageEraseLogoConfig`
34981
+ """
34982
+ self._ImageEraseLogo = None
34983
+
34984
+ @property
34985
+ def ImageEraseLogo(self):
34986
+ """图标擦除配置。
34987
+ 注意:此字段可能返回 null,表示取不到有效值。
34988
+ :rtype: :class:`tencentcloud.mps.v20190612.models.ImageEraseLogoConfig`
34989
+ """
34990
+ return self._ImageEraseLogo
34991
+
34992
+ @ImageEraseLogo.setter
34993
+ def ImageEraseLogo(self, ImageEraseLogo):
34994
+ self._ImageEraseLogo = ImageEraseLogo
34995
+
34996
+
34997
+ def _deserialize(self, params):
34998
+ if params.get("ImageEraseLogo") is not None:
34999
+ self._ImageEraseLogo = ImageEraseLogoConfig()
35000
+ self._ImageEraseLogo._deserialize(params.get("ImageEraseLogo"))
35001
+ memeber_set = set(params.keys())
35002
+ for name, value in vars(self).items():
35003
+ property_name = name[1:]
35004
+ if property_name in memeber_set:
35005
+ memeber_set.remove(property_name)
35006
+ if len(memeber_set) > 0:
35007
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
35008
+
35009
+
35010
+
35011
+ class ImageEraseLogoConfig(AbstractModel):
35012
+ """图标擦除配置
35013
+
35014
+ """
35015
+
35016
+ def __init__(self):
35017
+ r"""
35018
+ :param _Switch: 能力配置开关,可选值:
35019
+ <li>ON:开启;</li>
35020
+ <li>OFF:关闭。</li>
35021
+ 默认值:ON。
35022
+ 注意:此字段可能返回 null,表示取不到有效值。
35023
+ :type Switch: str
35024
+ :param _ImageAreaBoxes: 需要擦除的多个框选区域,注意:参数数组长度最大为2。
35025
+ 注意:此字段可能返回 null,表示取不到有效值。
35026
+ 注意:此字段可能返回 null,表示取不到有效值。
35027
+ :type ImageAreaBoxes: list of ImageAreaBoxInfo
35028
+ """
35029
+ self._Switch = None
35030
+ self._ImageAreaBoxes = None
35031
+
35032
+ @property
35033
+ def Switch(self):
35034
+ """能力配置开关,可选值:
35035
+ <li>ON:开启;</li>
35036
+ <li>OFF:关闭。</li>
35037
+ 默认值:ON。
35038
+ 注意:此字段可能返回 null,表示取不到有效值。
35039
+ :rtype: str
35040
+ """
35041
+ return self._Switch
35042
+
35043
+ @Switch.setter
35044
+ def Switch(self, Switch):
35045
+ self._Switch = Switch
35046
+
35047
+ @property
35048
+ def ImageAreaBoxes(self):
35049
+ """需要擦除的多个框选区域,注意:参数数组长度最大为2。
35050
+ 注意:此字段可能返回 null,表示取不到有效值。
35051
+ 注意:此字段可能返回 null,表示取不到有效值。
35052
+ :rtype: list of ImageAreaBoxInfo
35053
+ """
35054
+ return self._ImageAreaBoxes
35055
+
35056
+ @ImageAreaBoxes.setter
35057
+ def ImageAreaBoxes(self, ImageAreaBoxes):
35058
+ self._ImageAreaBoxes = ImageAreaBoxes
35059
+
35060
+
35061
+ def _deserialize(self, params):
35062
+ self._Switch = params.get("Switch")
35063
+ if params.get("ImageAreaBoxes") is not None:
35064
+ self._ImageAreaBoxes = []
35065
+ for item in params.get("ImageAreaBoxes"):
35066
+ obj = ImageAreaBoxInfo()
35067
+ obj._deserialize(item)
35068
+ self._ImageAreaBoxes.append(obj)
35069
+ memeber_set = set(params.keys())
35070
+ for name, value in vars(self).items():
35071
+ property_name = name[1:]
35072
+ if property_name in memeber_set:
35073
+ memeber_set.remove(property_name)
35074
+ if len(memeber_set) > 0:
35075
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
35076
+
35077
+
35078
+
34889
35079
  class ImageQualityEnhanceConfig(AbstractModel):
34890
35080
  """综合增强配置
34891
35081
 
@@ -35366,9 +35556,13 @@ class ImageTaskInput(AbstractModel):
35366
35556
  :param _EnhanceConfig: 图片增强配置。
35367
35557
  注意:此字段可能返回 null,表示取不到有效值。
35368
35558
  :type EnhanceConfig: :class:`tencentcloud.mps.v20190612.models.ImageEnhanceConfig`
35559
+ :param _EraseConfig: 图片擦除配置。
35560
+ 注意:此字段可能返回 null,表示取不到有效值。
35561
+ :type EraseConfig: :class:`tencentcloud.mps.v20190612.models.ImageEraseConfig`
35369
35562
  """
35370
35563
  self._EncodeConfig = None
35371
35564
  self._EnhanceConfig = None
35565
+ self._EraseConfig = None
35372
35566
 
35373
35567
  @property
35374
35568
  def EncodeConfig(self):
@@ -35394,6 +35588,18 @@ class ImageTaskInput(AbstractModel):
35394
35588
  def EnhanceConfig(self, EnhanceConfig):
35395
35589
  self._EnhanceConfig = EnhanceConfig
35396
35590
 
35591
+ @property
35592
+ def EraseConfig(self):
35593
+ """图片擦除配置。
35594
+ 注意:此字段可能返回 null,表示取不到有效值。
35595
+ :rtype: :class:`tencentcloud.mps.v20190612.models.ImageEraseConfig`
35596
+ """
35597
+ return self._EraseConfig
35598
+
35599
+ @EraseConfig.setter
35600
+ def EraseConfig(self, EraseConfig):
35601
+ self._EraseConfig = EraseConfig
35602
+
35397
35603
 
35398
35604
  def _deserialize(self, params):
35399
35605
  if params.get("EncodeConfig") is not None:
@@ -35402,6 +35608,9 @@ class ImageTaskInput(AbstractModel):
35402
35608
  if params.get("EnhanceConfig") is not None:
35403
35609
  self._EnhanceConfig = ImageEnhanceConfig()
35404
35610
  self._EnhanceConfig._deserialize(params.get("EnhanceConfig"))
35611
+ if params.get("EraseConfig") is not None:
35612
+ self._EraseConfig = ImageEraseConfig()
35613
+ self._EraseConfig._deserialize(params.get("EraseConfig"))
35405
35614
  memeber_set = set(params.keys())
35406
35615
  for name, value in vars(self).items():
35407
35616
  property_name = name[1:]
@@ -3699,7 +3699,7 @@ class CreateReadOnlyDBInstanceRequest(AbstractModel):
3699
3699
  :type NeedSupportIpv6: int
3700
3700
  :param _Name: 实例名(后续支持)
3701
3701
  :type Name: str
3702
- :param _DBVersion: 【废弃】不再需要指定,内核版本号与主实例保持一致
3702
+ :param _DBVersion: 不再需要指定,内核版本号与主实例保持一致
3703
3703
  :type DBVersion: str
3704
3704
  :param _DedicatedClusterId: 专属集群ID
3705
3705
  :type DedicatedClusterId: str
@@ -3953,13 +3953,17 @@ class CreateReadOnlyDBInstanceRequest(AbstractModel):
3953
3953
 
3954
3954
  @property
3955
3955
  def DBVersion(self):
3956
- """【废弃】不再需要指定,内核版本号与主实例保持一致
3956
+ warnings.warn("parameter `DBVersion` is deprecated", DeprecationWarning)
3957
+
3958
+ """不再需要指定,内核版本号与主实例保持一致
3957
3959
  :rtype: str
3958
3960
  """
3959
3961
  return self._DBVersion
3960
3962
 
3961
3963
  @DBVersion.setter
3962
3964
  def DBVersion(self, DBVersion):
3965
+ warnings.warn("parameter `DBVersion` is deprecated", DeprecationWarning)
3966
+
3963
3967
  self._DBVersion = DBVersion
3964
3968
 
3965
3969
  @property
@@ -14012,7 +14016,7 @@ class InquiryPriceUpgradeDBInstanceRequest(AbstractModel):
14012
14016
  :type Memory: int
14013
14017
  :param _DBInstanceId: 实例ID,形如postgres-hez4fh0v
14014
14018
  :type DBInstanceId: str
14015
- :param _InstanceChargeType: 【废弃参数,不再生效】,实例计费类型。
14019
+ :param _InstanceChargeType: 实例计费类型。
14016
14020
  :type InstanceChargeType: str
14017
14021
  :param _Cpu: 实例的Cpu大小,单位Core
14018
14022
  :type Cpu: int
@@ -14058,13 +14062,17 @@ class InquiryPriceUpgradeDBInstanceRequest(AbstractModel):
14058
14062
 
14059
14063
  @property
14060
14064
  def InstanceChargeType(self):
14061
- """【废弃参数,不再生效】,实例计费类型。
14065
+ warnings.warn("parameter `InstanceChargeType` is deprecated", DeprecationWarning)
14066
+
14067
+ """实例计费类型。
14062
14068
  :rtype: str
14063
14069
  """
14064
14070
  return self._InstanceChargeType
14065
14071
 
14066
14072
  @InstanceChargeType.setter
14067
14073
  def InstanceChargeType(self, InstanceChargeType):
14074
+ warnings.warn("parameter `InstanceChargeType` is deprecated", DeprecationWarning)
14075
+
14068
14076
  self._InstanceChargeType = InstanceChargeType
14069
14077
 
14070
14078
  @property
@@ -911,7 +911,7 @@ class DescribeResourceTagsByResourceIdsRequest(AbstractModel):
911
911
  :type ResourcePrefix: str
912
912
  :param _ResourceIds: 资源ID数组,大小不超过50
913
913
  :type ResourceIds: list of str
914
- :param _ResourceRegion: 资源所在地域,示例:ap-guangzhou 不区分地域的资源不需要传入该字段,区分地域的资源必填
914
+ :param _ResourceRegion: 资源所在地域,示例:ap-guangzhou,不区分地域的资源该字段传空字符串,区分地域的资源必填
915
915
  :type ResourceRegion: str
916
916
  :param _Offset: 数据偏移量,默认为 0, 必须为Limit参数的整数倍
917
917
  :type Offset: int
@@ -963,7 +963,7 @@ class DescribeResourceTagsByResourceIdsRequest(AbstractModel):
963
963
 
964
964
  @property
965
965
  def ResourceRegion(self):
966
- """资源所在地域,示例:ap-guangzhou 不区分地域的资源不需要传入该字段,区分地域的资源必填
966
+ """资源所在地域,示例:ap-guangzhou,不区分地域的资源该字段传空字符串,区分地域的资源必填
967
967
  :rtype: str
968
968
  """
969
969
  return self._ResourceRegion
@@ -1130,7 +1130,7 @@ class DescribeResourceTagsByResourceIdsSeqRequest(AbstractModel):
1130
1130
  :type ResourcePrefix: str
1131
1131
  :param _ResourceIds: 资源唯一标记
1132
1132
  :type ResourceIds: list of str
1133
- :param _ResourceRegion: 资源所在地域,示例:ap-guangzhou 不区分地域的资源不需要传入该字段,区分地域的资源必填
1133
+ :param _ResourceRegion: 资源所在地域,示例:ap-guangzhou, 不区分地域的资源该字段传空字符串,区分地域的资源必填
1134
1134
  :type ResourceRegion: str
1135
1135
  :param _Offset: 数据偏移量,默认为 0, 必须为Limit参数的整数倍
1136
1136
  :type Offset: int
@@ -1179,7 +1179,7 @@ class DescribeResourceTagsByResourceIdsSeqRequest(AbstractModel):
1179
1179
 
1180
1180
  @property
1181
1181
  def ResourceRegion(self):
1182
- """资源所在地域,示例:ap-guangzhou 不区分地域的资源不需要传入该字段,区分地域的资源必填
1182
+ """资源所在地域,示例:ap-guangzhou, 不区分地域的资源该字段传空字符串,区分地域的资源必填
1183
1183
  :rtype: str
1184
1184
  """
1185
1185
  return self._ResourceRegion
@@ -4038,9 +4038,9 @@ class ModifyResourceTagsRequest(AbstractModel):
4038
4038
  r"""
4039
4039
  :param _Resource: [ 资源六段式描述 ](https://cloud.tencent.com/document/product/598/10606)
4040
4040
  :type Resource: str
4041
- :param _ReplaceTags: 需要增加或修改的标签集合。如果Resource描述的资源未关联输入的标签键,则增加关联;若已关联,则将该资源关联的键对应的标签值修改为输入值。本接口中ReplaceTags和DeleteTags二者必须存在其一,且二者不能包含相同的标签键。可以不传该参数,但不能是空数组。
4041
+ :param _ReplaceTags: 需要增加或修改的标签集合。如果Resource描述的资源未关联输入的标签键,则增加关联;若已关联,则将该资源关联的键对应的标签值修改为输入值。本接口中ReplaceTags和DeleteTags二者必须存在其一,且二者不能包含相同的标签键。可以不传该参数,但不能是空数组。标签数量不超过10个。
4042
4042
  :type ReplaceTags: list of Tag
4043
- :param _DeleteTags: 需要解关联的标签集合。本接口中ReplaceTags和DeleteTags二者必须存在其一,且二者不能包含相同的标签键。可以不传该参数,但不能是空数组。
4043
+ :param _DeleteTags: 需要解关联的标签集合。本接口中ReplaceTags和DeleteTags二者必须存在其一,且二者不能包含相同的标签键。可以不传该参数,但不能是空数组。标签数量不超过10个。
4044
4044
  :type DeleteTags: list of TagKeyObject
4045
4045
  """
4046
4046
  self._Resource = None
@@ -4060,7 +4060,7 @@ class ModifyResourceTagsRequest(AbstractModel):
4060
4060
 
4061
4061
  @property
4062
4062
  def ReplaceTags(self):
4063
- """需要增加或修改的标签集合。如果Resource描述的资源未关联输入的标签键,则增加关联;若已关联,则将该资源关联的键对应的标签值修改为输入值。本接口中ReplaceTags和DeleteTags二者必须存在其一,且二者不能包含相同的标签键。可以不传该参数,但不能是空数组。
4063
+ """需要增加或修改的标签集合。如果Resource描述的资源未关联输入的标签键,则增加关联;若已关联,则将该资源关联的键对应的标签值修改为输入值。本接口中ReplaceTags和DeleteTags二者必须存在其一,且二者不能包含相同的标签键。可以不传该参数,但不能是空数组。标签数量不超过10个。
4064
4064
  :rtype: list of Tag
4065
4065
  """
4066
4066
  return self._ReplaceTags
@@ -4071,7 +4071,7 @@ class ModifyResourceTagsRequest(AbstractModel):
4071
4071
 
4072
4072
  @property
4073
4073
  def DeleteTags(self):
4074
- """需要解关联的标签集合。本接口中ReplaceTags和DeleteTags二者必须存在其一,且二者不能包含相同的标签键。可以不传该参数,但不能是空数组。
4074
+ """需要解关联的标签集合。本接口中ReplaceTags和DeleteTags二者必须存在其一,且二者不能包含相同的标签键。可以不传该参数,但不能是空数组。标签数量不超过10个。
4075
4075
  :rtype: list of TagKeyObject
4076
4076
  """
4077
4077
  return self._DeleteTags
@@ -7931,7 +7931,7 @@ class DescribeCbrServerVersionResponse(AbstractModel):
7931
7931
  :type VersionName: str
7932
7932
  :param _Remark: 备注
7933
7933
  :type Remark: str
7934
- :param _DockerfilePath: Dockefile的路径
7934
+ :param _DockerfilePath: Dockerfile的路径
7935
7935
  :type DockerfilePath: str
7936
7936
  :param _BuildDir: DockerBuild的目录
7937
7937
  :type BuildDir: str
@@ -8049,7 +8049,7 @@ class DescribeCbrServerVersionResponse(AbstractModel):
8049
8049
 
8050
8050
  @property
8051
8051
  def DockerfilePath(self):
8052
- """Dockefile的路径
8052
+ """Dockerfile的路径
8053
8053
  :rtype: str
8054
8054
  """
8055
8055
  return self._DockerfilePath
@@ -10582,7 +10582,7 @@ class DescribeCloudBaseRunServerVersionResponse(AbstractModel):
10582
10582
  :type VersionName: str
10583
10583
  :param _Remark: 备注
10584
10584
  :type Remark: str
10585
- :param _DockerfilePath: Dockefile的路径
10585
+ :param _DockerfilePath: Dockerfile的路径
10586
10586
  :type DockerfilePath: str
10587
10587
  :param _BuildDir: DockerBuild的目录
10588
10588
  :type BuildDir: str
@@ -10727,7 +10727,7 @@ class DescribeCloudBaseRunServerVersionResponse(AbstractModel):
10727
10727
 
10728
10728
  @property
10729
10729
  def DockerfilePath(self):
10730
- """Dockefile的路径
10730
+ """Dockerfile的路径
10731
10731
  :rtype: str
10732
10732
  """
10733
10733
  return self._DockerfilePath
@@ -13559,10 +13559,16 @@ class DescribeEnvsRequest(AbstractModel):
13559
13559
  :type IsVisible: bool
13560
13560
  :param _Channels: 渠道列表,代表可见或不可见渠道由IsVisible参数指定
13561
13561
  :type Channels: list of str
13562
+ :param _Limit: 分页参数,单页限制个数
13563
+ :type Limit: int
13564
+ :param _Offset: 分页参数,偏移量
13565
+ :type Offset: int
13562
13566
  """
13563
13567
  self._EnvId = None
13564
13568
  self._IsVisible = None
13565
13569
  self._Channels = None
13570
+ self._Limit = None
13571
+ self._Offset = None
13566
13572
 
13567
13573
  @property
13568
13574
  def EnvId(self):
@@ -13598,11 +13604,35 @@ class DescribeEnvsRequest(AbstractModel):
13598
13604
  def Channels(self, Channels):
13599
13605
  self._Channels = Channels
13600
13606
 
13607
+ @property
13608
+ def Limit(self):
13609
+ """分页参数,单页限制个数
13610
+ :rtype: int
13611
+ """
13612
+ return self._Limit
13613
+
13614
+ @Limit.setter
13615
+ def Limit(self, Limit):
13616
+ self._Limit = Limit
13617
+
13618
+ @property
13619
+ def Offset(self):
13620
+ """分页参数,偏移量
13621
+ :rtype: int
13622
+ """
13623
+ return self._Offset
13624
+
13625
+ @Offset.setter
13626
+ def Offset(self, Offset):
13627
+ self._Offset = Offset
13628
+
13601
13629
 
13602
13630
  def _deserialize(self, params):
13603
13631
  self._EnvId = params.get("EnvId")
13604
13632
  self._IsVisible = params.get("IsVisible")
13605
13633
  self._Channels = params.get("Channels")
13634
+ self._Limit = params.get("Limit")
13635
+ self._Offset = params.get("Offset")
13606
13636
  memeber_set = set(params.keys())
13607
13637
  for name, value in vars(self).items():
13608
13638
  property_name = name[1:]
@@ -95,9 +95,15 @@ FAILEDOPERATION_MAXMESSAGESIZEERROR = 'FailedOperation.MaxMessageSizeError'
95
95
  # 上传的msgID错误。
96
96
  FAILEDOPERATION_MESSAGEIDERROR = 'FailedOperation.MessageIDError'
97
97
 
98
+ # 修改集群失败
99
+ FAILEDOPERATION_MODIFYCLUSTER = 'FailedOperation.ModifyCluster'
100
+
98
101
  # 必须先清除关联命名空间才能继续操作。
99
102
  FAILEDOPERATION_NAMESPACEINUSE = 'FailedOperation.NamespaceInUse'
100
103
 
104
+ # 产品信息不存在
105
+ FAILEDOPERATION_PRODUCTNOTEXIST = 'FailedOperation.ProductNotExist'
106
+
101
107
  # PulsarAdminClient错误。
102
108
  FAILEDOPERATION_PULSARADMINERROR = 'FailedOperation.PulsarAdminError'
103
109
 
@@ -119,6 +125,9 @@ FAILEDOPERATION_SAVESECRETKEY = 'FailedOperation.SaveSecretKey'
119
125
  # 消息发送超时。
120
126
  FAILEDOPERATION_SENDMESSAGETIMEOUTERROR = 'FailedOperation.SendMessageTimeoutError'
121
127
 
128
+ # 发送消息失败
129
+ FAILEDOPERATION_SENDMSG = 'FailedOperation.SendMsg'
130
+
122
131
  # 发送消息失败。
123
132
  FAILEDOPERATION_SENDMSGFAILED = 'FailedOperation.SendMsgFailed'
124
133
 
@@ -185,9 +194,15 @@ INVALIDPARAMETER_TENANTNOTFOUND = 'InvalidParameter.TenantNotFound'
185
194
  # 没有获取到正确的 token。
186
195
  INVALIDPARAMETER_TOKENNOTFOUND = 'InvalidParameter.TokenNotFound'
187
196
 
197
+ # 无效的 vpc 信息或者子网信息
198
+ INVALIDPARAMETER_VPC = 'InvalidParameter.Vpc'
199
+
188
200
  # 参数取值错误。
189
201
  INVALIDPARAMETERVALUE = 'InvalidParameterValue'
190
202
 
203
+ # AckTime参数错误
204
+ INVALIDPARAMETERVALUE_ACKTIME = 'InvalidParameterValue.AckTime'
205
+
191
206
  # 至少需要提供一个参数。
192
207
  INVALIDPARAMETERVALUE_ATLEASTONE = 'InvalidParameterValue.AtLeastOne'
193
208
 
@@ -215,6 +230,9 @@ LIMITEXCEEDED_CLUSTERS = 'LimitExceeded.Clusters'
215
230
  # 实例下环境数量超过限制。
216
231
  LIMITEXCEEDED_ENVIRONMENTS = 'LimitExceeded.Environments'
217
232
 
233
+ # 消息轨迹查询时间周期太长
234
+ LIMITEXCEEDED_MSGTIME = 'LimitExceeded.MsgTime'
235
+
218
236
  # 实例下命名空间数量超过限额。
219
237
  LIMITEXCEEDED_NAMESPACES = 'LimitExceeded.Namespaces'
220
238
 
@@ -236,6 +254,9 @@ MISSINGPARAMETER = 'MissingParameter'
236
254
  # 必要参数没有传递。
237
255
  MISSINGPARAMETER_NEEDMOREPARAMS = 'MissingParameter.NeedMoreParams'
238
256
 
257
+ # 标签信息缺失
258
+ MISSINGPARAMETER_TAG = 'MissingParameter.Tag'
259
+
239
260
  # 订阅仍在消费中。
240
261
  OPERATIONDENIED_CONSUMERRUNNING = 'OperationDenied.ConsumerRunning'
241
262
 
@@ -329,8 +350,14 @@ UNAUTHORIZEDOPERATION = 'UnauthorizedOperation'
329
350
  # 未知参数错误。
330
351
  UNKNOWNPARAMETER = 'UnknownParameter'
331
352
 
353
+ # Policy 参数错误
354
+ UNKNOWNPARAMETER_POLICY = 'UnknownParameter.Policy'
355
+
332
356
  # 操作不支持。
333
357
  UNSUPPORTEDOPERATION = 'UnsupportedOperation'
334
358
 
335
359
  # 该实例不支持降配操作。
336
360
  UNSUPPORTEDOPERATION_INSTANCEDOWNGRADE = 'UnsupportedOperation.InstanceDowngrade'
361
+
362
+ # 当前集群不支持Unack 操作
363
+ UNSUPPORTEDOPERATION_TOPICUNACK = 'UnsupportedOperation.TopicUnack'