tencentcloud-sdk-python 3.0.1359__py2.py3-none-any.whl → 3.0.1361__py2.py3-none-any.whl
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/__init__.py +1 -1
- tencentcloud/batch/v20170312/models.py +14 -44
- tencentcloud/bh/v20230418/bh_client.py +115 -0
- tencentcloud/bh/v20230418/models.py +1064 -131
- tencentcloud/cbs/v20170312/models.py +2 -2
- tencentcloud/cdb/v20170320/cdb_client.py +1 -1
- tencentcloud/cdb/v20170320/models.py +6 -6
- tencentcloud/cdwdoris/v20211228/models.py +30 -0
- tencentcloud/cdwpg/v20201230/models.py +22 -206
- tencentcloud/ckafka/v20190819/ckafka_client.py +46 -0
- tencentcloud/ckafka/v20190819/models.py +367 -0
- tencentcloud/cvm/v20170312/cvm_client.py +10 -7
- tencentcloud/cvm/v20170312/errorcodes.py +3 -0
- tencentcloud/cvm/v20170312/models.py +186 -174
- tencentcloud/cynosdb/v20190107/models.py +105 -0
- tencentcloud/dlc/v20210125/models.py +107 -564
- tencentcloud/dsgc/v20190723/models.py +30 -0
- tencentcloud/emr/v20190103/emr_client.py +23 -0
- tencentcloud/emr/v20190103/models.py +214 -0
- tencentcloud/ess/v20201111/models.py +256 -0
- tencentcloud/essbasic/v20210526/models.py +281 -13
- tencentcloud/gaap/v20180529/models.py +0 -166
- tencentcloud/gs/v20191118/errorcodes.py +24 -0
- tencentcloud/gs/v20191118/gs_client.py +138 -0
- tencentcloud/gs/v20191118/models.py +683 -21
- tencentcloud/gwlb/v20240906/gwlb_client.py +5 -7
- tencentcloud/gwlb/v20240906/models.py +72 -54
- tencentcloud/ioa/v20220601/ioa_client.py +46 -0
- tencentcloud/ioa/v20220601/models.py +358 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +46 -0
- tencentcloud/iotexplorer/v20190423/models.py +600 -0
- tencentcloud/kms/v20190118/models.py +71 -0
- tencentcloud/lcic/v20220817/models.py +34 -0
- tencentcloud/lighthouse/v20200324/lighthouse_client.py +4 -1
- tencentcloud/lighthouse/v20200324/models.py +14 -10
- tencentcloud/monitor/v20180724/models.py +2 -2
- tencentcloud/monitor/v20180724/monitor_client.py +1 -1
- tencentcloud/mps/v20190612/models.py +12 -10
- tencentcloud/privatedns/v20201028/models.py +36 -6
- tencentcloud/tan/v20220420/tan_client.py +3 -1
- tencentcloud/tcb/v20180608/models.py +60 -0
- tencentcloud/tione/v20211111/errorcodes.py +3 -0
- tencentcloud/tione/v20211111/models.py +53 -0
- tencentcloud/trocket/v20230308/models.py +1398 -66
- tencentcloud/trocket/v20230308/trocket_client.py +214 -0
- tencentcloud/vclm/v20240523/models.py +2 -2
- tencentcloud/vpc/v20170312/models.py +263 -81
- tencentcloud/vpc/v20170312/vpc_client.py +25 -2
- tencentcloud/wedata/v20210820/models.py +2691 -4
- tencentcloud/wedata/v20210820/wedata_client.py +69 -0
- {tencentcloud_sdk_python-3.0.1359.dist-info → tencentcloud_sdk_python-3.0.1361.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1359.dist-info → tencentcloud_sdk_python-3.0.1361.dist-info}/RECORD +55 -55
- {tencentcloud_sdk_python-3.0.1359.dist-info → tencentcloud_sdk_python-3.0.1361.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1359.dist-info → tencentcloud_sdk_python-3.0.1361.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1359.dist-info → tencentcloud_sdk_python-3.0.1361.dist-info}/top_level.txt +0 -0
@@ -3452,6 +3452,8 @@ class DataConfig(AbstractModel):
|
|
3452
3452
|
:param _CBSSource: CBS配置信息
|
3453
3453
|
注意:此字段可能返回 null,表示取不到有效值。
|
3454
3454
|
:type CBSSource: :class:`tencentcloud.tione.v20211111.models.CBSConfig`
|
3455
|
+
:param _HostPathSource: 主机路径信息
|
3456
|
+
:type HostPathSource: :class:`tencentcloud.tione.v20211111.models.HostPath`
|
3455
3457
|
"""
|
3456
3458
|
self._MappingPath = None
|
3457
3459
|
self._DataSourceUsage = None
|
@@ -3464,6 +3466,7 @@ class DataConfig(AbstractModel):
|
|
3464
3466
|
self._CFSTurboSource = None
|
3465
3467
|
self._LocalDiskSource = None
|
3466
3468
|
self._CBSSource = None
|
3469
|
+
self._HostPathSource = None
|
3467
3470
|
|
3468
3471
|
@property
|
3469
3472
|
def MappingPath(self):
|
@@ -3597,6 +3600,17 @@ class DataConfig(AbstractModel):
|
|
3597
3600
|
def CBSSource(self, CBSSource):
|
3598
3601
|
self._CBSSource = CBSSource
|
3599
3602
|
|
3603
|
+
@property
|
3604
|
+
def HostPathSource(self):
|
3605
|
+
"""主机路径信息
|
3606
|
+
:rtype: :class:`tencentcloud.tione.v20211111.models.HostPath`
|
3607
|
+
"""
|
3608
|
+
return self._HostPathSource
|
3609
|
+
|
3610
|
+
@HostPathSource.setter
|
3611
|
+
def HostPathSource(self, HostPathSource):
|
3612
|
+
self._HostPathSource = HostPathSource
|
3613
|
+
|
3600
3614
|
|
3601
3615
|
def _deserialize(self, params):
|
3602
3616
|
self._MappingPath = params.get("MappingPath")
|
@@ -3626,6 +3640,9 @@ class DataConfig(AbstractModel):
|
|
3626
3640
|
if params.get("CBSSource") is not None:
|
3627
3641
|
self._CBSSource = CBSConfig()
|
3628
3642
|
self._CBSSource._deserialize(params.get("CBSSource"))
|
3643
|
+
if params.get("HostPathSource") is not None:
|
3644
|
+
self._HostPathSource = HostPath()
|
3645
|
+
self._HostPathSource._deserialize(params.get("HostPathSource"))
|
3629
3646
|
memeber_set = set(params.keys())
|
3630
3647
|
for name, value in vars(self).items():
|
3631
3648
|
property_name = name[1:]
|
@@ -9500,6 +9517,42 @@ class HorizontalPodAutoscaler(AbstractModel):
|
|
9500
9517
|
|
9501
9518
|
|
9502
9519
|
|
9520
|
+
class HostPath(AbstractModel):
|
9521
|
+
"""主机路径挂载配置
|
9522
|
+
|
9523
|
+
"""
|
9524
|
+
|
9525
|
+
def __init__(self):
|
9526
|
+
r"""
|
9527
|
+
:param _Path: 需要挂载的主机路径
|
9528
|
+
:type Path: str
|
9529
|
+
"""
|
9530
|
+
self._Path = None
|
9531
|
+
|
9532
|
+
@property
|
9533
|
+
def Path(self):
|
9534
|
+
"""需要挂载的主机路径
|
9535
|
+
:rtype: str
|
9536
|
+
"""
|
9537
|
+
return self._Path
|
9538
|
+
|
9539
|
+
@Path.setter
|
9540
|
+
def Path(self, Path):
|
9541
|
+
self._Path = Path
|
9542
|
+
|
9543
|
+
|
9544
|
+
def _deserialize(self, params):
|
9545
|
+
self._Path = params.get("Path")
|
9546
|
+
memeber_set = set(params.keys())
|
9547
|
+
for name, value in vars(self).items():
|
9548
|
+
property_name = name[1:]
|
9549
|
+
if property_name in memeber_set:
|
9550
|
+
memeber_set.remove(property_name)
|
9551
|
+
if len(memeber_set) > 0:
|
9552
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
9553
|
+
|
9554
|
+
|
9555
|
+
|
9503
9556
|
class HyperParameter(AbstractModel):
|
9504
9557
|
"""模型专业参数
|
9505
9558
|
|