tencentcloud-sdk-python 3.0.1128__py2.py3-none-any.whl → 3.0.1130__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/aiart/v20221229/models.py +27 -0
- tencentcloud/asr/v20190614/asr_client.py +1 -1
- tencentcloud/asr/v20190614/models.py +3 -0
- tencentcloud/bsca/v20210811/models.py +24 -0
- tencentcloud/ccc/v20200210/ccc_client.py +2 -2
- tencentcloud/ccc/v20200210/models.py +10 -10
- tencentcloud/domain/v20180808/domain_client.py +46 -0
- tencentcloud/domain/v20180808/errorcodes.py +9 -0
- tencentcloud/domain/v20180808/models.py +269 -1
- tencentcloud/dts/v20211206/models.py +2 -2
- tencentcloud/ess/v20201111/errorcodes.py +9 -0
- tencentcloud/ess/v20201111/ess_client.py +75 -3
- tencentcloud/ess/v20201111/models.py +660 -5
- tencentcloud/essbasic/v20210526/models.py +1 -2
- tencentcloud/iai/v20180301/models.py +1 -0
- tencentcloud/lcic/v20220817/models.py +62 -0
- tencentcloud/lke/v20231130/models.py +14 -2
- tencentcloud/monitor/v20180724/models.py +28 -0
- tencentcloud/ocr/v20181119/models.py +32 -32
- tencentcloud/rce/v20201103/models.py +4 -3
- tencentcloud/smh/v20210712/errorcodes.py +3 -3
- tencentcloud/sqlserver/v20180328/errorcodes.py +3 -0
- tencentcloud/sqlserver/v20180328/models.py +94 -0
- tencentcloud/sqlserver/v20180328/sqlserver_client.py +23 -0
- tencentcloud/tat/v20201028/models.py +3 -3
- tencentcloud/tke/v20180525/models.py +361 -4
- tencentcloud/tke/v20180525/tke_client.py +46 -0
- tencentcloud/trtc/v20190722/trtc_client.py +3 -3
- tencentcloud/vod/v20180717/models.py +17 -18
- tencentcloud/vod/v20180717/vod_client.py +2 -2
- {tencentcloud_sdk_python-3.0.1128.dist-info → tencentcloud_sdk_python-3.0.1130.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1128.dist-info → tencentcloud_sdk_python-3.0.1130.dist-info}/RECORD +36 -36
- {tencentcloud_sdk_python-3.0.1128.dist-info → tencentcloud_sdk_python-3.0.1130.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1128.dist-info → tencentcloud_sdk_python-3.0.1130.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1128.dist-info → tencentcloud_sdk_python-3.0.1130.dist-info}/top_level.txt +0 -0
|
@@ -5473,9 +5473,9 @@ class CreateClusterRouteRequest(AbstractModel):
|
|
|
5473
5473
|
r"""
|
|
5474
5474
|
:param _RouteTableName: 路由表名称。
|
|
5475
5475
|
:type RouteTableName: str
|
|
5476
|
-
:param _DestinationCidrBlock:
|
|
5476
|
+
:param _DestinationCidrBlock: 目的节点的 PodCIDR
|
|
5477
5477
|
:type DestinationCidrBlock: str
|
|
5478
|
-
:param _GatewayIp:
|
|
5478
|
+
:param _GatewayIp: 下一跳地址,即目的节点的内网 IP 地址
|
|
5479
5479
|
:type GatewayIp: str
|
|
5480
5480
|
"""
|
|
5481
5481
|
self._RouteTableName = None
|
|
@@ -5553,13 +5553,13 @@ class CreateClusterRouteTableRequest(AbstractModel):
|
|
|
5553
5553
|
|
|
5554
5554
|
def __init__(self):
|
|
5555
5555
|
r"""
|
|
5556
|
-
:param _RouteTableName:
|
|
5556
|
+
:param _RouteTableName: 路由表名称,一般为集群ID
|
|
5557
5557
|
:type RouteTableName: str
|
|
5558
5558
|
:param _RouteTableCidrBlock: 路由表CIDR
|
|
5559
5559
|
:type RouteTableCidrBlock: str
|
|
5560
5560
|
:param _VpcId: 路由表绑定的VPC
|
|
5561
5561
|
:type VpcId: str
|
|
5562
|
-
:param _IgnoreClusterCidrConflict: 是否忽略CIDR
|
|
5562
|
+
:param _IgnoreClusterCidrConflict: 是否忽略CIDR与 vpc 路由表的冲突, 0 表示不忽略,1表示忽略。默认不忽略
|
|
5563
5563
|
:type IgnoreClusterCidrConflict: int
|
|
5564
5564
|
"""
|
|
5565
5565
|
self._RouteTableName = None
|
|
@@ -20015,6 +20015,82 @@ class DescribeRouteTableConflictsResponse(AbstractModel):
|
|
|
20015
20015
|
self._RequestId = params.get("RequestId")
|
|
20016
20016
|
|
|
20017
20017
|
|
|
20018
|
+
class DescribeSupportedRuntimeRequest(AbstractModel):
|
|
20019
|
+
"""DescribeSupportedRuntime请求参数结构体
|
|
20020
|
+
|
|
20021
|
+
"""
|
|
20022
|
+
|
|
20023
|
+
def __init__(self):
|
|
20024
|
+
r"""
|
|
20025
|
+
:param _K8sVersion: K8S版本
|
|
20026
|
+
:type K8sVersion: str
|
|
20027
|
+
"""
|
|
20028
|
+
self._K8sVersion = None
|
|
20029
|
+
|
|
20030
|
+
@property
|
|
20031
|
+
def K8sVersion(self):
|
|
20032
|
+
return self._K8sVersion
|
|
20033
|
+
|
|
20034
|
+
@K8sVersion.setter
|
|
20035
|
+
def K8sVersion(self, K8sVersion):
|
|
20036
|
+
self._K8sVersion = K8sVersion
|
|
20037
|
+
|
|
20038
|
+
|
|
20039
|
+
def _deserialize(self, params):
|
|
20040
|
+
self._K8sVersion = params.get("K8sVersion")
|
|
20041
|
+
memeber_set = set(params.keys())
|
|
20042
|
+
for name, value in vars(self).items():
|
|
20043
|
+
property_name = name[1:]
|
|
20044
|
+
if property_name in memeber_set:
|
|
20045
|
+
memeber_set.remove(property_name)
|
|
20046
|
+
if len(memeber_set) > 0:
|
|
20047
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
20048
|
+
|
|
20049
|
+
|
|
20050
|
+
|
|
20051
|
+
class DescribeSupportedRuntimeResponse(AbstractModel):
|
|
20052
|
+
"""DescribeSupportedRuntime返回参数结构体
|
|
20053
|
+
|
|
20054
|
+
"""
|
|
20055
|
+
|
|
20056
|
+
def __init__(self):
|
|
20057
|
+
r"""
|
|
20058
|
+
:param _OptionalRuntimes: 可选运行时列表
|
|
20059
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
20060
|
+
:type OptionalRuntimes: list of OptionalRuntimes
|
|
20061
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
20062
|
+
:type RequestId: str
|
|
20063
|
+
"""
|
|
20064
|
+
self._OptionalRuntimes = None
|
|
20065
|
+
self._RequestId = None
|
|
20066
|
+
|
|
20067
|
+
@property
|
|
20068
|
+
def OptionalRuntimes(self):
|
|
20069
|
+
return self._OptionalRuntimes
|
|
20070
|
+
|
|
20071
|
+
@OptionalRuntimes.setter
|
|
20072
|
+
def OptionalRuntimes(self, OptionalRuntimes):
|
|
20073
|
+
self._OptionalRuntimes = OptionalRuntimes
|
|
20074
|
+
|
|
20075
|
+
@property
|
|
20076
|
+
def RequestId(self):
|
|
20077
|
+
return self._RequestId
|
|
20078
|
+
|
|
20079
|
+
@RequestId.setter
|
|
20080
|
+
def RequestId(self, RequestId):
|
|
20081
|
+
self._RequestId = RequestId
|
|
20082
|
+
|
|
20083
|
+
|
|
20084
|
+
def _deserialize(self, params):
|
|
20085
|
+
if params.get("OptionalRuntimes") is not None:
|
|
20086
|
+
self._OptionalRuntimes = []
|
|
20087
|
+
for item in params.get("OptionalRuntimes"):
|
|
20088
|
+
obj = OptionalRuntimes()
|
|
20089
|
+
obj._deserialize(item)
|
|
20090
|
+
self._OptionalRuntimes.append(obj)
|
|
20091
|
+
self._RequestId = params.get("RequestId")
|
|
20092
|
+
|
|
20093
|
+
|
|
20018
20094
|
class DescribeTKEEdgeClusterCredentialRequest(AbstractModel):
|
|
20019
20095
|
"""DescribeTKEEdgeClusterCredential请求参数结构体
|
|
20020
20096
|
|
|
@@ -28351,6 +28427,107 @@ class ModifyClusterNodePoolResponse(AbstractModel):
|
|
|
28351
28427
|
self._RequestId = params.get("RequestId")
|
|
28352
28428
|
|
|
28353
28429
|
|
|
28430
|
+
class ModifyClusterRuntimeConfigRequest(AbstractModel):
|
|
28431
|
+
"""ModifyClusterRuntimeConfig请求参数结构体
|
|
28432
|
+
|
|
28433
|
+
"""
|
|
28434
|
+
|
|
28435
|
+
def __init__(self):
|
|
28436
|
+
r"""
|
|
28437
|
+
:param _ClusterId: 集群ID,必填
|
|
28438
|
+
:type ClusterId: str
|
|
28439
|
+
:param _DstK8SVersion: 当需要修改运行时版本是根据另外的K8S版本获取时,需填写。例如升级校验有冲突后修改场景
|
|
28440
|
+
:type DstK8SVersion: str
|
|
28441
|
+
:param _ClusterRuntimeConfig: 需要修改集群运行时时填写
|
|
28442
|
+
:type ClusterRuntimeConfig: :class:`tencentcloud.tke.v20180525.models.RuntimeConfig`
|
|
28443
|
+
:param _NodePoolRuntimeConfig: 需要修改节点池运行时时,填需要修改的部分
|
|
28444
|
+
:type NodePoolRuntimeConfig: list of NodePoolRuntime
|
|
28445
|
+
"""
|
|
28446
|
+
self._ClusterId = None
|
|
28447
|
+
self._DstK8SVersion = None
|
|
28448
|
+
self._ClusterRuntimeConfig = None
|
|
28449
|
+
self._NodePoolRuntimeConfig = None
|
|
28450
|
+
|
|
28451
|
+
@property
|
|
28452
|
+
def ClusterId(self):
|
|
28453
|
+
return self._ClusterId
|
|
28454
|
+
|
|
28455
|
+
@ClusterId.setter
|
|
28456
|
+
def ClusterId(self, ClusterId):
|
|
28457
|
+
self._ClusterId = ClusterId
|
|
28458
|
+
|
|
28459
|
+
@property
|
|
28460
|
+
def DstK8SVersion(self):
|
|
28461
|
+
return self._DstK8SVersion
|
|
28462
|
+
|
|
28463
|
+
@DstK8SVersion.setter
|
|
28464
|
+
def DstK8SVersion(self, DstK8SVersion):
|
|
28465
|
+
self._DstK8SVersion = DstK8SVersion
|
|
28466
|
+
|
|
28467
|
+
@property
|
|
28468
|
+
def ClusterRuntimeConfig(self):
|
|
28469
|
+
return self._ClusterRuntimeConfig
|
|
28470
|
+
|
|
28471
|
+
@ClusterRuntimeConfig.setter
|
|
28472
|
+
def ClusterRuntimeConfig(self, ClusterRuntimeConfig):
|
|
28473
|
+
self._ClusterRuntimeConfig = ClusterRuntimeConfig
|
|
28474
|
+
|
|
28475
|
+
@property
|
|
28476
|
+
def NodePoolRuntimeConfig(self):
|
|
28477
|
+
return self._NodePoolRuntimeConfig
|
|
28478
|
+
|
|
28479
|
+
@NodePoolRuntimeConfig.setter
|
|
28480
|
+
def NodePoolRuntimeConfig(self, NodePoolRuntimeConfig):
|
|
28481
|
+
self._NodePoolRuntimeConfig = NodePoolRuntimeConfig
|
|
28482
|
+
|
|
28483
|
+
|
|
28484
|
+
def _deserialize(self, params):
|
|
28485
|
+
self._ClusterId = params.get("ClusterId")
|
|
28486
|
+
self._DstK8SVersion = params.get("DstK8SVersion")
|
|
28487
|
+
if params.get("ClusterRuntimeConfig") is not None:
|
|
28488
|
+
self._ClusterRuntimeConfig = RuntimeConfig()
|
|
28489
|
+
self._ClusterRuntimeConfig._deserialize(params.get("ClusterRuntimeConfig"))
|
|
28490
|
+
if params.get("NodePoolRuntimeConfig") is not None:
|
|
28491
|
+
self._NodePoolRuntimeConfig = []
|
|
28492
|
+
for item in params.get("NodePoolRuntimeConfig"):
|
|
28493
|
+
obj = NodePoolRuntime()
|
|
28494
|
+
obj._deserialize(item)
|
|
28495
|
+
self._NodePoolRuntimeConfig.append(obj)
|
|
28496
|
+
memeber_set = set(params.keys())
|
|
28497
|
+
for name, value in vars(self).items():
|
|
28498
|
+
property_name = name[1:]
|
|
28499
|
+
if property_name in memeber_set:
|
|
28500
|
+
memeber_set.remove(property_name)
|
|
28501
|
+
if len(memeber_set) > 0:
|
|
28502
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
28503
|
+
|
|
28504
|
+
|
|
28505
|
+
|
|
28506
|
+
class ModifyClusterRuntimeConfigResponse(AbstractModel):
|
|
28507
|
+
"""ModifyClusterRuntimeConfig返回参数结构体
|
|
28508
|
+
|
|
28509
|
+
"""
|
|
28510
|
+
|
|
28511
|
+
def __init__(self):
|
|
28512
|
+
r"""
|
|
28513
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
28514
|
+
:type RequestId: str
|
|
28515
|
+
"""
|
|
28516
|
+
self._RequestId = None
|
|
28517
|
+
|
|
28518
|
+
@property
|
|
28519
|
+
def RequestId(self):
|
|
28520
|
+
return self._RequestId
|
|
28521
|
+
|
|
28522
|
+
@RequestId.setter
|
|
28523
|
+
def RequestId(self, RequestId):
|
|
28524
|
+
self._RequestId = RequestId
|
|
28525
|
+
|
|
28526
|
+
|
|
28527
|
+
def _deserialize(self, params):
|
|
28528
|
+
self._RequestId = params.get("RequestId")
|
|
28529
|
+
|
|
28530
|
+
|
|
28354
28531
|
class ModifyClusterVirtualNodePoolRequest(AbstractModel):
|
|
28355
28532
|
"""ModifyClusterVirtualNodePool请求参数结构体
|
|
28356
28533
|
|
|
@@ -29959,6 +30136,79 @@ class NodePoolOption(AbstractModel):
|
|
|
29959
30136
|
|
|
29960
30137
|
|
|
29961
30138
|
|
|
30139
|
+
class NodePoolRuntime(AbstractModel):
|
|
30140
|
+
"""NodePool的运行时配置
|
|
30141
|
+
|
|
30142
|
+
"""
|
|
30143
|
+
|
|
30144
|
+
def __init__(self):
|
|
30145
|
+
r"""
|
|
30146
|
+
:param _NodePoolId: 节点池ID
|
|
30147
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
30148
|
+
:type NodePoolId: str
|
|
30149
|
+
:param _RuntimeType: 运行时类型
|
|
30150
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
30151
|
+
:type RuntimeType: str
|
|
30152
|
+
:param _RuntimeVersion: 运行时版本
|
|
30153
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
30154
|
+
:type RuntimeVersion: str
|
|
30155
|
+
:param _NodePoolName: 节点池名称
|
|
30156
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
30157
|
+
:type NodePoolName: str
|
|
30158
|
+
"""
|
|
30159
|
+
self._NodePoolId = None
|
|
30160
|
+
self._RuntimeType = None
|
|
30161
|
+
self._RuntimeVersion = None
|
|
30162
|
+
self._NodePoolName = None
|
|
30163
|
+
|
|
30164
|
+
@property
|
|
30165
|
+
def NodePoolId(self):
|
|
30166
|
+
return self._NodePoolId
|
|
30167
|
+
|
|
30168
|
+
@NodePoolId.setter
|
|
30169
|
+
def NodePoolId(self, NodePoolId):
|
|
30170
|
+
self._NodePoolId = NodePoolId
|
|
30171
|
+
|
|
30172
|
+
@property
|
|
30173
|
+
def RuntimeType(self):
|
|
30174
|
+
return self._RuntimeType
|
|
30175
|
+
|
|
30176
|
+
@RuntimeType.setter
|
|
30177
|
+
def RuntimeType(self, RuntimeType):
|
|
30178
|
+
self._RuntimeType = RuntimeType
|
|
30179
|
+
|
|
30180
|
+
@property
|
|
30181
|
+
def RuntimeVersion(self):
|
|
30182
|
+
return self._RuntimeVersion
|
|
30183
|
+
|
|
30184
|
+
@RuntimeVersion.setter
|
|
30185
|
+
def RuntimeVersion(self, RuntimeVersion):
|
|
30186
|
+
self._RuntimeVersion = RuntimeVersion
|
|
30187
|
+
|
|
30188
|
+
@property
|
|
30189
|
+
def NodePoolName(self):
|
|
30190
|
+
return self._NodePoolName
|
|
30191
|
+
|
|
30192
|
+
@NodePoolName.setter
|
|
30193
|
+
def NodePoolName(self, NodePoolName):
|
|
30194
|
+
self._NodePoolName = NodePoolName
|
|
30195
|
+
|
|
30196
|
+
|
|
30197
|
+
def _deserialize(self, params):
|
|
30198
|
+
self._NodePoolId = params.get("NodePoolId")
|
|
30199
|
+
self._RuntimeType = params.get("RuntimeType")
|
|
30200
|
+
self._RuntimeVersion = params.get("RuntimeVersion")
|
|
30201
|
+
self._NodePoolName = params.get("NodePoolName")
|
|
30202
|
+
memeber_set = set(params.keys())
|
|
30203
|
+
for name, value in vars(self).items():
|
|
30204
|
+
property_name = name[1:]
|
|
30205
|
+
if property_name in memeber_set:
|
|
30206
|
+
memeber_set.remove(property_name)
|
|
30207
|
+
if len(memeber_set) > 0:
|
|
30208
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
30209
|
+
|
|
30210
|
+
|
|
30211
|
+
|
|
29962
30212
|
class OIDCConfigAuthenticationOptions(AbstractModel):
|
|
29963
30213
|
"""OIDC认证相关配置
|
|
29964
30214
|
|
|
@@ -30019,6 +30269,66 @@ class OIDCConfigAuthenticationOptions(AbstractModel):
|
|
|
30019
30269
|
|
|
30020
30270
|
|
|
30021
30271
|
|
|
30272
|
+
class OptionalRuntimes(AbstractModel):
|
|
30273
|
+
"""可选运行时
|
|
30274
|
+
|
|
30275
|
+
"""
|
|
30276
|
+
|
|
30277
|
+
def __init__(self):
|
|
30278
|
+
r"""
|
|
30279
|
+
:param _RuntimeType: 运行时类型
|
|
30280
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
30281
|
+
:type RuntimeType: str
|
|
30282
|
+
:param _RuntimeVersions: 运行时版本列表
|
|
30283
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
30284
|
+
:type RuntimeVersions: list of str
|
|
30285
|
+
:param _DefaultVersion: 该类型的默认运行时版本
|
|
30286
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
30287
|
+
:type DefaultVersion: str
|
|
30288
|
+
"""
|
|
30289
|
+
self._RuntimeType = None
|
|
30290
|
+
self._RuntimeVersions = None
|
|
30291
|
+
self._DefaultVersion = None
|
|
30292
|
+
|
|
30293
|
+
@property
|
|
30294
|
+
def RuntimeType(self):
|
|
30295
|
+
return self._RuntimeType
|
|
30296
|
+
|
|
30297
|
+
@RuntimeType.setter
|
|
30298
|
+
def RuntimeType(self, RuntimeType):
|
|
30299
|
+
self._RuntimeType = RuntimeType
|
|
30300
|
+
|
|
30301
|
+
@property
|
|
30302
|
+
def RuntimeVersions(self):
|
|
30303
|
+
return self._RuntimeVersions
|
|
30304
|
+
|
|
30305
|
+
@RuntimeVersions.setter
|
|
30306
|
+
def RuntimeVersions(self, RuntimeVersions):
|
|
30307
|
+
self._RuntimeVersions = RuntimeVersions
|
|
30308
|
+
|
|
30309
|
+
@property
|
|
30310
|
+
def DefaultVersion(self):
|
|
30311
|
+
return self._DefaultVersion
|
|
30312
|
+
|
|
30313
|
+
@DefaultVersion.setter
|
|
30314
|
+
def DefaultVersion(self, DefaultVersion):
|
|
30315
|
+
self._DefaultVersion = DefaultVersion
|
|
30316
|
+
|
|
30317
|
+
|
|
30318
|
+
def _deserialize(self, params):
|
|
30319
|
+
self._RuntimeType = params.get("RuntimeType")
|
|
30320
|
+
self._RuntimeVersions = params.get("RuntimeVersions")
|
|
30321
|
+
self._DefaultVersion = params.get("DefaultVersion")
|
|
30322
|
+
memeber_set = set(params.keys())
|
|
30323
|
+
for name, value in vars(self).items():
|
|
30324
|
+
property_name = name[1:]
|
|
30325
|
+
if property_name in memeber_set:
|
|
30326
|
+
memeber_set.remove(property_name)
|
|
30327
|
+
if len(memeber_set) > 0:
|
|
30328
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
30329
|
+
|
|
30330
|
+
|
|
30331
|
+
|
|
30022
30332
|
class PendingRelease(AbstractModel):
|
|
30023
30333
|
"""应用市场安装的Pending应用
|
|
30024
30334
|
|
|
@@ -35516,6 +35826,53 @@ class RunSecurityServiceEnabled(AbstractModel):
|
|
|
35516
35826
|
|
|
35517
35827
|
|
|
35518
35828
|
|
|
35829
|
+
class RuntimeConfig(AbstractModel):
|
|
35830
|
+
"""运行时配置
|
|
35831
|
+
|
|
35832
|
+
"""
|
|
35833
|
+
|
|
35834
|
+
def __init__(self):
|
|
35835
|
+
r"""
|
|
35836
|
+
:param _RuntimeType: 运行时类型
|
|
35837
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
35838
|
+
:type RuntimeType: str
|
|
35839
|
+
:param _RuntimeVersion: 运行时版本
|
|
35840
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
35841
|
+
:type RuntimeVersion: str
|
|
35842
|
+
"""
|
|
35843
|
+
self._RuntimeType = None
|
|
35844
|
+
self._RuntimeVersion = None
|
|
35845
|
+
|
|
35846
|
+
@property
|
|
35847
|
+
def RuntimeType(self):
|
|
35848
|
+
return self._RuntimeType
|
|
35849
|
+
|
|
35850
|
+
@RuntimeType.setter
|
|
35851
|
+
def RuntimeType(self, RuntimeType):
|
|
35852
|
+
self._RuntimeType = RuntimeType
|
|
35853
|
+
|
|
35854
|
+
@property
|
|
35855
|
+
def RuntimeVersion(self):
|
|
35856
|
+
return self._RuntimeVersion
|
|
35857
|
+
|
|
35858
|
+
@RuntimeVersion.setter
|
|
35859
|
+
def RuntimeVersion(self, RuntimeVersion):
|
|
35860
|
+
self._RuntimeVersion = RuntimeVersion
|
|
35861
|
+
|
|
35862
|
+
|
|
35863
|
+
def _deserialize(self, params):
|
|
35864
|
+
self._RuntimeType = params.get("RuntimeType")
|
|
35865
|
+
self._RuntimeVersion = params.get("RuntimeVersion")
|
|
35866
|
+
memeber_set = set(params.keys())
|
|
35867
|
+
for name, value in vars(self).items():
|
|
35868
|
+
property_name = name[1:]
|
|
35869
|
+
if property_name in memeber_set:
|
|
35870
|
+
memeber_set.remove(property_name)
|
|
35871
|
+
if len(memeber_set) > 0:
|
|
35872
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
35873
|
+
|
|
35874
|
+
|
|
35875
|
+
|
|
35519
35876
|
class ScaleInClusterMasterRequest(AbstractModel):
|
|
35520
35877
|
"""ScaleInClusterMaster请求参数结构体
|
|
35521
35878
|
|
|
@@ -3430,6 +3430,29 @@ class TkeClient(AbstractClient):
|
|
|
3430
3430
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
3431
3431
|
|
|
3432
3432
|
|
|
3433
|
+
def DescribeSupportedRuntime(self, request):
|
|
3434
|
+
"""根据K8S版本获取可选运行时版本
|
|
3435
|
+
|
|
3436
|
+
:param request: Request instance for DescribeSupportedRuntime.
|
|
3437
|
+
:type request: :class:`tencentcloud.tke.v20180525.models.DescribeSupportedRuntimeRequest`
|
|
3438
|
+
:rtype: :class:`tencentcloud.tke.v20180525.models.DescribeSupportedRuntimeResponse`
|
|
3439
|
+
|
|
3440
|
+
"""
|
|
3441
|
+
try:
|
|
3442
|
+
params = request._serialize()
|
|
3443
|
+
headers = request.headers
|
|
3444
|
+
body = self.call("DescribeSupportedRuntime", params, headers=headers)
|
|
3445
|
+
response = json.loads(body)
|
|
3446
|
+
model = models.DescribeSupportedRuntimeResponse()
|
|
3447
|
+
model._deserialize(response["Response"])
|
|
3448
|
+
return model
|
|
3449
|
+
except Exception as e:
|
|
3450
|
+
if isinstance(e, TencentCloudSDKException):
|
|
3451
|
+
raise
|
|
3452
|
+
else:
|
|
3453
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
3454
|
+
|
|
3455
|
+
|
|
3433
3456
|
def DescribeTKEEdgeClusterCredential(self, request):
|
|
3434
3457
|
"""获取边缘计算集群的认证信息
|
|
3435
3458
|
|
|
@@ -4235,6 +4258,29 @@ class TkeClient(AbstractClient):
|
|
|
4235
4258
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4236
4259
|
|
|
4237
4260
|
|
|
4261
|
+
def ModifyClusterRuntimeConfig(self, request):
|
|
4262
|
+
"""修改集群及节点池纬度运行时配置
|
|
4263
|
+
|
|
4264
|
+
:param request: Request instance for ModifyClusterRuntimeConfig.
|
|
4265
|
+
:type request: :class:`tencentcloud.tke.v20180525.models.ModifyClusterRuntimeConfigRequest`
|
|
4266
|
+
:rtype: :class:`tencentcloud.tke.v20180525.models.ModifyClusterRuntimeConfigResponse`
|
|
4267
|
+
|
|
4268
|
+
"""
|
|
4269
|
+
try:
|
|
4270
|
+
params = request._serialize()
|
|
4271
|
+
headers = request.headers
|
|
4272
|
+
body = self.call("ModifyClusterRuntimeConfig", params, headers=headers)
|
|
4273
|
+
response = json.loads(body)
|
|
4274
|
+
model = models.ModifyClusterRuntimeConfigResponse()
|
|
4275
|
+
model._deserialize(response["Response"])
|
|
4276
|
+
return model
|
|
4277
|
+
except Exception as e:
|
|
4278
|
+
if isinstance(e, TencentCloudSDKException):
|
|
4279
|
+
raise
|
|
4280
|
+
else:
|
|
4281
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4282
|
+
|
|
4283
|
+
|
|
4238
4284
|
def ModifyClusterVirtualNodePool(self, request):
|
|
4239
4285
|
"""修改超级节点池
|
|
4240
4286
|
|
|
@@ -133,7 +133,7 @@ class TrtcClient(AbstractClient):
|
|
|
133
133
|
"""查询指定时间内的用户列表及用户通话质量数据,可查询14天内数据。DataType 不为null,查询起止时间不超过1个小时,查询用户不超过6个,支持跨天查询。DataType为null时,查询起止时间不超过4个小时, 默认查询6个用户,同时支持每页查询100以内用户个数(PageSize不超过100)。接口用于查询质量问题,不推荐作为计费使用。(同老接口DescribeCallDetail)
|
|
134
134
|
**注意**:
|
|
135
135
|
1.该接口只用于历史数据统计或核对数据使用,实时类关键业务逻辑不能使用。
|
|
136
|
-
2.该接口自2024年4月1
|
|
136
|
+
2.该接口自2024年4月1日起正式商业化,可通过订阅[包月套餐](https://cloud.tencent.com/document/product/647/85386)「尊享版」和「旗舰版」或订阅[监控仪表盘](https://cloud.tencent.com/document/product/647/81331)商业套餐包解锁接口调用能力,[前往购买](https://buy.cloud.tencent.com/trtc)。
|
|
137
137
|
|
|
138
138
|
:param request: Request instance for DescribeCallDetailInfo.
|
|
139
139
|
:type request: :class:`tencentcloud.trtc.v20190722.models.DescribeCallDetailInfoRequest`
|
|
@@ -318,7 +318,7 @@ class TrtcClient(AbstractClient):
|
|
|
318
318
|
"""查询SdkAppId下的房间列表。默认返回10条通话,一次最多返回100条通话。可查询14天内的数据。(同老接口DescribeRoomInformation)
|
|
319
319
|
**注意**:
|
|
320
320
|
1.该接口只用于历史数据统计或核对数据使用,实时类关键业务逻辑不能使用。
|
|
321
|
-
2.该接口自2024年4月1
|
|
321
|
+
2.该接口自2024年4月1日起正式商业化,可通过订阅[包月套餐](https://cloud.tencent.com/document/product/647/85386)「尊享版」和「旗舰版」或订阅[监控仪表盘](https://cloud.tencent.com/document/product/647/81331)商业套餐包解锁接口调用能力,[前往购买](https://buy.cloud.tencent.com/trtc)。
|
|
322
322
|
|
|
323
323
|
:param request: Request instance for DescribeRoomInfo.
|
|
324
324
|
:type request: :class:`tencentcloud.trtc.v20190722.models.DescribeRoomInfoRequest`
|
|
@@ -756,7 +756,7 @@ class TrtcClient(AbstractClient):
|
|
|
756
756
|
"""查询指定时间内的用户列表,可查询14天内数据,查询起止时间不超过4小时。默认每页查询6个用户,支持每页最大查询100个用户PageSize不超过100)。(同老接口DescribeUserInformation)
|
|
757
757
|
**注意**:
|
|
758
758
|
1.该接口只用于历史数据统计或核对数据使用,实时类关键业务逻辑不能使用。
|
|
759
|
-
2.该接口自2024年4月1
|
|
759
|
+
2.该接口自2024年4月1日起正式商业化,可通过订阅[包月套餐](https://cloud.tencent.com/document/product/647/85386)「尊享版」和「旗舰版」或订阅[监控仪表盘](https://cloud.tencent.com/document/product/647/81331)商业套餐包解锁接口调用能力,[前往购买](https://buy.cloud.tencent.com/trtc)。
|
|
760
760
|
|
|
761
761
|
:param request: Request instance for DescribeUserInfo.
|
|
762
762
|
:type request: :class:`tencentcloud.trtc.v20190722.models.DescribeUserInfoRequest`
|
|
@@ -8637,7 +8637,7 @@ class ApplyUploadRequest(AbstractModel):
|
|
|
8637
8637
|
r"""
|
|
8638
8638
|
:param _MediaType: 媒体类型,可选值请参考 [上传能力综述](/document/product/266/9760#.E6.96.87.E4.BB.B6.E7.B1.BB.E5.9E.8B)。
|
|
8639
8639
|
:type MediaType: str
|
|
8640
|
-
:param _SubAppId: <b>点播
|
|
8640
|
+
:param _SubAppId: <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
|
|
8641
8641
|
:type SubAppId: int
|
|
8642
8642
|
:param _MediaName: 媒体名称。
|
|
8643
8643
|
:type MediaName: str
|
|
@@ -15708,9 +15708,9 @@ class CreateSubAppIdRequest(AbstractModel):
|
|
|
15708
15708
|
|
|
15709
15709
|
def __init__(self):
|
|
15710
15710
|
r"""
|
|
15711
|
-
:param _Name:
|
|
15711
|
+
:param _Name: 应用名称,长度限制:40个字符。
|
|
15712
15712
|
:type Name: str
|
|
15713
|
-
:param _Description:
|
|
15713
|
+
:param _Description: 应用简介,长度限制: 300个字符。
|
|
15714
15714
|
:type Description: str
|
|
15715
15715
|
"""
|
|
15716
15716
|
self._Name = None
|
|
@@ -15753,7 +15753,7 @@ class CreateSubAppIdResponse(AbstractModel):
|
|
|
15753
15753
|
|
|
15754
15754
|
def __init__(self):
|
|
15755
15755
|
r"""
|
|
15756
|
-
:param _SubAppId:
|
|
15756
|
+
:param _SubAppId: 新创建的应用 ID。
|
|
15757
15757
|
:type SubAppId: int
|
|
15758
15758
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
15759
15759
|
:type RequestId: str
|
|
@@ -17562,7 +17562,7 @@ class DeleteMediaRequest(AbstractModel):
|
|
|
17562
17562
|
r"""
|
|
17563
17563
|
:param _FileId: 媒体文件的唯一标识。
|
|
17564
17564
|
:type FileId: str
|
|
17565
|
-
:param _SubAppId: <b>点播[
|
|
17565
|
+
:param _SubAppId: <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
|
|
17566
17566
|
:type SubAppId: int
|
|
17567
17567
|
:param _DeleteParts: 指定本次需要删除的部分。默认值为 "[]", 表示删除媒体及其对应的全部视频处理文件。
|
|
17568
17568
|
:type DeleteParts: list of MediaDeleteItem
|
|
@@ -18803,7 +18803,7 @@ class DescribeAdaptiveDynamicStreamingTemplatesRequest(AbstractModel):
|
|
|
18803
18803
|
|
|
18804
18804
|
def __init__(self):
|
|
18805
18805
|
r"""
|
|
18806
|
-
:param _SubAppId: <b>点播[
|
|
18806
|
+
:param _SubAppId: <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
|
|
18807
18807
|
:type SubAppId: int
|
|
18808
18808
|
:param _Definitions: 转自适应码流模板唯一标识过滤条件,数组长度限制:100。
|
|
18809
18809
|
:type Definitions: list of int non-negative
|
|
@@ -24047,8 +24047,7 @@ class DescribeStorageDetailsRequest(AbstractModel):
|
|
|
24047
24047
|
:type StartTime: str
|
|
24048
24048
|
:param _EndTime: 结束时间,需大于开始日期,格式按照 ISO 8601标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#52)。
|
|
24049
24049
|
:type EndTime: str
|
|
24050
|
-
:param _SubAppId: <b>点播
|
|
24051
|
-
当该字段为1时,表示以管理员身份查询所有子应用(含主应用)的用量合计。</b>
|
|
24050
|
+
:param _SubAppId: <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
|
|
24052
24051
|
:type SubAppId: int
|
|
24053
24052
|
:param _Interval: 统计时间粒度,有效值:
|
|
24054
24053
|
<li>Minute:以5分钟为粒度。</li>
|
|
@@ -24063,7 +24062,7 @@ class DescribeStorageDetailsRequest(AbstractModel):
|
|
|
24063
24062
|
<li>DeepArchiveStorage:深度归档存储。</li>
|
|
24064
24063
|
<li>DeletedInfrequentStorage:低频存储提前删除量。</li>
|
|
24065
24064
|
<li>DeletedArchiveStorage:归档提前删除量。</li>
|
|
24066
|
-
<li>DeletedDeepArchiveStorage
|
|
24065
|
+
<li>DeletedDeepArchiveStorage:深度归档提前删除量。</li>
|
|
24067
24066
|
<li>ArchiveStandardRetrieval:归档标准取回量。</li>
|
|
24068
24067
|
<li>ArchiveExpeditedRetrieval:归档快速取回量。</li>
|
|
24069
24068
|
<li>ArchiveBulkRetrieval:归档批量取回量。</li>
|
|
@@ -24275,9 +24274,9 @@ class DescribeSubAppIdsRequest(AbstractModel):
|
|
|
24275
24274
|
|
|
24276
24275
|
def __init__(self):
|
|
24277
24276
|
r"""
|
|
24278
|
-
:param _Name:
|
|
24277
|
+
:param _Name: 应用名称。
|
|
24279
24278
|
:type Name: str
|
|
24280
|
-
:param _Tags:
|
|
24279
|
+
:param _Tags: 标签信息,查询指定标签的应用列表。
|
|
24281
24280
|
:type Tags: list of ResourceTag
|
|
24282
24281
|
:param _Offset: 分页拉取的起始偏移量。默认值:0。
|
|
24283
24282
|
:type Offset: int
|
|
@@ -24349,9 +24348,9 @@ class DescribeSubAppIdsResponse(AbstractModel):
|
|
|
24349
24348
|
|
|
24350
24349
|
def __init__(self):
|
|
24351
24350
|
r"""
|
|
24352
|
-
:param _SubAppIdInfoSet:
|
|
24351
|
+
:param _SubAppIdInfoSet: 应用信息集合。
|
|
24353
24352
|
:type SubAppIdInfoSet: list of SubAppIdInfo
|
|
24354
|
-
:param _TotalCount:
|
|
24353
|
+
:param _TotalCount: 应用总数量。
|
|
24355
24354
|
:type TotalCount: int
|
|
24356
24355
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
24357
24356
|
:type RequestId: str
|
|
@@ -46020,7 +46019,7 @@ class PushUrlCacheRequest(AbstractModel):
|
|
|
46020
46019
|
r"""
|
|
46021
46020
|
:param _Urls: 预热的 URL 列表,单次最多指定20个 URL。
|
|
46022
46021
|
:type Urls: list of str
|
|
46023
|
-
:param _SubAppId: <b>点播[
|
|
46022
|
+
:param _SubAppId: <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
|
|
46024
46023
|
:type SubAppId: int
|
|
46025
46024
|
"""
|
|
46026
46025
|
self._Urls = None
|
|
@@ -50400,7 +50399,7 @@ class RestoreMediaRequest(AbstractModel):
|
|
|
50400
50399
|
r"""
|
|
50401
50400
|
:param _FileIds: 媒体文件唯一标识列表,最大长度:100。
|
|
50402
50401
|
:type FileIds: list of str
|
|
50403
|
-
:param _SubAppId:
|
|
50402
|
+
:param _SubAppId: <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
|
|
50404
50403
|
:type SubAppId: int
|
|
50405
50404
|
:param _RestoreDay: 解冻出的临时媒体文件的可访问持续时长,必须大于0,单位为“天”。
|
|
50406
50405
|
:type RestoreDay: int
|
|
@@ -50608,7 +50607,7 @@ class ReviewAudioVideoRequest(AbstractModel):
|
|
|
50608
50607
|
r"""
|
|
50609
50608
|
:param _FileId: 媒体文件 ID,即该文件在云点播上的全局唯一标识符,在上传成功后由云点播后台分配。可以在 [视频上传完成事件通知](/document/product/266/7830) 或 [云点播控制台](https://console.cloud.tencent.com/vod/media) 获取该字段。
|
|
50610
50609
|
:type FileId: str
|
|
50611
|
-
:param _SubAppId: <b>点播[
|
|
50610
|
+
:param _SubAppId: <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
|
|
50612
50611
|
:type SubAppId: int
|
|
50613
50612
|
:param _ReviewContents: 审核的内容,可选值有:
|
|
50614
50613
|
<li>Media:原始音视频;</li>
|
|
@@ -52940,7 +52939,7 @@ class SetCLSPushTargetRequest(AbstractModel):
|
|
|
52940
52939
|
r"""
|
|
52941
52940
|
:param _Domain: 域名。
|
|
52942
52941
|
:type Domain: str
|
|
52943
|
-
:param _SubAppId:
|
|
52942
|
+
:param _SubAppId: <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
|
|
52944
52943
|
:type SubAppId: int
|
|
52945
52944
|
:param _ChineseMainlandCLSTargetInfo: 要设置的中国大陆地区的日志推送目标。
|
|
52946
52945
|
:type ChineseMainlandCLSTargetInfo: :class:`tencentcloud.vod.v20180717.models.AreaCLSTargetInfo`
|
|
@@ -59606,7 +59605,7 @@ class WeChatMiniProgramPublishRequest(AbstractModel):
|
|
|
59606
59605
|
r"""
|
|
59607
59606
|
:param _FileId: 媒体文件 ID。
|
|
59608
59607
|
:type FileId: str
|
|
59609
|
-
:param _SubAppId: <b>点播[
|
|
59608
|
+
:param _SubAppId: <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
|
|
59610
59609
|
:type SubAppId: int
|
|
59611
59610
|
:param _SourceDefinition: 发布视频所对应的转码模板 ID,为0代表原始视频。
|
|
59612
59611
|
:type SourceDefinition: int
|
|
@@ -698,7 +698,7 @@ class VodClient(AbstractClient):
|
|
|
698
698
|
|
|
699
699
|
|
|
700
700
|
def CreateSubAppId(self, request):
|
|
701
|
-
"""
|
|
701
|
+
"""该接口用于创建点播应用。
|
|
702
702
|
|
|
703
703
|
:param request: Request instance for CreateSubAppId.
|
|
704
704
|
:type request: :class:`tencentcloud.vod.v20180717.models.CreateSubAppIdRequest`
|
|
@@ -2559,7 +2559,7 @@ class VodClient(AbstractClient):
|
|
|
2559
2559
|
|
|
2560
2560
|
|
|
2561
2561
|
def DescribeSubAppIds(self, request):
|
|
2562
|
-
"""
|
|
2562
|
+
"""该接口用于获取当前账号的应用列表。
|
|
2563
2563
|
|
|
2564
2564
|
:param request: Request instance for DescribeSubAppIds.
|
|
2565
2565
|
:type request: :class:`tencentcloud.vod.v20180717.models.DescribeSubAppIdsRequest`
|