huaweicloudsdkas 3.1.85__py2.py3-none-any.whl → 3.1.132__py2.py3-none-any.whl

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.

Potentially problematic release.


This version of huaweicloudsdkas might be problematic. Click here for more details.

@@ -96,6 +96,7 @@ from huaweicloudsdkas.v1.model.instance_config import InstanceConfig
96
96
  from huaweicloudsdkas.v1.model.instance_config_result import InstanceConfigResult
97
97
  from huaweicloudsdkas.v1.model.instance_hanging_infos import InstanceHangingInfos
98
98
  from huaweicloudsdkas.v1.model.integer_range import IntegerRange
99
+ from huaweicloudsdkas.v1.model.interval_alarm_actions_v2 import IntervalAlarmActionsV2
99
100
  from huaweicloudsdkas.v1.model.ipv6_bandwidth import Ipv6Bandwidth
100
101
  from huaweicloudsdkas.v1.model.job_records import JobRecords
101
102
  from huaweicloudsdkas.v1.model.lbaas_listener import LbaasListener
@@ -94,6 +94,7 @@ from huaweicloudsdkas.v1.model.instance_config import InstanceConfig
94
94
  from huaweicloudsdkas.v1.model.instance_config_result import InstanceConfigResult
95
95
  from huaweicloudsdkas.v1.model.instance_hanging_infos import InstanceHangingInfos
96
96
  from huaweicloudsdkas.v1.model.integer_range import IntegerRange
97
+ from huaweicloudsdkas.v1.model.interval_alarm_actions_v2 import IntervalAlarmActionsV2
97
98
  from huaweicloudsdkas.v1.model.ipv6_bandwidth import Ipv6Bandwidth
98
99
  from huaweicloudsdkas.v1.model.job_records import JobRecords
99
100
  from huaweicloudsdkas.v1.model.lbaas_listener import LbaasListener
@@ -39,7 +39,8 @@ class CreateScalingGroupOption:
39
39
  'enterprise_project_id': 'str',
40
40
  'multi_az_priority_policy': 'str',
41
41
  'iam_agency_name': 'str',
42
- 'description': 'str'
42
+ 'description': 'str',
43
+ 'tags': 'list[TagsSingleValue]'
43
44
  }
44
45
 
45
46
  attribute_map = {
@@ -65,10 +66,11 @@ class CreateScalingGroupOption:
65
66
  'enterprise_project_id': 'enterprise_project_id',
66
67
  'multi_az_priority_policy': 'multi_az_priority_policy',
67
68
  'iam_agency_name': 'iam_agency_name',
68
- 'description': 'description'
69
+ 'description': 'description',
70
+ 'tags': 'tags'
69
71
  }
70
72
 
71
- def __init__(self, scaling_group_name=None, scaling_configuration_id=None, desire_instance_number=None, min_instance_number=None, max_instance_number=None, cool_down_time=None, lb_listener_id=None, lbaas_listeners=None, available_zones=None, networks=None, security_groups=None, vpc_id=None, health_periodic_audit_method=None, health_periodic_audit_time=None, health_periodic_audit_grace_period=None, instance_terminate_policy=None, notifications=None, delete_publicip=None, delete_volume=None, enterprise_project_id=None, multi_az_priority_policy=None, iam_agency_name=None, description=None):
73
+ def __init__(self, scaling_group_name=None, scaling_configuration_id=None, desire_instance_number=None, min_instance_number=None, max_instance_number=None, cool_down_time=None, lb_listener_id=None, lbaas_listeners=None, available_zones=None, networks=None, security_groups=None, vpc_id=None, health_periodic_audit_method=None, health_periodic_audit_time=None, health_periodic_audit_grace_period=None, instance_terminate_policy=None, notifications=None, delete_publicip=None, delete_volume=None, enterprise_project_id=None, multi_az_priority_policy=None, iam_agency_name=None, description=None, tags=None):
72
74
  """CreateScalingGroupOption
73
75
 
74
76
  The model defined in huaweicloud sdk
@@ -119,6 +121,8 @@ class CreateScalingGroupOption:
119
121
  :type iam_agency_name: str
120
122
  :param description: 伸缩组描述信息(0-256个字符)
121
123
  :type description: str
124
+ :param tags: 创建特定标签并将其添加到伸缩组。每个伸缩组最多添加10个标签。
125
+ :type tags: list[:class:`huaweicloudsdkas.v1.TagsSingleValue`]
122
126
  """
123
127
 
124
128
 
@@ -146,6 +150,7 @@ class CreateScalingGroupOption:
146
150
  self._multi_az_priority_policy = None
147
151
  self._iam_agency_name = None
148
152
  self._description = None
153
+ self._tags = None
149
154
  self.discriminator = None
150
155
 
151
156
  self.scaling_group_name = scaling_group_name
@@ -190,6 +195,8 @@ class CreateScalingGroupOption:
190
195
  self.iam_agency_name = iam_agency_name
191
196
  if description is not None:
192
197
  self.description = description
198
+ if tags is not None:
199
+ self.tags = tags
193
200
 
194
201
  @property
195
202
  def scaling_group_name(self):
@@ -697,6 +704,28 @@ class CreateScalingGroupOption:
697
704
  """
698
705
  self._description = description
699
706
 
707
+ @property
708
+ def tags(self):
709
+ """Gets the tags of this CreateScalingGroupOption.
710
+
711
+ 创建特定标签并将其添加到伸缩组。每个伸缩组最多添加10个标签。
712
+
713
+ :return: The tags of this CreateScalingGroupOption.
714
+ :rtype: list[:class:`huaweicloudsdkas.v1.TagsSingleValue`]
715
+ """
716
+ return self._tags
717
+
718
+ @tags.setter
719
+ def tags(self, tags):
720
+ """Sets the tags of this CreateScalingGroupOption.
721
+
722
+ 创建特定标签并将其添加到伸缩组。每个伸缩组最多添加10个标签。
723
+
724
+ :param tags: The tags of this CreateScalingGroupOption.
725
+ :type tags: list[:class:`huaweicloudsdkas.v1.TagsSingleValue`]
726
+ """
727
+ self._tags = tags
728
+
700
729
  def to_dict(self):
701
730
  """Returns the model properties as a dict"""
702
731
  result = {}
@@ -24,6 +24,7 @@ class CreateScalingPolicyV2Option:
24
24
  'alarm_id': 'str',
25
25
  'scheduled_policy': 'ScheduledPolicy',
26
26
  'scaling_policy_action': 'ScalingPolicyActionV2',
27
+ 'interval_alarm_actions': 'list[IntervalAlarmActionsV2]',
27
28
  'cool_down_time': 'int',
28
29
  'description': 'str'
29
30
  }
@@ -36,11 +37,12 @@ class CreateScalingPolicyV2Option:
36
37
  'alarm_id': 'alarm_id',
37
38
  'scheduled_policy': 'scheduled_policy',
38
39
  'scaling_policy_action': 'scaling_policy_action',
40
+ 'interval_alarm_actions': 'interval_alarm_actions',
39
41
  'cool_down_time': 'cool_down_time',
40
42
  'description': 'description'
41
43
  }
42
44
 
43
- def __init__(self, scaling_policy_name=None, scaling_resource_id=None, scaling_resource_type=None, scaling_policy_type=None, alarm_id=None, scheduled_policy=None, scaling_policy_action=None, cool_down_time=None, description=None):
45
+ def __init__(self, scaling_policy_name=None, scaling_resource_id=None, scaling_resource_type=None, scaling_policy_type=None, alarm_id=None, scheduled_policy=None, scaling_policy_action=None, interval_alarm_actions=None, cool_down_time=None, description=None):
44
46
  """CreateScalingPolicyV2Option
45
47
 
46
48
  The model defined in huaweicloud sdk
