Skip to content

Commit e7f3556

Browse files
committed
Update API InitializeDbsServiceLinkedRole: add request parameters RegionId.
1 parent b07937d commit e7f3556

File tree

8 files changed

+2456
-135
lines changed

8 files changed

+2456
-135
lines changed

dbs-20190306/.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/

dbs-20190306/ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2025-12-01 Version: 1.0.2
2+
- Update API InitializeDbsServiceLinkedRole: add request parameters RegionId.
3+
4+
15
2022-07-28 Version: 1.0.1
26
- Automatically generate sdk tasks.
37

dbs-20190306/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_dbs20190306
2929

3030
## 发行说明
3131

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

3434
## 相关
3535

dbs-20190306/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_dbs20190306
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/dbs-20190306/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.1'
1+
__version__ = '1.0.2'

0 commit comments

Comments
 (0)