tencentcloud-sdk-python-tsf 3.1.145__tar.gz → 3.1.162__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.
Files changed (17) hide show
  1. {tencentcloud_sdk_python_tsf-3.1.145 → tencentcloud_sdk_python_tsf-3.1.162}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_tsf-3.1.145 → tencentcloud_sdk_python_tsf-3.1.162}/setup.py +1 -1
  3. {tencentcloud_sdk_python_tsf-3.1.145 → tencentcloud_sdk_python_tsf-3.1.162}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_tsf-3.1.145 → tencentcloud_sdk_python_tsf-3.1.162}/tencentcloud/tsf/v20180326/models.py +469 -2
  5. {tencentcloud_sdk_python_tsf-3.1.145 → tencentcloud_sdk_python_tsf-3.1.162}/tencentcloud_sdk_python_tsf.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_tsf-3.1.162/tencentcloud_sdk_python_tsf.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_tsf-3.1.145/tencentcloud_sdk_python_tsf.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_tsf-3.1.145 → tencentcloud_sdk_python_tsf-3.1.162}/README.rst +0 -0
  9. {tencentcloud_sdk_python_tsf-3.1.145 → tencentcloud_sdk_python_tsf-3.1.162}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_tsf-3.1.145 → tencentcloud_sdk_python_tsf-3.1.162}/tencentcloud/tsf/__init__.py +0 -0
  11. {tencentcloud_sdk_python_tsf-3.1.145 → tencentcloud_sdk_python_tsf-3.1.162}/tencentcloud/tsf/v20180326/__init__.py +0 -0
  12. {tencentcloud_sdk_python_tsf-3.1.145 → tencentcloud_sdk_python_tsf-3.1.162}/tencentcloud/tsf/v20180326/errorcodes.py +0 -0
  13. {tencentcloud_sdk_python_tsf-3.1.145 → tencentcloud_sdk_python_tsf-3.1.162}/tencentcloud/tsf/v20180326/tsf_client.py +0 -0
  14. {tencentcloud_sdk_python_tsf-3.1.145 → tencentcloud_sdk_python_tsf-3.1.162}/tencentcloud/tsf/v20180326/tsf_client_async.py +0 -0
  15. {tencentcloud_sdk_python_tsf-3.1.145 → tencentcloud_sdk_python_tsf-3.1.162}/tencentcloud_sdk_python_tsf.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_tsf-3.1.145 → tencentcloud_sdk_python_tsf-3.1.162}/tencentcloud_sdk_python_tsf.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_tsf-3.1.145 → tencentcloud_sdk_python_tsf-3.1.162}/tencentcloud_sdk_python_tsf.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-tsf
3
- Version: 3.1.145
3
+ Version: 3.1.162
4
4
  Summary: Tencent Cloud Tsf SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.145
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.162
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-tsf',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.145,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.162,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Tsf SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.145'
17
+ __version__ = '3.1.162'
@@ -17821,6 +17821,8 @@ class DeployContainerApplicationRequest(AbstractModel):
17821
17821
  :type DoNotStart: bool
17822
17822
  :param _ImagePullSecretList: <p>镜像Secret列表</p>
17823
17823
  :type ImagePullSecretList: list of str
