tencentcloud-sdk-python 3.0.1050__py2.py3-none-any.whl → 3.0.1051__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.

Potentially problematic release.


This version of tencentcloud-sdk-python might be problematic. Click here for more details.

Files changed (31) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/cdwdoris/__init__.py +0 -0
  3. tencentcloud/cdwdoris/v20211228/__init__.py +0 -0
  4. tencentcloud/cdwdoris/v20211228/cdwdoris_client.py +95 -0
  5. tencentcloud/cdwdoris/v20211228/errorcodes.py +18 -0
  6. tencentcloud/cdwdoris/v20211228/models.py +1396 -0
  7. tencentcloud/csip/v20221121/csip_client.py +23 -0
  8. tencentcloud/csip/v20221121/models.py +486 -0
  9. tencentcloud/cvm/v20170312/errorcodes.py +3 -0
  10. tencentcloud/ess/v20201111/models.py +28 -15
  11. tencentcloud/essbasic/v20210526/essbasic_client.py +5 -2
  12. tencentcloud/essbasic/v20210526/models.py +61 -44
  13. tencentcloud/lcic/v20220817/models.py +14 -1
  14. tencentcloud/monitor/v20180724/models.py +27 -18
  15. tencentcloud/monitor/v20180724/monitor_client.py +5 -5
  16. tencentcloud/privatedns/v20201028/models.py +1 -1
  17. tencentcloud/pts/v20210728/models.py +25 -25
  18. tencentcloud/ssm/v20190923/models.py +11 -5
  19. tencentcloud/tcr/v20190924/models.py +0 -270
  20. tencentcloud/tcr/v20190924/tcr_client.py +0 -25
  21. tencentcloud/teo/v20220901/errorcodes.py +18 -0
  22. tencentcloud/tke/v20180525/errorcodes.py +18 -0
  23. tencentcloud/tke/v20180525/models.py +189 -0
  24. tencentcloud/tke/v20180525/tke_client.py +46 -0
  25. tencentcloud/vod/v20180717/errorcodes.py +3 -0
  26. tencentcloud/waf/v20180125/models.py +4 -4
  27. {tencentcloud_sdk_python-3.0.1050.dist-info → tencentcloud_sdk_python-3.0.1051.dist-info}/METADATA +1 -1
  28. {tencentcloud_sdk_python-3.0.1050.dist-info → tencentcloud_sdk_python-3.0.1051.dist-info}/RECORD +31 -26
  29. {tencentcloud_sdk_python-3.0.1050.dist-info → tencentcloud_sdk_python-3.0.1051.dist-info}/LICENSE +0 -0
  30. {tencentcloud_sdk_python-3.0.1050.dist-info → tencentcloud_sdk_python-3.0.1051.dist-info}/WHEEL +0 -0
  31. {tencentcloud_sdk_python-3.0.1050.dist-info → tencentcloud_sdk_python-3.0.1051.dist-info}/top_level.txt +0 -0
@@ -1859,9 +1859,6 @@ class ChannelCreateBatchQuickSignUrlRequest(AbstractModel):
1859
1859
 
1860
1860
  def __init__(self):
1861
1861
  r"""
1862
- :param _FlowIds: 批量签署的合同流程ID数组。
1863
- 注: `在调用此接口时,请确保合同流程均为本企业发起,且合同数量不超过100个。`
1864
- :type FlowIds: list of str
1865
1862
  :param _FlowApproverInfo: 批量签署的流程签署人,其中姓名(ApproverName)、参与人类型(ApproverType)必传,手机号(ApproverMobile)和证件信息(ApproverIdCardType、ApproverIdCardNumber)可任选一种或全部传入。
1866
1863
  注:
1867
1864
  `1. ApproverType目前只支持个人类型的签署人。`
@@ -1870,6 +1867,12 @@ class ChannelCreateBatchQuickSignUrlRequest(AbstractModel):
1870
1867
  :type FlowApproverInfo: :class:`tencentcloud.essbasic.v20210526.models.FlowApproverInfo`
1871
1868
  :param _Agent: 关于渠道应用的相关信息,包括渠道应用标识、第三方平台子客企业标识及第三方平台子客企业中的员工标识等内容,您可以参阅开发者中心所提供的 Agent 结构体以获取详细定义。
1872
1869
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
1870
+ :param _FlowIds: 批量签署的合同流程ID数组。
1871
+ 注: `在调用此接口时,请确保合同流程均为本企业发起,且合同数量不超过100个。`
1872
+ :type FlowIds: list of str
1873
+ :param _FlowGroupId: 合同组编号
1874
+ 注:`该参数和合同流程ID数组必须二选一`
1875
+ :type FlowGroupId: str
1873
1876
  :param _JumpUrl: 签署完之后的H5页面的跳转链接,此链接及支持http://和https://,最大长度1000个字符。(建议https协议)
1874
1877
  :type JumpUrl: str
1875
1878
  :param _SignatureTypes: 指定批量签署合同的签名类型,可传递以下值:
@@ -1888,21 +1891,14 @@ class ChannelCreateBatchQuickSignUrlRequest(AbstractModel):
1888
1891
  <li>您可以传递多种值,表示可用多种认证校验方式。</li></ul>
1889
1892
  :type ApproverSignTypes: list of int
1890
1893
  """
1891
- self._FlowIds = None
1892
1894
  self._FlowApproverInfo = None
1893
1895
  self._Agent = None
1896
+ self._FlowIds = None
1897
+ self._FlowGroupId = None
1894
1898
  self._JumpUrl = None
