huaweicloudsdkcae 3.1.86__py2.py3-none-any.whl → 3.1.87__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.

@@ -8,6 +8,7 @@ from huaweicloudsdkcae.v1.cae_async_client import CaeAsyncClient
8
8
  from huaweicloudsdkcae.v1.model.access import Access
9
9
  from huaweicloudsdkcae.v1.model.access_configuration_data_items import AccessConfigurationDataItems
10
10
  from huaweicloudsdkcae.v1.model.access_configuration_http_path import AccessConfigurationHttpPath
11
+ from huaweicloudsdkcae.v1.model.access_configuration_metadata import AccessConfigurationMetadata
11
12
  from huaweicloudsdkcae.v1.model.access_configuration_port import AccessConfigurationPort
12
13
  from huaweicloudsdkcae.v1.model.access_control import AccessControl
13
14
  from huaweicloudsdkcae.v1.model.action_kind_obj import ActionKindObj
@@ -6,6 +6,7 @@ from __future__ import absolute_import
6
6
  from huaweicloudsdkcae.v1.model.access import Access
7
7
  from huaweicloudsdkcae.v1.model.access_configuration_data_items import AccessConfigurationDataItems
8
8
  from huaweicloudsdkcae.v1.model.access_configuration_http_path import AccessConfigurationHttpPath
9
+ from huaweicloudsdkcae.v1.model.access_configuration_metadata import AccessConfigurationMetadata
9
10
  from huaweicloudsdkcae.v1.model.access_configuration_port import AccessConfigurationPort
10
11
  from huaweicloudsdkcae.v1.model.access_control import AccessControl
11
12
  from huaweicloudsdkcae.v1.model.action_kind_obj import ActionKindObj
@@ -17,42 +17,71 @@ class AccessConfigurationDataItems:
17
17
  sensitive_list = []
18
18
 
19
19
  openapi_types = {
20
+ 'uid': 'str',
21
+ 'metadata': 'AccessConfigurationMetadata',
20
22
  'type': 'str',
21
- 'domain_names': 'str',
23
+ 'domain_names': 'list[str]',
22
24
  'access_control': 'AccessControl',
23
- 'ports': 'list[AccessConfigurationPort]'
25
+ 'ports': 'list[AccessConfigurationPort]',
26
+ 'elb_id': 'str',
27
+ 'public_ip': 'str',
28
+ 'private_ip': 'str'
24
29
  }
25
30
 
26
31
  attribute_map = {
32
+ 'uid': 'uid',
33
+ 'metadata': 'metadata',
27
34
  'type': 'type',
28
35
  'domain_names': 'domain_names',
29
36
  'access_control': 'access_control',
30
- 'ports': 'ports'
37
+ 'ports': 'ports',
38
+ 'elb_id': 'elb_id',
39
+ 'public_ip': 'public_ip',
40
+ 'private_ip': 'private_ip'
31
41
  }
32
42
 
33
- def __init__(self, type=None, domain_names=None, access_control=None, ports=None):
43
+ def __init__(self, uid=None, metadata=None, type=None, domain_names=None, access_control=None, ports=None, elb_id=None, public_ip=None, private_ip=None):
34
44
  """AccessConfigurationDataItems
35
45
 
36
46
  The model defined in huaweicloud sdk
37
47
 
48
+ :param uid: 访问方式的uid。
49
+ :type uid: str
50
+ :param metadata:
51
+ :type metadata: :class:`huaweicloudsdkcae.v1.AccessConfigurationMetadata`
38
52
  :param type: 访问方式类型。
39
53
  :type type: str
40
54
  :param domain_names: 内网访问方式域名。
41
- :type domain_names: str
55
+ :type domain_names: list[str]
42
56
  :param access_control:
43
57
  :type access_control: :class:`huaweicloudsdkcae.v1.AccessControl`
44
58
  :param ports: 访问方式配置端口、协议、证书、URL路径等信息列表。
45
59
  :type ports: list[:class:`huaweicloudsdkcae.v1.AccessConfigurationPort`]
60
+ :param elb_id: 用户选择的elb的ID。
61
+ :type elb_id: str
62
+ :param public_ip: 响应体参数,用户选择的elb的公网ip。
63
+ :type public_ip: str
64
+ :param private_ip: 响应体参数,用户选择的elb的私网ip。
65
+ :type private_ip: str
46
66
  """
47
67
 
48
68
 
49
69
 
70
+ self._uid = None
71
+ self._metadata = None
50
72
  self._type = None
51
73
  self._domain_names = None
52
74
  self._access_control = None
53
75
  self._ports = None
76
+ self._elb_id = None
77
+ self._public_ip = None
78
+ self._private_ip = None
54
79
  self.discriminator = None
55
80
 
81
+ if uid is not None:
82
+ self.uid = uid
83
+ if metadata is not None:
84
+ self.metadata = metadata
56
85
  if type is not None:
57
86
  self.type = type
58
87
  if domain_names is not None:
@@ -61,6 +90,52 @@ class AccessConfigurationDataItems:
61
90
  self.access_control = access_control
62
91
  if ports is not None:
63
92
  self.ports = ports
93
+ if elb_id is not None:
94
+ self.elb_id = elb_id
95
+ if public_ip is not None:
96
+ self.public_ip = public_ip
97
+ if private_ip is not None:
98
+ self.private_ip = private_ip
99
+
100
+ @property
101
+ def uid(self):
102
+ """Gets the uid of this AccessConfigurationDataItems.
103
+
104
+ 访问方式的uid。
105
+
106
+ :return: The uid of this AccessConfigurationDataItems.
107
+ :rtype: str
108
+ """
109
+ return self._uid
110
+
111
+ @uid.setter
112
+ def uid(self, uid):
113
+ """Sets the uid of this AccessConfigurationDataItems.
114
+
115
+ 访问方式的uid。
116
+
117
+ :param uid: The uid of this AccessConfigurationDataItems.
118
+ :type uid: str
119
+ """
120
+ self._uid = uid
121
+
122
+ @property
123
+ def metadata(self):
124
+ """Gets the metadata of this AccessConfigurationDataItems.
125
+
126
+ :return: The metadata of this AccessConfigurationDataItems.
127
+ :rtype: :class:`huaweicloudsdkcae.v1.AccessConfigurationMetadata`
128
+ """
129
+ return self._metadata
130
+
131
+ @metadata.setter
132
+ def metadata(self, metadata):
133
+ """Sets the metadata of this AccessConfigurationDataItems.
134
+
135
+ :param metadata: The metadata of this AccessConfigurationDataItems.
136
+ :type metadata: :class:`huaweicloudsdkcae.v1.AccessConfigurationMetadata`
137
+ """
138
+ self._metadata = metadata
64
139
 
65
140
  @property
66
141
  def type(self):
@@ -91,7 +166,7 @@ class AccessConfigurationDataItems:
91
166
  内网访问方式域名。
92
167
 
93
168
  :return: The domain_names of this AccessConfigurationDataItems.
94
- :rtype: str
169
+ :rtype: list[str]
95
170
  """
96
171
  return self._domain_names
97
172
 
@@ -102,7 +177,7 @@ class AccessConfigurationDataItems:
102
177
  内网访问方式域名。
103
178
 
104
179
  :param domain_names: The domain_names of this AccessConfigurationDataItems.
105
- :type domain_names: str
180
+ :type domain_names: list[str]
106
181
  """
107
182
  self._domain_names = domain_names
108
183
 
