huaweicloudsdkcae 3.1.110__py2.py3-none-any.whl → 3.1.112__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 huaweicloudsdkcae might be problematic. Click here for more details.

Files changed (24) hide show
  1. huaweicloudsdkcae/v1/__init__.py +1 -4
  2. huaweicloudsdkcae/v1/cae_async_client.py +4 -71
  3. huaweicloudsdkcae/v1/cae_client.py +4 -71
  4. huaweicloudsdkcae/v1/model/__init__.py +1 -4
  5. huaweicloudsdkcae/v1/model/{component_event_kind_obj.py → cloud_storage_log_path_info.py} +65 -8
  6. huaweicloudsdkcae/v1/model/configuration.py +35 -6
  7. huaweicloudsdkcae/v1/model/configuration_request_data_spec.py +33 -4
  8. huaweicloudsdkcae/v1/model/configuration_response_data_spec.py +33 -4
  9. huaweicloudsdkcae/v1/model/create_component_request_body.py +2 -4
  10. huaweicloudsdkcae/v1/model/list_components_request.py +61 -3
  11. huaweicloudsdkcae/v1/model/list_eip_response_body_spec_egress.py +30 -1
  12. huaweicloudsdkcae/v1/model/list_eip_response_body_spec_ingress.py +30 -1
  13. huaweicloudsdkcae/v1/model/notice_rule_notification.py +32 -3
  14. huaweicloudsdkcae/v1/model/update_component_request_body.py +2 -4
  15. huaweicloudsdkcae/v1/model/update_eip_request_body_spec_egress.py +32 -3
  16. huaweicloudsdkcae/v1/model/update_eip_request_body_spec_ingress.py +32 -3
  17. {huaweicloudsdkcae-3.1.110.dist-info → huaweicloudsdkcae-3.1.112.dist-info}/METADATA +2 -2
  18. {huaweicloudsdkcae-3.1.110.dist-info → huaweicloudsdkcae-3.1.112.dist-info}/RECORD +21 -24
  19. huaweicloudsdkcae/v1/model/event_item.py +0 -318
  20. huaweicloudsdkcae/v1/model/list_component_events_request.py +0 -199
  21. huaweicloudsdkcae/v1/model/list_component_events_response.py +0 -166
  22. {huaweicloudsdkcae-3.1.110.dist-info → huaweicloudsdkcae-3.1.112.dist-info}/LICENSE +0 -0
  23. {huaweicloudsdkcae-3.1.110.dist-info → huaweicloudsdkcae-3.1.112.dist-info}/WHEEL +0 -0
  24. {huaweicloudsdkcae-3.1.110.dist-info → huaweicloudsdkcae-3.1.112.dist-info}/top_level.txt +0 -0
@@ -21,7 +21,9 @@ class ListComponentsRequest:
21
21
  'x_enterprise_project_id': 'str',
22
22
  'x_environment_id': 'str',
23
23
  'limit': 'str',
24
- 'offset': 'str'
24
+ 'offset': 'str',
25
+ 'sort_key': 'str',
26
+ 'sort': 'str'
25
27
  }
26
28
 
27
29
  attribute_map = {
@@ -29,10 +31,12 @@ class ListComponentsRequest:
29
31
  'x_enterprise_project_id': 'X-Enterprise-Project-ID',
30
32
  'x_environment_id': 'X-Environment-ID',
31
33
  'limit': 'limit',
32
- 'offset': 'offset'
34
+ 'offset': 'offset',
35
+ 'sort_key': 'sort_key',
36
+ 'sort': 'sort'
33
37
  }
34
38
 
35
- def __init__(self, application_id=None, x_enterprise_project_id=None, x_environment_id=None, limit=None, offset=None):
39
+ def __init__(self, application_id=None, x_enterprise_project_id=None, x_environment_id=None, limit=None, offset=None, sort_key=None, sort=None):
36
40
  """ListComponentsRequest
37
41
 
38
42
  The model defined in huaweicloud sdk
@@ -47,6 +51,10 @@ class ListComponentsRequest:
47
51
  :type limit: str
48
52
  :param offset: 分页偏移位,查询起始位置。
49
53
  :type offset: str
54
+ :param sort_key: 排序字段。
55
+ :type sort_key: str
56
+ :param sort: 升降序规则。
57
+ :type sort: str
50
58
  """
51
59
 
52
60
 
@@ -56,6 +64,8 @@ class ListComponentsRequest:
56
64
  self._x_environment_id = None
57
65
  self._limit = None
58
66
  self._offset = None
67
+ self._sort_key = None
68
+ self._sort = None
59
69
  self.discriminator = None
60
70
 
61
71
  self.application_id = application_id
@@ -66,6 +76,10 @@ class ListComponentsRequest:
66
76
  self.limit = limit
67
77
  if offset is not None:
68
78
  self.offset = offset
79
+ if sort_key is not None:
80
+ self.sort_key = sort_key
81
+ if sort is not None:
82
+ self.sort = sort
69
83
 
70
84
  @property
71
85
  def application_id(self):
