huaweicloudsdkcae 3.1.47__py2.py3-none-any.whl → 3.1.49__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/__init__.py +57 -13
- huaweicloudsdkcae/v1/cae_async_client.py +1049 -311
- huaweicloudsdkcae/v1/cae_client.py +1037 -311
- huaweicloudsdkcae/v1/model/__init__.py +56 -11
- huaweicloudsdkcae/v1/model/access.py +6 -6
- huaweicloudsdkcae/v1/model/action_on_component_source.py +198 -0
- huaweicloudsdkcae/v1/model/action_on_component_spec.py +7 -7
- huaweicloudsdkcae/v1/model/agency.py +7 -8
- huaweicloudsdkcae/v1/model/agency_item.py +3 -3
- huaweicloudsdkcae/v1/model/agency_metadata.py +3 -3
- huaweicloudsdkcae/v1/model/{log_strategy.py → app_info.py} +42 -42
- huaweicloudsdkcae/v1/model/application_item.py +96 -9
- huaweicloudsdkcae/v1/model/application_metadata.py +9 -9
- huaweicloudsdkcae/v1/model/archive.py +3 -3
- huaweicloudsdkcae/v1/model/build.py +5 -1
- huaweicloudsdkcae/v1/model/cert_item.py +136 -0
- huaweicloudsdkcae/v1/model/cert_req.py +190 -0
- huaweicloudsdkcae/v1/model/component_execution_result.py +202 -0
- huaweicloudsdkcae/v1/model/component_info.py +144 -0
- huaweicloudsdkcae/v1/model/component_item.py +62 -33
- huaweicloudsdkcae/v1/model/component_snapshot_context.py +724 -0
- huaweicloudsdkcae/v1/model/component_snapshot_item.py +70 -74
- huaweicloudsdkcae/v1/model/component_spec.py +126 -97
- huaweicloudsdkcae/v1/model/configuration.py +9 -9
- huaweicloudsdkcae/v1/model/configuration_item.py +6 -6
- huaweicloudsdkcae/v1/model/create_application_request.py +32 -32
- huaweicloudsdkcae/v1/model/create_application_request_body.py +6 -6
- huaweicloudsdkcae/v1/model/create_application_request_body_metadata.py +6 -6
- huaweicloudsdkcae/v1/model/create_application_response.py +6 -6
- huaweicloudsdkcae/v1/model/create_certificate_request.py +168 -0
- huaweicloudsdkcae/v1/model/create_certificate_response.py +174 -0
- huaweicloudsdkcae/v1/model/create_component_configuration_request.py +53 -53
- huaweicloudsdkcae/v1/model/create_component_configuration_request_body.py +6 -6
- huaweicloudsdkcae/v1/model/create_component_request.py +40 -40
- huaweicloudsdkcae/v1/model/create_component_request_body.py +6 -6
- huaweicloudsdkcae/v1/model/create_component_request_body_metadata.py +4 -5
- huaweicloudsdkcae/v1/model/create_component_request_body_spec.py +6 -6
- huaweicloudsdkcae/v1/model/create_component_response.py +10 -10
- huaweicloudsdkcae/v1/model/create_component_spec.py +306 -0
- huaweicloudsdkcae/v1/model/create_domain_req.py +166 -0
- huaweicloudsdkcae/v1/model/create_domain_request.py +168 -0
- huaweicloudsdkcae/v1/model/create_domain_response.py +174 -0
- huaweicloudsdkcae/v1/model/create_environment_request.py +3 -3
- huaweicloudsdkcae/v1/model/create_environment_request_body.py +6 -6
- huaweicloudsdkcae/v1/model/create_environment_request_body_metadata.py +6 -34
- huaweicloudsdkcae/v1/model/create_environment_response.py +20 -74
- huaweicloudsdkcae/v1/model/create_meta_cert.py +114 -0
- huaweicloudsdkcae/v1/model/create_meta_domain.py +114 -0
- huaweicloudsdkcae/v1/model/create_spec_cert.py +170 -0
- huaweicloudsdkcae/v1/model/create_timer_rule_req.py +169 -0
- huaweicloudsdkcae/v1/model/create_timer_rule_request.py +168 -0
- huaweicloudsdkcae/v1/model/create_timer_rule_response.py +170 -0
- huaweicloudsdkcae/v1/model/create_volume_req.py +6 -6
- huaweicloudsdkcae/v1/model/create_volume_request.py +32 -32
- huaweicloudsdkcae/v1/model/delete_application_request.py +37 -37
- huaweicloudsdkcae/v1/model/delete_certificate_request.py +171 -0
- huaweicloudsdkcae/v1/model/delete_certificate_response.py +85 -0
- huaweicloudsdkcae/v1/model/delete_component_configuration_request.py +53 -53
- huaweicloudsdkcae/v1/model/delete_component_request.py +53 -53
- huaweicloudsdkcae/v1/model/delete_domain_request.py +171 -0
- huaweicloudsdkcae/v1/model/delete_domain_response.py +85 -0
- huaweicloudsdkcae/v1/model/delete_environment_request.py +6 -6
- huaweicloudsdkcae/v1/model/delete_environment_response.py +3 -3
- huaweicloudsdkcae/v1/model/delete_timer_rule_request.py +171 -0
- huaweicloudsdkcae/v1/model/delete_timer_rule_response.py +85 -0
- huaweicloudsdkcae/v1/model/delete_volume_request.py +37 -37
- huaweicloudsdkcae/v1/model/delete_volume_response.py +9 -9
- huaweicloudsdkcae/v1/model/domain_item.py +111 -0
- huaweicloudsdkcae/v1/model/environment_item.py +13 -42
- huaweicloudsdkcae/v1/model/event_item.py +36 -7
- huaweicloudsdkcae/v1/model/execute_action_request.py +53 -53
- huaweicloudsdkcae/v1/model/execute_action_request_body.py +6 -6
- huaweicloudsdkcae/v1/model/execute_action_request_body_metadata.py +3 -3
- huaweicloudsdkcae/v1/model/execute_action_response.py +3 -3
- huaweicloudsdkcae/v1/model/execution_details.py +144 -0
- huaweicloudsdkcae/v1/model/instance.py +3 -3
- huaweicloudsdkcae/v1/model/job_spec.py +36 -7
- huaweicloudsdkcae/v1/model/{show_agency_request.py → list_agencies_request.py} +3 -3
- huaweicloudsdkcae/v1/model/list_agencies_response.py +174 -0
- huaweicloudsdkcae/v1/model/list_applications_request.py +34 -34
- huaweicloudsdkcae/v1/model/list_applications_response.py +6 -6
- huaweicloudsdkcae/v1/model/{list_events_request.py → list_certificates_request.py} +29 -85
- huaweicloudsdkcae/v1/model/list_certificates_response.py +174 -0
- huaweicloudsdkcae/v1/model/list_component_configurations_request.py +199 -0
- huaweicloudsdkcae/v1/model/{list_configurations_response.py → list_component_configurations_response.py} +22 -22
- huaweicloudsdkcae/v1/model/list_component_events_request.py +199 -0
- huaweicloudsdkcae/v1/model/{list_events_response.py → list_component_events_response.py} +22 -22
- huaweicloudsdkcae/v1/model/list_component_instances_request.py +199 -0
- huaweicloudsdkcae/v1/model/{list_instances_response.py → list_component_instances_response.py} +22 -22
- huaweicloudsdkcae/v1/model/list_component_snapshots_request.py +53 -53
- huaweicloudsdkcae/v1/model/list_component_snapshots_response.py +6 -6
- huaweicloudsdkcae/v1/model/list_components_request.py +52 -52
- huaweicloudsdkcae/v1/model/list_components_response.py +6 -6
- huaweicloudsdkcae/v1/model/{list_configurations_request.py → list_domains_request.py} +29 -85
- huaweicloudsdkcae/v1/model/list_domains_response.py +174 -0
- huaweicloudsdkcae/v1/model/list_environments_request.py +3 -3
- huaweicloudsdkcae/v1/model/list_environments_response.py +9 -9
- huaweicloudsdkcae/v1/model/{list_instances_request.py → list_timer_rules_request.py} +29 -85
- huaweicloudsdkcae/v1/model/{show_agency_response.py → list_timer_rules_response.py} +27 -31
- huaweicloudsdkcae/v1/model/list_volumes_request.py +35 -35
- huaweicloudsdkcae/v1/model/list_volumes_response.py +9 -9
- huaweicloudsdkcae/v1/model/meta_cert.py +144 -0
- huaweicloudsdkcae/v1/model/meta_domain.py +231 -0
- huaweicloudsdkcae/v1/model/metadata_response.py +46 -133
- huaweicloudsdkcae/v1/model/mount_component.py +9 -9
- huaweicloudsdkcae/v1/model/repo.py +6 -6
- huaweicloudsdkcae/v1/model/retry_job_request.py +63 -6
- huaweicloudsdkcae/v1/model/show_application_request.py +37 -37
- huaweicloudsdkcae/v1/model/show_application_response.py +6 -6
- huaweicloudsdkcae/v1/model/show_component_request.py +53 -53
- huaweicloudsdkcae/v1/model/show_component_response.py +6 -6
- huaweicloudsdkcae/v1/model/show_execution_result_request.py +171 -0
- huaweicloudsdkcae/v1/model/show_execution_result_response.py +170 -0
- huaweicloudsdkcae/v1/model/show_job_request.py +37 -9
- huaweicloudsdkcae/v1/model/show_job_response.py +6 -6
- huaweicloudsdkcae/v1/model/source.py +9 -9
- huaweicloudsdkcae/v1/model/spec_cert.py +202 -0
- huaweicloudsdkcae/v1/model/task.py +68 -68
- huaweicloudsdkcae/v1/model/timer_rule_details.py +434 -0
- huaweicloudsdkcae/v1/model/update_cert_req.py +166 -0
- huaweicloudsdkcae/v1/model/update_certificate_request.py +196 -0
- huaweicloudsdkcae/v1/model/update_certificate_response.py +85 -0
- huaweicloudsdkcae/v1/model/update_component_request.py +53 -53
- huaweicloudsdkcae/v1/model/update_component_request_body.py +10 -10
- huaweicloudsdkcae/v1/model/update_component_request_metadata.py +143 -0
- huaweicloudsdkcae/v1/model/update_component_request_spec.py +52 -19
- huaweicloudsdkcae/v1/model/update_spec_cert.py +170 -0
- huaweicloudsdkcae/v1/model/update_timer_rule_details.py +312 -0
- huaweicloudsdkcae/v1/model/update_timer_rule_req.py +166 -0
- huaweicloudsdkcae/v1/model/update_timer_rule_request.py +196 -0
- huaweicloudsdkcae/v1/model/update_timer_rule_response.py +85 -0
- huaweicloudsdkcae/v1/model/volume.py +15 -15
- huaweicloudsdkcae/v1/model/volume_spec.py +3 -3
- huaweicloudsdkcae/v1/region/cae_region.py +3 -0
- {huaweicloudsdkcae-3.1.47.dist-info → huaweicloudsdkcae-3.1.49.dist-info}/LICENSE +0 -0
- {huaweicloudsdkcae-3.1.47.dist-info → huaweicloudsdkcae-3.1.49.dist-info}/METADATA +2 -2
- huaweicloudsdkcae-3.1.49.dist-info/RECORD +152 -0
- huaweicloudsdkcae/v1/model/environment_metadata.py +0 -318
- huaweicloudsdkcae/v1/model/metadata.py +0 -317
- huaweicloudsdkcae-3.1.47.dist-info/RECORD +0 -107
- {huaweicloudsdkcae-3.1.47.dist-info → huaweicloudsdkcae-3.1.49.dist-info}/WHEEL +0 -0
- {huaweicloudsdkcae-3.1.47.dist-info → huaweicloudsdkcae-3.1.49.dist-info}/top_level.txt +0 -0
|
@@ -17,128 +17,63 @@ class MetadataResponse:
|
|
|
17
17
|
sensitive_list = []
|
|
18
18
|
|
|
19
19
|
openapi_types = {
|
|
20
|
-
'annotations': 'dict(str, str)',
|
|
21
|
-
'created_at': 'datetime',
|
|
22
20
|
'id': 'str',
|
|
23
|
-
'jod_id': 'str',
|
|
24
21
|
'name': 'str',
|
|
25
|
-
'
|
|
26
|
-
'
|
|
22
|
+
'annotations': 'dict(str, str)',
|
|
23
|
+
'created_at': 'datetime',
|
|
27
24
|
'updated_at': 'datetime'
|
|
28
25
|
}
|
|
29
26
|
|
|
30
27
|
attribute_map = {
|
|
31
|
-
'annotations': 'annotations',
|
|
32
|
-
'created_at': 'created_at',
|
|
33
28
|
'id': 'id',
|
|
34
|
-
'jod_id': 'jod_id',
|
|
35
29
|
'name': 'name',
|
|
36
|
-
'
|
|
37
|
-
'
|
|
30
|
+
'annotations': 'annotations',
|
|
31
|
+
'created_at': 'created_at',
|
|
38
32
|
'updated_at': 'updated_at'
|
|
39
33
|
}
|
|
40
34
|
|
|
41
|
-
def __init__(self,
|
|
35
|
+
def __init__(self, id=None, name=None, annotations=None, created_at=None, updated_at=None):
|
|
42
36
|
"""MetadataResponse
|
|
43
37
|
|
|
44
38
|
The model defined in huaweicloud sdk
|
|
45
39
|
|
|
46
|
-
:param
|
|
40
|
+
:param id: 组件ID。
|
|
41
|
+
:type id: str
|
|
42
|
+
:param name: 组件名称。
|
|
43
|
+
:type name: str
|
|
44
|
+
:param annotations: 组件附加属性。 - log_group_id:LTS日志组的ID。 - log_stream_id:LTS日志流的ID。 - version:组件版本。
|
|
47
45
|
:type annotations: dict(str, str)
|
|
48
46
|
:param created_at: 创建时间。
|
|
49
47
|
:type created_at: datetime
|
|
50
|
-
:param id: 组件id。
|
|
51
|
-
:type id: str
|
|
52
|
-
:param jod_id: 任务id。
|
|
53
|
-
:type jod_id: str
|
|
54
|
-
:param name: 名称。
|
|
55
|
-
:type name: str
|
|
56
|
-
:param status: 状态。
|
|
57
|
-
:type status: str
|
|
58
|
-
:param type: 组件类型。
|
|
59
|
-
:type type: str
|
|
60
48
|
:param updated_at: 更新时间。
|
|
61
49
|
:type updated_at: datetime
|
|
62
50
|
"""
|
|
63
51
|
|
|
64
52
|
|
|
65
53
|
|
|
66
|
-
self._annotations = None
|
|
67
|
-
self._created_at = None
|
|
68
54
|
self._id = None
|
|
69
|
-
self._jod_id = None
|
|
70
55
|
self._name = None
|
|
71
|
-
self.
|
|
72
|
-
self.
|
|
56
|
+
self._annotations = None
|
|
57
|
+
self._created_at = None
|
|
73
58
|
self._updated_at = None
|
|
74
59
|
self.discriminator = None
|
|
75
60
|
|
|
76
|
-
if annotations is not None:
|
|
77
|
-
self.annotations = annotations
|
|
78
|
-
if created_at is not None:
|
|
79
|
-
self.created_at = created_at
|
|
80
61
|
if id is not None:
|
|
81
62
|
self.id = id
|
|
82
|
-
if jod_id is not None:
|
|
83
|
-
self.jod_id = jod_id
|
|
84
63
|
if name is not None:
|
|
85
64
|
self.name = name
|
|
86
|
-
if
|
|
87
|
-
self.
|
|
88
|
-
if
|
|
89
|
-
self.
|
|
65
|
+
if annotations is not None:
|
|
66
|
+
self.annotations = annotations
|
|
67
|
+
if created_at is not None:
|
|
68
|
+
self.created_at = created_at
|
|
90
69
|
if updated_at is not None:
|
|
91
70
|
self.updated_at = updated_at
|
|
92
71
|
|
|
93
|
-
@property
|
|
94
|
-
def annotations(self):
|
|
95
|
-
"""Gets the annotations of this MetadataResponse.
|
|
96
|
-
|
|
97
|
-
属性信息。
|
|
98
|
-
|
|
99
|
-
:return: The annotations of this MetadataResponse.
|
|
100
|
-
:rtype: dict(str, str)
|
|
101
|
-
"""
|
|
102
|
-
return self._annotations
|
|
103
|
-
|
|
104
|
-
@annotations.setter
|
|
105
|
-
def annotations(self, annotations):
|
|
106
|
-
"""Sets the annotations of this MetadataResponse.
|
|
107
|
-
|
|
108
|
-
属性信息。
|
|
109
|
-
|
|
110
|
-
:param annotations: The annotations of this MetadataResponse.
|
|
111
|
-
:type annotations: dict(str, str)
|
|
112
|
-
"""
|
|
113
|
-
self._annotations = annotations
|
|
114
|
-
|
|
115
|
-
@property
|
|
116
|
-
def created_at(self):
|
|
117
|
-
"""Gets the created_at of this MetadataResponse.
|
|
118
|
-
|
|
119
|
-
创建时间。
|
|
120
|
-
|
|
121
|
-
:return: The created_at of this MetadataResponse.
|
|
122
|
-
:rtype: datetime
|
|
123
|
-
"""
|
|
124
|
-
return self._created_at
|
|
125
|
-
|
|
126
|
-
@created_at.setter
|
|
127
|
-
def created_at(self, created_at):
|
|
128
|
-
"""Sets the created_at of this MetadataResponse.
|
|
129
|
-
|
|
130
|
-
创建时间。
|
|
131
|
-
|
|
132
|
-
:param created_at: The created_at of this MetadataResponse.
|
|
133
|
-
:type created_at: datetime
|
|
134
|
-
"""
|
|
135
|
-
self._created_at = created_at
|
|
136
|
-
|
|
137
72
|
@property
|
|
138
73
|
def id(self):
|
|
139
74
|
"""Gets the id of this MetadataResponse.
|
|
140
75
|
|
|
141
|
-
组件
|
|
76
|
+
组件ID。
|
|
142
77
|
|
|
143
78
|
:return: The id of this MetadataResponse.
|
|
144
79
|
:rtype: str
|
|
@@ -149,40 +84,18 @@ class MetadataResponse:
|
|
|
149
84
|
def id(self, id):
|
|
150
85
|
"""Sets the id of this MetadataResponse.
|
|
151
86
|
|
|
152
|
-
组件
|
|
87
|
+
组件ID。
|
|
153
88
|
|
|
154
89
|
:param id: The id of this MetadataResponse.
|
|
155
90
|
:type id: str
|
|
156
91
|
"""
|
|
157
92
|
self._id = id
|
|
158
93
|
|
|
159
|
-
@property
|
|
160
|
-
def jod_id(self):
|
|
161
|
-
"""Gets the jod_id of this MetadataResponse.
|
|
162
|
-
|
|
163
|
-
任务id。
|
|
164
|
-
|
|
165
|
-
:return: The jod_id of this MetadataResponse.
|
|
166
|
-
:rtype: str
|
|
167
|
-
"""
|
|
168
|
-
return self._jod_id
|
|
169
|
-
|
|
170
|
-
@jod_id.setter
|
|
171
|
-
def jod_id(self, jod_id):
|
|
172
|
-
"""Sets the jod_id of this MetadataResponse.
|
|
173
|
-
|
|
174
|
-
任务id。
|
|
175
|
-
|
|
176
|
-
:param jod_id: The jod_id of this MetadataResponse.
|
|
177
|
-
:type jod_id: str
|
|
178
|
-
"""
|
|
179
|
-
self._jod_id = jod_id
|
|
180
|
-
|
|
181
94
|
@property
|
|
182
95
|
def name(self):
|
|
183
96
|
"""Gets the name of this MetadataResponse.
|
|
184
97
|
|
|
185
|
-
|
|
98
|
+
组件名称。
|
|
186
99
|
|
|
187
100
|
:return: The name of this MetadataResponse.
|
|
188
101
|
:rtype: str
|
|
@@ -193,7 +106,7 @@ class MetadataResponse:
|
|
|
193
106
|
def name(self, name):
|
|
194
107
|
"""Sets the name of this MetadataResponse.
|
|
195
108
|
|
|
196
|
-
|
|
109
|
+
组件名称。
|
|
197
110
|
|
|
198
111
|
:param name: The name of this MetadataResponse.
|
|
199
112
|
:type name: str
|
|
@@ -201,48 +114,48 @@ class MetadataResponse:
|
|
|
201
114
|
self._name = name
|
|
202
115
|
|
|
203
116
|
@property
|
|
204
|
-
def
|
|
205
|
-
"""Gets the
|
|
117
|
+
def annotations(self):
|
|
118
|
+
"""Gets the annotations of this MetadataResponse.
|
|
206
119
|
|
|
207
|
-
|
|
120
|
+
组件附加属性。 - log_group_id:LTS日志组的ID。 - log_stream_id:LTS日志流的ID。 - version:组件版本。
|
|
208
121
|
|
|
209
|
-
:return: The
|
|
210
|
-
:rtype: str
|
|
122
|
+
:return: The annotations of this MetadataResponse.
|
|
123
|
+
:rtype: dict(str, str)
|
|
211
124
|
"""
|
|
212
|
-
return self.
|
|
125
|
+
return self._annotations
|
|
213
126
|
|
|
214
|
-
@
|
|
215
|
-
def
|
|
216
|
-
"""Sets the
|
|
127
|
+
@annotations.setter
|
|
128
|
+
def annotations(self, annotations):
|
|
129
|
+
"""Sets the annotations of this MetadataResponse.
|
|
217
130
|
|
|
218
|
-
|
|
131
|
+
组件附加属性。 - log_group_id:LTS日志组的ID。 - log_stream_id:LTS日志流的ID。 - version:组件版本。
|
|
219
132
|
|
|
220
|
-
:param
|
|
221
|
-
:type
|
|
133
|
+
:param annotations: The annotations of this MetadataResponse.
|
|
134
|
+
:type annotations: dict(str, str)
|
|
222
135
|
"""
|
|
223
|
-
self.
|
|
136
|
+
self._annotations = annotations
|
|
224
137
|
|
|
225
138
|
@property
|
|
226
|
-
def
|
|
227
|
-
"""Gets the
|
|
139
|
+
def created_at(self):
|
|
140
|
+
"""Gets the created_at of this MetadataResponse.
|
|
228
141
|
|
|
229
|
-
|
|
142
|
+
创建时间。
|
|
230
143
|
|
|
231
|
-
:return: The
|
|
232
|
-
:rtype:
|
|
144
|
+
:return: The created_at of this MetadataResponse.
|
|
145
|
+
:rtype: datetime
|
|
233
146
|
"""
|
|
234
|
-
return self.
|
|
147
|
+
return self._created_at
|
|
235
148
|
|
|
236
|
-
@
|
|
237
|
-
def
|
|
238
|
-
"""Sets the
|
|
149
|
+
@created_at.setter
|
|
150
|
+
def created_at(self, created_at):
|
|
151
|
+
"""Sets the created_at of this MetadataResponse.
|
|
239
152
|
|
|
240
|
-
|
|
153
|
+
创建时间。
|
|
241
154
|
|
|
242
|
-
:param
|
|
243
|
-
:type
|
|
155
|
+
:param created_at: The created_at of this MetadataResponse.
|
|
156
|
+
:type created_at: datetime
|
|
244
157
|
"""
|
|
245
|
-
self.
|
|
158
|
+
self._created_at = created_at
|
|
246
159
|
|
|
247
160
|
@property
|
|
248
161
|
def updated_at(self):
|
|
@@ -39,15 +39,15 @@ class MountComponent:
|
|
|
39
39
|
|
|
40
40
|
The model defined in huaweicloud sdk
|
|
41
41
|
|
|
42
|
-
:param env_id: 环境
|
|
42
|
+
:param env_id: 环境ID。
|
|
43
43
|
:type env_id: str
|
|
44
44
|
:param env_name: 环境名称。
|
|
45
45
|
:type env_name: str
|
|
46
|
-
:param app_id: 应用
|
|
46
|
+
:param app_id: 应用ID。
|
|
47
47
|
:type app_id: str
|
|
48
48
|
:param app_name: 应用名称。
|
|
49
49
|
:type app_name: str
|
|
50
|
-
:param component_id: 组件
|
|
50
|
+
:param component_id: 组件ID。
|
|
51
51
|
:type component_id: str
|
|
52
52
|
:param component_name: 组件名称。
|
|
53
53
|
:type component_name: str
|
|
@@ -80,7 +80,7 @@ class MountComponent:
|
|
|
80
80
|
def env_id(self):
|
|
81
81
|
"""Gets the env_id of this MountComponent.
|
|
82
82
|
|
|
83
|
-
环境
|
|
83
|
+
环境ID。
|
|
84
84
|
|
|
85
85
|
:return: The env_id of this MountComponent.
|
|
86
86
|
:rtype: str
|
|
@@ -91,7 +91,7 @@ class MountComponent:
|
|
|
91
91
|
def env_id(self, env_id):
|
|
92
92
|
"""Sets the env_id of this MountComponent.
|
|
93
93
|
|
|
94
|
-
环境
|
|
94
|
+
环境ID。
|
|
95
95
|
|
|
96
96
|
:param env_id: The env_id of this MountComponent.
|
|
97
97
|
:type env_id: str
|
|
@@ -124,7 +124,7 @@ class MountComponent:
|
|
|
124
124
|
def app_id(self):
|
|
125
125
|
"""Gets the app_id of this MountComponent.
|
|
126
126
|
|
|
127
|
-
应用
|
|
127
|
+
应用ID。
|
|
128
128
|
|
|
129
129
|
:return: The app_id of this MountComponent.
|
|
130
130
|
:rtype: str
|
|
@@ -135,7 +135,7 @@ class MountComponent:
|
|
|
135
135
|
def app_id(self, app_id):
|
|
136
136
|
"""Sets the app_id of this MountComponent.
|
|
137
137
|
|
|
138
|
-
应用
|
|
138
|
+
应用ID。
|
|
139
139
|
|
|
140
140
|
:param app_id: The app_id of this MountComponent.
|
|
141
141
|
:type app_id: str
|
|
@@ -168,7 +168,7 @@ class MountComponent:
|
|
|
168
168
|
def component_id(self):
|
|
169
169
|
"""Gets the component_id of this MountComponent.
|
|
170
170
|
|
|
171
|
-
组件
|
|
171
|
+
组件ID。
|
|
172
172
|
|
|
173
173
|
:return: The component_id of this MountComponent.
|
|
174
174
|
:rtype: str
|
|
@@ -179,7 +179,7 @@ class MountComponent:
|
|
|
179
179
|
def component_id(self, component_id):
|
|
180
180
|
"""Sets the component_id of this MountComponent.
|
|
181
181
|
|
|
182
|
-
组件
|
|
182
|
+
组件ID。
|
|
183
183
|
|
|
184
184
|
:param component_id: The component_id of this MountComponent.
|
|
185
185
|
:type component_id: str
|
|
@@ -33,11 +33,11 @@ class Repo:
|
|
|
33
33
|
|
|
34
34
|
The model defined in huaweicloud sdk
|
|
35
35
|
|
|
36
|
-
:param auth_name:
|
|
36
|
+
:param auth_name: 授权名称。
|
|
37
37
|
:type auth_name: str
|
|
38
38
|
:param branch: 分支。
|
|
39
39
|
:type branch: str
|
|
40
|
-
:param namespace:
|
|
40
|
+
:param namespace: 命名空间,需填写命名空间的Base64编码。
|
|
41
41
|
:type namespace: str
|
|
42
42
|
"""
|
|
43
43
|
|
|
@@ -59,7 +59,7 @@ class Repo:
|
|
|
59
59
|
def auth_name(self):
|
|
60
60
|
"""Gets the auth_name of this Repo.
|
|
61
61
|
|
|
62
|
-
|
|
62
|
+
授权名称。
|
|
63
63
|
|
|
64
64
|
:return: The auth_name of this Repo.
|
|
65
65
|
:rtype: str
|
|
@@ -70,7 +70,7 @@ class Repo:
|
|
|
70
70
|
def auth_name(self, auth_name):
|
|
71
71
|
"""Sets the auth_name of this Repo.
|
|
72
72
|
|
|
73
|
-
|
|
73
|
+
授权名称。
|
|
74
74
|
|
|
75
75
|
:param auth_name: The auth_name of this Repo.
|
|
76
76
|
:type auth_name: str
|
|
@@ -103,7 +103,7 @@ class Repo:
|
|
|
103
103
|
def namespace(self):
|
|
104
104
|
"""Gets the namespace of this Repo.
|
|
105
105
|
|
|
106
|
-
|
|
106
|
+
命名空间,需填写命名空间的Base64编码。
|
|
107
107
|
|
|
108
108
|
:return: The namespace of this Repo.
|
|
109
109
|
:rtype: str
|
|
@@ -114,7 +114,7 @@ class Repo:
|
|
|
114
114
|
def namespace(self, namespace):
|
|
115
115
|
"""Sets the namespace of this Repo.
|
|
116
116
|
|
|
117
|
-
|
|
117
|
+
命名空间,需填写命名空间的Base64编码。
|
|
118
118
|
|
|
119
119
|
:param namespace: The namespace of this Repo.
|
|
120
120
|
:type namespace: str
|
|
@@ -17,34 +17,47 @@ class RetryJobRequest:
|
|
|
17
17
|
sensitive_list = []
|
|
18
18
|
|
|
19
19
|
openapi_types = {
|
|
20
|
-
'job_id': 'str'
|
|
20
|
+
'job_id': 'str',
|
|
21
|
+
'x_enterprise_project_id': 'str',
|
|
22
|
+
'x_environment_id': 'str'
|
|
21
23
|
}
|
|
22
24
|
|
|
23
25
|
attribute_map = {
|
|
24
|
-
'job_id': 'job_id'
|
|
26
|
+
'job_id': 'job_id',
|
|
27
|
+
'x_enterprise_project_id': 'X-Enterprise-Project-ID',
|
|
28
|
+
'x_environment_id': 'X-Environment-ID'
|
|
25
29
|
}
|
|
26
30
|
|
|
27
|
-
def __init__(self, job_id=None):
|
|
31
|
+
def __init__(self, job_id=None, x_enterprise_project_id=None, x_environment_id=None):
|
|
28
32
|
"""RetryJobRequest
|
|
29
33
|
|
|
30
34
|
The model defined in huaweicloud sdk
|
|
31
35
|
|
|
32
|
-
:param job_id: 任务ID
|
|
36
|
+
:param job_id: 任务ID。
|
|
33
37
|
:type job_id: str
|
|
38
|
+
:param x_enterprise_project_id: 企业项目ID。 - 创建环境时,环境会绑定企业项目ID。 - 最大长度36字节,带“-”连字符的UUID格式,或者是字符串“0”。 - 该字段不传(或传为字符串“0”)时,则查询默认企业项目下的资源。 > 关于企业项目ID的获取及企业项目特性的详细信息,请参见《[企业管理服务用户指南](https://support.huaweicloud.com/usermanual-em/zh-cn_topic_0126101490.html)》。
|
|
39
|
+
:type x_enterprise_project_id: str
|
|
40
|
+
:param x_environment_id: 环境ID。 - 获取环境ID,通过《[云应用引擎API参考](https://support.huaweicloud.com/api-cae/ListEnvironments.html)》的“获取环境列表”章节获取环境信息。 - 请求响应成功后在响应体的items数组中的一个元素即为一个环境的信息,其中id字段即是环境ID。
|
|
41
|
+
:type x_environment_id: str
|
|
34
42
|
"""
|
|
35
43
|
|
|
36
44
|
|
|
37
45
|
|
|
38
46
|
self._job_id = None
|
|
47
|
+
self._x_enterprise_project_id = None
|
|
48
|
+
self._x_environment_id = None
|
|
39
49
|
self.discriminator = None
|
|
40
50
|
|
|
41
51
|
self.job_id = job_id
|
|
52
|
+
if x_enterprise_project_id is not None:
|
|
53
|
+
self.x_enterprise_project_id = x_enterprise_project_id
|
|
54
|
+
self.x_environment_id = x_environment_id
|
|
42
55
|
|
|
43
56
|
@property
|
|
44
57
|
def job_id(self):
|
|
45
58
|
"""Gets the job_id of this RetryJobRequest.
|
|
46
59
|
|
|
47
|
-
任务ID
|
|
60
|
+
任务ID。
|
|
48
61
|
|
|
49
62
|
:return: The job_id of this RetryJobRequest.
|
|
50
63
|
:rtype: str
|
|
@@ -55,13 +68,57 @@ class RetryJobRequest:
|
|
|
55
68
|
def job_id(self, job_id):
|
|
56
69
|
"""Sets the job_id of this RetryJobRequest.
|
|
57
70
|
|
|
58
|
-
任务ID
|
|
71
|
+
任务ID。
|
|
59
72
|
|
|
60
73
|
:param job_id: The job_id of this RetryJobRequest.
|
|
61
74
|
:type job_id: str
|
|
62
75
|
"""
|
|
63
76
|
self._job_id = job_id
|
|
64
77
|
|
|
78
|
+
@property
|
|
79
|
+
def x_enterprise_project_id(self):
|
|
80
|
+
"""Gets the x_enterprise_project_id of this RetryJobRequest.
|
|
81
|
+
|
|
82
|
+
企业项目ID。 - 创建环境时,环境会绑定企业项目ID。 - 最大长度36字节,带“-”连字符的UUID格式,或者是字符串“0”。 - 该字段不传(或传为字符串“0”)时,则查询默认企业项目下的资源。 > 关于企业项目ID的获取及企业项目特性的详细信息,请参见《[企业管理服务用户指南](https://support.huaweicloud.com/usermanual-em/zh-cn_topic_0126101490.html)》。
|
|
83
|
+
|
|
84
|
+
:return: The x_enterprise_project_id of this RetryJobRequest.
|
|
85
|
+
:rtype: str
|
|
86
|
+
"""
|
|
87
|
+
return self._x_enterprise_project_id
|
|
88
|
+
|
|
89
|
+
@x_enterprise_project_id.setter
|
|
90
|
+
def x_enterprise_project_id(self, x_enterprise_project_id):
|
|
91
|
+
"""Sets the x_enterprise_project_id of this RetryJobRequest.
|
|
92
|
+
|
|
93
|
+
企业项目ID。 - 创建环境时,环境会绑定企业项目ID。 - 最大长度36字节,带“-”连字符的UUID格式,或者是字符串“0”。 - 该字段不传(或传为字符串“0”)时,则查询默认企业项目下的资源。 > 关于企业项目ID的获取及企业项目特性的详细信息,请参见《[企业管理服务用户指南](https://support.huaweicloud.com/usermanual-em/zh-cn_topic_0126101490.html)》。
|
|
94
|
+
|
|
95
|
+
:param x_enterprise_project_id: The x_enterprise_project_id of this RetryJobRequest.
|
|
96
|
+
:type x_enterprise_project_id: str
|
|
97
|
+
"""
|
|
98
|
+
self._x_enterprise_project_id = x_enterprise_project_id
|
|
99
|
+
|
|
100
|
+
@property
|
|
101
|
+
def x_environment_id(self):
|
|
102
|
+
"""Gets the x_environment_id of this RetryJobRequest.
|
|
103
|
+
|
|
104
|
+
环境ID。 - 获取环境ID,通过《[云应用引擎API参考](https://support.huaweicloud.com/api-cae/ListEnvironments.html)》的“获取环境列表”章节获取环境信息。 - 请求响应成功后在响应体的items数组中的一个元素即为一个环境的信息,其中id字段即是环境ID。
|
|
105
|
+
|
|
106
|
+
:return: The x_environment_id of this RetryJobRequest.
|
|
107
|
+
:rtype: str
|
|
108
|
+
"""
|
|
109
|
+
return self._x_environment_id
|
|
110
|
+
|
|
111
|
+
@x_environment_id.setter
|
|
112
|
+
def x_environment_id(self, x_environment_id):
|
|
113
|
+
"""Sets the x_environment_id of this RetryJobRequest.
|
|
114
|
+
|
|
115
|
+
环境ID。 - 获取环境ID,通过《[云应用引擎API参考](https://support.huaweicloud.com/api-cae/ListEnvironments.html)》的“获取环境列表”章节获取环境信息。 - 请求响应成功后在响应体的items数组中的一个元素即为一个环境的信息,其中id字段即是环境ID。
|
|
116
|
+
|
|
117
|
+
:param x_environment_id: The x_environment_id of this RetryJobRequest.
|
|
118
|
+
:type x_environment_id: str
|
|
119
|
+
"""
|
|
120
|
+
self._x_environment_id = x_environment_id
|
|
121
|
+
|
|
65
122
|
def to_dict(self):
|
|
66
123
|
"""Returns the model properties as a dict"""
|
|
67
124
|
result = {}
|
|
@@ -18,46 +18,46 @@ class ShowApplicationRequest:
|
|
|
18
18
|
|
|
19
19
|
openapi_types = {
|
|
20
20
|
'application_id': 'str',
|
|
21
|
-
'
|
|
22
|
-
'
|
|
21
|
+
'x_enterprise_project_id': 'str',
|
|
22
|
+
'x_environment_id': 'str'
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
attribute_map = {
|
|
26
26
|
'application_id': 'application_id',
|
|
27
|
-
'
|
|
28
|
-
'
|
|
27
|
+
'x_enterprise_project_id': 'X-Enterprise-Project-ID',
|
|
28
|
+
'x_environment_id': 'X-Environment-ID'
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
-
def __init__(self, application_id=None,
|
|
31
|
+
def __init__(self, application_id=None, x_enterprise_project_id=None, x_environment_id=None):
|
|
32
32
|
"""ShowApplicationRequest
|
|
33
33
|
|
|
34
34
|
The model defined in huaweicloud sdk
|
|
35
35
|
|
|
36
|
-
:param application_id: 应用
|
|
36
|
+
:param application_id: 应用ID。
|
|
37
37
|
:type application_id: str
|
|
38
|
-
:param
|
|
39
|
-
:type x_environment_id: str
|
|
40
|
-
:param x_enterprise_project_id: 租户的企业项目id。
|
|
38
|
+
:param x_enterprise_project_id: 企业项目ID。 - 创建环境时,环境会绑定企业项目ID。 - 最大长度36字节,带“-”连字符的UUID格式,或者是字符串“0”。 - 该字段不传(或传为字符串“0”)时,则查询默认企业项目下的资源。 > 关于企业项目ID的获取及企业项目特性的详细信息,请参见《[企业管理服务用户指南](https://support.huaweicloud.com/usermanual-em/zh-cn_topic_0126101490.html)》。
|
|
41
39
|
:type x_enterprise_project_id: str
|
|
40
|
+
:param x_environment_id: 环境ID。 - 获取环境ID,通过《[云应用引擎API参考](https://support.huaweicloud.com/api-cae/ListEnvironments.html)》的“获取环境列表”章节获取环境信息。 - 请求响应成功后在响应体的items数组中的一个元素即为一个环境的信息,其中id字段即是环境ID。
|
|
41
|
+
:type x_environment_id: str
|
|
42
42
|
"""
|
|
43
43
|
|
|
44
44
|
|
|
45
45
|
|
|
46
46
|
self._application_id = None
|
|
47
|
-
self._x_environment_id = None
|
|
48
47
|
self._x_enterprise_project_id = None
|
|
48
|
+
self._x_environment_id = None
|
|
49
49
|
self.discriminator = None
|
|
50
50
|
|
|
51
51
|
self.application_id = application_id
|
|
52
|
-
self.x_environment_id = x_environment_id
|
|
53
52
|
if x_enterprise_project_id is not None:
|
|
54
53
|
self.x_enterprise_project_id = x_enterprise_project_id
|
|
54
|
+
self.x_environment_id = x_environment_id
|
|
55
55
|
|
|
56
56
|
@property
|
|
57
57
|
def application_id(self):
|
|
58
58
|
"""Gets the application_id of this ShowApplicationRequest.
|
|
59
59
|
|
|
60
|
-
应用
|
|
60
|
+
应用ID。
|
|
61
61
|
|
|
62
62
|
:return: The application_id of this ShowApplicationRequest.
|
|
63
63
|
:rtype: str
|
|
@@ -68,40 +68,18 @@ class ShowApplicationRequest:
|
|
|
68
68
|
def application_id(self, application_id):
|
|
69
69
|
"""Sets the application_id of this ShowApplicationRequest.
|
|
70
70
|
|
|
71
|
-
应用
|
|
71
|
+
应用ID。
|
|
72
72
|
|
|
73
73
|
:param application_id: The application_id of this ShowApplicationRequest.
|
|
74
74
|
:type application_id: str
|
|
75
75
|
"""
|
|
76
76
|
self._application_id = application_id
|
|
77
77
|
|
|
78
|
-
@property
|
|
79
|
-
def x_environment_id(self):
|
|
80
|
-
"""Gets the x_environment_id of this ShowApplicationRequest.
|
|
81
|
-
|
|
82
|
-
环境id。
|
|
83
|
-
|
|
84
|
-
:return: The x_environment_id of this ShowApplicationRequest.
|
|
85
|
-
:rtype: str
|
|
86
|
-
"""
|
|
87
|
-
return self._x_environment_id
|
|
88
|
-
|
|
89
|
-
@x_environment_id.setter
|
|
90
|
-
def x_environment_id(self, x_environment_id):
|
|
91
|
-
"""Sets the x_environment_id of this ShowApplicationRequest.
|
|
92
|
-
|
|
93
|
-
环境id。
|
|
94
|
-
|
|
95
|
-
:param x_environment_id: The x_environment_id of this ShowApplicationRequest.
|
|
96
|
-
:type x_environment_id: str
|
|
97
|
-
"""
|
|
98
|
-
self._x_environment_id = x_environment_id
|
|
99
|
-
|
|
100
78
|
@property
|
|
101
79
|
def x_enterprise_project_id(self):
|
|
102
80
|
"""Gets the x_enterprise_project_id of this ShowApplicationRequest.
|
|
103
81
|
|
|
104
|
-
|
|
82
|
+
企业项目ID。 - 创建环境时,环境会绑定企业项目ID。 - 最大长度36字节,带“-”连字符的UUID格式,或者是字符串“0”。 - 该字段不传(或传为字符串“0”)时,则查询默认企业项目下的资源。 > 关于企业项目ID的获取及企业项目特性的详细信息,请参见《[企业管理服务用户指南](https://support.huaweicloud.com/usermanual-em/zh-cn_topic_0126101490.html)》。
|
|
105
83
|
|
|
106
84
|
:return: The x_enterprise_project_id of this ShowApplicationRequest.
|
|
107
85
|
:rtype: str
|
|
@@ -112,13 +90,35 @@ class ShowApplicationRequest:
|
|
|
112
90
|
def x_enterprise_project_id(self, x_enterprise_project_id):
|
|
113
91
|
"""Sets the x_enterprise_project_id of this ShowApplicationRequest.
|
|
114
92
|
|
|
115
|
-
|
|
93
|
+
企业项目ID。 - 创建环境时,环境会绑定企业项目ID。 - 最大长度36字节,带“-”连字符的UUID格式,或者是字符串“0”。 - 该字段不传(或传为字符串“0”)时,则查询默认企业项目下的资源。 > 关于企业项目ID的获取及企业项目特性的详细信息,请参见《[企业管理服务用户指南](https://support.huaweicloud.com/usermanual-em/zh-cn_topic_0126101490.html)》。
|
|
116
94
|
|
|
117
95
|
:param x_enterprise_project_id: The x_enterprise_project_id of this ShowApplicationRequest.
|
|
118
96
|
:type x_enterprise_project_id: str
|
|
119
97
|
"""
|
|
120
98
|
self._x_enterprise_project_id = x_enterprise_project_id
|
|
121
99
|
|
|
100
|
+
@property
|
|
101
|
+
def x_environment_id(self):
|
|
102
|
+
"""Gets the x_environment_id of this ShowApplicationRequest.
|
|
103
|
+
|
|
104
|
+
环境ID。 - 获取环境ID,通过《[云应用引擎API参考](https://support.huaweicloud.com/api-cae/ListEnvironments.html)》的“获取环境列表”章节获取环境信息。 - 请求响应成功后在响应体的items数组中的一个元素即为一个环境的信息,其中id字段即是环境ID。
|
|
105
|
+
|
|
106
|
+
:return: The x_environment_id of this ShowApplicationRequest.
|
|
107
|
+
:rtype: str
|
|
108
|
+
"""
|
|
109
|
+
return self._x_environment_id
|
|
110
|
+
|
|
111
|
+
@x_environment_id.setter
|
|
112
|
+
def x_environment_id(self, x_environment_id):
|
|
113
|
+
"""Sets the x_environment_id of this ShowApplicationRequest.
|
|
114
|
+
|
|
115
|
+
环境ID。 - 获取环境ID,通过《[云应用引擎API参考](https://support.huaweicloud.com/api-cae/ListEnvironments.html)》的“获取环境列表”章节获取环境信息。 - 请求响应成功后在响应体的items数组中的一个元素即为一个环境的信息,其中id字段即是环境ID。
|
|
116
|
+
|
|
117
|
+
:param x_environment_id: The x_environment_id of this ShowApplicationRequest.
|
|
118
|
+
:type x_environment_id: str
|
|
119
|
+
"""
|
|
120
|
+
self._x_environment_id = x_environment_id
|
|
121
|
+
|
|
122
122
|
def to_dict(self):
|
|
123
123
|
"""Returns the model properties as a dict"""
|
|
124
124
|
result = {}
|