@@ -59,6 +61,8 @@ class CreateScalingPolicyV2Option:
59
61
  :type scheduled_policy: :class:`huaweicloudsdkas.v1.ScheduledPolicy`
60
62
  :param scaling_policy_action:
61
63
  :type scaling_policy_action: :class:`huaweicloudsdkas.v1.ScalingPolicyActionV2`
64
+ :param interval_alarm_actions:
65
+ :type interval_alarm_actions: list[:class:`huaweicloudsdkas.v1.IntervalAlarmActionsV2`]
62
66
  :param cool_down_time: 冷却时间,取值范围0-86400,默认为300,单位是秒。
63
67
  :type cool_down_time: int
64
68
  :param description: 伸缩策略描述(1-256个字符)
@@ -74,6 +78,7 @@ class CreateScalingPolicyV2Option:
74
78
  self._alarm_id = None
75
79
  self._scheduled_policy = None
76
80
  self._scaling_policy_action = None
81
+ self._interval_alarm_actions = None
77
82
  self._cool_down_time = None
78
83
  self._description = None
79
84
  self.discriminator = None
@@ -88,6 +93,8 @@ class CreateScalingPolicyV2Option:
88
93
  self.scheduled_policy = scheduled_policy
89
94
  if scaling_policy_action is not None:
90
95
  self.scaling_policy_action = scaling_policy_action
96
+ if interval_alarm_actions is not None:
97
+ self.interval_alarm_actions = interval_alarm_actions
91
98
  if cool_down_time is not None:
92
99
  self.cool_down_time = cool_down_time
93
100
  if description is not None:
@@ -239,6 +246,24 @@ class CreateScalingPolicyV2Option:
239
246
  """
240
247
  self._scaling_policy_action = scaling_policy_action
241
248
 
249
+ @property
250
+ def interval_alarm_actions(self):
251
+ """Gets the interval_alarm_actions of this CreateScalingPolicyV2Option.
252
+
253
+ :return: The interval_alarm_actions of this CreateScalingPolicyV2Option.
254
+ :rtype: list[:class:`huaweicloudsdkas.v1.IntervalAlarmActionsV2`]
255
+ """
256
+ return self._interval_alarm_actions
257
+
258
+ @interval_alarm_actions.setter
259
+ def interval_alarm_actions(self, interval_alarm_actions):
260
+ """Sets the interval_alarm_actions of this CreateScalingPolicyV2Option.
261
+
262
+ :param interval_alarm_actions: The interval_alarm_actions of this CreateScalingPolicyV2Option.
263
+ :type interval_alarm_actions: list[:class:`huaweicloudsdkas.v1.IntervalAlarmActionsV2`]
264
+ """
265
+ self._interval_alarm_actions = interval_alarm_actions
266
+
242
267
  @property
243
268
  def cool_down_time(self):
244
269
  """Gets the cool_down_time of this CreateScalingPolicyV2Option.
