huaweicloudsdkcae 3.1.111__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.

@@ -29,6 +29,7 @@ from huaweicloudsdkcae.v1.model.build import Build
29
29
  from huaweicloudsdkcae.v1.model.cert_item import CertItem
30
30
  from huaweicloudsdkcae.v1.model.cert_req import CertReq
31
31
  from huaweicloudsdkcae.v1.model.certificate_kind_obj import CertificateKindObj
32
+ from huaweicloudsdkcae.v1.model.cloud_storage_log_path_info import CloudStorageLogPathInfo
32
33
  from huaweicloudsdkcae.v1.model.component_configuration_kind_obj import ComponentConfigurationKindObj
33
34
  from huaweicloudsdkcae.v1.model.component_execution_result import ComponentExecutionResult
34
35
  from huaweicloudsdkcae.v1.model.component_info import ComponentInfo
@@ -1180,6 +1180,10 @@ class CaeAsyncClient(Client):
1180
1180
  query_params.append(('limit', local_var_params['limit']))
1181
1181
  if 'offset' in local_var_params:
1182
1182
  query_params.append(('offset', local_var_params['offset']))
1183
+ if 'sort_key' in local_var_params:
1184
+ query_params.append(('sort_key', local_var_params['sort_key']))
1185
+ if 'sort' in local_var_params:
1186
+ query_params.append(('sort', local_var_params['sort']))
1183
1187
 
1184
1188
  header_params = {}
1185
1189
  if 'x_enterprise_project_id' in local_var_params:
@@ -1180,6 +1180,10 @@ class CaeClient(Client):
1180
1180
  query_params.append(('limit', local_var_params['limit']))
1181
1181
  if 'offset' in local_var_params:
1182
1182
  query_params.append(('offset', local_var_params['offset']))
1183
+ if 'sort_key' in local_var_params:
1184
+ query_params.append(('sort_key', local_var_params['sort_key']))
1185
+ if 'sort' in local_var_params:
1186
+ query_params.append(('sort', local_var_params['sort']))
1183
1187
 
1184
1188
  header_params = {}
1185
1189
  if 'x_enterprise_project_id' in local_var_params:
@@ -27,6 +27,7 @@ from huaweicloudsdkcae.v1.model.build import Build
27
27
  from huaweicloudsdkcae.v1.model.cert_item import CertItem
28
28
  from huaweicloudsdkcae.v1.model.cert_req import CertReq
29
29
  from huaweicloudsdkcae.v1.model.certificate_kind_obj import CertificateKindObj
30
+ from huaweicloudsdkcae.v1.model.cloud_storage_log_path_info import CloudStorageLogPathInfo
30
31
  from huaweicloudsdkcae.v1.model.component_configuration_kind_obj import ComponentConfigurationKindObj
31
32
  from huaweicloudsdkcae.v1.model.component_execution_result import ComponentExecutionResult
32
33
  from huaweicloudsdkcae.v1.model.component_info import ComponentInfo
