tencentcloud-sdk-python 3.0.1343__py2.py3-none-any.whl → 3.0.1344__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/billing/v20180709/models.py +0 -14
- tencentcloud/cdb/v20170320/cdb_client.py +23 -0
- tencentcloud/cdb/v20170320/models.py +117 -0
- tencentcloud/clb/v20180317/models.py +39 -10
- tencentcloud/cls/v20201016/models.py +17 -186
- tencentcloud/cynosdb/v20190107/models.py +2 -2
- tencentcloud/dbbrain/v20191016/models.py +0 -16
- tencentcloud/dbbrain/v20210527/models.py +0 -14
- tencentcloud/domain/v20180808/models.py +0 -8
- tencentcloud/ess/v20201111/models.py +4 -2
- tencentcloud/essbasic/v20210526/models.py +4 -2
- tencentcloud/fmu/v20191213/errorcodes.py +3 -0
- tencentcloud/fmu/v20191213/models.py +4 -4
- tencentcloud/goosefs/v20220519/models.py +0 -2
- tencentcloud/gwlb/v20240906/models.py +4 -4
- tencentcloud/hai/v20230812/errorcodes.py +1 -1
- tencentcloud/iotcloud/v20210408/models.py +2 -4
- tencentcloud/lighthouse/v20200324/models.py +12 -20
- tencentcloud/lke/v20231130/models.py +15 -0
- tencentcloud/lowcode/v20210108/models.py +0 -2
- tencentcloud/monitor/v20180724/models.py +251 -0
- tencentcloud/monitor/v20180724/monitor_client.py +23 -0
- tencentcloud/mps/v20190612/errorcodes.py +34 -0
- tencentcloud/mps/v20190612/models.py +4129 -429
- tencentcloud/mps/v20190612/mps_client.py +208 -0
- tencentcloud/redis/v20180412/models.py +64 -0
- tencentcloud/redis/v20180412/redis_client.py +23 -0
- tencentcloud/tcb/v20180608/models.py +109 -153
- tencentcloud/tcb/v20180608/tcb_client.py +23 -0
- tencentcloud/tdmq/v20200217/models.py +158 -282
- tencentcloud/wedata/v20210820/models.py +90 -0
- tencentcloud/weilingwith/v20230427/models.py +0 -964
- {tencentcloud_sdk_python-3.0.1343.dist-info → tencentcloud_sdk_python-3.0.1344.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1343.dist-info → tencentcloud_sdk_python-3.0.1344.dist-info}/RECORD +38 -38
- {tencentcloud_sdk_python-3.0.1343.dist-info → tencentcloud_sdk_python-3.0.1344.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1343.dist-info → tencentcloud_sdk_python-3.0.1344.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1343.dist-info → tencentcloud_sdk_python-3.0.1344.dist-info}/top_level.txt +0 -0
@@ -10586,10 +10586,13 @@ class CreateDsFolderRequest(AbstractModel):
|
|
10586
10586
|
:type FolderName: str
|
10587
10587
|
:param _ParentsFolderId: 父文件夹ID
|
10588
10588
|
:type ParentsFolderId: str
|
10589
|
+
:param _FolderForm: 文件夹来源 template管理,orchestrationSpace 编排空间
|
10590
|
+
:type FolderForm: str
|
10589
10591
|
"""
|
10590
10592
|
self._ProjectId = None
|
10591
10593
|
self._FolderName = None
|
10592
10594
|
self._ParentsFolderId = None
|
10595
|
+
self._FolderForm = None
|
10593
10596
|
|
10594
10597
|
@property
|
10595
10598
|
def ProjectId(self):
|
@@ -10624,11 +10627,23 @@ class CreateDsFolderRequest(AbstractModel):
|
|
10624
10627
|
def ParentsFolderId(self, ParentsFolderId):
|
10625
10628
|
self._ParentsFolderId = ParentsFolderId
|
10626
10629
|
|
10630
|
+
@property
|
10631
|
+
def FolderForm(self):
|
10632
|
+
"""文件夹来源 template管理,orchestrationSpace 编排空间
|
10633
|
+
:rtype: str
|
10634
|
+
"""
|
10635
|
+
return self._FolderForm
|
10636
|
+
|
10637
|
+
@FolderForm.setter
|
10638
|
+
def FolderForm(self, FolderForm):
|
10639
|
+
self._FolderForm = FolderForm
|
10640
|
+
|
10627
10641
|
|
10628
10642
|
def _deserialize(self, params):
|
10629
10643
|
self._ProjectId = params.get("ProjectId")
|
10630
10644
|
self._FolderName = params.get("FolderName")
|
10631
10645
|
self._ParentsFolderId = params.get("ParentsFolderId")
|
10646
|
+
self._FolderForm = params.get("FolderForm")
|
10632
10647
|
memeber_set = set(params.keys())
|
10633
10648
|
for name, value in vars(self).items():
|
10634
10649
|
property_name = name[1:]
|
@@ -23477,6 +23492,16 @@ false 否
|
|
23477
23492
|
- cycle 周期工作流
|
23478
23493
|
- manual 手动工作流
|
23479
23494
|
:type WorkflowType: str
|
23495
|
+
:param _TaskTypeIdList: 任务类型id列表
|
23496
|
+
:type TaskTypeIdList: list of int
|
23497
|
+
:param _InChargeIdList: 责任人id列表
|
23498
|
+
:type InChargeIdList: list of str
|
23499
|
+
:param _OnlyMe: 自身责任人
|
23500
|
+
:type OnlyMe: bool
|
23501
|
+
:param _IncludeCodeTemplate: 是否包含代码模版
|
23502
|
+
:type IncludeCodeTemplate: bool
|
23503
|
+
:param _FolderForm: 编排空间 或代码模版 orchestrationSpace 编排空间 template模版管理
|
23504
|
+
:type FolderForm: str
|
23480
23505
|
"""
|
23481
23506
|
self._ProjectId = None
|
23482
23507
|
self._FirstLevelPull = None
|
@@ -23492,6 +23517,11 @@ false 否
|
|
23492
23517
|
self._NewFolderTreeMode = None
|
23493
23518
|
self._TaskNodeId = None
|
23494
23519
|
self._WorkflowType = None
|
23520
|
+
self._TaskTypeIdList = None
|
23521
|
+
self._InChargeIdList = None
|
23522
|
+
self._OnlyMe = None
|
23523
|
+
self._IncludeCodeTemplate = None
|
23524
|
+
self._FolderForm = None
|
23495
23525
|
|
23496
23526
|
@property
|
23497
23527
|
def ProjectId(self):
|
@@ -23654,6 +23684,61 @@ false 否
|
|
23654
23684
|
def WorkflowType(self, WorkflowType):
|
23655
23685
|
self._WorkflowType = WorkflowType
|
23656
23686
|
|
23687
|
+
@property
|
23688
|
+
def TaskTypeIdList(self):
|
23689
|
+
"""任务类型id列表
|
23690
|
+
:rtype: list of int
|
23691
|
+
"""
|
23692
|
+
return self._TaskTypeIdList
|
23693
|
+
|
23694
|
+
@TaskTypeIdList.setter
|
23695
|
+
def TaskTypeIdList(self, TaskTypeIdList):
|
23696
|
+
self._TaskTypeIdList = TaskTypeIdList
|
23697
|
+
|
23698
|
+
@property
|
23699
|
+
def InChargeIdList(self):
|
23700
|
+
"""责任人id列表
|
23701
|
+
:rtype: list of str
|
23702
|
+
"""
|
23703
|
+
return self._InChargeIdList
|
23704
|
+
|
23705
|
+
@InChargeIdList.setter
|
23706
|
+
def InChargeIdList(self, InChargeIdList):
|
23707
|
+
self._InChargeIdList = InChargeIdList
|
23708
|
+
|
23709
|
+
@property
|
23710
|
+
def OnlyMe(self):
|
23711
|
+
"""自身责任人
|
23712
|
+
:rtype: bool
|
23713
|
+
"""
|
23714
|
+
return self._OnlyMe
|
23715
|
+
|
23716
|
+
@OnlyMe.setter
|
23717
|
+
def OnlyMe(self, OnlyMe):
|
23718
|
+
self._OnlyMe = OnlyMe
|
23719
|
+
|
23720
|
+
@property
|
23721
|
+
def IncludeCodeTemplate(self):
|
23722
|
+
"""是否包含代码模版
|
23723
|
+
:rtype: bool
|
23724
|
+
"""
|
23725
|
+
return self._IncludeCodeTemplate
|
23726
|
+
|
23727
|
+
@IncludeCodeTemplate.setter
|
23728
|
+
def IncludeCodeTemplate(self, IncludeCodeTemplate):
|
23729
|
+
self._IncludeCodeTemplate = IncludeCodeTemplate
|
23730
|
+
|
23731
|
+
@property
|
23732
|
+
def FolderForm(self):
|
23733
|
+
"""编排空间 或代码模版 orchestrationSpace 编排空间 template模版管理
|
23734
|
+
:rtype: str
|
23735
|
+
"""
|
23736
|
+
return self._FolderForm
|
23737
|
+
|
23738
|
+
@FolderForm.setter
|
23739
|
+
def FolderForm(self, FolderForm):
|
23740
|
+
self._FolderForm = FolderForm
|
23741
|
+
|
23657
23742
|
|
23658
23743
|
def _deserialize(self, params):
|
23659
23744
|
self._ProjectId = params.get("ProjectId")
|
@@ -23670,6 +23755,11 @@ false 否
|
|
23670
23755
|
self._NewFolderTreeMode = params.get("NewFolderTreeMode")
|
23671
23756
|
self._TaskNodeId = params.get("TaskNodeId")
|
23672
23757
|
self._WorkflowType = params.get("WorkflowType")
|
23758
|
+
self._TaskTypeIdList = params.get("TaskTypeIdList")
|
23759
|
+
self._InChargeIdList = params.get("InChargeIdList")
|
23760
|
+
self._OnlyMe = params.get("OnlyMe")
|
23761
|
+
self._IncludeCodeTemplate = params.get("IncludeCodeTemplate")
|
23762
|
+
self._FolderForm = params.get("FolderForm")
|
23673
23763
|
memeber_set = set(params.keys())
|
23674
23764
|
for name, value in vars(self).items():
|
23675
23765
|
property_name = name[1:]
|