@@ -0,0 +1,252 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
6
+
7
+
8
+ class IntervalAlarmActionsV2:
9
+
10
+ """
11
+ Attributes:
12
+ openapi_types (dict): The key is attribute name
13
+ and the value is attribute type.
14
+ attribute_map (dict): The key is attribute name
15
+ and the value is json key in definition.
16
+ """
17
+ sensitive_list = []
18
+
19
+ openapi_types = {
20
+ 'operation': 'str',
21
+ 'limits': 'int',
22
+ 'size': 'int',
23
+ 'lower_bound': 'float',
24
+ 'upper_bound': 'float',
25
+ 'percentage': 'int'
26
+ }
27
+
28
+ attribute_map = {
29
+ 'operation': 'operation',
30
+ 'limits': 'limits',
31
+ 'size': 'size',
32
+ 'lower_bound': 'lower_bound',
33
+ 'upper_bound': 'upper_bound',
34
+ 'percentage': 'percentage'
35
+ }
36
+
37
+ def __init__(self, operation=None, limits=None, size=None, lower_bound=None, upper_bound=None, percentage=None):
38
+ """IntervalAlarmActionsV2
39
+
40
+ The model defined in huaweicloud sdk
41
+
42
+ :param operation: 操作选项,默认为ADD。 当scaling_resource_type为SCALING_GROUP,支持如下操作: ADD:增加 REMOVE/REDUCE:减少 SET:设置为 当scaling_resource_type为BANDWIDTH,支持如下操作: ADD:增加 REDUCE:减少
43
+ :type operation: str
44
+ :param limits: 操作限制。当scaling_resource_type为BANDWIDTH,且operation不为SET时,limits参数生效,单位为Mbit/s。此时,当operation为ADD时,limits表示带宽可调整的上限;当operation为REDUCE时,limits表示带宽可调整的下限。
45
+ :type limits: int
46
+ :param size: 操作大小,取值范围为0到300的整数,默认为1。当scaling_resource_type为SCALING_GROUP时,size为实例个数,取值范围为0-300的整数,默认为1。当scaling_resource_type为BANDWIDTH时,size表示带宽大小,单位为Mbit/s,取值范围为1到300的整数,默认为1。当scaling_resource_type为SCALING_GROUP时,size和percentage参数只能选其中一个进行配置。
47
+ :type size: int
48
+ :param lower_bound:
49
+ :type lower_bound: float
50
+ :param upper_bound:
51
+ :type upper_bound: float
52
+ :param percentage: 操作百分比,取值为0到20000的整数。当scaling_resource_type为SCALING_GROUP时,size和instance_percentage参数均无配置,则size默认为1。当scaling_resource_type为BANDWIDTH时,不支持配置instance_percentage参数。
53
+ :type percentage: int
54
+ """
55
+
56
+
57
+
58
+ self._operation = None
59
+ self._limits = None
60
+ self._size = None
61
+ self._lower_bound = None
62
+ self._upper_bound = None
63
+ self._percentage = None
64
+ self.discriminator = None
65
+
66
+ if operation is not None:
67
+ self.operation = operation
68
+ if limits is not None:
69
+ self.limits = limits
70
+ if size is not None:
71
+ self.size = size
72
+ if lower_bound is not None:
73
+ self.lower_bound = lower_bound
74
+ if upper_bound is not None:
75
+ self.upper_bound = upper_bound
76
+ if percentage is not None:
77
+ self.percentage = percentage
78
+
79
+ @property
80
+ def operation(self):
81
+ """Gets the operation of this IntervalAlarmActionsV2.
82
+
83
+ 操作选项,默认为ADD。 当scaling_resource_type为SCALING_GROUP,支持如下操作: ADD:增加 REMOVE/REDUCE:减少 SET:设置为 当scaling_resource_type为BANDWIDTH,支持如下操作: ADD:增加 REDUCE:减少
84
+
85
+ :return: The operation of this IntervalAlarmActionsV2.
86
+ :rtype: str
87
+ """
88
+ return self._operation
89
+
90
+ @operation.setter
91
+ def operation(self, operation):
92
+ """Sets the operation of this IntervalAlarmActionsV2.
93
+
94
+ 操作选项,默认为ADD。 当scaling_resource_type为SCALING_GROUP,支持如下操作: ADD:增加 REMOVE/REDUCE:减少 SET:设置为 当scaling_resource_type为BANDWIDTH,支持如下操作: ADD:增加 REDUCE:减少
95
+
96
+ :param operation: The operation of this IntervalAlarmActionsV2.
97
+ :type operation: str
98
+ """
99
+ self._operation = operation
100
+
101
+ @property
102
+ def limits(self):
103
+ """Gets the limits of this IntervalAlarmActionsV2.
104
+
105
+ 操作限制。当scaling_resource_type为BANDWIDTH,且operation不为SET时,limits参数生效,单位为Mbit/s。此时,当operation为ADD时,limits表示带宽可调整的上限;当operation为REDUCE时,limits表示带宽可调整的下限。
106
+
107
+ :return: The limits of this IntervalAlarmActionsV2.
108
+ :rtype: int
109
+ """
110
+ return self._limits
111
+
112
+ @limits.setter
113
+ def limits(self, limits):
114
+ """Sets the limits of this IntervalAlarmActionsV2.
115
+
116
+ 操作限制。当scaling_resource_type为BANDWIDTH,且operation不为SET时,limits参数生效,单位为Mbit/s。此时,当operation为ADD时,limits表示带宽可调整的上限;当operation为REDUCE时,limits表示带宽可调整的下限。
117
+
118
+ :param limits: The limits of this IntervalAlarmActionsV2.
119
+ :type limits: int
120
+ """
121
+ self._limits = limits
122
+
123
+ @property
124
+ def size(self):
125
+ """Gets the size of this IntervalAlarmActionsV2.
126
+
127
+ 操作大小,取值范围为0到300的整数,默认为1。当scaling_resource_type为SCALING_GROUP时,size为实例个数,取值范围为0-300的整数,默认为1。当scaling_resource_type为BANDWIDTH时,size表示带宽大小,单位为Mbit/s,取值范围为1到300的整数,默认为1。当scaling_resource_type为SCALING_GROUP时,size和percentage参数只能选其中一个进行配置。
128
+
129
+ :return: The size of this IntervalAlarmActionsV2.
130
+ :rtype: int
131
+ """
132
+ return self._size
133
+
134
+ @size.setter
135
+ def size(self, size):
136
+ """Sets the size of this IntervalAlarmActionsV2.
137
+
138
+ 操作大小,取值范围为0到300的整数,默认为1。当scaling_resource_type为SCALING_GROUP时,size为实例个数,取值范围为0-300的整数,默认为1。当scaling_resource_type为BANDWIDTH时,size表示带宽大小,单位为Mbit/s,取值范围为1到300的整数,默认为1。当scaling_resource_type为SCALING_GROUP时,size和percentage参数只能选其中一个进行配置。
139
+
140
+ :param size: The size of this IntervalAlarmActionsV2.
141
+ :type size: int
142
+ """
143
+ self._size = size
144
+
145
+ @property
146
+ def lower_bound(self):
147
+ """Gets the lower_bound of this IntervalAlarmActionsV2.
148
+
149
+ :return: The lower_bound of this IntervalAlarmActionsV2.
150
+ :rtype: float
151
+ """
152
+ return self._lower_bound
153
+
154
+ @lower_bound.setter
155
+ def lower_bound(self, lower_bound):
156
+ """Sets the lower_bound of this IntervalAlarmActionsV2.
157
+
158
+ :param lower_bound: The lower_bound of this IntervalAlarmActionsV2.
159
+ :type lower_bound: float
160
+ """
161
+ self._lower_bound = lower_bound
162
+
163
+ @property
164
+ def upper_bound(self):
165
+ """Gets the upper_bound of this IntervalAlarmActionsV2.
166
+
167
+ :return: The upper_bound of this IntervalAlarmActionsV2.
168
+ :rtype: float
169
+ """
170
+ return self._upper_bound
171
+
172
+ @upper_bound.setter
173
+ def upper_bound(self, upper_bound):
174
+ """Sets the upper_bound of this IntervalAlarmActionsV2.
175
+
176
+ :param upper_bound: The upper_bound of this IntervalAlarmActionsV2.
177
+ :type upper_bound: float
178
+ """
179
+ self._upper_bound = upper_bound
180
+
181
+ @property
182
+ def percentage(self):
183
+ """Gets the percentage of this IntervalAlarmActionsV2.
184
+
185
+ 操作百分比,取值为0到20000的整数。当scaling_resource_type为SCALING_GROUP时,size和instance_percentage参数均无配置,则size默认为1。当scaling_resource_type为BANDWIDTH时,不支持配置instance_percentage参数。
186
+
187
+ :return: The percentage of this IntervalAlarmActionsV2.
188
+ :rtype: int
189
+ """
190
+ return self._percentage
191
+
192
+ @percentage.setter
193
+ def percentage(self, percentage):
194
+ """Sets the percentage of this IntervalAlarmActionsV2.
195
+
196
+ 操作百分比,取值为0到20000的整数。当scaling_resource_type为SCALING_GROUP时,size和instance_percentage参数均无配置,则size默认为1。当scaling_resource_type为BANDWIDTH时,不支持配置instance_percentage参数。
197
+
198
+ :param percentage: The percentage of this IntervalAlarmActionsV2.
199
+ :type percentage: int
200
+ """
201
+ self._percentage = percentage
202
+
203
+ def to_dict(self):
204
+ """Returns the model properties as a dict"""
205
+ result = {}
206
+
207
+ for attr, _ in six.iteritems(self.openapi_types):
208
+ value = getattr(self, attr)
209
+ if isinstance(value, list):
210
+ result[attr] = list(map(
211
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
212
+ value
213
+ ))
214
+ elif hasattr(value, "to_dict"):
215
+ result[attr] = value.to_dict()
216
+ elif isinstance(value, dict):
217
+ result[attr] = dict(map(
218
+ lambda item: (item[0], item[1].to_dict())
219
+ if hasattr(item[1], "to_dict") else item,
220
+ value.items()
221
+ ))
222
+ else:
223
+ if attr in self.sensitive_list:
224
+ result[attr] = "****"
225
+ else:
226
+ result[attr] = value
227
+
228
+ return result
229
+
230
+ def to_str(self):
231
+ """Returns the string representation of the model"""
232
+ import simplejson as json
233
+ if six.PY2:
234
+ import sys
235
+ reload(sys)
236
+ sys.setdefaultencoding("utf-8")
237
+ return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
238
+
239
+ def __repr__(self):
240
+ """For `print`"""
241
+ return self.to_str()
242
+
243
+ def __eq__(self, other):
244
+ """Returns true if both objects are equal"""
245
+ if not isinstance(other, IntervalAlarmActionsV2):
246
+ return False
247
+
248
+ return self.__dict__ == other.__dict__
249
+
250
+ def __ne__(self, other):
251
+ """Returns true if both objects are not equal"""
252
+ return not self == other
@@ -26,6 +26,7 @@ class ScalingAllPolicyDetail:
26
26
  'alarm_id': 'str',
27
27
  'scheduled_policy': 'ScheduledPolicy',
28
28
  'scaling_policy_action': 'ScalingPolicyActionV2',
29
+ 'interval_alarm_actions': 'list[IntervalAlarmActionsV2]',
29
30
  'cool_down_time': 'int',
30
31
  'create_time': 'datetime',
31
32
  'meta_data': 'ScalingPolicyV2MetaData',
@@ -42,13 +43,14 @@ class ScalingAllPolicyDetail:
42
43
  'alarm_id': 'alarm_id',
43
44
  'scheduled_policy': 'scheduled_policy',
44
45
  'scaling_policy_action': 'scaling_policy_action',
46
+ 'interval_alarm_actions': 'interval_alarm_actions',
45
47
  'cool_down_time': 'cool_down_time',
46
48
  'create_time': 'create_time',
47
49
  'meta_data': 'meta_data',
48
50
  'description': 'description'
49
51
  }
50
52
 
