tencentcloud-sdk-python-tione 3.0.1377__tar.gz → 3.0.1379__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.1377 → tencentcloud-sdk-python-tione-3.0.1379}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-tione-3.0.1377 → tencentcloud-sdk-python-tione-3.0.1379}/setup.py +1 -1
- {tencentcloud-sdk-python-tione-3.0.1377 → tencentcloud-sdk-python-tione-3.0.1379}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-tione-3.0.1377 → tencentcloud-sdk-python-tione-3.0.1379}/tencentcloud/tione/v20211111/models.py +274 -0
- {tencentcloud-sdk-python-tione-3.0.1377 → tencentcloud-sdk-python-tione-3.0.1379}/tencentcloud_sdk_python_tione.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-tione-3.0.1379/tencentcloud_sdk_python_tione.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-tione-3.0.1377/tencentcloud_sdk_python_tione.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-tione-3.0.1377 → tencentcloud-sdk-python-tione-3.0.1379}/README.rst +0 -0
- {tencentcloud-sdk-python-tione-3.0.1377 → tencentcloud-sdk-python-tione-3.0.1379}/setup.cfg +0 -0
- {tencentcloud-sdk-python-tione-3.0.1377 → tencentcloud-sdk-python-tione-3.0.1379}/tencentcloud/tione/__init__.py +0 -0
- {tencentcloud-sdk-python-tione-3.0.1377 → tencentcloud-sdk-python-tione-3.0.1379}/tencentcloud/tione/v20191022/__init__.py +0 -0
- {tencentcloud-sdk-python-tione-3.0.1377 → tencentcloud-sdk-python-tione-3.0.1379}/tencentcloud/tione/v20191022/errorcodes.py +0 -0
- {tencentcloud-sdk-python-tione-3.0.1377 → tencentcloud-sdk-python-tione-3.0.1379}/tencentcloud/tione/v20191022/models.py +0 -0
- {tencentcloud-sdk-python-tione-3.0.1377 → tencentcloud-sdk-python-tione-3.0.1379}/tencentcloud/tione/v20191022/tione_client.py +0 -0
- {tencentcloud-sdk-python-tione-3.0.1377 → tencentcloud-sdk-python-tione-3.0.1379}/tencentcloud/tione/v20211111/__init__.py +0 -0
- {tencentcloud-sdk-python-tione-3.0.1377 → tencentcloud-sdk-python-tione-3.0.1379}/tencentcloud/tione/v20211111/errorcodes.py +0 -0
- {tencentcloud-sdk-python-tione-3.0.1377 → tencentcloud-sdk-python-tione-3.0.1379}/tencentcloud/tione/v20211111/tione_client.py +0 -0
- {tencentcloud-sdk-python-tione-3.0.1377 → tencentcloud-sdk-python-tione-3.0.1379}/tencentcloud_sdk_python_tione.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-tione-3.0.1377 → tencentcloud-sdk-python-tione-3.0.1379}/tencentcloud_sdk_python_tione.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-tione-3.0.1377 → tencentcloud-sdk-python-tione-3.0.1379}/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.1379"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Tione SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -9327,6 +9327,42 @@ class EnvVar(AbstractModel):
|
|
|
9327
9327
|
|
|
9328
9328
|
|
|
9329
9329
|
|
|
9330
|
+
class ExecAction(AbstractModel):
|
|
9331
|
+
"""执行命令探针检查行为
|
|
9332
|
+
|
|
9333
|
+
"""
|
|
9334
|
+
|
|
9335
|
+
def __init__(self):
|
|
9336
|
+
r"""
|
|
9337
|
+
:param _Command: 执行命令列表
|
|
9338
|
+
:type Command: list of str
|
|
9339
|
+
"""
|
|
9340
|
+
self._Command = None
|
|
9341
|
+
|
|
9342
|
+
@property
|
|
9343
|
+
def Command(self):
|
|
9344
|
+
"""执行命令列表
|
|
9345
|
+
:rtype: list of str
|
|
9346
|
+
"""
|
|
9347
|
+
return self._Command
|
|
9348
|
+
|
|
9349
|
+
@Command.setter
|
|
9350
|
+
def Command(self, Command):
|
|
9351
|
+
self._Command = Command
|
|
9352
|
+
|
|
9353
|
+
|
|
9354
|
+
def _deserialize(self, params):
|
|
9355
|
+
self._Command = params.get("Command")
|
|
9356
|
+
memeber_set = set(params.keys())
|
|
9357
|
+
for name, value in vars(self).items():
|
|
9358
|
+
property_name = name[1:]
|
|
9359
|
+
if property_name in memeber_set:
|
|
9360
|
+
memeber_set.remove(property_name)
|
|
9361
|
+
if len(memeber_set) > 0:
|
|
9362
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
9363
|
+
|
|
9364
|
+
|
|
9365
|
+
|
|
9330
9366
|
class Filter(AbstractModel):
|
|
9331
9367
|
"""过滤器
|
|
9332
9368
|
|
|
@@ -9753,8 +9789,11 @@ class HTTPGetAction(AbstractModel):
|
|
|
9753
9789
|
r"""
|
|
9754
9790
|
:param _Path: http 路径
|
|
9755
9791
|
:type Path: str
|
|
9792
|
+
:param _Port: 调用端口
|
|
9793
|
+
:type Port: int
|
|
9756
9794
|
"""
|
|
9757
9795
|
self._Path = None
|
|
9796
|
+
self._Port = None
|
|
9758
9797
|
|
|
9759
9798
|
@property
|
|
9760
9799
|
def Path(self):
|
|
@@ -9767,9 +9806,21 @@ class HTTPGetAction(AbstractModel):
|
|
|
9767
9806
|
def Path(self, Path):
|
|
9768
9807
|
self._Path = Path
|
|
9769
9808
|
|
|
9809
|
+
@property
|
|
9810
|
+
def Port(self):
|
|
9811
|
+
"""调用端口
|
|
9812
|
+
:rtype: int
|
|
9813
|
+
"""
|
|
9814
|
+
return self._Port
|
|
9815
|
+
|
|
9816
|
+
@Port.setter
|
|
9817
|
+
def Port(self, Port):
|
|
9818
|
+
self._Port = Port
|
|
9819
|
+
|
|
9770
9820
|
|
|
9771
9821
|
def _deserialize(self, params):
|
|
9772
9822
|
self._Path = params.get("Path")
|
|
9823
|
+
self._Port = params.get("Port")
|
|
9773
9824
|
memeber_set = set(params.keys())
|
|
9774
9825
|
for name, value in vars(self).items():
|
|
9775
9826
|
property_name = name[1:]
|
|
@@ -14979,6 +15030,57 @@ class NotebookSetItem(AbstractModel):
|
|
|
14979
15030
|
|
|
14980
15031
|
|
|
14981
15032
|
|
|
15033
|
+
class NumOrPercent(AbstractModel):
|
|
15034
|
+
"""用于表示百分比或数量
|
|
15035
|
+
|
|
15036
|
+
"""
|
|
15037
|
+
|
|
15038
|
+
def __init__(self):
|
|
15039
|
+
r"""
|
|
15040
|
+
:param _Type: Num,Percent ,分别表示数量和百分比,默认为 Num
|
|
15041
|
+
:type Type: str
|
|
15042
|
+
:param _Value: 数值
|
|
15043
|
+
:type Value: int
|
|
15044
|
+
"""
|
|
15045
|
+
self._Type = None
|
|
15046
|
+
self._Value = None
|
|
15047
|
+
|
|
15048
|
+
@property
|
|
15049
|
+
def Type(self):
|
|
15050
|
+
"""Num,Percent ,分别表示数量和百分比,默认为 Num
|
|
15051
|
+
:rtype: str
|
|
15052
|
+
"""
|
|
15053
|
+
return self._Type
|
|
15054
|
+
|
|
15055
|
+
@Type.setter
|
|
15056
|
+
def Type(self, Type):
|
|
15057
|
+
self._Type = Type
|
|
15058
|
+
|
|
15059
|
+
@property
|
|
15060
|
+
def Value(self):
|
|
15061
|
+
"""数值
|
|
15062
|
+
:rtype: int
|
|
15063
|
+
"""
|
|
15064
|
+
return self._Value
|
|
15065
|
+
|
|
15066
|
+
@Value.setter
|
|
15067
|
+
def Value(self, Value):
|
|
15068
|
+
self._Value = Value
|
|
15069
|
+
|
|
15070
|
+
|
|
15071
|
+
def _deserialize(self, params):
|
|
15072
|
+
self._Type = params.get("Type")
|
|
15073
|
+
self._Value = params.get("Value")
|
|
15074
|
+
memeber_set = set(params.keys())
|
|
15075
|
+
for name, value in vars(self).items():
|
|
15076
|
+
property_name = name[1:]
|
|
15077
|
+
if property_name in memeber_set:
|
|
15078
|
+
memeber_set.remove(property_name)
|
|
15079
|
+
if len(memeber_set) > 0:
|
|
15080
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
15081
|
+
|
|
15082
|
+
|
|
15083
|
+
|
|
14982
15084
|
class Option(AbstractModel):
|
|
14983
15085
|
"""键值对
|
|
14984
15086
|
|
|
@@ -15600,8 +15702,17 @@ class ProbeAction(AbstractModel):
|
|
|
15600
15702
|
r"""
|
|
15601
15703
|
:param _HTTPGet: http get 行为
|
|
15602
15704
|
:type HTTPGet: :class:`tencentcloud.tione.v20211111.models.HTTPGetAction`
|
|
15705
|
+
:param _Exec: 执行命令检查 行为
|
|
15706
|
+
:type Exec: :class:`tencentcloud.tione.v20211111.models.ExecAction`
|
|
15707
|
+
:param _TCPSocket: tcp socket 检查行为
|
|
15708
|
+
:type TCPSocket: :class:`tencentcloud.tione.v20211111.models.TCPSocketAction`
|
|
15709
|
+
:param _ActionType: 探针类型,默认 HTTPGet,可选值:HTTPGet、Exec、TCPSocket
|
|
15710
|
+
:type ActionType: str
|
|
15603
15711
|
"""
|
|
15604
15712
|
self._HTTPGet = None
|
|
15713
|
+
self._Exec = None
|
|
15714
|
+
self._TCPSocket = None
|
|
15715
|
+
self._ActionType = None
|
|
15605
15716
|
|
|
15606
15717
|
@property
|
|
15607
15718
|
def HTTPGet(self):
|
|
@@ -15614,11 +15725,51 @@ class ProbeAction(AbstractModel):
|
|
|
15614
15725
|
def HTTPGet(self, HTTPGet):
|
|
15615
15726
|
self._HTTPGet = HTTPGet
|
|
15616
15727
|
|
|
15728
|
+
@property
|
|
15729
|
+
def Exec(self):
|
|
15730
|
+
"""执行命令检查 行为
|
|
15731
|
+
:rtype: :class:`tencentcloud.tione.v20211111.models.ExecAction`
|
|
15732
|
+
"""
|
|
15733
|
+
return self._Exec
|
|
15734
|
+
|
|
15735
|
+
@Exec.setter
|
|
15736
|
+
def Exec(self, Exec):
|
|
15737
|
+
self._Exec = Exec
|
|
15738
|
+
|
|
15739
|
+
@property
|
|
15740
|
+
def TCPSocket(self):
|
|
15741
|
+
"""tcp socket 检查行为
|
|
15742
|
+
:rtype: :class:`tencentcloud.tione.v20211111.models.TCPSocketAction`
|
|
15743
|
+
"""
|
|
15744
|
+
return self._TCPSocket
|
|
15745
|
+
|
|
15746
|
+
@TCPSocket.setter
|
|
15747
|
+
def TCPSocket(self, TCPSocket):
|
|
15748
|
+
self._TCPSocket = TCPSocket
|
|
15749
|
+
|
|
15750
|
+
@property
|
|
15751
|
+
def ActionType(self):
|
|
15752
|
+
"""探针类型,默认 HTTPGet,可选值:HTTPGet、Exec、TCPSocket
|
|
15753
|
+
:rtype: str
|
|
15754
|
+
"""
|
|
15755
|
+
return self._ActionType
|
|
15756
|
+
|
|
15757
|
+
@ActionType.setter
|
|
15758
|
+
def ActionType(self, ActionType):
|
|
15759
|
+
self._ActionType = ActionType
|
|
15760
|
+
|
|
15617
15761
|
|
|
15618
15762
|
def _deserialize(self, params):
|
|
15619
15763
|
if params.get("HTTPGet") is not None:
|
|
15620
15764
|
self._HTTPGet = HTTPGetAction()
|
|
15621
15765
|
self._HTTPGet._deserialize(params.get("HTTPGet"))
|
|
15766
|
+
if params.get("Exec") is not None:
|
|
15767
|
+
self._Exec = ExecAction()
|
|
15768
|
+
self._Exec._deserialize(params.get("Exec"))
|
|
15769
|
+
if params.get("TCPSocket") is not None:
|
|
15770
|
+
self._TCPSocket = TCPSocketAction()
|
|
15771
|
+
self._TCPSocket._deserialize(params.get("TCPSocket"))
|
|
15772
|
+
self._ActionType = params.get("ActionType")
|
|
15622
15773
|
memeber_set = set(params.keys())
|
|
15623
15774
|
for name, value in vars(self).items():
|
|
15624
15775
|
property_name = name[1:]
|
|
@@ -16488,6 +16639,61 @@ class ResourceInstanceRunningJobInfo(AbstractModel):
|
|
|
16488
16639
|
|
|
16489
16640
|
|
|
16490
16641
|
|
|
16642
|
+
class RollingUpdate(AbstractModel):
|
|
16643
|
+
"""滚动更新策略
|
|
16644
|
+
|
|
16645
|
+
"""
|
|
16646
|
+
|
|
16647
|
+
def __init__(self):
|
|
16648
|
+
r"""
|
|
16649
|
+
:param _MaxUnavailable: 滚动更新的最大不可用
|
|
16650
|
+
:type MaxUnavailable: :class:`tencentcloud.tione.v20211111.models.NumOrPercent`
|
|
16651
|
+
:param _MaxSurge: 滚动更新的最大新增实例
|
|
16652
|
+
:type MaxSurge: :class:`tencentcloud.tione.v20211111.models.NumOrPercent`
|
|
16653
|
+
"""
|
|
16654
|
+
self._MaxUnavailable = None
|
|
16655
|
+
self._MaxSurge = None
|
|
16656
|
+
|
|
16657
|
+
@property
|
|
16658
|
+
def MaxUnavailable(self):
|
|
16659
|
+
"""滚动更新的最大不可用
|
|
16660
|
+
:rtype: :class:`tencentcloud.tione.v20211111.models.NumOrPercent`
|
|
16661
|
+
"""
|
|
16662
|
+
return self._MaxUnavailable
|
|
16663
|
+
|
|
16664
|
+
@MaxUnavailable.setter
|
|
16665
|
+
def MaxUnavailable(self, MaxUnavailable):
|
|
16666
|
+
self._MaxUnavailable = MaxUnavailable
|
|
16667
|
+
|
|
16668
|
+
@property
|
|
16669
|
+
def MaxSurge(self):
|
|
16670
|
+
"""滚动更新的最大新增实例
|
|
16671
|
+
:rtype: :class:`tencentcloud.tione.v20211111.models.NumOrPercent`
|
|
16672
|
+
"""
|
|
16673
|
+
return self._MaxSurge
|
|
16674
|
+
|
|
16675
|
+
@MaxSurge.setter
|
|
16676
|
+
def MaxSurge(self, MaxSurge):
|
|
16677
|
+
self._MaxSurge = MaxSurge
|
|
16678
|
+
|
|
16679
|
+
|
|
16680
|
+
def _deserialize(self, params):
|
|
16681
|
+
if params.get("MaxUnavailable") is not None:
|
|
16682
|
+
self._MaxUnavailable = NumOrPercent()
|
|
16683
|
+
self._MaxUnavailable._deserialize(params.get("MaxUnavailable"))
|
|
16684
|
+
if params.get("MaxSurge") is not None:
|
|
16685
|
+
self._MaxSurge = NumOrPercent()
|
|
16686
|
+
self._MaxSurge._deserialize(params.get("MaxSurge"))
|
|
16687
|
+
memeber_set = set(params.keys())
|
|
16688
|
+
for name, value in vars(self).items():
|
|
16689
|
+
property_name = name[1:]
|
|
16690
|
+
if property_name in memeber_set:
|
|
16691
|
+
memeber_set.remove(property_name)
|
|
16692
|
+
if len(memeber_set) > 0:
|
|
16693
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
16694
|
+
|
|
16695
|
+
|
|
16696
|
+
|
|
16491
16697
|
class SSHConfig(AbstractModel):
|
|
16492
16698
|
"""notebook ssh端口配置
|
|
16493
16699
|
|
|
@@ -17831,6 +18037,8 @@ UPDATING 更新中
|
|
|
17831
18037
|
:type AuthorizationEnable: bool
|
|
17832
18038
|
:param _AuthTokens: 限流鉴权 token 列表
|
|
17833
18039
|
:type AuthTokens: list of AuthToken
|
|
18040
|
+
:param _MonitorSource: 用于监控的创建来源字段
|
|
18041
|
+
:type MonitorSource: str
|
|
17834
18042
|
"""
|
|
17835
18043
|
self._ServiceGroupId = None
|
|
17836
18044
|
self._ServiceGroupName = None
|
|
@@ -17854,6 +18062,7 @@ UPDATING 更新中
|
|
|
17854
18062
|
self._AppId = None
|
|
17855
18063
|
self._AuthorizationEnable = None
|
|
17856
18064
|
self._AuthTokens = None
|
|
18065
|
+
self._MonitorSource = None
|
|
17857
18066
|
|
|
17858
18067
|
@property
|
|
17859
18068
|
def ServiceGroupId(self):
|
|
@@ -18126,6 +18335,17 @@ UPDATING 更新中
|
|
|
18126
18335
|
def AuthTokens(self, AuthTokens):
|
|
18127
18336
|
self._AuthTokens = AuthTokens
|
|
18128
18337
|
|
|
18338
|
+
@property
|
|
18339
|
+
def MonitorSource(self):
|
|
18340
|
+
"""用于监控的创建来源字段
|
|
18341
|
+
:rtype: str
|
|
18342
|
+
"""
|
|
18343
|
+
return self._MonitorSource
|
|
18344
|
+
|
|
18345
|
+
@MonitorSource.setter
|
|
18346
|
+
def MonitorSource(self, MonitorSource):
|
|
18347
|
+
self._MonitorSource = MonitorSource
|
|
18348
|
+
|
|
18129
18349
|
|
|
18130
18350
|
def _deserialize(self, params):
|
|
18131
18351
|
self._ServiceGroupId = params.get("ServiceGroupId")
|
|
@@ -18165,6 +18385,7 @@ UPDATING 更新中
|
|
|
18165
18385
|
obj = AuthToken()
|
|
18166
18386
|
obj._deserialize(item)
|
|
18167
18387
|
self._AuthTokens.append(obj)
|
|
18388
|
+
self._MonitorSource = params.get("MonitorSource")
|
|
18168
18389
|
memeber_set = set(params.keys())
|
|
18169
18390
|
for name, value in vars(self).items():
|
|
18170
18391
|
property_name = name[1:]
|
|
@@ -18293,6 +18514,8 @@ HYBRID_PAID:
|
|
|
18293
18514
|
:type GrpcEnable: bool
|
|
18294
18515
|
:param _HealthProbe: 健康探针
|
|
18295
18516
|
:type HealthProbe: :class:`tencentcloud.tione.v20211111.models.HealthProbe`
|
|
18517
|
+
:param _RollingUpdate: 滚动更新配置
|
|
18518
|
+
:type RollingUpdate: :class:`tencentcloud.tione.v20211111.models.RollingUpdate`
|
|
18296
18519
|
"""
|
|
18297
18520
|
self._Replicas = None
|
|
18298
18521
|
self._ImageInfo = None
|
|
@@ -18330,6 +18553,7 @@ HYBRID_PAID:
|
|
|
18330
18553
|
self._PreStopCommand = None
|
|
18331
18554
|
self._GrpcEnable = None
|
|
18332
18555
|
self._HealthProbe = None
|
|
18556
|
+
self._RollingUpdate = None
|
|
18333
18557
|
|
|
18334
18558
|
@property
|
|
18335
18559
|
def Replicas(self):
|
|
@@ -18774,6 +18998,17 @@ HYBRID_PAID:
|
|
|
18774
18998
|
def HealthProbe(self, HealthProbe):
|
|
18775
18999
|
self._HealthProbe = HealthProbe
|
|
18776
19000
|
|
|
19001
|
+
@property
|
|
19002
|
+
def RollingUpdate(self):
|
|
19003
|
+
"""滚动更新配置
|
|
19004
|
+
:rtype: :class:`tencentcloud.tione.v20211111.models.RollingUpdate`
|
|
19005
|
+
"""
|
|
19006
|
+
return self._RollingUpdate
|
|
19007
|
+
|
|
19008
|
+
@RollingUpdate.setter
|
|
19009
|
+
def RollingUpdate(self, RollingUpdate):
|
|
19010
|
+
self._RollingUpdate = RollingUpdate
|
|
19011
|
+
|
|
18777
19012
|
|
|
18778
19013
|
def _deserialize(self, params):
|
|
18779
19014
|
self._Replicas = params.get("Replicas")
|
|
@@ -18855,6 +19090,9 @@ HYBRID_PAID:
|
|
|
18855
19090
|
if params.get("HealthProbe") is not None:
|
|
18856
19091
|
self._HealthProbe = HealthProbe()
|
|
18857
19092
|
self._HealthProbe._deserialize(params.get("HealthProbe"))
|
|
19093
|
+
if params.get("RollingUpdate") is not None:
|
|
19094
|
+
self._RollingUpdate = RollingUpdate()
|
|
19095
|
+
self._RollingUpdate._deserialize(params.get("RollingUpdate"))
|
|
18858
19096
|
memeber_set = set(params.keys())
|
|
18859
19097
|
for name, value in vars(self).items():
|
|
18860
19098
|
property_name = name[1:]
|
|
@@ -19785,6 +20023,42 @@ class StopTrainingTaskResponse(AbstractModel):
|
|
|
19785
20023
|
self._RequestId = params.get("RequestId")
|
|
19786
20024
|
|
|
19787
20025
|
|
|
20026
|
+
class TCPSocketAction(AbstractModel):
|
|
20027
|
+
"""tcp socket 健康探针检查行为
|
|
20028
|
+
|
|
20029
|
+
"""
|
|
20030
|
+
|
|
20031
|
+
def __init__(self):
|
|
20032
|
+
r"""
|
|
20033
|
+
:param _Port: 调用端口
|
|
20034
|
+
:type Port: int
|
|
20035
|
+
"""
|
|
20036
|
+
self._Port = None
|
|
20037
|
+
|
|
20038
|
+
@property
|
|
20039
|
+
def Port(self):
|
|
20040
|
+
"""调用端口
|
|
20041
|
+
:rtype: int
|
|
20042
|
+
"""
|
|
20043
|
+
return self._Port
|
|
20044
|
+
|
|
20045
|
+
@Port.setter
|
|
20046
|
+
def Port(self, Port):
|
|
20047
|
+
self._Port = Port
|
|
20048
|
+
|
|
20049
|
+
|
|
20050
|
+
def _deserialize(self, params):
|
|
20051
|
+
self._Port = params.get("Port")
|
|
20052
|
+
memeber_set = set(params.keys())
|
|
20053
|
+
for name, value in vars(self).items():
|
|
20054
|
+
property_name = name[1:]
|
|
20055
|
+
if property_name in memeber_set:
|
|
20056
|
+
memeber_set.remove(property_name)
|
|
20057
|
+
if len(memeber_set) > 0:
|
|
20058
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
20059
|
+
|
|
20060
|
+
|
|
20061
|
+
|
|
19788
20062
|
class TJCallInfo(AbstractModel):
|
|
19789
20063
|
"""太极服务的调用信息
|
|
19790
20064
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1379
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1377
|
{tencentcloud-sdk-python-tione-3.0.1377 → tencentcloud-sdk-python-tione-3.0.1379}/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
|