tencentcloud-sdk-python-dlc 3.0.1269__tar.gz → 3.0.1302__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 (16) hide show
  1. {tencentcloud-sdk-python-dlc-3.0.1269 → tencentcloud-sdk-python-dlc-3.0.1302}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-dlc-3.0.1269 → tencentcloud-sdk-python-dlc-3.0.1302}/setup.py +1 -1
  3. {tencentcloud-sdk-python-dlc-3.0.1269 → tencentcloud-sdk-python-dlc-3.0.1302}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-dlc-3.0.1269 → tencentcloud-sdk-python-dlc-3.0.1302}/tencentcloud/dlc/v20210125/models.py +255 -0
  5. {tencentcloud-sdk-python-dlc-3.0.1269 → tencentcloud-sdk-python-dlc-3.0.1302}/tencentcloud_sdk_python_dlc.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-dlc-3.0.1302/tencentcloud_sdk_python_dlc.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-dlc-3.0.1269/tencentcloud_sdk_python_dlc.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-dlc-3.0.1269 → tencentcloud-sdk-python-dlc-3.0.1302}/README.rst +0 -0
  9. {tencentcloud-sdk-python-dlc-3.0.1269 → tencentcloud-sdk-python-dlc-3.0.1302}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-dlc-3.0.1269 → tencentcloud-sdk-python-dlc-3.0.1302}/tencentcloud/dlc/__init__.py +0 -0
  11. {tencentcloud-sdk-python-dlc-3.0.1269 → tencentcloud-sdk-python-dlc-3.0.1302}/tencentcloud/dlc/v20210125/__init__.py +0 -0
  12. {tencentcloud-sdk-python-dlc-3.0.1269 → tencentcloud-sdk-python-dlc-3.0.1302}/tencentcloud/dlc/v20210125/dlc_client.py +0 -0
  13. {tencentcloud-sdk-python-dlc-3.0.1269 → tencentcloud-sdk-python-dlc-3.0.1302}/tencentcloud/dlc/v20210125/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-dlc-3.0.1269 → tencentcloud-sdk-python-dlc-3.0.1302}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-dlc-3.0.1269 → tencentcloud-sdk-python-dlc-3.0.1302}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-dlc-3.0.1269 → tencentcloud-sdk-python-dlc-3.0.1302}/tencentcloud_sdk_python_dlc.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-dlc
3
- Version: 3.0.1269
3
+ Version: 3.0.1302
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
@@ -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.1269"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1302"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Dlc SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1269'
17
+ __version__ = '3.0.1302'
@@ -9519,6 +9519,21 @@ class DataEngineInfo(AbstractModel):
9519
9519
  :param _IsPoolMode: 是否使用预留池
9520
9520
  注意:此字段可能返回 null,表示取不到有效值。
9521
9521
  :type IsPoolMode: str