17824
+ :param _MeshSidecarVersion: <p>用于区分使用sidecar的版本是稳定版还是发行版</p><p>枚举值:</p><ul><li>stable: sidecar稳定版</li><li>release: sidecar发行版</li></ul>
17825
+ :type MeshSidecarVersion: str
17824
17826
  """
17825
17827
  self._ApplicationId = None
17826
17828
  self._ObservabilityConfig = None
@@ -17886,6 +17888,7 @@ class DeployContainerApplicationRequest(AbstractModel):
17886
17888
  self._IncrementalDeployment = None
17887
17889
  self._DoNotStart = None
17888
17890
  self._ImagePullSecretList = None
17891
+ self._MeshSidecarVersion = None
17889
17892
 
17890
17893
  @property
17891
17894
  def ApplicationId(self):
@@ -18591,6 +18594,17 @@ class DeployContainerApplicationRequest(AbstractModel):
18591
18594
  def ImagePullSecretList(self, ImagePullSecretList):
18592
18595
  self._ImagePullSecretList = ImagePullSecretList
18593
18596
 
18597
+ @property
18598
+ def MeshSidecarVersion(self):
18599
+ r"""<p>用于区分使用sidecar的版本是稳定版还是发行版</p><p>枚举值:</p><ul><li>stable: sidecar稳定版</li><li>release: sidecar发行版</li></ul>
18600
+ :rtype: str
18601
+ """
18602
+ return self._MeshSidecarVersion
18603
+
18604
+ @MeshSidecarVersion.setter
18605
+ def MeshSidecarVersion(self, MeshSidecarVersion):
18606
+ self._MeshSidecarVersion = MeshSidecarVersion
18607
+
18594
18608
 
18595
18609
  def _deserialize(self, params):
18596
18610
  self._ApplicationId = params.get("ApplicationId")
@@ -18709,6 +18723,7 @@ class DeployContainerApplicationRequest(AbstractModel):
18709
18723
  self._IncrementalDeployment = params.get("IncrementalDeployment")
18710
18724
  self._DoNotStart = params.get("DoNotStart")
18711
18725
  self._ImagePullSecretList = params.get("ImagePullSecretList")
18726
+ self._MeshSidecarVersion = params.get("MeshSidecarVersion")
18712
18727
  memeber_set = set(params.keys())
18713
18728
  for name, value in vars(self).items():
18714
18729
  property_name = name[1:]
@@ -55122,7 +55137,7 @@ class VmGroup(AbstractModel):
55122
55137
  :type MicroserviceType: str
55123
55138
  :param _ApplicationType: <p>应用类型</p>
55124
55139
  :type ApplicationType: str
55125
- :param _GroupResourceType: <p>部署组资源类型</p>
55140
+ :param _GroupResourceType: <p>部署组资源类型</p><p>枚举值:</p><ul><li>GW: 网关</li><li>DEF: 普通业务部署组</li><li>SVL: Serverless</li></ul>
55126
55141
  :type GroupResourceType: str
55127
55142
  :param _UpdatedTime: <p>部署组更新时间戳</p>
55128
55143
  :type UpdatedTime: int
@@ -55179,6 +55194,64 @@ class VmGroup(AbstractModel):
55179
55194
  :type RepositoryType: str
55180
55195
  :param _LivenessAutoRestart: <p>是否自动重启</p>
55181
55196
  :type LivenessAutoRestart: bool
55197
+ :param _MeshSidecarVersion: <p>Mesh Sidecar 数据面版本通道</p><p>枚举值:</p><ul><li>stable: 稳定版</li><li>release: 最新版</li></ul>
55198
+ :type MeshSidecarVersion: str
55199
+ :param _BusinessLogConfigIdList: <p>业务日志配置 ID 列表</p>
55200
+ :type BusinessLogConfigIdList: str
55201
+ :param _BusinessLogDeliveryConfigIdList: <p>业务系统 ID</p>
55202
+ :type BusinessLogDeliveryConfigIdList: str
55203
+ :param _BusinessSystemId: <p>String型普通说明场景</p>
55204
+ :type BusinessSystemId: str
55205
+ :param _BusinessSystemName: <p>业务系统名称</p>
55206
+ :type BusinessSystemName: str
55207
+ :param _ClsMachineGroupId: <p>CLS 机器组 ID</p>
55208
+ :type ClsMachineGroupId: str
55209
+ :param _EnableGovernance: <p>是否开启服务治理</p>
55210
+ :type EnableGovernance: bool
55211
+ :param _EnableTelemetry: <p>是否开启可观测</p>
55212
+ :type EnableTelemetry: bool
55213
+ :param _EnableTelemetryAgent: <p>是否开启 OT Agent</p>
55214
+ :type EnableTelemetryAgent: bool
55215
+ :param _EnabledUnit: <p>是否开启单元化</p>
55216
+ :type EnabledUnit: bool
55217
+ :param _ExclusiveInstances: <p>独享注册中心/配置中心实例列表</p>
55218
+ :type ExclusiveInstances: list of ExclusiveInstance
55219
+ :param _FrameworkType: <p>框架接入类型</p>
55220
+ :type FrameworkType: str
55221
+ :param _GovernanceType: <p>服务治理实例模式</p>
55222
+ :type GovernanceType: str
55223
+ :param _InstanceIdList: <p>部署组关联实例 ID 列表</p>
55224
+ :type InstanceIdList: list of str
55225
+ :param _IsStop: <p>部署组是否处于停止状态</p>
55226
+ :type IsStop: str
55227
+ :param _K8sNamespaceName: <p>K8s 命名空间名称</p>
55228
+ :type K8sNamespaceName: str
55229
+ :param _Language: <p>请求语言</p>
55230
+ :type Language: str
55231
+ :param _MicroserviceSubType: <p>微服务子类型</p>
55232
+ :type MicroserviceSubType: str
55233
+ :param _NonInvasiveType: <p>非侵入接入子类型</p>
55234
+ :type NonInvasiveType: str
55235
+ :param _PreStopScript: <p>预停止脚本内容</p>
55236
+ :type PreStopScript: str
55237
+ :param _RealNamespaceName: <p>实际使用的 K8s 命名空间名称</p>
55238
+ :type RealNamespaceName: str
55239
+ :param _ServiceConfigList: <p>Mesh 服务端口与健康检查配置列表</p>
55240
+ :type ServiceConfigList: list of ServiceConfig
55241
+ :param _ServiceGovernanceConfig: <p>服务治理配置聚合对象</p>
55242
+ :type ServiceGovernanceConfig: :class:`tencentcloud.tsf.v20180326.models.ServiceGovernanceConfig`
55243
+ :param _Tags: <p>部署组标签列表</p>
55244
+ :type Tags: list of Tag
55245
+ :param _TapmOtAgentVersion: <p>Tapm OT Agent 版本</p>
55246
+ :type TapmOtAgentVersion: str
55247
+ :param _UnitEnvType: <p>单元环境类型</p>
55248
+ :type UnitEnvType: str
55249
+ :param _UnitId: <p>单元 ID</p>
55250
+ :type UnitId: str
55251
+ :param _UnitName: <p>单元类型</p>
55252
+ :type UnitName: str
55253
+ :param _UnitType: <p>部署组资源类型</p>
55254
+ :type UnitType: str
55182
55255
  """
