tencentcloud-sdk-python 3.0.1359__py2.py3-none-any.whl → 3.0.1360__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 +92 -0
- tencentcloud/bh/v20230418/models.py +855 -61
- tencentcloud/cbs/v20170312/models.py +2 -2
- tencentcloud/cdwpg/v20201230/models.py +0 -8
- 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 +166 -164
- tencentcloud/cynosdb/v20190107/models.py +60 -0
- 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/mps/v20190612/models.py +8 -6
- tencentcloud/privatedns/v20201028/models.py +30 -0
- tencentcloud/tcb/v20180608/models.py +60 -0
- tencentcloud/tione/v20211111/errorcodes.py +3 -0
- tencentcloud/tione/v20211111/models.py +53 -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.1360.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1359.dist-info → tencentcloud_sdk_python-3.0.1360.dist-info}/RECORD +32 -32
- {tencentcloud_sdk_python-3.0.1359.dist-info → tencentcloud_sdk_python-3.0.1360.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1359.dist-info → tencentcloud_sdk_python-3.0.1360.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1359.dist-info → tencentcloud_sdk_python-3.0.1360.dist-info}/top_level.txt +0 -0
@@ -11796,6 +11796,66 @@ class DescribeCloudBaseRunVersionRsByConditionRequest(AbstractModel):
|
|
11796
11796
|
|
11797
11797
|
"""
|
11798
11798
|
|
11799
|
+
def __init__(self):
|
11800
|
+
r"""
|
11801
|
+
:param _EnvId: 环境ID;EnvId和ClusterId不能同时为空
|
11802
|
+
:type EnvId: str
|
11803
|
+
:param _ClusterId: 集群ID;EnvId和ClusterId不能同时为空
|
11804
|
+
:type ClusterId: str
|
11805
|
+
:param _FilterGwSwitch: 过滤网关服务开关
|
11806
|
+
:type FilterGwSwitch: bool
|
11807
|
+
"""
|
11808
|
+
self._EnvId = None
|
11809
|
+
self._ClusterId = None
|
11810
|
+
self._FilterGwSwitch = None
|
11811
|
+
|
11812
|
+
@property
|
11813
|
+
def EnvId(self):
|
11814
|
+
"""环境ID;EnvId和ClusterId不能同时为空
|
11815
|
+
:rtype: str
|
11816
|
+
"""
|
11817
|
+
return self._EnvId
|
11818
|
+
|
11819
|
+
@EnvId.setter
|
11820
|
+
def EnvId(self, EnvId):
|
11821
|
+
self._EnvId = EnvId
|
11822
|
+
|
11823
|
+
@property
|
11824
|
+
def ClusterId(self):
|
11825
|
+
"""集群ID;EnvId和ClusterId不能同时为空
|
11826
|
+
:rtype: str
|
11827
|
+
"""
|
11828
|
+
return self._ClusterId
|
11829
|
+
|
11830
|
+
@ClusterId.setter
|
11831
|
+
def ClusterId(self, ClusterId):
|
11832
|
+
self._ClusterId = ClusterId
|
11833
|
+
|
11834
|
+
@property
|
11835
|
+
def FilterGwSwitch(self):
|
11836
|
+
"""过滤网关服务开关
|
11837
|
+
:rtype: bool
|
11838
|
+
"""
|
11839
|
+
return self._FilterGwSwitch
|
11840
|
+
|
11841
|
+
@FilterGwSwitch.setter
|
11842
|
+
def FilterGwSwitch(self, FilterGwSwitch):
|
11843
|
+
self._FilterGwSwitch = FilterGwSwitch
|
11844
|
+
|
11845
|
+
|
11846
|
+
def _deserialize(self, params):
|
11847
|
+
self._EnvId = params.get("EnvId")
|
11848
|
+
self._ClusterId = params.get("ClusterId")
|
11849
|
+
self._FilterGwSwitch = params.get("FilterGwSwitch")
|
11850
|
+
memeber_set = set(params.keys())
|
11851
|
+
for name, value in vars(self).items():
|
11852
|
+
property_name = name[1:]
|
11853
|
+
if property_name in memeber_set:
|
11854
|
+
memeber_set.remove(property_name)
|
11855
|
+
if len(memeber_set) > 0:
|
11856
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
11857
|
+
|
11858
|
+
|
11799
11859
|
|
11800
11860
|
class DescribeCloudBaseRunVersionRsByConditionResponse(AbstractModel):
|
11801
11861
|
"""DescribeCloudBaseRunVersionRsByCondition返回参数结构体
|
@@ -170,6 +170,9 @@ FAILEDOPERATION_RELEASESSHPORTFAILED = 'FailedOperation.ReleaseSSHPortFailed'
|
|
170
170
|
# 存储库有绑定的实例,请先删除绑定的实例。
|
171
171
|
FAILEDOPERATION_REPOBINDBYINSTANCE = 'FailedOperation.RepoBindByInstance'
|
172
172
|
|
173
|
+
# 查询第三方机房信息失败
|
174
|
+
FAILEDOPERATION_SERVERROOMQUERYFAILED = 'FailedOperation.ServerRoomQueryFailed'
|
175
|
+
|
173
176
|
# 停止实例失败。
|
174
177
|
FAILEDOPERATION_STOPJOBINSTANCEFAILED = 'FailedOperation.StopJobInstanceFailed'
|
175
178
|
|
@@ -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
|
|
@@ -1051,7 +1051,7 @@ Pet:宠物模式,支持宠物等非人像图片,固定生成512:512分辨
|
|
1051
1051
|
|
1052
1052
|
宠物模式下,如果不传该参数,默认将脸部唱演视频回贴原图,生成视频分辨率与原图一致。如不需要脸部回贴,仅保留脸部唱演视频,可传入512:512。
|
1053
1053
|
:type Resolution: str
|
1054
|
-
:param _LogoAdd: 为生成视频添加标识的开关,默认为
|
1054
|
+
:param _LogoAdd: 为生成视频添加标识的开关,默认为1。
|
1055
1055
|
1:添加标识;
|
1056
1056
|
0:不添加标识;
|
1057
1057
|
其他数值:默认按1处理。
|
@@ -1139,7 +1139,7 @@ Pet:宠物模式,支持宠物等非人像图片,固定生成512:512分辨
|
|
1139
1139
|
|
1140
1140
|
@property
|
1141
1141
|
def LogoAdd(self):
|
1142
|
-
"""为生成视频添加标识的开关,默认为
|
1142
|
+
"""为生成视频添加标识的开关,默认为1。
|
1143
1143
|
1:添加标识;
|
1144
1144
|
0:不添加标识;
|
1145
1145
|
其他数值:默认按1处理。
|