tencentcloud-sdk-python-cls 3.1.160__tar.gz → 3.1.162__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 (17) hide show
  1. {tencentcloud_sdk_python_cls-3.1.160 → tencentcloud_sdk_python_cls-3.1.162}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_cls-3.1.160 → tencentcloud_sdk_python_cls-3.1.162}/setup.py +1 -1
  3. {tencentcloud_sdk_python_cls-3.1.160 → tencentcloud_sdk_python_cls-3.1.162}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_cls-3.1.160 → tencentcloud_sdk_python_cls-3.1.162}/tencentcloud/cls/v20201016/models.py +15 -0
  5. {tencentcloud_sdk_python_cls-3.1.160 → tencentcloud_sdk_python_cls-3.1.162}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_cls-3.1.162/tencentcloud_sdk_python_cls.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_cls-3.1.160/tencentcloud_sdk_python_cls.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_cls-3.1.160 → tencentcloud_sdk_python_cls-3.1.162}/README.rst +0 -0
  9. {tencentcloud_sdk_python_cls-3.1.160 → tencentcloud_sdk_python_cls-3.1.162}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_cls-3.1.160 → tencentcloud_sdk_python_cls-3.1.162}/tencentcloud/cls/__init__.py +0 -0
  11. {tencentcloud_sdk_python_cls-3.1.160 → tencentcloud_sdk_python_cls-3.1.162}/tencentcloud/cls/v20201016/__init__.py +0 -0
  12. {tencentcloud_sdk_python_cls-3.1.160 → tencentcloud_sdk_python_cls-3.1.162}/tencentcloud/cls/v20201016/cls_client.py +0 -0
  13. {tencentcloud_sdk_python_cls-3.1.160 → tencentcloud_sdk_python_cls-3.1.162}/tencentcloud/cls/v20201016/cls_client_async.py +0 -0
  14. {tencentcloud_sdk_python_cls-3.1.160 → tencentcloud_sdk_python_cls-3.1.162}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_cls-3.1.160 → tencentcloud_sdk_python_cls-3.1.162}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_cls-3.1.160 → tencentcloud_sdk_python_cls-3.1.162}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_cls-3.1.160 → tencentcloud_sdk_python_cls-3.1.162}/tencentcloud_sdk_python_cls.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-cls
3
- Version: 3.1.160
3
+ Version: 3.1.162
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
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.160
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.162
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -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.1.160,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.162,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Cls SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.160'
17
+ __version__ = '3.1.162'
@@ -32339,6 +32339,8 @@ class ExportInfo(AbstractModel):
32339
32339
  :type SyntaxRule: int
32340
32340
  :param _DerivedFields: <p>导出字段</p>
32341
32341
  :type DerivedFields: list of str
32342
+ :param _CreateTimestamp: <p>日志导出创建时间,毫秒时间戳</p><p>单位:ms</p>
32343
+ :type CreateTimestamp: int
32342
32344
  """
32343
32345
  self._TopicId = None
32344
32346
  self._ExportId = None
@@ -32355,6 +32357,7 @@ class ExportInfo(AbstractModel):
32355
32357
  self._CreateTime = None
32356
32358
  self._SyntaxRule = None
32357
32359
  self._DerivedFields = None
32360
+ self._CreateTimestamp = None
32358
32361
 
32359
32362
  @property
32360
32363
  def TopicId(self):
@@ -32521,6 +32524,17 @@ class ExportInfo(AbstractModel):
32521
32524
  def DerivedFields(self, DerivedFields):
32522
32525
  self._DerivedFields = DerivedFields
32523
32526
 
32527
+ @property
32528
+ def CreateTimestamp(self):
32529
+ r"""<p>日志导出创建时间,毫秒时间戳</p><p>单位:ms</p>
32530
+ :rtype: int
32531
+ """
32532
+ return self._CreateTimestamp
32533
+
32534
+ @CreateTimestamp.setter
32535
+ def CreateTimestamp(self, CreateTimestamp):
32536
+ self._CreateTimestamp = CreateTimestamp
32537
+
32524
32538
 
32525
32539
  def _deserialize(self, params):
32526
32540
  self._TopicId = params.get("TopicId")
@@ -32538,6 +32552,7 @@ class ExportInfo(AbstractModel):
32538
32552
  self._CreateTime = params.get("CreateTime")
32539
32553
  self._SyntaxRule = params.get("SyntaxRule")
32540
32554
  self._DerivedFields = params.get("DerivedFields")
32555
+ self._CreateTimestamp = params.get("CreateTimestamp")
32541
32556
  memeber_set = set(params.keys())
32542
32557
  for name, value in vars(self).items():
32543
32558
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-cls
3
- Version: 3.1.160
3
+ Version: 3.1.162
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
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.160
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.162
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.162
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.160