alibabacloud-sls20201230 5.4.0__tar.gz → 5.5.0__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.
- {alibabacloud_sls20201230-5.4.0 → alibabacloud_sls20201230-5.5.0}/ChangeLog.md +16 -0
- {alibabacloud_sls20201230-5.4.0 → alibabacloud_sls20201230-5.5.0}/PKG-INFO +2 -2
- {alibabacloud_sls20201230-5.4.0 → alibabacloud_sls20201230-5.5.0}/README-CN.md +1 -1
- {alibabacloud_sls20201230-5.4.0 → alibabacloud_sls20201230-5.5.0}/README.md +1 -1
- alibabacloud_sls20201230-5.5.0/alibabacloud_sls20201230/__init__.py +1 -0
- {alibabacloud_sls20201230-5.4.0 → alibabacloud_sls20201230-5.5.0}/alibabacloud_sls20201230/client.py +1086 -346
- {alibabacloud_sls20201230-5.4.0 → alibabacloud_sls20201230-5.5.0}/alibabacloud_sls20201230/models.py +847 -628
- {alibabacloud_sls20201230-5.4.0 → alibabacloud_sls20201230-5.5.0}/alibabacloud_sls20201230.egg-info/PKG-INFO +2 -2
- alibabacloud_sls20201230-5.5.0/alibabacloud_sls20201230.egg-info/requires.txt +4 -0
- {alibabacloud_sls20201230-5.4.0 → alibabacloud_sls20201230-5.5.0}/setup.py +4 -4
- alibabacloud_sls20201230-5.4.0/alibabacloud_sls20201230/__init__.py +0 -1
- alibabacloud_sls20201230-5.4.0/alibabacloud_sls20201230.egg-info/requires.txt +0 -4
- {alibabacloud_sls20201230-5.4.0 → alibabacloud_sls20201230-5.5.0}/LICENSE +0 -0
- {alibabacloud_sls20201230-5.4.0 → alibabacloud_sls20201230-5.5.0}/MANIFEST.in +0 -0
- {alibabacloud_sls20201230-5.4.0 → alibabacloud_sls20201230-5.5.0}/alibabacloud_sls20201230.egg-info/SOURCES.txt +0 -0
- {alibabacloud_sls20201230-5.4.0 → alibabacloud_sls20201230-5.5.0}/alibabacloud_sls20201230.egg-info/dependency_links.txt +0 -0
- {alibabacloud_sls20201230-5.4.0 → alibabacloud_sls20201230-5.5.0}/alibabacloud_sls20201230.egg-info/top_level.txt +0 -0
- {alibabacloud_sls20201230-5.4.0 → alibabacloud_sls20201230-5.5.0}/setup.cfg +0 -0
@@ -1,3 +1,19 @@
|
|
1
|
+
2024-09-02 Version: 5.4.1
|
2
|
+
- Update API CreateIndex: update param body.
|
3
|
+
- Update API GetIndex: update response param.
|
4
|
+
- Update API UpdateIndex: update param body.
|
5
|
+
|
6
|
+
|
7
|
+
2024-08-29 Version: 5.4.0
|
8
|
+
- Support API CreateMetricStore.
|
9
|
+
- Support API DeleteMetricStore.
|
10
|
+
- Support API GetMetricStore.
|
11
|
+
- Support API ListMetricStores.
|
12
|
+
- Support API UpdateMetricStore.
|
13
|
+
- Update API CreateLogStore: update param body.
|
14
|
+
- Update API UpdateLogStore: update param body.
|
15
|
+
|
16
|
+
|
1
17
|
2024-08-02 Version: 5.3.0
|
2
18
|
- Support API CreateDownloadJob.
|
3
19
|
- Support API DeleteDownloadJob.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: alibabacloud_sls20201230
|
3
|
-
Version: 5.
|
3
|
+
Version: 5.5.0
|
4
4
|
Summary: Alibaba Cloud Log Service (20201230) SDK Library for Python
|
5
5
|
Home-page: https://github.com/aliyun/alibabacloud-python-sdk
|
6
6
|
Author: Alibaba Cloud SDK
|
@@ -29,7 +29,7 @@ English | [简体中文](README-CN.md)
|
|
29
29
|
|
30
30
|
## Requirements
|
31
31
|
|
32
|
-
- Python >= 3.
|
32
|
+
- Python >= 3.7
|
33
33
|
|
34
34
|
## Installation
|
35
35
|
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = '5.5.0'
|