1895
1899
  self._SignatureTypes = None
1896
1900
  self._ApproverSignTypes = None
1897
1901
 
1898
- @property
1899
- def FlowIds(self):
1900
- return self._FlowIds
1901
-
1902
- @FlowIds.setter
1903
- def FlowIds(self, FlowIds):
1904
- self._FlowIds = FlowIds
1905
-
1906
1902
  @property
1907
1903
  def FlowApproverInfo(self):
1908
1904
  return self._FlowApproverInfo
@@ -1919,6 +1915,22 @@ class ChannelCreateBatchQuickSignUrlRequest(AbstractModel):
1919
1915
  def Agent(self, Agent):
1920
1916
  self._Agent = Agent
1921
1917
 
1918
+ @property
1919
+ def FlowIds(self):
1920
+ return self._FlowIds
1921
+
1922
+ @FlowIds.setter
1923
+ def FlowIds(self, FlowIds):
1924
+ self._FlowIds = FlowIds
1925
+
1926
+ @property
1927
+ def FlowGroupId(self):
1928
+ return self._FlowGroupId
1929
+
1930
+ @FlowGroupId.setter
1931
+ def FlowGroupId(self, FlowGroupId):
1932
+ self._FlowGroupId = FlowGroupId
1933
+
1922
1934
  @property
1923
1935
  def JumpUrl(self):
1924
1936
  return self._JumpUrl
@@ -1945,13 +1957,14 @@ class ChannelCreateBatchQuickSignUrlRequest(AbstractModel):
1945
1957
 
1946
1958
 
1947
1959
  def _deserialize(self, params):
1948
- self._FlowIds = params.get("FlowIds")
1949
1960
  if params.get("FlowApproverInfo") is not None:
1950
1961
  self._FlowApproverInfo = FlowApproverInfo()
1951
1962
  self._FlowApproverInfo._deserialize(params.get("FlowApproverInfo"))
1952
1963
  if params.get("Agent") is not None:
1953
1964
  self._Agent = Agent()
1954
1965
  self._Agent._deserialize(params.get("Agent"))
1966
+ self._FlowIds = params.get("FlowIds")
1967
+ self._FlowGroupId = params.get("FlowGroupId")
1955
1968
  self._JumpUrl = params.get("JumpUrl")
1956
1969
  self._SignatureTypes = params.get("SignatureTypes")
1957
1970
  self._ApproverSignTypes = params.get("ApproverSignTypes")
@@ -2057,6 +2070,7 @@ class ChannelCreateBatchSignUrlRequest(AbstractModel):
2057
2070
  <li>请确认该名称与企业营业执照中注册的名称一致。</li>
2058
2071
  <li>如果名称中包含英文括号(),请使用中文括号()代替。</li>
2059
2072
  <li>请确保此企业已完成腾讯电子签企业认证。</li>
2073
+ <li>若为子客企业,请确保员工已经加入企业。</li>
2060
2074
  </ul>
2061
2075
  :type OrganizationName: str
2062
2076
  :param _JumpToDetail: 是否直接跳转至合同内容页面进行签署
@@ -4677,6 +4691,8 @@ class ChannelCreatePreparedPersonalEsignRequest(AbstractModel):
4677
4691
  :type EnableAutoSign: bool
4678
4692
  :param _LicenseType: 设置用户开通自动签时是否绑定个人自动签账号许可。一旦绑定后,将扣减购买的个人自动签账号许可一次(1年有效期),不可解绑释放。不传默认为绑定自动签账号许可。 0-绑定个人自动签账号许可,开通后将扣减购买的个人自动签账号许可一次 1-不绑定,发起合同时将按标准合同套餐进行扣减
4679
4693
  :type LicenseType: int
4694
+ :param _SceneKey: <ul><li> **E_PRESCRIPTION_AUTO_SIGN** : 电子处方场景</li><li> **OTHER** : 通用场景</li></ul>
4695
+ :type SceneKey: str
4680
4696
  """
4681
4697
  self._Agent = None
4682
4698
  self._UserName = None
@@ -4689,6 +4705,7 @@ class ChannelCreatePreparedPersonalEsignRequest(AbstractModel):
4689
4705
  self._Mobile = None
4690
4706
  self._EnableAutoSign = None
4691
4707
  self._LicenseType = None
4708
+ self._SceneKey = None
4692
4709
 
4693
4710
  @property
4694
4711
  def Agent(self):
@@ -4778,6 +4795,14 @@ class ChannelCreatePreparedPersonalEsignRequest(AbstractModel):
4778
4795
  def LicenseType(self, LicenseType):
4779
4796
  self._LicenseType = LicenseType
4780
4797
 
4798
+ @property
4799
+ def SceneKey(self):
4800
+ return self._SceneKey
4801
+
4802
+ @SceneKey.setter
4803
+ def SceneKey(self, SceneKey):
4804
+ self._SceneKey = SceneKey
4805
+
4781
4806
 
4782
4807
  def _deserialize(self, params):
4783
4808
  if params.get("Agent") is not None:
@@ -4795,6 +4820,7 @@ class ChannelCreatePreparedPersonalEsignRequest(AbstractModel):
4795
4820
  self._Mobile = params.get("Mobile")
4796
4821
  self._EnableAutoSign = params.get("EnableAutoSign")
4797
4822
  self._LicenseType = params.get("LicenseType")
4823
+ self._SceneKey = params.get("SceneKey")
4798
4824
  memeber_set = set(params.keys())
4799
4825
  for name, value in vars(self).items():
4800
4826
  property_name = name[1:]
@@ -7682,32 +7708,24 @@ class ChannelOrganizationInfo(AbstractModel):
7682
7708
 
7683
7709
  def __init__(self):
7684
7710
  r"""