@@ -177,6 +191,50 @@ class ListComponentsRequest:
177
191
  """
178
192
  self._offset = offset
179
193
 
194
+ @property
195
+ def sort_key(self):
196
+ """Gets the sort_key of this ListComponentsRequest.
197
+
198
+ 排序字段。
199
+
200
+ :return: The sort_key of this ListComponentsRequest.
201
+ :rtype: str
202
+ """
203
+ return self._sort_key
204
+
205
+ @sort_key.setter
206
+ def sort_key(self, sort_key):
207
+ """Sets the sort_key of this ListComponentsRequest.
208
+
209
+ 排序字段。
210
+
211
+ :param sort_key: The sort_key of this ListComponentsRequest.
212
+ :type sort_key: str
213
+ """
214
+ self._sort_key = sort_key
215
+
216
+ @property
217
+ def sort(self):
218
+ """Gets the sort of this ListComponentsRequest.
219
+
220
+ 升降序规则。
221
+
222
+ :return: The sort of this ListComponentsRequest.
223
+ :rtype: str
224
+ """
225
+ return self._sort
226
+
227
+ @sort.setter
228
+ def sort(self, sort):
229
+ """Sets the sort of this ListComponentsRequest.
230
+
231
+ 升降序规则。
232
+
233
+ :param sort: The sort of this ListComponentsRequest.
234
+ :type sort: str
235
+ """
236
+ self._sort = sort
237
+
180
238
  def to_dict(self):
181
239
  """Returns the model properties as a dict"""
182
240
  result = {}
@@ -18,21 +18,25 @@ class ListEipResponseBodySpecEgress:
18
18
 
19
19
  openapi_types = {
20
20
  'bandwidth_size': 'int',
21
+ 'enabled': 'bool',
21
22
  'ip_list': 'list[str]'
22
23
  }
23
24
 
24
25
  attribute_map = {
25
26
  'bandwidth_size': 'bandwidth_size',
27
+ 'enabled': 'enabled',
26
28
  'ip_list': 'ip_list'
27
29
  }
28
30
 
29
- def __init__(self, bandwidth_size=None, ip_list=None):
31
+ def __init__(self, bandwidth_size=None, enabled=None, ip_list=None):
30
32
  """ListEipResponseBodySpecEgress
31
33
 
32
34
  The model defined in huaweicloud sdk
33
35
 
34
36
  :param bandwidth_size: 出网IP带宽。
35
37
  :type bandwidth_size: int
38
+ :param enabled: 是否关闭出网IP。
39
+ :type enabled: bool
36
40
  :param ip_list: 出网IP列表。
37
41
  :type ip_list: list[str]
38
42
  """
@@ -40,11 +44,14 @@ class ListEipResponseBodySpecEgress:
40
44
 
41
45
 
42
46
  self._bandwidth_size = None
47
+ self._enabled = None
43
48
  self._ip_list = None
44
49
  self.discriminator = None
45
50
 
46
51
  if bandwidth_size is not None:
47
52
  self.bandwidth_size = bandwidth_size
53
+ if enabled is not None:
54
+ self.enabled = enabled
48
55
  if ip_list is not None:
49
56
  self.ip_list = ip_list
50
57
 
@@ -70,6 +77,28 @@ class ListEipResponseBodySpecEgress:
70
77
  """
71
78
  self._bandwidth_size = bandwidth_size
72
79
 
80
+ @property
81
+ def enabled(self):
82
+ """Gets the enabled of this ListEipResponseBodySpecEgress.
83
+
84
+ 是否关闭出网IP。
85
+
86
+ :return: The enabled of this ListEipResponseBodySpecEgress.
87
+ :rtype: bool
88
+ """
89
+ return self._enabled
90
+
91
+ @enabled.setter
92
+ def enabled(self, enabled):
93
+ """Sets the enabled of this ListEipResponseBodySpecEgress.
94
+
95
+ 是否关闭出网IP。
96
+
97
+ :param enabled: The enabled of this ListEipResponseBodySpecEgress.
98
+ :type enabled: bool
99
+ """
100
+ self._enabled = enabled
101
+
73
102
  @property
74
103
  def ip_list(self):
75
104
  """Gets the ip_list of this ListEipResponseBodySpecEgress.
@@ -18,21 +18,25 @@ class ListEipResponseBodySpecIngress:
18
18
 
19
19
  openapi_types = {
20
20
  'bandwidth_size': 'int',
21
+ 'enabled': 'bool',
21
22
  'ip_list': 'list[str]'
22
23
  }
23
24
 
24
25
  attribute_map = {
25
26
  'bandwidth_size': 'bandwidth_size',
27
+ 'enabled': 'enabled',
26
28
  'ip_list': 'ip_list'
27
29
  }
28
30
 
29
- def __init__(self, bandwidth_size=None, ip_list=None):
31
+ def __init__(self, bandwidth_size=None, enabled=None, ip_list=None):
30
32
  """ListEipResponseBodySpecIngress
31
33
 
32
34
  The model defined in huaweicloud sdk
33
35
 
34
36
  :param bandwidth_size: 入网IP带宽
35
37
  :type bandwidth_size: int
38
+ :param enabled: 是否关闭入网IP。
39
+ :type enabled: bool
36
40
  :param ip_list: 入网IP列表
37
41
  :type ip_list: list[str]
38
42
  """
@@ -40,11 +44,14 @@ class ListEipResponseBodySpecIngress:
40
44
 
41
45
 
42
46
  self._bandwidth_size = None
47
+ self._enabled = None
43
48
  self._ip_list = None
44
49
  self.discriminator = None
45
50
 
46
51
  if bandwidth_size is not None:
47
52
  self.bandwidth_size = bandwidth_size
53
+ if enabled is not None:
54
+ self.enabled = enabled
48
55
  if ip_list is not None:
49
56
  self.ip_list = ip_list
50
57
 
@@ -70,6 +77,28 @@ class ListEipResponseBodySpecIngress:
70
77
  """