9522
+ :param _IsSupportAI: 是否支持AI,false: 不支持;true:支持
9523
+ 注意:此字段可能返回 null,表示取不到有效值。
9524
+ :type IsSupportAI: bool
9525
+ :param _GatewayId: 网关id
9526
+ 注意:此字段可能返回 null,表示取不到有效值。
9527
+ :type GatewayId: str
9528
+ :param _GatewayState: 网关状态
9529
+ 注意:此字段可能返回 null,表示取不到有效值。
9530
+ :type GatewayState: int
9531
+ :param _IsAIGateway: 是否能执行AI任务
9532
+ 注意:此字段可能返回 null,表示取不到有效值。
9533
+ :type IsAIGateway: bool
9534
+ :param _IsAIEngine: 1:AI引擎,0:非AI引擎
9535
+ 注意:此字段可能返回 null,表示取不到有效值。
9536
+ :type IsAIEngine: int
9522
9537
  """
9523
9538
  self._DataEngineName = None
9524
9539
  self._EngineType = None
@@ -9574,6 +9589,11 @@ class DataEngineInfo(AbstractModel):
9574
9589
  self._AccessInfos = None
9575
9590
  self._EngineNetworkName = None
9576
9591
  self._IsPoolMode = None
9592
+ self._IsSupportAI = None
9593
+ self._GatewayId = None
9594
+ self._GatewayState = None
9595
+ self._IsAIGateway = None
9596
+ self._IsAIEngine = None
9577
9597
 
9578
9598
  @property
9579
9599
  def DataEngineName(self):
@@ -10210,6 +10230,66 @@ class DataEngineInfo(AbstractModel):
10210
10230
  def IsPoolMode(self, IsPoolMode):
10211
10231
  self._IsPoolMode = IsPoolMode
10212
10232
 
10233
+ @property
10234
+ def IsSupportAI(self):
10235
+ """是否支持AI,false: 不支持;true:支持
10236
+ 注意:此字段可能返回 null,表示取不到有效值。
10237
+ :rtype: bool
10238
+ """
10239
+ return self._IsSupportAI
10240
+
10241
+ @IsSupportAI.setter
10242
+ def IsSupportAI(self, IsSupportAI):
10243
+ self._IsSupportAI = IsSupportAI
10244
+
10245
+ @property
10246
+ def GatewayId(self):
10247
+ """网关id
10248
+ 注意:此字段可能返回 null,表示取不到有效值。
10249
+ :rtype: str
10250
+ """
10251
+ return self._GatewayId
10252
+
10253
+ @GatewayId.setter
10254
+ def GatewayId(self, GatewayId):
10255
+ self._GatewayId = GatewayId
10256
+
10257
+ @property
10258
+ def GatewayState(self):
10259
+ """网关状态
10260
+ 注意:此字段可能返回 null,表示取不到有效值。
10261
+ :rtype: int
10262
+ """
10263
+ return self._GatewayState
10264
+
10265
+ @GatewayState.setter
10266
+ def GatewayState(self, GatewayState):
10267
+ self._GatewayState = GatewayState
10268
+
10269
+ @property
10270
+ def IsAIGateway(self):
10271
+ """是否能执行AI任务
10272
+ 注意:此字段可能返回 null,表示取不到有效值。
10273
+ :rtype: bool
10274
+ """
10275
+ return self._IsAIGateway
10276
+
10277
+ @IsAIGateway.setter
10278
+ def IsAIGateway(self, IsAIGateway):
10279
+ self._IsAIGateway = IsAIGateway
10280
+
10281
+ @property
10282
+ def IsAIEngine(self):
10283
+ """1:AI引擎,0:非AI引擎
10284
+ 注意:此字段可能返回 null,表示取不到有效值。
10285
+ :rtype: int
10286
+ """
10287
+ return self._IsAIEngine
10288
+
10289
+ @IsAIEngine.setter
10290
+ def IsAIEngine(self, IsAIEngine):
10291
+ self._IsAIEngine = IsAIEngine
10292
+
10213
10293
 
10214
10294
  def _deserialize(self, params):
10215
10295
  self._DataEngineName = params.get("DataEngineName")
@@ -10285,6 +10365,11 @@ class DataEngineInfo(AbstractModel):
10285
10365
  self._AccessInfos.append(obj)
10286
10366
  self._EngineNetworkName = params.get("EngineNetworkName")
10287
10367
  self._IsPoolMode = params.get("IsPoolMode")
10368
+ self._IsSupportAI = params.get("IsSupportAI")
10369
+ self._GatewayId = params.get("GatewayId")
10370
+ self._GatewayState = params.get("GatewayState")
10371
+ self._IsAIGateway = params.get("IsAIGateway")
10372
+ self._IsAIEngine = params.get("IsAIEngine")
10288
10373
  memeber_set = set(params.keys())
10289
10374
  for name, value in vars(self).items():
10290
10375
  property_name = name[1:]
@@ -25713,6 +25798,24 @@ class NotebookSessionInfo(AbstractModel):
25713
25798
  :param _ExecutorMaxNumbers: 指定的Executor数量(最大值),默认为1,当开启动态分配有效,若未开启,则该值等于ExecutorNumbers
25714
25799
  注意:此字段可能返回 null,表示取不到有效值。
25715
25800
  :type ExecutorMaxNumbers: int
25801
+ :param _SessionType: session类型,group:资源组下session independent:独立资源session, 不依赖资源组
25802
+ 注意:此字段可能返回 null,表示取不到有效值。
25803
+ :type SessionType: str
25804
+ :param _DataEngineId: 引擎id
25805
+ 注意:此字段可能返回 null,表示取不到有效值。
25806
+ :type DataEngineId: str
25807
+ :param _ResourceGroupId: 资源组id
25808
+ 注意:此字段可能返回 null,表示取不到有效值。
25809
+ :type ResourceGroupId: str
25810
+ :param _ResourceGroupName: 资源组名称
25811
+ 注意:此字段可能返回 null,表示取不到有效值。
25812
+ :type ResourceGroupName: str
25813
+ :param _PodSize: session,pod大小
25814
+ 注意:此字段可能返回 null,表示取不到有效值。
25815
+ :type PodSize: int
25816
+ :param _PodNumbers: pod数量
25817
+ 注意:此字段可能返回 null,表示取不到有效值。
25818
+ :type PodNumbers: int
25716
25819
  """