@@ -0,0 +1,144 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
6
+
7
+
8
+ class CloudStorageLogPathInfo:
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
+ 'dir_path': 'str',
21
+ 'file_name_pattern': 'str'
22
+ }
23
+
24
+ attribute_map = {
25
+ 'dir_path': 'dir_path',
26
+ 'file_name_pattern': 'file_name_pattern'
27
+ }
28
+
29
+ def __init__(self, dir_path=None, file_name_pattern=None):
30
+ """CloudStorageLogPathInfo
31
+
32
+ The model defined in huaweicloud sdk
33
+
34
+ :param dir_path: 容器挂载路径。
35
+ :type dir_path: str
36
+ :param file_name_pattern: 日志文件名匹配模式。
37
+ :type file_name_pattern: str
38
+ """
39
+
40
+
41
+
42
+ self._dir_path = None
43
+ self._file_name_pattern = None
44
+ self.discriminator = None
45
+
46
+ if dir_path is not None:
47
+ self.dir_path = dir_path
48
+ if file_name_pattern is not None:
49
+ self.file_name_pattern = file_name_pattern
50
+
51
+ @property
52
+ def dir_path(self):
53
+ """Gets the dir_path of this CloudStorageLogPathInfo.
54
+
55
+ 容器挂载路径。
56
+
57
+ :return: The dir_path of this CloudStorageLogPathInfo.
58
+ :rtype: str
59
+ """
60
+ return self._dir_path
61
+
62
+ @dir_path.setter
63
+ def dir_path(self, dir_path):
64
+ """Sets the dir_path of this CloudStorageLogPathInfo.
65
+
66
+ 容器挂载路径。
67
+
68
+ :param dir_path: The dir_path of this CloudStorageLogPathInfo.
69
+ :type dir_path: str
70
+ """
71
+ self._dir_path = dir_path
72
+
73
+ @property
74
+ def file_name_pattern(self):
75
+ """Gets the file_name_pattern of this CloudStorageLogPathInfo.
76
+
77
+ 日志文件名匹配模式。
78
+
79
+ :return: The file_name_pattern of this CloudStorageLogPathInfo.
80
+ :rtype: str
81
+ """
82
+ return self._file_name_pattern
83
+
84
+ @file_name_pattern.setter
85
+ def file_name_pattern(self, file_name_pattern):
86
+ """Sets the file_name_pattern of this CloudStorageLogPathInfo.
87
+
88
+ 日志文件名匹配模式。
89
+
90
+ :param file_name_pattern: The file_name_pattern of this CloudStorageLogPathInfo.
91
+ :type file_name_pattern: str
92
+ """
93
+ self._file_name_pattern = file_name_pattern
94
+
95
+ def to_dict(self):
96
+ """Returns the model properties as a dict"""
97
+ result = {}
98
+
99
+ for attr, _ in six.iteritems(self.openapi_types):
100
+ value = getattr(self, attr)
101
+ if isinstance(value, list):
102
+ result[attr] = list(map(
103
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
104
+ value
105
+ ))
106
+ elif hasattr(value, "to_dict"):
107
+ result[attr] = value.to_dict()
108
+ elif isinstance(value, dict):
109
+ result[attr] = dict(map(
110
+ lambda item: (item[0], item[1].to_dict())
111
+ if hasattr(item[1], "to_dict") else item,
112
+ value.items()
113
+ ))
114
+ else:
115
+ if attr in self.sensitive_list:
116
+ result[attr] = "****"
117
+ else:
118
+ result[attr] = value
119
+
120
+ return result
121
+
122
+ def to_str(self):
123
+ """Returns the string representation of the model"""
124
+ import simplejson as json
125
+ if six.PY2:
126
+ import sys
127
+ reload(sys)
128
+ sys.setdefaultencoding("utf-8")
129
+ return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
130
+
131
+ def __repr__(self):
132
+ """For `print`"""
133
+ return self.to_str()
134
+
135
+ def __eq__(self, other):
136
+ """Returns true if both objects are equal"""
137
+ if not isinstance(other, CloudStorageLogPathInfo):
138
+ return False
139
+
140
+ return self.__dict__ == other.__dict__
141
+
142
+ def __ne__(self, other):
143
+ """Returns true if both objects are not equal"""
144
+ return not self == other
@@ -21,7 +21,8 @@ class Configuration:
21
21
  'operated_at': 'datetime',
22
22
  'operation_id': 'str',
23
23
  'type': 'str',
24
- 'is_activated': 'bool'
24
+ 'is_activated': 'bool',
25
+ 'is_using': 'bool'
25
26
  }
26
27
 
27
28
  attribute_map = {
@@ -29,10 +30,11 @@ class Configuration:
29
30
  'operated_at': 'operated_at',
30
31
  'operation_id': 'operation_id',
31
32
  'type': 'type',
32
- 'is_activated': 'is_activated'
33
+ 'is_activated': 'is_activated',
34
+ 'is_using': 'is_using'
33
35
  }
34
36
 
35
- def __init__(self, data=None, operated_at=None, operation_id=None, type=None, is_activated=None):
37
+ def __init__(self, data=None, operated_at=None, operation_id=None, type=None, is_activated=None, is_using=None):
36
38
  """Configuration
37
39
 
38
40
  The model defined in huaweicloud sdk
@@ -45,8 +47,10 @@ class Configuration:
45
47
  :type operation_id: str
46
48
  :param type: 组件配置类型。
47
49
  :type type: str
48
- :param is_activated: 配置是否生效。
50
+ :param is_activated: 配置是否生效过。
49
51
  :type is_activated: bool
52
+ :param is_using: 配置是否正在使用。
53
+ :type is_using: bool
50
54
  """
51
55
 
52
56
 