@@ -146,6 +221,72 @@ class AccessConfigurationDataItems:
146
221
  """
147
222
  self._ports = ports
148
223
 
224
+ @property
225
+ def elb_id(self):
226
+ """Gets the elb_id of this AccessConfigurationDataItems.
227
+
228
+ 用户选择的elb的ID。
229
+
230
+ :return: The elb_id of this AccessConfigurationDataItems.
231
+ :rtype: str
232
+ """
233
+ return self._elb_id
234
+
235
+ @elb_id.setter
236
+ def elb_id(self, elb_id):
237
+ """Sets the elb_id of this AccessConfigurationDataItems.
238
+
239
+ 用户选择的elb的ID。
240
+
241
+ :param elb_id: The elb_id of this AccessConfigurationDataItems.
242
+ :type elb_id: str
243
+ """
244
+ self._elb_id = elb_id
245
+
246
+ @property
247
+ def public_ip(self):
248
+ """Gets the public_ip of this AccessConfigurationDataItems.
249
+
250
+ 响应体参数,用户选择的elb的公网ip。
251
+
252
+ :return: The public_ip of this AccessConfigurationDataItems.
253
+ :rtype: str
254
+ """
255
+ return self._public_ip
256
+
257
+ @public_ip.setter
258
+ def public_ip(self, public_ip):
259
+ """Sets the public_ip of this AccessConfigurationDataItems.
260
+
261
+ 响应体参数,用户选择的elb的公网ip。
262
+
263
+ :param public_ip: The public_ip of this AccessConfigurationDataItems.
264
+ :type public_ip: str
265
+ """
266
+ self._public_ip = public_ip
267
+
268
+ @property
269
+ def private_ip(self):
270
+ """Gets the private_ip of this AccessConfigurationDataItems.
271
+
272
+ 响应体参数,用户选择的elb的私网ip。
273
+
274
+ :return: The private_ip of this AccessConfigurationDataItems.
275
+ :rtype: str
276
+ """
277
+ return self._private_ip
278
+
279
+ @private_ip.setter
280
+ def private_ip(self, private_ip):
281
+ """Sets the private_ip of this AccessConfigurationDataItems.
282
+
283
+ 响应体参数,用户选择的elb的私网ip。
284
+
285
+ :param private_ip: The private_ip of this AccessConfigurationDataItems.
286
+ :type private_ip: str
287
+ """
288
+ self._private_ip = private_ip
289
+
149
290
  def to_dict(self):
150
291
  """Returns the model properties as a dict"""
151
292
  result = {}
@@ -0,0 +1,115 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
6
+
7
+
8
+ class AccessConfigurationMetadata:
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
+ 'annotations': 'dict(str, str)'
21
+ }
22
+
23
+ attribute_map = {
24
+ 'annotations': 'annotations'
25
+ }
26
+
27
+ def __init__(self, annotations=None):
28
+ """AccessConfigurationMetadata
29
+
30
+ The model defined in huaweicloud sdk
31
+
32
+ :param annotations: 附加参数。 举例:负载均衡分配策略使用加权轮询算法,不启用健康检查。配置如下: - \"kubernetes.io/elb.health-check-flag\": \"off\" - \"kubernetes.io/elb.lb-algorithm\": \"ROUND_ROBIN\"
33
+ :type annotations: dict(str, str)
34
+ """
35
+
36
+
37
+
38
+ self._annotations = None
39
+ self.discriminator = None
40
+
41
+ if annotations is not None:
42
+ self.annotations = annotations
43
+
44
+ @property
45
+ def annotations(self):
46
+ """Gets the annotations of this AccessConfigurationMetadata.
47
+
48
+ 附加参数。 举例:负载均衡分配策略使用加权轮询算法,不启用健康检查。配置如下: - \"kubernetes.io/elb.health-check-flag\": \"off\" - \"kubernetes.io/elb.lb-algorithm\": \"ROUND_ROBIN\"
49
+
50
+ :return: The annotations of this AccessConfigurationMetadata.
51
+ :rtype: dict(str, str)
52
+ """
53
+ return self._annotations
54
+
55
+ @annotations.setter
56
+ def annotations(self, annotations):
57
+ """Sets the annotations of this AccessConfigurationMetadata.
58
+
59
+ 附加参数。 举例:负载均衡分配策略使用加权轮询算法,不启用健康检查。配置如下: - \"kubernetes.io/elb.health-check-flag\": \"off\" - \"kubernetes.io/elb.lb-algorithm\": \"ROUND_ROBIN\"
60
+
61
+ :param annotations: The annotations of this AccessConfigurationMetadata.
62
+ :type annotations: dict(str, str)
63
+ """
64
+ self._annotations = annotations
65
+
66
+ def to_dict(self):
67
+ """Returns the model properties as a dict"""
68
+ result = {}
69
+
70
+ for attr, _ in six.iteritems(self.openapi_types):
71
+ value = getattr(self, attr)
72
+ if isinstance(value, list):
73
+ result[attr] = list(map(
74
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
75
+ value
76
+ ))
77
+ elif hasattr(value, "to_dict"):
78
+ result[attr] = value.to_dict()
79
+ elif isinstance(value, dict):
80
+ result[attr] = dict(map(
81
+ lambda item: (item[0], item[1].to_dict())
82
+ if hasattr(item[1], "to_dict") else item,
83
+ value.items()
84
+ ))
85
+ else:
86
+ if attr in self.sensitive_list:
87
+ result[attr] = "****"
88
+ else:
89
+ result[attr] = value
90
+
91
+ return result
92
+
93
+ def to_str(self):
94
+ """Returns the string representation of the model"""
95
+ import simplejson as json
96
+ if six.PY2:
97
+ import sys
98
+ reload(sys)
99
+ sys.setdefaultencoding("utf-8")
100
+ return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
101
+
102
+ def __repr__(self):
103
+ """For `print`"""
104
+ return self.to_str()
105
+
106
+ def __eq__(self, other):
107
+ """Returns true if both objects are equal"""
108
+ if not isinstance(other, AccessConfigurationMetadata):
109
+ return False
110
+
111
+ return self.__dict__ == other.__dict__
112
+
113
+ def __ne__(self, other):
114
+ """Returns true if both objects are not equal"""
115
+ return not self == other
@@ -23,8 +23,7 @@ class AccessConfigurationPort:
23
23
  'default_certificate': 'str',
24
24
  'certificate': 'str',
25
25
  'policy': 'str',
26
- 'paths': 'list[AccessConfigurationHttpPath]',
27
- 'elb_id': 'str'
26
+ 'paths': 'list[AccessConfigurationHttpPath]'
28
27
  }
29
28
 
30
29
  attribute_map = {
@@ -34,11 +33,10 @@ class AccessConfigurationPort:
34
33
  'default_certificate': 'default_certificate',
35
34
  'certificate': 'certificate',
36
35
  'policy': 'policy',
37
- 'paths': 'paths',
38
- 'elb_id': 'elb_id'
36
+ 'paths': 'paths'
39
37
  }
40
38
 
41
- def __init__(self, target_port=None, port=None, protocol=None, default_certificate=None, certificate=None, policy=None, paths=None, elb_id=None):
39
+ def __init__(self, target_port=None, port=None, protocol=None, default_certificate=None, certificate=None, policy=None, paths=None):
42
40
  """AccessConfigurationPort