55183
55256
  self._GroupId = None
55184
55257
  self._GroupName = None
@@ -55226,6 +55299,35 @@ class VmGroup(AbstractModel):
55226
55299
  self._RepositoryName = None
55227
55300
  self._RepositoryType = None
55228
55301
  self._LivenessAutoRestart = None
55302
+ self._MeshSidecarVersion = None
55303
+ self._BusinessLogConfigIdList = None
55304
+ self._BusinessLogDeliveryConfigIdList = None
55305
+ self._BusinessSystemId = None
55306
+ self._BusinessSystemName = None
55307
+ self._ClsMachineGroupId = None
55308
+ self._EnableGovernance = None
55309
+ self._EnableTelemetry = None
55310
+ self._EnableTelemetryAgent = None
55311
+ self._EnabledUnit = None
55312
+ self._ExclusiveInstances = None
55313
+ self._FrameworkType = None
55314
+ self._GovernanceType = None
55315
+ self._InstanceIdList = None
55316
+ self._IsStop = None
55317
+ self._K8sNamespaceName = None
55318
+ self._Language = None
55319
+ self._MicroserviceSubType = None
55320
+ self._NonInvasiveType = None
55321
+ self._PreStopScript = None
55322
+ self._RealNamespaceName = None
55323
+ self._ServiceConfigList = None
55324
+ self._ServiceGovernanceConfig = None
55325
+ self._Tags = None
55326
+ self._TapmOtAgentVersion = None
55327
+ self._UnitEnvType = None
55328
+ self._UnitId = None
55329
+ self._UnitName = None
55330
+ self._UnitType = None
55229
55331
 
55230
55332
  @property
55231
55333
  def GroupId(self):
@@ -55465,7 +55567,7 @@ class VmGroup(AbstractModel):
55465
55567
 
55466
55568
  @property
55467
55569
  def GroupResourceType(self):