@@ -56,6 +60,7 @@ class Configuration:
56
60
  self._operation_id = None
57
61
  self._type = None
58
62
  self._is_activated = None
63
+ self._is_using = None
59
64
  self.discriminator = None
60
65
 
61
66
  if data is not None:
@@ -68,6 +73,8 @@ class Configuration:
68
73
  self.type = type
69
74
  if is_activated is not None:
70
75
  self.is_activated = is_activated
76
+ if is_using is not None:
77
+ self.is_using = is_using
71
78
 
72
79
  @property
73
80
  def data(self):
@@ -157,7 +164,7 @@ class Configuration:
157
164
  def is_activated(self):
158
165
  """Gets the is_activated of this Configuration.
159
166
 
160
- 配置是否生效。
167
+ 配置是否生效过。
161
168
 
162
169
  :return: The is_activated of this Configuration.
163
170
  :rtype: bool
@@ -168,13 +175,35 @@ class Configuration:
168
175
  def is_activated(self, is_activated):
169
176
  """Sets the is_activated of this Configuration.
170
177
 
171
- 配置是否生效。
178
+ 配置是否生效过。
172
179
 
173
180
  :param is_activated: The is_activated of this Configuration.
174
181
  :type is_activated: bool
175
182
  """
176
183
  self._is_activated = is_activated
177
184
 
185
+ @property
186
+ def is_using(self):
187
+ """Gets the is_using of this Configuration.
188
+
189
+ 配置是否正在使用。
190
+
191
+ :return: The is_using of this Configuration.
192
+ :rtype: bool
193
+ """
194
+ return self._is_using
195
+
196
+ @is_using.setter
197
+ def is_using(self, is_using):
198
+ """Sets the is_using of this Configuration.
199
+
200
+ 配置是否正在使用。
201
+
202
+ :param is_using: The is_using of this Configuration.
203
+ :type is_using: bool
204
+ """
205
+ self._is_using = is_using
206
+
178
207
  def to_dict(self):
179
208
  """Returns the model properties as a dict"""
180
209
  result = {}
@@ -41,6 +41,7 @@ class ConfigurationRequestDataSpec:
41
41
  'post_start': 'ConfigurationRequestDataSpecPostStart',
42
42
  'pre_stop': 'ConfigurationRequestDataSpecPreStop',
43
43
  'log_paths': 'list[str]',
44
+ 'cloud_storage_log_paths': 'list[CloudStorageLogPathInfo]',
44
45
  'instrumentation': 'str',
45
46
  'path': 'str',
46
47
  'port': 'int',
@@ -72,13 +73,14 @@ class ConfigurationRequestDataSpec:
72
73
  'post_start': 'postStart',
73
74
  'pre_stop': 'preStop',
74
75
  'log_paths': 'log_paths',
76
+ 'cloud_storage_log_paths': 'cloud_storage_log_paths',
75
77
  'instrumentation': 'instrumentation',
76
78
  'path': 'path',
77
79
  'port': 'port',
78
80
  'metrics': 'metrics'
79
81
  }
80
82
 
81
- def __init__(self, rds_id=None, rds_db_name=None, rds_address=None, rds_username=None, rds_password=None, rds_port=None, config_center_addr=None, service_center_addr=None, cse_id=None, envs=None, ip=None, items=None, scale_strategy=None, max_replica_count=None, min_replica_count=None, advanced=None, triggers=None, volumes=None, liveness_probe=None, startup_probe=None, readiness_probe=None, post_start=None, pre_stop=None, log_paths=None, instrumentation=None, path=None, port=None, metrics=None):
83
+ def __init__(self, rds_id=None, rds_db_name=None, rds_address=None, rds_username=None, rds_password=None, rds_port=None, config_center_addr=None, service_center_addr=None, cse_id=None, envs=None, ip=None, items=None, scale_strategy=None, max_replica_count=None, min_replica_count=None, advanced=None, triggers=None, volumes=None, liveness_probe=None, startup_probe=None, readiness_probe=None, post_start=None, pre_stop=None, log_paths=None, cloud_storage_log_paths=None, instrumentation=None, path=None, port=None, metrics=None):
82
84
  """ConfigurationRequestDataSpec
83
85
 
84
86
  The model defined in huaweicloud sdk
