tencentcloud-sdk-python 3.0.1440__py2.py3-none-any.whl → 3.0.1442__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/autoscaling/v20180419/models.py +10 -6
- tencentcloud/cfs/v20190719/cfs_client.py +23 -0
- tencentcloud/cfs/v20190719/models.py +124 -0
- tencentcloud/cls/v20201016/models.py +120 -32
- tencentcloud/dcdb/v20180411/models.py +47 -2
- tencentcloud/dlc/v20210125/models.py +21 -6
- tencentcloud/dsgc/v20190723/dsgc_client.py +1 -1
- tencentcloud/dsgc/v20190723/models.py +10 -10
- tencentcloud/ess/v20201111/ess_client.py +16 -1
- tencentcloud/ess/v20201111/models.py +63 -2
- tencentcloud/essbasic/v20210526/models.py +61 -0
- tencentcloud/faceid/v20180301/models.py +96 -4
- tencentcloud/mariadb/v20170312/models.py +47 -2
- tencentcloud/organization/v20210331/models.py +306 -0
- tencentcloud/organization/v20210331/organization_client.py +23 -0
- tencentcloud/privatedns/v20201028/models.py +6 -6
- tencentcloud/trocket/v20230308/models.py +15 -0
- tencentcloud/tsf/v20180326/errorcodes.py +18 -18
- tencentcloud/tsf/v20180326/models.py +4 -4
- {tencentcloud_sdk_python-3.0.1440.dist-info → tencentcloud_sdk_python-3.0.1442.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1440.dist-info → tencentcloud_sdk_python-3.0.1442.dist-info}/RECORD +25 -25
- {tencentcloud_sdk_python-3.0.1440.dist-info → tencentcloud_sdk_python-3.0.1442.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1440.dist-info → tencentcloud_sdk_python-3.0.1442.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1440.dist-info → tencentcloud_sdk_python-3.0.1442.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -13071,9 +13071,11 @@ class ScaleOutInstancesRequest(AbstractModel):
|
|
|
13071
13071
|
|
|
13072
13072
|
def __init__(self):
|
|
13073
13073
|
r"""
|
|
13074
|
-
:param _AutoScalingGroupId: 伸缩组ID
|
|
13074
|
+
:param _AutoScalingGroupId: 伸缩组ID。可以通过如下方式获取可用的伸缩组ID:
|
|
13075
|
+
<li>通过登录 [控制台](https://console.cloud.tencent.com/autoscaling/group) 查询伸缩组ID。</li>
|
|
13076
|
+
<li>通过调用接口 [DescribeAutoScalingGroups](https://cloud.tencent.com/document/api/377/20438) ,取返回信息中的 AutoScalingGroupId 获取伸缩组ID。</li>
|
|
13075
13077
|
:type AutoScalingGroupId: str
|
|
13076
|
-
:param _ScaleOutNumber:
|
|
13078
|
+
:param _ScaleOutNumber: 希望扩容的实例数量。该参数的静态取值范围是 [1,2000],同时该参数不得大于期望数与最大值的差值。例如伸缩组期望数为 20,最大值为 100,此时可取值范围为 [1,80]。
|
|
13077
13079
|
:type ScaleOutNumber: int
|
|
13078
13080
|
"""
|
|
13079
13081
|
self._AutoScalingGroupId = None
|
|
@@ -13081,7 +13083,9 @@ class ScaleOutInstancesRequest(AbstractModel):
|
|
|
13081
13083
|
|
|
13082
13084
|
@property
|
|
13083
13085
|
def AutoScalingGroupId(self):
|
|
13084
|
-
"""伸缩组ID
|
|
13086
|
+
"""伸缩组ID。可以通过如下方式获取可用的伸缩组ID:
|
|
13087
|
+
<li>通过登录 [控制台](https://console.cloud.tencent.com/autoscaling/group) 查询伸缩组ID。</li>
|
|
13088
|
+
<li>通过调用接口 [DescribeAutoScalingGroups](https://cloud.tencent.com/document/api/377/20438) ,取返回信息中的 AutoScalingGroupId 获取伸缩组ID。</li>
|
|
13085
13089
|
:rtype: str
|
|
13086
13090
|
"""
|
|
13087
13091
|
return self._AutoScalingGroupId
|
|
@@ -13092,7 +13096,7 @@ class ScaleOutInstancesRequest(AbstractModel):
|
|
|
13092
13096
|
|
|
13093
13097
|
@property
|
|
13094
13098
|
def ScaleOutNumber(self):
|
|
13095
|
-
"""
|
|
13099
|
+
"""希望扩容的实例数量。该参数的静态取值范围是 [1,2000],同时该参数不得大于期望数与最大值的差值。例如伸缩组期望数为 20,最大值为 100,此时可取值范围为 [1,80]。
|
|
13096
13100
|
:rtype: int
|
|
13097
13101
|
"""
|
|
13098
13102
|
return self._ScaleOutNumber
|
|
@@ -14092,7 +14096,7 @@ class StartInstanceRefreshRequest(AbstractModel):
|
|
|
14092
14096
|
|
|
14093
14097
|
def __init__(self):
|
|
14094
14098
|
r"""
|
|
14095
|
-
:param _AutoScalingGroupId: 伸缩组ID。
|
|
14099
|
+
:param _AutoScalingGroupId: 伸缩组ID。可通过登录 [控制台](https://console.cloud.tencent.com/autoscaling/group) 或调用接口 [DescribeAutoScalingGroups](https://cloud.tencent.com/document/api/377/20438) ,取返回信息中的 AutoScalingGroupId 获取伸缩组ID。
|
|
14096
14100
|
:type AutoScalingGroupId: str
|
|
14097
14101
|
:param _RefreshSettings: 刷新设置。
|
|
14098
14102
|
:type RefreshSettings: :class:`tencentcloud.autoscaling.v20180419.models.RefreshSettings`
|
|
@@ -14107,7 +14111,7 @@ class StartInstanceRefreshRequest(AbstractModel):
|
|
|
14107
14111
|
|
|
14108
14112
|
@property
|
|
14109
14113
|
def AutoScalingGroupId(self):
|
|
14110
|
-
"""伸缩组ID。
|
|
14114
|
+
"""伸缩组ID。可通过登录 [控制台](https://console.cloud.tencent.com/autoscaling/group) 或调用接口 [DescribeAutoScalingGroups](https://cloud.tencent.com/document/api/377/20438) ,取返回信息中的 AutoScalingGroupId 获取伸缩组ID。
|
|
14111
14115
|
:rtype: str
|
|
14112
14116
|
"""
|
|
14113
14117
|
return self._AutoScalingGroupId
|
|
@@ -948,6 +948,29 @@ class CfsClient(AbstractClient):
|
|
|
948
948
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
949
949
|
|
|
950
950
|
|
|
951
|
+
def DoDirectoryOperation(self, request):
|
|
952
|
+
"""文件系统目录操作接口
|
|
953
|
+
|
|
954
|
+
:param request: Request instance for DoDirectoryOperation.
|
|
955
|
+
:type request: :class:`tencentcloud.cfs.v20190719.models.DoDirectoryOperationRequest`
|
|
956
|
+
:rtype: :class:`tencentcloud.cfs.v20190719.models.DoDirectoryOperationResponse`
|
|
957
|
+
|
|
958
|
+
"""
|
|
959
|
+
try:
|
|
960
|
+
params = request._serialize()
|
|
961
|
+
headers = request.headers
|
|
962
|
+
body = self.call("DoDirectoryOperation", params, headers=headers)
|
|
963
|
+
response = json.loads(body)
|
|
964
|
+
model = models.DoDirectoryOperationResponse()
|
|
965
|
+
model._deserialize(response["Response"])
|
|
966
|
+
return model
|
|
967
|
+
except Exception as e:
|
|
968
|
+
if isinstance(e, TencentCloudSDKException):
|
|
969
|
+
raise
|
|
970
|
+
else:
|
|
971
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
972
|
+
|
|
973
|
+
|
|
951
974
|
def ModifyDataFlow(self, request):
|
|
952
975
|
"""修改数据流动相关参数
|
|
953
976
|
|
|
@@ -6226,6 +6226,130 @@ class DescribeUserQuotaResponse(AbstractModel):
|
|
|
6226
6226
|
self._RequestId = params.get("RequestId")
|
|
6227
6227
|
|
|
6228
6228
|
|
|
6229
|
+
class DoDirectoryOperationRequest(AbstractModel):
|
|
6230
|
+
"""DoDirectoryOperation请求参数结构体
|
|
6231
|
+
|
|
6232
|
+
"""
|
|
6233
|
+
|
|
6234
|
+
def __init__(self):
|
|
6235
|
+
r"""
|
|
6236
|
+
:param _FileSystemId: 文件系统Id
|
|
6237
|
+
:type FileSystemId: str
|
|
6238
|
+
:param _OpetationType: create:创建目录 check:确认目录是否存在
|
|
6239
|
+
:type OpetationType: str
|
|
6240
|
+
:param _DirectoryPath: 目录的绝对路径 默认递归创建(即如果目录中有子目录不存在,则先创建出对应子目录)
|
|
6241
|
+
:type DirectoryPath: str
|
|
6242
|
+
:param _Mode: 创建目录的权限,若不传,默认为0755 若Operation Type为check,此值无实际意义
|
|
6243
|
+
:type Mode: str
|
|
6244
|
+
"""
|
|
6245
|
+
self._FileSystemId = None
|
|
6246
|
+
self._OpetationType = None
|
|
6247
|
+
self._DirectoryPath = None
|
|
6248
|
+
self._Mode = None
|
|
6249
|
+
|
|
6250
|
+
@property
|
|
6251
|
+
def FileSystemId(self):
|
|
6252
|
+
"""文件系统Id
|
|
6253
|
+
:rtype: str
|
|
6254
|
+
"""
|
|
6255
|
+
return self._FileSystemId
|
|
6256
|
+
|
|
6257
|
+
@FileSystemId.setter
|
|
6258
|
+
def FileSystemId(self, FileSystemId):
|
|
6259
|
+
self._FileSystemId = FileSystemId
|
|
6260
|
+
|
|
6261
|
+
@property
|
|
6262
|
+
def OpetationType(self):
|
|
6263
|
+
"""create:创建目录 check:确认目录是否存在
|
|
6264
|
+
:rtype: str
|
|
6265
|
+
"""
|
|
6266
|
+
return self._OpetationType
|
|
6267
|
+
|
|
6268
|
+
@OpetationType.setter
|
|
6269
|
+
def OpetationType(self, OpetationType):
|
|
6270
|
+
self._OpetationType = OpetationType
|
|
6271
|
+
|
|
6272
|
+
@property
|
|
6273
|
+
def DirectoryPath(self):
|
|
6274
|
+
"""目录的绝对路径 默认递归创建(即如果目录中有子目录不存在,则先创建出对应子目录)
|
|
6275
|
+
:rtype: str
|
|
6276
|
+
"""
|
|
6277
|
+
return self._DirectoryPath
|
|
6278
|
+
|
|
6279
|
+
@DirectoryPath.setter
|
|
6280
|
+
def DirectoryPath(self, DirectoryPath):
|
|
6281
|
+
self._DirectoryPath = DirectoryPath
|
|
6282
|
+
|
|
6283
|
+
@property
|
|
6284
|
+
def Mode(self):
|
|
6285
|
+
"""创建目录的权限,若不传,默认为0755 若Operation Type为check,此值无实际意义
|
|
6286
|
+
:rtype: str
|
|
6287
|
+
"""
|
|
6288
|
+
return self._Mode
|
|
6289
|
+
|
|
6290
|
+
@Mode.setter
|
|
6291
|
+
def Mode(self, Mode):
|
|
6292
|
+
self._Mode = Mode
|
|
6293
|
+
|
|
6294
|
+
|
|
6295
|
+
def _deserialize(self, params):
|
|
6296
|
+
self._FileSystemId = params.get("FileSystemId")
|
|
6297
|
+
self._OpetationType = params.get("OpetationType")
|
|
6298
|
+
self._DirectoryPath = params.get("DirectoryPath")
|
|
6299
|
+
self._Mode = params.get("Mode")
|
|
6300
|
+
memeber_set = set(params.keys())
|
|
6301
|
+
for name, value in vars(self).items():
|
|
6302
|
+
property_name = name[1:]
|
|
6303
|
+
if property_name in memeber_set:
|
|
6304
|
+
memeber_set.remove(property_name)
|
|
6305
|
+
if len(memeber_set) > 0:
|
|
6306
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
6307
|
+
|
|
6308
|
+
|
|
6309
|
+
|
|
6310
|
+
class DoDirectoryOperationResponse(AbstractModel):
|
|
6311
|
+
"""DoDirectoryOperation返回参数结构体
|
|
6312
|
+
|
|
6313
|
+
"""
|
|
6314
|
+
|
|
6315
|
+
def __init__(self):
|
|
6316
|
+
r"""
|
|
6317
|
+
:param _Result: 1:成功 0:失败 创建目录的操作,1表示创建成功,0表示创建失败。 确认目录是否存在的操作,1表示目录存在,0表示目录不存在。 说明:创建目录操作若目录已存在,也会返回创建成功。
|
|
6318
|
+
:type Result: int
|
|
6319
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6320
|
+
:type RequestId: str
|
|
6321
|
+
"""
|
|
6322
|
+
self._Result = None
|
|
6323
|
+
self._RequestId = None
|
|
6324
|
+
|
|
6325
|
+
@property
|
|
6326
|
+
def Result(self):
|
|
6327
|
+
"""1:成功 0:失败 创建目录的操作,1表示创建成功,0表示创建失败。 确认目录是否存在的操作,1表示目录存在,0表示目录不存在。 说明:创建目录操作若目录已存在,也会返回创建成功。
|
|
6328
|
+
:rtype: int
|
|
6329
|
+
"""
|
|
6330
|
+
return self._Result
|
|
6331
|
+
|
|
6332
|
+
@Result.setter
|
|
6333
|
+
def Result(self, Result):
|
|
6334
|
+
self._Result = Result
|
|
6335
|
+
|
|
6336
|
+
@property
|
|
6337
|
+
def RequestId(self):
|
|
6338
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6339
|
+
:rtype: str
|
|
6340
|
+
"""
|
|
6341
|
+
return self._RequestId
|
|
6342
|
+
|
|
6343
|
+
@RequestId.setter
|
|
6344
|
+
def RequestId(self, RequestId):
|
|
6345
|
+
self._RequestId = RequestId
|
|
6346
|
+
|
|
6347
|
+
|
|
6348
|
+
def _deserialize(self, params):
|
|
6349
|
+
self._Result = params.get("Result")
|
|
6350
|
+
self._RequestId = params.get("RequestId")
|
|
6351
|
+
|
|
6352
|
+
|
|
6229
6353
|
class ExstraPerformanceInfo(AbstractModel):
|
|
6230
6354
|
"""购买完额外性能之后的值
|
|
6231
6355
|
|
|
@@ -2310,6 +2310,8 @@ class CheckRechargeKafkaServerRequest(AbstractModel):
|
|
|
2310
2310
|
:type KafkaType: int
|
|
2311
2311
|
:param _KafkaInstance: 腾讯云CKafka实例ID。
|
|
2312
2312
|
KafkaType为0时,KafkaInstance必填
|
|
2313
|
+
|
|
2314
|
+
- 通过 [获取实例列表信息](https://cloud.tencent.com/document/product/597/40835) 获取实例id。
|
|
2313
2315
|
:type KafkaInstance: str
|
|
2314
2316
|
:param _ServerAddr: 服务地址。
|
|
2315
2317
|
KafkaType为1时,ServerAddr必填
|
|
@@ -2340,6 +2342,8 @@ KafkaType为1时,ServerAddr必填
|
|
|
2340
2342
|
def KafkaInstance(self):
|
|
2341
2343
|
"""腾讯云CKafka实例ID。
|
|
2342
2344
|
KafkaType为0时,KafkaInstance必填
|
|
2345
|
+
|
|
2346
|
+
- 通过 [获取实例列表信息](https://cloud.tencent.com/document/product/597/40835) 获取实例id。
|
|
2343
2347
|
:rtype: str
|
|
2344
2348
|
"""
|
|
2345
2349
|
return self._KafkaInstance
|
|
@@ -2408,7 +2412,20 @@ class CheckRechargeKafkaServerResponse(AbstractModel):
|
|
|
2408
2412
|
|
|
2409
2413
|
def __init__(self):
|
|
2410
2414
|
r"""
|
|
2411
|
-
:param _Status: Kafka
|
|
2415
|
+
:param _Status: Kafka集群可访问状态。
|
|
2416
|
+
|
|
2417
|
+
- 0:可正常访问
|
|
2418
|
+
- -1:broker 连接失败
|
|
2419
|
+
- -2:sasl 鉴权失败
|
|
2420
|
+
- -3:ckafka 角色未授权
|
|
2421
|
+
- -4:topic 列表不存在
|
|
2422
|
+
- -5:topic 内暂无数据
|
|
2423
|
+
- -6:用户没有 ckafka 权限
|
|
2424
|
+
- -7:消费组已经存在
|
|
2425
|
+
- -8:kafka 实例不存在或已销毁
|
|
2426
|
+
- -9:Broker 列表为空
|
|
2427
|
+
- -10:Broker 地址格式不正确
|
|
2428
|
+
- -11:Broker 端口非整型
|
|
2412
2429
|
:type Status: int
|
|
2413
2430
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2414
2431
|
:type RequestId: str
|
|
@@ -2418,7 +2435,20 @@ class CheckRechargeKafkaServerResponse(AbstractModel):
|
|
|
2418
2435
|
|
|
2419
2436
|
@property
|
|
2420
2437
|
def Status(self):
|
|
2421
|
-
"""Kafka
|
|
2438
|
+
"""Kafka集群可访问状态。
|
|
2439
|
+
|
|
2440
|
+
- 0:可正常访问
|
|
2441
|
+
- -1:broker 连接失败
|
|
2442
|
+
- -2:sasl 鉴权失败
|
|
2443
|
+
- -3:ckafka 角色未授权
|
|
2444
|
+
- -4:topic 列表不存在
|
|
2445
|
+
- -5:topic 内暂无数据
|
|
2446
|
+
- -6:用户没有 ckafka 权限
|
|
2447
|
+
- -7:消费组已经存在
|
|
2448
|
+
- -8:kafka 实例不存在或已销毁
|
|
2449
|
+
- -9:Broker 列表为空
|
|
2450
|
+
- -10:Broker 地址格式不正确
|
|
2451
|
+
- -11:Broker 端口非整型
|
|
2422
2452
|
:rtype: int
|
|
2423
2453
|
"""
|
|
2424
2454
|
return self._Status
|
|
@@ -4377,7 +4407,12 @@ class ContainerWorkLoadInfo(AbstractModel):
|
|
|
4377
4407
|
|
|
4378
4408
|
def __init__(self):
|
|
4379
4409
|
r"""
|
|
4380
|
-
:param _Kind:
|
|
4410
|
+
:param _Kind: 工作负载的类型,支持
|
|
4411
|
+
- deployment
|
|
4412
|
+
- statefulset
|
|
4413
|
+
- daemonset
|
|
4414
|
+
- job
|
|
4415
|
+
- cronjob
|
|
4381
4416
|
:type Kind: str
|
|
4382
4417
|
:param _Name: 工作负载的名称
|
|
4383
4418
|
:type Name: str
|
|
@@ -4393,7 +4428,12 @@ class ContainerWorkLoadInfo(AbstractModel):
|
|
|
4393
4428
|
|
|
4394
4429
|
@property
|
|
4395
4430
|
def Kind(self):
|
|
4396
|
-
"""
|
|
4431
|
+
"""工作负载的类型,支持
|
|
4432
|
+
- deployment
|
|
4433
|
+
- statefulset
|
|
4434
|
+
- daemonset
|
|
4435
|
+
- job
|
|
4436
|
+
- cronjob
|
|
4397
4437
|
:rtype: str
|
|
4398
4438
|
"""
|
|
4399
4439
|
return self._Kind
|
|
@@ -11621,9 +11661,13 @@ class DeleteKafkaRechargeRequest(AbstractModel):
|
|
|
11621
11661
|
|
|
11622
11662
|
def __init__(self):
|
|
11623
11663
|
r"""
|
|
11624
|
-
:param _Id: Kafka导入配置
|
|
11664
|
+
:param _Id: Kafka导入配置Id。
|
|
11665
|
+
|
|
11666
|
+
- 通过 [创建Kafka数据订阅任务](https://cloud.tencent.com/document/product/614/94448)获取Kafka导入配置Id。
|
|
11667
|
+
- 通过 [获取Kafka数据订阅任务列表](https://cloud.tencent.com/document/product/614/94446)获取Kafka导入配置Id。
|
|
11625
11668
|
:type Id: str
|
|
11626
|
-
:param _TopicId: 导入CLS
|
|
11669
|
+
:param _TopicId: 导入CLS目标日志主题Id。
|
|
11670
|
+
- 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
|
|
11627
11671
|
:type TopicId: str
|
|
11628
11672
|
"""
|
|
11629
11673
|
self._Id = None
|
|
@@ -11631,7 +11675,10 @@ class DeleteKafkaRechargeRequest(AbstractModel):
|
|
|
11631
11675
|
|
|
11632
11676
|
@property
|
|
11633
11677
|
def Id(self):
|
|
11634
|
-
"""Kafka导入配置
|
|
11678
|
+
"""Kafka导入配置Id。
|
|
11679
|
+
|
|
11680
|
+
- 通过 [创建Kafka数据订阅任务](https://cloud.tencent.com/document/product/614/94448)获取Kafka导入配置Id。
|
|
11681
|
+
- 通过 [获取Kafka数据订阅任务列表](https://cloud.tencent.com/document/product/614/94446)获取Kafka导入配置Id。
|
|
11635
11682
|
:rtype: str
|
|
11636
11683
|
"""
|
|
11637
11684
|
return self._Id
|
|
@@ -11642,7 +11689,8 @@ class DeleteKafkaRechargeRequest(AbstractModel):
|
|
|
11642
11689
|
|
|
11643
11690
|
@property
|
|
11644
11691
|
def TopicId(self):
|
|
11645
|
-
"""导入CLS
|
|
11692
|
+
"""导入CLS目标日志主题Id。
|
|
11693
|
+
- 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
|
|
11646
11694
|
:rtype: str
|
|
11647
11695
|
"""
|
|
11648
11696
|
return self._TopicId
|
|
@@ -17423,12 +17471,17 @@ class EventLog(AbstractModel):
|
|
|
17423
17471
|
|
|
17424
17472
|
def __init__(self):
|
|
17425
17473
|
r"""
|
|
17426
|
-
:param _EventChannel: 事件通道,支持
|
|
17474
|
+
:param _EventChannel: 事件通道,支持
|
|
17475
|
+
- Application 应用日志
|
|
17476
|
+
- Security 安全日志
|
|
17477
|
+
- Setup 启动日志
|
|
17478
|
+
- System 系统日志
|
|
17479
|
+
- ALL 所有日志
|
|
17427
17480
|
|
|
17428
17481
|
:type EventChannel: str
|
|
17429
17482
|
:param _TimeType: 时间类型,1:用户自定义,2:当前时间
|
|
17430
17483
|
:type TimeType: int
|
|
17431
|
-
:param _Timestamp:
|
|
17484
|
+
:param _Timestamp: 时间,用户选择自定义时间类型时,需要指定时间,单位秒
|
|
17432
17485
|
:type Timestamp: int
|
|
17433
17486
|
:param _EventIDs: 事件ID过滤列表
|
|
17434
17487
|
|
|
@@ -17444,7 +17497,12 @@ class EventLog(AbstractModel):
|
|
|
17444
17497
|
|
|
17445
17498
|
@property
|
|
17446
17499
|
def EventChannel(self):
|
|
17447
|
-
"""事件通道,支持
|
|
17500
|
+
"""事件通道,支持
|
|
17501
|
+
- Application 应用日志
|
|
17502
|
+
- Security 安全日志
|
|
17503
|
+
- Setup 启动日志
|
|
17504
|
+
- System 系统日志
|
|
17505
|
+
- ALL 所有日志
|
|
17448
17506
|
|
|
17449
17507
|
:rtype: str
|
|
17450
17508
|
"""
|
|
@@ -17467,7 +17525,7 @@ class EventLog(AbstractModel):
|
|
|
17467
17525
|
|
|
17468
17526
|
@property
|
|
17469
17527
|
def Timestamp(self):
|
|
17470
|
-
"""
|
|
17528
|
+
"""时间,用户选择自定义时间类型时,需要指定时间,单位秒
|
|
17471
17529
|
:rtype: int
|
|
17472
17530
|
"""
|
|
17473
17531
|
return self._Timestamp
|
|
@@ -19361,9 +19419,9 @@ class KafkaRechargeInfo(AbstractModel):
|
|
|
19361
19419
|
:type Status: int
|
|
19362
19420
|
:param _Offset: 导入数据位置,-2:最早(默认),-1:最晚
|
|
19363
19421
|
:type Offset: int
|
|
19364
|
-
:param _CreateTime:
|
|
19422
|
+
:param _CreateTime: 创建时间。格式`YYYY-MM-DD HH:MM:SS`
|
|
19365
19423
|
:type CreateTime: str
|
|
19366
|
-
:param _UpdateTime:
|
|
19424
|
+
:param _UpdateTime: 更新时间。格式`YYYY-MM-DD HH:MM:SS`
|
|
19367
19425
|
:type UpdateTime: str
|
|
19368
19426
|
:param _LogRechargeRule: 日志导入规则
|
|
19369
19427
|
:type LogRechargeRule: :class:`tencentcloud.cls.v20201016.models.LogRechargeRuleInfo`
|
|
@@ -19518,7 +19576,7 @@ class KafkaRechargeInfo(AbstractModel):
|
|
|
19518
19576
|
|
|
19519
19577
|
@property
|
|
19520
19578
|
def CreateTime(self):
|
|
19521
|
-
"""
|
|
19579
|
+
"""创建时间。格式`YYYY-MM-DD HH:MM:SS`
|
|
19522
19580
|
:rtype: str
|
|
19523
19581
|
"""
|
|
19524
19582
|
return self._CreateTime
|
|
@@ -19529,7 +19587,7 @@ class KafkaRechargeInfo(AbstractModel):
|
|
|
19529
19587
|
|
|
19530
19588
|
@property
|
|
19531
19589
|
def UpdateTime(self):
|
|
19532
|
-
"""
|
|
19590
|
+
"""更新时间。格式`YYYY-MM-DD HH:MM:SS`
|
|
19533
19591
|
:rtype: str
|
|
19534
19592
|
"""
|
|
19535
19593
|
return self._UpdateTime
|
|
@@ -22195,17 +22253,19 @@ class ModifyConfigExtraRequest(AbstractModel):
|
|
|
22195
22253
|
def __init__(self):
|
|
22196
22254
|
r"""
|
|
22197
22255
|
:param _ConfigExtraId: 采集配置扩展信息id
|
|
22256
|
+
- 通过[获取特殊采集配置](https://cloud.tencent.com/document/api/614/71164)获取采集配置扩展信息id。
|
|
22198
22257
|
:type ConfigExtraId: str
|
|
22199
22258
|
:param _Name: 采集配置规程名称,最长63个字符,只能包含小写字符、数字及分隔符(“-”),且必须以小写字符开头,数字或小写字符结尾
|
|
22200
22259
|
:type Name: str
|
|
22201
22260
|
:param _TopicId: 日志主题id
|
|
22261
|
+
- 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
|
|
22202
22262
|
:type TopicId: str
|
|
22203
|
-
:param _HostFile:
|
|
22263
|
+
:param _HostFile: 自建k8s-节点文件配置信息,包括文件路径、名称及元数据相关信息,详细参考https://cloud.tencent.com/document/api/614/56471#HostFileInfo
|
|
22204
22264
|
:type HostFile: :class:`tencentcloud.cls.v20201016.models.HostFileInfo`
|
|
22205
22265
|
:param _ContainerFile: 采集配置标记。
|
|
22206
22266
|
- 目前只支持label_k8s,用于标记自建k8s集群使用的采集配置
|
|
22207
22267
|
:type ContainerFile: :class:`tencentcloud.cls.v20201016.models.ContainerFileInfo`
|
|
22208
|
-
:param _ContainerStdout:
|
|
22268
|
+
:param _ContainerStdout: 自建k8s-容器标准输出信息,包括容器、命名空间等,详细参考https://cloud.tencent.com/document/api/614/56471#ContainerStdoutInfo
|
|
22209
22269
|
:type ContainerStdout: :class:`tencentcloud.cls.v20201016.models.ContainerStdoutInfo`
|
|
22210
22270
|
:param _LogType: 采集的日志类型,默认为minimalist_log。支持以下类型:
|
|
22211
22271
|
- json_log代表:JSON-文件日志(详见[使用 JSON 提取模式采集日志](https://cloud.tencent.com/document/product/614/17419));
|
|
@@ -22228,17 +22288,24 @@ class ModifyConfigExtraRequest(AbstractModel):
|
|
|
22228
22288
|
- 取值参考:[使用组合解析提取模式采集日志
|
|
22229
22289
|
](https://cloud.tencent.com/document/product/614/61310)
|
|
22230
22290
|
:type UserDefineRule: str
|
|
22231
|
-
:param _Type:
|
|
22291
|
+
:param _Type: 容器场景,日志采集输入类型,支持以下三种类型
|
|
22292
|
+
- container_stdout 标准输出
|
|
22293
|
+
- container_file 容器文件
|
|
22294
|
+
- host_file 主机节点文件
|
|
22232
22295
|
:type Type: str
|
|
22233
22296
|
:param _GroupId: 机器组ID
|
|
22297
|
+
- 通过[获取机器组列表](https://cloud.tencent.com/document/api/614/56438)获取机器组Id。
|
|
22234
22298
|
:type GroupId: str
|
|
22235
22299
|
:param _ConfigFlag: 自建采集配置标
|
|
22236
22300
|
:type ConfigFlag: str
|
|
22237
22301
|
:param _LogsetId: 日志集ID
|
|
22302
|
+
- 通过[获取日志集列表](https://cloud.tencent.com/document/api/614/58624)获取日志集Id。
|
|
22238
22303
|
:type LogsetId: str
|
|
22239
|
-
:param _LogsetName:
|
|
22304
|
+
:param _LogsetName: 日志集名称
|
|
22305
|
+
- 通过[获取日志集列表](https://cloud.tencent.com/document/api/614/58624)获取日志集名称。
|
|
22240
22306
|
:type LogsetName: str
|
|
22241
|
-
:param _TopicName:
|
|
22307
|
+
:param _TopicName: 日志主题名称
|
|
22308
|
+
- 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题名称。
|
|
22242
22309
|
:type TopicName: str
|
|
22243
22310
|
:param _AdvancedConfig: 高级采集配置。 Json字符串, Key/Value定义为如下:
|
|
22244
22311
|
- ClsAgentFileTimeout(超时属性), 取值范围: 大于等于0的整数, 0为不超时
|
|
@@ -22270,6 +22337,7 @@ class ModifyConfigExtraRequest(AbstractModel):
|
|
|
22270
22337
|
@property
|
|
22271
22338
|
def ConfigExtraId(self):
|
|
22272
22339
|
"""采集配置扩展信息id
|
|
22340
|
+
- 通过[获取特殊采集配置](https://cloud.tencent.com/document/api/614/71164)获取采集配置扩展信息id。
|
|
22273
22341
|
:rtype: str
|
|
22274
22342
|
"""
|
|
22275
22343
|
return self._ConfigExtraId
|
|
@@ -22292,6 +22360,7 @@ class ModifyConfigExtraRequest(AbstractModel):
|
|
|
22292
22360
|
@property
|
|
22293
22361
|
def TopicId(self):
|
|
22294
22362
|
"""日志主题id
|
|
22363
|
+
- 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
|
|
22295
22364
|
:rtype: str
|
|
22296
22365
|
"""
|
|
22297
22366
|
return self._TopicId
|
|
@@ -22302,7 +22371,7 @@ class ModifyConfigExtraRequest(AbstractModel):
|
|
|
22302
22371
|
|
|
22303
22372
|
@property
|
|
22304
22373
|
def HostFile(self):
|
|
22305
|
-
"""
|
|
22374
|
+
"""自建k8s-节点文件配置信息,包括文件路径、名称及元数据相关信息,详细参考https://cloud.tencent.com/document/api/614/56471#HostFileInfo
|
|
22306
22375
|
:rtype: :class:`tencentcloud.cls.v20201016.models.HostFileInfo`
|
|
22307
22376
|
"""
|
|
22308
22377
|
return self._HostFile
|
|
@@ -22325,7 +22394,7 @@ class ModifyConfigExtraRequest(AbstractModel):
|
|
|
22325
22394
|
|
|
22326
22395
|
@property
|
|
22327
22396
|
def ContainerStdout(self):
|
|
22328
|
-
"""
|
|
22397
|
+
"""自建k8s-容器标准输出信息,包括容器、命名空间等,详细参考https://cloud.tencent.com/document/api/614/56471#ContainerStdoutInfo
|
|
22329
22398
|
:rtype: :class:`tencentcloud.cls.v20201016.models.ContainerStdoutInfo`
|
|
22330
22399
|
"""
|
|
22331
22400
|
return self._ContainerStdout
|
|
@@ -22406,7 +22475,10 @@ class ModifyConfigExtraRequest(AbstractModel):
|
|
|
22406
22475
|
|
|
22407
22476
|
@property
|
|
22408
22477
|
def Type(self):
|
|
22409
|
-
"""
|
|
22478
|
+
"""容器场景,日志采集输入类型,支持以下三种类型
|
|
22479
|
+
- container_stdout 标准输出
|
|
22480
|
+
- container_file 容器文件
|
|
22481
|
+
- host_file 主机节点文件
|
|
22410
22482
|
:rtype: str
|
|
22411
22483
|
"""
|
|
22412
22484
|
return self._Type
|
|
@@ -22418,6 +22490,7 @@ class ModifyConfigExtraRequest(AbstractModel):
|
|
|
22418
22490
|
@property
|
|
22419
22491
|
def GroupId(self):
|
|
22420
22492
|
"""机器组ID
|
|
22493
|
+
- 通过[获取机器组列表](https://cloud.tencent.com/document/api/614/56438)获取机器组Id。
|
|
22421
22494
|
:rtype: str
|
|
22422
22495
|
"""
|
|
22423
22496
|
return self._GroupId
|
|
@@ -22440,6 +22513,7 @@ class ModifyConfigExtraRequest(AbstractModel):
|
|
|
22440
22513
|
@property
|
|
22441
22514
|
def LogsetId(self):
|
|
22442
22515
|
"""日志集ID
|
|
22516
|
+
- 通过[获取日志集列表](https://cloud.tencent.com/document/api/614/58624)获取日志集Id。
|
|
22443
22517
|
:rtype: str
|
|
22444
22518
|
"""
|
|
22445
22519
|
return self._LogsetId
|
|
@@ -22450,7 +22524,8 @@ class ModifyConfigExtraRequest(AbstractModel):
|
|
|
22450
22524
|
|
|
22451
22525
|
@property
|
|
22452
22526
|
def LogsetName(self):
|
|
22453
|
-
"""
|
|
22527
|
+
"""日志集名称
|
|
22528
|
+
- 通过[获取日志集列表](https://cloud.tencent.com/document/api/614/58624)获取日志集名称。
|
|
22454
22529
|
:rtype: str
|
|
22455
22530
|
"""
|
|
22456
22531
|
return self._LogsetName
|
|
@@ -22461,7 +22536,8 @@ class ModifyConfigExtraRequest(AbstractModel):
|
|
|
22461
22536
|
|
|
22462
22537
|
@property
|
|
22463
22538
|
def TopicName(self):
|
|
22464
|
-
"""
|
|
22539
|
+
"""日志主题名称
|
|
22540
|
+
- 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题名称。
|
|
22465
22541
|
:rtype: str
|
|
22466
22542
|
"""
|
|
22467
22543
|
return self._TopicName
|
|
@@ -26592,6 +26668,7 @@ class PreviewKafkaRechargeRequest(AbstractModel):
|
|
|
26592
26668
|
:param _Offset: 导入数据位置,-2:最早;-1:最晚。
|
|
26593
26669
|
:type Offset: int
|
|
26594
26670
|
:param _KafkaInstance: 腾讯云CKafka实例ID,当KafkaType为0时参数KafkaInstance有效且必填。
|
|
26671
|
+
- 通过 [获取实例列表信息](https://cloud.tencent.com/document/product/597/40835) 获取实例id。
|
|
26595
26672
|
:type KafkaInstance: str
|
|
26596
26673
|
:param _ServerAddr: 服务地址。
|
|
26597
26674
|
KafkaType为1时ServerAddr必填。
|
|
@@ -26602,7 +26679,9 @@ KafkaType为1时有效。
|
|
|
26602
26679
|
:param _Protocol: 加密访问协议。
|
|
26603
26680
|
KafkaType为1并且IsEncryptionAddr为true时Protocol必填。
|
|
26604
26681
|
:type Protocol: :class:`tencentcloud.cls.v20201016.models.KafkaProtocolInfo`
|
|
26605
|
-
:param _ConsumerGroupName: 用户Kafka
|
|
26682
|
+
:param _ConsumerGroupName: 用户Kafka消费组。
|
|
26683
|
+
|
|
26684
|
+
- 消费组是 Kafka 提供的可扩展且具有容错性的消费者机制,一个消费组中存在多个消费者,组内的所有消费者共同消费订阅 Topic 中的消息。一个消费者可同时消费多个 Partition,但一个 Partition 只能被消费组内的一个消费者消费。
|
|
26606
26685
|
:type ConsumerGroupName: str
|
|
26607
26686
|
:param _LogRechargeRule: 日志导入规则
|
|
26608
26687
|
:type LogRechargeRule: :class:`tencentcloud.cls.v20201016.models.LogRechargeRuleInfo`
|
|
@@ -26666,6 +26745,7 @@ KafkaType为1并且IsEncryptionAddr为true时Protocol必填。
|
|
|
26666
26745
|
@property
|
|
26667
26746
|
def KafkaInstance(self):
|
|
26668
26747
|
"""腾讯云CKafka实例ID,当KafkaType为0时参数KafkaInstance有效且必填。
|
|
26748
|
+
- 通过 [获取实例列表信息](https://cloud.tencent.com/document/product/597/40835) 获取实例id。
|
|
26669
26749
|
:rtype: str
|
|
26670
26750
|
"""
|
|
26671
26751
|
return self._KafkaInstance
|
|
@@ -26712,7 +26792,9 @@ KafkaType为1并且IsEncryptionAddr为true时Protocol必填。
|
|
|
26712
26792
|
|
|
26713
26793
|
@property
|
|
26714
26794
|
def ConsumerGroupName(self):
|
|
26715
|
-
"""用户Kafka
|
|
26795
|
+
"""用户Kafka消费组。
|
|
26796
|
+
|
|
26797
|
+
- 消费组是 Kafka 提供的可扩展且具有容错性的消费者机制,一个消费组中存在多个消费者,组内的所有消费者共同消费订阅 Topic 中的消息。一个消费者可同时消费多个 Partition,但一个 Partition 只能被消费组内的一个消费者消费。
|
|
26716
26798
|
:rtype: str
|
|
26717
26799
|
"""
|
|
26718
26800
|
return self._ConsumerGroupName
|
|
@@ -30289,11 +30371,14 @@ class UploadLogRequest(AbstractModel):
|
|
|
30289
30371
|
|
|
30290
30372
|
def __init__(self):
|
|
30291
30373
|
r"""
|
|
30292
|
-
:param _TopicId:
|
|
30374
|
+
:param _TopicId: 日志主题id
|
|
30375
|
+
- 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
|
|
30293
30376
|
:type TopicId: str
|
|
30294
30377
|
:param _HashKey: 该参数已废弃,请勿使用
|
|
30295
30378
|
:type HashKey: str
|
|
30296
|
-
:param _CompressType:
|
|
30379
|
+
:param _CompressType: 压缩方法,目前支持
|
|
30380
|
+
- lz4
|
|
30381
|
+
- zstd
|
|
30297
30382
|
:type CompressType: str
|
|
30298
30383
|
"""
|
|
30299
30384
|
self._TopicId = None
|
|
@@ -30302,7 +30387,8 @@ class UploadLogRequest(AbstractModel):
|
|
|
30302
30387
|
|
|
30303
30388
|
@property
|
|
30304
30389
|
def TopicId(self):
|
|
30305
|
-
"""
|
|
30390
|
+
"""日志主题id
|
|
30391
|
+
- 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
|
|
30306
30392
|
:rtype: str
|
|
30307
30393
|
"""
|
|
30308
30394
|
return self._TopicId
|
|
@@ -30328,7 +30414,9 @@ class UploadLogRequest(AbstractModel):
|
|
|
30328
30414
|
|
|
30329
30415
|
@property
|
|
30330
30416
|
def CompressType(self):
|
|
30331
|
-
"""
|
|
30417
|
+
"""压缩方法,目前支持
|
|
30418
|
+
- lz4
|
|
30419
|
+
- zstd
|
|
30332
30420
|
:rtype: str
|
|
30333
30421
|
"""
|
|
30334
30422
|
return self._CompressType
|