tencentcloud-sdk-python 3.0.1444__py2.py3-none-any.whl → 3.0.1446__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.

Potentially problematic release.


This version of tencentcloud-sdk-python might be problematic. Click here for more details.

Files changed (37) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/cbs/v20170312/models.py +17 -2
  3. tencentcloud/ccc/v20200210/models.py +21 -0
  4. tencentcloud/cls/v20201016/models.py +393 -62
  5. tencentcloud/dlc/v20210125/dlc_client.py +161 -0
  6. tencentcloud/dlc/v20210125/errorcodes.py +3 -0
  7. tencentcloud/dlc/v20210125/models.py +1019 -0
  8. tencentcloud/emr/v20190103/errorcodes.py +3 -0
  9. tencentcloud/es/v20180416/models.py +85 -0
  10. tencentcloud/ess/v20201111/models.py +137 -0
  11. tencentcloud/essbasic/v20210526/models.py +122 -0
  12. tencentcloud/ioa/v20220601/models.py +78 -50
  13. tencentcloud/lke/v20231130/lke_client.py +1 -1
  14. tencentcloud/lke/v20231130/models.py +1998 -50
  15. tencentcloud/mps/v20190612/models.py +55 -10
  16. tencentcloud/ocr/v20181119/models.py +15 -0
  17. tencentcloud/partners/v20180321/models.py +4 -4
  18. tencentcloud/postgres/v20170312/models.py +2 -2
  19. tencentcloud/sqlserver/v20180328/models.py +6 -6
  20. tencentcloud/tbaas/v20180416/models.py +12 -12
  21. tencentcloud/tcaplusdb/v20190823/models.py +0 -328
  22. tencentcloud/tdmq/v20200217/errorcodes.py +3 -0
  23. tencentcloud/tdmq/v20200217/models.py +51 -17
  24. tencentcloud/tdmq/v20200217/tdmq_client.py +23 -0
  25. tencentcloud/trabbit/v20230418/models.py +15 -0
  26. tencentcloud/trocket/v20230308/models.py +2 -2
  27. tencentcloud/tse/v20201207/models.py +15 -0
  28. tencentcloud/tsf/v20180326/errorcodes.py +6 -0
  29. tencentcloud/tsf/v20180326/models.py +240 -82
  30. tencentcloud/tsf/v20180326/tsf_client.py +1 -1
  31. tencentcloud/vod/v20180717/models.py +505 -6
  32. tencentcloud/vod/v20180717/vod_client.py +101 -0
  33. {tencentcloud_sdk_python-3.0.1444.dist-info → tencentcloud_sdk_python-3.0.1446.dist-info}/METADATA +1 -1
  34. {tencentcloud_sdk_python-3.0.1444.dist-info → tencentcloud_sdk_python-3.0.1446.dist-info}/RECORD +37 -37
  35. {tencentcloud_sdk_python-3.0.1444.dist-info → tencentcloud_sdk_python-3.0.1446.dist-info}/LICENSE +0 -0
  36. {tencentcloud_sdk_python-3.0.1444.dist-info → tencentcloud_sdk_python-3.0.1446.dist-info}/WHEEL +0 -0
  37. {tencentcloud_sdk_python-3.0.1444.dist-info → tencentcloud_sdk_python-3.0.1446.dist-info}/top_level.txt +0 -0
@@ -10630,7 +10630,7 @@ class CreateApplicationRequest(AbstractModel):
10630
10630
 
10631
10631
  def __init__(self):
10632
10632
  r"""
10633
- :param _ApplicationName: 应用名称
10633
+ :param _ApplicationName: 应用名称,最长60字符
10634
10634
  :type ApplicationName: str
10635
10635
  :param _ApplicationType: 应用类型,V:虚拟机应用;C:容器应用;S:serverless应用
10636
10636
  :type ApplicationType: str
@@ -10644,7 +10644,7 @@ class CreateApplicationRequest(AbstractModel):
10644
10644
  :type ApplicationResourceType: str
10645
10645
  :param _ApplicationRuntimeType: 应用runtime类型
10646
10646
  :type ApplicationRuntimeType: str
10647
- :param _ProgramId: 需要绑定的数据集ID
10647
+ :param _ProgramId: 【数据集ID】。可通过调用[DescribePrograms](https://cloud.tencent.com/document/product/649/73477)查询已创建的数据集列表或登录[控制台](https://console.cloud.tencent.com/tsf/privilege?rid=1&tab=program&roleId=role-a26486wy)进行查看;也可以调用[CreateProgram](https://cloud.tencent.com/document/product/649/108544)创建新的数据集。
10648
10648
  :type ProgramId: str
10649
10649
  :param _ServiceConfigList: 服务配置信息列表
10650
10650
  :type ServiceConfigList: list of ServiceConfig
@@ -10682,7 +10682,7 @@ class CreateApplicationRequest(AbstractModel):
10682
10682
 
10683
10683
  @property
10684
10684
  def ApplicationName(self):
10685
- """应用名称
10685
+ """应用名称,最长60字符
10686
10686
  :rtype: str
10687
10687
  """
10688
10688
  return self._ApplicationName
@@ -10767,7 +10767,7 @@ class CreateApplicationRequest(AbstractModel):
10767
10767
 
10768
10768
  @property
10769
10769
  def ProgramId(self):