@@ -129,8 +131,10 @@ class ConfigurationRequestDataSpec:
129
131
  :type post_start: :class:`huaweicloudsdkcae.v1.ConfigurationRequestDataSpecPostStart`
130
132
  :param pre_stop:
131
133
  :type pre_stop: :class:`huaweicloudsdkcae.v1.ConfigurationRequestDataSpecPreStop`
132
- :param log_paths: 自定义日志路径数组。 ConfigurationItem.type为\"log\"时,配置此参数。
134
+ :param log_paths: 自定义本地磁盘日志路径数组。 ConfigurationItem.type为\"log\"时,配置此参数。
133
135
  :type log_paths: list[str]
136
+ :param cloud_storage_log_paths: 自定义云存储日志路径数组。 ConfigurationItem.type为\"log\"时,配置此参数。
137
+ :type cloud_storage_log_paths: list[:class:`huaweicloudsdkcae.v1.CloudStorageLogPathInfo`]
134
138
  :param instrumentation: 探针注入方式。 ConfigurationItem.type为\"apm2\"时,配置此参数。
135
139
  :type instrumentation: str
136
140
  :param path: 自定义监控指标配置采集路径。 ConfigurationItem.type为\"customMetric\"时,配置此参数。
@@ -167,6 +171,7 @@ class ConfigurationRequestDataSpec:
167
171
  self._post_start = None
168
172
  self._pre_stop = None
169
173
  self._log_paths = None
174
+ self._cloud_storage_log_paths = None
170
175
  self._instrumentation = None
171
176
  self._path = None
172
177
  self._port = None
@@ -221,6 +226,8 @@ class ConfigurationRequestDataSpec:
221
226
  self.pre_stop = pre_stop
222
227
  if log_paths is not None:
223
228
  self.log_paths = log_paths
229
+ if cloud_storage_log_paths is not None:
230
+ self.cloud_storage_log_paths = cloud_storage_log_paths
224
231
  if instrumentation is not None:
225
232
  self.instrumentation = instrumentation
226
233
  if path is not None:
@@ -716,7 +723,7 @@ class ConfigurationRequestDataSpec:
716
723
  def log_paths(self):
717
724
  """Gets the log_paths of this ConfigurationRequestDataSpec.
718
725
 
719
- 自定义日志路径数组。 ConfigurationItem.type为\"log\"时,配置此参数。
726
+ 自定义本地磁盘日志路径数组。 ConfigurationItem.type为\"log\"时,配置此参数。
720
727
 
721
728
  :return: The log_paths of this ConfigurationRequestDataSpec.
722
729
  :rtype: list[str]
@@ -727,13 +734,35 @@ class ConfigurationRequestDataSpec:
727
734
  def log_paths(self, log_paths):
728
735
  """Sets the log_paths of this ConfigurationRequestDataSpec.
729
736
 
730
- 自定义日志路径数组。 ConfigurationItem.type为\"log\"时,配置此参数。
737
+ 自定义本地磁盘日志路径数组。 ConfigurationItem.type为\"log\"时,配置此参数。
731
738
 
732
739
  :param log_paths: The log_paths of this ConfigurationRequestDataSpec.
733
740
  :type log_paths: list[str]
734
741
  """
735
742
  self._log_paths = log_paths
736
743
 
744
+ @property
745
+ def cloud_storage_log_paths(self):
746
+ """Gets the cloud_storage_log_paths of this ConfigurationRequestDataSpec.
747
+
748
+ 自定义云存储日志路径数组。 ConfigurationItem.type为\"log\"时,配置此参数。
749
+
750
+ :return: The cloud_storage_log_paths of this ConfigurationRequestDataSpec.
751
+ :rtype: list[:class:`huaweicloudsdkcae.v1.CloudStorageLogPathInfo`]
752
+ """
753
+ return self._cloud_storage_log_paths
754
+
755
+ @cloud_storage_log_paths.setter
756
+ def cloud_storage_log_paths(self, cloud_storage_log_paths):
757
+ """Sets the cloud_storage_log_paths of this ConfigurationRequestDataSpec.
758
+
759
+ 自定义云存储日志路径数组。 ConfigurationItem.type为\"log\"时,配置此参数。
760
+
761
+ :param cloud_storage_log_paths: The cloud_storage_log_paths of this ConfigurationRequestDataSpec.
762
+ :type cloud_storage_log_paths: list[:class:`huaweicloudsdkcae.v1.CloudStorageLogPathInfo`]
763
+ """
764
+ self._cloud_storage_log_paths = cloud_storage_log_paths
765
+
737
766
  @property
738
767
  def instrumentation(self):
739
768
  """Gets the instrumentation of this ConfigurationRequestDataSpec.
