tencentcloud-sdk-python-tione 3.0.1322__tar.gz → 3.0.1323__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-tione-3.0.1322 → tencentcloud-sdk-python-tione-3.0.1323}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-tione-3.0.1322 → tencentcloud-sdk-python-tione-3.0.1323}/setup.py +1 -1
- {tencentcloud-sdk-python-tione-3.0.1322 → tencentcloud-sdk-python-tione-3.0.1323}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-tione-3.0.1322 → tencentcloud-sdk-python-tione-3.0.1323}/tencentcloud/tione/v20211111/models.py +19 -0
- {tencentcloud-sdk-python-tione-3.0.1322 → tencentcloud-sdk-python-tione-3.0.1323}/tencentcloud_sdk_python_tione.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-tione-3.0.1323/tencentcloud_sdk_python_tione.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-tione-3.0.1322/tencentcloud_sdk_python_tione.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-tione-3.0.1322 → tencentcloud-sdk-python-tione-3.0.1323}/README.rst +0 -0
- {tencentcloud-sdk-python-tione-3.0.1322 → tencentcloud-sdk-python-tione-3.0.1323}/setup.cfg +0 -0
- {tencentcloud-sdk-python-tione-3.0.1322 → tencentcloud-sdk-python-tione-3.0.1323}/tencentcloud/tione/__init__.py +0 -0
- {tencentcloud-sdk-python-tione-3.0.1322 → tencentcloud-sdk-python-tione-3.0.1323}/tencentcloud/tione/v20191022/__init__.py +0 -0
- {tencentcloud-sdk-python-tione-3.0.1322 → tencentcloud-sdk-python-tione-3.0.1323}/tencentcloud/tione/v20191022/errorcodes.py +0 -0
- {tencentcloud-sdk-python-tione-3.0.1322 → tencentcloud-sdk-python-tione-3.0.1323}/tencentcloud/tione/v20191022/models.py +0 -0
- {tencentcloud-sdk-python-tione-3.0.1322 → tencentcloud-sdk-python-tione-3.0.1323}/tencentcloud/tione/v20191022/tione_client.py +0 -0
- {tencentcloud-sdk-python-tione-3.0.1322 → tencentcloud-sdk-python-tione-3.0.1323}/tencentcloud/tione/v20211111/__init__.py +0 -0
- {tencentcloud-sdk-python-tione-3.0.1322 → tencentcloud-sdk-python-tione-3.0.1323}/tencentcloud/tione/v20211111/errorcodes.py +0 -0
- {tencentcloud-sdk-python-tione-3.0.1322 → tencentcloud-sdk-python-tione-3.0.1323}/tencentcloud/tione/v20211111/tione_client.py +0 -0
- {tencentcloud-sdk-python-tione-3.0.1322 → tencentcloud-sdk-python-tione-3.0.1323}/tencentcloud_sdk_python_tione.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-tione-3.0.1322 → tencentcloud-sdk-python-tione-3.0.1323}/tencentcloud_sdk_python_tione.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-tione-3.0.1322 → tencentcloud-sdk-python-tione-3.0.1323}/tencentcloud_sdk_python_tione.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-tione',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1323"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Tione SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -13361,6 +13361,8 @@ class Pod(AbstractModel):
|
|
|
13361
13361
|
:param _CrossTenantENIInfo: 容器调用信息
|
|
13362
13362
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
13363
13363
|
:type CrossTenantENIInfo: :class:`tencentcloud.tione.v20211111.models.CrossTenantENIInfo`
|
|
13364
|
+
:param _Status: 实例的状态信息
|
|
13365
|
+
:type Status: str
|
|
13364
13366
|
"""
|
|
13365
13367
|
self._Name = None
|
|
13366
13368
|
self._Uid = None
|
|
@@ -13371,6 +13373,7 @@ class Pod(AbstractModel):
|
|
|
13371
13373
|
self._Containers = None
|
|
13372
13374
|
self._ContainerInfos = None
|
|
13373
13375
|
self._CrossTenantENIInfo = None
|
|
13376
|
+
self._Status = None
|
|
13374
13377
|
|
|
13375
13378
|
@property
|
|
13376
13379
|
def Name(self):
|
|
@@ -13446,6 +13449,8 @@ class Pod(AbstractModel):
|
|
|
13446
13449
|
|
|
13447
13450
|
@property
|
|
13448
13451
|
def Containers(self):
|
|
13452
|
+
warnings.warn("parameter `Containers` is deprecated", DeprecationWarning)
|
|
13453
|
+
|
|
13449
13454
|
"""容器列表
|
|
13450
13455
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
13451
13456
|
:rtype: :class:`tencentcloud.tione.v20211111.models.Container`
|
|
@@ -13454,6 +13459,8 @@ class Pod(AbstractModel):
|
|
|
13454
13459
|
|
|
13455
13460
|
@Containers.setter
|
|
13456
13461
|
def Containers(self, Containers):
|
|
13462
|
+
warnings.warn("parameter `Containers` is deprecated", DeprecationWarning)
|
|
13463
|
+
|
|
13457
13464
|
self._Containers = Containers
|
|
13458
13465
|
|
|
13459
13466
|
@property
|
|
@@ -13480,6 +13487,17 @@ class Pod(AbstractModel):
|
|
|
13480
13487
|
def CrossTenantENIInfo(self, CrossTenantENIInfo):
|
|
13481
13488
|
self._CrossTenantENIInfo = CrossTenantENIInfo
|
|
13482
13489
|
|
|
13490
|
+
@property
|
|
13491
|
+
def Status(self):
|
|
13492
|
+
"""实例的状态信息
|
|
13493
|
+
:rtype: str
|
|
13494
|
+
"""
|
|
13495
|
+
return self._Status
|
|
13496
|
+
|
|
13497
|
+
@Status.setter
|
|
13498
|
+
def Status(self, Status):
|
|
13499
|
+
self._Status = Status
|
|
13500
|
+
|
|
13483
13501
|
|
|
13484
13502
|
def _deserialize(self, params):
|
|
13485
13503
|
self._Name = params.get("Name")
|
|
@@ -13500,6 +13518,7 @@ class Pod(AbstractModel):
|
|
|
13500
13518
|
if params.get("CrossTenantENIInfo") is not None:
|
|
13501
13519
|
self._CrossTenantENIInfo = CrossTenantENIInfo()
|
|
13502
13520
|
self._CrossTenantENIInfo._deserialize(params.get("CrossTenantENIInfo"))
|
|
13521
|
+
self._Status = params.get("Status")
|
|
13503
13522
|
memeber_set = set(params.keys())
|
|
13504
13523
|
for name, value in vars(self).items():
|
|
13505
13524
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1323
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1322
|
{tencentcloud-sdk-python-tione-3.0.1322 → tencentcloud-sdk-python-tione-3.0.1323}/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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|