71
78
  self._bandwidth_size = bandwidth_size
72
79
 
80
+ @property
81
+ def enabled(self):
82
+ """Gets the enabled of this ListEipResponseBodySpecIngress.
83
+
84
+ 是否关闭入网IP。
85
+
86
+ :return: The enabled of this ListEipResponseBodySpecIngress.
87
+ :rtype: bool
88
+ """
89
+ return self._enabled
90
+
91
+ @enabled.setter
92
+ def enabled(self, enabled):
93
+ """Sets the enabled of this ListEipResponseBodySpecIngress.
94
+
95
+ 是否关闭入网IP。
96
+
97
+ :param enabled: The enabled of this ListEipResponseBodySpecIngress.
98
+ :type enabled: bool
99
+ """
100
+ self._enabled = enabled
101
+
73
102
  @property
74
103
  def ip_list(self):
75
104
  """Gets the ip_list of this ListEipResponseBodySpecIngress.
@@ -18,15 +18,17 @@ class NoticeRuleNotification:
18
18
 
19
19
  openapi_types = {
20
20
  'protocol': 'str',
21
- 'endpoint': 'str'
21
+ 'endpoint': 'str',
22
+ 'template': 'str'
22
23
  }
23
24
 
24
25
  attribute_map = {
25
26
  'protocol': 'protocol',
26
- 'endpoint': 'endpoint'
27
+ 'endpoint': 'endpoint',
28
+ 'template': 'template'
27
29
  }
28
30
 
29
- def __init__(self, protocol=None, endpoint=None):
31
+ def __init__(self, protocol=None, endpoint=None, template=None):
30
32
  """NoticeRuleNotification
31
33
 
32
34
  The model defined in huaweicloud sdk
@@ -35,16 +37,21 @@ class NoticeRuleNotification:
35
37
  :type protocol: str
36
38
  :param endpoint: 通知的终端地址。 email协议,接入点必须是邮件地址。 sms协议,接入点必须是一个电话号码。 wechat协议,参考https://support.huaweicloud.com/smn_faq/smn_faq_0027.html获取订阅终端, 企业微信群消息为SMN服务公测功能,需提交工单申请开通。
37
39
  :type endpoint: str
40
+ :param template: 通知的模板语言。 ZH,中文。 EN,英文。
41
+ :type template: str
38
42
  """
39
43
 
40
44
 
41
45
 
42
46
  self._protocol = None
43
47
  self._endpoint = None
48
+ self._template = None
44
49
  self.discriminator = None
45
50
 
46
51
  self.protocol = protocol
47
52
  self.endpoint = endpoint
53
+ if template is not None:
54
+ self.template = template
48
55
 
49
56
  @property
50
57
  def protocol(self):
@@ -90,6 +97,28 @@ class NoticeRuleNotification:
90
97
  """
91
98
  self._endpoint = endpoint
92
99
 
100
+ @property
101
+ def template(self):
102
+ """Gets the template of this NoticeRuleNotification.
103
+
104
+ 通知的模板语言。 ZH,中文。 EN,英文。
105
+
106
+ :return: The template of this NoticeRuleNotification.
107
+ :rtype: str
108
+ """
109
+ return self._template
110
+
111
+ @template.setter
112
+ def template(self, template):
113
+ """Sets the template of this NoticeRuleNotification.
114
+
115
+ 通知的模板语言。 ZH,中文。 EN,英文。
116
+
117
+ :param template: The template of this NoticeRuleNotification.
118
+ :type template: str
119
+ """
120
+ self._template = template
121
+
93
122
  def to_dict(self):
94
123
  """Returns the model properties as a dict"""
95
124
  result = {}
@@ -55,10 +55,8 @@ class UpdateComponentRequestBody:
55
55
 
56
56
  self.api_version = api_version
57
57
  self.kind = kind
58
- if metadata is not None:
59
- self.metadata = metadata
60
- if spec is not None:
61
- self.spec = spec
58
+ self.metadata = metadata
59
+ self.spec = spec
62
60
 
63
61
  @property
64
62
  def api_version(self):
@@ -17,29 +17,36 @@ class UpdateEipRequestBodySpecEgress:
17
17
  sensitive_list = []
18
18
 
19
19
  openapi_types = {
20
- 'bandwidth_size': 'int'
20
+ 'bandwidth_size': 'int',
21
+ 'enabled': 'bool'
21
22
  }
22
23
 
23
24
  attribute_map = {
24
- 'bandwidth_size': 'bandwidth_size'
25
+ 'bandwidth_size': 'bandwidth_size',
26
+ 'enabled': 'enabled'
25
27
  }
26
28
 
27
- def __init__(self, bandwidth_size=None):
29
+ def __init__(self, bandwidth_size=None, enabled=None):
28
30
  """UpdateEipRequestBodySpecEgress
29
31
 
30
32
  The model defined in huaweicloud sdk
31
33
 
32
34
  :param bandwidth_size: 出网IP带宽。
33
35
  :type bandwidth_size: int
36
+ :param enabled: 是否关闭出网IP。
37
+ :type enabled: bool
34
38
  """
35
39
 
36
40
 
37
41
 
38
42
  self._bandwidth_size = None
43
+ self._enabled = None
39
44
  self.discriminator = None
40
45
 
41
46
  if bandwidth_size is not None:
42
47
  self.bandwidth_size = bandwidth_size
48
+ if enabled is not None:
49
+ self.enabled = enabled
43
50
 
44
51
  @property
45
52
  def bandwidth_size(self):