51
- def __init__(self, scaling_policy_name=None, scaling_policy_id=None, scaling_resource_id=None, scaling_resource_type=None, policy_status=None, scaling_policy_type=None, alarm_id=None, scheduled_policy=None, scaling_policy_action=None, cool_down_time=None, create_time=None, meta_data=None, description=None):
53
+ def __init__(self, scaling_policy_name=None, scaling_policy_id=None, scaling_resource_id=None, scaling_resource_type=None, policy_status=None, scaling_policy_type=None, alarm_id=None, scheduled_policy=None, scaling_policy_action=None, interval_alarm_actions=None, cool_down_time=None, create_time=None, meta_data=None, description=None):
52
54
  """ScalingAllPolicyDetail
53
55
 
54
56
  The model defined in huaweicloud sdk
@@ -71,6 +73,8 @@ class ScalingAllPolicyDetail:
71
73
  :type scheduled_policy: :class:`huaweicloudsdkas.v1.ScheduledPolicy`
72
74
  :param scaling_policy_action:
73
75
  :type scaling_policy_action: :class:`huaweicloudsdkas.v1.ScalingPolicyActionV2`
76
+ :param interval_alarm_actions:
77
+ :type interval_alarm_actions: list[:class:`huaweicloudsdkas.v1.IntervalAlarmActionsV2`]
74
78
  :param cool_down_time: 冷却时间,取值范围0-86400,默认为300,单位是秒。
75
79
  :type cool_down_time: int
76
80
  :param create_time: 创建伸缩策略时间,遵循UTC时间
@@ -92,6 +96,7 @@ class ScalingAllPolicyDetail:
92
96
  self._alarm_id = None
93
97
  self._scheduled_policy = None
94
98
  self._scaling_policy_action = None
99
+ self._interval_alarm_actions = None
95
100
  self._cool_down_time = None
96
101
  self._create_time = None
97
102
  self._meta_data = None
@@ -116,6 +121,8 @@ class ScalingAllPolicyDetail:
116
121
  self.scheduled_policy = scheduled_policy
117
122
  if scaling_policy_action is not None:
118
123
  self.scaling_policy_action = scaling_policy_action
124
+ if interval_alarm_actions is not None:
125
+ self.interval_alarm_actions = interval_alarm_actions
119
126
  if cool_down_time is not None:
120
127
  self.cool_down_time = cool_down_time
121
128
  if create_time is not None:
@@ -315,6 +322,24 @@ class ScalingAllPolicyDetail:
315
322
  """
316
323
  self._scaling_policy_action = scaling_policy_action
317
324
 
325
+ @property
326
+ def interval_alarm_actions(self):
327
+ """Gets the interval_alarm_actions of this ScalingAllPolicyDetail.
328
+
329
+ :return: The interval_alarm_actions of this ScalingAllPolicyDetail.
330
+ :rtype: list[:class:`huaweicloudsdkas.v1.IntervalAlarmActionsV2`]
331
+ """
332
+ return self._interval_alarm_actions
333
+
334
+ @interval_alarm_actions.setter
335
+ def interval_alarm_actions(self, interval_alarm_actions):
336
+ """Sets the interval_alarm_actions of this ScalingAllPolicyDetail.
337
+
338
+ :param interval_alarm_actions: The interval_alarm_actions of this ScalingAllPolicyDetail.
339
+ :type interval_alarm_actions: list[:class:`huaweicloudsdkas.v1.IntervalAlarmActionsV2`]
340
+ """
341
+ self._interval_alarm_actions = interval_alarm_actions
342
+
318
343
  @property
319
344
  def cool_down_time(self):
320
345
  """Gets the cool_down_time of this ScalingAllPolicyDetail.
@@ -48,7 +48,8 @@ class ScalingGroups:
48
48
  'activity_type': 'str',
49
49
  'multi_az_priority_policy': 'str',
50
50
  'iam_agency_name': 'str',
51
- 'description': 'str'
51
+ 'description': 'str',
52
+ 'tags': 'list[TagsSingleValue]'
52
53
  }
53
54
 
54
55
  attribute_map = {
@@ -83,10 +84,11 @@ class ScalingGroups:
83
84
  'activity_type': 'activity_type',
84
85
  'multi_az_priority_policy': 'multi_az_priority_policy',
85
86
  'iam_agency_name': 'iam_agency_name',
86
- 'description': 'description'
87
+ 'description': 'description',
88
+ 'tags': 'tags'
87
89
  }
88
90
 
89
- def __init__(self, scaling_group_name=None, scaling_group_id=None, scaling_group_status=None, scaling_configuration_id=None, scaling_configuration_name=None, current_instance_number=None, desire_instance_number=None, min_instance_number=None, max_instance_number=None, cool_down_time=None, lb_listener_id=None, lbaas_listeners=None, available_zones=None, networks=None, security_groups=None, create_time=None, vpc_id=None, detail=None, is_scaling=None, health_periodic_audit_method=None, health_periodic_audit_time=None, health_periodic_audit_grace_period=None, instance_terminate_policy=None, notifications=None, delete_publicip=None, delete_volume=None, cloud_location_id=None, enterprise_project_id=None, activity_type=None, multi_az_priority_policy=None, iam_agency_name=None, description=None):
91
+ def __init__(self, scaling_group_name=None, scaling_group_id=None, scaling_group_status=None, scaling_configuration_id=None, scaling_configuration_name=None, current_instance_number=None, desire_instance_number=None, min_instance_number=None, max_instance_number=None, cool_down_time=None, lb_listener_id=None, lbaas_listeners=None, available_zones=None, networks=None, security_groups=None, create_time=None, vpc_id=None, detail=None, is_scaling=None, health_periodic_audit_method=None, health_periodic_audit_time=None, health_periodic_audit_grace_period=None, instance_terminate_policy=None, notifications=None, delete_publicip=None, delete_volume=None, cloud_location_id=None, enterprise_project_id=None, activity_type=None, multi_az_priority_policy=None, iam_agency_name=None, description=None, tags=None):
90
92
  """ScalingGroups
91
93
 
92
94
  The model defined in huaweicloud sdk
@@ -155,6 +157,8 @@ class ScalingGroups:
155
157
  :type iam_agency_name: str
156
158
  :param description: 伸缩组描述信息
157
159
  :type description: str
160
+ :param tags: 添加到伸缩组的标签。
161
+ :type tags: list[:class:`huaweicloudsdkas.v1.TagsSingleValue`]
158
162
  """
159
163
 
160
164
 
@@ -191,6 +195,7 @@ class ScalingGroups:
191
195
  self._multi_az_priority_policy = None
192
196
  self._iam_agency_name = None
193
197
  self._description = None
198
+ self._tags = None
194
199
  self.discriminator = None
195
200
 
196
201
  if scaling_group_name is not None:
@@ -257,6 +262,8 @@ class ScalingGroups:
257
262
  self.iam_agency_name = iam_agency_name
258
263
  if description is not None:
259
264
  self.description = description
265
+ if tags is not None:
266
+ self.tags = tags
260
267
 
261
268
  @property
262
269
  def scaling_group_name(self):
@@ -962,6 +969,28 @@ class ScalingGroups:
962
969
  """
963
970
  self._description = description
964
971
 
972
+ @property
973
+ def tags(self):
974
+ """Gets the tags of this ScalingGroups.
975
+
976
+ 添加到伸缩组的标签。
977
+
978
+ :return: The tags of this ScalingGroups.
979
+ :rtype: list[:class:`huaweicloudsdkas.v1.TagsSingleValue`]
980
+ """
981
+ return self._tags
982
+
983
+ @tags.setter
984
+ def tags(self, tags):
985
+ """Sets the tags of this ScalingGroups.
986
+
987
+ 添加到伸缩组的标签。
988
+
989
+ :param tags: The tags of this ScalingGroups.
990
+ :type tags: list[:class:`huaweicloudsdkas.v1.TagsSingleValue`]
991
+ """
992
+ self._tags = tags
993
+
965
994
  def to_dict(self):
966
995
  """Returns the model properties as a dict"""
967
996
  result = {}
@@ -26,6 +26,7 @@ class ScalingPoliciesV2:
26
26
  'alarm_id': 'str',
27
27
  'scheduled_policy': 'ScheduledPolicy',
28
28
  'scaling_policy_action': 'ScalingPolicyActionV2',
29
+ 'interval_alarm_actions': 'list[IntervalAlarmActionsV2]',
29
30
  'cool_down_time': 'int',
