tencentcloud-sdk-python-cls 3.0.867__tar.gz → 3.0.869__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.867 → tencentcloud-sdk-python-cls-3.0.869}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cls-3.0.867 → tencentcloud-sdk-python-cls-3.0.869}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.867 → tencentcloud-sdk-python-cls-3.0.869}/tencentcloud/cls/v20201016/models.py +18 -0
- {tencentcloud-sdk-python-cls-3.0.867 → tencentcloud-sdk-python-cls-3.0.869}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cls-3.0.867 → tencentcloud-sdk-python-cls-3.0.869}/README.rst +0 -0
- {tencentcloud-sdk-python-cls-3.0.867 → tencentcloud-sdk-python-cls-3.0.869}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cls-3.0.867 → tencentcloud-sdk-python-cls-3.0.869}/setup.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.867 → tencentcloud-sdk-python-cls-3.0.869}/tencentcloud/cls/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.867 → tencentcloud-sdk-python-cls-3.0.869}/tencentcloud/cls/v20201016/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.867 → tencentcloud-sdk-python-cls-3.0.869}/tencentcloud/cls/v20201016/cls_client.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.867 → tencentcloud-sdk-python-cls-3.0.869}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.867 → tencentcloud-sdk-python-cls-3.0.869}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.867 → tencentcloud-sdk-python-cls-3.0.869}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.867 → tencentcloud-sdk-python-cls-3.0.869}/tencentcloud_sdk_python_cls.egg-info/top_level.txt +0 -0
|
@@ -2027,6 +2027,11 @@ class CreateTopicRequest(AbstractModel):
|
|
|
2027
2027
|
:type StorageType: str
|
|
2028
2028
|
:param Period: 生命周期,单位天,标准存储取值范围1\~3600,低频存储取值范围7\~3600天。取值为3640时代表永久保存
|
|
2029
2029
|
:type Period: int
|
|
2030
|
+
:param Describes: 日志主题描述
|
|
2031
|
+
:type Describes: str
|
|
2032
|
+
:param HotPeriod: 0:关闭日志沉降。
|
|
2033
|
+
非0:开启日志沉降后标准存储的天数。HotPeriod需要大于等于7,且小于Period。仅在StorageType为 hot 时生效
|
|
2034
|
+
:type HotPeriod: int
|
|
2030
2035
|
"""
|
|
2031
2036
|
self.LogsetId = None
|
|
2032
2037
|
self.TopicName = None
|
|
@@ -2036,6 +2041,8 @@ class CreateTopicRequest(AbstractModel):
|
|
|
2036
2041
|
self.MaxSplitPartitions = None
|
|
2037
2042
|
self.StorageType = None
|
|
2038
2043
|
self.Period = None
|
|
2044
|
+
self.Describes = None
|
|
2045
|
+
self.HotPeriod = None
|
|
2039
2046
|
|
|
2040
2047
|
|
|
2041
2048
|
def _deserialize(self, params):
|
|
@@ -2052,6 +2059,8 @@ class CreateTopicRequest(AbstractModel):
|
|
|
2052
2059
|
self.MaxSplitPartitions = params.get("MaxSplitPartitions")
|
|
2053
2060
|
self.StorageType = params.get("StorageType")
|
|
2054
2061
|
self.Period = params.get("Period")
|
|
2062
|
+
self.Describes = params.get("Describes")
|
|
2063
|
+
self.HotPeriod = params.get("HotPeriod")
|
|
2055
2064
|
memeber_set = set(params.keys())
|
|
2056
2065
|
for name, value in vars(self).items():
|
|
2057
2066
|
if name in memeber_set:
|
|
@@ -5859,6 +5868,11 @@ class ModifyTopicRequest(AbstractModel):
|
|
|
5859
5868
|
:type MaxSplitPartitions: int
|
|
5860
5869
|
:param Period: 生命周期,单位天,标准存储取值范围1\~3600,低频存储取值范围7\~3600。取值为3640时代表永久保存
|
|
5861
5870
|
:type Period: int
|
|
5871
|
+
:param Describes: 日志主题描述
|
|
5872
|
+
:type Describes: str
|
|
5873
|
+
:param HotPeriod: 0:关闭日志沉降。
|
|
5874
|
+
非0:开启日志沉降后标准存储的天数。HotPeriod需要大于等于7,且小于Period。仅在StorageType为 hot 时生效
|
|
5875
|
+
:type HotPeriod: int
|
|
5862
5876
|
"""
|
|
5863
5877
|
self.TopicId = None
|
|
5864
5878
|
self.TopicName = None
|
|
@@ -5867,6 +5881,8 @@ class ModifyTopicRequest(AbstractModel):
|
|
|
5867
5881
|
self.AutoSplit = None
|
|
5868
5882
|
self.MaxSplitPartitions = None
|
|
5869
5883
|
self.Period = None
|
|
5884
|
+
self.Describes = None
|
|
5885
|
+
self.HotPeriod = None
|
|
5870
5886
|
|
|
5871
5887
|
|
|
5872
5888
|
def _deserialize(self, params):
|
|
@@ -5882,6 +5898,8 @@ class ModifyTopicRequest(AbstractModel):
|
|
|
5882
5898
|
self.AutoSplit = params.get("AutoSplit")
|
|
5883
5899
|
self.MaxSplitPartitions = params.get("MaxSplitPartitions")
|
|
5884
5900
|
self.Period = params.get("Period")
|
|
5901
|
+
self.Describes = params.get("Describes")
|
|
5902
|
+
self.HotPeriod = params.get("HotPeriod")
|
|
5885
5903
|
memeber_set = set(params.keys())
|
|
5886
5904
|
for name, value in vars(self).items():
|
|
5887
5905
|
if name in memeber_set:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|