tencentcloud-sdk-python-dlc 3.1.96__tar.gz → 3.1.99__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_dlc-3.1.96 → tencentcloud_sdk_python_dlc-3.1.99}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_dlc-3.1.96 → tencentcloud_sdk_python_dlc-3.1.99}/setup.py +1 -1
  3. {tencentcloud_sdk_python_dlc-3.1.96 → tencentcloud_sdk_python_dlc-3.1.99}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_dlc-3.1.96 → tencentcloud_sdk_python_dlc-3.1.99}/tencentcloud/dlc/v20210125/models.py +15 -0
  5. {tencentcloud_sdk_python_dlc-3.1.96 → tencentcloud_sdk_python_dlc-3.1.99}/tencentcloud_sdk_python_dlc.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_dlc-3.1.99/tencentcloud_sdk_python_dlc.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_dlc-3.1.96/tencentcloud_sdk_python_dlc.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_dlc-3.1.96 → tencentcloud_sdk_python_dlc-3.1.99}/README.rst +0 -0
  9. {tencentcloud_sdk_python_dlc-3.1.96 → tencentcloud_sdk_python_dlc-3.1.99}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_dlc-3.1.96 → tencentcloud_sdk_python_dlc-3.1.99}/tencentcloud/dlc/__init__.py +0 -0
  11. {tencentcloud_sdk_python_dlc-3.1.96 → tencentcloud_sdk_python_dlc-3.1.99}/tencentcloud/dlc/v20210125/__init__.py +0 -0
  12. {tencentcloud_sdk_python_dlc-3.1.96 → tencentcloud_sdk_python_dlc-3.1.99}/tencentcloud/dlc/v20210125/dlc_client.py +0 -0
  13. {tencentcloud_sdk_python_dlc-3.1.96 → tencentcloud_sdk_python_dlc-3.1.99}/tencentcloud/dlc/v20210125/dlc_client_async.py +0 -0
  14. {tencentcloud_sdk_python_dlc-3.1.96 → tencentcloud_sdk_python_dlc-3.1.99}/tencentcloud/dlc/v20210125/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_dlc-3.1.96 → tencentcloud_sdk_python_dlc-3.1.99}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_dlc-3.1.96 → tencentcloud_sdk_python_dlc-3.1.99}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_dlc-3.1.96 → tencentcloud_sdk_python_dlc-3.1.99}/tencentcloud_sdk_python_dlc.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-dlc
3
- Version: 3.1.96
3
+ Version: 3.1.99
4
4
  Summary: Tencent Cloud Dlc 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.96
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.99
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-dlc',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.96,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.99,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Dlc SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.96'
17
+ __version__ = '3.1.99'
@@ -41712,6 +41712,8 @@ class TaskFullRespInfo(AbstractModel):
41712
41712
  :type ShuffleWriteBytesSum: int
41713
41713
  :param _ActiveCore: <p>活跃core</p>
41714
41714
  :type ActiveCore: int
41715
+ :param _QueueTime: <p>排队时间</p><p>单位:毫秒</p>
41716
+ :type QueueTime: int
41715
41717
  """
41716
41718
  self._DatabaseName = None
41717
41719
  self._DataAmount = None
@@ -41783,6 +41785,7 @@ class TaskFullRespInfo(AbstractModel):
41783
41785
  self._GpuExecutorSize = None
41784
41786
  self._ShuffleWriteBytesSum = None
41785
41787
  self._ActiveCore = None
41788
+ self._QueueTime = None
41786
41789
 
41787
41790
  @property
41788
41791
  def DatabaseName(self):
@@ -42582,6 +42585,17 @@ class TaskFullRespInfo(AbstractModel):
42582
42585
  def ActiveCore(self, ActiveCore):
42583
42586
  self._ActiveCore = ActiveCore
42584
42587
 
42588
+ @property
42589
+ def QueueTime(self):
42590
+ r"""<p>排队时间</p><p>单位:毫秒</p>
42591
+ :rtype: int
42592
+ """
42593
+ return self._QueueTime
42594
+
42595
+ @QueueTime.setter
42596
+ def QueueTime(self, QueueTime):
42597
+ self._QueueTime = QueueTime
42598
+
42585
42599
 
42586
42600
  def _deserialize(self, params):
42587
42601
  self._DatabaseName = params.get("DatabaseName")
@@ -42660,6 +42674,7 @@ class TaskFullRespInfo(AbstractModel):
42660
42674
  self._GpuExecutorSize = params.get("GpuExecutorSize")
42661
42675
  self._ShuffleWriteBytesSum = params.get("ShuffleWriteBytesSum")
42662
42676
  self._ActiveCore = params.get("ActiveCore")
42677
+ self._QueueTime = params.get("QueueTime")
42663
42678
  memeber_set = set(params.keys())
42664
42679
  for name, value in vars(self).items():
42665
42680
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-dlc
3
- Version: 3.1.96
3
+ Version: 3.1.99
4
4
  Summary: Tencent Cloud Dlc 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.96
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.99
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.99
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.96