tencentcloud-sdk-python-clb 3.1.129__tar.gz → 3.1.140__tar.gz

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 (17) hide show
  1. {tencentcloud_sdk_python_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.140}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.140}/setup.py +1 -1
  3. {tencentcloud_sdk_python_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.140}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.140}/tencentcloud/clb/v20180317/models.py +60 -0
  5. {tencentcloud_sdk_python_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.140}/tencentcloud_sdk_python_clb.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_clb-3.1.140/tencentcloud_sdk_python_clb.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_clb-3.1.129/tencentcloud_sdk_python_clb.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.140}/README.rst +0 -0
  9. {tencentcloud_sdk_python_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.140}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.140}/tencentcloud/clb/__init__.py +0 -0
  11. {tencentcloud_sdk_python_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.140}/tencentcloud/clb/v20180317/__init__.py +0 -0
  12. {tencentcloud_sdk_python_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.140}/tencentcloud/clb/v20180317/clb_client.py +0 -0
  13. {tencentcloud_sdk_python_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.140}/tencentcloud/clb/v20180317/clb_client_async.py +0 -0
  14. {tencentcloud_sdk_python_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.140}/tencentcloud/clb/v20180317/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.140}/tencentcloud_sdk_python_clb.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.140}/tencentcloud_sdk_python_clb.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.140}/tencentcloud_sdk_python_clb.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-clb
3
- Version: 3.1.129
3
+ Version: 3.1.140
4
4
  Summary: Tencent Cloud Clb SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.129
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.140
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-clb',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.129,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.140,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Clb SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.129'
17
+ __version__ = '3.1.140'
@@ -4732,9 +4732,12 @@ class ClusterInfo(AbstractModel):
4732
4732
  :type ClusterId: str
4733
4733
  :param _Type: <p>集群类型</p><p>枚举值:</p><ul><li>Public: 公有云集群</li><li>Exclusive: 独占集群</li></ul><p>默认值:Public</p>
4734
4734
  :type Type: str
4735
+ :param _ClusterName: <p>集群名称</p>
4736
+ :type ClusterName: str
4735
4737
  """
4736
4738
  self._ClusterId = None
4737
4739
  self._Type = None
4740
+ self._ClusterName = None
4738
4741
 
4739
4742
  @property
4740
4743
  def ClusterId(self):
@@ -4758,10 +4761,22 @@ class ClusterInfo(AbstractModel):
4758
4761
  def Type(self, Type):
4759
4762
  self._Type = Type
4760
4763
 
4764
+ @property
4765
+ def ClusterName(self):
4766
+ r"""<p>集群名称</p>
4767
+ :rtype: str
4768
+ """
4769
+ return self._ClusterName
4770
+
4771
+ @ClusterName.setter
4772
+ def ClusterName(self, ClusterName):
4773
+ self._ClusterName = ClusterName
4774
+
4761
4775
 
4762
4776
  def _deserialize(self, params):
4763
4777
  self._ClusterId = params.get("ClusterId")
4764
4778
  self._Type = params.get("Type")
4779
+ self._ClusterName = params.get("ClusterName")
4765
4780
  memeber_set = set(params.keys())
4766
4781
  for name, value in vars(self).items():
4767
4782
  property_name = name[1:]
@@ -37206,6 +37221,12 @@ class UserGroupInfo(AbstractModel):
37206
37221
  :param _BudgetName: <p>关联的Budget名称。</p><p>未关联时为空;「未分组」虚拟分组恒为空。</p>
37207
37222
  注意:此字段可能返回 null,表示取不到有效值。
37208
37223
  :type BudgetName: str
37224
+ :param _PromptId: <p>关联的提示词 ID。</p><p>未关联时为空;「未分组」虚拟分组恒为空。</p><p>参数格式:pmt-1a2b3c4d</p>
37225
+ :type PromptId: str
37226
+ :param _PromptVersion: <p>关联的提示词版本。</p><p>未关联时为空;「未分组」虚拟分组恒为空。</p>
37227
+ :type PromptVersion: str
37228
+ :param _PromptName: <p>关联的提示词名称。</p><p>未关联时为空;「未分组」虚拟分组恒为空。</p>
37229
+ :type PromptName: str
37209
37230
  :param _CreditUsageSet: <p>用户组多刷新周期 Credit 使用情况。</p><p>无多周期预算时为空数组。</p>
37210
37231
  :type CreditUsageSet: list of CreditUsage
37211
37232
  :param _KeyCount: <p>用户组当前包含的 Key 数量。「未分组」虚拟分组(ugrp-ungrouped)返回该模型路由实例下未归属任何用户组的 Key 数量。</p>
@@ -37225,6 +37246,9 @@ class UserGroupInfo(AbstractModel):
37225
37246
  self._IntentRouters = None
37226
37247
  self._BudgetId = None
37227
37248
  self._BudgetName = None
37249
+ self._PromptId = None
37250
+ self._PromptVersion = None
37251
+ self._PromptName = None
37228
37252
  self._CreditUsageSet = None
37229
37253
  self._KeyCount = None
37230
37254
  self._Tags = None
@@ -37321,6 +37345,39 @@ class UserGroupInfo(AbstractModel):
37321
37345
  def BudgetName(self, BudgetName):
37322
37346
  self._BudgetName = BudgetName
37323
37347
 
37348
+ @property
37349
+ def PromptId(self):
37350
+ r"""<p>关联的提示词 ID。</p><p>未关联时为空;「未分组」虚拟分组恒为空。</p><p>参数格式:pmt-1a2b3c4d</p>
37351
+ :rtype: str
37352
+ """
37353
+ return self._PromptId
37354
+
37355
+ @PromptId.setter
37356
+ def PromptId(self, PromptId):
37357
+ self._PromptId = PromptId
37358
+
37359
+ @property
37360
+ def PromptVersion(self):
37361
+ r"""<p>关联的提示词版本。</p><p>未关联时为空;「未分组」虚拟分组恒为空。</p>
37362
+ :rtype: str
37363
+ """
37364
+ return self._PromptVersion
37365
+
37366
+ @PromptVersion.setter
37367
+ def PromptVersion(self, PromptVersion):
37368
+ self._PromptVersion = PromptVersion
37369
+
37370
+ @property
37371
+ def PromptName(self):
37372
+ r"""<p>关联的提示词名称。</p><p>未关联时为空;「未分组」虚拟分组恒为空。</p>
37373
+ :rtype: str
37374
+ """
37375
+ return self._PromptName
37376
+
37377
+ @PromptName.setter
37378
+ def PromptName(self, PromptName):
37379
+ self._PromptName = PromptName
37380
+
37324
37381
  @property
37325
37382
  def CreditUsageSet(self):
37326
37383
  r"""<p>用户组多刷新周期 Credit 使用情况。</p><p>无多周期预算时为空数组。</p>
@@ -37386,6 +37443,9 @@ class UserGroupInfo(AbstractModel):
37386
37443
  self._IntentRouters = params.get("IntentRouters")
37387
37444
  self._BudgetId = params.get("BudgetId")
37388
37445
  self._BudgetName = params.get("BudgetName")
37446
+ self._PromptId = params.get("PromptId")
37447
+ self._PromptVersion = params.get("PromptVersion")
37448
+ self._PromptName = params.get("PromptName")
37389
37449
  if params.get("CreditUsageSet") is not None:
37390
37450
  self._CreditUsageSet = []
37391
37451
  for item in params.get("CreditUsageSet"):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-clb
3
- Version: 3.1.129
3
+ Version: 3.1.140
4
4
  Summary: Tencent Cloud Clb SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.129
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.140
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.140
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.129