@@ -63,6 +70,28 @@ class UpdateEipRequestBodySpecEgress:
63
70
  """
64
71
  self._bandwidth_size = bandwidth_size
65
72
 
73
+ @property
74
+ def enabled(self):
75
+ """Gets the enabled of this UpdateEipRequestBodySpecEgress.
76
+
77
+ 是否关闭出网IP。
78
+
79
+ :return: The enabled of this UpdateEipRequestBodySpecEgress.
80
+ :rtype: bool
81
+ """
82
+ return self._enabled
83
+
84
+ @enabled.setter
85
+ def enabled(self, enabled):
86
+ """Sets the enabled of this UpdateEipRequestBodySpecEgress.
87
+
88
+ 是否关闭出网IP。
89
+
90
+ :param enabled: The enabled of this UpdateEipRequestBodySpecEgress.
91
+ :type enabled: bool
92
+ """
93
+ self._enabled = enabled
94
+
66
95
  def to_dict(self):
67
96
  """Returns the model properties as a dict"""
68
97
  result = {}
@@ -17,29 +17,36 @@ class UpdateEipRequestBodySpecIngress:
17
17
  sensitive_list = []
18
18
 
19
19
  openapi_types = {
20
- 'bandwidth_size': 'int'
20
+ 'bandwidth_size': 'int',
21
+ 'enabled': 'bool'
21
22
  }
22
23
 
23
24
  attribute_map = {
24
- 'bandwidth_size': 'bandwidth_size'
25
+ 'bandwidth_size': 'bandwidth_size',
26
+ 'enabled': 'enabled'
25
27
  }
26
28
 
27
- def __init__(self, bandwidth_size=None):
29
+ def __init__(self, bandwidth_size=None, enabled=None):
28
30
  """UpdateEipRequestBodySpecIngress
29
31
 
30
32
  The model defined in huaweicloud sdk
31
33
 
32
34
  :param bandwidth_size: 入网IP带宽。
33
35
  :type bandwidth_size: int
36
+ :param enabled: 是否关闭入网IP。
37
+ :type enabled: bool
34
38
  """
35
39
 
36
40
 
37
41
 
38
42
  self._bandwidth_size = None
43
+ self._enabled = None
39
44
  self.discriminator = None
40
45
 
41
46
  if bandwidth_size is not None:
42
47
  self.bandwidth_size = bandwidth_size
48
+ if enabled is not None:
49
+ self.enabled = enabled
43
50
 
44
51
  @property
45
52
  def bandwidth_size(self):
@@ -63,6 +70,28 @@ class UpdateEipRequestBodySpecIngress:
63
70
  """
64
71
  self._bandwidth_size = bandwidth_size
65
72
 
73
+ @property
74
+ def enabled(self):
75
+ """Gets the enabled of this UpdateEipRequestBodySpecIngress.
76
+
77
+ 是否关闭入网IP。
78
+
79
+ :return: The enabled of this UpdateEipRequestBodySpecIngress.
80
+ :rtype: bool
81
+ """
82
+ return self._enabled
83
+
84
+ @enabled.setter
85
+ def enabled(self, enabled):
86
+ """Sets the enabled of this UpdateEipRequestBodySpecIngress.
87
+
88
+ 是否关闭入网IP。
89
+
90
+ :param enabled: The enabled of this UpdateEipRequestBodySpecIngress.
91
+ :type enabled: bool
92
+ """
93
+ self._enabled = enabled
94
+
66
95
  def to_dict(self):
67
96
  """Returns the model properties as a dict"""
68
97
  result = {}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: huaweicloudsdkcae
3
- Version: 3.1.110
3
+ Version: 3.1.112
4
4
  Summary: CAE
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.110
25
+ Requires-Dist: huaweicloudsdkcore>=3.1.112
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
  huaweicloudsdkcae/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- huaweicloudsdkcae/v1/__init__.py,sha256=9ZOrcm4s4w637AEKh0GbAMy2t-BVieMMMCcHfZsbDUA,20975
3
- huaweicloudsdkcae/v1/cae_async_client.py,sha256=pUqgAcF8ddXOR_jcGhx3AeZLBjZYVyFTsJyEBck-0Is,127160
4
- huaweicloudsdkcae/v1/cae_client.py,sha256=9CDwXugVY3VoxnepBueaLTddUAawAAiqoAjU1aThGbU,127159
5
- huaweicloudsdkcae/v1/model/__init__.py,sha256=km1c3ZB0nYgXeLzfkVGAza5C7MVLG8vhe25wT2tDuCw,20889
2
+ huaweicloudsdkcae/v1/__init__.py,sha256=daZCEILluqBo7n3XLvscN8QrAMNzApNT0na7dzsVeyE,20726
3
+ huaweicloudsdkcae/v1/cae_async_client.py,sha256=d1b6k6ORQmF5SPvQrGAXbVTJrNPYozs-Qaned5xGeU8,124798
4
+ huaweicloudsdkcae/v1/cae_client.py,sha256=-yYYsVgZaIs7qEgBNZeWFNz45bVeE3fpdwThEUV8no0,124795
5
+ huaweicloudsdkcae/v1/model/__init__.py,sha256=_f-yLejD2IqwBsJAlYL9qPcKtjwYNpgtAIe1oYaZf5E,20640
6
6
  huaweicloudsdkcae/v1/model/access.py,sha256=0xqNmw_Fm4AGwHLp9NS0NKl4sI0uvoEVIOe5aW9-Gr0,3611