55468
- r"""<p>部署组资源类型</p>
55570
+ r"""<p>部署组资源类型</p><p>枚举值:</p><ul><li>GW: 网关</li><li>DEF: 普通业务部署组</li><li>SVL: Serverless</li></ul>
55469
55571
  :rtype: str
55470
55572
  """
55471
55573
  return self._GroupResourceType
@@ -55745,6 +55847,325 @@ class VmGroup(AbstractModel):
55745
55847
  def LivenessAutoRestart(self, LivenessAutoRestart):
55746
55848
  self._LivenessAutoRestart = LivenessAutoRestart
55747
55849
 
55850
+ @property
55851
+ def MeshSidecarVersion(self):
55852
+ r"""<p>Mesh Sidecar 数据面版本通道</p><p>枚举值:</p><ul><li>stable: 稳定版</li><li>release: 最新版</li></ul>
55853
+ :rtype: str
55854
+ """
55855
+ return self._MeshSidecarVersion
55856
+
55857
+ @MeshSidecarVersion.setter
55858
+ def MeshSidecarVersion(self, MeshSidecarVersion):
55859
+ self._MeshSidecarVersion = MeshSidecarVersion
55860
+
55861
+ @property
55862
+ def BusinessLogConfigIdList(self):
55863
+ r"""<p>业务日志配置 ID 列表</p>
55864
+ :rtype: str
55865
+ """
55866
+ return self._BusinessLogConfigIdList
55867
+
55868
+ @BusinessLogConfigIdList.setter
55869
+ def BusinessLogConfigIdList(self, BusinessLogConfigIdList):
55870
+ self._BusinessLogConfigIdList = BusinessLogConfigIdList
55871
+
55872
+ @property
55873
+ def BusinessLogDeliveryConfigIdList(self):
55874
+ r"""<p>业务系统 ID</p>
55875
+ :rtype: str
55876
+ """
55877
+ return self._BusinessLogDeliveryConfigIdList
55878
+
55879
+ @BusinessLogDeliveryConfigIdList.setter
55880
+ def BusinessLogDeliveryConfigIdList(self, BusinessLogDeliveryConfigIdList):
55881
+ self._BusinessLogDeliveryConfigIdList = BusinessLogDeliveryConfigIdList
55882
+
55883
+ @property
55884
+ def BusinessSystemId(self):
55885
+ r"""<p>String型普通说明场景</p>
55886
+ :rtype: str
55887
+ """
55888
+ return self._BusinessSystemId
55889
+
55890
+ @BusinessSystemId.setter
55891
+ def BusinessSystemId(self, BusinessSystemId):
55892
+ self._BusinessSystemId = BusinessSystemId
55893
+
55894
+ @property
55895
+ def BusinessSystemName(self):
55896
+ r"""<p>业务系统名称</p>
55897
+ :rtype: str
55898
+ """
55899
+ return self._BusinessSystemName
55900
+
55901
+ @BusinessSystemName.setter
55902
+ def BusinessSystemName(self, BusinessSystemName):
55903
+ self._BusinessSystemName = BusinessSystemName
55904
+
55905
+ @property
55906
+ def ClsMachineGroupId(self):
55907
+ r"""<p>CLS 机器组 ID</p>
55908
+ :rtype: str
55909
+ """
55910
+ return self._ClsMachineGroupId
55911
+
55912
+ @ClsMachineGroupId.setter
55913
+ def ClsMachineGroupId(self, ClsMachineGroupId):
55914
+ self._ClsMachineGroupId = ClsMachineGroupId
55915
+
55916
+ @property
55917
+ def EnableGovernance(self):
55918
+ r"""<p>是否开启服务治理</p>
55919
+ :rtype: bool
55920
+ """
55921
+ return self._EnableGovernance
55922
+
55923
+ @EnableGovernance.setter
55924
+ def EnableGovernance(self, EnableGovernance):
55925
+ self._EnableGovernance = EnableGovernance
55926
+
55927
+ @property
55928
+ def EnableTelemetry(self):
55929
+ r"""<p>是否开启可观测</p>
55930
+ :rtype: bool
55931
+ """
55932
+ return self._EnableTelemetry
55933
+
55934
+ @EnableTelemetry.setter
55935
+ def EnableTelemetry(self, EnableTelemetry):
55936
+ self._EnableTelemetry = EnableTelemetry
55937
+
55938
+ @property
55939
+ def EnableTelemetryAgent(self):
55940
+ r"""<p>是否开启 OT Agent</p>
55941
+ :rtype: bool
55942
+ """
55943
+ return self._EnableTelemetryAgent
55944
+
55945
+ @EnableTelemetryAgent.setter
55946
+ def EnableTelemetryAgent(self, EnableTelemetryAgent):
55947
+ self._EnableTelemetryAgent = EnableTelemetryAgent
55948
+
55949
+ @property
55950
+ def EnabledUnit(self):
55951
+ r"""<p>是否开启单元化</p>
55952
+ :rtype: bool
55953
+ """
55954
+ return self._EnabledUnit
55955
+
55956
+ @EnabledUnit.setter
55957
+ def EnabledUnit(self, EnabledUnit):
55958
+ self._EnabledUnit = EnabledUnit
55959
+
55960
+ @property
55961
+ def ExclusiveInstances(self):
55962
+ r"""<p>独享注册中心/配置中心实例列表</p>
55963
+ :rtype: list of ExclusiveInstance
55964
+ """
55965
+ return self._ExclusiveInstances
55966
+
55967
+ @ExclusiveInstances.setter
55968
+ def ExclusiveInstances(self, ExclusiveInstances):
55969
+ self._ExclusiveInstances = ExclusiveInstances
55970
+
55971
+ @property
55972
+ def FrameworkType(self):
55973
+ r"""<p>框架接入类型</p>
55974
+ :rtype: str
55975
+ """
55976
+ return self._FrameworkType
55977
+
55978
+ @FrameworkType.setter
55979
+ def FrameworkType(self, FrameworkType):
55980
+ self._FrameworkType = FrameworkType
55981
+
55982
+ @property
55983
+ def GovernanceType(self):
55984
+ r"""<p>服务治理实例模式</p>
55985
+ :rtype: str
55986
+ """
55987
+ return self._GovernanceType
55988
+
55989
+ @GovernanceType.setter
55990
+ def GovernanceType(self, GovernanceType):
55991
+ self._GovernanceType = GovernanceType
55992
+
55993
+ @property
55994
+ def InstanceIdList(self):
55995
+ r"""<p>部署组关联实例 ID 列表</p>
55996
+ :rtype: list of str
55997
+ """
55998
+ return self._InstanceIdList
55999
+
56000
+ @InstanceIdList.setter
56001
+ def InstanceIdList(self, InstanceIdList):
56002
+ self._InstanceIdList = InstanceIdList
56003
+
56004
+ @property
56005
+ def IsStop(self):
56006
+ r"""<p>部署组是否处于停止状态</p>
56007
+ :rtype: str
56008
+ """
56009
+ return self._IsStop
56010
+
56011
+ @IsStop.setter
56012
+ def IsStop(self, IsStop):
56013
+ self._IsStop = IsStop
56014
+
56015
+ @property
56016
+ def K8sNamespaceName(self):
56017
+ r"""<p>K8s 命名空间名称</p>
56018
+ :rtype: str
56019
+ """
56020
+ return self._K8sNamespaceName
56021
+
56022
+ @K8sNamespaceName.setter
56023
+ def K8sNamespaceName(self, K8sNamespaceName):
56024
+ self._K8sNamespaceName = K8sNamespaceName
56025
+
56026
+ @property
56027
+ def Language(self):
56028
+ r"""<p>请求语言</p>
56029
+ :rtype: str
56030
+ """
56031
+ return self._Language
56032
+
56033
+ @Language.setter
56034
+ def Language(self, Language):
56035
+ self._Language = Language
56036
+
56037
+ @property
56038
+ def MicroserviceSubType(self):
56039
+ r"""<p>微服务子类型</p>
56040
+ :rtype: str
56041
+ """
56042
+ return self._MicroserviceSubType
56043
+
56044
+ @MicroserviceSubType.setter
56045
+ def MicroserviceSubType(self, MicroserviceSubType):
56046
+ self._MicroserviceSubType = MicroserviceSubType
56047
+
56048
+ @property
56049
+ def NonInvasiveType(self):
56050
+ r"""<p>非侵入接入子类型</p>
56051
+ :rtype: str
56052
+ """
56053
+ return self._NonInvasiveType
56054
+
56055
+ @NonInvasiveType.setter
56056
+ def NonInvasiveType(self, NonInvasiveType):
56057
+ self._NonInvasiveType = NonInvasiveType
56058
+
56059
+ @property
56060
+ def PreStopScript(self):
56061
+ r"""<p>预停止脚本内容</p>
56062
+ :rtype: str
56063
+ """
56064
+ return self._PreStopScript
56065
+
56066
+ @PreStopScript.setter
56067
+ def PreStopScript(self, PreStopScript):
56068
+ self._PreStopScript = PreStopScript
56069
+
56070
+ @property
56071
+ def RealNamespaceName(self):
56072
+ r"""<p>实际使用的 K8s 命名空间名称</p>
56073
+ :rtype: str
56074
+ """
56075
+ return self._RealNamespaceName
56076
+
56077
+ @RealNamespaceName.setter
56078
+ def RealNamespaceName(self, RealNamespaceName):
56079
+ self._RealNamespaceName = RealNamespaceName
56080
+
56081
+ @property
56082
+ def ServiceConfigList(self):
56083
+ r"""<p>Mesh 服务端口与健康检查配置列表</p>
56084
+ :rtype: list of ServiceConfig
56085
+ """
56086
+ return self._ServiceConfigList
56087
+
56088
+ @ServiceConfigList.setter
56089
+ def ServiceConfigList(self, ServiceConfigList):
56090
+ self._ServiceConfigList = ServiceConfigList
56091
+
56092
+ @property
56093
+ def ServiceGovernanceConfig(self):
56094
+ r"""<p>服务治理配置聚合对象</p>
56095
+ :rtype: :class:`tencentcloud.tsf.v20180326.models.ServiceGovernanceConfig`
56096
+ """
56097
+ return self._ServiceGovernanceConfig
56098
+
56099
+ @ServiceGovernanceConfig.setter
56100
+ def ServiceGovernanceConfig(self, ServiceGovernanceConfig):
56101
+ self._ServiceGovernanceConfig = ServiceGovernanceConfig
56102
+
56103
+ @property
56104
+ def Tags(self):
56105
+ r"""<p>部署组标签列表</p>
56106
+ :rtype: list of Tag
56107
+ """
56108
+ return self._Tags
56109
+
56110
+ @Tags.setter
56111
+ def Tags(self, Tags):
56112
+ self._Tags = Tags
56113
+
56114
+ @property
56115
+ def TapmOtAgentVersion(self):
56116
+ r"""<p>Tapm OT Agent 版本</p>
56117
+ :rtype: str
56118
+ """
56119
+ return self._TapmOtAgentVersion
56120
+
56121
+ @TapmOtAgentVersion.setter
56122
+ def TapmOtAgentVersion(self, TapmOtAgentVersion):
56123
+ self._TapmOtAgentVersion = TapmOtAgentVersion
56124
+
56125
+ @property
56126
+ def UnitEnvType(self):
56127
+ r"""<p>单元环境类型</p>
56128
+ :rtype: str
56129
+ """
56130
+ return self._UnitEnvType
56131
+
56132
+ @UnitEnvType.setter
56133
+ def UnitEnvType(self, UnitEnvType):
56134
+ self._UnitEnvType = UnitEnvType
56135
+
56136
+ @property
56137
+ def UnitId(self):
56138
+ r"""<p>单元 ID</p>
56139
+ :rtype: str
56140
+ """
56141
+ return self._UnitId
56142
+
56143
+ @UnitId.setter
56144
+ def UnitId(self, UnitId):
56145
+ self._UnitId = UnitId
56146
+
56147
+ @property
56148
+ def UnitName(self):
56149
+ r"""<p>单元类型</p>
56150
+ :rtype: str
56151
+ """
56152
+ return self._UnitName
56153
+
56154
+ @UnitName.setter
56155
+ def UnitName(self, UnitName):
56156
+ self._UnitName = UnitName
56157
+
56158
+ @property
56159
+ def UnitType(self):
56160
+ r"""<p>部署组资源类型</p>
56161
+ :rtype: str
56162
+ """
56163
+ return self._UnitType
56164
+
56165
+ @UnitType.setter
56166
+ def UnitType(self, UnitType):
56167
+ self._UnitType = UnitType
56168
+
55748
56169
 
55749
56170
  def _deserialize(self, params):
55750
56171
  self._GroupId = params.get("GroupId")
@@ -55804,6 +56225,52 @@ class VmGroup(AbstractModel):
55804
56225
  self._RepositoryName = params.get("RepositoryName")
55805
56226
  self._RepositoryType = params.get("RepositoryType")
55806
56227
  self._LivenessAutoRestart = params.get("LivenessAutoRestart")
56228
+ self._MeshSidecarVersion = params.get("MeshSidecarVersion")
56229
+ self._BusinessLogConfigIdList = params.get("BusinessLogConfigIdList")
56230
+ self._BusinessLogDeliveryConfigIdList = params.get("BusinessLogDeliveryConfigIdList")
56231
+ self._BusinessSystemId = params.get("BusinessSystemId")
56232
+ self._BusinessSystemName = params.get("BusinessSystemName")
56233
+ self._ClsMachineGroupId = params.get("ClsMachineGroupId")
56234
+ self._EnableGovernance = params.get("EnableGovernance")
56235
+ self._EnableTelemetry = params.get("EnableTelemetry")
56236
+ self._EnableTelemetryAgent = params.get("EnableTelemetryAgent")
56237
+ self._EnabledUnit = params.get("EnabledUnit")
56238
+ if params.get("ExclusiveInstances") is not None:
56239
+ self._ExclusiveInstances = []
56240
+ for item in params.get("ExclusiveInstances"):
56241
+ obj = ExclusiveInstance()
56242
+ obj._deserialize(item)
56243
+ self._ExclusiveInstances.append(obj)
56244
+ self._FrameworkType = params.get("FrameworkType")
56245
+ self._GovernanceType = params.get("GovernanceType")
56246
+ self._InstanceIdList = params.get("InstanceIdList")
56247
+ self._IsStop = params.get("IsStop")
56248
+ self._K8sNamespaceName = params.get("K8sNamespaceName")
56249
+ self._Language = params.get("Language")
56250
+ self._MicroserviceSubType = params.get("MicroserviceSubType")
56251
+ self._NonInvasiveType = params.get("NonInvasiveType")
56252
+ self._PreStopScript = params.get("PreStopScript")
56253
+ self._RealNamespaceName = params.get("RealNamespaceName")
56254
+ if params.get("ServiceConfigList") is not None:
56255
+ self._ServiceConfigList = []
56256
+ for item in params.get("ServiceConfigList"):
56257
+ obj = ServiceConfig()
56258
+ obj._deserialize(item)
56259
+ self._ServiceConfigList.append(obj)
56260
+ if params.get("ServiceGovernanceConfig") is not None:
56261
+ self._ServiceGovernanceConfig = ServiceGovernanceConfig()
56262
+ self._ServiceGovernanceConfig._deserialize(params.get("ServiceGovernanceConfig"))
56263
+ if params.get("Tags") is not None:
56264
+ self._Tags = []
56265
+ for item in params.get("Tags"):
56266
+ obj = Tag()
56267
+ obj._deserialize(item)
56268
+ self._Tags.append(obj)
56269
+ self._TapmOtAgentVersion = params.get("TapmOtAgentVersion")
56270
+ self._UnitEnvType = params.get("UnitEnvType")
56271
+ self._UnitId = params.get("UnitId")
56272
+ self._UnitName = params.get("UnitName")
56273
+ self._UnitType = params.get("UnitType")
55807
56274
  memeber_set = set(params.keys())
55808
56275
  for name, value in vars(self).items():
55809
56276
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-tsf
3
- Version: 3.1.145
3
+ Version: 3.1.162
4
4
  Summary: Tencent Cloud Tsf SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.145
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.162
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.162
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.145