10770
- """需要绑定的数据集ID
10770
+ """【数据集ID】。可通过调用[DescribePrograms](https://cloud.tencent.com/document/product/649/73477)查询已创建的数据集列表或登录[控制台](https://console.cloud.tencent.com/tsf/privilege?rid=1&tab=program&roleId=role-a26486wy)进行查看;也可以调用[CreateProgram](https://cloud.tencent.com/document/product/649/108544)创建新的数据集。
10771
10771
  :rtype: str
10772
10772
  """
10773
10773
  return self._ProgramId
@@ -11948,9 +11948,9 @@ class CreateContainGroupRequest(AbstractModel):
11948
11948
 
11949
11949
  def __init__(self):
11950
11950
  r"""
11951
- :param _ApplicationId: 分组所属应用ID
11951
+ :param _ApplicationId: 分组所属【应用ID】,可通过调用[DescribeApplications](https://cloud.tencent.com/document/product/649/36090)查询已创建的应用列表或登录[控制台](https://console.cloud.tencent.com/tsf/app?rid=1)进行查看;也可以调用[CreateApplication](https://cloud.tencent.com/document/product/649/36094)创建新的应用。
11952
11952
  :type ApplicationId: str
11953
- :param _NamespaceId: 分组所属命名空间ID
11953
+ :param _NamespaceId: 分组所属【命名空间ID】,可通过调用[DescribeSimpleNamespaces](https://cloud.tencent.com/document/product/649/36096)查询已创建的命名空间列表或登录[控制台](https://console.cloud.tencent.com/tsf/resource?rid=1&tab=namespace)进行查看;也可以调用[CreateNamespace](https://cloud.tencent.com/document/product/649/36098)创建新的命名空间。
11954
11954
  :type NamespaceId: str
11955
11955
  :param _GroupName: 分组名称字段,长度1~60,字母或下划线开头,可包含字母数字下划线
11956
11956
  :type GroupName: str
@@ -11976,11 +11976,9 @@ class CreateContainGroupRequest(AbstractModel):
11976
11976
  :type CpuRequest: str
11977
11977
  :param _MemRequest: 初始分配的内存 MiB 数,对应 K8S request
11978
11978
  :type MemRequest: str
11979
- :param _GroupResourceType: 部署组资源类型;
11980
- DEF — 默认资源类型;
11981
- GW — 网关资源类型;
11979
+ :param _GroupResourceType: 部署组资源类型;DEF 表示默认资源类型
11982
11980
  :type GroupResourceType: str
11983
- :param _SubnetId: 子网ID
11981
+ :param _SubnetId: 分组所属【子网ID】,可前往TKE侧集群[控制台](https://console.cloud.tencent.com/tke2/cluster/sub/list/basic/info/base?rid=1&clusterId=cls-2nhp3g1i)进行获取
11984
11982
  :type SubnetId: str
11985
11983
  :param _AgentCpuRequest: agent 容器分配的 CPU 核数,对应 K8S 的 request
11986
11984
  :type AgentCpuRequest: str
@@ -12026,7 +12024,7 @@ GW — 网关资源类型;
12026
12024
 
12027
12025
  @property
12028
12026
  def ApplicationId(self):
12029
- """分组所属应用ID
12027
+ """分组所属【应用ID】,可通过调用[DescribeApplications](https://cloud.tencent.com/document/product/649/36090)查询已创建的应用列表或登录[控制台](https://console.cloud.tencent.com/tsf/app?rid=1)进行查看;也可以调用[CreateApplication](https://cloud.tencent.com/document/product/649/36094)创建新的应用。
12030
12028
  :rtype: str
12031
12029
  """
12032
12030
  return self._ApplicationId
@@ -12037,7 +12035,7 @@ GW — 网关资源类型;
12037
12035
 
12038
12036
  @property
12039
12037
  def NamespaceId(self):
12040
- """分组所属命名空间ID
12038
+ """分组所属【命名空间ID】,可通过调用[DescribeSimpleNamespaces](https://cloud.tencent.com/document/product/649/36096)查询已创建的命名空间列表或登录[控制台](https://console.cloud.tencent.com/tsf/resource?rid=1&tab=namespace)进行查看;也可以调用[CreateNamespace](https://cloud.tencent.com/document/product/649/36098)创建新的命名空间。
12041
12039
  :rtype: str
12042
12040
  """
12043
12041
  return self._NamespaceId
@@ -12180,9 +12178,7 @@ GW — 网关资源类型;
12180
12178
 
12181
12179
  @property
12182
12180
  def GroupResourceType(self):
12183
- """部署组资源类型;
12184
- DEF — 默认资源类型;
12185
- GW — 网关资源类型;
12181
+ """部署组资源类型;DEF 表示默认资源类型
12186
12182
  :rtype: str
12187
12183
  """
12188
12184
  return self._GroupResourceType
@@ -12193,7 +12189,7 @@ GW — 网关资源类型;
12193
12189
 
12194
12190
  @property
12195
12191
  def SubnetId(self):
12196
- """子网ID
12192
+ """分组所属【子网ID】,可前往TKE侧集群[控制台](https://console.cloud.tencent.com/tke2/cluster/sub/list/basic/info/base?rid=1&clusterId=cls-2nhp3g1i)进行获取
12197
12193
  :rtype: str
12198
12194
  """
12199
12195
  return self._SubnetId
@@ -12963,22 +12959,24 @@ class CreateGroupRequest(AbstractModel):
12963
12959
 
12964
12960
  def __init__(self):
12965
12961
  r"""
12966
- :param _ApplicationId: 部署组所属的应用ID
12962
+ :param _ApplicationId: 部署组所属的【应用ID】,可通过调用[DescribeApplications](https://cloud.tencent.com/document/product/649/36090)查询已创建的应用列表或登录[控制台](https://console.cloud.tencent.com/tsf/app?rid=1)进行查看;也可以调用[CreateApplication](https://cloud.tencent.com/document/product/649/36094)创建新的应用。
12967
12963
  :type ApplicationId: str
12968
- :param _NamespaceId: 部署组所属命名空间ID
12964
+ :param _NamespaceId: 部署组所属【命名空间ID】,可通过调用[DescribeSimpleNamespaces](https://cloud.tencent.com/document/product/649/36096)查询已创建的命名空间列表或登录[控制台](https://console.cloud.tencent.com/tsf/resource?rid=1&tab=namespace)进行查看;也可以调用[CreateNamespace](https://cloud.tencent.com/document/product/649/36098)创建新的命名空间。
12969
12965
  :type NamespaceId: str
12970
12966
  :param _GroupName: 部署组名称
12971
12967
  :type GroupName: str
12972
- :param _ClusterId: 集群ID
12968
+ :param _ClusterId: 部署组所属的【集群ID】,可通过调用[DescribeClusters](https://cloud.tencent.com/document/product/649/85857)查询已创建的集群列表或登录[控制台](https://console.cloud.tencent.com/tsf/resource?rid=1&tab=docker)进行查看;也可以调用[CreateCluster](https://cloud.tencent.com/document/product/649/36049)创建新的集群。
12973
12969
  :type ClusterId: str
12974
12970
  :param _GroupDesc: 部署组描述
12975
12971
  :type GroupDesc: str
12976
- :param _GroupResourceType: 部署组资源类型;DEF 表示默认资源类型;GW 表示网关资源类型
12972
+ :param _GroupResourceType: 部署组资源类型;DEF 表示默认资源类型
12977
12973
  :type GroupResourceType: str
12978
12974
  :param _Alias: 部署组备注
12979
12975
  :type Alias: str
12980
12976
  :param _Tags: 标签列表
12981
12977
  :type Tags: list of Tag
12978
+ :param _K8sNamespaceName: k8s命名空间名称
12979
+ :type K8sNamespaceName: str
12982
12980
  """
12983
12981
  self._ApplicationId = None
12984
12982
  self._NamespaceId = None
@@ -12988,10 +12986,11 @@ class CreateGroupRequest(AbstractModel):
12988
12986
  self._GroupResourceType = None
12989
12987
  self._Alias = None
12990
12988
  self._Tags = None
12989
+ self._K8sNamespaceName = None
12991
12990
 
12992
12991
  @property
12993
12992
  def ApplicationId(self):
12994
- """部署组所属的应用ID
12993
+ """部署组所属的【应用ID】,可通过调用[DescribeApplications](https://cloud.tencent.com/document/product/649/36090)查询已创建的应用列表或登录[控制台](https://console.cloud.tencent.com/tsf/app?rid=1)进行查看;也可以调用[CreateApplication](https://cloud.tencent.com/document/product/649/36094)创建新的应用。
12995
12994
  :rtype: str
12996
12995
  """
12997
12996
  return self._ApplicationId
@@ -13002,7 +13001,7 @@ class CreateGroupRequest(AbstractModel):
13002
13001
 
13003
13002
  @property
13004
13003
  def NamespaceId(self):
13005
- """部署组所属命名空间ID
13004
+ """部署组所属【命名空间ID】,可通过调用[DescribeSimpleNamespaces](https://cloud.tencent.com/document/product/649/36096)查询已创建的命名空间列表或登录[控制台](https://console.cloud.tencent.com/tsf/resource?rid=1&tab=namespace)进行查看;也可以调用[CreateNamespace](https://cloud.tencent.com/document/product/649/36098)创建新的命名空间。
13006
13005
  :rtype: str
13007
13006
  """
13008
13007
  return self._NamespaceId
@@ -13024,7 +13023,7 @@ class CreateGroupRequest(AbstractModel):
13024
13023
 
13025
13024
  @property
13026
13025
  def ClusterId(self):
13027
- """集群ID
13026
+ """部署组所属的【集群ID】,可通过调用[DescribeClusters](https://cloud.tencent.com/document/product/649/85857)查询已创建的集群列表或登录[控制台](https://console.cloud.tencent.com/tsf/resource?rid=1&tab=docker)进行查看;也可以调用[CreateCluster](https://cloud.tencent.com/document/product/649/36049)创建新的集群。
13028
13027
  :rtype: str
13029
13028
  """
13030
13029
  return self._ClusterId
@@ -13046,7 +13045,7 @@ class CreateGroupRequest(AbstractModel):
13046
13045
 
13047
13046
  @property
13048
13047
  def GroupResourceType(self):
13049
- """部署组资源类型;DEF 表示默认资源类型;GW 表示网关资源类型
13048
+ """部署组资源类型;DEF 表示默认资源类型
13050
13049
  :rtype: str
13051
13050
  """
13052
13051
  return self._GroupResourceType
@@ -13077,6 +13076,17 @@ class CreateGroupRequest(AbstractModel):
13077
13076
  def Tags(self, Tags):
13078
13077
  self._Tags = Tags
13079
13078
 
13079
+ @property
13080
+ def K8sNamespaceName(self):
13081
+ """k8s命名空间名称
13082
+ :rtype: str
13083
+ """
13084
+ return self._K8sNamespaceName
13085
+
13086
+ @K8sNamespaceName.setter
13087
+ def K8sNamespaceName(self, K8sNamespaceName):
13088
+ self._K8sNamespaceName = K8sNamespaceName
13089
+
13080
13090
 
13081
13091
  def _deserialize(self, params):
13082
13092
  self._ApplicationId = params.get("ApplicationId")
@@ -13092,6 +13102,7 @@ class CreateGroupRequest(AbstractModel):
13092
13102
  obj = Tag()
13093
13103
  obj._deserialize(item)
13094
13104
  self._Tags.append(obj)
13105
+ self._K8sNamespaceName = params.get("K8sNamespaceName")
13095
13106
  memeber_set = set(params.keys())
13096
13107
  for name, value in vars(self).items():
13097
13108
  property_name = name[1:]
@@ -13672,9 +13683,9 @@ class CreateNamespaceRequest(AbstractModel):
13672
13683
  :type ClusterId: str
13673
13684
  :param _NamespaceDesc: 命名空间描述
13674
13685
  :type NamespaceDesc: str
13675
- :param _NamespaceResourceType: 命名空间资源类型(默认值为DEF)。DEF:默认普通命名空间。GLOBAL:全局命名空间
13686
+ :param _NamespaceResourceType: 命名空间资源类型;DEF:表示默认资源类型;GW:表示网关资源类型
13676
13687
  :type NamespaceResourceType: str
13677
- :param _NamespaceType: 是否是全局命名空间(默认是DEF,表示普通命名空间;GLOBAL表示全局命名空间)
13688
+ :param _NamespaceType: 命名空间类型;DEF 表示默认普通命名空间;GLOBAL 表示全局命名空间
13678
13689
  :type NamespaceType: str
13679
13690
  :param _NamespaceId: 命名空间ID,按照【命名空间ID】进行过滤,可通过调用[DescribeNamespaces](https://cloud.tencent.com/document/product/649/36096)查询已创建的命名空间列表或登录控制台进行查看;也可以调用[CreateNamespace](https://cloud.tencent.com/document/product/649/36098)创建新命名空间。
13680
13691
  :type NamespaceId: str
@@ -13733,7 +13744,7 @@ class CreateNamespaceRequest(AbstractModel):
13733
13744
 
13734
13745
  @property
13735
13746
  def NamespaceResourceType(self):
13736
- """命名空间资源类型(默认值为DEF)。DEF:默认普通命名空间。GLOBAL:全局命名空间
13747
+ """命名空间资源类型;DEF:表示默认资源类型;GW:表示网关资源类型
13737
13748
  :rtype: str
13738
13749
  """
13739
13750
  return self._NamespaceResourceType
@@ -13744,7 +13755,7 @@ class CreateNamespaceRequest(AbstractModel):
13744
13755
 
13745
13756
  @property
13746
13757
  def NamespaceType(self):
13747
- """是否是全局命名空间(默认是DEF,表示普通命名空间;GLOBAL表示全局命名空间)
13758
+ """命名空间类型;DEF 表示默认普通命名空间;GLOBAL 表示全局命名空间
13748
13759
  :rtype: str
13749
13760
  """
13750
13761
  return self._NamespaceType
@@ -16216,14 +16227,16 @@ class DeleteContainerGroupRequest(AbstractModel):
16216
16227
 
16217
16228
  def __init__(self):
16218
16229
  r"""
16219
- :param _GroupId: 部署组ID,可通过调用[DescribeContainerGroups](https://cloud.tencent.com/document/api/649/36068)查询已创建的部署组列表或登录控制台进行查看;也可以调用[CreateContainGroup](https://cloud.tencent.com/document/api/649/36075)创建新的部署组。
16230
+ :param _GroupId: 部署组ID,可通过调用[DescribeContainerGroups](https://cloud.tencent.com/document/api/649/36068)查询已创建的部署组列表或[登录控制台](https://console.cloud.tencent.com/tsf/app-group-docker-detail?rid=1&id=group-aedpen6v)
16231
+ 进行查看;也可以调用[CreateContainGroup](https://cloud.tencent.com/document/api/649/36075)创建新的部署组。
16220
16232
  :type GroupId: str
16221
16233
  """
16222
16234
  self._GroupId = None
16223
16235
 
16224
16236
  @property
16225
16237
  def GroupId(self):
16226
- """部署组ID,可通过调用[DescribeContainerGroups](https://cloud.tencent.com/document/api/649/36068)查询已创建的部署组列表或登录控制台进行查看;也可以调用[CreateContainGroup](https://cloud.tencent.com/document/api/649/36075)创建新的部署组。
16238
+ """部署组ID,可通过调用[DescribeContainerGroups](https://cloud.tencent.com/document/api/649/36068)查询已创建的部署组列表或[登录控制台](https://console.cloud.tencent.com/tsf/app-group-docker-detail?rid=1&id=group-aedpen6v)
16239
+ 进行查看;也可以调用[CreateContainGroup](https://cloud.tencent.com/document/api/649/36075)创建新的部署组。
16227
16240
  :rtype: str
16228
16241
  """
16229
16242
  return self._GroupId
@@ -18285,6 +18298,14 @@ class DeployContainerApplicationRequest(AbstractModel):
18285
18298
  :type EnvClean: bool
18286
18299
  :param _DeployDesc: 本次部署的描述信息
18287
18300
  :type DeployDesc: str
18301
+ :param _K8sNamespaceName: k8s命名空间名称
18302
+ :type K8sNamespaceName: str
18303
+ :param _StaticIpEnabled: 是否启用静态IP
18304
+ :type StaticIpEnabled: bool
18305
+ :param _PodManagementPolicyType: 启动策略[OrderedReady/Parallel]
18306
+ :type PodManagementPolicyType: str
18307
+ :param _Partition: 滚动更新分区序号
18308
+ :type Partition: int
18288
18309
  """
18289
18310
  self._ApplicationId = None
18290
18311
  self._ObservabilityConfig = None
@@ -18343,6 +18364,10 @@ class DeployContainerApplicationRequest(AbstractModel):
18343
18364
  self._ServiceClean = None
18344
18365
  self._EnvClean = None
18345
18366
  self._DeployDesc = None
18367
+ self._K8sNamespaceName = None
18368
+ self._StaticIpEnabled = None
18369
+ self._PodManagementPolicyType = None
18370
+ self._Partition = None
18346
18371
 
18347
18372
  @property
18348
18373
  def ApplicationId(self):
@@ -18971,6 +18996,50 @@ class DeployContainerApplicationRequest(AbstractModel):
18971
18996
  def DeployDesc(self, DeployDesc):
18972
18997
  self._DeployDesc = DeployDesc
18973
18998
 
18999
+ @property
19000
+ def K8sNamespaceName(self):
19001
+ """k8s命名空间名称
19002
+ :rtype: str
19003
+ """
19004
+ return self._K8sNamespaceName
19005
+
19006
+ @K8sNamespaceName.setter
19007
+ def K8sNamespaceName(self, K8sNamespaceName):
19008
+ self._K8sNamespaceName = K8sNamespaceName
19009
+
19010
+ @property
19011
+ def StaticIpEnabled(self):
19012
+ """是否启用静态IP
19013
+ :rtype: bool
19014
+ """
19015
+ return self._StaticIpEnabled
19016
+
19017
+ @StaticIpEnabled.setter
19018
+ def StaticIpEnabled(self, StaticIpEnabled):
19019
+ self._StaticIpEnabled = StaticIpEnabled
19020
+
19021
+ @property
19022
+ def PodManagementPolicyType(self):
19023
+ """启动策略[OrderedReady/Parallel]
19024
+ :rtype: str
19025
+ """
19026
+ return self._PodManagementPolicyType
19027
+
19028
+ @PodManagementPolicyType.setter
19029
+ def PodManagementPolicyType(self, PodManagementPolicyType):
19030
+ self._PodManagementPolicyType = PodManagementPolicyType
19031
+
19032
+ @property
19033
+ def Partition(self):
19034
+ """滚动更新分区序号
19035
+ :rtype: int
19036
+ """
19037
+ return self._Partition
19038
+
19039
+ @Partition.setter
19040
+ def Partition(self, Partition):
19041
+ self._Partition = Partition
19042
+
18974
19043
 
18975
19044
  def _deserialize(self, params):
18976
19045
  self._ApplicationId = params.get("ApplicationId")
@@ -19082,6 +19151,10 @@ class DeployContainerApplicationRequest(AbstractModel):
19082
19151
  self._ServiceClean = params.get("ServiceClean")
19083
19152
  self._EnvClean = params.get("EnvClean")
19084
19153
  self._DeployDesc = params.get("DeployDesc")
19154
+ self._K8sNamespaceName = params.get("K8sNamespaceName")
19155
+ self._StaticIpEnabled = params.get("StaticIpEnabled")
19156
+ self._PodManagementPolicyType = params.get("PodManagementPolicyType")
19157
+ self._Partition = params.get("Partition")
19085
19158
  memeber_set = set(params.keys())
19086
19159
  for name, value in vars(self).items():
19087
19160
  property_name = name[1:]
@@ -19887,9 +19960,9 @@ class DeployGroupRequest(AbstractModel):
19887
19960
 
19888
19961
  def __init__(self):
19889
19962
  r"""
19890
- :param _GroupId: 部署组ID
19963
+ :param _GroupId: 部署组ID,可通过调用[DescribeContainerGroups](https://cloud.tencent.com/document/api/649/36068)查询已创建的部署组列表或登录控制台进行查看;也可以调用[CreateContainGroup](https://cloud.tencent.com/document/api/649/36075)创建新的部署组。
19891
19964
  :type GroupId: str
19892
- :param _PkgId: 程序包ID
19965
+ :param _PkgId: 软件包ID,可通过调用DescribeUploadInfo接口时[获取上传程序包信息](https://cloud.tencent.com/document/api/649/36078)返回的COS上传信息获取,登录[控制台](https://console.cloud.tencent.com/tsf/product?rid=1)进行查看
19893
19966
  :type PkgId: str
19894
19967
  :param _StartupParameters: 部署组启动参数
19895
19968
  :type StartupParameters: str
@@ -19909,7 +19982,7 @@ class DeployGroupRequest(AbstractModel):
19909
19982
  :type DeployBatch: list of float
19910
19983
  :param _DeployExeMode: 滚动发布的执行方式,auto表示自动, manual表示手动
19911
19984
  :type DeployExeMode: str
19912
- :param _DeployWaitTime: 滚动发布每个批次的时间间隔
19985
+ :param _DeployWaitTime: 滚动发布每个批次的时间间隔,单位min。默认值是0,不等待。
19913
19986
  :type DeployWaitTime: int
19914
19987
  :param _StartScript: 启动脚本 base64编码
19915
19988
  :type StartScript: str
@@ -19952,7 +20025,7 @@ openJDK版本:8、17
19952
20025
 
19953
20026
  @property
19954
20027
  def GroupId(self):
19955
- """部署组ID
20028
+ """部署组ID,可通过调用[DescribeContainerGroups](https://cloud.tencent.com/document/api/649/36068)查询已创建的部署组列表或登录控制台进行查看;也可以调用[CreateContainGroup](https://cloud.tencent.com/document/api/649/36075)创建新的部署组。
19956
20029
  :rtype: str
19957
20030
  """
19958
20031
  return self._GroupId
@@ -19963,7 +20036,7 @@ openJDK版本:8、17
19963
20036
 
19964
20037
  @property
19965
20038
  def PkgId(self):
19966
- """程序包ID
20039
+ """软件包ID,可通过调用DescribeUploadInfo接口时[获取上传程序包信息](https://cloud.tencent.com/document/api/649/36078)返回的COS上传信息获取,登录[控制台](https://console.cloud.tencent.com/tsf/product?rid=1)进行查看
19967
20040
  :rtype: str
19968
20041
  """
19969
20042
  return self._PkgId
@@ -20073,7 +20146,7 @@ openJDK版本:8、17
20073
20146
 
20074
20147
  @property
20075
20148
  def DeployWaitTime(self):
20076
- """滚动发布每个批次的时间间隔
20149
+ """滚动发布每个批次的时间间隔,单位min。默认值是0,不等待。
20077
20150
  :rtype: int
20078
20151
  """
20079
20152
  return self._DeployWaitTime
@@ -21039,14 +21112,14 @@ class DescribeApplicationAttributeRequest(AbstractModel):
21039
21112
 
21040
21113
  def __init__(self):
21041
21114
  r"""
21042
- :param _ApplicationId: 应用ID
21115
+ :param _ApplicationId: 【应用ID】,可通过调用[DescribeApplications](https://cloud.tencent.com/document/product/649/36090)查询已创建的应用列表或登录[控制台](https://console.cloud.tencent.com/tsf/app?rid=1)进行查看;也可以调用[CreateApplication](https://cloud.tencent.com/document/product/649/36094)创建新的应用。
21043
21116
  :type ApplicationId: str
21044
21117
  """
21045
21118
  self._ApplicationId = None
21046
21119
 
21047
21120
  @property
21048
21121
  def ApplicationId(self):
21049
- """应用ID
21122
+ """【应用ID】,可通过调用[DescribeApplications](https://cloud.tencent.com/document/product/649/36090)查询已创建的应用列表或登录[控制台](https://console.cloud.tencent.com/tsf/app?rid=1)进行查看;也可以调用[CreateApplication](https://cloud.tencent.com/document/product/649/36094)创建新的应用。
21050
21123
  :rtype: str
21051
21124
  """
21052
21125
  return self._ApplicationId
@@ -21215,11 +21288,14 @@ class DescribeApplicationsRequest(AbstractModel):
21215
21288
  :type Offset: int
21216
21289
  :param _Limit: 数量限制,默认为20,最大值为100。关于Limit详见[API简介](https://cloud.tencent.com/document/api/213/568#.E8.BE.93.E5.85.A5.E5.8F.82.E6.95.B0.E4.B8.8E.E8.BF.94.E5.9B.9E.E5.8F.82.E6.95.B0.E9.87.8A.E4.B9.89)
21217
21290
  :type Limit: int
21218
- :param _ApplicationType: 应用类型
21291
+ :param _ApplicationType: 指定应用类型,目前支持:
21292
+ - `V`:普通应用/CVM应用
21293
+ - `C`:容器应用
21294
+ - `S`:serverless 应用
21219
21295
  :type ApplicationType: str
21220
21296
  :param _MicroserviceType: 应用的微服务类型
21221
21297
  :type MicroserviceType: str
21222
- :param _ApplicationResourceTypeList: 应用资源类型数组
21298
+ :param _ApplicationResourceTypeList: 应用资源类型列表;DEF 表示默认资源类型;GW 表示网关资源类型
21223
21299
  :type ApplicationResourceTypeList: list of str
21224
21300
  :param _ApplicationIdList: IdList
21225
21301
  :type ApplicationIdList: list of str
@@ -21296,7 +21372,10 @@ class DescribeApplicationsRequest(AbstractModel):
21296
21372
 
21297
21373
  @property
21298
21374
  def ApplicationType(self):
21299
- """应用类型
21375
+ """指定应用类型,目前支持:
21376
+ - `V`:普通应用/CVM应用
21377
+ - `C`:容器应用
21378
+ - `S`:serverless 应用
21300
21379
  :rtype: str
21301
21380
  """
21302
21381
  return self._ApplicationType
@@ -21318,7 +21397,7 @@ class DescribeApplicationsRequest(AbstractModel):
21318
21397
 
21319
21398
  @property
21320
21399
  def ApplicationResourceTypeList(self):
21321
- """应用资源类型数组
21400
+ """应用资源类型列表;DEF 表示默认资源类型;GW 表示网关资源类型
21322
21401
  :rtype: list of str
21323
21402
  """
21324
21403
  return self._ApplicationResourceTypeList
@@ -23144,14 +23223,14 @@ class DescribeContainerGroupAttributeRequest(AbstractModel):
23144
23223
 
23145
23224
  def __init__(self):
23146
23225
  r"""
23147
- :param _GroupId: 部署组ID
23226
+ :param _GroupId: 部署组ID,按照【部署组ID】进行过滤,可通过调用DescribeGroups查询已创建的项目列表或登录控制台进行查看;也可以调用CreateGroup创建新的项目。部署组ID例如:group-ab958z6y
23148
23227
  :type GroupId: str
23149
23228
  """
23150
23229
  self._GroupId = None
23151
23230
 
23152
23231
  @property
23153
23232
  def GroupId(self):
23154
- """部署组ID
23233
+ """部署组ID,按照【部署组ID】进行过滤,可通过调用DescribeGroups查询已创建的项目列表或登录控制台进行查看;也可以调用CreateGroup创建新的项目。部署组ID例如:group-ab958z6y
23155
23234
  :rtype: str
23156
23235
  """
23157
23236
  return self._GroupId
@@ -23387,7 +23466,7 @@ class DescribeContainerGroupsRequest(AbstractModel):
23387
23466
 
23388
23467
  def __init__(self):
23389
23468
  r"""
23390
- :param _ApplicationId: 分组所属应用ID
23469
+ :param _ApplicationId: 分组所属【应用ID】,可通过调用[DescribeApplications](https://cloud.tencent.com/document/product/649/36090)查询已创建的应用列表或登录[控制台](https://console.cloud.tencent.com/tsf/app?rid=1)进行查看;也可以调用[CreateApplication](https://cloud.tencent.com/document/product/649/36094)创建新的应用。
23391
23470
  :type ApplicationId: str
23392
23471
  :param _SearchWord: 搜索字段,模糊搜索groupName字段
23393
23472
  :type SearchWord: str
@@ -23399,9 +23478,9 @@ class DescribeContainerGroupsRequest(AbstractModel):
23399
23478
  :type Offset: int
23400
23479
  :param _Limit: 分页个数,默认为20, 取值应为1~50
23401
23480
  :type Limit: int
23402
- :param _ClusterId: 集群ID
23481
+ :param _ClusterId: 分组所属【集群ID】,可通过调用[DescribeClusters](https://cloud.tencent.com/document/product/649/85857)查询已创建的集群列表或登录[控制台](https://console.cloud.tencent.com/tsf/resource?rid=1&tab=docker)进行查看;也可以调用[CreateCluster](https://cloud.tencent.com/document/product/649/36049)创建新的集群。
23403
23482
  :type ClusterId: str
23404
- :param _NamespaceId: 命名空间 ID
23483
+ :param _NamespaceId: 分组所属【命名空间 ID】,可通过调用[DescribeSimpleNamespaces](https://cloud.tencent.com/document/product/649/36096)查询已创建的命名空间列表或登录[控制台](https://console.cloud.tencent.com/tsf/resource?rid=1&tab=namespace)进行查看;也可以调用[CreateNamespace](https://cloud.tencent.com/document/product/649/36098)创建新的命名空间。
23405
23484
  :type NamespaceId: str
23406
23485
  """
23407
23486
  self._ApplicationId = None
@@ -23415,7 +23494,7 @@ class DescribeContainerGroupsRequest(AbstractModel):
23415
23494
 
23416
23495
  @property
23417
23496
  def ApplicationId(self):
23418
- """分组所属应用ID
23497
+ """分组所属【应用ID】,可通过调用[DescribeApplications](https://cloud.tencent.com/document/product/649/36090)查询已创建的应用列表或登录[控制台](https://console.cloud.tencent.com/tsf/app?rid=1)进行查看;也可以调用[CreateApplication](https://cloud.tencent.com/document/product/649/36094)创建新的应用。
23419
23498
  :rtype: str
23420
23499
  """
23421
23500
  return self._ApplicationId
@@ -23481,7 +23560,7 @@ class DescribeContainerGroupsRequest(AbstractModel):
23481
23560
 
23482
23561
  @property
23483
23562
  def ClusterId(self):
23484
- """集群ID
23563
+ """分组所属【集群ID】,可通过调用[DescribeClusters](https://cloud.tencent.com/document/product/649/85857)查询已创建的集群列表或登录[控制台](https://console.cloud.tencent.com/tsf/resource?rid=1&tab=docker)进行查看;也可以调用[CreateCluster](https://cloud.tencent.com/document/product/649/36049)创建新的集群。
23485
23564
  :rtype: str
23486
23565
  """
23487
23566
  return self._ClusterId
@@ -23492,7 +23571,7 @@ class DescribeContainerGroupsRequest(AbstractModel):
23492
23571
 
23493
23572
  @property
23494
23573
  def NamespaceId(self):
23495
- """命名空间 ID
23574
+ """分组所属【命名空间 ID】,可通过调用[DescribeSimpleNamespaces](https://cloud.tencent.com/document/product/649/36096)查询已创建的命名空间列表或登录[控制台](https://console.cloud.tencent.com/tsf/resource?rid=1&tab=namespace)进行查看;也可以调用[CreateNamespace](https://cloud.tencent.com/document/product/649/36098)创建新的命名空间。
23496
23575
  :rtype: str
23497
23576
  """
23498
23577
  return self._NamespaceId
@@ -29713,9 +29792,9 @@ class DescribeProgramsRequest(AbstractModel):
29713
29792
  r"""
29714
29793
  :param _SearchWord: 模糊查询数据集ID,数据集名称,不传入时查询全量
29715
29794
  :type SearchWord: str
29716
- :param _Limit: 每页数量
29795
+ :param _Limit: 每页数量,默认值20
29717
29796
  :type Limit: int
29718
- :param _Offset: 起始偏移量
29797
+ :param _Offset: 起始偏移量,默认值0
29719
29798
  :type Offset: int
29720
29799
  """
29721
29800
  self._SearchWord = None
@@ -29735,7 +29814,7 @@ class DescribeProgramsRequest(AbstractModel):
29735
29814
 
29736
29815
  @property
29737
29816
  def Limit(self):
29738
- """每页数量
29817
+ """每页数量,默认值20
29739
29818
  :rtype: int
29740
29819
  """
29741
29820
  return self._Limit
@@ -29746,7 +29825,7 @@ class DescribeProgramsRequest(AbstractModel):
29746
29825
 
29747
29826
  @property
29748
29827
  def Offset(self):
29749
- """起始偏移量
29828
+ """起始偏移量,默认值0
29750
29829
  :rtype: int
29751
29830
  """
29752
29831
  return self._Offset
@@ -30987,10 +31066,10 @@ class DescribeResourceConfigLicenseFunction(AbstractModel):
30987
31066
 
30988
31067
  def __init__(self):
30989
31068
  r"""
30990
- :param _Name: name
31069
+ :param _Name: 功能名
30991
31070
  注意:此字段可能返回 null,表示取不到有效值。
30992
31071
  :type Name: str
30993
- :param _Enable: enable
31072
+ :param _Enable: 是否启用
30994
31073
  注意:此字段可能返回 null,表示取不到有效值。
30995
31074
  :type Enable: bool
30996
31075
  """
@@ -30999,7 +31078,7 @@ class DescribeResourceConfigLicenseFunction(AbstractModel):
30999
31078
 
31000
31079
  @property
31001
31080
  def Name(self):
31002
- """name
31081
+ """功能名
31003
31082
  注意:此字段可能返回 null,表示取不到有效值。
31004
31083
  :rtype: str
31005
31084
  """
@@ -31011,7 +31090,7 @@ class DescribeResourceConfigLicenseFunction(AbstractModel):
31011
31090
 
31012
31091
  @property
31013
31092
  def Enable(self):
31014
- """enable
31093
+ """是否启用
31015
31094
  注意:此字段可能返回 null,表示取不到有效值。
31016
31095
  :rtype: bool
31017
31096
  """
@@ -31321,14 +31400,14 @@ class DescribeResourceTaskStatusRequest(AbstractModel):
31321
31400
 
31322
31401
  def __init__(self):
31323
31402
  r"""
31324
- :param _TaskId: 容器实例任务ID,可通过调用 ListContainerTask 查询已创建的变更记录总数或登录控制台进行查看。
31403
+ :param _TaskId: 容器实例任务ID,可通过调用 [DeployContainerGroup](https://cloud.tencent.com/document/product/649/120669) 部署容器应用,查询其返回内容中的任务ID。
31325
31404
  :type TaskId: str
31326
31405
  """
31327
31406
  self._TaskId = None
31328
31407
 
31329
31408
  @property
31330
31409
  def TaskId(self):
31331
- """容器实例任务ID,可通过调用 ListContainerTask 查询已创建的变更记录总数或登录控制台进行查看。
31410
+ """容器实例任务ID,可通过调用 [DeployContainerGroup](https://cloud.tencent.com/document/product/649/120669) 部署容器应用,查询其返回内容中的任务ID。
31332
31411
  :rtype: str
31333
31412
  """
31334
31413
  return self._TaskId
@@ -31415,7 +31494,7 @@ class DescribeSimpleApplicationsRequest(AbstractModel):
31415
31494
  :type Offset: int
31416
31495
  :param _MicroserviceType: 微服务类型
31417
31496
  :type MicroserviceType: str
31418
- :param _ApplicationResourceTypeList: 资源类型数组
31497
+ :param _ApplicationResourceTypeList: 应用资源类型列表;DEF 表示默认资源类型;GW 表示网关资源类型
31419
31498
  :type ApplicationResourceTypeList: list of str
31420
31499
  :param _SearchWord: 通过id和name进行关键词过滤
31421
31500
  :type SearchWord: str
@@ -31494,7 +31573,7 @@ class DescribeSimpleApplicationsRequest(AbstractModel):
31494
31573
 
31495
31574
  @property
31496
31575
  def ApplicationResourceTypeList(self):
31497
- """资源类型数组
31576
+ """应用资源类型列表;DEF 表示默认资源类型;GW 表示网关资源类型
31498
31577
  :rtype: list of str
31499
31578
  """
31500
31579
  return self._ApplicationResourceTypeList
@@ -31765,17 +31844,17 @@ class DescribeSimpleGroupsRequest(AbstractModel):
31765
31844
 
31766
31845
  def __init__(self):
31767
31846
  r"""
31768
- :param _GroupIdList: 部署组ID列表,不填写时查询全量
31847
+ :param _GroupIdList: 按照【部署组ID】进行过滤,不填写时查询全量。可通过调用[DescribeContainerGroups](https://cloud.tencent.com/document/product/649/36068)查询已创建的部署组列表或登录[控制台](https://console.cloud.tencent.com/tsf/app-detail?rid=1&id=application-zvw6zp9a&tab=publish&subTab=group)进行查看;也可以调用[CreateGroup](https://cloud.tencent.com/document/product/649/36074)创建新的部署组。
31769
31848
  :type GroupIdList: list of str
31770
- :param _ApplicationId: 应用ID,不填写时查询全量
31849
+ :param _ApplicationId: 按照【应用ID】进行过滤,不填写时查询全量。可通过调用[DescribeApplications](https://cloud.tencent.com/document/product/649/36090)查询已创建的应用列表或登录[控制台](https://console.cloud.tencent.com/tsf/app?rid=1)进行查看;也可以调用[CreateApplication](https://cloud.tencent.com/document/product/649/36094)创建新的应用。
31771
31850
  :type ApplicationId: str
31772
- :param _ClusterId: 集群ID,不填写时查询全量
31851
+ :param _ClusterId: 按照【集群ID】进行过滤,不填写时查询全量。可通过调用[DescribeClusters](https://cloud.tencent.com/document/product/649/85857)查询已创建的集群列表或登录[控制台](https://console.cloud.tencent.com/tsf/resource?rid=1&tab=docker)进行查看;也可以调用[CreateCluster](https://cloud.tencent.com/document/product/649/36049)创建新的集群。
31773
31852
  :type ClusterId: str
31774
- :param _NamespaceId: 命名空间ID,不填写时查询全量
31853
+ :param _NamespaceId: 按照【命名空间ID】进行过滤,不填写时查询全量。可通过调用[DescribeSimpleNamespaces](https://cloud.tencent.com/document/product/649/36096)查询已创建的命名空间列表或登录[控制台](https://console.cloud.tencent.com/tsf/resource?rid=1&tab=namespace)进行查看;也可以调用[CreateNamespace](https://cloud.tencent.com/document/product/649/36098)创建新的命名空间。
31775
31854
  :type NamespaceId: str
31776
- :param _Limit: 每页条数
31855
+ :param _Limit: 每页条数,默认值20,无上限
31777
31856
  :type Limit: int
31778
- :param _Offset: 起始偏移量
31857
+ :param _Offset: 起始偏移量,默认值0
31779
31858
  :type Offset: int
31780
31859
  :param _GroupId: 部署组ID,不填写时查询全量
31781
31860
  :type GroupId: str
@@ -31796,7 +31875,7 @@ class DescribeSimpleGroupsRequest(AbstractModel):
31796
31875
 
31797
31876
  @property
31798
31877
  def GroupIdList(self):
31799
- """部署组ID列表,不填写时查询全量
31878
+ """按照【部署组ID】进行过滤,不填写时查询全量。可通过调用[DescribeContainerGroups](https://cloud.tencent.com/document/product/649/36068)查询已创建的部署组列表或登录[控制台](https://console.cloud.tencent.com/tsf/app-detail?rid=1&id=application-zvw6zp9a&tab=publish&subTab=group)进行查看;也可以调用[CreateGroup](https://cloud.tencent.com/document/product/649/36074)创建新的部署组。
31800
31879
  :rtype: list of str
31801
31880
  """
31802
31881
  return self._GroupIdList
@@ -31807,7 +31886,7 @@ class DescribeSimpleGroupsRequest(AbstractModel):
31807
31886
 
31808
31887
  @property
31809
31888
  def ApplicationId(self):
31810
- """应用ID,不填写时查询全量
31889
+ """按照【应用ID】进行过滤,不填写时查询全量。可通过调用[DescribeApplications](https://cloud.tencent.com/document/product/649/36090)查询已创建的应用列表或登录[控制台](https://console.cloud.tencent.com/tsf/app?rid=1)进行查看;也可以调用[CreateApplication](https://cloud.tencent.com/document/product/649/36094)创建新的应用。
31811
31890
  :rtype: str
31812
31891
  """
31813
31892
  return self._ApplicationId
@@ -31818,7 +31897,7 @@ class DescribeSimpleGroupsRequest(AbstractModel):
31818
31897
 
31819
31898
  @property
31820
31899
  def ClusterId(self):
31821
- """集群ID,不填写时查询全量
31900
+ """按照【集群ID】进行过滤,不填写时查询全量。可通过调用[DescribeClusters](https://cloud.tencent.com/document/product/649/85857)查询已创建的集群列表或登录[控制台](https://console.cloud.tencent.com/tsf/resource?rid=1&tab=docker)进行查看;也可以调用[CreateCluster](https://cloud.tencent.com/document/product/649/36049)创建新的集群。
31822
31901
  :rtype: str
31823
31902
  """
31824
31903
  return self._ClusterId
@@ -31829,7 +31908,7 @@ class DescribeSimpleGroupsRequest(AbstractModel):
31829
31908
 
31830
31909
  @property
31831
31910
  def NamespaceId(self):
31832
- """命名空间ID,不填写时查询全量
31911
+ """按照【命名空间ID】进行过滤,不填写时查询全量。可通过调用[DescribeSimpleNamespaces](https://cloud.tencent.com/document/product/649/36096)查询已创建的命名空间列表或登录[控制台](https://console.cloud.tencent.com/tsf/resource?rid=1&tab=namespace)进行查看;也可以调用[CreateNamespace](https://cloud.tencent.com/document/product/649/36098)创建新的命名空间。
31833
31912
  :rtype: str
31834
31913
  """
31835
31914
  return self._NamespaceId
@@ -31840,7 +31919,7 @@ class DescribeSimpleGroupsRequest(AbstractModel):
31840
31919
 
31841
31920
  @property
31842
31921
  def Limit(self):
31843
- """每页条数
31922
+ """每页条数,默认值20,无上限
31844
31923
  :rtype: int
31845
31924
  """
31846
31925
  return self._Limit
@@ -31851,7 +31930,7 @@ class DescribeSimpleGroupsRequest(AbstractModel):
31851
31930
 
31852
31931
  @property
31853
31932
  def Offset(self):
31854
- """起始偏移量
31933
+ """起始偏移量,默认值0
31855
31934
  :rtype: int
31856
31935
  """
31857
31936
  return self._Offset
@@ -31976,7 +32055,7 @@ class DescribeSimpleNamespacesRequest(AbstractModel):
31976
32055
  :type Offset: int
31977
32056
  :param _NamespaceId: 命名空间ID,按照【命名空间ID】进行过滤,可通过调用[DescribeNamespaces](https://cloud.tencent.com/document/product/649/36096)查询已创建的命名空间列表或登录控制台进行查看;也可以调用[CreateNamespace](https://cloud.tencent.com/document/product/649/36098)创建新命名空间。
31978
32057
  :type NamespaceId: str
31979
- :param _NamespaceResourceTypeList: 查询资源类型列表
32058
+ :param _NamespaceResourceTypeList: 查询资源类型列表;DEF 表示默认资源类型;GW 表示网关资源类型
31980
32059
  :type NamespaceResourceTypeList: list of str
31981
32060
  :param _SearchWord: 通过id和name进行过滤
31982
32061
  :type SearchWord: str
@@ -32058,7 +32137,7 @@ class DescribeSimpleNamespacesRequest(AbstractModel):
32058
32137
 
32059
32138
  @property
32060
32139
  def NamespaceResourceTypeList(self):
32061
- """查询资源类型列表
32140
+ """查询资源类型列表;DEF 表示默认资源类型;GW 表示网关资源类型
32062
32141
  :rtype: list of str
32063
32142
  """
32064
32143
  return self._NamespaceResourceTypeList
@@ -36593,6 +36672,10 @@ class GatewayPlugin(AbstractModel):
36593
36672
  :param _Status: 发布状态
36594
36673
  注意:此字段可能返回 null,表示取不到有效值。
36595
36674
  :type Status: str
36675
+ :param _DeleteDisabled: 是否禁用删除
36676
+ :type DeleteDisabled: bool
36677
+ :param _DeleteDisabledReason: 禁用原因
36678
+ :type DeleteDisabledReason: str
36596
36679
  """
36597
36680
  self._Id = None
36598
36681
  self._Name = None
@@ -36601,6 +36684,8 @@ class GatewayPlugin(AbstractModel):
36601
36684
  self._CreatedTime = None
36602
36685
  self._UpdatedTime = None
36603
36686
  self._Status = None
36687
+ self._DeleteDisabled = None
36688
+ self._DeleteDisabledReason = None
36604
36689
 
36605
36690
  @property
36606
36691
  def Id(self):
@@ -36686,6 +36771,28 @@ class GatewayPlugin(AbstractModel):
36686
36771
  def Status(self, Status):
36687
36772
  self._Status = Status
36688
36773
 
36774
+ @property
36775
+ def DeleteDisabled(self):
36776
+ """是否禁用删除
36777
+ :rtype: bool
36778
+ """
36779
+ return self._DeleteDisabled
36780
+
36781
+ @DeleteDisabled.setter
36782
+ def DeleteDisabled(self, DeleteDisabled):
36783
+ self._DeleteDisabled = DeleteDisabled
36784
+
36785
+ @property
36786
+ def DeleteDisabledReason(self):
36787
+ """禁用原因
36788
+ :rtype: str
36789
+ """
36790
+ return self._DeleteDisabledReason
36791
+
36792
+ @DeleteDisabledReason.setter
36793
+ def DeleteDisabledReason(self, DeleteDisabledReason):
36794
+ self._DeleteDisabledReason = DeleteDisabledReason
36795
+
36689
36796
 
36690
36797
  def _deserialize(self, params):
36691
36798
  self._Id = params.get("Id")
@@ -36695,6 +36802,8 @@ class GatewayPlugin(AbstractModel):
36695
36802
  self._CreatedTime = params.get("CreatedTime")
36696
36803
  self._UpdatedTime = params.get("UpdatedTime")
36697
36804
  self._Status = params.get("Status")
36805
+ self._DeleteDisabled = params.get("DeleteDisabled")
36806
+ self._DeleteDisabledReason = params.get("DeleteDisabledReason")
36698
36807
  memeber_set = set(params.keys())
36699
36808
  for name, value in vars(self).items():
36700
36809
  property_name = name[1:]
@@ -41593,6 +41702,12 @@ class LaneInfo(AbstractModel):
41593
41702
  :param _LaneGroupId: 泳道部署组ID
41594
41703
  注意:此字段可能返回 null,表示取不到有效值。
41595
41704
  :type LaneGroupId: str
41705
+ :param _DeleteDisabled: 是否禁用删除。
41706
+ true:禁用
41707
+ false:取消禁用
41708
+ :type DeleteDisabled: bool
41709
+ :param _DeleteDisabledReason: 禁用原因
41710
+ :type DeleteDisabledReason: str
41596
41711
  """
41597
41712
  self._LaneId = None
41598
41713
  self._LaneName = None
@@ -41603,6 +41718,8 @@ class LaneInfo(AbstractModel):
41603
41718
  self._Entrance = None
41604
41719
  self._NamespaceIdList = None
41605
41720
  self._LaneGroupId = None
41721
+ self._DeleteDisabled = None
41722
+ self._DeleteDisabledReason = None
41606
41723
 
41607
41724
  @property
41608
41725
  def LaneId(self):
@@ -41712,6 +41829,30 @@ class LaneInfo(AbstractModel):
41712
41829
  def LaneGroupId(self, LaneGroupId):
41713
41830
  self._LaneGroupId = LaneGroupId
41714
41831
 
41832
+ @property
41833
+ def DeleteDisabled(self):
41834
+ """是否禁用删除。
41835
+ true:禁用
41836
+ false:取消禁用
41837
+ :rtype: bool
41838
+ """
41839
+ return self._DeleteDisabled
41840
+
41841
+ @DeleteDisabled.setter
41842
+ def DeleteDisabled(self, DeleteDisabled):
41843
+ self._DeleteDisabled = DeleteDisabled
41844
+
41845
+ @property
41846
+ def DeleteDisabledReason(self):
41847
+ """禁用原因
41848
+ :rtype: str
41849
+ """
41850
+ return self._DeleteDisabledReason
41851
+
41852
+ @DeleteDisabledReason.setter
41853
+ def DeleteDisabledReason(self, DeleteDisabledReason):
41854
+ self._DeleteDisabledReason = DeleteDisabledReason
41855
+
41715
41856
 
41716
41857
  def _deserialize(self, params):
41717
41858
  self._LaneId = params.get("LaneId")
@@ -41728,6 +41869,8 @@ class LaneInfo(AbstractModel):
41728
41869
  self._Entrance = params.get("Entrance")
41729
41870
  self._NamespaceIdList = params.get("NamespaceIdList")
41730
41871
  self._LaneGroupId = params.get("LaneGroupId")
41872
+ self._DeleteDisabled = params.get("DeleteDisabled")
41873
+ self._DeleteDisabledReason = params.get("DeleteDisabledReason")
41731
41874
  memeber_set = set(params.keys())
41732
41875
  for name, value in vars(self).items():
41733
41876
  property_name = name[1:]
@@ -44439,7 +44582,7 @@ class ModifyProgramRequest(AbstractModel):
44439
44582
 
44440
44583
  def __init__(self):
44441
44584
  r"""
44442
- :param _ProgramId: 数据集ID
44585
+ :param _ProgramId: 数据集ID,调用[DescribePrograms](https://console.cloud.tencent.com/tsf/privilege?rid=1&tab=program)查询接口会返回数据集信息,包括programId
44443
44586
  :type ProgramId: str
44444
44587
  :param _ProgramName: 数据集名称,不传入时不更新
44445
44588
  :type ProgramName: str
@@ -44458,7 +44601,7 @@ class ModifyProgramRequest(AbstractModel):
44458
44601
 
44459
44602
  @property
44460
44603
  def ProgramId(self):
44461
- """数据集ID
44604
+ """数据集ID,调用[DescribePrograms](https://console.cloud.tencent.com/tsf/privilege?rid=1&tab=program)查询接口会返回数据集信息,包括programId
44462
44605
  :rtype: str
44463
44606
  """
44464
44607
  return self._ProgramId
@@ -52110,6 +52253,8 @@ class SimpleGroup(AbstractModel):
52110
52253
  :type GroupResourceType: str
52111
52254
  :param _AppMicroServiceType: 应用微服务类型
52112
52255
  :type AppMicroServiceType: str
52256
+ :param _K8sNamespaceName: k8s 命名空间名称
52257
+ :type K8sNamespaceName: str
52113
52258
  """
52114
52259
  self._GroupId = None
52115
52260
  self._GroupName = None
@@ -52124,6 +52269,7 @@ class SimpleGroup(AbstractModel):
52124
52269
  self._StartupParameters = None
52125
52270
  self._GroupResourceType = None
52126
52271
  self._AppMicroServiceType = None
52272
+ self._K8sNamespaceName = None
52127
52273
 
52128
52274
  @property
52129
52275
  def GroupId(self):
@@ -52268,6 +52414,17 @@ class SimpleGroup(AbstractModel):
52268
52414
  def AppMicroServiceType(self, AppMicroServiceType):
52269
52415
  self._AppMicroServiceType = AppMicroServiceType
52270
52416
 
52417
+ @property
52418
+ def K8sNamespaceName(self):
52419
+ """k8s 命名空间名称
52420
+ :rtype: str
52421
+ """
52422
+ return self._K8sNamespaceName
52423
+
52424
+ @K8sNamespaceName.setter
52425
+ def K8sNamespaceName(self, K8sNamespaceName):
52426
+ self._K8sNamespaceName = K8sNamespaceName
52427
+
52271
52428
 
52272
52429
  def _deserialize(self, params):
52273
52430
  self._GroupId = params.get("GroupId")
@@ -52283,6 +52440,7 @@ class SimpleGroup(AbstractModel):
52283
52440
  self._StartupParameters = params.get("StartupParameters")
52284
52441
  self._GroupResourceType = params.get("GroupResourceType")
52285
52442
  self._AppMicroServiceType = params.get("AppMicroServiceType")
52443
+ self._K8sNamespaceName = params.get("K8sNamespaceName")
52286
52444
  memeber_set = set(params.keys())
52287
52445
  for name, value in vars(self).items():
52288
52446
  property_name = name[1:]
@@ -52438,14 +52596,14 @@ class StartGroupRequest(AbstractModel):
52438
52596
 
52439
52597
  def __init__(self):
52440
52598
  r"""
52441
- :param _GroupId: 部署组ID
52599
+ :param _GroupId: 按照【部署组ID】进行部署组启动,可通过调用[DescribeContainerGroups](https://cloud.tencent.com/document/product/649/36068)查询已创建的部署组列表或登录[控制台](https://console.cloud.tencent.com/tsf/app-detail?rid=1&id=application-zvw6zp9a&tab=publish&subTab=group)进行查看;也可以调用[CreateGroup](https://cloud.tencent.com/document/product/649/36074)创建新的部署组。
52442
52600
  :type GroupId: str
52443
52601
  """
52444
52602
  self._GroupId = None
52445
52603
 
52446
52604
  @property
52447
52605
  def GroupId(self):
52448
- """部署组ID
52606
+ """按照【部署组ID】进行部署组启动,可通过调用[DescribeContainerGroups](https://cloud.tencent.com/document/product/649/36068)查询已创建的部署组列表或登录[控制台](https://console.cloud.tencent.com/tsf/app-detail?rid=1&id=application-zvw6zp9a&tab=publish&subTab=group)进行查看;也可以调用[CreateGroup](https://cloud.tencent.com/document/product/649/36074)创建新的部署组。
52449
52607
  :rtype: str
52450
52608
  """
52451
52609
  return self._GroupId
@@ -52683,14 +52841,14 @@ class StopGroupRequest(AbstractModel):
52683
52841
 
52684
52842
  def __init__(self):
52685
52843
  r"""
52686
- :param _GroupId: 部署组ID
52844
+ :param _GroupId: 按照【部署组ID】进行部署组删除,可通过调用[DescribeContainerGroups](https://cloud.tencent.com/document/product/649/36068)查询已创建的部署组列表或登录[控制台](https://console.cloud.tencent.com/tsf/app-detail?rid=1&id=application-zvw6zp9a&tab=publish&subTab=group)进行查看;也可以调用[CreateGroup](https://cloud.tencent.com/document/product/649/36074)创建新的部署组。
52687
52845
  :type GroupId: str
52688
52846
  """
52689
52847
  self._GroupId = None
52690
52848
 
52691
52849
  @property
52692
52850
  def GroupId(self):
52693
- """部署组ID
52851
+ """按照【部署组ID】进行部署组删除,可通过调用[DescribeContainerGroups](https://cloud.tencent.com/document/product/649/36068)查询已创建的部署组列表或登录[控制台](https://console.cloud.tencent.com/tsf/app-detail?rid=1&id=application-zvw6zp9a&tab=publish&subTab=group)进行查看;也可以调用[CreateGroup](https://cloud.tencent.com/document/product/649/36074)创建新的部署组。
52694
52852
  :rtype: str
52695
52853
  """
52696
52854
  return self._GroupId