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

@@ -0,0 +1,161 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
6
+
7
+
8
+ class VpcEgressRequestBody:
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
+ 'api_version': 'ApiVersionObj',
21
+ 'kind': 'VpcEgressKindObj',
22
+ 'spec': 'VpcEgressRequestBodySpec'
23
+ }
24
+
25
+ attribute_map = {
26
+ 'api_version': 'api_version',
27
+ 'kind': 'kind',
28
+ 'spec': 'spec'
29
+ }
30
+
31
+ def __init__(self, api_version=None, kind=None, spec=None):
32
+ """VpcEgressRequestBody
33
+
34
+ The model defined in huaweicloud sdk
35
+
36
+ :param api_version:
37
+ :type api_version: :class:`huaweicloudsdkcae.v1.ApiVersionObj`
38
+ :param kind:
39
+ :type kind: :class:`huaweicloudsdkcae.v1.VpcEgressKindObj`
40
+ :param spec:
41
+ :type spec: :class:`huaweicloudsdkcae.v1.VpcEgressRequestBodySpec`
42
+ """
43
+
44
+
45
+
46
+ self._api_version = None
47
+ self._kind = None
48
+ self._spec = None
49
+ self.discriminator = None
50
+
51
+ if api_version is not None:
52
+ self.api_version = api_version
53
+ if kind is not None:
54
+ self.kind = kind
55
+ if spec is not None:
56
+ self.spec = spec
57
+
58
+ @property
59
+ def api_version(self):
60
+ """Gets the api_version of this VpcEgressRequestBody.
61
+
62
+ :return: The api_version of this VpcEgressRequestBody.
63
+ :rtype: :class:`huaweicloudsdkcae.v1.ApiVersionObj`
64
+ """
65
+ return self._api_version
66
+
67
+ @api_version.setter
68
+ def api_version(self, api_version):
69
+ """Sets the api_version of this VpcEgressRequestBody.
70
+
71
+ :param api_version: The api_version of this VpcEgressRequestBody.
72
+ :type api_version: :class:`huaweicloudsdkcae.v1.ApiVersionObj`
73
+ """
74
+ self._api_version = api_version
75
+
76
+ @property
77
+ def kind(self):
78
+ """Gets the kind of this VpcEgressRequestBody.
79
+
80
+ :return: The kind of this VpcEgressRequestBody.
81
+ :rtype: :class:`huaweicloudsdkcae.v1.VpcEgressKindObj`
82
+ """
83
+ return self._kind
84
+
85
+ @kind.setter
86
+ def kind(self, kind):
87
+ """Sets the kind of this VpcEgressRequestBody.
88
+
89
+ :param kind: The kind of this VpcEgressRequestBody.
90
+ :type kind: :class:`huaweicloudsdkcae.v1.VpcEgressKindObj`
91
+ """
92
+ self._kind = kind
93
+
94
+ @property
95
+ def spec(self):
96
+ """Gets the spec of this VpcEgressRequestBody.
97
+
98
+ :return: The spec of this VpcEgressRequestBody.
99
+ :rtype: :class:`huaweicloudsdkcae.v1.VpcEgressRequestBodySpec`
100
+ """
101
+ return self._spec
102
+
103
+ @spec.setter
104
+ def spec(self, spec):
105
+ """Sets the spec of this VpcEgressRequestBody.
106
+
107
+ :param spec: The spec of this VpcEgressRequestBody.
108
+ :type spec: :class:`huaweicloudsdkcae.v1.VpcEgressRequestBodySpec`
109
+ """
110
+ self._spec = spec
111
+
112
+ def to_dict(self):
113
+ """Returns the model properties as a dict"""
114
+ result = {}
115
+
116
+ for attr, _ in six.iteritems(self.openapi_types):
117
+ value = getattr(self, attr)
118
+ if isinstance(value, list):
119
+ result[attr] = list(map(
120
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
121
+ value
122
+ ))
123
+ elif hasattr(value, "to_dict"):
124
+ result[attr] = value.to_dict()
125
+ elif isinstance(value, dict):
126
+ result[attr] = dict(map(
127
+ lambda item: (item[0], item[1].to_dict())
128
+ if hasattr(item[1], "to_dict") else item,
129
+ value.items()
130
+ ))
131
+ else:
132
+ if attr in self.sensitive_list:
133
+ result[attr] = "****"
134
+ else:
135
+ result[attr] = value
136
+
137
+ return result
138
+
139
+ def to_str(self):
140
+ """Returns the string representation of the model"""
141
+ import simplejson as json
142
+ if six.PY2:
143
+ import sys
144
+ reload(sys)
145
+ sys.setdefaultencoding("utf-8")
146
+ return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
147
+
148
+ def __repr__(self):
149
+ """For `print`"""
150
+ return self.to_str()
151
+
152
+ def __eq__(self, other):
153
+ """Returns true if both objects are equal"""
154
+ if not isinstance(other, VpcEgressRequestBody):
155
+ return False
156
+
157
+ return self.__dict__ == other.__dict__
158
+
159
+ def __ne__(self, other):
160
+ """Returns true if both objects are not equal"""
161
+ return not self == other
@@ -0,0 +1,114 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
6
+
7
+
8
+ class VpcEgressRequestBodySpec:
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
+ 'cidrs': 'list[EgressCidr]'
21
+ }
22
+
23
+ attribute_map = {
24
+ 'cidrs': 'cidrs'
25
+ }
26
+
27
+ def __init__(self, cidrs=None):
28
+ """VpcEgressRequestBodySpec
29
+
30
+ The model defined in huaweicloud sdk
31
+
32
+ :param cidrs: CAE环境访问VPC配置。
33
+ :type cidrs: list[:class:`huaweicloudsdkcae.v1.EgressCidr`]
34
+ """
35
+
36
+
37
+
38
+ self._cidrs = None
39
+ self.discriminator = None
40
+
41
+ self.cidrs = cidrs
42
+
43
+ @property
44
+ def cidrs(self):
45
+ """Gets the cidrs of this VpcEgressRequestBodySpec.
46
+
47
+ CAE环境访问VPC配置。
48
+
49
+ :return: The cidrs of this VpcEgressRequestBodySpec.
50
+ :rtype: list[:class:`huaweicloudsdkcae.v1.EgressCidr`]
51
+ """
52
+ return self._cidrs
53
+
54
+ @cidrs.setter
55
+ def cidrs(self, cidrs):
56
+ """Sets the cidrs of this VpcEgressRequestBodySpec.
57
+
58
+ CAE环境访问VPC配置。
59
+
60
+ :param cidrs: The cidrs of this VpcEgressRequestBodySpec.
61
+ :type cidrs: list[:class:`huaweicloudsdkcae.v1.EgressCidr`]
62
+ """
63
+ self._cidrs = cidrs
64
+
65
+ def to_dict(self):
66
+ """Returns the model properties as a dict"""
67
+ result = {}
68
+
69
+ for attr, _ in six.iteritems(self.openapi_types):
70
+ value = getattr(self, attr)
71
+ if isinstance(value, list):
72
+ result[attr] = list(map(
73
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
74
+ value
75
+ ))
76
+ elif hasattr(value, "to_dict"):
77
+ result[attr] = value.to_dict()
78
+ elif isinstance(value, dict):
79
+ result[attr] = dict(map(
80
+ lambda item: (item[0], item[1].to_dict())
81
+ if hasattr(item[1], "to_dict") else item,
82
+ value.items()
83
+ ))
84
+ else:
85
+ if attr in self.sensitive_list:
86
+ result[attr] = "****"
87
+ else:
88
+ result[attr] = value
89
+
90
+ return result
91
+
92
+ def to_str(self):
93
+ """Returns the string representation of the model"""
94
+ import simplejson as json
95
+ if six.PY2:
96
+ import sys
97
+ reload(sys)
98
+ sys.setdefaultencoding("utf-8")
99
+ return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
100
+
101
+ def __repr__(self):
102
+ """For `print`"""
103
+ return self.to_str()
104
+
105
+ def __eq__(self, other):
106
+ """Returns true if both objects are equal"""
107
+ if not isinstance(other, VpcEgressRequestBodySpec):
108
+ return False
109
+
110
+ return self.__dict__ == other.__dict__
111
+
112
+ def __ne__(self, other):
113
+ """Returns true if both objects are not equal"""
114
+ return not self == other
@@ -0,0 +1,173 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
6
+
7
+
8
+ class VpcEgressResponseBodySpec:
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
+ 'vpc_id': 'str',
21
+ 'subnet_id': 'str',
22
+ 'cidrs': 'list[EgressCidr]'
23
+ }
24
+
25
+ attribute_map = {
26
+ 'vpc_id': 'vpc_id',
27
+ 'subnet_id': 'subnet_id',
28
+ 'cidrs': 'cidrs'
29
+ }
30
+
31
+ def __init__(self, vpc_id=None, subnet_id=None, cidrs=None):
32
+ """VpcEgressResponseBodySpec
33
+
34
+ The model defined in huaweicloud sdk
35
+
36
+ :param vpc_id: CAE环境VPCID。
37
+ :type vpc_id: str
38
+ :param subnet_id: CAE环境子网ID。
39
+ :type subnet_id: str
40
+ :param cidrs: CAE环境访问VPC配置。
41
+ :type cidrs: list[:class:`huaweicloudsdkcae.v1.EgressCidr`]
42
+ """
43
+
44
+
45
+
46
+ self._vpc_id = None
47
+ self._subnet_id = None
48
+ self._cidrs = None
49
+ self.discriminator = None
50
+
51
+ if vpc_id is not None:
52
+ self.vpc_id = vpc_id
53
+ if subnet_id is not None:
54
+ self.subnet_id = subnet_id
55
+ if cidrs is not None:
56
+ self.cidrs = cidrs
57
+
58
+ @property
59
+ def vpc_id(self):
60
+ """Gets the vpc_id of this VpcEgressResponseBodySpec.
61
+
62
+ CAE环境VPCID。
63
+
64
+ :return: The vpc_id of this VpcEgressResponseBodySpec.
65
+ :rtype: str
66
+ """
67
+ return self._vpc_id
68
+
69
+ @vpc_id.setter
70
+ def vpc_id(self, vpc_id):
71
+ """Sets the vpc_id of this VpcEgressResponseBodySpec.
72
+
73
+ CAE环境VPCID。
74
+
75
+ :param vpc_id: The vpc_id of this VpcEgressResponseBodySpec.
76
+ :type vpc_id: str
77
+ """
78
+ self._vpc_id = vpc_id
79
+
80
+ @property
81
+ def subnet_id(self):
82
+ """Gets the subnet_id of this VpcEgressResponseBodySpec.
83
+
84
+ CAE环境子网ID。
85
+
86
+ :return: The subnet_id of this VpcEgressResponseBodySpec.
87
+ :rtype: str
88
+ """
89
+ return self._subnet_id
90
+
91
+ @subnet_id.setter
92
+ def subnet_id(self, subnet_id):
93
+ """Sets the subnet_id of this VpcEgressResponseBodySpec.
94
+
95
+ CAE环境子网ID。
96
+
97
+ :param subnet_id: The subnet_id of this VpcEgressResponseBodySpec.
98
+ :type subnet_id: str
99
+ """
100
+ self._subnet_id = subnet_id
101
+
102
+ @property
103
+ def cidrs(self):
104
+ """Gets the cidrs of this VpcEgressResponseBodySpec.
105
+
106
+ CAE环境访问VPC配置。
107
+
108
+ :return: The cidrs of this VpcEgressResponseBodySpec.
109
+ :rtype: list[:class:`huaweicloudsdkcae.v1.EgressCidr`]
110
+ """
111
+ return self._cidrs
112
+
113
+ @cidrs.setter
114
+ def cidrs(self, cidrs):
115
+ """Sets the cidrs of this VpcEgressResponseBodySpec.
116
+
117
+ CAE环境访问VPC配置。
118
+
119
+ :param cidrs: The cidrs of this VpcEgressResponseBodySpec.
120
+ :type cidrs: list[:class:`huaweicloudsdkcae.v1.EgressCidr`]
121
+ """
122
+ self._cidrs = cidrs
123
+
124
+ def to_dict(self):
125
+ """Returns the model properties as a dict"""
126
+ result = {}
127
+
128
+ for attr, _ in six.iteritems(self.openapi_types):
129
+ value = getattr(self, attr)
130
+ if isinstance(value, list):
131
+ result[attr] = list(map(
132
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
133
+ value
134
+ ))
135
+ elif hasattr(value, "to_dict"):
136
+ result[attr] = value.to_dict()
137
+ elif isinstance(value, dict):
138
+ result[attr] = dict(map(
139
+ lambda item: (item[0], item[1].to_dict())
140
+ if hasattr(item[1], "to_dict") else item,
141
+ value.items()
142
+ ))
143
+ else:
144
+ if attr in self.sensitive_list:
145
+ result[attr] = "****"
146
+ else:
147
+ result[attr] = value
148
+
149
+ return result
150
+
151
+ def to_str(self):
152
+ """Returns the string representation of the model"""
153
+ import simplejson as json
154
+ if six.PY2:
155
+ import sys
156
+ reload(sys)
157
+ sys.setdefaultencoding("utf-8")
158
+ return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
159
+
160
+ def __repr__(self):
161
+ """For `print`"""
162
+ return self.to_str()
163
+
164
+ def __eq__(self, other):
165
+ """Returns true if both objects are equal"""
166
+ if not isinstance(other, VpcEgressResponseBodySpec):
167
+ return False
168
+
169
+ return self.__dict__ == other.__dict__
170
+
171
+ def __ne__(self, other):
172
+ """Returns true if both objects are not equal"""
173
+ return not self == other
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: huaweicloudsdkcae
3
- Version: 3.1.93
3
+ Version: 3.1.95
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.93
25
+ Requires-Dist: huaweicloudsdkcore >=3.1.95
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=wJXNW7la404SbVW1rzx1cXW8WL9xpx6RgyYv1rGnDKQ,17809
3
- huaweicloudsdkcae/v1/cae_async_client.py,sha256=46PbFtEtcC9OOTaKciJ42OkaTF9Q8XzH6If0htzh6uo,105591
4
- huaweicloudsdkcae/v1/cae_client.py,sha256=TzL5_4HeQocr_BQDzCXUXv135ZuHz3ubIOyxpn3QOpg,105572
5
- huaweicloudsdkcae/v1/model/__init__.py,sha256=5anj0Q7dMZI_wPye4iZIjTAfLdQI7-xqOjb4z9mLvz8,17723
2
+ huaweicloudsdkcae/v1/__init__.py,sha256=I9oOgFKhDfLlSVG6ruCuAhfWzb3eiXIxmAzwTsXOrFA,18745
3
+ huaweicloudsdkcae/v1/cae_async_client.py,sha256=5TNtkTtYZbtxRQWTwdlJ6RA4T-lrSF2SRO30hh5X_Qs,112587
4
+ huaweicloudsdkcae/v1/cae_client.py,sha256=QoFGidHVDkA_GQq5UJ5etxVpQ_saKXilnXgpag5aqrQ,112574
5
+ huaweicloudsdkcae/v1/model/__init__.py,sha256=6T9SIkBCsR2kNRgu-HJvVPCdEaDjKXv16RnM7neXbgA,18659
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
@@ -69,7 +69,7 @@ huaweicloudsdkcae/v1/model/create_domain_request.py,sha256=8qgYZ1qH64Z6jvWWDc1ot
69
69
  huaweicloudsdkcae/v1/model/create_domain_response.py,sha256=9tAjNCruPw_19jyaEMOUuOg3ao9wcCQg35241CKZLpo,4988