7685
- :param _OrganizationId: 电子签企业Id
7686
- 注意:此字段可能返回 null,表示取不到有效值。
7711
+ :param _OrganizationId: 电子签平台给企业分配的ID(在不同应用下同一个企业会分配通用的ID)
7687
7712
  :type OrganizationId: str
7688
- :param _OrganizationOpenId: 电子签企业OpenId
7689
- 注意:此字段可能返回 null,表示取不到有效值。
7713
+ :param _OrganizationOpenId: 第三方平台子客企业的唯一标识
7690
7714
  :type OrganizationOpenId: str
7691
- :param _OrganizationName: 企业名称
7692
- 注意:此字段可能返回 null,表示取不到有效值。
7715
+ :param _OrganizationName: 第三方平台子客企业名称
7693
7716
  :type OrganizationName: str
7694
- :param _UnifiedSocialCreditCode: 企业信用代码
7695
- 注意:此字段可能返回 null,表示取不到有效值。
7717
+ :param _UnifiedSocialCreditCode: 企业的统一社会信用代码
7696
7718
  :type UnifiedSocialCreditCode: str
7697
- :param _LegalName: 法人姓名
7698
- 注意:此字段可能返回 null,表示取不到有效值。
7719
+ :param _LegalName: 企业法定代表人的姓名
7699
7720
  :type LegalName: str
7700
- :param _LegalOpenId: 法人OpenId
7701
- 注意:此字段可能返回 null,表示取不到有效值。
7721
+ :param _LegalOpenId: 企业法定代表人作为第三方平台子客企业员工的唯一标识
7702
7722
  :type LegalOpenId: str
7703
- :param _AdminName: 超管姓名
7704
- 注意:此字段可能返回 null,表示取不到有效值。
7723
+ :param _AdminName: 企业超级管理员的姓名
7705
7724
  :type AdminName: str
7706
- :param _AdminOpenId: 超管OpenId
7707
- 注意:此字段可能返回 null,表示取不到有效值。
7725
+ :param _AdminOpenId: 企业超级管理员作为第三方平台子客企业员工的唯一标识
7708
7726
  :type AdminOpenId: str
7709
- :param _AdminMobile: 超管手机号,脱敏后返回
7710
- 注意:此字段可能返回 null,表示取不到有效值。
7727
+ :param _AdminMobile: 企业超级管理员的手机号码
7728
+ **注**:`手机号码脱敏(隐藏部分用*替代)`
7711
7729
  :type AdminMobile: str
7712
7730
  :param _AuthorizationStatus: 企业认证状态字段。值如下:
7713
7731
  <ul>
@@ -7718,7 +7736,6 @@ class ChannelOrganizationInfo(AbstractModel):
7718
7736
  <li>**"VERIFYING"**: 认证中的企业</li>
7719
7737
  <li>**"VERIFIED"**: 已认证的企业</li>
7720
7738
  </ul>
7721
- 注意:此字段可能返回 null,表示取不到有效值。
7722
7739
  :type AuthorizationStatus: str
7723
7740
  :param _AuthorizationType: 企业认证方式字段。值如下:
7724
7741
  <ul>
@@ -7727,7 +7744,6 @@ class ChannelOrganizationInfo(AbstractModel):
7727
7744
  <li>**"AuthorizationLegalPerson"**: 法人授权超管</li>
7728
7745
  <li>**"AuthorizationLegalIdentity"**: 法人直接认证</li>
7729
7746
  </ul>
7730
- 注意:此字段可能返回 null,表示取不到有效值。
7731
7747
  :type AuthorizationType: str
7732
7748
  """
7733
7749
  self._OrganizationId = None
@@ -10900,21 +10916,22 @@ class DescribeChannelOrganizationsRequest(AbstractModel):
10900
10916
  渠道应用标识: Agent.AppId
10901
10917
  第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
10902
10918
  第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
10919
+
10903
10920
  第三方平台子客企业和员工必须已经经过实名认证
10904
10921
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
10905
10922
  :param _Limit: 指定分页每页返回的数据条数,单页最大支持 200。
10906
10923
  :type Limit: int
10907
- :param _OrganizationOpenId: 子客OrganizationOpenId,定向查询某个子客的企业数据。
10924
+ :param _OrganizationOpenId: 该字段是指第三方平台子客企业的唯一标识,用于查询单独某个子客的企业数据。
10925
+
10926
+ **注**:`如果需要批量查询本应用下的所有企业的信息,则该字段不需要赋值`
10908
10927
  :type OrganizationOpenId: str
10909
- :param _AuthorizationStatusList: 企业认证状态过滤字段。可值如下:
10910
- <ul>
10911
- <li>**"UNVERIFIED"**: 未认证的企业</li>
10928
+ :param _AuthorizationStatusList: 可以按照当前企业的认证状态进行过滤。可值如下:
10929
+ <ul><li>**"UNVERIFIED"**: 未认证的企业</li>
10912
10930
  <li>**"VERIFYINGLEGALPENDINGAUTHORIZATION"**: 认证中待法人授权的企业</li>
10913
10931
  <li>**"VERIFYINGAUTHORIZATIONFILEPENDING"**: 认证中授权书审核中的企业</li>
10914
10932
  <li>**"VERIFYINGAUTHORIZATIONFILEREJECT"**: 认证中授权书已驳回的企业</li>
10915
- <li>**"VERIFYING"**: 认证中的企业</li>
10916
- <li>**"VERIFIED"**: 已认证的企业</li>
10917
- </ul>
10933
+ <li>**"VERIFYING"**: 认证进行中的企业</li>
10934
+ <li>**"VERIFIED"**: 已认证完成的企业</li></ul>
10918
10935
  :type AuthorizationStatusList: list of str
10919
10936
  :param _Offset: 指定分页返回第几页的数据,如果不传默认返回第一页。 页码从 0 开始,即首页为 0,最大20000。
10920
10937
  :type Offset: int
@@ -10991,13 +11008,13 @@ class DescribeChannelOrganizationsResponse(AbstractModel):
10991
11008
 
10992
11009
  def __init__(self):
10993
11010
  r"""