43
41
 
44
42
  The model defined in huaweicloud sdk
@@ -57,8 +55,6 @@ class AccessConfigurationPort:
57
55
  :type policy: str
58
56
  :param paths:
59
57
  :type paths: list[:class:`huaweicloudsdkcae.v1.AccessConfigurationHttpPath`]
60
- :param elb_id: 用户选择的elb的ID。
61
- :type elb_id: str
62
58
  """
63
59
 
64
60
 
@@ -70,7 +66,6 @@ class AccessConfigurationPort:
70
66
  self._certificate = None
71
67
  self._policy = None
72
68
  self._paths = None
73
- self._elb_id = None
74
69
  self.discriminator = None
75
70
 
76
71
  if target_port is not None:
@@ -87,8 +82,6 @@ class AccessConfigurationPort:
87
82
  self.policy = policy
88
83
  if paths is not None:
89
84
  self.paths = paths
90
- if elb_id is not None:
91
- self.elb_id = elb_id
92
85
 
93
86
  @property
94
87
  def target_port(self):
@@ -240,28 +233,6 @@ class AccessConfigurationPort:
240
233
  """
241
234
  self._paths = paths
242
235
 
243
- @property
244
- def elb_id(self):
245
- """Gets the elb_id of this AccessConfigurationPort.
246
-
247
- 用户选择的elb的ID。
248
-
249
- :return: The elb_id of this AccessConfigurationPort.
250
- :rtype: str
251
- """
252
- return self._elb_id
253
-
254
- @elb_id.setter
255
- def elb_id(self, elb_id):
256
- """Sets the elb_id of this AccessConfigurationPort.
257
-
258
- 用户选择的elb的ID。
259
-
260
- :param elb_id: The elb_id of this AccessConfigurationPort.
261
- :type elb_id: str
262
- """
263
- self._elb_id = elb_id
264
-
265
236
  def to_dict(self):
266
237
  """Returns the model properties as a dict"""
267
238
  result = {}
@@ -29,7 +29,7 @@ class ConfigurationDataMetadata:
29
29
 
30
30
  The model defined in huaweicloud sdk
31
31
 
32
- :param annotations: 附加参数。 举例:负载均衡分配策略使用加权轮询算法,不启用健康检查。配置如下: - \"kubernetes.io/elb.health-check-flag\": \"off\" - \"kubernetes.io/elb.lb-algorithm\": \"ROUND_ROBIN\"
32
+ :param annotations: 附加参数。
33
33
  :type annotations: dict(str, str)
34
34
  """
35
35
 
@@ -45,7 +45,7 @@ class ConfigurationDataMetadata:
45
45
  def annotations(self):
46
46
  """Gets the annotations of this ConfigurationDataMetadata.
47
47
 
48
- 附加参数。 举例:负载均衡分配策略使用加权轮询算法,不启用健康检查。配置如下: - \"kubernetes.io/elb.health-check-flag\": \"off\" - \"kubernetes.io/elb.lb-algorithm\": \"ROUND_ROBIN\"
48
+ 附加参数。
49
49
 
50
50
  :return: The annotations of this ConfigurationDataMetadata.
51
51
  :rtype: dict(str, str)
@@ -56,7 +56,7 @@ class ConfigurationDataMetadata:
56
56
  def annotations(self, annotations):
57
57
  """Sets the annotations of this ConfigurationDataMetadata.
58
58
 
59
- 附加参数。 举例:负载均衡分配策略使用加权轮询算法,不启用健康检查。配置如下: - \"kubernetes.io/elb.health-check-flag\": \"off\" - \"kubernetes.io/elb.lb-algorithm\": \"ROUND_ROBIN\"
59
+ 附加参数。
60
60
 
61
61
  :param annotations: The annotations of this ConfigurationDataMetadata.
62
62
  :type annotations: dict(str, str)
@@ -27,7 +27,6 @@ class ConfigurationRequestDataSpec:
27
27
  'service_center_addr': 'str',
28
28
  'cse_id': 'str',
29
29
  'envs': 'dict(str, str)',
30
- 'ip': 'str',
31
30
  'items': 'list[AccessConfigurationDataItems]',
32
31
  'scale_strategy': 'str',
33
32
  'max_replica_count': 'int',
@@ -43,7 +42,7 @@ class ConfigurationRequestDataSpec:
43
42
  'log_paths': 'list[str]',
44
43
  'instrumentation': 'str',
45
44
  'path': 'str',
46
- 'port': 'str',
45
+ 'port': 'int',
47
46
  'metrics': 'list[str]'
48
47
  }
49
48
 
@@ -58,7 +57,6 @@ class ConfigurationRequestDataSpec:
58
57
  'service_center_addr': 'service_center_addr',
59
58
  'cse_id': 'cse_id',
60
59
  'envs': 'envs',
61
- 'ip': 'ip',
62
60
  'items': 'items',
63
61
  'scale_strategy': 'scale_strategy',
64
62
  'max_replica_count': 'max_replica_count',
@@ -78,7 +76,7 @@ class ConfigurationRequestDataSpec:
78
76
  'metrics': 'metrics'
79
77
  }
80
78
 
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):
79
+ 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, 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):
82
80
  """ConfigurationRequestDataSpec
