tencentcloud-sdk-python-tione 3.0.1116__tar.gz → 3.0.1122__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.1116 → tencentcloud-sdk-python-tione-3.0.1122}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-tione-3.0.1116 → tencentcloud-sdk-python-tione-3.0.1122}/setup.py +1 -1
- {tencentcloud-sdk-python-tione-3.0.1116 → tencentcloud-sdk-python-tione-3.0.1122}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-tione-3.0.1116 → tencentcloud-sdk-python-tione-3.0.1122}/tencentcloud/tione/v20211111/models.py +130 -2
- {tencentcloud-sdk-python-tione-3.0.1116 → tencentcloud-sdk-python-tione-3.0.1122}/tencentcloud_sdk_python_tione.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-tione-3.0.1122/tencentcloud_sdk_python_tione.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-tione-3.0.1116/tencentcloud_sdk_python_tione.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-tione-3.0.1116 → tencentcloud-sdk-python-tione-3.0.1122}/README.rst +0 -0
- {tencentcloud-sdk-python-tione-3.0.1116 → tencentcloud-sdk-python-tione-3.0.1122}/setup.cfg +0 -0
- {tencentcloud-sdk-python-tione-3.0.1116 → tencentcloud-sdk-python-tione-3.0.1122}/tencentcloud/tione/__init__.py +0 -0
- {tencentcloud-sdk-python-tione-3.0.1116 → tencentcloud-sdk-python-tione-3.0.1122}/tencentcloud/tione/v20191022/__init__.py +0 -0
- {tencentcloud-sdk-python-tione-3.0.1116 → tencentcloud-sdk-python-tione-3.0.1122}/tencentcloud/tione/v20191022/errorcodes.py +0 -0
- {tencentcloud-sdk-python-tione-3.0.1116 → tencentcloud-sdk-python-tione-3.0.1122}/tencentcloud/tione/v20191022/models.py +0 -0
- {tencentcloud-sdk-python-tione-3.0.1116 → tencentcloud-sdk-python-tione-3.0.1122}/tencentcloud/tione/v20191022/tione_client.py +0 -0
- {tencentcloud-sdk-python-tione-3.0.1116 → tencentcloud-sdk-python-tione-3.0.1122}/tencentcloud/tione/v20211111/__init__.py +0 -0
- {tencentcloud-sdk-python-tione-3.0.1116 → tencentcloud-sdk-python-tione-3.0.1122}/tencentcloud/tione/v20211111/errorcodes.py +0 -0
- {tencentcloud-sdk-python-tione-3.0.1116 → tencentcloud-sdk-python-tione-3.0.1122}/tencentcloud/tione/v20211111/tione_client.py +0 -0
- {tencentcloud-sdk-python-tione-3.0.1116 → tencentcloud-sdk-python-tione-3.0.1122}/tencentcloud_sdk_python_tione.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-tione-3.0.1116 → tencentcloud-sdk-python-tione-3.0.1122}/tencentcloud_sdk_python_tione.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-tione-3.0.1116 → tencentcloud-sdk-python-tione-3.0.1122}/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.1122"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Tione SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -2525,7 +2525,7 @@ HYBRID_PAID:
|
|
|
2525
2525
|
:type ServiceCategory: str
|
|
2526
2526
|
:param _Command: 服务的启动命令
|
|
2527
2527
|
:type Command: str
|
|
2528
|
-
:param _ServiceEIP: 是否开启TIONE
|
|
2528
|
+
:param _ServiceEIP: 是否开启TIONE内网访问外部,此功能仅支持后付费机型与从TIONE平台购买的预付费机型;使用从CVM选择资源组时此配置不生效。
|
|
2529
2529
|
:type ServiceEIP: :class:`tencentcloud.tione.v20211111.models.ServiceEIP`
|
|
2530
2530
|
"""
|
|
2531
2531
|
self._ServiceGroupId = None
|
|
@@ -7407,6 +7407,38 @@ class DescribeBuildInImagesRequest(AbstractModel):
|
|
|
7407
7407
|
|
|
7408
7408
|
"""
|
|
7409
7409
|
|
|
7410
|
+
def __init__(self):
|
|
7411
|
+
r"""
|
|
7412
|
+
:param _ImageFilters: 镜像过滤器
|
|
7413
|
+
:type ImageFilters: list of ImageFIlter
|
|
7414
|
+
"""
|
|
7415
|
+
self._ImageFilters = None
|
|
7416
|
+
|
|
7417
|
+
@property
|
|
7418
|
+
def ImageFilters(self):
|
|
7419
|
+
return self._ImageFilters
|
|
7420
|
+
|
|
7421
|
+
@ImageFilters.setter
|
|
7422
|
+
def ImageFilters(self, ImageFilters):
|
|
7423
|
+
self._ImageFilters = ImageFilters
|
|
7424
|
+
|
|
7425
|
+
|
|
7426
|
+
def _deserialize(self, params):
|
|
7427
|
+
if params.get("ImageFilters") is not None:
|
|
7428
|
+
self._ImageFilters = []
|
|
7429
|
+
for item in params.get("ImageFilters"):
|
|
7430
|
+
obj = ImageFIlter()
|
|
7431
|
+
obj._deserialize(item)
|
|
7432
|
+
self._ImageFilters.append(obj)
|
|
7433
|
+
memeber_set = set(params.keys())
|
|
7434
|
+
for name, value in vars(self).items():
|
|
7435
|
+
property_name = name[1:]
|
|
7436
|
+
if property_name in memeber_set:
|
|
7437
|
+
memeber_set.remove(property_name)
|
|
7438
|
+
if len(memeber_set) > 0:
|
|
7439
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
7440
|
+
|
|
7441
|
+
|
|
7410
7442
|
|
|
7411
7443
|
class DescribeBuildInImagesResponse(AbstractModel):
|
|
7412
7444
|
"""DescribeBuildInImages返回参数结构体
|
|
@@ -12315,6 +12347,63 @@ class HyperParameter(AbstractModel):
|
|
|
12315
12347
|
|
|
12316
12348
|
|
|
12317
12349
|
|
|
12350
|
+
class ImageFIlter(AbstractModel):
|
|
12351
|
+
"""镜像列表过滤
|
|
12352
|
+
|
|
12353
|
+
"""
|
|
12354
|
+
|
|
12355
|
+
def __init__(self):
|
|
12356
|
+
r"""
|
|
12357
|
+
:param _Name: 过滤字段名称
|
|
12358
|
+
:type Name: str
|
|
12359
|
+
:param _Values: 过滤值
|
|
12360
|
+
:type Values: list of str
|
|
12361
|
+
:param _Negative: 是否反选
|
|
12362
|
+
:type Negative: bool
|
|
12363
|
+
"""
|
|
12364
|
+
self._Name = None
|
|
12365
|
+
self._Values = None
|
|
12366
|
+
self._Negative = None
|
|
12367
|
+
|
|
12368
|
+
@property
|
|
12369
|
+
def Name(self):
|
|
12370
|
+
return self._Name
|
|
12371
|
+
|
|
12372
|
+
@Name.setter
|
|
12373
|
+
def Name(self, Name):
|
|
12374
|
+
self._Name = Name
|
|
12375
|
+
|
|
12376
|
+
@property
|
|
12377
|
+
def Values(self):
|
|
12378
|
+
return self._Values
|
|
12379
|
+
|
|
12380
|
+
@Values.setter
|
|
12381
|
+
def Values(self, Values):
|
|
12382
|
+
self._Values = Values
|
|
12383
|
+
|
|
12384
|
+
@property
|
|
12385
|
+
def Negative(self):
|
|
12386
|
+
return self._Negative
|
|
12387
|
+
|
|
12388
|
+
@Negative.setter
|
|
12389
|
+
def Negative(self, Negative):
|
|
12390
|
+
self._Negative = Negative
|
|
12391
|
+
|
|
12392
|
+
|
|
12393
|
+
def _deserialize(self, params):
|
|
12394
|
+
self._Name = params.get("Name")
|
|
12395
|
+
self._Values = params.get("Values")
|
|
12396
|
+
self._Negative = params.get("Negative")
|
|
12397
|
+
memeber_set = set(params.keys())
|
|
12398
|
+
for name, value in vars(self).items():
|
|
12399
|
+
property_name = name[1:]
|
|
12400
|
+
if property_name in memeber_set:
|
|
12401
|
+
memeber_set.remove(property_name)
|
|
12402
|
+
if len(memeber_set) > 0:
|
|
12403
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
12404
|
+
|
|
12405
|
+
|
|
12406
|
+
|
|
12318
12407
|
class ImageInfo(AbstractModel):
|
|
12319
12408
|
"""镜像描述信息
|
|
12320
12409
|
|
|
@@ -12338,6 +12427,9 @@ class ImageInfo(AbstractModel):
|
|
|
12338
12427
|
:param _ImageName: 镜像名称
|
|
12339
12428
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
12340
12429
|
:type ImageName: str
|
|
12430
|
+
:param _SupportDataPipeline: 是否支持数据构建
|
|
12431
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12432
|
+
:type SupportDataPipeline: bool
|
|
12341
12433
|
"""
|
|
12342
12434
|
self._ImageType = None
|
|
12343
12435
|
self._ImageUrl = None
|
|
@@ -12345,6 +12437,7 @@ class ImageInfo(AbstractModel):
|
|
|
12345
12437
|
self._RegistryId = None
|
|
12346
12438
|
self._AllowSaveAllContent = None
|
|
12347
12439
|
self._ImageName = None
|
|
12440
|
+
self._SupportDataPipeline = None
|
|
12348
12441
|
|
|
12349
12442
|
@property
|
|
12350
12443
|
def ImageType(self):
|
|
@@ -12394,6 +12487,14 @@ class ImageInfo(AbstractModel):
|
|
|
12394
12487
|
def ImageName(self, ImageName):
|
|
12395
12488
|
self._ImageName = ImageName
|
|
12396
12489
|
|
|
12490
|
+
@property
|
|
12491
|
+
def SupportDataPipeline(self):
|
|
12492
|
+
return self._SupportDataPipeline
|
|
12493
|
+
|
|
12494
|
+
@SupportDataPipeline.setter
|
|
12495
|
+
def SupportDataPipeline(self, SupportDataPipeline):
|
|
12496
|
+
self._SupportDataPipeline = SupportDataPipeline
|
|
12497
|
+
|
|
12397
12498
|
|
|
12398
12499
|
def _deserialize(self, params):
|
|
12399
12500
|
self._ImageType = params.get("ImageType")
|
|
@@ -12402,6 +12503,7 @@ class ImageInfo(AbstractModel):
|
|
|
12402
12503
|
self._RegistryId = params.get("RegistryId")
|
|
12403
12504
|
self._AllowSaveAllContent = params.get("AllowSaveAllContent")
|
|
12404
12505
|
self._ImageName = params.get("ImageName")
|
|
12506
|
+
self._SupportDataPipeline = params.get("SupportDataPipeline")
|
|
12405
12507
|
memeber_set = set(params.keys())
|
|
12406
12508
|
for name, value in vars(self).items():
|
|
12407
12509
|
property_name = name[1:]
|
|
@@ -12796,6 +12898,12 @@ DISABLE_NOTIFY_AND_MANUAL_RENEW:手动续费(取消自动续费)且到期不
|
|
|
12796
12898
|
:type SpecFeatures: list of str
|
|
12797
12899
|
:param _CvmInstanceId: 纳管cvmid
|
|
12798
12900
|
:type CvmInstanceId: str
|
|
12901
|
+
:param _ErrCode: 部署失败错误码
|
|
12902
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12903
|
+
:type ErrCode: str
|
|
12904
|
+
:param _ErrMsg: 部署失败错误信息
|
|
12905
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12906
|
+
:type ErrMsg: str
|
|
12799
12907
|
"""
|
|
12800
12908
|
self._InstanceId = None
|
|
12801
12909
|
self._UsedResource = None
|
|
@@ -12809,6 +12917,8 @@ DISABLE_NOTIFY_AND_MANUAL_RENEW:手动续费(取消自动续费)且到期不
|
|
|
12809
12917
|
self._SpecAlias = None
|
|
12810
12918
|
self._SpecFeatures = None
|
|
12811
12919
|
self._CvmInstanceId = None
|
|
12920
|
+
self._ErrCode = None
|
|
12921
|
+
self._ErrMsg = None
|
|
12812
12922
|
|
|
12813
12923
|
@property
|
|
12814
12924
|
def InstanceId(self):
|
|
@@ -12906,6 +13016,22 @@ DISABLE_NOTIFY_AND_MANUAL_RENEW:手动续费(取消自动续费)且到期不
|
|
|
12906
13016
|
def CvmInstanceId(self, CvmInstanceId):
|
|
12907
13017
|
self._CvmInstanceId = CvmInstanceId
|
|
12908
13018
|
|
|
13019
|
+
@property
|
|
13020
|
+
def ErrCode(self):
|
|
13021
|
+
return self._ErrCode
|
|
13022
|
+
|
|
13023
|
+
@ErrCode.setter
|
|
13024
|
+
def ErrCode(self, ErrCode):
|
|
13025
|
+
self._ErrCode = ErrCode
|
|
13026
|
+
|
|
13027
|
+
@property
|
|
13028
|
+
def ErrMsg(self):
|
|
13029
|
+
return self._ErrMsg
|
|
13030
|
+
|
|
13031
|
+
@ErrMsg.setter
|
|
13032
|
+
def ErrMsg(self, ErrMsg):
|
|
13033
|
+
self._ErrMsg = ErrMsg
|
|
13034
|
+
|
|
12909
13035
|
|
|
12910
13036
|
def _deserialize(self, params):
|
|
12911
13037
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -12924,6 +13050,8 @@ DISABLE_NOTIFY_AND_MANUAL_RENEW:手动续费(取消自动续费)且到期不
|
|
|
12924
13050
|
self._SpecAlias = params.get("SpecAlias")
|
|
12925
13051
|
self._SpecFeatures = params.get("SpecFeatures")
|
|
12926
13052
|
self._CvmInstanceId = params.get("CvmInstanceId")
|
|
13053
|
+
self._ErrCode = params.get("ErrCode")
|
|
13054
|
+
self._ErrMsg = params.get("ErrMsg")
|
|
12927
13055
|
memeber_set = set(params.keys())
|
|
12928
13056
|
for name, value in vars(self).items():
|
|
12929
13057
|
property_name = name[1:]
|
|
@@ -14532,7 +14660,7 @@ HYBRID_PAID:
|
|
|
14532
14660
|
:type ModelTurboEnable: bool
|
|
14533
14661
|
:param _Command: 服务的启动命令
|
|
14534
14662
|
:type Command: str
|
|
14535
|
-
:param _ServiceEIP: 是否开启TIONE
|
|
14663
|
+
:param _ServiceEIP: 是否开启TIONE内网访问外部,此功能仅支持后付费机型与从TIONE平台购买的预付费机型;使用从CVM选择资源组时此配置不生效。
|
|
14536
14664
|
:type ServiceEIP: :class:`tencentcloud.tione.v20211111.models.ServiceEIP`
|
|
14537
14665
|
"""
|
|
14538
14666
|
self._ServiceId = None
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1122
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1116
|
{tencentcloud-sdk-python-tione-3.0.1116 → tencentcloud-sdk-python-tione-3.0.1122}/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
|