10994
- :param _ChannelOrganizationInfos: 企业企业信息列表。
11011
+ :param _ChannelOrganizationInfos: 满足查询条件的企业信息列表。
10995
11012
  :type ChannelOrganizationInfos: list of ChannelOrganizationInfo
10996
11013
  :param _Offset: 指定分页返回第几页的数据。页码从 0 开始,即首页为 0,最大20000。
10997
11014
  :type Offset: int
10998
11015
  :param _Limit: 指定分页每页返回的数据条数,单页最大支持 200。
10999
11016
  :type Limit: int
11000
- :param _Total: 符合条件的企业数量。
11017
+ :param _Total: 满足查询条件的企业总数量。
11001
11018
  :type Total: int
11002
11019
  :param _RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
11003
11020
  :type RequestId: str
@@ -14197,14 +14214,14 @@ class FormField(AbstractModel):
14197
14214
  | cells.N.columnStart | Integer | 单元格坐标:列起始index |
14198
14215
  | cells.N.columnEnd | Integer | 单元格坐标:列结束index |
14199
14216
  | cells.N.content | String | 单元格内容,字数不超过100 |
14200
- | cells.N.style | String | 单元格字体风格配置 ,风格配置的json字符串 如: {"font":"黑体","fontSize":12,"color":"FFFFFF","bold":true,"align":"CENTER"} |
14217
+ | cells.N.style | String | 单元格字体风格配置 ,风格配置的json字符串 如: {"font":"黑体","fontSize":12,"color":"#FFFFFF","bold":true,"align":"CENTER"} |
14201
14218
 
14202
14219
  表格参数headers说明
14203
14220
  widthPercent Integer 表头单元格列占总表头的比例,例如1:30表示 此列占表头的30%,不填写时列宽度平均拆分;例如2:总2列,某一列填写40,剩余列可以为空,按照60计算。;例如3:总3列,某一列填写30,剩余2列可以为空,分别为(100-30)/2=35
14204
14221
 
14205
14222
  content String 表头单元格内容,字数不超过100
14206
14223
 
14207
- style String 为字体风格设置 风格支持: font : 目前支持 黑体、宋体; fontSize: 6-72; color:000000-FFFFFF 字符串形如: "FFFFFF"; bold : 是否加粗, true : 加粗 false: 不加粗; align: 对其方式, 支持 LEFT / RIGHT / CENTER
14224
+ style String 为字体风格设置 风格支持: font : 目前支持 黑体、宋体; fontSize: 6-72; color:000000-FFFFFF 字符串形如: "#FFFFFF" 或者 "0xFFFFFF"; bold : 是否加粗, true : 加粗 false: 不加粗; align: 对其方式, 支持 LEFT / RIGHT / CENTER
14208
14225
 
14209
14226
  """
14210
14227
 
@@ -8704,7 +8704,7 @@ class RoomItem(AbstractModel):
8704
8704
  :param _RoomId: 房间ID
8705
8705
  注意:此字段可能返回 null,表示取不到有效值。
8706
8706
  :type RoomId: int
8707
- :param _Status: 房间状态。0 未开始 ;1进行中 ;2 已结束
8707
+ :param _Status: 房间状态。0 未开始 ;1进行中 ;2 已结束;3已过期
8708
8708
  注意:此字段可能返回 null,表示取不到有效值。
8709
8709
  :type Status: int
8710
8710
  :param _StartTime: 开始时间
@@ -8763,6 +8763,9 @@ class RoomItem(AbstractModel):
8763
8763
  :param _EnableAutoStart: 是否自动开始上课:0 不自动上课(默认) 1 自动上课 live_type=1的时候有效
8764
8764
  注意:此字段可能返回 null,表示取不到有效值。
8765
8765
  :type EnableAutoStart: int
8766
+ :param _RecordBackground: 录制文件背景图片,支持png、jpg、jpeg、bmp格式,暂不支持透明通道
8767
+ 注意:此字段可能返回 null,表示取不到有效值。
8768
+ :type RecordBackground: str
8766
8769
  """
8767
8770
  self._Name = None
8768
8771
  self._RoomId = None
@@ -8785,6 +8788,7 @@ class RoomItem(AbstractModel):
8785
8788
  self._LiveType = None
8786
8789
  self._RecordLiveUrl = None
8787
8790
  self._EnableAutoStart = None
8791
+ self._RecordBackground = None
8788
8792
 
8789
8793
  @property
8790
8794
  def Name(self):
@@ -8954,6 +8958,14 @@ class RoomItem(AbstractModel):
8954
8958
  def EnableAutoStart(self, EnableAutoStart):
