huaweicloudsdkcae 3.1.115__py2.py3-none-any.whl → 3.1.116__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.
- huaweicloudsdkcae/v1/cae_async_client.py +2 -0
- huaweicloudsdkcae/v1/cae_client.py +2 -0
- huaweicloudsdkcae/v1/model/access_configuration_data_items.py +30 -1
- huaweicloudsdkcae/v1/model/access_configuration_port.py +59 -1
- huaweicloudsdkcae/v1/model/list_component_configurations_request.py +32 -3
- {huaweicloudsdkcae-3.1.115.dist-info → huaweicloudsdkcae-3.1.116.dist-info}/METADATA +2 -2
- {huaweicloudsdkcae-3.1.115.dist-info → huaweicloudsdkcae-3.1.116.dist-info}/RECORD +10 -10
- {huaweicloudsdkcae-3.1.115.dist-info → huaweicloudsdkcae-3.1.116.dist-info}/LICENSE +0 -0
- {huaweicloudsdkcae-3.1.115.dist-info → huaweicloudsdkcae-3.1.116.dist-info}/WHEEL +0 -0
- {huaweicloudsdkcae-3.1.115.dist-info → huaweicloudsdkcae-3.1.116.dist-info}/top_level.txt +0 -0
|
@@ -1543,6 +1543,8 @@ class CaeAsyncClient(Client):
|
|
|
1543
1543
|
path_params['component_id'] = local_var_params['component_id']
|
|
1544
1544
|
|
|
1545
1545
|
query_params = []
|
|
1546
|
+
if 'display_mode' in local_var_params:
|
|
1547
|
+
query_params.append(('displayMode', local_var_params['display_mode']))
|
|
1546
1548
|
|
|
1547
1549
|
header_params = {}
|
|
1548
1550
|
if 'x_enterprise_project_id' in local_var_params:
|
|
@@ -1543,6 +1543,8 @@ class CaeClient(Client):
|
|
|
1543
1543
|
path_params['component_id'] = local_var_params['component_id']
|
|
1544
1544
|
|
|
1545
1545
|
query_params = []
|
|
1546
|
+
if 'display_mode' in local_var_params:
|
|
1547
|
+
query_params.append(('displayMode', local_var_params['display_mode']))
|
|
1546
1548
|
|
|
1547
1549
|
header_params = {}
|
|
1548
1550
|
if 'x_enterprise_project_id' in local_var_params:
|
|
@@ -17,6 +17,7 @@ class AccessConfigurationDataItems:
|
|
|
17
17
|
sensitive_list = []
|
|
18
18
|
|
|
19
19
|
openapi_types = {
|
|
20
|
+
'operator': 'str',
|
|
20
21
|
'uid': 'str',
|
|
21
22
|
'metadata': 'AccessConfigurationMetadata',
|
|
22
23
|
'type': 'str',
|
|
@@ -29,6 +30,7 @@ class AccessConfigurationDataItems:
|
|
|
29
30
|
}
|
|
30
31
|
|
|
31
32
|
attribute_map = {
|
|
33
|
+
'operator': 'operator',
|
|
32
34
|
'uid': 'uid',
|
|
33
35
|
'metadata': 'metadata',
|
|
34
36
|
'type': 'type',
|
|
@@ -40,11 +42,13 @@ class AccessConfigurationDataItems:
|
|
|
40
42
|
'private_ip': 'private_ip'
|
|
41
43
|
}
|
|
42
44
|
|
|
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):
|
|
45
|
+
def __init__(self, operator=None, uid=None, metadata=None, type=None, domain_names=None, access_control=None, ports=None, elb_id=None, public_ip=None, private_ip=None):
|
|
44
46
|
"""AccessConfigurationDataItems
|
|
45
47
|
|
|
46
48
|
The model defined in huaweicloud sdk
|
|
47
49
|
|
|
50
|
+
:param operator: 配置模式。 - 如果operator值为空,则表示使用全量覆盖模式进行配置,否则表示使用增删改模式进行配置。且此级列表的所有元素的operator值必须同时全为空或者非空。 - 当使用增删改模式时,operator取值支持\"add\",\"copy\",\"modify\",\"delete\",分别表示新增,复制指定uid的元素修改后新增,修改指定uid的元素,删除指定uid的元素。 - 当operator取值为\"copy\",\"modify\",\"delete\"时,uid的值必须为非空,且存在于最后一次生效的配置中。 - 当operator取值为\"copy\",\"modify\"时,与operator同级别的字段中除uid外的所有字段如不写,置空或者为空列表,则表示保留在最后一次生效配置中指定uid的元素的同一字段的值。
|
|
51
|
+
:type operator: str
|
|
48
52
|
:param uid: 访问方式的uid。
|
|
49
53
|
:type uid: str
|
|
50
54
|
:param metadata:
|
|
@@ -67,6 +71,7 @@ class AccessConfigurationDataItems:
|
|
|
67
71
|
|
|
68
72
|
|
|
69
73
|
|
|
74
|
+
self._operator = None
|
|
70
75
|
self._uid = None
|
|
71
76
|
self._metadata = None
|
|
72
77
|
self._type = None
|
|
@@ -78,6 +83,8 @@ class AccessConfigurationDataItems:
|
|
|
78
83
|
self._private_ip = None
|
|
79
84
|
self.discriminator = None
|
|
80
85
|
|
|
86
|
+
if operator is not None:
|
|
87
|
+
self.operator = operator
|
|
81
88
|
if uid is not None:
|
|
82
89
|
self.uid = uid
|
|
83
90
|
if metadata is not None:
|
|
@@ -97,6 +104,28 @@ class AccessConfigurationDataItems:
|
|
|
97
104
|
if private_ip is not None:
|
|
98
105
|
self.private_ip = private_ip
|
|
99
106
|
|
|
107
|
+
@property
|
|
108
|
+
def operator(self):
|
|
109
|
+
"""Gets the operator of this AccessConfigurationDataItems.
|
|
110
|
+
|
|
111
|
+
配置模式。 - 如果operator值为空,则表示使用全量覆盖模式进行配置,否则表示使用增删改模式进行配置。且此级列表的所有元素的operator值必须同时全为空或者非空。 - 当使用增删改模式时,operator取值支持\"add\",\"copy\",\"modify\",\"delete\",分别表示新增,复制指定uid的元素修改后新增,修改指定uid的元素,删除指定uid的元素。 - 当operator取值为\"copy\",\"modify\",\"delete\"时,uid的值必须为非空,且存在于最后一次生效的配置中。 - 当operator取值为\"copy\",\"modify\"时,与operator同级别的字段中除uid外的所有字段如不写,置空或者为空列表,则表示保留在最后一次生效配置中指定uid的元素的同一字段的值。
|
|
112
|
+
|
|
113
|
+
:return: The operator of this AccessConfigurationDataItems.
|
|
114
|
+
:rtype: str
|
|
115
|
+
"""
|
|
116
|
+
return self._operator
|
|
117
|
+
|
|
118
|
+
@operator.setter
|
|
119
|
+
def operator(self, operator):
|
|
120
|
+
"""Sets the operator of this AccessConfigurationDataItems.
|
|
121
|
+
|
|
122
|
+
配置模式。 - 如果operator值为空,则表示使用全量覆盖模式进行配置,否则表示使用增删改模式进行配置。且此级列表的所有元素的operator值必须同时全为空或者非空。 - 当使用增删改模式时,operator取值支持\"add\",\"copy\",\"modify\",\"delete\",分别表示新增,复制指定uid的元素修改后新增,修改指定uid的元素,删除指定uid的元素。 - 当operator取值为\"copy\",\"modify\",\"delete\"时,uid的值必须为非空,且存在于最后一次生效的配置中。 - 当operator取值为\"copy\",\"modify\"时,与operator同级别的字段中除uid外的所有字段如不写,置空或者为空列表,则表示保留在最后一次生效配置中指定uid的元素的同一字段的值。
|
|
123
|
+
|
|
124
|
+
:param operator: The operator of this AccessConfigurationDataItems.
|
|
125
|
+
:type operator: str
|
|
126
|
+
"""
|
|
127
|
+
self._operator = operator
|
|
128
|
+
|
|
100
129
|
@property
|
|
101
130
|
def uid(self):
|
|
102
131
|
"""Gets the uid of this AccessConfigurationDataItems.
|
|
@@ -17,6 +17,8 @@ class AccessConfigurationPort:
|
|
|
17
17
|
sensitive_list = []
|
|
18
18
|
|
|
19
19
|
openapi_types = {
|
|
20
|
+
'operator': 'str',
|
|
21
|
+
'uid': 'str',
|
|
20
22
|
'target_port': 'int',
|
|
21
23
|
'port': 'int',
|
|
22
24
|
'protocol': 'str',
|
|
@@ -28,6 +30,8 @@ class AccessConfigurationPort:
|
|
|
28
30
|
}
|
|
29
31
|
|
|
30
32
|
attribute_map = {
|
|
33
|
+
'operator': 'operator',
|
|
34
|
+
'uid': 'uid',
|
|
31
35
|
'target_port': 'target_port',
|
|
32
36
|
'port': 'port',
|
|
33
37
|
'protocol': 'protocol',
|
|
@@ -38,11 +42,15 @@ class AccessConfigurationPort:
|
|
|
38
42
|
'elb_id': 'elb_id'
|
|
39
43
|
}
|
|
40
44
|
|
|
41
|
-
def __init__(self, target_port=None, port=None, protocol=None, default_certificate=None, certificate=None, policy=None, paths=None, elb_id=None):
|
|
45
|
+
def __init__(self, operator=None, uid=None, target_port=None, port=None, protocol=None, default_certificate=None, certificate=None, policy=None, paths=None, elb_id=None):
|
|
42
46
|
"""AccessConfigurationPort
|
|
43
47
|
|
|
44
48
|
The model defined in huaweicloud sdk
|
|
45
49
|
|
|
50
|
+
:param operator: 配置模式。 - 如果operator值为空,则表示使用全量覆盖模式进行配置,否则表示使用增删改模式进行配置。且此级列表的所有元素的operator值必须同时全为空或者非空。 - 当使用增删改模式时,operator取值支持\"add\",\"copy\",\"modify\",\"delete\",分别表示新增,复制指定uid的元素修改后新增,修改指定uid的元素,删除指定uid的元素。 - 当operator取值为\"copy\",\"modify\",\"delete\"时,uid的值必须为非空,且存在于最后一次生效的配置中。 - 当operator取值为\"copy\",\"modify\"时,与operator同级别的字段中除uid外的所有字段如不写,置空或者为空列表,则表示保留在最后一次生效配置中指定uid的元素的同一字段的值。
|
|
51
|
+
:type operator: str
|
|
52
|
+
:param uid: 端口配置的uid。
|
|
53
|
+
:type uid: str
|
|
46
54
|
:param target_port: 监听端口。
|
|
47
55
|
:type target_port: int
|
|
48
56
|
:param port: 访问端口。
|
|
@@ -63,6 +71,8 @@ class AccessConfigurationPort:
|
|
|
63
71
|
|
|
64
72
|
|
|
65
73
|
|
|
74
|
+
self._operator = None
|
|
75
|
+
self._uid = None
|
|
66
76
|
self._target_port = None
|
|
67
77
|
self._port = None
|
|
68
78
|
self._protocol = None
|
|
@@ -73,6 +83,10 @@ class AccessConfigurationPort:
|
|
|
73
83
|
self._elb_id = None
|
|
74
84
|
self.discriminator = None
|
|
75
85
|
|
|
86
|
+
if operator is not None:
|
|
87
|
+
self.operator = operator
|
|
88
|
+
if uid is not None:
|
|
89
|
+
self.uid = uid
|
|
76
90
|
if target_port is not None:
|
|
77
91
|
self.target_port = target_port
|
|
78
92
|
if port is not None:
|
|
@@ -90,6 +104,50 @@ class AccessConfigurationPort:
|
|
|
90
104
|
if elb_id is not None:
|
|
91
105
|
self.elb_id = elb_id
|
|
92
106
|
|
|
107
|
+
@property
|
|
108
|
+
def operator(self):
|
|
109
|
+
"""Gets the operator of this AccessConfigurationPort.
|
|
110
|
+
|
|
111
|
+
配置模式。 - 如果operator值为空,则表示使用全量覆盖模式进行配置,否则表示使用增删改模式进行配置。且此级列表的所有元素的operator值必须同时全为空或者非空。 - 当使用增删改模式时,operator取值支持\"add\",\"copy\",\"modify\",\"delete\",分别表示新增,复制指定uid的元素修改后新增,修改指定uid的元素,删除指定uid的元素。 - 当operator取值为\"copy\",\"modify\",\"delete\"时,uid的值必须为非空,且存在于最后一次生效的配置中。 - 当operator取值为\"copy\",\"modify\"时,与operator同级别的字段中除uid外的所有字段如不写,置空或者为空列表,则表示保留在最后一次生效配置中指定uid的元素的同一字段的值。
|
|
112
|
+
|
|
113
|
+
:return: The operator of this AccessConfigurationPort.
|
|
114
|
+
:rtype: str
|
|
115
|
+
"""
|
|
116
|
+
return self._operator
|
|
117
|
+
|
|
118
|
+
@operator.setter
|
|
119
|
+
def operator(self, operator):
|
|
120
|
+
"""Sets the operator of this AccessConfigurationPort.
|
|
121
|
+
|
|
122
|
+
配置模式。 - 如果operator值为空,则表示使用全量覆盖模式进行配置,否则表示使用增删改模式进行配置。且此级列表的所有元素的operator值必须同时全为空或者非空。 - 当使用增删改模式时,operator取值支持\"add\",\"copy\",\"modify\",\"delete\",分别表示新增,复制指定uid的元素修改后新增,修改指定uid的元素,删除指定uid的元素。 - 当operator取值为\"copy\",\"modify\",\"delete\"时,uid的值必须为非空,且存在于最后一次生效的配置中。 - 当operator取值为\"copy\",\"modify\"时,与operator同级别的字段中除uid外的所有字段如不写,置空或者为空列表,则表示保留在最后一次生效配置中指定uid的元素的同一字段的值。
|
|
123
|
+
|
|
124
|
+
:param operator: The operator of this AccessConfigurationPort.
|
|
125
|
+
:type operator: str
|
|
126
|
+
"""
|
|
127
|
+
self._operator = operator
|
|
128
|
+
|
|
129
|
+
@property
|
|
130
|
+
def uid(self):
|
|
131
|
+
"""Gets the uid of this AccessConfigurationPort.
|
|
132
|
+
|
|
133
|
+
端口配置的uid。
|
|
134
|
+
|
|
135
|
+
:return: The uid of this AccessConfigurationPort.
|
|
136
|
+
:rtype: str
|
|
137
|
+
"""
|
|
138
|
+
return self._uid
|
|
139
|
+
|
|
140
|
+
@uid.setter
|
|
141
|
+
def uid(self, uid):
|
|
142
|
+
"""Sets the uid of this AccessConfigurationPort.
|
|
143
|
+
|
|
144
|
+
端口配置的uid。
|
|
145
|
+
|
|
146
|
+
:param uid: The uid of this AccessConfigurationPort.
|
|
147
|
+
:type uid: str
|
|
148
|
+
"""
|
|
149
|
+
self._uid = uid
|
|
150
|
+
|
|
93
151
|
@property
|
|
94
152
|
def target_port(self):
|
|
95
153
|
"""Gets the target_port of this AccessConfigurationPort.
|
|
@@ -20,17 +20,19 @@ class ListComponentConfigurationsRequest:
|
|
|
20
20
|
'application_id': 'str',
|
|
21
21
|
'component_id': 'str',
|
|
22
22
|
'x_enterprise_project_id': 'str',
|
|
23
|
-
'x_environment_id': 'str'
|
|
23
|
+
'x_environment_id': 'str',
|
|
24
|
+
'display_mode': 'str'
|
|
24
25
|
}
|
|
25
26
|
|
|
26
27
|
attribute_map = {
|
|
27
28
|
'application_id': 'application_id',
|
|
28
29
|
'component_id': 'component_id',
|
|
29
30
|
'x_enterprise_project_id': 'X-Enterprise-Project-ID',
|
|
30
|
-
'x_environment_id': 'X-Environment-ID'
|
|
31
|
+
'x_environment_id': 'X-Environment-ID',
|
|
32
|
+
'display_mode': 'displayMode'
|
|
31
33
|
}
|
|
32
34
|
|
|
33
|
-
def __init__(self, application_id=None, component_id=None, x_enterprise_project_id=None, x_environment_id=None):
|
|
35
|
+
def __init__(self, application_id=None, component_id=None, x_enterprise_project_id=None, x_environment_id=None, display_mode=None):
|
|
34
36
|
"""ListComponentConfigurationsRequest
|
|
35
37
|
|
|
36
38
|
The model defined in huaweicloud sdk
|
|
@@ -43,6 +45,8 @@ class ListComponentConfigurationsRequest:
|
|
|
43
45
|
:type x_enterprise_project_id: str
|
|
44
46
|
:param x_environment_id: 环境ID。 - 获取环境ID,通过《[云应用引擎API参考](https://support.huaweicloud.com/api-cae/ListEnvironments.html)》的“获取环境列表”章节获取环境信息。 - 请求响应成功后在响应体的items数组中的一个元素即为一个环境的信息,其中id字段即是环境ID。
|
|
45
47
|
:type x_environment_id: str
|
|
48
|
+
:param display_mode: 显示模式,当前只支持“latestEffective”,即只显示最后一次生效配置。
|
|
49
|
+
:type display_mode: str
|
|
46
50
|
"""
|
|
47
51
|
|
|
48
52
|
|
|
@@ -51,6 +55,7 @@ class ListComponentConfigurationsRequest:
|
|
|
51
55
|
self._component_id = None
|
|
52
56
|
self._x_enterprise_project_id = None
|
|
53
57
|
self._x_environment_id = None
|
|
58
|
+
self._display_mode = None
|
|
54
59
|
self.discriminator = None
|
|
55
60
|
|
|
56
61
|
self.application_id = application_id
|
|
@@ -58,6 +63,8 @@ class ListComponentConfigurationsRequest:
|
|
|
58
63
|
if x_enterprise_project_id is not None:
|
|
59
64
|
self.x_enterprise_project_id = x_enterprise_project_id
|
|
60
65
|
self.x_environment_id = x_environment_id
|
|
66
|
+
if display_mode is not None:
|
|
67
|
+
self.display_mode = display_mode
|
|
61
68
|
|
|
62
69
|
@property
|
|
63
70
|
def application_id(self):
|
|
@@ -147,6 +154,28 @@ class ListComponentConfigurationsRequest:
|
|
|
147
154
|
"""
|
|
148
155
|
self._x_environment_id = x_environment_id
|
|
149
156
|
|
|
157
|
+
@property
|
|
158
|
+
def display_mode(self):
|
|
159
|
+
"""Gets the display_mode of this ListComponentConfigurationsRequest.
|
|
160
|
+
|
|
161
|
+
显示模式,当前只支持“latestEffective”,即只显示最后一次生效配置。
|
|
162
|
+
|
|
163
|
+
:return: The display_mode of this ListComponentConfigurationsRequest.
|
|
164
|
+
:rtype: str
|
|
165
|
+
"""
|
|
166
|
+
return self._display_mode
|
|
167
|
+
|
|
168
|
+
@display_mode.setter
|
|
169
|
+
def display_mode(self, display_mode):
|
|
170
|
+
"""Sets the display_mode of this ListComponentConfigurationsRequest.
|
|
171
|
+
|
|
172
|
+
显示模式,当前只支持“latestEffective”,即只显示最后一次生效配置。
|
|
173
|
+
|
|
174
|
+
:param display_mode: The display_mode of this ListComponentConfigurationsRequest.
|
|
175
|
+
:type display_mode: str
|
|
176
|
+
"""
|
|
177
|
+
self._display_mode = display_mode
|
|
178
|
+
|
|
150
179
|
def to_dict(self):
|
|
151
180
|
"""Returns the model properties as a dict"""
|
|
152
181
|
result = {}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: huaweicloudsdkcae
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.116
|
|
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.
|
|
25
|
+
Requires-Dist: huaweicloudsdkcore>=3.1.116
|
|
26
26
|
|
|
27
27
|
See detailed information in [huaweicloud-sdk-python-v3](https://github.com/huaweicloud/huaweicloud-sdk-python-v3).
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
huaweicloudsdkcae/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
huaweicloudsdkcae/v1/__init__.py,sha256=daZCEILluqBo7n3XLvscN8QrAMNzApNT0na7dzsVeyE,20726
|
|
3
|
-
huaweicloudsdkcae/v1/cae_async_client.py,sha256=
|
|
4
|
-
huaweicloudsdkcae/v1/cae_client.py,sha256
|
|
3
|
+
huaweicloudsdkcae/v1/cae_async_client.py,sha256=cx06wqoAC1_Fi5ho1Fnm_yyIQ0IHiQG58mzISux7vco,124928
|
|
4
|
+
huaweicloudsdkcae/v1/cae_client.py,sha256=eX2O0-8mCYC0ZXM2glivZcL8-IsVtsyuV7XhfuLxCgI,124925
|
|
5
5
|
huaweicloudsdkcae/v1/model/__init__.py,sha256=_f-yLejD2IqwBsJAlYL9qPcKtjwYNpgtAIe1oYaZf5E,20640
|
|
6
6
|
huaweicloudsdkcae/v1/model/access.py,sha256=0xqNmw_Fm4AGwHLp9NS0NKl4sI0uvoEVIOe5aW9-Gr0,3611
|
|
7
|
-
huaweicloudsdkcae/v1/model/access_configuration_data_items.py,sha256=
|
|
7
|
+
huaweicloudsdkcae/v1/model/access_configuration_data_items.py,sha256=zsNyzL7imgIewtRs4Wu6a-_ZaIfHpFKAcISmrYlYY_c,13673
|
|
8
8
|
huaweicloudsdkcae/v1/model/access_configuration_http_path.py,sha256=EHJjhTkSlZCcXpeBtHApu36hG7Toj10HLNDKemMkQyw,5037
|
|
9
9
|
huaweicloudsdkcae/v1/model/access_configuration_metadata.py,sha256=GWJIvbL1rGwFRYXenix7Y5uSa6oTOliCRVKCoU_Sy2g,3913
|
|
10
|
-
huaweicloudsdkcae/v1/model/access_configuration_port.py,sha256=
|
|
10
|
+
huaweicloudsdkcae/v1/model/access_configuration_port.py,sha256=eIiFboTkjgwjU6O7wkDVJQyHaLUKg982zN9Hjk0oPsE,13320
|
|
11
11
|
huaweicloudsdkcae/v1/model/access_control.py,sha256=rYGNKVfrgROsfj6Z8xnSJZcTlui_xuDCQFFO6Wc3LZI,4403
|
|
12
12
|
huaweicloudsdkcae/v1/model/action_kind_obj.py,sha256=02B38ZXy_d827GXGuxGyE1rF4NDSMNpRYHCIaFbcZlE,2358
|
|
13
13
|
huaweicloudsdkcae/v1/model/action_on_component_build.py,sha256=0z-dm4bR2v0wYcwq60SAoTS350pZOd5wRg5k5x-IuAw,4848
|
|
@@ -141,7 +141,7 @@ huaweicloudsdkcae/v1/model/list_applications_request.py,sha256=0FVlTvi6Fq3Y4KLNz
|
|
|
141
141
|
huaweicloudsdkcae/v1/model/list_applications_response.py,sha256=7HgQCpyRr7wUwq52cf_LrVlQP3Izv9_LzQv3Mn5PHNI,5031
|
|
142
142
|
huaweicloudsdkcae/v1/model/list_certificates_request.py,sha256=NQwxAPaBgklEhJj_oB3FKSJ-pQPQzNamyeujVUPL_Yk,6653
|
|
143
143
|
huaweicloudsdkcae/v1/model/list_certificates_response.py,sha256=htCxvBTlKSuAnthwwXjzf9Pd0ZXp2P4ar_5TZTBYKw8,5003
|
|
144
|
-
huaweicloudsdkcae/v1/model/list_component_configurations_request.py,sha256=
|
|
144
|
+
huaweicloudsdkcae/v1/model/list_component_configurations_request.py,sha256=L1-iTqs6YdJYT2S4Sln1uL6IE1TmuIZHZW9HV2_c-qA,9705
|
|
145
145
|
huaweicloudsdkcae/v1/model/list_component_configurations_response.py,sha256=a1rSawYFe_wBPJGj47lsXgCHQsqY3J1WwBf1qKpCyOM,5355
|
|
146
146
|
huaweicloudsdkcae/v1/model/list_component_configurations_response_data.py,sha256=vycNFcGJUlLuvgBaWHthCeZWkUHufak4kxCx5yLY1kY,4221
|
|
147
147
|
huaweicloudsdkcae/v1/model/list_component_instances_request.py,sha256=t4I8nt74vEbapJ8vjcNXa9e2HVxr_g01QOvYrQPnd5Q,8457
|
|
@@ -240,8 +240,8 @@ huaweicloudsdkcae/v1/model/vpc_egress_request_body_spec.py,sha256=UOWANus9wddqNC
|
|
|
240
240
|
huaweicloudsdkcae/v1/model/vpc_egress_response_body_spec.py,sha256=CF7CeqWOcGrevnTBeLYHDXcDnerM01A0z3Gc5n6l4Ok,4816
|
|
241
241
|
huaweicloudsdkcae/v1/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
242
242
|
huaweicloudsdkcae/v1/region/cae_region.py,sha256=jwRHLF_CPoikdZ37-x0FehGQx6cPnz6zvu7BuXBFA-0,1536
|
|
243
|
-
huaweicloudsdkcae-3.1.
|
|
244
|
-
huaweicloudsdkcae-3.1.
|
|
245
|
-
huaweicloudsdkcae-3.1.
|
|
246
|
-
huaweicloudsdkcae-3.1.
|
|
247
|
-
huaweicloudsdkcae-3.1.
|
|
243
|
+
huaweicloudsdkcae-3.1.116.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
|
|
244
|
+
huaweicloudsdkcae-3.1.116.dist-info/METADATA,sha256=afyuvuRMpkXNMMz0DVajIz_UzCJIiFOLkoYz-OP7Bns,1135
|
|
245
|
+
huaweicloudsdkcae-3.1.116.dist-info/WHEEL,sha256=fS9sRbCBHs7VFcwJLnLXN1MZRR0_TVTxvXKzOnaSFs8,110
|
|
246
|
+
huaweicloudsdkcae-3.1.116.dist-info/top_level.txt,sha256=bSiBgsEXtNwy-Yv8143HEaMChUEIffdz2t9FM-26QjM,18
|
|
247
|
+
huaweicloudsdkcae-3.1.116.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|