83
81
 
84
82
  The model defined in huaweicloud sdk
@@ -103,8 +101,6 @@ class ConfigurationRequestDataSpec:
103
101
  :type cse_id: str
104
102
  :param envs: 环境变量配置。 常用环境变量如下: - TZ: 时区设置,东八区可设置为Asia/Shanghai。 - LANG: 语言字符集设置,中文UTF8可设置为zh_CN.UTF-8。
105
103
  :type envs: dict(str, str)
106
- :param ip: 弹性公网IP,响应体参数,未配置域名时返回此参数。
107
- :type ip: str
108
104
  :param items: 访问方式配置列表。 ConfigurationItem.type为\"access\"时,配置此参数。
109
105
  :type items: list[:class:`huaweicloudsdkcae.v1.AccessConfigurationDataItems`]
110
106
  :param scale_strategy: 伸缩策略配置策略类型。 ConfigurationItem.type为\"scaling\"时,配置此参数。
@@ -136,7 +132,7 @@ class ConfigurationRequestDataSpec:
136
132
  :param path: 自定义监控指标配置采集路径。 ConfigurationItem.type为\"customMetric\"时,配置此参数。
137
133
  :type path: str
138
134
  :param port: 自定义监控指标配置采集端口。 ConfigurationItem.type为\"customMetric\"时,配置此参数。
139
- :type port: str
135
+ :type port: int
140
136
  :param metrics: 自定义监控指标配置指标名称。 ConfigurationItem.type为\"customMetric\"时,配置此参数。
141
137
  :type metrics: list[str]
142
138
  """
@@ -153,7 +149,6 @@ class ConfigurationRequestDataSpec:
153
149
  self._service_center_addr = None
154
150
  self._cse_id = None
155
151
  self._envs = None
156
- self._ip = None
157
152
  self._items = None
158
153
  self._scale_strategy = None
159
154
  self._max_replica_count = None
@@ -193,8 +188,6 @@ class ConfigurationRequestDataSpec:
193
188
  self.cse_id = cse_id
194
189
  if envs is not None:
195
190
  self.envs = envs
196
- if ip is not None:
197
- self.ip = ip
198
191
  if items is not None:
199
192
  self.items = items
200
193
  if scale_strategy is not None:
@@ -450,28 +443,6 @@ class ConfigurationRequestDataSpec:
450
443
  """
451
444
  self._envs = envs
452
445
 
453
- @property
454
- def ip(self):
455
- """Gets the ip of this ConfigurationRequestDataSpec.
456
-
457
- 弹性公网IP,响应体参数,未配置域名时返回此参数。
458
-
459
- :return: The ip of this ConfigurationRequestDataSpec.
460
- :rtype: str
461
- """
462
- return self._ip
463
-
464
- @ip.setter
465
- def ip(self, ip):
466
- """Sets the ip of this ConfigurationRequestDataSpec.
467
-
468
- 弹性公网IP,响应体参数,未配置域名时返回此参数。
469
-
470
- :param ip: The ip of this ConfigurationRequestDataSpec.
471
- :type ip: str
472
- """
473
- self._ip = ip
474
-
475
446
  @property
476
447
  def items(self):
477
448
  """Gets the items of this ConfigurationRequestDataSpec.
@@ -785,7 +756,7 @@ class ConfigurationRequestDataSpec:
785
756
  自定义监控指标配置采集端口。 ConfigurationItem.type为\"customMetric\"时,配置此参数。
786
757
 
787
758
  :return: The port of this ConfigurationRequestDataSpec.
788
- :rtype: str
759
+ :rtype: int
789
760
  """
790
761
  return self._port
791
762
 
@@ -796,7 +767,7 @@ class ConfigurationRequestDataSpec:
796
767
  自定义监控指标配置采集端口。 ConfigurationItem.type为\"customMetric\"时,配置此参数。
797
768
 
798
769
  :param port: The port of this ConfigurationRequestDataSpec.
