tencentcloud-sdk-python-dlc 3.0.952__tar.gz → 3.0.954__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-dlc-3.0.952 → tencentcloud-sdk-python-dlc-3.0.954}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dlc-3.0.952 → tencentcloud-sdk-python-dlc-3.0.954}/setup.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.952 → tencentcloud-sdk-python-dlc-3.0.954}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.952 → tencentcloud-sdk-python-dlc-3.0.954}/tencentcloud/dlc/v20210125/models.py +24 -0
- {tencentcloud-sdk-python-dlc-3.0.952 → tencentcloud-sdk-python-dlc-3.0.954}/tencentcloud_sdk_python_dlc.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-dlc-3.0.954/tencentcloud_sdk_python_dlc.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-dlc-3.0.952/tencentcloud_sdk_python_dlc.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-dlc-3.0.952 → tencentcloud-sdk-python-dlc-3.0.954}/README.rst +0 -0
- {tencentcloud-sdk-python-dlc-3.0.952 → tencentcloud-sdk-python-dlc-3.0.954}/setup.cfg +0 -0
- {tencentcloud-sdk-python-dlc-3.0.952 → tencentcloud-sdk-python-dlc-3.0.954}/tencentcloud/dlc/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.952 → tencentcloud-sdk-python-dlc-3.0.954}/tencentcloud/dlc/v20210125/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.952 → tencentcloud-sdk-python-dlc-3.0.954}/tencentcloud/dlc/v20210125/dlc_client.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.952 → tencentcloud-sdk-python-dlc-3.0.954}/tencentcloud/dlc/v20210125/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.952 → tencentcloud-sdk-python-dlc-3.0.954}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.952 → tencentcloud-sdk-python-dlc-3.0.954}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.952 → tencentcloud-sdk-python-dlc-3.0.954}/tencentcloud_sdk_python_dlc.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-dlc',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.954"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Dlc SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -3194,6 +3194,8 @@ class CreateNotebookSessionRequest(AbstractModel):
|
|
|
3194
3194
|
:type ExecutorMaxNumbers: int
|
|
3195
3195
|
:param _SparkImage: 指定spark版本名称,当前任务使用该spark镜像运行
|
|
3196
3196
|
:type SparkImage: str
|
|
3197
|
+
:param _IsInherit: 是否继承集群的资源类配置:0:自定义(默认),1:继承集群;
|
|
3198
|
+
:type IsInherit: int
|
|
3197
3199
|
"""
|
|
3198
3200
|
self._Name = None
|
|
3199
3201
|
self._Kind = None
|
|
@@ -3210,6 +3212,7 @@ class CreateNotebookSessionRequest(AbstractModel):
|
|
|
3210
3212
|
self._TimeoutInSecond = None
|
|
3211
3213
|
self._ExecutorMaxNumbers = None
|
|
3212
3214
|
self._SparkImage = None
|
|
3215
|
+
self._IsInherit = None
|
|
3213
3216
|
|
|
3214
3217
|
@property
|
|
3215
3218
|
def Name(self):
|
|
@@ -3331,6 +3334,14 @@ class CreateNotebookSessionRequest(AbstractModel):
|
|
|
3331
3334
|
def SparkImage(self, SparkImage):
|
|
3332
3335
|
self._SparkImage = SparkImage
|
|
3333
3336
|
|
|
3337
|
+
@property
|
|
3338
|
+
def IsInherit(self):
|
|
3339
|
+
return self._IsInherit
|
|
3340
|
+
|
|
3341
|
+
@IsInherit.setter
|
|
3342
|
+
def IsInherit(self, IsInherit):
|
|
3343
|
+
self._IsInherit = IsInherit
|
|
3344
|
+
|
|
3334
3345
|
|
|
3335
3346
|
def _deserialize(self, params):
|
|
3336
3347
|
self._Name = params.get("Name")
|
|
@@ -3353,6 +3364,7 @@ class CreateNotebookSessionRequest(AbstractModel):
|
|
|
3353
3364
|
self._TimeoutInSecond = params.get("TimeoutInSecond")
|
|
3354
3365
|
self._ExecutorMaxNumbers = params.get("ExecutorMaxNumbers")
|
|
3355
3366
|
self._SparkImage = params.get("SparkImage")
|
|
3367
|
+
self._IsInherit = params.get("IsInherit")
|
|
3356
3368
|
memeber_set = set(params.keys())
|
|
3357
3369
|
for name, value in vars(self).items():
|
|
3358
3370
|
property_name = name[1:]
|
|
@@ -4347,6 +4359,8 @@ class CreateSparkSessionBatchSQLRequest(AbstractModel):
|
|
|
4347
4359
|
2.dlc.role.arn:用户配置的roleArn鉴权策略配置信息,可以用过该字段设置;
|
|
4348
4360
|
3.dlc.sql.set.config:用户配置的集群配置信息,可以用过该字段设置;
|
|
4349
4361
|
:type Arguments: list of KVPair
|
|
4362
|
+
:param _IsInherit: 是否继承集群的资源类配置:0:自定义(默认),1:继承集群;
|
|
4363
|
+
:type IsInherit: int
|
|
4350
4364
|
"""
|
|
4351
4365
|
self._DataEngineName = None
|
|
4352
4366
|
self._ExecuteSQL = None
|
|
@@ -4358,6 +4372,7 @@ class CreateSparkSessionBatchSQLRequest(AbstractModel):
|
|
|
4358
4372
|
self._SessionId = None
|
|
4359
4373
|
self._SessionName = None
|
|
4360
4374
|
self._Arguments = None
|
|
4375
|
+
self._IsInherit = None
|
|
4361
4376
|
|
|
4362
4377
|
@property
|
|
4363
4378
|
def DataEngineName(self):
|
|
@@ -4439,6 +4454,14 @@ class CreateSparkSessionBatchSQLRequest(AbstractModel):
|
|
|
4439
4454
|
def Arguments(self, Arguments):
|
|
4440
4455
|
self._Arguments = Arguments
|
|
4441
4456
|
|
|
4457
|
+
@property
|
|
4458
|
+
def IsInherit(self):
|
|
4459
|
+
return self._IsInherit
|
|
4460
|
+
|
|
4461
|
+
@IsInherit.setter
|
|
4462
|
+
def IsInherit(self, IsInherit):
|
|
4463
|
+
self._IsInherit = IsInherit
|
|
4464
|
+
|
|
4442
4465
|
|
|
4443
4466
|
def _deserialize(self, params):
|
|
4444
4467
|
self._DataEngineName = params.get("DataEngineName")
|
|
@@ -4456,6 +4479,7 @@ class CreateSparkSessionBatchSQLRequest(AbstractModel):
|
|
|
4456
4479
|
obj = KVPair()
|
|
4457
4480
|
obj._deserialize(item)
|
|
4458
4481
|
self._Arguments.append(obj)
|
|
4482
|
+
self._IsInherit = params.get("IsInherit")
|
|
4459
4483
|
memeber_set = set(params.keys())
|
|
4460
4484
|
for name, value in vars(self).items():
|
|
4461
4485
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.954
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.952
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|