Skip to content

Commit 3d13b27

Browse files
release 3.0.22-beta source code for python
1 parent cf38e36 commit 3d13b27

File tree

249 files changed

+35460
-541
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

249 files changed

+35460
-541
lines changed

CHANGELOG.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,53 @@
1+
## 3.0.22-beta 2020-11-17
2+
## HuaweiCloud SDK DMS
3+
- ### Features
4+
- None
5+
- ### Bug Fix
6+
- None
7+
- ### Change
8+
- Type of property adjustment: type of property `created` and type of `eff_date` are changed from `string` to `integer64`.
9+
10+
## HuaweiCloud SDK ECS
11+
- ### Features
12+
- None
13+
- ### Bug Fix
14+
- None
15+
- ### Change
16+
- Property adjustment: increase property `dry_run` in interfaces `CreatePostPaidServers` and `CreateServers` which means whether parameters will be checked before sending real requests.
17+
18+
## HuaweiCloud SDK NAT
19+
- ### Features
20+
- Support NAT Gateway service.
21+
- ### Bug Fix
22+
- None
23+
- ### Change
24+
- None
25+
26+
## HuaweiCloud SDK Kafka
27+
- ### Features
28+
- None
29+
- ### Bug Fix
30+
- None
31+
- ### Change
32+
- Name of interface adjustment: UpdateInstanceCrossVPCIP → UpdateInstanceCrossVpcIp
33+
34+
## HuaweiCloud SDK RMS
35+
- ### Features
36+
- Support Resource Manager Service.
37+
- ### Bug Fix
38+
- None
39+
- ### Change
40+
- None
41+
42+
## HuaweiCloud SDK VPC
43+
- ### Features
44+
- Support more interfaces: interfaces related to Network ACLs.
45+
- ### Bug Fix
46+
- None
47+
- ### Change
48+
- None
49+
50+
151
## 3.0.21-beta 2020-11-11
252
## HuaweiCloud SDK Core
353
- ### Features

CHANGELOG_CN.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,53 @@
1+
## 3.0.22-beta 2020-11-17
2+
## HuaweiCloud SDK DMS
3+
- ### 新增特性
4+
-
5+
- ### 解决问题
6+
-
7+
- ### 特性变更
8+
- 属性类型调整:属性 `创建队列的时间``string` 类型调整为 `integer64` 类型
9+
10+
## HuaweiCloud SDK ECS
11+
- ### 新增特性
12+
-
13+
- ### 解决问题
14+
-
15+
- ### 特性变更
16+
- 创建虚拟机接口(按需和包周期)增加 `dry_run` 属性,表示是否预检此次请求
17+
18+
## HuaweiCloud SDK NAT
19+
- ### 新增特性
20+
- 支持NAT网关服务
21+
- ### 解决问题
22+
-
23+
- ### 特性变更
24+
-
25+
26+
## HuaweiCloud SDK Kafka
27+
- ### 新增特性
28+
-
29+
- ### 解决问题
30+
-
31+
- ### 特性变更
32+
- 接口名调整:UpdateInstanceCrossVPCIP → UpdateInstanceCrossVpcIp
33+
34+
## HuaweiCloud SDK RMS
35+
- ### 新增特性
36+
- 支持资源管理服务
37+
- ### 解决问题
38+
-
39+
- ### 特性变更
40+
-
41+
42+
## HuaweiCloud SDK VPC
43+
- ### 新增特性
44+
- 支持网络ACL相关接口
45+
- ### 解决问题
46+
-
47+
- ### 特性变更
48+
-
49+
50+
151
## 3.0.21-beta 2020-11-11
252
## HuaweiCloud SDK Core
353
- ### 新增特性

examples/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from setuptools import setup, find_packages
2222

2323
NAME = "huaweicloudsdkexample"
24-
VERSION = "3.0.21-beta"
24+
VERSION = "3.0.22-beta"
2525
AUTHOR = "HuaweiCloud SDK"
2626
AUTHOR_EMAIL = "[email protected]"
2727
URL = "https://github.com/huaweicloud/huaweicloud-sdk-python-v3"

huaweicloud-sdk-apig/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from setuptools import setup, find_packages
55

66
NAME = "huaweicloudsdkapig"
7-
VERSION = "3.0.21-beta"
7+
VERSION = "3.0.22-beta"
88
AUTHOR = "HuaweiCloud SDK"
99
AUTHOR_EMAIL = "[email protected]"
1010
URL = "https://github.com/huaweicloud/huaweicloud-sdk-python-v3"

huaweicloud-sdk-as/huaweicloudsdkas/v1/model/scheduled_policy.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ class ScheduledPolicy:
2323
sensitive_list = []
2424

2525
openapi_types = {
26-
'launch_time': 'datetime',
26+
'launch_time': 'str',
2727
'recurrence_type': 'str',
2828
'recurrence_value': 'str',
29-
'start_time': 'datetime',
30-
'end_time': 'datetime'
29+
'start_time': 'str',
30+
'end_time': 'str'
3131
}
3232