7
7
  huaweicloudsdkcae/v1/model/access_configuration_data_items.py,sha256=gFxOZxgM0QxrF_qUrePgHYN6RDgZIY1eS9Eqxa7Cg78,10445
8
8
  huaweicloudsdkcae/v1/model/access_configuration_http_path.py,sha256=EHJjhTkSlZCcXpeBtHApu36hG7Toj10HLNDKemMkQyw,5037
@@ -27,8 +27,8 @@ huaweicloudsdkcae/v1/model/build.py,sha256=S97MsBY0Ru35G6avkYKP9HK4KzGmyWI3evAqu
27
27
  huaweicloudsdkcae/v1/model/cert_item.py,sha256=dVoCx-aWPUmoq2S46gm1TV_LnbEw8DI-oNnSxzR9dNg,3728
28
28
  huaweicloudsdkcae/v1/model/cert_req.py,sha256=ksRLqKvUeIzc67LX2SA-wFWfaoeLV1haKc--HIa3Jk8,5189
29
29
  huaweicloudsdkcae/v1/model/certificate_kind_obj.py,sha256=yQep89AloheRy1n-_flGLaAJvrXw4cZ95y4o9QjOab0,2383
30
+ huaweicloudsdkcae/v1/model/cloud_storage_log_path_info.py,sha256=2Dl7PRth1q5CbhYNlR32zPCYfixiVmK2CrxJkuAzwhs,4165
30
31
  huaweicloudsdkcae/v1/model/component_configuration_kind_obj.py,sha256=y_4FRtYJGYwfpi6EI-HI3WlZMxsS0qSwq5aVJf2L3fk,2438
31
- huaweicloudsdkcae/v1/model/component_event_kind_obj.py,sha256=g2v63A2yjvQakWxwNK4ebBoYebAXZGCCuAoXf4mxFkw,2398
32
32
  huaweicloudsdkcae/v1/model/component_execution_result.py,sha256=fZeecKgEj_LAErZy1mXZ-SQHUNq0GFzMVyfyYkuJF-s,6054
33
33
  huaweicloudsdkcae/v1/model/component_info.py,sha256=sR5msgdoRCYwwy8Rggku9p9Iq6TR_4gAPGOrbWQ4MqQ,4003
34
34
  huaweicloudsdkcae/v1/model/component_item.py,sha256=covdRmdsyjnXod-_MYi5vxGMXtc5YlDJVCTpIGuOSv0,6737
@@ -37,14 +37,14 @@ huaweicloudsdkcae/v1/model/component_snapshot_context.py,sha256=R6vWzIOc7juSZPY6
37
37
  huaweicloudsdkcae/v1/model/component_snapshot_item.py,sha256=zqRr0SDr5F_OpJPXwqpvwrMRuoTGSA9SDKkGDozA-Dk,6430
38
38
  huaweicloudsdkcae/v1/model/component_snapshot_kind_obj.py,sha256=IbdcrtHYxbOgD9b-CgrFGrIPddkeAaObyWxkGYp_jgU,2413
39
39
  huaweicloudsdkcae/v1/model/component_spec.py,sha256=UmDJzUlaYKP5AH0ivv8i4XVFlVUEx_nTjyyFOklGdDo,13705
40
- huaweicloudsdkcae/v1/model/configuration.py,sha256=mSvCedoVzoxWn42umWHJgVY9B3HDBlamM7aEu-kj8xY,6303
40
+ huaweicloudsdkcae/v1/model/configuration.py,sha256=AWDwD3vPSrWoRjPOYBGgrfNKTpcvS-ynLVZuJZg3T44,7096
41
41
  huaweicloudsdkcae/v1/model/configuration_data.py,sha256=6uMKKjiiWCHP1u1DSePL66dujmCBu7HoWqWa9y4kY-k,3975
42
42
  huaweicloudsdkcae/v1/model/configuration_data_metadata.py,sha256=Wv2xPCOfMFONQP0R-Mat6WGkiJP1aFe0I8Oxzp9aNfY,3899
43
43
  huaweicloudsdkcae/v1/model/configuration_item.py,sha256=01n4Dv9pqR2xI1feN41qrKZ0BSuBc4N4CDdeVa6wh74,3678
44
- huaweicloudsdkcae/v1/model/configuration_request_data_spec.py,sha256=-592dnPTHE_vuVlg7_kNoo9ZRRe-tMbOB5IHxHhpxQs,33276
44
+ huaweicloudsdkcae/v1/model/configuration_request_data_spec.py,sha256=RGIbAFXP7vjP3Ut7mYurBVyzDTVIHXMA6BRlPL4o8h8,34914
45
45
  huaweicloudsdkcae/v1/model/configuration_request_data_spec_post_start.py,sha256=J83_cG2_pQXRgsPRkwFGzxqo1LZpbYo0qviR-1kSpX8,3256
46
46
  huaweicloudsdkcae/v1/model/configuration_request_data_spec_pre_stop.py,sha256=Frobur6Kn1gU5FVTS0sdK6xgTGkEZQUBB521WGchyEY,3242
47
- huaweicloudsdkcae/v1/model/configuration_response_data_spec.py,sha256=N007EihHJyGkAqzLgS8tmcDG4Xjkycgefu-eyRcjCGg,44833
47
+ huaweicloudsdkcae/v1/model/configuration_response_data_spec.py,sha256=4Kc6D4rpgoV4j2uDIo6mql38kb8pONFlt4WqPMYBAdU,46463
48
48
  huaweicloudsdkcae/v1/model/configuration_response_data_spec_post_start.py,sha256=jxCw7V2mT0zURBIgPKDMC9K1-Q67Lj9kbpRSvvGhsBY,3263
