tencentcloud-sdk-python-omics 3.0.1277__tar.gz → 3.0.1293__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.
- {tencentcloud-sdk-python-omics-3.0.1277 → tencentcloud-sdk-python-omics-3.0.1293}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-omics-3.0.1277 → tencentcloud-sdk-python-omics-3.0.1293}/setup.py +1 -1
- {tencentcloud-sdk-python-omics-3.0.1277 → tencentcloud-sdk-python-omics-3.0.1293}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-omics-3.0.1277 → tencentcloud-sdk-python-omics-3.0.1293}/tencentcloud/omics/v20221128/models.py +15 -0
- {tencentcloud-sdk-python-omics-3.0.1277 → tencentcloud-sdk-python-omics-3.0.1293}/tencentcloud_sdk_python_omics.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-omics-3.0.1293/tencentcloud_sdk_python_omics.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-omics-3.0.1277/tencentcloud_sdk_python_omics.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-omics-3.0.1277 → tencentcloud-sdk-python-omics-3.0.1293}/README.rst +0 -0
- {tencentcloud-sdk-python-omics-3.0.1277 → tencentcloud-sdk-python-omics-3.0.1293}/setup.cfg +0 -0
- {tencentcloud-sdk-python-omics-3.0.1277 → tencentcloud-sdk-python-omics-3.0.1293}/tencentcloud/omics/__init__.py +0 -0
- {tencentcloud-sdk-python-omics-3.0.1277 → tencentcloud-sdk-python-omics-3.0.1293}/tencentcloud/omics/v20221128/__init__.py +0 -0
- {tencentcloud-sdk-python-omics-3.0.1277 → tencentcloud-sdk-python-omics-3.0.1293}/tencentcloud/omics/v20221128/errorcodes.py +0 -0
- {tencentcloud-sdk-python-omics-3.0.1277 → tencentcloud-sdk-python-omics-3.0.1293}/tencentcloud/omics/v20221128/omics_client.py +0 -0
- {tencentcloud-sdk-python-omics-3.0.1277 → tencentcloud-sdk-python-omics-3.0.1293}/tencentcloud_sdk_python_omics.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-omics-3.0.1277 → tencentcloud-sdk-python-omics-3.0.1293}/tencentcloud_sdk_python_omics.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-omics-3.0.1277 → tencentcloud-sdk-python-omics-3.0.1293}/tencentcloud_sdk_python_omics.egg-info/top_level.txt +0 -0
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-omics',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1293"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Omics SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -5390,6 +5390,8 @@ class RunWorkflowRequest(AbstractModel):
|
|
|
5390
5390
|
:type WorkDir: str
|
|
5391
5391
|
:param _VolumeIds: 缓存卷ID,不填使用默认缓存卷,暂时仅支持Nextflow。
|
|
5392
5392
|
:type VolumeIds: list of str
|
|
5393
|
+
:param _Entrypoint: 工作流入口文件,不填使用默认入口文件。
|
|
5394
|
+
:type Entrypoint: str
|
|
5393
5395
|
"""
|
|
5394
5396
|
self._Name = None
|
|
5395
5397
|
self._EnvironmentId = None
|
|
@@ -5403,6 +5405,7 @@ class RunWorkflowRequest(AbstractModel):
|
|
|
5403
5405
|
self._CacheClearDelay = None
|
|
5404
5406
|
self._WorkDir = None
|
|
5405
5407
|
self._VolumeIds = None
|
|
5408
|
+
self._Entrypoint = None
|
|
5406
5409
|
|
|
5407
5410
|
@property
|
|
5408
5411
|
def Name(self):
|
|
@@ -5542,6 +5545,17 @@ class RunWorkflowRequest(AbstractModel):
|
|
|
5542
5545
|
def VolumeIds(self, VolumeIds):
|
|
5543
5546
|
self._VolumeIds = VolumeIds
|
|
5544
5547
|
|
|
5548
|
+
@property
|
|
5549
|
+
def Entrypoint(self):
|
|
5550
|
+
"""工作流入口文件,不填使用默认入口文件。
|
|
5551
|
+
:rtype: str
|
|
5552
|
+
"""
|
|
5553
|
+
return self._Entrypoint
|
|
5554
|
+
|
|
5555
|
+
@Entrypoint.setter
|
|
5556
|
+
def Entrypoint(self, Entrypoint):
|
|
5557
|
+
self._Entrypoint = Entrypoint
|
|
5558
|
+
|
|
5545
5559
|
|
|
5546
5560
|
def _deserialize(self, params):
|
|
5547
5561
|
self._Name = params.get("Name")
|
|
@@ -5560,6 +5574,7 @@ class RunWorkflowRequest(AbstractModel):
|
|
|
5560
5574
|
self._CacheClearDelay = params.get("CacheClearDelay")
|
|
5561
5575
|
self._WorkDir = params.get("WorkDir")
|
|
5562
5576
|
self._VolumeIds = params.get("VolumeIds")
|
|
5577
|
+
self._Entrypoint = params.get("Entrypoint")
|
|
5563
5578
|
memeber_set = set(params.keys())
|
|
5564
5579
|
for name, value in vars(self).items():
|
|
5565
5580
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1293
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1277
|
{tencentcloud-sdk-python-omics-3.0.1277 → tencentcloud-sdk-python-omics-3.0.1293}/README.rst
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|