@@ -41,6 +41,7 @@ class ConfigurationResponseDataSpec:
41
41
  'post_start': 'ConfigurationResponseDataSpecPostStart',
42
42
  'pre_stop': 'ConfigurationResponseDataSpecPreStop',
43
43
  'log_paths': 'list[str]',
44
+ 'cloud_storage_log_paths': 'list[CloudStorageLogPathInfo]',
44
45
  'instrumentation': 'str',
45
46
  'apm_application': 'str',
46
47
  'type': 'str',
@@ -82,6 +83,7 @@ class ConfigurationResponseDataSpec:
82
83
  'post_start': 'postStart',
83
84
  'pre_stop': 'preStop',
84
85
  'log_paths': 'log_paths',
86
+ 'cloud_storage_log_paths': 'cloud_storage_log_paths',
85
87
  'instrumentation': 'instrumentation',
86
88
  'apm_application': 'apm_application',
87
89
  'type': 'type',
@@ -98,7 +100,7 @@ class ConfigurationResponseDataSpec:
98
100
  'metrics': 'metrics'
99
101
  }
100
102
 
101
- def __init__(self, rds_id=None, rds_db_name=None, rds_address=None, rds_username=None, rds_password=None, rds_port=None, config_center_addr=None, service_center_addr=None, cse_id=None, envs=None, ip=None, items=None, scale_strategy=None, max_replica_count=None, min_replica_count=None, advanced=None, triggers=None, volumes=None, liveness_probe=None, startup_probe=None, readiness_probe=None, post_start=None, pre_stop=None, log_paths=None, instrumentation=None, apm_application=None, type=None, app_name=None, instance_name=None, env_name=None, image_pull_policy=None, version=None, access_key=None, access_value=None, business=None, path=None, port=None, metrics=None):
103
+ def __init__(self, rds_id=None, rds_db_name=None, rds_address=None, rds_username=None, rds_password=None, rds_port=None, config_center_addr=None, service_center_addr=None, cse_id=None, envs=None, ip=None, items=None, scale_strategy=None, max_replica_count=None, min_replica_count=None, advanced=None, triggers=None, volumes=None, liveness_probe=None, startup_probe=None, readiness_probe=None, post_start=None, pre_stop=None, log_paths=None, cloud_storage_log_paths=None, instrumentation=None, apm_application=None, type=None, app_name=None, instance_name=None, env_name=None, image_pull_policy=None, version=None, access_key=None, access_value=None, business=None, path=None, port=None, metrics=None):
102
104
  """ConfigurationResponseDataSpec
103
105
 
104
106
  The model defined in huaweicloud sdk
@@ -149,8 +151,10 @@ class ConfigurationResponseDataSpec:
149
151
  :type post_start: :class:`huaweicloudsdkcae.v1.ConfigurationResponseDataSpecPostStart`
150
152
  :param pre_stop:
151
153
  :type pre_stop: :class:`huaweicloudsdkcae.v1.ConfigurationResponseDataSpecPreStop`
152
- :param log_paths: 自定义日志路径数组。 Configuration.type为\"log\"时,返回此参数。
154
+ :param log_paths: 自定义本地磁盘日志路径数组。 Configuration.type为\"log\"时,返回此参数。
153
155
  :type log_paths: list[str]
156
+ :param cloud_storage_log_paths: 自定义云存储日志路径数组。 Configuration.type为\"log\"时,返回此参数。
157
+ :type cloud_storage_log_paths: list[:class:`huaweicloudsdkcae.v1.CloudStorageLogPathInfo`]
154
158
  :param instrumentation: 探针注入方式。 Configuration.type为\"apm2\"时,返回此参数。
155
159
  :type instrumentation: str
156
160
  :param apm_application: apm2应用。 Configuration.type为\"apm2\"时,返回此参数。
@@ -207,6 +211,7 @@ class ConfigurationResponseDataSpec:
207
211
  self._post_start = None
208
212
  self._pre_stop = None
209
213
  self._log_paths = None
214
+ self._cloud_storage_log_paths = None
210
215
  self._instrumentation = None
211
216
  self._apm_application = None
212
217
  self._type = None
@@ -271,6 +276,8 @@ class ConfigurationResponseDataSpec:
271
276
  self.pre_stop = pre_stop
272
277
  if log_paths is not None:
273
278
  self.log_paths = log_paths
279
+ if cloud_storage_log_paths is not None:
280
+ self.cloud_storage_log_paths = cloud_storage_log_paths
274
281
  if instrumentation is not None:
275
282
  self.instrumentation = instrumentation
276
283
  if apm_application is not None:
@@ -786,7 +793,7 @@ class ConfigurationResponseDataSpec:
786
793
  def log_paths(self):
787
794
  """Gets the log_paths of this ConfigurationResponseDataSpec.