49
49
  huaweicloudsdkcae/v1/model/configuration_response_data_spec_pre_stop.py,sha256=1ysrlaUmv_Vg23oC2TtMj-DJV_6qYFUpshYIb2kJ-xU,3249
50
50
  huaweicloudsdkcae/v1/model/create_agency_request.py,sha256=JCywZuSwrxA7vZMIUu5djNeVBXb0xdxtFHmRKPg-Of4,3059
@@ -59,7 +59,7 @@ huaweicloudsdkcae/v1/model/create_component_configuration_request.py,sha256=jWSm
59
59
  huaweicloudsdkcae/v1/model/create_component_configuration_request_body.py,sha256=zZoKd-xkln6XMnTL3tjVJjD8eSmu4_vxqKSJ7rK4Oc0,5093
60
60
  huaweicloudsdkcae/v1/model/create_component_configuration_response.py,sha256=xJQCTIIj9xzNQyMcYmrHfbHVOo4JfEfbF-JXcIu2Sj8,2495
61
61
  huaweicloudsdkcae/v1/model/create_component_request.py,sha256=D3E9JG6990BD2ZfjTH4mY3bixGFYLagPJ5pp8LB_Jtw,8344
62
- huaweicloudsdkcae/v1/model/create_component_request_body.py,sha256=KGRfx_e405X7vDBrcxmv8o424OH7Pt-baOyPcshHdtQ,5892
62
+ huaweicloudsdkcae/v1/model/create_component_request_body.py,sha256=8AqziJ-yT-psync04WvPHaGbRtUaRWQYCinmIFYB3R0,5822
63
63
  huaweicloudsdkcae/v1/model/create_component_response.py,sha256=9mVp3VK48wIG41OCJeY0TEOfxqW7lcsp_L2htCGVJiM,5772
64
64
  huaweicloudsdkcae/v1/model/create_component_spec.py,sha256=OoYkksoNING4zV9kzso6sHGeIq3rr3zWC4jPp6Wv3HQ,8704
65
65
  huaweicloudsdkcae/v1/model/create_component_with_configuration_request.py,sha256=ZyXVnepMkuZ5RwELfqUG88_-US5yYmDddZomOIkVvws,8752
@@ -120,7 +120,6 @@ huaweicloudsdkcae/v1/model/egress_cidr.py,sha256=Kv-OwzwfMTD3Vl3-jcGo3Dl2Xqb9JKB
120
120
  huaweicloudsdkcae/v1/model/eip_kind_obj.py,sha256=Sf0-7jTarAjOy2Jw3aKrcPkmB_j8IRyLH4qm6A8O_E4,2343
121
121
  huaweicloudsdkcae/v1/model/environment_item.py,sha256=vMdEpi57jcz62-3EpfRyRwF5AvEi5R11lqJK4TKnQq8,8911
122
122
  huaweicloudsdkcae/v1/model/environment_kind_obj.py,sha256=0MJd9GiKINqsZudc3iS5pMe3jxvvl6srwejFaWxXEGk,2383
123
- huaweicloudsdkcae/v1/model/event_item.py,sha256=vQ-lkJfiqrZ6PozXAg7TagNTDhAOzrANg0IOtn7f5fo,8480
124
123
  huaweicloudsdkcae/v1/model/execute_action_request.py,sha256=zBm5aICfEP7V-wI1U-FW7QG7wXXR8DwYA3MHymqvqI0,9107
125
124
  huaweicloudsdkcae/v1/model/execute_action_request_body.py,sha256=EvvkvX-9dG7vyRiGgYNn7o1Iv6aMiiP5vye2Wi5PzLk,5662
126
125
  huaweicloudsdkcae/v1/model/execute_action_request_body_metadata.py,sha256=OTjWLbdN3eZCM-tOZmT3q7xvSFYvFimxn-egYLdoiqw,3982
@@ -145,19 +144,17 @@ huaweicloudsdkcae/v1/model/list_certificates_response.py,sha256=htCxvBTlKSuAnthw
145
144
  huaweicloudsdkcae/v1/model/list_component_configurations_request.py,sha256=XMtYev2jMXGJiLlqnzE0cwI6ClUjROTrU6MjDRoNEcA,8552
146
145
  huaweicloudsdkcae/v1/model/list_component_configurations_response.py,sha256=a1rSawYFe_wBPJGj47lsXgCHQsqY3J1WwBf1qKpCyOM,5355
147
146
  huaweicloudsdkcae/v1/model/list_component_configurations_response_data.py,sha256=vycNFcGJUlLuvgBaWHthCeZWkUHufak4kxCx5yLY1kY,4221
148
- huaweicloudsdkcae/v1/model/list_component_events_request.py,sha256=x8zSXjlXCHPW1UP4ArK9U4cwX0vm9WXaE7hkQauX7SQ,8400
149
- huaweicloudsdkcae/v1/model/list_component_events_response.py,sha256=punulw2Zo7XqKWCSWX6q5SZxzHphR05REtYa82HzFOw,5058
150
147
  huaweicloudsdkcae/v1/model/list_component_instances_request.py,sha256=t4I8nt74vEbapJ8vjcNXa9e2HVxr_g01QOvYrQPnd5Q,8457
151
148
  huaweicloudsdkcae/v1/model/list_component_instances_response.py,sha256=WzaXnPhCk623bu42aQTLnt2keQ3aGQmN9aeR2Tebzlc,5161