8955
8959
  self._EnableAutoStart = EnableAutoStart
8956
8960
 
8961
+ @property
8962
+ def RecordBackground(self):
8963
+ return self._RecordBackground
8964
+
8965
+ @RecordBackground.setter
8966
+ def RecordBackground(self, RecordBackground):
8967
+ self._RecordBackground = RecordBackground
8968
+
8957
8969
 
8958
8970
  def _deserialize(self, params):
8959
8971
  self._Name = params.get("Name")
@@ -8977,6 +8989,7 @@ class RoomItem(AbstractModel):
8977
8989
  self._LiveType = params.get("LiveType")
8978
8990
  self._RecordLiveUrl = params.get("RecordLiveUrl")
8979
8991
  self._EnableAutoStart = params.get("EnableAutoStart")
8992
+ self._RecordBackground = params.get("RecordBackground")
8980
8993
  memeber_set = set(params.keys())
8981
8994
  for name, value in vars(self).items():
8982
8995
  property_name = name[1:]
@@ -3747,16 +3747,16 @@ class CreateExporterIntegrationRequest(AbstractModel):
3747
3747
  r"""
3748
3748
  :param _InstanceId: 实例 ID
3749
3749
  :type InstanceId: str
3750
- :param _Kind: 类型
3750
+ :param _Kind: 类型(可通过 DescribePrometheusIntegrations 接口获取,取每一项中的 ExporterType 字段)
3751
3751
  :type Kind: str
3752
3752
  :param _Content: 集成配置
3753
3753
  :type Content: str
3754
- :param _KubeType: Kubernetes 集群类型,取值如下:
3754
+ :param _KubeType: Kubernetes 集群类型,可不填,取值如下:
3755
3755
  <li> 1= 容器集群(TKE) </li>
3756
- <li> 2=弹性集群<EKS> </li>
3757
- <li> 3= Prometheus管理的弹性集群<MEKS> </li>
3756
+ <li> 2=弹性集群(EKS) </li>
3757
+ <li> 3= Prometheus管理的弹性集群(MEKS) </li>
3758
3758
  :type KubeType: int
3759
- :param _ClusterId: 集群 ID
3759
+ :param _ClusterId: 集群 ID,可不填
3760
3760
  :type ClusterId: str
3761
3761
  """
3762
3762
  self._InstanceId = None
@@ -5086,13 +5086,13 @@ class CreatePrometheusMultiTenantInstancePostPayModeRequest(AbstractModel):
5086
5086
  r"""
5087
5087
  :param _InstanceName: 实例名
5088
5088
  :type InstanceName: str
5089
- :param _VpcId: VPC ID
5089
+ :param _VpcId: VPC ID(可通过 vpc:DescribeVpcs 接口获取,与实例同地域)
5090
5090
  :type VpcId: str
5091
- :param _SubnetId: 子网 ID
5091
+ :param _SubnetId: 子网 ID(可通过 vpc:DescribeSubnets 接口获取)
5092
5092
  :type SubnetId: str
5093
5093
  :param _DataRetentionTime: 数据存储时间(单位天),限制值为15,30,45之一
5094
5094
  :type DataRetentionTime: int
5095
- :param _Zone: 可用区
5095
+ :param _Zone: 可用区(与子网同可用区)
5096
5096
  :type Zone: str
5097
5097
  :param _TagSpecification: 实例的标签
5098
5098
  :type TagSpecification: list of PrometheusTag
@@ -5313,11 +5313,11 @@ class CreatePrometheusScrapeJobRequest(AbstractModel):
5313
5313
 
5314
5314
  def __init__(self):
5315
5315
  r"""
5316
- :param _InstanceId: Prometheus 实例 ID,例如:prom-abcd1234
5316
+ :param _InstanceId: Prometheus 实例 ID
5317
5317
  :type InstanceId: str
5318
- :param _AgentId: Agent ID,例如:agent-abcd1234,可在控制台 Agent 管理中获取
5318
+ :param _AgentId: Agent ID(可通过DescribePrometheusAgents 接口获取)
5319
5319
  :type AgentId: str
5320
- :param _Config: 抓取任务配置,格式:job_name:xx
5320
+ :param _Config: 抓取任务配置
5321
5321
  :type Config: str
5322
5322
  """
5323
5323
  self._InstanceId = None
@@ -5481,7 +5481,7 @@ class CreateRecordingRuleRequest(AbstractModel):
5481
5481
  r"""
5482
5482
  :param _Name: 聚合规则名称
5483
5483
  :type Name: str
5484
- :param _Group: 聚合规则组内容,格式为 yaml
5484
+ :param _Group: 聚合规则组内容,格式为 yaml,通过 base64 进行编码。
5485
5485
  :type Group: str
5486
5486
  :param _InstanceId: Prometheus 实例 ID
5487
5487
  :type InstanceId: str
@@ -6116,16 +6116,16 @@ class DeleteExporterIntegrationRequest(AbstractModel):
6116
6116
  r"""
6117
6117
  :param _InstanceId: 实例 ID
6118
6118
  :type InstanceId: str
6119
- :param _Kind: 类型
6119
+ :param _Kind: 类型(可通过 DescribeExporterIntegrations获取)
6120
6120
  :type Kind: str
6121
6121
  :param _Name: 名字
6122
6122
  :type Name: str
6123
6123
  :param _KubeType: Kubernetes 集群类型,取值如下:
6124
6124
  <li> 1= 容器集群(TKE) </li>
6125
- <li> 2=弹性集群<EKS> </li>
6126
- <li> 3= Prometheus管理的弹性集群<MEKS> </li>
6125
+ <li> 2=弹性集群(EKS) </li>
6126
+ <li> 3= Prometheus管理的弹性集群(MEKS) </li>
6127
6127
  :type KubeType: int
6128
- :param _ClusterId: 集群 ID
6128
+ :param _ClusterId: 集群 ID,可不填
6129
6129
  :type ClusterId: str
6130
6130
  """