25717
25820
  self._Name = None
25718
25821
  self._Kind = None
@@ -25734,6 +25837,12 @@ class NotebookSessionInfo(AbstractModel):
25734
25837
  self._AppInfo = None
25735
25838
  self._SparkUiUrl = None
25736
25839
  self._ExecutorMaxNumbers = None
25840
+ self._SessionType = None
25841
+ self._DataEngineId = None
25842
+ self._ResourceGroupId = None
25843
+ self._ResourceGroupName = None
25844
+ self._PodSize = None
25845
+ self._PodNumbers = None
25737
25846
 
25738
25847
  @property
25739
25848
  def Name(self):
@@ -25969,6 +26078,78 @@ class NotebookSessionInfo(AbstractModel):
25969
26078
  def ExecutorMaxNumbers(self, ExecutorMaxNumbers):
25970
26079
  self._ExecutorMaxNumbers = ExecutorMaxNumbers
25971
26080
 
26081
+ @property
26082
+ def SessionType(self):
26083
+ """session类型,group:资源组下session independent:独立资源session, 不依赖资源组
26084
+ 注意:此字段可能返回 null,表示取不到有效值。
26085
+ :rtype: str
26086
+ """
26087
+ return self._SessionType
26088
+
26089
+ @SessionType.setter
26090
+ def SessionType(self, SessionType):
26091
+ self._SessionType = SessionType
26092
+
26093
+ @property
26094
+ def DataEngineId(self):
26095
+ """引擎id
26096
+ 注意:此字段可能返回 null,表示取不到有效值。
26097
+ :rtype: str
26098
+ """
26099
+ return self._DataEngineId
26100
+
26101
+ @DataEngineId.setter
26102
+ def DataEngineId(self, DataEngineId):
26103
+ self._DataEngineId = DataEngineId
26104
+
26105
+ @property
26106
+ def ResourceGroupId(self):
26107
+ """资源组id
26108
+ 注意:此字段可能返回 null,表示取不到有效值。
26109
+ :rtype: str
26110
+ """
26111
+ return self._ResourceGroupId
26112
+
26113
+ @ResourceGroupId.setter
26114
+ def ResourceGroupId(self, ResourceGroupId):
26115
+ self._ResourceGroupId = ResourceGroupId
26116
+
26117
+ @property
26118
+ def ResourceGroupName(self):
26119
+ """资源组名称
26120
+ 注意:此字段可能返回 null,表示取不到有效值。
26121
+ :rtype: str
26122
+ """
26123
+ return self._ResourceGroupName
26124
+
26125
+ @ResourceGroupName.setter
26126
+ def ResourceGroupName(self, ResourceGroupName):
26127
+ self._ResourceGroupName = ResourceGroupName
26128
+
26129
+ @property
26130
+ def PodSize(self):
26131
+ """session,pod大小
26132
+ 注意:此字段可能返回 null,表示取不到有效值。
26133
+ :rtype: int
26134
+ """
26135
+ return self._PodSize
26136
+
26137
+ @PodSize.setter
26138
+ def PodSize(self, PodSize):
26139
+ self._PodSize = PodSize
26140
+
26141
+ @property
26142
+ def PodNumbers(self):
26143
+ """pod数量
26144
+ 注意:此字段可能返回 null,表示取不到有效值。
26145
+ :rtype: int
26146
+ """
26147
+ return self._PodNumbers
26148
+
26149
+ @PodNumbers.setter
26150
+ def PodNumbers(self, PodNumbers):
26151
+ self._PodNumbers = PodNumbers
26152
+
25972
26153
 
25973
26154
  def _deserialize(self, params):
25974
26155
  self._Name = params.get("Name")
@@ -26001,6 +26182,12 @@ class NotebookSessionInfo(AbstractModel):
26001
26182
  self._AppInfo.append(obj)
26002
26183
  self._SparkUiUrl = params.get("SparkUiUrl")
26003
26184
  self._ExecutorMaxNumbers = params.get("ExecutorMaxNumbers")
26185
+ self._SessionType = params.get("SessionType")
26186
+ self._DataEngineId = params.get("DataEngineId")
26187
+ self._ResourceGroupId = params.get("ResourceGroupId")
26188
+ self._ResourceGroupName = params.get("ResourceGroupName")
26189
+ self._PodSize = params.get("PodSize")
26190
+ self._PodNumbers = params.get("PodNumbers")
26004
26191
  memeber_set = set(params.keys())
26005
26192
  for name, value in vars(self).items():