30
31
  'create_time': 'datetime',
31
32
  'meta_data': 'ScalingPolicyV2MetaData',
@@ -42,13 +43,14 @@ class ScalingPoliciesV2:
42
43
  'alarm_id': 'alarm_id',
43
44
  'scheduled_policy': 'scheduled_policy',
44
45
  'scaling_policy_action': 'scaling_policy_action',
46
+ 'interval_alarm_actions': 'interval_alarm_actions',
45
47
  'cool_down_time': 'cool_down_time',
46
48
  'create_time': 'create_time',
47
49
  'meta_data': 'meta_data',
48
50
  'description': 'description'
49
51
  }
50
52
 
51
- def __init__(self, scaling_policy_name=None, scaling_policy_id=None, scaling_resource_id=None, scaling_resource_type=None, policy_status=None, scaling_policy_type=None, alarm_id=None, scheduled_policy=None, scaling_policy_action=None, cool_down_time=None, create_time=None, meta_data=None, description=None):
53
+ def __init__(self, scaling_policy_name=None, scaling_policy_id=None, scaling_resource_id=None, scaling_resource_type=None, policy_status=None, scaling_policy_type=None, alarm_id=None, scheduled_policy=None, scaling_policy_action=None, interval_alarm_actions=None, cool_down_time=None, create_time=None, meta_data=None, description=None):
52
54
  """ScalingPoliciesV2
53
55
 
54
56
  The model defined in huaweicloud sdk
@@ -71,6 +73,8 @@ class ScalingPoliciesV2:
71
73
  :type scheduled_policy: :class:`huaweicloudsdkas.v1.ScheduledPolicy`
72
74
  :param scaling_policy_action:
73
75
  :type scaling_policy_action: :class:`huaweicloudsdkas.v1.ScalingPolicyActionV2`
76
+ :param interval_alarm_actions:
77
+ :type interval_alarm_actions: list[:class:`huaweicloudsdkas.v1.IntervalAlarmActionsV2`]
74
78
  :param cool_down_time: 冷却时间,取值范围0-86400,默认为300,单位是秒。
75
79
  :type cool_down_time: int
76
80
  :param create_time: 创建伸缩策略时间,遵循UTC时间
@@ -92,6 +96,7 @@ class ScalingPoliciesV2:
92
96
  self._alarm_id = None
93
97
  self._scheduled_policy = None
94
98
  self._scaling_policy_action = None
99
+ self._interval_alarm_actions = None
95
100
  self._cool_down_time = None
96
101
  self._create_time = None
97
102
  self._meta_data = None
@@ -116,6 +121,8 @@ class ScalingPoliciesV2:
116
121
  self.scheduled_policy = scheduled_policy
117
122
  if scaling_policy_action is not None:
118
123
  self.scaling_policy_action = scaling_policy_action
124
+ if interval_alarm_actions is not None:
125
+ self.interval_alarm_actions = interval_alarm_actions
119
126
  if cool_down_time is not None:
120
127
  self.cool_down_time = cool_down_time
121
128
  if create_time is not None:
@@ -315,6 +322,24 @@ class ScalingPoliciesV2:
315
322
  """
316
323
  self._scaling_policy_action = scaling_policy_action
317
324
 
325
+ @property
326
+ def interval_alarm_actions(self):
327
+ """Gets the interval_alarm_actions of this ScalingPoliciesV2.
328
+
329
+ :return: The interval_alarm_actions of this ScalingPoliciesV2.
330
+ :rtype: list[:class:`huaweicloudsdkas.v1.IntervalAlarmActionsV2`]
331
+ """
332
+ return self._interval_alarm_actions
333
+
334
+ @interval_alarm_actions.setter
335
+ def interval_alarm_actions(self, interval_alarm_actions):
336
+ """Sets the interval_alarm_actions of this ScalingPoliciesV2.
337
+
338
+ :param interval_alarm_actions: The interval_alarm_actions of this ScalingPoliciesV2.
339
+ :type interval_alarm_actions: list[:class:`huaweicloudsdkas.v1.IntervalAlarmActionsV2`]
340
+ """
341
+ self._interval_alarm_actions = interval_alarm_actions
342
+
318
343
  @property
319
344
  def cool_down_time(self):
320
345
  """Gets the cool_down_time of this ScalingPoliciesV2.
@@ -26,6 +26,7 @@ class ScalingV2PolicyDetail:
26
26
  'alarm_id': 'str',
27
27
  'scheduled_policy': 'ScheduledPolicy',
28
28
  'scaling_policy_action': 'ScalingPolicyActionV2',
29
+ 'interval_alarm_actions': 'list[IntervalAlarmActionsV2]',
29
30
  'cool_down_time': 'int',
30
31
  'create_time': 'datetime',
31
32
  'meta_data': 'ScalingPolicyV2MetaData',
@@ -42,13 +43,14 @@ class ScalingV2PolicyDetail:
42
43
  'alarm_id': 'alarm_id',
43
44
  'scheduled_policy': 'scheduled_policy',
44
45
  'scaling_policy_action': 'scaling_policy_action',
46
+ 'interval_alarm_actions': 'interval_alarm_actions',
45
47
  'cool_down_time': 'cool_down_time',
46
48
  'create_time': 'create_time',
47
49
  'meta_data': 'meta_data',
48
50
  'description': 'description'
49
51
  }
50
52
 
51
- def __init__(self, scaling_policy_name=None, scaling_policy_id=None, scaling_resource_id=None, scaling_resource_type=None, policy_status=None, scaling_policy_type=None, alarm_id=None, scheduled_policy=None, scaling_policy_action=None, cool_down_time=None, create_time=None, meta_data=None, description=None):
53
+ def __init__(self, scaling_policy_name=None, scaling_policy_id=None, scaling_resource_id=None, scaling_resource_type=None, policy_status=None, scaling_policy_type=None, alarm_id=None, scheduled_policy=None, scaling_policy_action=None, interval_alarm_actions=None, cool_down_time=None, create_time=None, meta_data=None, description=None):
52
54
  """ScalingV2PolicyDetail
53
55
 
54
56
  The model defined in huaweicloud sdk
@@ -71,6 +73,8 @@ class ScalingV2PolicyDetail:
71
73
  :type scheduled_policy: :class:`huaweicloudsdkas.v1.ScheduledPolicy`
72
74
  :param scaling_policy_action:
73
75
  :type scaling_policy_action: :class:`huaweicloudsdkas.v1.ScalingPolicyActionV2`
76
+ :param interval_alarm_actions:
77
+ :type interval_alarm_actions: list[:class:`huaweicloudsdkas.v1.IntervalAlarmActionsV2`]
74
78
  :param cool_down_time: 冷却时间,取值范围0-86400,默认为300,单位是秒。
75
79
  :type cool_down_time: int
76
80
  :param create_time: 创建伸缩策略时间,遵循UTC时间
@@ -92,6 +96,7 @@ class ScalingV2PolicyDetail:
92
96
  self._alarm_id = None
93
97
  self._scheduled_policy = None
94
98
  self._scaling_policy_action = None
99
+ self._interval_alarm_actions = None
95
100
  self._cool_down_time = None
96
101
  self._create_time = None
97
102
  self._meta_data = None
@@ -116,6 +121,8 @@ class ScalingV2PolicyDetail:
116
121
  self.scheduled_policy = scheduled_policy
117
122
  if scaling_policy_action is not None:
118
123
  self.scaling_policy_action = scaling_policy_action
124
+ if interval_alarm_actions is not None:
125
+ self.interval_alarm_actions = interval_alarm_actions
119
126
  if cool_down_time is not None:
120
127
  self.cool_down_time = cool_down_time
121
128
  if create_time is not None:
