tencentcloud-sdk-python-tsf 3.1.76__tar.gz → 3.1.94__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_tsf-3.1.76 → tencentcloud_sdk_python_tsf-3.1.94}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_tsf-3.1.76 → tencentcloud_sdk_python_tsf-3.1.94}/setup.py +1 -1
  3. {tencentcloud_sdk_python_tsf-3.1.76 → tencentcloud_sdk_python_tsf-3.1.94}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_tsf-3.1.76 → tencentcloud_sdk_python_tsf-3.1.94}/tencentcloud/tsf/v20180326/errorcodes.py +3 -0
  5. {tencentcloud_sdk_python_tsf-3.1.76 → tencentcloud_sdk_python_tsf-3.1.94}/tencentcloud/tsf/v20180326/models.py +76 -8
  6. {tencentcloud_sdk_python_tsf-3.1.76 → tencentcloud_sdk_python_tsf-3.1.94}/tencentcloud_sdk_python_tsf.egg-info/PKG-INFO +2 -2
  7. tencentcloud_sdk_python_tsf-3.1.94/tencentcloud_sdk_python_tsf.egg-info/requires.txt +1 -0
  8. tencentcloud_sdk_python_tsf-3.1.76/tencentcloud_sdk_python_tsf.egg-info/requires.txt +0 -1
  9. {tencentcloud_sdk_python_tsf-3.1.76 → tencentcloud_sdk_python_tsf-3.1.94}/README.rst +0 -0
  10. {tencentcloud_sdk_python_tsf-3.1.76 → tencentcloud_sdk_python_tsf-3.1.94}/setup.cfg +0 -0
  11. {tencentcloud_sdk_python_tsf-3.1.76 → tencentcloud_sdk_python_tsf-3.1.94}/tencentcloud/tsf/__init__.py +0 -0
  12. {tencentcloud_sdk_python_tsf-3.1.76 → tencentcloud_sdk_python_tsf-3.1.94}/tencentcloud/tsf/v20180326/__init__.py +0 -0
  13. {tencentcloud_sdk_python_tsf-3.1.76 → tencentcloud_sdk_python_tsf-3.1.94}/tencentcloud/tsf/v20180326/tsf_client.py +0 -0
  14. {tencentcloud_sdk_python_tsf-3.1.76 → tencentcloud_sdk_python_tsf-3.1.94}/tencentcloud/tsf/v20180326/tsf_client_async.py +0 -0
  15. {tencentcloud_sdk_python_tsf-3.1.76 → tencentcloud_sdk_python_tsf-3.1.94}/tencentcloud_sdk_python_tsf.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_tsf-3.1.76 → tencentcloud_sdk_python_tsf-3.1.94}/tencentcloud_sdk_python_tsf.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_tsf-3.1.76 → tencentcloud_sdk_python_tsf-3.1.94}/tencentcloud_sdk_python_tsf.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-tsf
3
- Version: 3.1.76
3
+ Version: 3.1.94
4
4
  Summary: Tencent Cloud Tsf 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.76
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.94
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-tsf',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.76,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.94,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Tsf SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.76'
17
+ __version__ = '3.1.94'
@@ -956,6 +956,9 @@ INVALIDPARAMETERVALUE_INVALIDPARAMETERFORMAT = 'InvalidParameterValue.InvalidPar
956
956
  # 数据集名非法。
957
957
  INVALIDPARAMETERVALUE_INVALIDPROGRAMNAME = 'InvalidParameterValue.InvalidProgramName'
958
958
 
959
+ # 部署组不存在或已被删除[部署组ID]
960
+ INVALIDPARAMETERVALUE_LANEGROUPNOTEXIST = 'InvalidParameterValue.LaneGroupNotExist'
961
+
959
962
  # 该泳道已关联全链路灰度发布规则,请先从规则中移除后删除
960
963
  INVALIDPARAMETERVALUE_LANEINFOALREADYUSED = 'InvalidParameterValue.LaneInfoAlreadyUsed'
961
964
 
@@ -29624,20 +29624,23 @@ class DescribeProgramsRequest(AbstractModel):
29624
29624
 
29625
29625
  def __init__(self):
29626
29626
  r"""
29627
- :param _SearchWord: 模糊查询数据集ID,数据集名称,不传入时查询全量
29627
+ :param _SearchWord: <p>模糊查询数据集ID,数据集名称,不传入时查询全量</p>
29628
29628
  :type SearchWord: str
29629
- :param _Limit: 每页数量,默认值20
29629
+ :param _Limit: <p>每页数量,默认值20</p>
29630
29630
  :type Limit: int
29631
- :param _Offset: 起始偏移量,默认值0
29631
+ :param _Offset: <p>起始偏移量,默认值0</p>
29632
29632
  :type Offset: int
29633
+ :param _SearchFilters: <p>模糊查询,传递模糊查询字段和对应的值</p>
29634
+ :type SearchFilters: :class:`tencentcloud.tsf.v20180326.models.SearchFiltersProgram`
29633
29635
  """
29634
29636
  self._SearchWord = None
29635
29637
  self._Limit = None
29636
29638
  self._Offset = None
29639
+ self._SearchFilters = None
29637
29640
 
29638
29641
  @property
29639
29642
  def SearchWord(self):
29640
- r"""模糊查询数据集ID,数据集名称,不传入时查询全量
29643
+ r"""<p>模糊查询数据集ID,数据集名称,不传入时查询全量</p>
29641
29644
  :rtype: str
