tencentcloud-sdk-python-cls 3.0.1394__tar.gz → 3.0.1405__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.
Files changed (16) hide show
  1. {tencentcloud-sdk-python-cls-3.0.1394 → tencentcloud-sdk-python-cls-3.0.1405}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-cls-3.0.1394 → tencentcloud-sdk-python-cls-3.0.1405}/setup.py +1 -1
  3. {tencentcloud-sdk-python-cls-3.0.1394 → tencentcloud-sdk-python-cls-3.0.1405}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-cls-3.0.1394 → tencentcloud-sdk-python-cls-3.0.1405}/tencentcloud/cls/v20201016/models.py +15 -0
  5. {tencentcloud-sdk-python-cls-3.0.1394 → tencentcloud-sdk-python-cls-3.0.1405}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-cls-3.0.1405/tencentcloud_sdk_python_cls.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-cls-3.0.1394/tencentcloud_sdk_python_cls.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-cls-3.0.1394 → tencentcloud-sdk-python-cls-3.0.1405}/README.rst +0 -0
  9. {tencentcloud-sdk-python-cls-3.0.1394 → tencentcloud-sdk-python-cls-3.0.1405}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-cls-3.0.1394 → tencentcloud-sdk-python-cls-3.0.1405}/tencentcloud/cls/__init__.py +0 -0
  11. {tencentcloud-sdk-python-cls-3.0.1394 → tencentcloud-sdk-python-cls-3.0.1405}/tencentcloud/cls/v20201016/__init__.py +0 -0
  12. {tencentcloud-sdk-python-cls-3.0.1394 → tencentcloud-sdk-python-cls-3.0.1405}/tencentcloud/cls/v20201016/cls_client.py +0 -0
  13. {tencentcloud-sdk-python-cls-3.0.1394 → tencentcloud-sdk-python-cls-3.0.1405}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-cls-3.0.1394 → tencentcloud-sdk-python-cls-3.0.1405}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-cls-3.0.1394 → tencentcloud-sdk-python-cls-3.0.1405}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-cls-3.0.1394 → tencentcloud-sdk-python-cls-3.0.1405}/tencentcloud_sdk_python_cls.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-cls
3
- Version: 3.0.1394
3
+ Version: 3.0.1405
4
4
  Summary: Tencent Cloud Cls SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -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.1394"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1405"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Cls SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1394'
17
+ __version__ = '3.0.1405'
@@ -8107,9 +8107,12 @@ class CreateLogsetRequest(AbstractModel):
8107
8107
  :type LogsetName: str
8108
8108
  :param _Tags: 标签描述列表。最大支持10个标签键值对,并且不能有重复的键值对
8109
8109
  :type Tags: list of Tag
8110
+ :param _LogsetId: 日志集ID,格式为:用户自定义部分-用户appid,用户自定义部分仅支持小写字母、数字和-,且不能以-开头和结尾,长度为3至40字符,尾部需要使用-拼接用户appid
8111
+ :type LogsetId: str
8110
8112
  """
8111
8113
  self._LogsetName = None
8112
8114
  self._Tags = None
8115
+ self._LogsetId = None
8113
8116
 
8114
8117
  @property
8115
8118
  def LogsetName(self):
@@ -8133,6 +8136,17 @@ class CreateLogsetRequest(AbstractModel):
8133
8136
  def Tags(self, Tags):
8134
8137
  self._Tags = Tags
8135
8138
 
8139
+ @property
8140
+ def LogsetId(self):
8141
+ """日志集ID,格式为:用户自定义部分-用户appid,用户自定义部分仅支持小写字母、数字和-,且不能以-开头和结尾,长度为3至40字符,尾部需要使用-拼接用户appid
8142
+ :rtype: str
8143
+ """
8144
+ return self._LogsetId
8145
+
8146
+ @LogsetId.setter
8147
+ def LogsetId(self, LogsetId):
8148
+ self._LogsetId = LogsetId
8149
+
8136
8150
 
8137
8151
  def _deserialize(self, params):
8138
8152
  self._LogsetName = params.get("LogsetName")
@@ -8142,6 +8156,7 @@ class CreateLogsetRequest(AbstractModel):
8142
8156
  obj = Tag()
8143
8157
  obj._deserialize(item)
8144
8158
  self._Tags.append(obj)
8159
+ self._LogsetId = params.get("LogsetId")
8145
8160
  memeber_set = set(params.keys())
8146
8161
  for name, value in vars(self).items():
8147
8162
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-cls
3
- Version: 3.0.1394
3
+ Version: 3.0.1405
4
4
  Summary: Tencent Cloud Cls SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1405
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1394