6131
6131
  self._InstanceId = None
@@ -6838,9 +6838,9 @@ class DeletePrometheusScrapeJobsRequest(AbstractModel):
6838
6838
  r"""
6839
6839
  :param _InstanceId: 实例 ID
6840
6840
  :type InstanceId: str
6841
- :param _AgentId: Agent ID
6841
+ :param _AgentId: Agent ID(可通过 DescribePrometheusAgents 接口获取)
6842
6842
  :type AgentId: str
6843
- :param _JobIds: 任务 ID 列表
6843
+ :param _JobIds: 任务 ID 列表(可通过 DescribePrometheusScrapeJobs 接口获取)
6844
6844
  :type JobIds: list of str
6845
6845
  """
6846
6846
  self._InstanceId = None
@@ -30338,6 +30338,13 @@ class UpgradeGrafanaDashboardRequest(AbstractModel):
30338
30338
  :param _InstanceId: 实例 ID
30339
30339
  :type InstanceId: str
30340
30340
  :param _IntegrationCodes: Prometheus 集成项 Code,升级对应的 Dashboard,取值如下:
30341
+ <li>qcloud</li>
30342
+ <li>cvm_process_exporter</li>
30343
+ <li>cvm_node_exporter</li>
30344
+ <li>cvm</li>
30345
+ <li>kubernetes</li>
30346
+ <li>cdwch</li>
30347
+ <li>rocketmq</li>
30341
30348
  <li>spring_mvc</li>
30342
30349
  <li>mysql</li>
30343
30350
  <li>go</li>
@@ -30355,6 +30362,8 @@ class UpgradeGrafanaDashboardRequest(AbstractModel):
30355
30362
  <li>tps</li>
30356
30363
  <li>istio</li>
30357
30364
  <li>etcd</li>
30365
+ <li>pts</li>
30366
+ <li>kong</li>
30358
30367
  :type IntegrationCodes: list of str
30359
30368
  """
30360
30369
  self._InstanceId = None
@@ -213,7 +213,7 @@ class MonitorClient(AbstractClient):
213
213
 
214
214
 
215
215
  def CreateExporterIntegration(self, request):
216
- """创建 exporter 集成
216
+ """创建集成中心 exporter 集成,因集成较多,建议控制台创建集成。(前提:已授权创建托管 EKS 集群,验证方式:1. 控制台界面确认,未提示授权则表示已授权创建;2. 通过 DescribePrometheusInstanceInitStatus 接口查询集群状态,如果托管集群不存在,可通过 RunPrometheusInstance 接口创建)
217
217
 
218
218
  :param request: Request instance for CreateExporterIntegration.
219
219
  :type request: :class:`tencentcloud.monitor.v20180724.models.CreateExporterIntegrationRequest`
@@ -489,7 +489,7 @@ class MonitorClient(AbstractClient):
489
489
 
490
490
 
491
491
  def CreatePrometheusScrapeJob(self, request):
492
- """创建 Prometheus 抓取任务
492
+ """创建 Prometheus Agent 抓取任务
493
493
 
494
494
  :param request: Request instance for CreatePrometheusScrapeJob.
495
495
  :type request: :class:`tencentcloud.monitor.v20180724.models.CreatePrometheusScrapeJobRequest`
@@ -675,7 +675,7 @@ class MonitorClient(AbstractClient):
675
675
 
676
676
 
677
677
  def DeleteExporterIntegration(self, request):
678
- """删除 exporter 集成
678
+ """删除集成中心 exporter 集成
679
679
 
680
680
  :param request: Request instance for DeleteExporterIntegration.
681
681
  :type request: :class:`tencentcloud.monitor.v20180724.models.DeleteExporterIntegrationRequest`
@@ -882,7 +882,7 @@ class MonitorClient(AbstractClient):
882
882
 
883
883
 
884
884
  def DeletePrometheusScrapeJobs(self, request):
885
- """删除 Prometheus 抓取任务
885
+ """删除 Prometheus Agent 抓取任务
886
886
 
887
887
  :param request: Request instance for DeletePrometheusScrapeJobs.
888
888
  :type request: :class:`tencentcloud.monitor.v20180724.models.DeletePrometheusScrapeJobsRequest`
@@ -2341,7 +2341,7 @@ class MonitorClient(AbstractClient):
2341
2341
 
2342
2342
 
2343
2343
  def DestroyPrometheusInstance(self, request):
2344
- """彻底删除 Prometheus 实例相关数据,给定的实例必须先被 Terminate
2344
+ """彻底删除 Prometheus 实例相关数据,给定的实例必须先被 Terminate(该接口是异步接口,实例是否释放需要通过 DescribePrometheusInstances 接口返回的状态来判断)。
2345
2345
 
2346
2346
  :param request: Request instance for DestroyPrometheusInstance.
2347
2347
  :type request: :class:`tencentcloud.monitor.v20180724.models.DestroyPrometheusInstanceRequest`
@@ -3559,7 +3559,7 @@ class QueryAsyncBindVpcStatusResponse(AbstractModel):
3559
3559
  def __init__(self):
3560
3560
  r"""