152
149
  huaweicloudsdkcae/v1/model/list_component_snapshots_request.py,sha256=oQs8ynecw3myDodVrh8NLGnhRow8eHyn8jHYVFFsvHs,8457
153
150
  huaweicloudsdkcae/v1/model/list_component_snapshots_response.py,sha256=0SUNNbgi0owWtWkRjmu5uThXhY-Lxm2u0DwT_UxTbX4,5175
154
- huaweicloudsdkcae/v1/model/list_components_request.py,sha256=9TUbFSg_Trd_NBto4S4MIUcRNRD4bILRIRSbCFoBO_o,9062
151
+ huaweicloudsdkcae/v1/model/list_components_request.py,sha256=RLXt_gWjghP788OPDtbnjFQ1br6vrKiMvQQ6-Upkq1I,10531
155
152
  huaweicloudsdkcae/v1/model/list_components_response.py,sha256=EnKCINDHoeB1v6xl-ll4cN6xCLRD3Hb57A9rZ97C4qs,5832
156
153
  huaweicloudsdkcae/v1/model/list_domains_request.py,sha256=DXBnjIgXhidsYn9iZ1ChwILgXQWma_MV8t3btyBCrjM,6598
157
154
  huaweicloudsdkcae/v1/model/list_domains_response.py,sha256=Fe-xdeWhzzY1jiSifsPZE0FL7IM1Kh4KB_DU8A7rToc,4972
158
155
  huaweicloudsdkcae/v1/model/list_eip_response_body_spec.py,sha256=iy-GRp7TRfMpV7J3QrhbfhbNAQ_uDDZ82hD_7pXYKtY,4088
159
- huaweicloudsdkcae/v1/model/list_eip_response_body_spec_egress.py,sha256=USS5q7zB0mJlrkA0NBLnWf2CFsn9HhhzCAw7o1q19iw,4112
160
- huaweicloudsdkcae/v1/model/list_eip_response_body_spec_ingress.py,sha256=tArCchUmsbxyvjo9IcqQFjkqI7iGvd8vWXGmfwMgg0Y,4105
156
+ huaweicloudsdkcae/v1/model/list_eip_response_body_spec_egress.py,sha256=CBtzDX06-lQzDkEieWC4O-Cb_oWlOOmx7-3jmYWWdxo,4925
157
+ huaweicloudsdkcae/v1/model/list_eip_response_body_spec_ingress.py,sha256=xKOY_0QV17fmHehRbp-Gwo3VSLdH4vqWryQdGcFrfGs,4922
161
158
  huaweicloudsdkcae/v1/model/list_eips_request.py,sha256=fE380p743I3QaRZeRGeGl1XGhJ3Id-ZPYLouHGMre6k,6565
162
159
  huaweicloudsdkcae/v1/model/list_eips_response.py,sha256=-zpT9sP7TM8cC6KVyriOKDoRFLKlBtX5QH1KYzeo9mo,4791
163
160
  huaweicloudsdkcae/v1/model/list_environments_request.py,sha256=VZ7hiaGBWsNg4FDxbxcSqD7wRk0xpfkstZXkhx4rQlM,4803
@@ -177,7 +174,7 @@ huaweicloudsdkcae/v1/model/monitor_system_kind_obj.py,sha256=dAKTPJoZuQ-e6PEPYBc
177
174
  huaweicloudsdkcae/v1/model/monitor_system_request_body.py,sha256=fWMiNKC1EqmmHA75E1yezsHd1YsP46dghoF9QaTGuO8,4862
178
175
  huaweicloudsdkcae/v1/model/monitor_system_request_body_spec.py,sha256=XQKuwxOCDN0x3rgrFo99OdyOUb-h_r05uoxnw9rYKrU,9449
179
176
  huaweicloudsdkcae/v1/model/mount_component.py,sha256=qCDTSHtBFi5Rof8B6Pg8n4PlFtNpPaYdiLD_gpgKiaw,6890
180
- huaweicloudsdkcae/v1/model/notice_rule_notification.py,sha256=DYzQIsoYlCzrAKwkfIRyqnQ7uZJp1qKIGhOkhvlW06w,4854
177
+ huaweicloudsdkcae/v1/model/notice_rule_notification.py,sha256=KuWdoJJR14-7jtj1liO17V6LwQEisUlRmLysCjaXs5o,5751
181
178
  huaweicloudsdkcae/v1/model/notice_rule_scope.py,sha256=a24KxjWiIf-OeRrIFhlY1aUdVydz95yB238tj_VMLMo,6103
182
179
  huaweicloudsdkcae/v1/model/repo.py,sha256=EridbuI9Z0-id2czmZiEuOk8NdhfANvG8uT_aD_4EVg,4493
183
180
  huaweicloudsdkcae/v1/model/resource_limit.py,sha256=fFAeQEF2g3emV2pX_y5oDy0QVpITFdRaWYlA5ajVw5E,3812
@@ -211,15 +208,15 @@ huaweicloudsdkcae/v1/model/update_cert_req.py,sha256=lmMr894J61q__9ezPt_0Ywxm0Qg
211
208
  huaweicloudsdkcae/v1/model/update_certificate_request.py,sha256=tiBi7zpiHnlGVRp9iv7bV-5j78kZMkOc_8jJSYVTUzU,8332
212
209
  huaweicloudsdkcae/v1/model/update_certificate_response.py,sha256=kSK1Y5A_oywTt0y0sc6VpVhZveI0UZlElZZgrsDZcTs,2451