@@ -315,6 +322,24 @@ class ScalingV2PolicyDetail:
315
322
  """
316
323
  self._scaling_policy_action = scaling_policy_action
317
324
 
325
+ @property
326
+ def interval_alarm_actions(self):
327
+ """Gets the interval_alarm_actions of this ScalingV2PolicyDetail.
328
+
329
+ :return: The interval_alarm_actions of this ScalingV2PolicyDetail.
330
+ :rtype: list[:class:`huaweicloudsdkas.v1.IntervalAlarmActionsV2`]
331
+ """
332
+ return self._interval_alarm_actions
333
+
334
+ @interval_alarm_actions.setter
335
+ def interval_alarm_actions(self, interval_alarm_actions):
336
+ """Sets the interval_alarm_actions of this ScalingV2PolicyDetail.
337
+
338
+ :param interval_alarm_actions: The interval_alarm_actions of this ScalingV2PolicyDetail.
339
+ :type interval_alarm_actions: list[:class:`huaweicloudsdkas.v1.IntervalAlarmActionsV2`]
340
+ """
341
+ self._interval_alarm_actions = interval_alarm_actions
342
+
318
343
  @property
319
344
  def cool_down_time(self):
320
345
  """Gets the cool_down_time of this ScalingV2PolicyDetail.
@@ -24,6 +24,7 @@ class UpdateScalingV2PolicyOption:
24
24
  'alarm_id': 'str',
25
25
  'scheduled_policy': 'ScheduledPolicy',
26
26
  'scaling_policy_action': 'ScalingPolicyActionV2',
27
+ 'interval_alarm_actions': 'list[IntervalAlarmActionsV2]',
27
28
  'cool_down_time': 'int',
28
29
  'description': 'str'
29
30
  }
@@ -36,11 +37,12 @@ class UpdateScalingV2PolicyOption:
36
37
  'alarm_id': 'alarm_id',
37
38
  'scheduled_policy': 'scheduled_policy',
38
39
  'scaling_policy_action': 'scaling_policy_action',
40
+ 'interval_alarm_actions': 'interval_alarm_actions',
39
41
  'cool_down_time': 'cool_down_time',
40
42
  'description': 'description'
41
43
  }
42
44
 
43
- def __init__(self, scaling_policy_name=None, scaling_resource_id=None, scaling_resource_type=None, scaling_policy_type=None, alarm_id=None, scheduled_policy=None, scaling_policy_action=None, cool_down_time=None, description=None):
45
+ def __init__(self, scaling_policy_name=None, scaling_resource_id=None, scaling_resource_type=None, scaling_policy_type=None, alarm_id=None, scheduled_policy=None, scaling_policy_action=None, interval_alarm_actions=None, cool_down_time=None, description=None):
44
46
  """UpdateScalingV2PolicyOption
45
47
 
46
48
  The model defined in huaweicloud sdk
@@ -59,6 +61,8 @@ class UpdateScalingV2PolicyOption:
59
61
  :type scheduled_policy: :class:`huaweicloudsdkas.v1.ScheduledPolicy`
60
62
  :param scaling_policy_action:
61
63
  :type scaling_policy_action: :class:`huaweicloudsdkas.v1.ScalingPolicyActionV2`
64
+ :param interval_alarm_actions:
65
+ :type interval_alarm_actions: list[:class:`huaweicloudsdkas.v1.IntervalAlarmActionsV2`]
62
66
  :param cool_down_time: 冷却时间,取值范围0-86400,默认为300,单位是秒。
63
67
  :type cool_down_time: int
64
68
  :param description: 伸缩策略描述(1-256个字符)
@@ -74,6 +78,7 @@ class UpdateScalingV2PolicyOption:
74
78
  self._alarm_id = None
75
79
  self._scheduled_policy = None
76
80
  self._scaling_policy_action = None
81
+ self._interval_alarm_actions = None
77
82
  self._cool_down_time = None
78
83
  self._description = None
79
84
  self.discriminator = None
@@ -92,6 +97,8 @@ class UpdateScalingV2PolicyOption:
92
97
  self.scheduled_policy = scheduled_policy
93
98
  if scaling_policy_action is not None:
94
99
  self.scaling_policy_action = scaling_policy_action
100
+ if interval_alarm_actions is not None:
101
+ self.interval_alarm_actions = interval_alarm_actions
95
102
  if cool_down_time is not None:
96
103
  self.cool_down_time = cool_down_time
97
104
  if description is not None:
@@ -243,6 +250,24 @@ class UpdateScalingV2PolicyOption:
243
250
  """
244
251
  self._scaling_policy_action = scaling_policy_action
245
252
 
253
+ @property
254
+ def interval_alarm_actions(self):
255
+ """Gets the interval_alarm_actions of this UpdateScalingV2PolicyOption.
256
+
257
+ :return: The interval_alarm_actions of this UpdateScalingV2PolicyOption.
258
+ :rtype: list[:class:`huaweicloudsdkas.v1.IntervalAlarmActionsV2`]
259
+ """
260
+ return self._interval_alarm_actions
261
+
262
+ @interval_alarm_actions.setter
263
+ def interval_alarm_actions(self, interval_alarm_actions):
264
+ """Sets the interval_alarm_actions of this UpdateScalingV2PolicyOption.
265
+
266
+ :param interval_alarm_actions: The interval_alarm_actions of this UpdateScalingV2PolicyOption.
267
+ :type interval_alarm_actions: list[:class:`huaweicloudsdkas.v1.IntervalAlarmActionsV2`]
268
+ """
269
+ self._interval_alarm_actions = interval_alarm_actions
270
+
246
271
  @property
247
272
  def cool_down_time(self):