70
70
  huaweicloudsdkcae/v1/model/create_environment_request.py,sha256=hpdE2iwDtoOyGs2ZXNTlQzn5xhDr9n_MYzRrleJ6YEs,5667
71
71
  huaweicloudsdkcae/v1/model/create_environment_request_body.py,sha256=YEmDi00NBCWM4CDpQoZAJbyw-Y5vGZgiZb-vWi0olFk,4928
72
- huaweicloudsdkcae/v1/model/create_environment_request_body_metadata.py,sha256=NWpl3jKXtBTifbTi5Up_Pqq46aUDIwERywDLoc5Eyyo,4587
72
+ huaweicloudsdkcae/v1/model/create_environment_request_body_metadata.py,sha256=35KHmT24Iwz3B8W0u1BxKlpYNXb85nRtsOCo9f-pkow,5061
73
73
  huaweicloudsdkcae/v1/model/create_environment_response.py,sha256=zbAZL1RoKPHimbdnCbGJKVK5vxGZvveeE5dRUMOWYDM,3185
74
74
  huaweicloudsdkcae/v1/model/create_meta_cert.py,sha256=-_wGszD2cK_1dbmGc1aRKgmRe14KN4XxA_SOo7eLJXo,2923
75
75
  huaweicloudsdkcae/v1/model/create_meta_domain.py,sha256=uZ5yx54VcBaFgaAVbvSazvJTYPs14YqJ_j3YGw887D8,2937