3561
3561
  :param _Status: processing 处理中,success 执行成功,
3562
- fail 执行失败
3562
+ failed 执行失败
3563
3563
  :type Status: str
3564
3564
  :param _ErrorMsg: 错误信息
3565
3565
  注意:此字段可能返回 null,表示取不到有效值。
@@ -95,7 +95,7 @@ class AbortJobRequest(AbstractModel):
95
95
 
96
96
  def __init__(self):
97
97
  r"""
98
- :param _JobId: 任务ID
98
+ :param _JobId: 待停止的压测任务的 ID(所有的压测任务 ID 可以从 DescribeJobs 接口获取)
99
99
  :type JobId: str
100
100
  :param _ProjectId: 项目ID
101
101
  :type ProjectId: str
@@ -191,7 +191,7 @@ class AdjustJobSpeedRequest(AbstractModel):
191
191
  r"""
192
192
  :param _JobId: 任务ID
193
193
  :type JobId: str
194
- :param _TargetRequestsPerSecond: 目标RPS
194
+ :param _TargetRequestsPerSecond: 目标 RPS。其取值应大于起始 RPS,并且小于最大 RPS
195
195
  :type TargetRequestsPerSecond: int
196
196
  """
197
197
  self._JobId = None
@@ -1093,11 +1093,11 @@ class CreateAlertChannelRequest(AbstractModel):
1093
1093
 
1094
1094
  def __init__(self):
1095
1095
  r"""
1096
- :param _NoticeId: Notice ID
1096
+ :param _NoticeId: monitor 服务的告警通知模板的 NoticeId,可从 monitor 服务的云 API 的 DescribeAlarmNotices 接口响应里的 Id 字段获取。(CreateAlertChannel 接口的入参里用于标识一个告警通知模板的 AMPConsumerId 与 NoticeId 二选一即可)
1097
1097
  :type NoticeId: str
1098
1098
  :param _ProjectId: 项目 ID
1099
1099
  :type ProjectId: str
1100
- :param _AMPConsumerId: AMP Consumer ID
1100
+ :param _AMPConsumerId: monitor 服务的告警通知模板的 AMPConsumerId,可从 monitor 服务的云 API 的 DescribeAlarmNotices 接口响应里的 AMPConsumerId 字段获取。(CreateAlertChannel 接口的入参里用于标识一个告警通知模板的 AMPConsumerId 与 NoticeId 二选一即可)
1101
1101
  :type AMPConsumerId: str
1102
1102
  """
1103
1103
  self._NoticeId = None
@@ -1353,7 +1353,7 @@ class CreateFileRequest(AbstractModel):
1353
1353
 
1354
1354
  def __init__(self):
1355
1355
  r"""
1356
- :param _FileId: 文件 ID
1356
+ :param _FileId: 文件 ID。其值应为前序步骤上传该文件到 cos 桶后,文件在 cos 桶中的相应目录
1357
1357
  :type FileId: str
1358
1358
  :param _ProjectId: 项目 ID
1359
1359
  :type ProjectId: str
@@ -2489,7 +2489,7 @@ class DeleteAlertChannelRequest(AbstractModel):
2489
2489
  r"""
2490
2490
  :param _ProjectId: 项目 ID
2491
2491
  :type ProjectId: str
2492
- :param _NoticeId: Notice ID
2492
+ :param _NoticeId: 待删除的通知渠道的 Notice ID(所有通知渠道的 Notice ID 可以从 DescribeAlertChannels 接口获取)
2493
2493
  :type NoticeId: str
2494
2494
  """
2495
2495
  self._ProjectId = None
@@ -2629,7 +2629,7 @@ class DeleteFilesRequest(AbstractModel):
2629
2629
  r"""
2630
2630
  :param _ProjectId: 项目 ID
2631
2631
  :type ProjectId: str
2632
- :param _FileIds: 文件 ID 数组
2632
+ :param _FileIds: 待删除的文件的 ID(所有文件 ID 可从接口 DescribeFiles 获取)
2633
2633
  :type FileIds: list of str
2634
2634
  """
2635
2635
  self._ProjectId = None
@@ -2697,7 +2697,7 @@ class DeleteJobsRequest(AbstractModel):
2697
2697
 
2698
2698
  def __init__(self):
2699
2699
  r"""
2700
- :param _JobIds: 任务ID数组
2700
+ :param _JobIds: 待删除的任务的 ID(所有任务的 ID 可以从 DescribeJobs 获取)
2701
2701
  :type JobIds: list of str
2702
2702
  :param _ProjectId: 项目ID
2703
2703
  :type ProjectId: str
@@ -4064,9 +4064,9 @@ class DescribeLabelValuesRequest(AbstractModel):
4064
4064
  :type JobId: str
4065
4065
  :param _ScenarioId: 场景ID
4066
4066
  :type ScenarioId: str
4067
- :param _Metric: 指标名称
4067
+ :param _Metric: 指标名。取值范围参见 DescribeMetricLabelWithValues 接口返回的所有指标名
4068
4068
  :type Metric: str
4069
- :param _LabelName: 查询标签名称
4069
+ :param _LabelName: 标签名。取值范围参见 DescribeMetricLabelWithValues 接口返回的指标及其支持的标签名
4070
4070
  :type LabelName: str
4071
4071
  :param _ProjectId: 项目ID
4072
4072
  :type ProjectId: str
@@ -4802,13 +4802,13 @@ class DescribeSampleBatchQueryRequest(AbstractModel):
4802
4802
 
4803
4803
  def __init__(self):
4804
4804
  r"""