799
- :type port: str
770
+ :type port: int
800
771
  """
801
772
  self._port = port
802
773
 
@@ -53,7 +53,7 @@ class ConfigurationResponseDataSpec:
53
53
  'access_value': 'str',
54
54
  'business': 'str',
55
55
  'path': 'str',
56
- 'port': 'str',
56
+ 'port': 'int',
57
57
  'metrics': 'list[str]'
58
58
  }
59
59
 
@@ -176,7 +176,7 @@ class ConfigurationResponseDataSpec:
176
176
  :param path: 自定义监控指标配置采集路径。 Configuration.type为\"customMetric\"时,返回此参数。
177
177
  :type path: str
178
178
  :param port: 自定义监控指标配置采集端口。 Configuration.type为\"customMetric\"时,返回此参数。
179
- :type port: str
179
+ :type port: int
180
180
  :param metrics: 自定义监控指标配置指标名称。 Configuration.type为\"customMetric\"时,返回此参数。
181
181
  :type metrics: list[str]
182
182
  """
@@ -1075,7 +1075,7 @@ class ConfigurationResponseDataSpec:
1075
1075
  自定义监控指标配置采集端口。 Configuration.type为\"customMetric\"时,返回此参数。
1076
1076
 
1077
1077
  :return: The port of this ConfigurationResponseDataSpec.
1078
- :rtype: str
1078
+ :rtype: int
1079
1079
  """
1080
1080
  return self._port
1081
1081
 
@@ -1086,7 +1086,7 @@ class ConfigurationResponseDataSpec:
1086
1086
  自定义监控指标配置采集端口。 Configuration.type为\"customMetric\"时,返回此参数。
1087
1087
 
1088
1088
  :param port: The port of this ConfigurationResponseDataSpec.
1089
- :type port: str
1089
+ :type port: int
1090
1090
  """
1091
1091
  self._port = port
1092
1092
 
@@ -18,7 +18,7 @@ class HealthCheckConfigurationHttpGet:
18
18
 
19
19
  openapi_types = {
20
20
  'path': 'str',
21
- 'port': 'str',
21
+ 'port': 'int',
22
22
  'scheme': 'str'
23
23
  }
24
24
 
@@ -36,7 +36,7 @@ class HealthCheckConfigurationHttpGet:
36
36
  :param path: URL路径。
37
37
  :type path: str
38
38
  :param port: 端口。
39
- :type port: str
39
+ :type port: int
40
40
  :param scheme: 协议。
41
41
  :type scheme: str
42
42
  """
@@ -84,7 +84,7 @@ class HealthCheckConfigurationHttpGet:
84
84
  端口。
85
85
 
86
86
  :return: The port of this HealthCheckConfigurationHttpGet.
87
- :rtype: str
87
+ :rtype: int
88
88
  """
89
89
  return self._port
90
90
 
@@ -95,7 +95,7 @@ class HealthCheckConfigurationHttpGet:
95
95
  端口。
96
96
 
97
97
  :param port: The port of this HealthCheckConfigurationHttpGet.
98
- :type port: str
98
+ :type port: int
99
99
  """
100
100
  self._port = port
101
101
 
@@ -17,7 +17,7 @@ class HealthCheckConfigurationTcpSocket:
17
17
  sensitive_list = []
18
18
 
19
19
  openapi_types = {
20
- 'port': 'str'
20
+ 'port': 'int'
21
21
  }
22
22
 
23
23
  attribute_map = {
@@ -30,7 +30,7 @@ class HealthCheckConfigurationTcpSocket:
30
30
  The model defined in huaweicloud sdk
31
31
 
32
32
  :param port: 端口。
33
- :type port: str
33
+ :type port: int
34
34
  """
35
35
 
36
36
 
@@ -48,7 +48,7 @@ class HealthCheckConfigurationTcpSocket:
48
48
  端口。
49
49
 
50
50
  :return: The port of this HealthCheckConfigurationTcpSocket.
51
- :rtype: str
51
+ :rtype: int
52
52
  """
53
53
  return self._port
54
54
 
@@ -59,7 +59,7 @@ class HealthCheckConfigurationTcpSocket:
59
59
  端口。
60
60
 
61
61
  :param port: The port of this HealthCheckConfigurationTcpSocket.
62
- :type port: str
62
+ :type port: int
63
63
  """
64
64
  self._port = port
65
65
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: huaweicloudsdkcae
3
- Version: 3.1.86
3
+ Version: 3.1.87
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.86
25
+ Requires-Dist: huaweicloudsdkcore >=3.1.87
26
26
 