@@ -82,6 +82,8 @@ huaweicloudsdkcae/v1/model/create_timer_rule_response.py,sha256=MTZzJfi4Lv90E7J4
82
82
  huaweicloudsdkcae/v1/model/create_volume_req.py,sha256=_WYPMtmt6bLDWkbx7SptvdZtzITB3Ft-yAqXz-8GPl8,4521
83
83
  huaweicloudsdkcae/v1/model/create_volume_request.py,sha256=yoaZ8jJ0MwAzwArlhPnhkIIsha3E6qjHV-RW2pO4DDg,7389
84
84
  huaweicloudsdkcae/v1/model/create_volume_response.py,sha256=xPmAORqgFAA7d1Jvj5U9VXzcW701yKDWgPhj7SrrKuc,2431
85
+ huaweicloudsdkcae/v1/model/create_vpc_egress_request.py,sha256=K3sr3B3VdZluVCR3r_kcDl2QBjTL7-kaNRDbWOhYzNg,7457
86
+ huaweicloudsdkcae/v1/model/create_vpc_egress_response.py,sha256=GytpuMXWU2EJe8EOO1E5UOTYL_4vyi4DsAGU0_woASc,4935
85
87
  huaweicloudsdkcae/v1/model/cron_trigger_scheduler.py,sha256=7cAzKcxRxoF0qB1N3BIxPhKCwDEUWj7RSF1xyo9H7ro,4046