29642
29645
  """
29643
29646
  return self._SearchWord
@@ -29648,7 +29651,7 @@ class DescribeProgramsRequest(AbstractModel):
29648
29651
 
29649
29652
  @property
29650
29653
  def Limit(self):
29651
- r"""每页数量,默认值20
29654
+ r"""<p>每页数量,默认值20</p>
29652
29655
  :rtype: int
29653
29656
  """
29654
29657
  return self._Limit
@@ -29659,7 +29662,7 @@ class DescribeProgramsRequest(AbstractModel):
29659
29662
 
29660
29663
  @property
29661
29664
  def Offset(self):
29662
- r"""起始偏移量,默认值0
29665
+ r"""<p>起始偏移量,默认值0</p>
29663
29666
  :rtype: int
29664
29667
  """
29665
29668
  return self._Offset
@@ -29668,11 +29671,25 @@ class DescribeProgramsRequest(AbstractModel):
29668
29671
  def Offset(self, Offset):
29669
29672
  self._Offset = Offset
29670
29673
 
29674
+ @property
29675
+ def SearchFilters(self):
29676
+ r"""<p>模糊查询,传递模糊查询字段和对应的值</p>
29677
+ :rtype: :class:`tencentcloud.tsf.v20180326.models.SearchFiltersProgram`
29678
+ """
29679
+ return self._SearchFilters
29680
+
29681
+ @SearchFilters.setter
29682
+ def SearchFilters(self, SearchFilters):
29683
+ self._SearchFilters = SearchFilters
29684
+
29671
29685
 
29672
29686
  def _deserialize(self, params):
29673
29687
  self._SearchWord = params.get("SearchWord")
29674
29688
  self._Limit = params.get("Limit")
29675
29689
  self._Offset = params.get("Offset")
29690
+ if params.get("SearchFilters") is not None:
29691
+ self._SearchFilters = SearchFiltersProgram()
29692
+ self._SearchFilters._deserialize(params.get("SearchFilters"))
29676
29693
  memeber_set = set(params.keys())
29677
29694
  for name, value in vars(self).items():
29678
29695
  property_name = name[1:]
@@ -29690,7 +29707,7 @@ class DescribeProgramsResponse(AbstractModel):
29690
29707
 
29691
29708
  def __init__(self):
29692
29709
  r"""
29693
- :param _Result: 数据集列表
29710
+ :param _Result: <p>数据集列表</p>
29694
29711
  :type Result: :class:`tencentcloud.tsf.v20180326.models.PagedProgram`
29695
29712
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
29696
29713
  :type RequestId: str
@@ -29700,7 +29717,7 @@ class DescribeProgramsResponse(AbstractModel):
29700
29717
 
29701
29718
  @property
29702
29719
  def Result(self):
29703
- r"""数据集列表
29720
+ r"""<p>数据集列表</p>
29704
29721
  :rtype: :class:`tencentcloud.tsf.v20180326.models.PagedProgram`
29705
29722
  """
29706
29723
  return self._Result
@@ -50309,6 +50326,57 @@ class SearchBusinessLogResponse(AbstractModel):
50309
50326
  self._RequestId = params.get("RequestId")
50310
50327
 
50311
50328
 
50329
+ class SearchFiltersProgram(AbstractModel):
50330
+ r"""模糊查询数据集信息指定字段和值
50331
+
50332
+ """
50333
+
50334
+ def __init__(self):
50335
+ r"""
50336
+ :param _ProgramId: <p>数据集ID</p>
50337
+ :type ProgramId: str
50338
+ :param _ProgramName: <p>数据集名称</p>
50339
+ :type ProgramName: str
50340
+ """
50341
+ self._ProgramId = None
50342
+ self._ProgramName = None
50343
+
50344
+ @property
50345
+ def ProgramId(self):
50346
+ r"""<p>数据集ID</p>
50347
+ :rtype: str
50348
+ """
50349
+ return self._ProgramId
50350
+
50351
+ @ProgramId.setter
50352
+ def ProgramId(self, ProgramId):
50353
+ self._ProgramId = ProgramId
50354
+
50355
+ @property
50356
+ def ProgramName(self):
50357
+ r"""<p>数据集名称</p>
50358
+ :rtype: str
50359
+ """
50360
+ return self._ProgramName
50361
+
50362
+ @ProgramName.setter
50363
+ def ProgramName(self, ProgramName):
50364
+ self._ProgramName = ProgramName
50365
+
50366
+
50367
+ def _deserialize(self, params):
50368
+ self._ProgramId = params.get("ProgramId")
50369
+ self._ProgramName = params.get("ProgramName")
50370
+ memeber_set = set(params.keys())
50371
+ for name, value in vars(self).items():
50372
+ property_name = name[1:]
50373
+ if property_name in memeber_set:
50374
+ memeber_set.remove(property_name)
50375
+ if len(memeber_set) > 0:
50376
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
50377
+
50378
+
50379
+
50312
50380
  class SearchStdoutLogRequest(AbstractModel):
50313
50381
  r"""SearchStdoutLog请求参数结构体
50314
50382
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-tsf
3
- Version: 3.1.76
3
+ Version: 3.1.94
4
4
  Summary: Tencent Cloud Tsf 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.76
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.94
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.94
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.76