Skip to content

Commit 0d581eb

Browse files
committed
Support API AssociateSourceServers.
1 parent 58fa977 commit 0d581eb

File tree

8 files changed

+5874
-2086
lines changed

8 files changed

+5874
-2086
lines changed

smc-20190601/.gitignore

Lines changed: 78 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,81 @@
1-
composer.phar
2-
/vendor/
3-
4-
# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
5-
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
6-
composer.lock
1+
# OS
2+
.DS_Store
73

8-
.vscode/
4+
# IDE
95
.idea
10-
.DS_Store
6+
.settings
7+
.cache/
8+
.tmp
9+
.vscode/
10+
11+
# Byte-compiled / optimized / DLL files
12+
__pycache__/
13+
*.py[cod]
14+
*$py.class
15+
16+
# C extensions
17+
*.so
18+
19+
# Distribution / packaging
20+
.Python
21+
build/
22+
develop-eggs/
23+
dist/
24+
downloads/
25+
eggs/
26+
.eggs/
27+
lib/
28+
lib64/
29+
parts/
30+
sdist/
31+
var/
32+
wheels/
33+
pip-wheel-metadata/
34+
share/python-wheels/
35+
*.egg-info/
36+
.installed.cfg
37+
*.egg
38+
MANIFEST
39+
40+
# Installer logs
41+
pip-log.txt
42+
pip-delete-this-directory.txt
43+
44+
# Unit test / coverage reports
45+
htmlcov/
46+
.tox/
47+
.nox/
48+
.coverage
49+
.coverage.*
50+
.cache
51+
nosetests.xml
52+
coverage.xml
53+
*.cover
54+
*.coverage
55+
.hypothesis/
56+
.pytest_cache/
57+
pytestdebug.log
58+
59+
# Sphinx documentation
60+
docs/_build/
61+
62+
# PyBuilder
63+
target/
64+
65+
# pyenv
66+
.python-version
67+
68+
# Environments
69+
.env
70+
.venv
71+
env/
72+
venv/
73+
ENV/
74+
env.bak/
75+
venv.bak/
76+
77+
# Pyre type checker
78+
.pyre/
1179

12-
cache/
13-
*.cache
14-
runtime/
80+
# pytype static type analyzer
81+
.pytype/

smc-20190601/ChangeLog.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
2025-03-10 Version: 1.1.0
2+
- Support API AssociateSourceServers.
3+
- Support API CreateCrossZoneMigrationJob.
4+
- Support API CreateWorkgroup.
5+
- Support API DeleteWorkgroup.
6+
- Support API DescribeWorkgroups.
7+
- Support API DisassociateSourceServers.
8+
- Support API ModifyWorkgroupAttribute.
9+
- Update API CreateReplicationJob: add param Disks.
10+
- Update API DescribeReplicationJobs: update response param.
11+
- Update API DescribeSourceServers: add param RelatedJobType.
12+
- Update API DescribeSourceServers: add param WorkgroupId.
13+
- Update API DescribeSourceServers: update response param.
14+
- Update API ModifyReplicationJobAttribute: delete param LicenseType.
15+
16+
117
2024-01-19 Version: 1.0.2
218
- Generated python 2019-06-01 for smc.
319

smc-20190601/README-CN.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
## 要求
88

9-
- Python >= 3.6
9+
- Python >= 3.7
1010

1111
## 安装
1212

@@ -29,7 +29,7 @@ pip install alibabacloud_smc20190601
2929

3030
## 发行说明
3131

32-
每个版本的详细更改记录在[发行说明](./ChangeLog.md)中。
32+
每个版本的详细更改记录在[发行说明](https://github.com/aliyun/alibabacloud-python-sdk/blob/master/smc-20190601/ChangeLog.md)中。
3333

3434
## 相关
3535

smc-20190601/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ English | [简体中文](README-CN.md)
55

66
## Requirements
77

8-
- Python >= 3.6
8+
- Python >= 3.7
99

1010
## Installation
1111

@@ -28,7 +28,7 @@ pip install alibabacloud_smc20190601
2828

2929
## Changelog
3030

31-
Detailed changes for each release are documented in the [release notes](./ChangeLog.md).
31+
Detailed changes for each release are documented in the [release notes](https://github.com/aliyun/alibabacloud-python-sdk/blob/master/smc-20190601/ChangeLog.md).
3232

3333
## References
3434

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.2'
1+
__version__ = '1.1.0'

0 commit comments

Comments
 (0)