86
88
  huaweicloudsdkcae/v1/model/delete_application_request.py,sha256=BE_BFzemflm2ZfXDX3o-6qkLw5ya7e43zUt5a2KLNro,7535
87
89
  huaweicloudsdkcae/v1/model/delete_application_response.py,sha256=23OrrDPSmUs3LnzLMQcr_4BGBVQvNIDsjur8rSMXDyc,2451
@@ -99,8 +101,11 @@ huaweicloudsdkcae/v1/model/delete_timer_rule_request.py,sha256=OM7s7Bwm1eXOMA0OW
99
101
  huaweicloudsdkcae/v1/model/delete_timer_rule_response.py,sha256=lg4BZabFMhYpWPg_tdybizz7SLBnPz9GXwwmUSpnXbs,2443
100
102
  huaweicloudsdkcae/v1/model/delete_volume_request.py,sha256=A0hYnwX6VKuN5dKjfYLXUkQIedB4BOiA5-3PU5PEGj4,7205
101
103
  huaweicloudsdkcae/v1/model/delete_volume_response.py,sha256=vh_L955fgwT76c6YsmqNadejsQAkRkcGlk6TEWxihQc,4973
104
+ huaweicloudsdkcae/v1/model/delete_vpc_egress_request.py,sha256=8xTs0CjBWkWISsmWbgmdM8jq6br3i6LRIxk5PGLpUNM,7537
105
+ huaweicloudsdkcae/v1/model/delete_vpc_egress_response.py,sha256=kVHuJMPSUWojwV7loKVrTTKH_s2Qk-foKsDJkLHIlIA,2443
102
106
  huaweicloudsdkcae/v1/model/domain_item.py,sha256=ttfrQ7cIuO6b3cwQ29I_dkACl137mDeR-Ap6yN8f_YA,3073