248
273
  """Gets the cool_down_time of this UpdateScalingV2PolicyOption.
@@ -52,6 +52,10 @@ class AsRegion:
52
52
  "https://as.eu-west-101.myhuaweicloud.com")
53
53
  MY_KUALALUMPUR_1 = Region("my-kualalumpur-1",
54
54
  "https://as.my-kualalumpur-1.myhuaweicloud.com")
55
+ RU_MOSCOW_1 = Region("ru-moscow-1",
56
+ "https://as.ru-moscow-1.myhuaweicloud.com")
57
+ AP_SOUTHEAST_5 = Region("ap-southeast-5",
58
+ "https://as.ap-southeast-5.myhuaweicloud.com")
55
59
 
56
60
  static_fields = {
57
61
  "af-south-1": AF_SOUTH_1,
@@ -77,6 +81,8 @@ class AsRegion:
77
81
  "eu-west-0": EU_WEST_0,
78
82
  "eu-west-101": EU_WEST_101,
79
83
  "my-kualalumpur-1": MY_KUALALUMPUR_1,
84
+ "ru-moscow-1": RU_MOSCOW_1,
85
+ "ap-southeast-5": AP_SOUTHEAST_5,
80
86
  }
81
87
 
82
88
  @classmethod
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: huaweicloudsdkas
3
- Version: 3.1.85
3
+ Version: 3.1.132
4
4
  Summary: AS
5
5
  Home-page: https://github.com/huaweicloud/huaweicloud-sdk-python-v3
6
6
  Author: HuaweiCloud SDK
@@ -22,6 +22,6 @@ Classifier: Topic :: Software Development
22
22
  Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*
23
23
  Description-Content-Type: text/markdown
24
24
  License-File: LICENSE
25
- Requires-Dist: huaweicloudsdkcore >=3.1.85
25
+ Requires-Dist: huaweicloudsdkcore>=3.1.132
26
26
 
27
27
  See detailed information in [huaweicloud-sdk-python-v3](https://github.com/huaweicloud/huaweicloud-sdk-python-v3).
@@ -1,8 +1,8 @@
1
1
  huaweicloudsdkas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- huaweicloudsdkas/v1/__init__.py,sha256=j_7nmsDXPNSnA0dWCMNSPWostj254b3_H4T0mKmtxgM,20024
2
+ huaweicloudsdkas/v1/__init__.py,sha256=eZb-Z5FHcA5fBLSQkopPwYVUUKCqJ_09BxaPnRLY6Ks,20111
3
3
  huaweicloudsdkas/v1/as_async_client.py,sha256=NBQlX6g8U2bLKU9btBVUDvEKb4MTdgexul4tYHpbZO8,161064
4
4
  huaweicloudsdkas/v1/as_client.py,sha256=cSQPY8NjPJTEWTSBw01i2xDYHrKMN2XBjRVxkLM_1pY,161083
5
- huaweicloudsdkas/v1/model/__init__.py,sha256=_Q5dyeOYBbTXX9DhwonVkYakjm1Z2p96TaspSDtksOE,19944
5
+ huaweicloudsdkas/v1/model/__init__.py,sha256=gDHHPvYOv_PfO9H2hvYlhEwPNWuQaZ7wGHjpHK7p-hs,20031
6
6
  huaweicloudsdkas/v1/model/all_quotas.py,sha256=Vk0UEtRREEDZrFCZPR-zKKdwRpKRxfEAMVD1kd0TguQ,3219
7
7
  huaweicloudsdkas/v1/model/all_resources.py,sha256=3yJNnP7IJ0CMCHtFqINwaJVocDHraYLtYdKMHLcwg7g,6897
8
8
  huaweicloudsdkas/v1/model/allowed_address_pair.py,sha256=HhmyVyiX69f1t35VvYiOSB_ykvo4ODXua__mM0FAmG0,3554
@@ -50,7 +50,7 @@ huaweicloudsdkas/v1/model/create_notification_option.py,sha256=KYWdk0yylVeaYwGwC
50
50
  huaweicloudsdkas/v1/model/create_scaling_config_option.py,sha256=xrUdkozp36JHk2Muj4jNh-GMmzxyadOa3w7IUUc6_fA,8645
51
51
  huaweicloudsdkas/v1/model/create_scaling_config_request.py,sha256=HzuvsLafGs_OnATfwPt7s8eBFc1jFvcisUcqmTs1QsQ,3188
52
52
  huaweicloudsdkas/v1/model/create_scaling_config_response.py,sha256=M8SM-M_8-ObrIOAU2xU5z3mygjaAexREL8xSNm7kv_U,3624
53
- huaweicloudsdkas/v1/model/create_scaling_group_option.py,sha256=KAgFmpXOEIznvenBQkKgfG5dTbw_QEGR_Zn-W416iiQ,41348
53
+ huaweicloudsdkas/v1/model/create_scaling_group_option.py,sha256=EfK3xci-LZvkLGRodMTmq3nFcRKSpCVqkbWGR4b_HVM,42425
54
54
  huaweicloudsdkas/v1/model/create_scaling_group_request.py,sha256=Dsy7VOHsWj_8FXx8-aWkZMkFGyEPkrDdYMw-M8iQnhY,3176
55
55
  huaweicloudsdkas/v1/model/create_scaling_group_response.py,sha256=1HhZ5LoRI6i7A2AMq97PlzA9zhoqc-y8obuBeDadUUE,3423
56
56
  huaweicloudsdkas/v1/model/create_scaling_notification_request.py,sha256=fCjP4qppwgX4RuAfnnhPtzRt8p_Ra7fI8W8PK7zKNyM,4200
@@ -58,7 +58,7 @@ huaweicloudsdkas/v1/model/create_scaling_notification_response.py,sha256=ii6xPyu
58
58
  huaweicloudsdkas/v1/model/create_scaling_policy_option.py,sha256=gxcpMHJIIoJiyUZB07FgtMa5VeCoqWF7nVGDpcSL1Mw,11428
59
59
  huaweicloudsdkas/v1/model/create_scaling_policy_request.py,sha256=CVmQZoeoikCWBtanQNI2uosSayWK08GY6TsmFiyFKxQ,3188
60
60
  huaweicloudsdkas/v1/model/create_scaling_policy_response.py,sha256=U3iejBK818j1Fpmr7zBjN_gDZuuTrAaKdeCn9CYHIhE,3472
61
- huaweicloudsdkas/v1/model/create_scaling_policy_v2_option.py,sha256=gWsuy-W9QqYRNECzyv-cGKZW97hEmVosu8dSwqJ7YRQ,14278
61
+ huaweicloudsdkas/v1/model/create_scaling_policy_v2_option.py,sha256=vIIrghY9ucYOTn_PwawI-5NHGHiXoZCh2k25rgI50nM,15522
62
62
  huaweicloudsdkas/v1/model/create_scaling_tag_info_request.py,sha256=oXUot0jD3aV7NvFK84Molt3UMEDMZ_bRKLzuWpHH5RQ,5096
63
63
  huaweicloudsdkas/v1/model/create_scaling_tag_info_response.py,sha256=KeseYAGB5-7vomjw35Wg9m_8weswGtDPG3-esGzlZu0,2463
64
64
  huaweicloudsdkas/v1/model/create_scaling_v2_policy_request.py,sha256=H3WfPKpjlNDHVXAx2tjR_GTnv5Fg6OZMf4FBhWNiKYw,3212
@@ -94,6 +94,7 @@ huaweicloudsdkas/v1/model/instance_config.py,sha256=K_L1oMQ7Swj3pOiwftMhC6LxeNEu
94
94
  huaweicloudsdkas/v1/model/instance_config_result.py,sha256=aitAg_rN9lY8ae4jLcS-sgT5zpmg6UJBmGE1Kkx2X1E,19992
95
95
  huaweicloudsdkas/v1/model/instance_hanging_infos.py,sha256=05ElwVuW_oFny8iAX9c22tBubEhzMGp4jT0ZpKhHAcY,9581
96
96
  huaweicloudsdkas/v1/model/integer_range.py,sha256=BlNoqUPlI9IwJW58nT4GItwRCy5m0vbrHQnNY1V37rU,4319
97
+ huaweicloudsdkas/v1/model/interval_alarm_actions_v2.py,sha256=8ti4rAKd0dMLHo4Jvu_UcMvB4rrjy4RdXYbYFZIrCbQ,10232
97
98
  huaweicloudsdkas/v1/model/ipv6_bandwidth.py,sha256=610uZv7Qei2fQFnqlsmSkclCRXfmJ4kDj4dVtc3hW7U,2899
98
99
  huaweicloudsdkas/v1/model/job_records.py,sha256=_NgUuyZ2LY8mh2f3FSmiql6pIgdqdiLFI2R0UxYMYRQ,8778
99
100
  huaweicloudsdkas/v1/model/lbaas_listener.py,sha256=Fuioc-XbC1y0CHLnIFIT4-KqYl38-fFl3awJvmBK9mg,5706
@@ -164,18 +165,18 @@ huaweicloudsdkas/v1/model/resume_scaling_policy_request.py,sha256=1ZH-kyG2k5UydN
164
165
  huaweicloudsdkas/v1/model/resume_scaling_policy_response.py,sha256=EHMExVtiZ9z_6lE8QxHesGPw83kYFsGPbP2UG_neh84,2459
165
166
  huaweicloudsdkas/v1/model/scaling_activity_log_list.py,sha256=aX2MclSOU7JRpR93qURxM3akGDvJWKobmP3EsusMVHE,13688
166
167
  huaweicloudsdkas/v1/model/scaling_activity_log_v2.py,sha256=3nkO13stvCwAjSoGwhuvoHbDzBJjlA_PChMqExcTCTk,22574
167
- huaweicloudsdkas/v1/model/scaling_all_policy_detail.py,sha256=NOnNJlxCKax7NKNGNNtsu8uQqeR7fQXRlYRiA4kj-PI,16847
168
+ huaweicloudsdkas/v1/model/scaling_all_policy_detail.py,sha256=TzZmd2g7Sd2gkb-3fK3s8ljKNKCI3IFJirswylMVono,18071
168
169
  huaweicloudsdkas/v1/model/scaling_configuration.py,sha256=I7H1O3yV4IhqLO6huKeRDh5u8ruqEOXRoBvRO7pktqg,8426
169
170
  huaweicloudsdkas/v1/model/scaling_group_instance.py,sha256=vi3e0rrS9OoJVA6jsicAgA3ak1OmA0zAiPtfP_zmp3Y,13842
170
- huaweicloudsdkas/v1/model/scaling_groups.py,sha256=aA0xa-fetKmAfnCyX3pPRy8zgNvAs4ppjOfvu5vsBiY,35953
171
+ huaweicloudsdkas/v1/model/scaling_groups.py,sha256=sPtg0IWdPnKlACkT9uPNrfhuwknsqOQ3aNHYyit1ADg,36809
171
172
  huaweicloudsdkas/v1/model/scaling_instance.py,sha256=NrKmgwqWuPeQ0pNrSDshvw1xoleSpyvcoVU9g7qujXQ,6775
172
- huaweicloudsdkas/v1/model/scaling_policies_v2.py,sha256=avUVPpN3qw03KCPzOdTJYSw_uVYQJgaetaTlT45C8vE,16572
173
+ huaweicloudsdkas/v1/model/scaling_policies_v2.py,sha256=Zk7d-VwpdhiFwEsUZpwj5mTub_GiNf72wXLqaSpLwEk,17776
173
174
  huaweicloudsdkas/v1/model/scaling_policy_action_v1.py,sha256=moOvd7fh9ZMQaaGKmYA3A3SKdG8g2eELjYAO3leCzH8,7396
174
175
  huaweicloudsdkas/v1/model/scaling_policy_action_v2.py,sha256=uVsHDKm9KiLahdxN2Th61vny2HhtTaM_d6gMJlppims,8713
175
176
  huaweicloudsdkas/v1/model/scaling_policy_execute_log_list.py,sha256=y0KX60zDvUlQpTNUTJ5PsWemd9UBq8GKVdauqzv4w0k,17500
176
177
  huaweicloudsdkas/v1/model/scaling_policy_v2_meta_data.py,sha256=ILDONHGtDJhbqL-N-pXbHMBN7uvthx9u5FeLORR0Q20,5875
177
178
  huaweicloudsdkas/v1/model/scaling_v1_policy_detail.py,sha256=rQ3HZ-wymEg3F2sxnnkG4muRwutJ62e2kySM5fJs5nQ,14749
178
- huaweicloudsdkas/v1/model/scaling_v2_policy_detail.py,sha256=0fztogB2Lbmz2ppyFBcyADQkiz_4CbHcSEn16G3FfQ4,16792
179
+ huaweicloudsdkas/v1/model/scaling_v2_policy_detail.py,sha256=w2n7yCh_dmJQblupKZ3OCFNn3yX1MEEsLz9kg5p4mYg,18012
179
180
  huaweicloudsdkas/v1/model/scheduled_policy.py,sha256=RAlh0JukalQ6ayuPYurkT8sA-fJfVM9Y7dRpiGlar3Y,9660
180
181
  huaweicloudsdkas/v1/model/scheduled_task_detail.py,sha256=16-R35pXJM-gjDR0-kPS7sKro8fGtjI-rPFvY10PC3g,9867
181
182
  huaweicloudsdkas/v1/model/scheduled_task_policy.py,sha256=sCQIsMNDDu0uLqyKPbVcJQbLO3DhKEmGsgo0-XlNrKo,8852
@@ -212,16 +213,16 @@ huaweicloudsdkas/v1/model/update_scaling_group_response.py,sha256=sQli02uh7r8GN2
212
213
  huaweicloudsdkas/v1/model/update_scaling_policy_option.py,sha256=elQik4t04zs3rS9bNK5DAJE-kUpk5m2Ubyaf8-Y-qoc,10362
213
214
  huaweicloudsdkas/v1/model/update_scaling_policy_request.py,sha256=_94hXud01GUxAsSSBSSPctBQOWkiIGmPBHerRKD9FZ8,4151
214
215
  huaweicloudsdkas/v1/model/update_scaling_policy_response.py,sha256=G5EJxQeb3IEp4BHjs28gnT-jZ-NpX60Lviwvu7g7eI8,3472
215
- huaweicloudsdkas/v1/model/update_scaling_v2_policy_option.py,sha256=dnQ4t2Lj-JO_pVjP-MtCbu1uZEakVeMUZalU1N8seOs,14259
216
+ huaweicloudsdkas/v1/model/update_scaling_v2_policy_option.py,sha256=UUFn3TCjBPhBG8EkX2kwFdyg34mkasWzr-Rj2S-eMyQ,15503
216
217
  huaweicloudsdkas/v1/model/update_scaling_v2_policy_request.py,sha256=rZu9L1rMbn27hcsI9-aVMqhPe7h-wlDw33rCo1fvzo8,4183
217
218
  huaweicloudsdkas/v1/model/update_scaling_v2_policy_response.py,sha256=5SjtRRCtE-CDjGwNe0aC9_aPbeytnP6SockvwNG4CkI,3488
218
219
  huaweicloudsdkas/v1/model/update_scheduled_task_option.py,sha256=Tnn6ilNnICG2n0IghRp0SfRsl-LjCQ0G3Od0T6KWi6A,5115
219
220
  huaweicloudsdkas/v1/model/version_info.py,sha256=ZoSCNFKzi6pIGXRbAvB6mIpSgOnUZpjzS-D4vapIdak,7412
220
221
  huaweicloudsdkas/v1/model/vm_meta_data.py,sha256=GU4Te8qWXF1CclUyLa0Ob5PZ-fT5p4OebODE8sDVZ2c,4673
221
222
  huaweicloudsdkas/v1/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
222
- huaweicloudsdkas/v1/region/as_region.py,sha256=f28ni-JvgVqwg4wZ1uGhPY6b1yjCyZWeVMDtjMajV6s,4157
223
- huaweicloudsdkas-3.1.85.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
224
- huaweicloudsdkas-3.1.85.dist-info/METADATA,sha256=LiX2bD70f4ONSmwOqsOonAarPPy36FLHG2A8zOzGcCc,1131
225
- huaweicloudsdkas-3.1.85.dist-info/WHEEL,sha256=-G_t0oGuE7UD0DrSpVZnq1hHMBV9DD2XkS5v7XpmTnk,110
226
- huaweicloudsdkas-3.1.85.dist-info/top_level.txt,sha256=dgGlzxcKTIbmcaoJpGjIcPn2cUQUfCO_hGpSYSc0rZQ,17
227
- huaweicloudsdkas-3.1.85.dist-info/RECORD,,
223
+ huaweicloudsdkas/v1/region/as_region.py,sha256=eMmVJWf6UzzexoQJpOXqF3nAOuSNiPs8yPZS9wGvHzc,4460
224
+ huaweicloudsdkas-3.1.132.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
225
+ huaweicloudsdkas-3.1.132.dist-info/METADATA,sha256=zbDIuRf3HxZhxxYI8SaJ1eAMn9xGjzlqzUfDsugcvRE,1132
226
+ huaweicloudsdkas-3.1.132.dist-info/WHEEL,sha256=Kh9pAotZVRFj97E15yTA4iADqXdQfIVTHcNaZTjxeGM,110
227
+ huaweicloudsdkas-3.1.132.dist-info/top_level.txt,sha256=dgGlzxcKTIbmcaoJpGjIcPn2cUQUfCO_hGpSYSc0rZQ,17
228
+ huaweicloudsdkas-3.1.132.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.42.0)
2
+ Generator: bdist_wheel (0.45.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py2-none-any
5
5
  Tag: py3-none-any