tencentcloud-sdk-python-dlc 3.0.1158__tar.gz → 3.0.1160__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.1158 → tencentcloud-sdk-python-dlc-3.0.1160}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1158 → tencentcloud-sdk-python-dlc-3.0.1160}/setup.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1158 → tencentcloud-sdk-python-dlc-3.0.1160}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1158 → tencentcloud-sdk-python-dlc-3.0.1160}/tencentcloud/dlc/v20210125/models.py +87 -0
- {tencentcloud-sdk-python-dlc-3.0.1158 → tencentcloud-sdk-python-dlc-3.0.1160}/tencentcloud_sdk_python_dlc.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-dlc-3.0.1160/tencentcloud_sdk_python_dlc.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-dlc-3.0.1158/tencentcloud_sdk_python_dlc.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-dlc-3.0.1158 → tencentcloud-sdk-python-dlc-3.0.1160}/README.rst +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1158 → tencentcloud-sdk-python-dlc-3.0.1160}/setup.cfg +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1158 → tencentcloud-sdk-python-dlc-3.0.1160}/tencentcloud/dlc/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1158 → tencentcloud-sdk-python-dlc-3.0.1160}/tencentcloud/dlc/v20210125/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1158 → tencentcloud-sdk-python-dlc-3.0.1160}/tencentcloud/dlc/v20210125/dlc_client.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1158 → tencentcloud-sdk-python-dlc-3.0.1160}/tencentcloud/dlc/v20210125/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1158 → tencentcloud-sdk-python-dlc-3.0.1160}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1158 → tencentcloud-sdk-python-dlc-3.0.1160}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1158 → tencentcloud-sdk-python-dlc-3.0.1160}/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.1160"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Dlc SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -11440,11 +11440,23 @@ class DescribeLakeFsInfoResponse(AbstractModel):
|
|
|
11440
11440
|
|
|
11441
11441
|
def __init__(self):
|
|
11442
11442
|
r"""
|
|
11443
|
+
:param _LakeFsInfos: 托管存储信息
|
|
11444
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11445
|
+
:type LakeFsInfos: list of LakeFsInfo
|
|
11443
11446
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
11444
11447
|
:type RequestId: str
|
|
11445
11448
|
"""
|
|
11449
|
+
self._LakeFsInfos = None
|
|
11446
11450
|
self._RequestId = None
|
|
11447
11451
|
|
|
11452
|
+
@property
|
|
11453
|
+
def LakeFsInfos(self):
|
|
11454
|
+
return self._LakeFsInfos
|
|
11455
|
+
|
|
11456
|
+
@LakeFsInfos.setter
|
|
11457
|
+
def LakeFsInfos(self, LakeFsInfos):
|
|
11458
|
+
self._LakeFsInfos = LakeFsInfos
|
|
11459
|
+
|
|
11448
11460
|
@property
|
|
11449
11461
|
def RequestId(self):
|
|
11450
11462
|
return self._RequestId
|
|
@@ -11455,6 +11467,12 @@ class DescribeLakeFsInfoResponse(AbstractModel):
|
|
|
11455
11467
|
|
|
11456
11468
|
|
|
11457
11469
|
def _deserialize(self, params):
|
|
11470
|
+
if params.get("LakeFsInfos") is not None:
|
|
11471
|
+
self._LakeFsInfos = []
|
|
11472
|
+
for item in params.get("LakeFsInfos"):
|
|
11473
|
+
obj = LakeFsInfo()
|
|
11474
|
+
obj._deserialize(item)
|
|
11475
|
+
self._LakeFsInfos.append(obj)
|
|
11458
11476
|
self._RequestId = params.get("RequestId")
|
|
11459
11477
|
|
|
11460
11478
|
|
|
@@ -17270,6 +17288,75 @@ class LakeFileSystemToken(AbstractModel):
|
|
|
17270
17288
|
|
|
17271
17289
|
|
|
17272
17290
|
|
|
17291
|
+
class LakeFsInfo(AbstractModel):
|
|
17292
|
+
"""描述DLC托管存储基本信息
|
|
17293
|
+
|
|
17294
|
+
"""
|
|
17295
|
+
|
|
17296
|
+
def __init__(self):
|
|
17297
|
+
r"""
|
|
17298
|
+
:param _Name: 托管存储名称
|
|
17299
|
+
:type Name: str
|
|
17300
|
+
:param _Type: 托管存储类型
|
|
17301
|
+
:type Type: str
|
|
17302
|
+
:param _SpaceUsedSize: 容量
|
|
17303
|
+
:type SpaceUsedSize: float
|
|
17304
|
+
:param _CreateTimeStamp: 创建时候的时间戳
|
|
17305
|
+
:type CreateTimeStamp: int
|
|
17306
|
+
"""
|
|
17307
|
+
self._Name = None
|
|
17308
|
+
self._Type = None
|
|
17309
|
+
self._SpaceUsedSize = None
|
|
17310
|
+
self._CreateTimeStamp = None
|
|
17311
|
+
|
|
17312
|
+
@property
|
|
17313
|
+
def Name(self):
|
|
17314
|
+
return self._Name
|
|
17315
|
+
|
|
17316
|
+
@Name.setter
|
|
17317
|
+
def Name(self, Name):
|
|
17318
|
+
self._Name = Name
|
|
17319
|
+
|
|
17320
|
+
@property
|
|
17321
|
+
def Type(self):
|
|
17322
|
+
return self._Type
|
|
17323
|
+
|
|
17324
|
+
@Type.setter
|
|
17325
|
+
def Type(self, Type):
|
|
17326
|
+
self._Type = Type
|
|
17327
|
+
|
|
17328
|
+
@property
|
|
17329
|
+
def SpaceUsedSize(self):
|
|
17330
|
+
return self._SpaceUsedSize
|
|
17331
|
+
|
|
17332
|
+
@SpaceUsedSize.setter
|
|
17333
|
+
def SpaceUsedSize(self, SpaceUsedSize):
|
|
17334
|
+
self._SpaceUsedSize = SpaceUsedSize
|
|
17335
|
+
|
|
17336
|
+
@property
|
|
17337
|
+
def CreateTimeStamp(self):
|
|
17338
|
+
return self._CreateTimeStamp
|
|
17339
|
+
|
|
17340
|
+
@CreateTimeStamp.setter
|
|
17341
|
+
def CreateTimeStamp(self, CreateTimeStamp):
|
|
17342
|
+
self._CreateTimeStamp = CreateTimeStamp
|
|
17343
|
+
|
|
17344
|
+
|
|
17345
|
+
def _deserialize(self, params):
|
|
17346
|
+
self._Name = params.get("Name")
|
|
17347
|
+
self._Type = params.get("Type")
|
|
17348
|
+
self._SpaceUsedSize = params.get("SpaceUsedSize")
|
|
17349
|
+
self._CreateTimeStamp = params.get("CreateTimeStamp")
|
|
17350
|
+
memeber_set = set(params.keys())
|
|
17351
|
+
for name, value in vars(self).items():
|
|
17352
|
+
property_name = name[1:]
|
|
17353
|
+
if property_name in memeber_set:
|
|
17354
|
+
memeber_set.remove(property_name)
|
|
17355
|
+
if len(memeber_set) > 0:
|
|
17356
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
17357
|
+
|
|
17358
|
+
|
|
17359
|
+
|
|
17273
17360
|
class ListTaskJobLogDetailRequest(AbstractModel):
|
|
17274
17361
|
"""ListTaskJobLogDetail请求参数结构体
|
|
17275
17362
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1160
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1158
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|