tencentcloud-sdk-python-cls 3.0.1314__tar.gz → 3.0.1316__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {tencentcloud-sdk-python-cls-3.0.1314 → tencentcloud-sdk-python-cls-3.0.1316}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cls-3.0.1314 → tencentcloud-sdk-python-cls-3.0.1316}/setup.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.1314 → tencentcloud-sdk-python-cls-3.0.1316}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.1314 → tencentcloud-sdk-python-cls-3.0.1316}/tencentcloud/cls/v20201016/models.py +25 -4
- {tencentcloud-sdk-python-cls-3.0.1314 → tencentcloud-sdk-python-cls-3.0.1316}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cls-3.0.1316/tencentcloud_sdk_python_cls.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cls-3.0.1314/tencentcloud_sdk_python_cls.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cls-3.0.1314 → tencentcloud-sdk-python-cls-3.0.1316}/README.rst +0 -0
- {tencentcloud-sdk-python-cls-3.0.1314 → tencentcloud-sdk-python-cls-3.0.1316}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cls-3.0.1314 → tencentcloud-sdk-python-cls-3.0.1316}/tencentcloud/cls/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1314 → tencentcloud-sdk-python-cls-3.0.1316}/tencentcloud/cls/v20201016/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1314 → tencentcloud-sdk-python-cls-3.0.1316}/tencentcloud/cls/v20201016/cls_client.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1314 → tencentcloud-sdk-python-cls-3.0.1316}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1314 → tencentcloud-sdk-python-cls-3.0.1316}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.1314 → tencentcloud-sdk-python-cls-3.0.1316}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.1314 → tencentcloud-sdk-python-cls-3.0.1316}/tencentcloud_sdk_python_cls.egg-info/top_level.txt +0 -0
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-cls',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1316"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cls SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -9266,8 +9266,9 @@ class CreateTopicRequest(AbstractModel):
|
|
|
9266
9266
|
:type MaxSplitPartitions: int
|
|
9267
9267
|
:param _StorageType: 日志主题的存储类型,可选值 hot(标准存储),cold(低频存储);默认为hot。
|
|
9268
9268
|
:type StorageType: str
|
|
9269
|
-
:param _Period:
|
|
9270
|
-
|
|
9269
|
+
:param _Period: 存储时间,单位天。
|
|
9270
|
+
- 日志接入标准存储时,支持1至3600天,值为3640时代表永久保存。
|
|
9271
|
+
- 日志接入低频存储时,支持7至3600天,值为3640时代表永久保存。
|
|
9271
9272
|
:type Period: int
|
|
9272
9273
|
:param _Describes: 日志主题描述
|
|
9273
9274
|
:type Describes: str
|
|
@@ -9275,6 +9276,10 @@ class CreateTopicRequest(AbstractModel):
|
|
|
9275
9276
|
非0:开启日志沉降后标准存储的天数,HotPeriod需要大于等于7,且小于Period。
|
|
9276
9277
|
仅在StorageType为 hot 时生效。
|
|
9277
9278
|
:type HotPeriod: int
|
|
9279
|
+
:param _TopicId: 主题自定义ID,格式为:用户自定义部分-APPID。未填写该参数时将自动生成ID。
|
|
9280
|
+
- 用户自定义部分仅支持小写字母、数字和-,且不能以-开头和结尾,长度为3至40字符
|
|
9281
|
+
- APPID可在https://console.cloud.tencent.com/developer页面查询
|
|
9282
|
+
:type TopicId: str
|
|
9278
9283
|
:param _IsWebTracking: 免鉴权开关。 false:关闭; true:开启。默认为false。
|
|
9279
9284
|
开启后将支持指定操作匿名访问该日志主题。详情请参见[日志主题](https://cloud.tencent.com/document/product/614/41035)。
|
|
9280
9285
|
:type IsWebTracking: bool
|
|
@@ -9291,6 +9296,7 @@ class CreateTopicRequest(AbstractModel):
|
|
|
9291
9296
|
self._Period = None
|
|
9292
9297
|
self._Describes = None
|
|
9293
9298
|
self._HotPeriod = None
|
|
9299
|
+
self._TopicId = None
|
|
9294
9300
|
self._IsWebTracking = None
|
|
9295
9301
|
self._Extends = None
|
|
9296
9302
|
|
|
@@ -9373,8 +9379,9 @@ class CreateTopicRequest(AbstractModel):
|
|
|
9373
9379
|
|
|
9374
9380
|
@property
|
|
9375
9381
|
def Period(self):
|
|
9376
|
-
"""
|
|
9377
|
-
|
|
9382
|
+
"""存储时间,单位天。
|
|
9383
|
+
- 日志接入标准存储时,支持1至3600天,值为3640时代表永久保存。
|
|
9384
|
+
- 日志接入低频存储时,支持7至3600天,值为3640时代表永久保存。
|
|
9378
9385
|
:rtype: int
|
|
9379
9386
|
"""
|
|
9380
9387
|
return self._Period
|
|
@@ -9407,6 +9414,19 @@ class CreateTopicRequest(AbstractModel):
|
|
|
9407
9414
|
def HotPeriod(self, HotPeriod):
|
|
9408
9415
|
self._HotPeriod = HotPeriod
|
|
9409
9416
|
|
|
9417
|
+
@property
|
|
9418
|
+
def TopicId(self):
|
|
9419
|
+
"""主题自定义ID,格式为:用户自定义部分-APPID。未填写该参数时将自动生成ID。
|
|
9420
|
+
- 用户自定义部分仅支持小写字母、数字和-,且不能以-开头和结尾,长度为3至40字符
|
|
9421
|
+
- APPID可在https://console.cloud.tencent.com/developer页面查询
|
|
9422
|
+
:rtype: str
|
|
9423
|
+
"""
|
|
9424
|
+
return self._TopicId
|
|
9425
|
+
|
|
9426
|
+
@TopicId.setter
|
|
9427
|
+
def TopicId(self, TopicId):
|
|
9428
|
+
self._TopicId = TopicId
|
|
9429
|
+
|
|
9410
9430
|
@property
|
|
9411
9431
|
def IsWebTracking(self):
|
|
9412
9432
|
"""免鉴权开关。 false:关闭; true:开启。默认为false。
|
|
@@ -9447,6 +9467,7 @@ class CreateTopicRequest(AbstractModel):
|
|
|
9447
9467
|
self._Period = params.get("Period")
|
|
9448
9468
|
self._Describes = params.get("Describes")
|
|
9449
9469
|
self._HotPeriod = params.get("HotPeriod")
|
|
9470
|
+
self._TopicId = params.get("TopicId")
|
|
9450
9471
|
self._IsWebTracking = params.get("IsWebTracking")
|
|
9451
9472
|
if params.get("Extends") is not None:
|
|
9452
9473
|
self._Extends = TopicExtendInfo()
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1316
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1314
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|