26006
26193
  property_name = name[1:]
@@ -26310,6 +26497,18 @@ class NotebookSessions(AbstractModel):
26310
26497
  :param _SparkUiUrl: spark ui地址
26311
26498
  注意:此字段可能返回 null,表示取不到有效值。
26312
26499
  :type SparkUiUrl: str
26500
+ :param _SessionType: session类型,group:资源组session independent:独立资源session,不依赖资源组
26501
+ 注意:此字段可能返回 null,表示取不到有效值。
26502
+ :type SessionType: str
26503
+ :param _DataEngineId: 引擎id
26504
+ 注意:此字段可能返回 null,表示取不到有效值。
26505
+ :type DataEngineId: str
26506
+ :param _ResourceGroupId: 资源组id
26507
+ 注意:此字段可能返回 null,表示取不到有效值。
26508
+ :type ResourceGroupId: str
26509
+ :param _ResourceGroupName: 资源组名字
26510
+ 注意:此字段可能返回 null,表示取不到有效值。
26511
+ :type ResourceGroupName: str
26313
26512
  """
26314
26513
  self._Kind = None
26315
26514
  self._SessionId = None
@@ -26322,6 +26521,10 @@ class NotebookSessions(AbstractModel):
26322
26521
  self._LastRunningTime = None
26323
26522
  self._Creator = None
26324
26523
  self._SparkUiUrl = None
26524
+ self._SessionType = None
26525
+ self._DataEngineId = None
26526
+ self._ResourceGroupId = None
26527
+ self._ResourceGroupName = None
26325
26528
 
26326
26529
  @property
26327
26530
  def Kind(self):
@@ -26448,6 +26651,54 @@ class NotebookSessions(AbstractModel):
26448
26651
  def SparkUiUrl(self, SparkUiUrl):
26449
26652
  self._SparkUiUrl = SparkUiUrl
26450
26653
 
26654
+ @property
26655
+ def SessionType(self):
26656
+ """session类型,group:资源组session independent:独立资源session,不依赖资源组
26657
+ 注意:此字段可能返回 null,表示取不到有效值。
26658
+ :rtype: str
26659
+ """
26660
+ return self._SessionType
26661
+
26662
+ @SessionType.setter
26663
+ def SessionType(self, SessionType):
26664
+ self._SessionType = SessionType
26665
+
26666
+ @property
26667
+ def DataEngineId(self):
26668
+ """引擎id
26669
+ 注意:此字段可能返回 null,表示取不到有效值。
26670
+ :rtype: str
26671
+ """
26672
+ return self._DataEngineId
26673
+
26674
+ @DataEngineId.setter
26675
+ def DataEngineId(self, DataEngineId):
26676
+ self._DataEngineId = DataEngineId
26677
+
26678
+ @property
26679
+ def ResourceGroupId(self):
26680
+ """资源组id
26681
+ 注意:此字段可能返回 null,表示取不到有效值。
26682
+ :rtype: str
26683
+ """
26684
+ return self._ResourceGroupId
26685
+
26686
+ @ResourceGroupId.setter
26687
+ def ResourceGroupId(self, ResourceGroupId):
26688
+ self._ResourceGroupId = ResourceGroupId
26689
+
26690
+ @property
26691
+ def ResourceGroupName(self):
26692
+ """资源组名字
26693
+ 注意:此字段可能返回 null,表示取不到有效值。
26694
+ :rtype: str
26695
+ """
26696
+ return self._ResourceGroupName
26697
+
26698
+ @ResourceGroupName.setter
26699
+ def ResourceGroupName(self, ResourceGroupName):
26700
+ self._ResourceGroupName = ResourceGroupName
26701
+
26451
26702
 
26452
26703
  def _deserialize(self, params):
26453
26704
  self._Kind = params.get("Kind")
@@ -26461,6 +26712,10 @@ class NotebookSessions(AbstractModel):
26461
26712
  self._LastRunningTime = params.get("LastRunningTime")
26462
26713
  self._Creator = params.get("Creator")
26463
26714
  self._SparkUiUrl = params.get("SparkUiUrl")
26715
+ self._SessionType = params.get("SessionType")
26716
+ self._DataEngineId = params.get("DataEngineId")
26717
+ self._ResourceGroupId = params.get("ResourceGroupId")
26718
+ self._ResourceGroupName = params.get("ResourceGroupName")
26464
26719
  memeber_set = set(params.keys())
26465
26720
  for name, value in vars(self).items():
26466
26721
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-dlc
3
- Version: 3.0.1269
3
+ Version: 3.0.1302
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
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1302
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1269