27
27
  See detailed information in [huaweicloud-sdk-python-v3](https://github.com/huaweicloud/huaweicloud-sdk-python-v3).
@@ -1,12 +1,13 @@
1
1
  huaweicloudsdkcae/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- huaweicloudsdkcae/v1/__init__.py,sha256=UvZTHOeWpaWEE1liNc1HaqitB78PlG4Yr99b0w9_Hiw,17712
2
+ huaweicloudsdkcae/v1/__init__.py,sha256=wJXNW7la404SbVW1rzx1cXW8WL9xpx6RgyYv1rGnDKQ,17809
3
3
  huaweicloudsdkcae/v1/cae_async_client.py,sha256=46PbFtEtcC9OOTaKciJ42OkaTF9Q8XzH6If0htzh6uo,105591
4
4
  huaweicloudsdkcae/v1/cae_client.py,sha256=TzL5_4HeQocr_BQDzCXUXv135ZuHz3ubIOyxpn3QOpg,105572
5
- huaweicloudsdkcae/v1/model/__init__.py,sha256=gAOy17VgOdfUekfPeXzFyMGZ1NNqxPZeJm6LfxpqcLk,17626
5
+ huaweicloudsdkcae/v1/model/__init__.py,sha256=5anj0Q7dMZI_wPye4iZIjTAfLdQI7-xqOjb4z9mLvz8,17723
6
6
  huaweicloudsdkcae/v1/model/access.py,sha256=0xqNmw_Fm4AGwHLp9NS0NKl4sI0uvoEVIOe5aW9-Gr0,3611
7
- huaweicloudsdkcae/v1/model/access_configuration_data_items.py,sha256=1GeGYqyVEW5wIHBiPWicE_DmyG-r6UHNnuGHJb0Gc18,6111
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
9
- huaweicloudsdkcae/v1/model/access_configuration_port.py,sha256=bntkSTfLy_k9AWT_KI0Q_klS_by7E4bg0w0cPhCgNVM,9425
9
+ huaweicloudsdkcae/v1/model/access_configuration_metadata.py,sha256=GWJIvbL1rGwFRYXenix7Y5uSa6oTOliCRVKCoU_Sy2g,3913
10
+ huaweicloudsdkcae/v1/model/access_configuration_port.py,sha256=6HY71yYvuNrI1mGmgbLi6oOfVKALXSRvrb-nfoCuvvg,8654
10
11
  huaweicloudsdkcae/v1/model/access_control.py,sha256=rYGNKVfrgROsfj6Z8xnSJZcTlui_xuDCQFFO6Wc3LZI,4403
11
12
  huaweicloudsdkcae/v1/model/action_kind_obj.py,sha256=02B38ZXy_d827GXGuxGyE1rF4NDSMNpRYHCIaFbcZlE,2358
12
13
  huaweicloudsdkcae/v1/model/action_on_component_build.py,sha256=0z-dm4bR2v0wYcwq60SAoTS350pZOd5wRg5k5x-IuAw,4848
@@ -38,12 +39,12 @@ huaweicloudsdkcae/v1/model/component_snapshot_kind_obj.py,sha256=IbdcrtHYxbOgD9b
38
39
  huaweicloudsdkcae/v1/model/component_spec.py,sha256=UmDJzUlaYKP5AH0ivv8i4XVFlVUEx_nTjyyFOklGdDo,13705
39
40
  huaweicloudsdkcae/v1/model/configuration.py,sha256=mSvCedoVzoxWn42umWHJgVY9B3HDBlamM7aEu-kj8xY,6303
40
41
  huaweicloudsdkcae/v1/model/configuration_data.py,sha256=6uMKKjiiWCHP1u1DSePL66dujmCBu7HoWqWa9y4kY-k,3975
41
- huaweicloudsdkcae/v1/model/configuration_data_metadata.py,sha256=Wv2xPCOfMFONQP0R-Mat6WGkiJP1aFe0I8Oxzp9aNfY,3899
42
+ huaweicloudsdkcae/v1/model/configuration_data_metadata.py,sha256=gJrjxZSuBsgu--5zKr9nAQ28sZgMTJoh6VaRSDz_Awc,3241
42
43
  huaweicloudsdkcae/v1/model/configuration_item.py,sha256=01n4Dv9pqR2xI1feN41qrKZ0BSuBc4N4CDdeVa6wh74,3678
43
- huaweicloudsdkcae/v1/model/configuration_request_data_spec.py,sha256=HG__nrx4HsAFiVP3SZL_AunOoEfV_f8BfxBPwiiPGXA,33276
44
+ huaweicloudsdkcae/v1/model/configuration_request_data_spec.py,sha256=ewWa35W41tTkJ1DxDkIhpcoeCmKWLnrH6unzdN_Fq5g,32442
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=MOUXGn_UAUTRB01NlZcKx_jVr4GVg5zrFyzSADEH8CY,44833
47
+ huaweicloudsdkcae/v1/model/configuration_response_data_spec.py,sha256=N007EihHJyGkAqzLgS8tmcDG4Xjkycgefu-eyRcjCGg,44833
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
@@ -110,11 +111,11 @@ huaweicloudsdkcae/v1/model/execute_action_request_body_metadata.py,sha256=OTjWLb
110
111
  huaweicloudsdkcae/v1/model/execute_action_response.py,sha256=cAXATWnLZYo3NyM2Ku_2a-EA0S1K9GQqbx0AGqgk2Hs,3153
111
112
  huaweicloudsdkcae/v1/model/execution_details.py,sha256=0QdmtEZeCnBUbGrqT7aDZVlH4Mhmvk8Rj6FvUc8ycGE,4308
112
113
  huaweicloudsdkcae/v1/model/health_check_configuration_exec.py,sha256=MtBbfh0ppmxjL6_C2G_x7i6YhVEqRc3LQ5d3pKoIWGA,3144
113
- huaweicloudsdkcae/v1/model/health_check_configuration_http_get.py,sha256=nLPD5Gfh0tTThMIfYMPeaby2z2wkDr1w5nynk0lwF9s,4524
114
+ huaweicloudsdkcae/v1/model/health_check_configuration_http_get.py,sha256=JtcWgN_8VaWLi5-W6AHQawHuT5lpHlm-u-PI6PPuPw8,4524
114
115
  huaweicloudsdkcae/v1/model/health_check_configuration_liveness_probe.py,sha256=6pid1R_Uevga5Jrzo4pOa6bOoBl1tljbMxXLOP_oj9M,10611
115
116
  huaweicloudsdkcae/v1/model/health_check_configuration_readiness_probe.py,sha256=yZKXV4GB-XChPY3pJ4K4nWHOXXjlhFz2udczRk3mrCU,10646
116
117
  huaweicloudsdkcae/v1/model/health_check_configuration_startup_probe.py,sha256=M2-YAHfdSdWZCTeorPE3Lwfcwemaw0yZcwtuYXF9X4w,10576
117
- huaweicloudsdkcae/v1/model/health_check_configuration_tcp_socket.py,sha256=8LumUcsyfde6ATZ30Qs3-emb1gFtl8oRC-H1dcjFZDk,3071
118
+ huaweicloudsdkcae/v1/model/health_check_configuration_tcp_socket.py,sha256=3GLEppW4yMAvcOIqbtvpkas-8QXC3J9PErZn1ZT0XNE,3071
118
119
  huaweicloudsdkcae/v1/model/instance.py,sha256=d1O7QK1qKT5JGgurxB20J1zaWOmaZLbWYi1dAOmSQVM,4166
119
120
  huaweicloudsdkcae/v1/model/job_kind_obj.py,sha256=dcPL5EY7Jb4XOehOyJZ6uD9mCym_5BgBYWRquiXmJbc,2343
120
121
  huaweicloudsdkcae/v1/model/job_spec.py,sha256=52bt5yUf8hNDJQQ6UZQTWAo332pafsSmFxjj-D5k7mc,4441
@@ -208,8 +209,8 @@ huaweicloudsdkcae/v1/model/volume_kind_obj.py,sha256=6duZL5W4P8ygOYI7wdi0t2jM6C2
208
209
  huaweicloudsdkcae/v1/model/volume_spec.py,sha256=enTKBxL4stScG4FaNIWYGH9a0DQ7oCT6ZzXagJXhBJk,4871
209
210
  huaweicloudsdkcae/v1/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
210
211
  huaweicloudsdkcae/v1/region/cae_region.py,sha256=RCN35DSxrIcLbRGUheyADpRNm1XHR_hvPTraZf3up3M,1396
211
- huaweicloudsdkcae-3.1.86.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
212
- huaweicloudsdkcae-3.1.86.dist-info/METADATA,sha256=2_JAgs3Vp9jF8ZnWlWf0zH7q-u3mT8B7vgGxjbFqu0I,1134
213
- huaweicloudsdkcae-3.1.86.dist-info/WHEEL,sha256=DZajD4pwLWue70CAfc7YaxT1wLUciNBvN_TTcvXpltE,110
214
- huaweicloudsdkcae-3.1.86.dist-info/top_level.txt,sha256=bSiBgsEXtNwy-Yv8143HEaMChUEIffdz2t9FM-26QjM,18
215
- huaweicloudsdkcae-3.1.86.dist-info/RECORD,,
212
+ huaweicloudsdkcae-3.1.87.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
213
+ huaweicloudsdkcae-3.1.87.dist-info/METADATA,sha256=4vSJpWB5uLKwgpvsBJLNl3YZ0Blur8aoq_NwQVPcC-0,1134
214
+ huaweicloudsdkcae-3.1.87.dist-info/WHEEL,sha256=DZajD4pwLWue70CAfc7YaxT1wLUciNBvN_TTcvXpltE,110
215
+ huaweicloudsdkcae-3.1.87.dist-info/top_level.txt,sha256=bSiBgsEXtNwy-Yv8143HEaMChUEIffdz2t9FM-26QjM,18
216
+ huaweicloudsdkcae-3.1.87.dist-info/RECORD,,