4805
- :param _JobId: job id
4805
+ :param _JobId: 压测任务的 ID
4806
4806
  :type JobId: str
4807
- :param _ScenarioId: 场景id
4807
+ :param _ScenarioId: 场景的 ID
4808
4808
  :type ScenarioId: str
4809
4809
  :param _Queries: 查询指标数组
4810
4810
  :type Queries: list of InternalMetricQuery
4811
- :param _ProjectId: 项目ID
4811
+ :param _ProjectId: 项目的 ID
4812
4812
  :type ProjectId: str
4813
4813
  """
4814
4814
  self._JobId = None
@@ -5325,11 +5325,11 @@ class DescribeSampleMatrixQueryRequest(AbstractModel):
5325
5325
  :type ProjectId: str
5326
5326
  :param _ScenarioId: 场景ID
5327
5327
  :type ScenarioId: str
5328
- :param _Metric: 指标名字
5328
+ :param _Metric: 指标名。取值范围参见 DescribeMetricLabelWithValues 接口返回的所有指标名
5329
5329
  :type Metric: str
5330
- :param _Aggregation: 聚合函数
5330
+ :param _Aggregation: 聚合函数。取值范围:Rate,Count,Avg,P90,P95,P99,Gauge
5331
5331
  :type Aggregation: str
5332
- :param _Filters: 指标过滤
5332
+ :param _Filters: 用标签过滤规则来过滤指标,规则中包含标签名 LabelName、标签值 LabelValue、操作符 Operator(0代表相等,1代表不等)
5333
5333
  :type Filters: list of Filter
5334
5334
  :param _GroupBy: 分组
5335
5335
  :type GroupBy: list of str
@@ -5473,13 +5473,13 @@ class DescribeSampleQueryRequest(AbstractModel):
5473
5473
  :type JobId: str
5474
5474
  :param _ScenarioId: 场景Id
5475
5475
  :type ScenarioId: str
5476
- :param _Metric: 指标名
5476
+ :param _Metric: 指标名。取值范围参见 DescribeMetricLabelWithValues 接口返回的所有指标名
5477
5477
  :type Metric: str
5478
- :param _Aggregation: 聚合条件
5478
+ :param _Aggregation: 聚合函数。取值范围:Rate,Count,Avg,P90,P95,P99,Gauge
5479
5479
  :type Aggregation: str
5480
5480
  :param _ProjectId: 项目ID
5481
5481
  :type ProjectId: str
5482
- :param _Labels: 过滤条件
5482
+ :param _Labels: 标签过滤条件。各指标支持的标签参见 DescribeMetricLabelWithValues 接口返回的所有指标及其支持的标签
5483
5483
  :type Labels: list of Label
5484
5484
  """
5485
5485
  self._JobId = None
@@ -6832,11 +6832,11 @@ class InternalMetricQuery(AbstractModel):
6832
6832
  r"""
6833
6833
  :param _Metric: 指标名
6834
6834
  :type Metric: str
6835
- :param _Aggregation: 聚合函数
6835
+ :param _Aggregation: 聚合函数。取值范围:Rate,Count,Avg,P90,P95,P99,Gauge
6836
6836
  :type Aggregation: str
6837
6837
  :param _Labels: deprecated, 请使用Filters
6838
6838
  :type Labels: list of Label
6839
- :param _Filters: 指标过滤
6839
+ :param _Filters: 用标签过滤规则来过滤指标,规则中包含标签名 LabelName、标签值 LabelValue、操作符 Operator(0代表相等,1代表不等)
6840
6840
  :type Filters: list of Filter
6841
6841
  :param _GroupBy: 指标分组
6842
6842
  :type GroupBy: list of str
@@ -7544,9 +7544,9 @@ class Label(AbstractModel):
7544
7544
 
7545
7545
  def __init__(self):
7546
7546
  r"""
7547
- :param _LabelName: label名字
7547
+ :param _LabelName: 标签名
7548
7548
  :type LabelName: str
7549
- :param _LabelValue: label值
7549
+ :param _LabelValue: 标签值
7550
7550
  :type LabelValue: str
7551
7551
  """
7552
7552
  self._LabelName = None
@@ -10542,7 +10542,7 @@ class UpdateFileScenarioRelationRequest(AbstractModel):
10542
10542
 
10543
10543
  def __init__(self):
10544
10544
  r"""
10545
- :param _FileId: 文件 ID
10545
+ :param _FileId: 文件 ID。其值应为前序步骤上传该文件到 cos 桶后,文件在 cos 桶中的相应目录
10546
10546
  :type FileId: str
10547
10547
  :param _ProjectId: 项目 ID
10548
10548
  :type ProjectId: str
@@ -10835,7 +10835,7 @@ class UpdateScenarioRequest(AbstractModel):
10835
10835
  :type Name: str
10836
10836
  :param _Description: 场景描述
10837
10837
  :type Description: str
10838
- :param _Type: 压测引擎类型
10838
+ :param _Type: 压测场景的模式类型。取值范围:pts-http 代表简单模式,pts-js 代表脚本模式,pts-jmeter 代表 JMeter 模式。
10839
10839
  :type Type: str
10840
10840
  :param _Load: 施压配置
10841
10841
  :type Load: :class:`tencentcloud.pts.v20210728.models.Load`