103
107
  huaweicloudsdkcae/v1/model/domain_kind_obj.py,sha256=a9LCAT7Yp5KrzVV5j8ZPQXxBL6AaJTmsbmkh4IJE9CI,2358
108
+ huaweicloudsdkcae/v1/model/egress_cidr.py,sha256=Kv-OwzwfMTD3Vl3-jcGo3Dl2Xqb9JKB156Mu5upxz0o,4466
104
109
  huaweicloudsdkcae/v1/model/eip_kind_obj.py,sha256=Sf0-7jTarAjOy2Jw3aKrcPkmB_j8IRyLH4qm6A8O_E4,2343
105
110
  huaweicloudsdkcae/v1/model/environment_item.py,sha256=va2_DlloliUzvBfyKxdyDqtV-8553NiiegeGR8mA4os,8575
106
111
  huaweicloudsdkcae/v1/model/environment_kind_obj.py,sha256=0MJd9GiKINqsZudc3iS5pMe3jxvvl6srwejFaWxXEGk,2383
@@ -150,6 +155,8 @@ huaweicloudsdkcae/v1/model/list_timer_rules_request.py,sha256=71toVPwBseDBI_AuYM
150
155
  huaweicloudsdkcae/v1/model/list_timer_rules_response.py,sha256=thfkwktkbAM9uCMnNhzP51ZbtI1ZHno0IWVi_rpru_M,4926
151
156
  huaweicloudsdkcae/v1/model/list_volumes_request.py,sha256=LY7_1ARfi_Hc9Hq_6aKrSkNpTsiX3YG_keakKf6fASY,7552