3333
attribute_map = {
@@ -68,7 +68,7 @@ def launch_time(self):
6868
触发时间,遵循UTC时间。如果scaling_policy_type为SCHEDULED,则格式为:YYYY-MM-DDThh:mmZ。如果scaling_policy_type为RECURRENCE,则格式为:hh:mm。
6969
7070
:return: The launch_time of this ScheduledPolicy.
71-
:rtype: datetime
71+
:rtype: str
7272
"""
7373
return self._launch_time
7474

@@ -79,7 +79,7 @@ def launch_time(self, launch_time):
7979
触发时间,遵循UTC时间。如果scaling_policy_type为SCHEDULED,则格式为:YYYY-MM-DDThh:mmZ。如果scaling_policy_type为RECURRENCE,则格式为:hh:mm。
8080
8181
:param launch_time: The launch_time of this ScheduledPolicy.
82-
:type: datetime
82+
:type: str
8383
"""
8484
self._launch_time = launch_time
8585

@@ -134,7 +134,7 @@ def start_time(self):
134134
周期策略重复执行开始时间,遵循UTC时间。默认为当前时间,格式为:YYYY-MM-DDThh:mZ
135135
136136
:return: The start_time of this ScheduledPolicy.
137-
:rtype: datetime
137+
:rtype: str
138138
"""
139139
return self._start_time
140140

@@ -145,7 +145,7 @@ def start_time(self, start_time):
145145
周期策略重复执行开始时间,遵循UTC时间。默认为当前时间,格式为:YYYY-MM-DDThh:mZ
146146
147147
:param start_time: The start_time of this ScheduledPolicy.
148-
:type: datetime
148+
:type: str
149149
"""
150150
self._start_time = start_time
151151

@@ -156,7 +156,7 @@ def end_time(self):
156156
周期策略重复执行结束时间,遵循UTC时间,scaling_policy_type为RECURRENCE时该项必选。当为周期类型策略时,不得早于当前时间和开始时间。格式为:YYYY-MM-DDThh:mmZ
157157
158158
:return: The end_time of this ScheduledPolicy.
159-
:rtype: datetime
159+
:rtype: str
160160
"""
161161
return self._end_time
162162

@@ -167,7 +167,7 @@ def end_time(self, end_time):
167167
周期策略重复执行结束时间,遵循UTC时间,scaling_policy_type为RECURRENCE时该项必选。当为周期类型策略时,不得早于当前时间和开始时间。格式为:YYYY-MM-DDThh:mmZ
168168
169169
:param end_time: The end_time of this ScheduledPolicy.
170-
:type: datetime
170+
:type: str
171171
"""
172172
self._end_time = end_time
173173

huaweicloud-sdk-as/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from setuptools import setup, find_packages
55

66
NAME = "huaweicloudsdkas"
7-
VERSION = "3.0.21-beta"
7+
VERSION = "3.0.22-beta"
88
AUTHOR = "HuaweiCloud SDK"
99
AUTHOR_EMAIL = "[email protected]"
1010
URL = "https://github.com/huaweicloud/huaweicloud-sdk-python-v3"

huaweicloud-sdk-bss/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from setuptools import setup, find_packages
55

66
NAME = "huaweicloudsdkbss"
7-
VERSION = "3.0.21-beta"
7+
VERSION = "3.0.22-beta"
88
AUTHOR = "HuaweiCloud SDK"
99
AUTHOR_EMAIL = "[email protected]"
1010
URL = "https://github.com/huaweicloud/huaweicloud-sdk-python-v3"

huaweicloud-sdk-bssintl/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from setuptools import setup, find_packages
55

66
NAME = "huaweicloudsdkbssintl"
7-
VERSION = "3.0.21-beta"
7+
VERSION = "3.0.22-beta"
88
AUTHOR = "HuaweiCloud SDK"
99
AUTHOR_EMAIL = "[email protected]"
1010
URL = "https://github.com/huaweicloud/huaweicloud-sdk-python-v3"

huaweicloud-sdk-cbr/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from setuptools import setup, find_packages
55

66
NAME = "huaweicloudsdkcbr"
7-
VERSION = "3.0.21-beta"
7+
VERSION = "3.0.22-beta"
88
AUTHOR = "HuaweiCloud SDK"
99
AUTHOR_EMAIL = "[email protected]"
1010
URL = "https://github.com/huaweicloud/huaweicloud-sdk-python-v3"

huaweicloud-sdk-ces/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from setuptools import setup, find_packages
55

66
NAME = "huaweicloudsdkces"
7-
VERSION = "3.0.21-beta"
7+
VERSION = "3.0.22-beta"
88
AUTHOR = "HuaweiCloud SDK"
99
AUTHOR_EMAIL = "[email protected]"
1010
URL = "https://github.com/huaweicloud/huaweicloud-sdk-python-v3"

0 commit comments

Comments
 (0)