788
795
 
789
- 自定义日志路径数组。 Configuration.type为\"log\"时,返回此参数。
796
+ 自定义本地磁盘日志路径数组。 Configuration.type为\"log\"时,返回此参数。
790
797
 
791
798
  :return: The log_paths of this ConfigurationResponseDataSpec.
792
799
  :rtype: list[str]
@@ -797,13 +804,35 @@ class ConfigurationResponseDataSpec:
797
804
  def log_paths(self, log_paths):
798
805
  """Sets the log_paths of this ConfigurationResponseDataSpec.
799
806
 
800
- 自定义日志路径数组。 Configuration.type为\"log\"时,返回此参数。
807
+ 自定义本地磁盘日志路径数组。 Configuration.type为\"log\"时,返回此参数。
801
808
 
802
809
  :param log_paths: The log_paths of this ConfigurationResponseDataSpec.
803
810
  :type log_paths: list[str]
804
811
  """
805
812
  self._log_paths = log_paths
806
813
 
814
+ @property
815
+ def cloud_storage_log_paths(self):
816
+ """Gets the cloud_storage_log_paths of this ConfigurationResponseDataSpec.
817
+
818
+ 自定义云存储日志路径数组。 Configuration.type为\"log\"时,返回此参数。
819
+
820
+ :return: The cloud_storage_log_paths of this ConfigurationResponseDataSpec.
821
+ :rtype: list[:class:`huaweicloudsdkcae.v1.CloudStorageLogPathInfo`]
822
+ """
823
+ return self._cloud_storage_log_paths
824
+
825
+ @cloud_storage_log_paths.setter
826
+ def cloud_storage_log_paths(self, cloud_storage_log_paths):
827
+ """Sets the cloud_storage_log_paths of this ConfigurationResponseDataSpec.
828
+
829
+ 自定义云存储日志路径数组。 Configuration.type为\"log\"时,返回此参数。
830
+
831
+ :param cloud_storage_log_paths: The cloud_storage_log_paths of this ConfigurationResponseDataSpec.
832
+ :type cloud_storage_log_paths: list[:class:`huaweicloudsdkcae.v1.CloudStorageLogPathInfo`]
833
+ """
834
+ self._cloud_storage_log_paths = cloud_storage_log_paths
835
+
807
836
  @property
808
837
  def instrumentation(self):