152
157
  huaweicloudsdkcae/v1/model/list_volumes_response.py,sha256=KFKJYf3bbDmLPPsuk7eftrQoZohvrYe1nJsrr32VFjg,4904
158
+ huaweicloudsdkcae/v1/model/list_vpc_egress_request.py,sha256=bLnu1GbcCPwe7cKlFM-l94GCkisrtmGfb63TD0LTIVo,6620
159
+ huaweicloudsdkcae/v1/model/list_vpc_egress_response.py,sha256=ehfmLZoK2PZLKy0NQT1gK_UChvYv9rb_ZgDRht5zT-o,4903
153
160
  huaweicloudsdkcae/v1/model/meta_cert.py,sha256=EHA1S_JePNCeMSPOXA6u7lDox533LF3WVv83nOIblDU,3488
154
161
  huaweicloudsdkcae/v1/model/meta_domain.py,sha256=EHnFh7gVyEHaCBI91jUJbogJCCCpJA4JX-zP6tQQ9mQ,4308
155
162
  huaweicloudsdkcae/v1/model/metadata_response.py,sha256=fNZiNl4wAExhfPr99RV6UY8yPD69jgCl86bMppja9Lk,6422
@@ -207,10 +214,14 @@ huaweicloudsdkcae/v1/model/volume_configuration_data_volume.py,sha256=BGmS4FigtL
207
214
  huaweicloudsdkcae/v1/model/volume_configuration_mount_info.py,sha256=5k5aU50LF61UoQHyykylQCvSjoDjNlS6268w2WUwQ60,4740
208
215
  huaweicloudsdkcae/v1/model/volume_kind_obj.py,sha256=6duZL5W4P8ygOYI7wdi0t2jM6C21SOiMi1TYA_zVf6g,2358
209
216
  huaweicloudsdkcae/v1/model/volume_spec.py,sha256=enTKBxL4stScG4FaNIWYGH9a0DQ7oCT6ZzXagJXhBJk,4871
217
+ huaweicloudsdkcae/v1/model/vpc_egress_kind_obj.py,sha256=5nGaTW4rqNG6efULuTSuWxMuzhjw6g03p7YrFOTXfTM,2373
218
+ huaweicloudsdkcae/v1/model/vpc_egress_request_body.py,sha256=Gd0KcWPOlcUi8fmCy3UgYrlmf_mFn4rS8ej3b80I3hw,4770
219
+ huaweicloudsdkcae/v1/model/vpc_egress_request_body_spec.py,sha256=UOWANus9wddqNCjKVD0lsmD17JjfOSpT6L2BGY6M1mU,3193
220
+ huaweicloudsdkcae/v1/model/vpc_egress_response_body_spec.py,sha256=CF7CeqWOcGrevnTBeLYHDXcDnerM01A0z3Gc5n6l4Ok,4816
210
221
  huaweicloudsdkcae/v1/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
211
222
  huaweicloudsdkcae/v1/region/cae_region.py,sha256=jwRHLF_CPoikdZ37-x0FehGQx6cPnz6zvu7BuXBFA-0,1536
212
- huaweicloudsdkcae-3.1.93.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
213
- huaweicloudsdkcae-3.1.93.dist-info/METADATA,sha256=cvq9OLn65lxDlSyYlSQpTVoYl84sjVUK6fnmRSBnwRs,1134
214
- huaweicloudsdkcae-3.1.93.dist-info/WHEEL,sha256=DZajD4pwLWue70CAfc7YaxT1wLUciNBvN_TTcvXpltE,110
215
- huaweicloudsdkcae-3.1.93.dist-info/top_level.txt,sha256=bSiBgsEXtNwy-Yv8143HEaMChUEIffdz2t9FM-26QjM,18
216
- huaweicloudsdkcae-3.1.93.dist-info/RECORD,,
223
+ huaweicloudsdkcae-3.1.95.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
224
+ huaweicloudsdkcae-3.1.95.dist-info/METADATA,sha256=7a8iGKEiowczXlWNTr64pYYRH95KWNXFf1d781cWzxY,1134
225
+ huaweicloudsdkcae-3.1.95.dist-info/WHEEL,sha256=DZajD4pwLWue70CAfc7YaxT1wLUciNBvN_TTcvXpltE,110
226
+ huaweicloudsdkcae-3.1.95.dist-info/top_level.txt,sha256=bSiBgsEXtNwy-Yv8143HEaMChUEIffdz2t9FM-26QjM,18
227
+ huaweicloudsdkcae-3.1.95.dist-info/RECORD,,