213
210
  huaweicloudsdkcae/v1/model/update_component_request.py,sha256=S2iUgR8RoLrLeXfXZt5Cfe3EOrmkPiHKU4svtcLTQjc,9163
214
- huaweicloudsdkcae/v1/model/update_component_request_body.py,sha256=MAp5KO42rAwknVfeaLSjODQEgq5AjaqtWxML0Nuw_Aw,5724
211
+ huaweicloudsdkcae/v1/model/update_component_request_body.py,sha256=1eY1aYlkpAlUlaS0-BDFrhBjaUbu8IriBVunyhkZRc4,5654
215
212
  huaweicloudsdkcae/v1/model/update_component_request_metadata.py,sha256=5UwNZ3T8xn39xj1Z1levAhe018TSrpiyTdhfAvTdvRU,4170
216
213
  huaweicloudsdkcae/v1/model/update_component_request_spec.py,sha256=Vgsv7oh_2l5h92Vc-D13apL9SCKN4B2LotUgBq8nyys,6397
217
214
  huaweicloudsdkcae/v1/model/update_component_response.py,sha256=kzd8zZ0a7CKN-jKmBtMvV4VBVuGkx58OPYq6pDcByZk,2443
218
215
  huaweicloudsdkcae/v1/model/update_eip_request.py,sha256=uXV5eCsvujnCJnEvu9pSpG7HhHxwWdm7tTLuUuYr1_o,7361
219
216
  huaweicloudsdkcae/v1/model/update_eip_request_body.py,sha256=MAGsqa_g3otM2tKB7dSd6f-7phKDzqKtj--M9XwFMao,4746
220
217
  huaweicloudsdkcae/v1/model/update_eip_request_body_spec.py,sha256=i6A6VQR5RVkHLUEynNlP509vxP0v0zJMNxKLDjVQEkI,4107
221
- huaweicloudsdkcae/v1/model/update_eip_request_body_spec_egress.py,sha256=NEhPVISd1o-MpM6Aaw3MIEV5tq67Z5jTTZBh9lSOXvc,3304
222
- huaweicloudsdkcae/v1/model/update_eip_request_body_spec_ingress.py,sha256=kGm5gs16hwznVnLIi8hje6h0TB57yffp1FxoF49G6xM,3311
218
+ huaweicloudsdkcae/v1/model/update_eip_request_body_spec_egress.py,sha256=0wZsNtD1quGXcR6em-RLvLlQ0EJFGuDpG_hTImiSpwc,4121
219
+ huaweicloudsdkcae/v1/model/update_eip_request_body_spec_ingress.py,sha256=FVRo0yskGP74i_WMu87vqE4KcoctmMFPPeet7_cUYWk,4132
223
220
  huaweicloudsdkcae/v1/model/update_eip_response.py,sha256=7HoS1ZBu1RF-ap56ECokmtmUvRdxqBi7ntybuBE08zM,2419
224
221
  huaweicloudsdkcae/v1/model/update_monitor_system_request.py,sha256=uyLdS7ll-d26GFHByd8MCsxAUJlgTVBtpN84ExedHE4,8518
225
222
  huaweicloudsdkcae/v1/model/update_monitor_system_response.py,sha256=6kDmHuPR67SLj6WIwnlQjyFNbapZ7fRiqsQ64V-_CKY,2459
@@ -243,8 +240,8 @@ huaweicloudsdkcae/v1/model/vpc_egress_request_body_spec.py,sha256=UOWANus9wddqNC
243
240
  huaweicloudsdkcae/v1/model/vpc_egress_response_body_spec.py,sha256=CF7CeqWOcGrevnTBeLYHDXcDnerM01A0z3Gc5n6l4Ok,4816
244
241
  huaweicloudsdkcae/v1/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
245
242
  huaweicloudsdkcae/v1/region/cae_region.py,sha256=jwRHLF_CPoikdZ37-x0FehGQx6cPnz6zvu7BuXBFA-0,1536
246
- huaweicloudsdkcae-3.1.110.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
247
- huaweicloudsdkcae-3.1.110.dist-info/METADATA,sha256=t5g_8KVMxwbwh0qX13Q8j3CQbCizrmd_UYBmDbQcTAE,1135
248
- huaweicloudsdkcae-3.1.110.dist-info/WHEEL,sha256=fS9sRbCBHs7VFcwJLnLXN1MZRR0_TVTxvXKzOnaSFs8,110
249
- huaweicloudsdkcae-3.1.110.dist-info/top_level.txt,sha256=bSiBgsEXtNwy-Yv8143HEaMChUEIffdz2t9FM-26QjM,18
250
- huaweicloudsdkcae-3.1.110.dist-info/RECORD,,
243
+ huaweicloudsdkcae-3.1.112.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
244
+ huaweicloudsdkcae-3.1.112.dist-info/METADATA,sha256=riDEtc7bALNARkLLCzBTUZL26PmhTyVQzEaNP76Q0V4,1135
245
+ huaweicloudsdkcae-3.1.112.dist-info/WHEEL,sha256=fS9sRbCBHs7VFcwJLnLXN1MZRR0_TVTxvXKzOnaSFs8,110
246
+ huaweicloudsdkcae-3.1.112.dist-info/top_level.txt,sha256=bSiBgsEXtNwy-Yv8143HEaMChUEIffdz2t9FM-26QjM,18
247
+ huaweicloudsdkcae-3.1.112.dist-info/RECORD,,