809
838
  """Gets the instrumentation of this ConfigurationResponseDataSpec.
@@ -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.
@@ -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.111
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.111
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=KqOSuQ9YFRFQkmG26ijTx0omJrIR1LvvkI6NzULMMHg,20635
3
- huaweicloudsdkcae/v1/cae_async_client.py,sha256=eVdb1bcL_IVV96mg5rFSzrmjSehIF9HuMh2UTnhRd7w,124572
4
- huaweicloudsdkcae/v1/cae_client.py,sha256=oZgboHHVMmj3LTrUB2pJCizVwwmpGEtJ4QWJCQYM7Pk,124569
5
- huaweicloudsdkcae/v1/model/__init__.py,sha256=8LLvjhOJYCmiRuq11w4pr8u7ndW8R2UB0rBdnVIWZko,20549
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,6 +27,7 @@ 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
32
  huaweicloudsdkcae/v1/model/component_execution_result.py,sha256=fZeecKgEj_LAErZy1mXZ-SQHUNq0GFzMVyfyYkuJF-s,6054
32
33
  huaweicloudsdkcae/v1/model/component_info.py,sha256=sR5msgdoRCYwwy8Rggku9p9Iq6TR_4gAPGOrbWQ4MqQ,4003
@@ -36,14 +37,14 @@ huaweicloudsdkcae/v1/model/component_snapshot_context.py,sha256=R6vWzIOc7juSZPY6
36
37
  huaweicloudsdkcae/v1/model/component_snapshot_item.py,sha256=zqRr0SDr5F_OpJPXwqpvwrMRuoTGSA9SDKkGDozA-Dk,6430
37
38
  huaweicloudsdkcae/v1/model/component_snapshot_kind_obj.py,sha256=IbdcrtHYxbOgD9b-CgrFGrIPddkeAaObyWxkGYp_jgU,2413
38
39
  huaweicloudsdkcae/v1/model/component_spec.py,sha256=UmDJzUlaYKP5AH0ivv8i4XVFlVUEx_nTjyyFOklGdDo,13705
39
- huaweicloudsdkcae/v1/model/configuration.py,sha256=mSvCedoVzoxWn42umWHJgVY9B3HDBlamM7aEu-kj8xY,6303
40
+ huaweicloudsdkcae/v1/model/configuration.py,sha256=AWDwD3vPSrWoRjPOYBGgrfNKTpcvS-ynLVZuJZg3T44,7096
40
41
  huaweicloudsdkcae/v1/model/configuration_data.py,sha256=6uMKKjiiWCHP1u1DSePL66dujmCBu7HoWqWa9y4kY-k,3975
41
42
  huaweicloudsdkcae/v1/model/configuration_data_metadata.py,sha256=Wv2xPCOfMFONQP0R-Mat6WGkiJP1aFe0I8Oxzp9aNfY,3899
42
43
  huaweicloudsdkcae/v1/model/configuration_item.py,sha256=01n4Dv9pqR2xI1feN41qrKZ0BSuBc4N4CDdeVa6wh74,3678
43
- 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
44
45
  huaweicloudsdkcae/v1/model/configuration_request_data_spec_post_start.py,sha256=J83_cG2_pQXRgsPRkwFGzxqo1LZpbYo0qviR-1kSpX8,3256
45
46
  huaweicloudsdkcae/v1/model/configuration_request_data_spec_pre_stop.py,sha256=Frobur6Kn1gU5FVTS0sdK6xgTGkEZQUBB521WGchyEY,3242
46
- huaweicloudsdkcae/v1/model/configuration_response_data_spec.py,sha256=N007EihHJyGkAqzLgS8tmcDG4Xjkycgefu-eyRcjCGg,44833
47
+ huaweicloudsdkcae/v1/model/configuration_response_data_spec.py,sha256=4Kc6D4rpgoV4j2uDIo6mql38kb8pONFlt4WqPMYBAdU,46463
47
48
  huaweicloudsdkcae/v1/model/configuration_response_data_spec_post_start.py,sha256=jxCw7V2mT0zURBIgPKDMC9K1-Q67Lj9kbpRSvvGhsBY,3263
48
49
  huaweicloudsdkcae/v1/model/configuration_response_data_spec_pre_stop.py,sha256=1ysrlaUmv_Vg23oC2TtMj-DJV_6qYFUpshYIb2kJ-xU,3249
49
50
  huaweicloudsdkcae/v1/model/create_agency_request.py,sha256=JCywZuSwrxA7vZMIUu5djNeVBXb0xdxtFHmRKPg-Of4,3059
@@ -147,13 +148,13 @@ huaweicloudsdkcae/v1/model/list_component_instances_request.py,sha256=t4I8nt74vE
147
148
  huaweicloudsdkcae/v1/model/list_component_instances_response.py,sha256=WzaXnPhCk623bu42aQTLnt2keQ3aGQmN9aeR2Tebzlc,5161
148
149
  huaweicloudsdkcae/v1/model/list_component_snapshots_request.py,sha256=oQs8ynecw3myDodVrh8NLGnhRow8eHyn8jHYVFFsvHs,8457
149
150
  huaweicloudsdkcae/v1/model/list_component_snapshots_response.py,sha256=0SUNNbgi0owWtWkRjmu5uThXhY-Lxm2u0DwT_UxTbX4,5175
150
- 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
151
152
  huaweicloudsdkcae/v1/model/list_components_response.py,sha256=EnKCINDHoeB1v6xl-ll4cN6xCLRD3Hb57A9rZ97C4qs,5832
152
153
  huaweicloudsdkcae/v1/model/list_domains_request.py,sha256=DXBnjIgXhidsYn9iZ1ChwILgXQWma_MV8t3btyBCrjM,6598
153
154
  huaweicloudsdkcae/v1/model/list_domains_response.py,sha256=Fe-xdeWhzzY1jiSifsPZE0FL7IM1Kh4KB_DU8A7rToc,4972
154
155
  huaweicloudsdkcae/v1/model/list_eip_response_body_spec.py,sha256=iy-GRp7TRfMpV7J3QrhbfhbNAQ_uDDZ82hD_7pXYKtY,4088
155
- huaweicloudsdkcae/v1/model/list_eip_response_body_spec_egress.py,sha256=USS5q7zB0mJlrkA0NBLnWf2CFsn9HhhzCAw7o1q19iw,4112
156
- 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
157
158
  huaweicloudsdkcae/v1/model/list_eips_request.py,sha256=fE380p743I3QaRZeRGeGl1XGhJ3Id-ZPYLouHGMre6k,6565
158
159
  huaweicloudsdkcae/v1/model/list_eips_response.py,sha256=-zpT9sP7TM8cC6KVyriOKDoRFLKlBtX5QH1KYzeo9mo,4791
159
160
  huaweicloudsdkcae/v1/model/list_environments_request.py,sha256=VZ7hiaGBWsNg4FDxbxcSqD7wRk0xpfkstZXkhx4rQlM,4803
@@ -214,8 +215,8 @@ huaweicloudsdkcae/v1/model/update_component_response.py,sha256=kzd8zZ0a7CKN-jKmB
214
215
  huaweicloudsdkcae/v1/model/update_eip_request.py,sha256=uXV5eCsvujnCJnEvu9pSpG7HhHxwWdm7tTLuUuYr1_o,7361
215
216
  huaweicloudsdkcae/v1/model/update_eip_request_body.py,sha256=MAGsqa_g3otM2tKB7dSd6f-7phKDzqKtj--M9XwFMao,4746
216
217
  huaweicloudsdkcae/v1/model/update_eip_request_body_spec.py,sha256=i6A6VQR5RVkHLUEynNlP509vxP0v0zJMNxKLDjVQEkI,4107
217
- huaweicloudsdkcae/v1/model/update_eip_request_body_spec_egress.py,sha256=NEhPVISd1o-MpM6Aaw3MIEV5tq67Z5jTTZBh9lSOXvc,3304
218
- 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
219
220
  huaweicloudsdkcae/v1/model/update_eip_response.py,sha256=7HoS1ZBu1RF-ap56ECokmtmUvRdxqBi7ntybuBE08zM,2419
220
221
  huaweicloudsdkcae/v1/model/update_monitor_system_request.py,sha256=uyLdS7ll-d26GFHByd8MCsxAUJlgTVBtpN84ExedHE4,8518
221
222
  huaweicloudsdkcae/v1/model/update_monitor_system_response.py,sha256=6kDmHuPR67SLj6WIwnlQjyFNbapZ7fRiqsQ64V-_CKY,2459
@@ -239,8 +240,8 @@ huaweicloudsdkcae/v1/model/vpc_egress_request_body_spec.py,sha256=UOWANus9wddqNC
239
240
  huaweicloudsdkcae/v1/model/vpc_egress_response_body_spec.py,sha256=CF7CeqWOcGrevnTBeLYHDXcDnerM01A0z3Gc5n6l4Ok,4816
240
241
  huaweicloudsdkcae/v1/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
241
242
  huaweicloudsdkcae/v1/region/cae_region.py,sha256=jwRHLF_CPoikdZ37-x0FehGQx6cPnz6zvu7BuXBFA-0,1536
242
- huaweicloudsdkcae-3.1.111.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
243
- huaweicloudsdkcae-3.1.111.dist-info/METADATA,sha256=ry746ugD8Hfy1nLLBus-3Ck2hHtCLam3c0tIvttXeEA,1135
244
- huaweicloudsdkcae-3.1.111.dist-info/WHEEL,sha256=fS9sRbCBHs7VFcwJLnLXN1MZRR0_TVTxvXKzOnaSFs8,110
245
- huaweicloudsdkcae-3.1.111.dist-info/top_level.txt,sha256=bSiBgsEXtNwy-Yv8143HEaMChUEIffdz2t9FM-26QjM,18
246
- huaweicloudsdkcae-3.1.111.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,,