huaweicloudsdkcae 3.1.86__py2.py3-none-any.whl → 3.1.132__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 +38 -6
- huaweicloudsdkcae/v1/cae_async_client.py +601 -45
- huaweicloudsdkcae/v1/cae_client.py +601 -45
- huaweicloudsdkcae/v1/model/__init__.py +38 -6
- huaweicloudsdkcae/v1/model/access_configuration_data_items.py +177 -7
- huaweicloudsdkcae/v1/model/access_configuration_metadata.py +115 -0
- huaweicloudsdkcae/v1/model/access_configuration_port.py +59 -1
- huaweicloudsdkcae/v1/model/agency_metadata.py +28 -3
- huaweicloudsdkcae/v1/model/cloud_storage_log_path_info.py +144 -0
- huaweicloudsdkcae/v1/model/configuration.py +35 -6
- huaweicloudsdkcae/v1/model/configuration_request_data_spec.py +37 -8
- huaweicloudsdkcae/v1/model/configuration_response_data_spec.py +37 -8
- huaweicloudsdkcae/v1/model/create_component_request_body.py +10 -12
- huaweicloudsdkcae/v1/model/{list_component_events_request.py → create_component_with_configuration_request.py} +43 -46
- huaweicloudsdkcae/v1/model/create_component_with_configuration_request_body.py +213 -0
- huaweicloudsdkcae/v1/model/{create_component_request_body_metadata.py → create_component_with_configuration_request_body_metadata.py} +11 -11
- huaweicloudsdkcae/v1/model/{create_component_request_body_spec.py → create_component_with_configuration_request_body_spec.py} +27 -27
- huaweicloudsdkcae/v1/model/create_component_with_configuration_response.py +241 -0
- huaweicloudsdkcae/v1/model/create_component_with_configuration_response_body_status.py +115 -0
- huaweicloudsdkcae/v1/model/create_environment_request_body_metadata.py +3 -3
- huaweicloudsdkcae/v1/model/create_notice_rule_item.py +244 -0
- huaweicloudsdkcae/v1/model/create_notice_rule_req.py +166 -0
- huaweicloudsdkcae/v1/model/create_notice_rule_request.py +168 -0
- huaweicloudsdkcae/v1/model/create_notice_rule_resp_item.py +277 -0
- huaweicloudsdkcae/v1/model/create_notice_rule_response.py +170 -0
- huaweicloudsdkcae/v1/model/create_vpc_egress_request.py +168 -0
- huaweicloudsdkcae/v1/model/{list_component_events_response.py → create_vpc_egress_response.py} +35 -39
- huaweicloudsdkcae/v1/model/delete_notice_rule_request.py +167 -0
- huaweicloudsdkcae/v1/model/delete_notice_rule_response.py +112 -0
- huaweicloudsdkcae/v1/model/delete_vpc_egress_request.py +171 -0
- huaweicloudsdkcae/v1/model/delete_vpc_egress_response.py +85 -0
- huaweicloudsdkcae/v1/model/egress_cidr.py +171 -0
- huaweicloudsdkcae/v1/model/environment_item.py +3 -3
- huaweicloudsdkcae/v1/model/health_check_configuration_http_get.py +4 -4
- huaweicloudsdkcae/v1/model/health_check_configuration_tcp_socket.py +4 -4
- huaweicloudsdkcae/v1/model/list_component_configurations_request.py +32 -3
- huaweicloudsdkcae/v1/model/list_components_request.py +61 -3
- huaweicloudsdkcae/v1/model/list_eip_response_body_spec_egress.py +30 -1
- huaweicloudsdkcae/v1/model/list_eip_response_body_spec_ingress.py +30 -1
- huaweicloudsdkcae/v1/model/list_notice_rules_request.py +143 -0
- huaweicloudsdkcae/v1/model/list_notice_rules_response.py +174 -0
- huaweicloudsdkcae/v1/model/list_vpc_egress_request.py +143 -0
- huaweicloudsdkcae/v1/model/list_vpc_egress_response.py +162 -0
- huaweicloudsdkcae/v1/model/notice_rule_notification.py +171 -0
- huaweicloudsdkcae/v1/model/notice_rule_scope.py +201 -0
- huaweicloudsdkcae/v1/model/resources_credential.py +144 -0
- huaweicloudsdkcae/v1/model/show_notice_rule_request.py +167 -0
- huaweicloudsdkcae/v1/model/show_notice_rule_response.py +170 -0
- huaweicloudsdkcae/v1/model/trigger_policy.py +201 -0
- huaweicloudsdkcae/v1/model/update_component_request_body.py +2 -4
- huaweicloudsdkcae/v1/model/update_eip_request_body_spec_egress.py +32 -3
- huaweicloudsdkcae/v1/model/update_eip_request_body_spec_ingress.py +32 -3
- huaweicloudsdkcae/v1/model/update_notice_rule_item.py +192 -0
- huaweicloudsdkcae/v1/model/update_notice_rule_req.py +166 -0
- huaweicloudsdkcae/v1/model/update_notice_rule_request.py +192 -0
- huaweicloudsdkcae/v1/model/update_notice_rule_response.py +170 -0
- huaweicloudsdkcae/v1/model/volume.py +30 -1
- huaweicloudsdkcae/v1/model/volume_spec.py +32 -3
- huaweicloudsdkcae/v1/model/{component_event_kind_obj.py → vpc_egress_kind_obj.py} +4 -4
- huaweicloudsdkcae/v1/model/vpc_egress_request_body.py +161 -0
- huaweicloudsdkcae/v1/model/vpc_egress_request_body_spec.py +114 -0
- huaweicloudsdkcae/v1/model/vpc_egress_response_body_spec.py +173 -0
- huaweicloudsdkcae/v1/region/cae_region.py +12 -4
- {huaweicloudsdkcae-3.1.86.dist-info → huaweicloudsdkcae-3.1.132.dist-info}/METADATA +2 -2
- {huaweicloudsdkcae-3.1.86.dist-info → huaweicloudsdkcae-3.1.132.dist-info}/RECORD +68 -36
- {huaweicloudsdkcae-3.1.86.dist-info → huaweicloudsdkcae-3.1.132.dist-info}/WHEEL +1 -1
- huaweicloudsdkcae/v1/model/event_item.py +0 -318
- {huaweicloudsdkcae-3.1.86.dist-info → huaweicloudsdkcae-3.1.132.dist-info}/LICENSE +0 -0
- {huaweicloudsdkcae-3.1.86.dist-info → huaweicloudsdkcae-3.1.132.dist-info}/top_level.txt +0 -0
|
@@ -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
|
|
@@ -26,8 +27,8 @@ from huaweicloudsdkcae.v1.model.build import Build
|
|
|
26
27
|
from huaweicloudsdkcae.v1.model.cert_item import CertItem
|
|
27
28
|
from huaweicloudsdkcae.v1.model.cert_req import CertReq
|
|
28
29
|
from huaweicloudsdkcae.v1.model.certificate_kind_obj import CertificateKindObj
|
|
30
|
+
from huaweicloudsdkcae.v1.model.cloud_storage_log_path_info import CloudStorageLogPathInfo
|
|
29
31
|
from huaweicloudsdkcae.v1.model.component_configuration_kind_obj import ComponentConfigurationKindObj
|
|
30
|
-
from huaweicloudsdkcae.v1.model.component_event_kind_obj import ComponentEventKindObj
|
|
31
32
|
from huaweicloudsdkcae.v1.model.component_execution_result import ComponentExecutionResult
|
|
32
33
|
from huaweicloudsdkcae.v1.model.component_info import ComponentInfo
|
|
33
34
|
from huaweicloudsdkcae.v1.model.component_item import ComponentItem
|
|
@@ -59,10 +60,14 @@ from huaweicloudsdkcae.v1.model.create_component_configuration_request_body impo
|
|
|
59
60
|
from huaweicloudsdkcae.v1.model.create_component_configuration_response import CreateComponentConfigurationResponse
|
|
60
61
|
from huaweicloudsdkcae.v1.model.create_component_request import CreateComponentRequest
|
|
61
62
|
from huaweicloudsdkcae.v1.model.create_component_request_body import CreateComponentRequestBody
|
|
62
|
-
from huaweicloudsdkcae.v1.model.create_component_request_body_metadata import CreateComponentRequestBodyMetadata
|
|
63
|
-
from huaweicloudsdkcae.v1.model.create_component_request_body_spec import CreateComponentRequestBodySpec
|
|
64
63
|
from huaweicloudsdkcae.v1.model.create_component_response import CreateComponentResponse
|
|
65
64
|
from huaweicloudsdkcae.v1.model.create_component_spec import CreateComponentSpec
|
|
65
|
+
from huaweicloudsdkcae.v1.model.create_component_with_configuration_request import CreateComponentWithConfigurationRequest
|
|
66
|
+
from huaweicloudsdkcae.v1.model.create_component_with_configuration_request_body import CreateComponentWithConfigurationRequestBody
|
|
67
|
+
from huaweicloudsdkcae.v1.model.create_component_with_configuration_request_body_metadata import CreateComponentWithConfigurationRequestBodyMetadata
|
|
68
|
+
from huaweicloudsdkcae.v1.model.create_component_with_configuration_request_body_spec import CreateComponentWithConfigurationRequestBodySpec
|
|
69
|
+
from huaweicloudsdkcae.v1.model.create_component_with_configuration_response import CreateComponentWithConfigurationResponse
|
|
70
|
+
from huaweicloudsdkcae.v1.model.create_component_with_configuration_response_body_status import CreateComponentWithConfigurationResponseBodyStatus
|
|
66
71
|
from huaweicloudsdkcae.v1.model.create_domain_req import CreateDomainReq
|
|
67
72
|
from huaweicloudsdkcae.v1.model.create_domain_request import CreateDomainRequest
|
|
68
73
|
from huaweicloudsdkcae.v1.model.create_domain_response import CreateDomainResponse
|
|
@@ -74,6 +79,11 @@ from huaweicloudsdkcae.v1.model.create_meta_cert import CreateMetaCert
|
|
|
74
79
|
from huaweicloudsdkcae.v1.model.create_meta_domain import CreateMetaDomain
|
|
75
80
|
from huaweicloudsdkcae.v1.model.create_monitor_system_request import CreateMonitorSystemRequest
|
|
76
81
|
from huaweicloudsdkcae.v1.model.create_monitor_system_response import CreateMonitorSystemResponse
|
|
82
|
+
from huaweicloudsdkcae.v1.model.create_notice_rule_item import CreateNoticeRuleItem
|
|
83
|
+
from huaweicloudsdkcae.v1.model.create_notice_rule_req import CreateNoticeRuleReq
|
|
84
|
+
from huaweicloudsdkcae.v1.model.create_notice_rule_request import CreateNoticeRuleRequest
|
|
85
|
+
from huaweicloudsdkcae.v1.model.create_notice_rule_resp_item import CreateNoticeRuleRespItem
|
|
86
|
+
from huaweicloudsdkcae.v1.model.create_notice_rule_response import CreateNoticeRuleResponse
|
|
77
87
|
from huaweicloudsdkcae.v1.model.create_spec_cert import CreateSpecCert
|
|
78
88
|
from huaweicloudsdkcae.v1.model.create_timer_rule_req import CreateTimerRuleReq
|
|
79
89
|
from huaweicloudsdkcae.v1.model.create_timer_rule_request import CreateTimerRuleRequest
|
|
@@ -81,6 +91,8 @@ from huaweicloudsdkcae.v1.model.create_timer_rule_response import CreateTimerRul
|
|
|
81
91
|
from huaweicloudsdkcae.v1.model.create_volume_req import CreateVolumeReq
|
|
82
92
|
from huaweicloudsdkcae.v1.model.create_volume_request import CreateVolumeRequest
|
|
83
93
|
from huaweicloudsdkcae.v1.model.create_volume_response import CreateVolumeResponse
|
|
94
|
+
from huaweicloudsdkcae.v1.model.create_vpc_egress_request import CreateVpcEgressRequest
|
|
95
|
+
from huaweicloudsdkcae.v1.model.create_vpc_egress_response import CreateVpcEgressResponse
|
|
84
96
|
from huaweicloudsdkcae.v1.model.cron_trigger_scheduler import CronTriggerScheduler
|
|
85
97
|
from huaweicloudsdkcae.v1.model.delete_application_request import DeleteApplicationRequest
|
|
86
98
|
from huaweicloudsdkcae.v1.model.delete_application_response import DeleteApplicationResponse
|
|
@@ -94,16 +106,20 @@ from huaweicloudsdkcae.v1.model.delete_domain_request import DeleteDomainRequest
|
|
|
94
106
|
from huaweicloudsdkcae.v1.model.delete_domain_response import DeleteDomainResponse
|
|
95
107
|
from huaweicloudsdkcae.v1.model.delete_environment_request import DeleteEnvironmentRequest
|
|
96
108
|
from huaweicloudsdkcae.v1.model.delete_environment_response import DeleteEnvironmentResponse
|
|
109
|
+
from huaweicloudsdkcae.v1.model.delete_notice_rule_request import DeleteNoticeRuleRequest
|
|
110
|
+
from huaweicloudsdkcae.v1.model.delete_notice_rule_response import DeleteNoticeRuleResponse
|
|
97
111
|
from huaweicloudsdkcae.v1.model.delete_timer_rule_request import DeleteTimerRuleRequest
|
|
98
112
|
from huaweicloudsdkcae.v1.model.delete_timer_rule_response import DeleteTimerRuleResponse
|
|
99
113
|
from huaweicloudsdkcae.v1.model.delete_volume_request import DeleteVolumeRequest
|
|
100
114
|
from huaweicloudsdkcae.v1.model.delete_volume_response import DeleteVolumeResponse
|
|
115
|
+
from huaweicloudsdkcae.v1.model.delete_vpc_egress_request import DeleteVpcEgressRequest
|
|
116
|
+
from huaweicloudsdkcae.v1.model.delete_vpc_egress_response import DeleteVpcEgressResponse
|
|
101
117
|
from huaweicloudsdkcae.v1.model.domain_item import DomainItem
|
|
102
118
|
from huaweicloudsdkcae.v1.model.domain_kind_obj import DomainKindObj
|
|
119
|
+
from huaweicloudsdkcae.v1.model.egress_cidr import EgressCidr
|
|
103
120
|
from huaweicloudsdkcae.v1.model.eip_kind_obj import EipKindObj
|
|
104
121
|
from huaweicloudsdkcae.v1.model.environment_item import EnvironmentItem
|
|
105
122
|
from huaweicloudsdkcae.v1.model.environment_kind_obj import EnvironmentKindObj
|
|
106
|
-
from huaweicloudsdkcae.v1.model.event_item import EventItem
|
|
107
123
|
from huaweicloudsdkcae.v1.model.execute_action_request import ExecuteActionRequest
|
|
108
124
|
from huaweicloudsdkcae.v1.model.execute_action_request_body import ExecuteActionRequestBody
|
|
109
125
|
from huaweicloudsdkcae.v1.model.execute_action_request_body_metadata import ExecuteActionRequestBodyMetadata
|
|
@@ -128,8 +144,6 @@ from huaweicloudsdkcae.v1.model.list_certificates_response import ListCertificat
|
|
|
128
144
|
from huaweicloudsdkcae.v1.model.list_component_configurations_request import ListComponentConfigurationsRequest
|
|
129
145
|
from huaweicloudsdkcae.v1.model.list_component_configurations_response import ListComponentConfigurationsResponse
|
|
130
146
|
from huaweicloudsdkcae.v1.model.list_component_configurations_response_data import ListComponentConfigurationsResponseData
|
|
131
|
-
from huaweicloudsdkcae.v1.model.list_component_events_request import ListComponentEventsRequest
|
|
132
|
-
from huaweicloudsdkcae.v1.model.list_component_events_response import ListComponentEventsResponse
|
|
133
147
|
from huaweicloudsdkcae.v1.model.list_component_instances_request import ListComponentInstancesRequest
|
|
134
148
|
from huaweicloudsdkcae.v1.model.list_component_instances_response import ListComponentInstancesResponse
|
|
135
149
|
from huaweicloudsdkcae.v1.model.list_component_snapshots_request import ListComponentSnapshotsRequest
|
|
@@ -145,10 +159,14 @@ from huaweicloudsdkcae.v1.model.list_eips_request import ListEipsRequest
|
|
|
145
159
|
from huaweicloudsdkcae.v1.model.list_eips_response import ListEipsResponse
|
|
146
160
|
from huaweicloudsdkcae.v1.model.list_environments_request import ListEnvironmentsRequest
|
|
147
161
|
from huaweicloudsdkcae.v1.model.list_environments_response import ListEnvironmentsResponse
|
|
162
|
+
from huaweicloudsdkcae.v1.model.list_notice_rules_request import ListNoticeRulesRequest
|
|
163
|
+
from huaweicloudsdkcae.v1.model.list_notice_rules_response import ListNoticeRulesResponse
|
|
148
164
|
from huaweicloudsdkcae.v1.model.list_timer_rules_request import ListTimerRulesRequest
|
|
149
165
|
from huaweicloudsdkcae.v1.model.list_timer_rules_response import ListTimerRulesResponse
|
|
150
166
|
from huaweicloudsdkcae.v1.model.list_volumes_request import ListVolumesRequest
|
|
151
167
|
from huaweicloudsdkcae.v1.model.list_volumes_response import ListVolumesResponse
|
|
168
|
+
from huaweicloudsdkcae.v1.model.list_vpc_egress_request import ListVpcEgressRequest
|
|
169
|
+
from huaweicloudsdkcae.v1.model.list_vpc_egress_response import ListVpcEgressResponse
|
|
152
170
|
from huaweicloudsdkcae.v1.model.meta_cert import MetaCert
|
|
153
171
|
from huaweicloudsdkcae.v1.model.meta_domain import MetaDomain
|
|
154
172
|
from huaweicloudsdkcae.v1.model.metadata_response import MetadataResponse
|
|
@@ -156,9 +174,12 @@ from huaweicloudsdkcae.v1.model.monitor_system_kind_obj import MonitorSystemKind
|
|
|
156
174
|
from huaweicloudsdkcae.v1.model.monitor_system_request_body import MonitorSystemRequestBody
|
|
157
175
|
from huaweicloudsdkcae.v1.model.monitor_system_request_body_spec import MonitorSystemRequestBodySpec
|
|
158
176
|
from huaweicloudsdkcae.v1.model.mount_component import MountComponent
|
|
177
|
+
from huaweicloudsdkcae.v1.model.notice_rule_notification import NoticeRuleNotification
|
|
178
|
+
from huaweicloudsdkcae.v1.model.notice_rule_scope import NoticeRuleScope
|
|
159
179
|
from huaweicloudsdkcae.v1.model.repo import Repo
|
|
160
180
|
from huaweicloudsdkcae.v1.model.resource_limit import ResourceLimit
|
|
161
181
|
from huaweicloudsdkcae.v1.model.resource_limit_for_upgrade import ResourceLimitForUpgrade
|
|
182
|
+
from huaweicloudsdkcae.v1.model.resources_credential import ResourcesCredential
|
|
162
183
|
from huaweicloudsdkcae.v1.model.retry_job_request import RetryJobRequest
|
|
163
184
|
from huaweicloudsdkcae.v1.model.retry_job_response import RetryJobResponse
|
|
164
185
|
from huaweicloudsdkcae.v1.model.scale_configuration_data_advanced import ScaleConfigurationDataAdvanced
|
|
@@ -175,11 +196,14 @@ from huaweicloudsdkcae.v1.model.show_job_response import ShowJobResponse
|
|
|
175
196
|
from huaweicloudsdkcae.v1.model.show_monitor_system_request import ShowMonitorSystemRequest
|
|
176
197
|
from huaweicloudsdkcae.v1.model.show_monitor_system_response import ShowMonitorSystemResponse
|
|
177
198
|
from huaweicloudsdkcae.v1.model.show_monitor_system_response_body_spec import ShowMonitorSystemResponseBodySpec
|
|
199
|
+
from huaweicloudsdkcae.v1.model.show_notice_rule_request import ShowNoticeRuleRequest
|
|
200
|
+
from huaweicloudsdkcae.v1.model.show_notice_rule_response import ShowNoticeRuleResponse
|
|
178
201
|
from huaweicloudsdkcae.v1.model.source import Source
|
|
179
202
|
from huaweicloudsdkcae.v1.model.spec_cert import SpecCert
|
|
180
203
|
from huaweicloudsdkcae.v1.model.task import Task
|
|
181
204
|
from huaweicloudsdkcae.v1.model.time_rule_kind_obj import TimeRuleKindObj
|
|
182
205
|
from huaweicloudsdkcae.v1.model.timer_rule_details import TimerRuleDetails
|
|
206
|
+
from huaweicloudsdkcae.v1.model.trigger_policy import TriggerPolicy
|
|
183
207
|
from huaweicloudsdkcae.v1.model.update_cert_req import UpdateCertReq
|
|
184
208
|
from huaweicloudsdkcae.v1.model.update_certificate_request import UpdateCertificateRequest
|
|
185
209
|
from huaweicloudsdkcae.v1.model.update_certificate_response import UpdateCertificateResponse
|
|
@@ -196,6 +220,10 @@ from huaweicloudsdkcae.v1.model.update_eip_request_body_spec_ingress import Upda
|
|
|
196
220
|
from huaweicloudsdkcae.v1.model.update_eip_response import UpdateEipResponse
|
|
197
221
|
from huaweicloudsdkcae.v1.model.update_monitor_system_request import UpdateMonitorSystemRequest
|
|
198
222
|
from huaweicloudsdkcae.v1.model.update_monitor_system_response import UpdateMonitorSystemResponse
|
|
223
|
+
from huaweicloudsdkcae.v1.model.update_notice_rule_item import UpdateNoticeRuleItem
|
|
224
|
+
from huaweicloudsdkcae.v1.model.update_notice_rule_req import UpdateNoticeRuleReq
|
|
225
|
+
from huaweicloudsdkcae.v1.model.update_notice_rule_request import UpdateNoticeRuleRequest
|
|
226
|
+
from huaweicloudsdkcae.v1.model.update_notice_rule_response import UpdateNoticeRuleResponse
|
|
199
227
|
from huaweicloudsdkcae.v1.model.update_spec_cert import UpdateSpecCert
|
|
200
228
|
from huaweicloudsdkcae.v1.model.update_timer_rule_details import UpdateTimerRuleDetails
|
|
201
229
|
from huaweicloudsdkcae.v1.model.update_timer_rule_req import UpdateTimerRuleReq
|
|
@@ -206,3 +234,7 @@ from huaweicloudsdkcae.v1.model.volume_configuration_data_volume import VolumeCo
|
|
|
206
234
|
from huaweicloudsdkcae.v1.model.volume_configuration_mount_info import VolumeConfigurationMountInfo
|
|
207
235
|
from huaweicloudsdkcae.v1.model.volume_kind_obj import VolumeKindObj
|
|
208
236
|
from huaweicloudsdkcae.v1.model.volume_spec import VolumeSpec
|
|
237
|
+
from huaweicloudsdkcae.v1.model.vpc_egress_kind_obj import VpcEgressKindObj
|
|
238
|
+
from huaweicloudsdkcae.v1.model.vpc_egress_request_body import VpcEgressRequestBody
|
|
239
|
+
from huaweicloudsdkcae.v1.model.vpc_egress_request_body_spec import VpcEgressRequestBodySpec
|
|
240
|
+
from huaweicloudsdkcae.v1.model.vpc_egress_response_body_spec import VpcEgressResponseBodySpec
|
|
@@ -17,42 +17,78 @@ class AccessConfigurationDataItems:
|
|
|
17
17
|
sensitive_list = []
|
|
18
18
|
|
|
19
19
|
openapi_types = {
|
|
20
|
+
'operator': 'str',
|
|
21
|
+
'uid': 'str',
|
|
22
|
+
'metadata': 'AccessConfigurationMetadata',
|
|
20
23
|
'type': 'str',
|
|
21
|
-
'domain_names': 'str',
|
|
24
|
+
'domain_names': 'list[str]',
|
|
22
25
|
'access_control': 'AccessControl',
|
|
23
|
-
'ports': 'list[AccessConfigurationPort]'
|
|
26
|
+
'ports': 'list[AccessConfigurationPort]',
|
|
27
|
+
'elb_id': 'str',
|
|
28
|
+
'public_ip': 'str',
|
|
29
|
+
'private_ip': 'str'
|
|
24
30
|
}
|
|
25
31
|
|
|
26
32
|
attribute_map = {
|
|
33
|
+
'operator': 'operator',
|
|
34
|
+
'uid': 'uid',
|
|
35
|
+
'metadata': 'metadata',
|
|
27
36
|
'type': 'type',
|
|
28
37
|
'domain_names': 'domain_names',
|
|
29
38
|
'access_control': 'access_control',
|
|
30
|
-
'ports': 'ports'
|
|
39
|
+
'ports': 'ports',
|
|
40
|
+
'elb_id': 'elb_id',
|
|
41
|
+
'public_ip': 'public_ip',
|
|
42
|
+
'private_ip': 'private_ip'
|
|
31
43
|
}
|
|
32
44
|
|
|
33
|
-
def __init__(self, type=None, domain_names=None, access_control=None, ports=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):
|
|
34
46
|
"""AccessConfigurationDataItems
|
|
35
47
|
|
|
36
48
|
The model defined in huaweicloud sdk
|
|
37
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
|
|
54
|
+
:param metadata:
|
|
55
|
+
:type metadata: :class:`huaweicloudsdkcae.v1.AccessConfigurationMetadata`
|
|
38
56
|
:param type: 访问方式类型。
|
|
39
57
|
:type type: str
|
|
40
58
|
:param domain_names: 内网访问方式域名。
|
|
41
|
-
:type domain_names: str
|
|
59
|
+
:type domain_names: list[str]
|
|
42
60
|
:param access_control:
|
|
43
61
|
:type access_control: :class:`huaweicloudsdkcae.v1.AccessControl`
|
|
44
62
|
:param ports: 访问方式配置端口、协议、证书、URL路径等信息列表。
|
|
45
63
|
:type ports: list[:class:`huaweicloudsdkcae.v1.AccessConfigurationPort`]
|
|
64
|
+
:param elb_id: 用户选择的elb的ID。
|
|
65
|
+
:type elb_id: str
|
|
66
|
+
:param public_ip: 响应体参数,用户选择的elb的公网ip。
|
|
67
|
+
:type public_ip: str
|
|
68
|
+
:param private_ip: 响应体参数,用户选择的elb的私网ip。
|
|
69
|
+
:type private_ip: str
|
|
46
70
|
"""
|
|
47
71
|
|
|
48
72
|
|
|
49
73
|
|
|
74
|
+
self._operator = None
|
|
75
|
+
self._uid = None
|
|
76
|
+
self._metadata = None
|
|
50
77
|
self._type = None
|
|
51
78
|
self._domain_names = None
|
|
52
79
|
self._access_control = None
|
|
53
80
|
self._ports = None
|
|
81
|
+
self._elb_id = None
|
|
82
|
+
self._public_ip = None
|
|
83
|
+
self._private_ip = None
|
|
54
84
|
self.discriminator = None
|
|
55
85
|
|
|
86
|
+
if operator is not None:
|
|
87
|
+
self.operator = operator
|
|
88
|
+
if uid is not None:
|
|
89
|
+
self.uid = uid
|
|
90
|
+
if metadata is not None:
|
|
91
|
+
self.metadata = metadata
|
|
56
92
|
if type is not None:
|
|
57
93
|
self.type = type
|
|
58
94
|
if domain_names is not None:
|
|
@@ -61,6 +97,74 @@ class AccessConfigurationDataItems:
|
|
|
61
97
|
self.access_control = access_control
|
|
62
98
|
if ports is not None:
|
|
63
99
|
self.ports = ports
|
|
100
|
+
if elb_id is not None:
|
|
101
|
+
self.elb_id = elb_id
|
|
102
|
+
if public_ip is not None:
|
|
103
|
+
self.public_ip = public_ip
|
|
104
|
+
if private_ip is not None:
|
|
105
|
+
self.private_ip = private_ip
|
|
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
|
+
|
|
129
|
+
@property
|
|
130
|
+
def uid(self):
|
|
131
|
+
"""Gets the uid of this AccessConfigurationDataItems.
|
|
132
|
+
|
|
133
|
+
访问方式的uid。
|
|
134
|
+
|
|
135
|
+
:return: The uid of this AccessConfigurationDataItems.
|
|
136
|
+
:rtype: str
|
|
137
|
+
"""
|
|
138
|
+
return self._uid
|
|
139
|
+
|
|
140
|
+
@uid.setter
|
|
141
|
+
def uid(self, uid):
|
|
142
|
+
"""Sets the uid of this AccessConfigurationDataItems.
|
|
143
|
+
|
|
144
|
+
访问方式的uid。
|
|
145
|
+
|
|
146
|
+
:param uid: The uid of this AccessConfigurationDataItems.
|
|
147
|
+
:type uid: str
|
|
148
|
+
"""
|
|
149
|
+
self._uid = uid
|
|
150
|
+
|
|
151
|
+
@property
|
|
152
|
+
def metadata(self):
|
|
153
|
+
"""Gets the metadata of this AccessConfigurationDataItems.
|
|
154
|
+
|
|
155
|
+
:return: The metadata of this AccessConfigurationDataItems.
|
|
156
|
+
:rtype: :class:`huaweicloudsdkcae.v1.AccessConfigurationMetadata`
|
|
157
|
+
"""
|
|
158
|
+
return self._metadata
|
|
159
|
+
|
|
160
|
+
@metadata.setter
|
|
161
|
+
def metadata(self, metadata):
|
|
162
|
+
"""Sets the metadata of this AccessConfigurationDataItems.
|
|
163
|
+
|
|
164
|
+
:param metadata: The metadata of this AccessConfigurationDataItems.
|
|
165
|
+
:type metadata: :class:`huaweicloudsdkcae.v1.AccessConfigurationMetadata`
|
|
166
|
+
"""
|
|
167
|
+
self._metadata = metadata
|
|
64
168
|
|
|
65
169
|
@property
|
|
66
170
|
def type(self):
|
|
@@ -91,7 +195,7 @@ class AccessConfigurationDataItems:
|
|
|
91
195
|
内网访问方式域名。
|
|
92
196
|
|
|
93
197
|
:return: The domain_names of this AccessConfigurationDataItems.
|
|
94
|
-
:rtype: str
|
|
198
|
+
:rtype: list[str]
|
|
95
199
|
"""
|
|
96
200
|
return self._domain_names
|
|
97
201
|
|
|
@@ -102,7 +206,7 @@ class AccessConfigurationDataItems:
|
|
|
102
206
|
内网访问方式域名。
|
|
103
207
|
|
|
104
208
|
:param domain_names: The domain_names of this AccessConfigurationDataItems.
|
|
105
|
-
:type domain_names: str
|
|
209
|
+
:type domain_names: list[str]
|
|
106
210
|
"""
|
|
107
211
|
self._domain_names = domain_names
|
|
108
212
|
|
|
@@ -146,6 +250,72 @@ class AccessConfigurationDataItems:
|
|
|
146
250
|
"""
|
|
147
251
|
self._ports = ports
|
|
148
252
|
|
|
253
|
+
@property
|
|
254
|
+
def elb_id(self):
|
|
255
|
+
"""Gets the elb_id of this AccessConfigurationDataItems.
|
|
256
|
+
|
|
257
|
+
用户选择的elb的ID。
|
|
258
|
+
|
|
259
|
+
:return: The elb_id of this AccessConfigurationDataItems.
|
|
260
|
+
:rtype: str
|
|
261
|
+
"""
|
|
262
|
+
return self._elb_id
|
|
263
|
+
|
|
264
|
+
@elb_id.setter
|
|
265
|
+
def elb_id(self, elb_id):
|
|
266
|
+
"""Sets the elb_id of this AccessConfigurationDataItems.
|
|
267
|
+
|
|
268
|
+
用户选择的elb的ID。
|
|
269
|
+
|
|
270
|
+
:param elb_id: The elb_id of this AccessConfigurationDataItems.
|
|
271
|
+
:type elb_id: str
|
|
272
|
+
"""
|
|
273
|
+
self._elb_id = elb_id
|
|
274
|
+
|
|
275
|
+
@property
|
|
276
|
+
def public_ip(self):
|
|
277
|
+
"""Gets the public_ip of this AccessConfigurationDataItems.
|
|
278
|
+
|
|
279
|
+
响应体参数,用户选择的elb的公网ip。
|
|
280
|
+
|
|
281
|
+
:return: The public_ip of this AccessConfigurationDataItems.
|
|
282
|
+
:rtype: str
|
|
283
|
+
"""
|
|
284
|
+
return self._public_ip
|
|
285
|
+
|
|
286
|
+
@public_ip.setter
|
|
287
|
+
def public_ip(self, public_ip):
|
|
288
|
+
"""Sets the public_ip of this AccessConfigurationDataItems.
|
|
289
|
+
|
|
290
|
+
响应体参数,用户选择的elb的公网ip。
|
|
291
|
+
|
|
292
|
+
:param public_ip: The public_ip of this AccessConfigurationDataItems.
|
|
293
|
+
:type public_ip: str
|
|
294
|
+
"""
|
|
295
|
+
self._public_ip = public_ip
|
|
296
|
+
|
|
297
|
+
@property
|
|
298
|
+
def private_ip(self):
|
|
299
|
+
"""Gets the private_ip of this AccessConfigurationDataItems.
|
|
300
|
+
|
|
301
|
+
响应体参数,用户选择的elb的私网ip。
|
|
302
|
+
|
|
303
|
+
:return: The private_ip of this AccessConfigurationDataItems.
|
|
304
|
+
:rtype: str
|
|
305
|
+
"""
|
|
306
|
+
return self._private_ip
|
|
307
|
+
|
|
308
|
+
@private_ip.setter
|
|
309
|
+
def private_ip(self, private_ip):
|
|
310
|
+
"""Sets the private_ip of this AccessConfigurationDataItems.
|
|
311
|
+
|
|
312
|
+
响应体参数,用户选择的elb的私网ip。
|
|
313
|
+
|
|
314
|
+
:param private_ip: The private_ip of this AccessConfigurationDataItems.
|
|
315
|
+
:type private_ip: str
|
|
316
|
+
"""
|
|
317
|
+
self._private_ip = private_ip
|
|
318
|
+
|
|
149
319
|
def to_dict(self):
|
|
150
320
|
"""Returns the model properties as a dict"""
|
|
151
321
|
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
|
|
@@ -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.
|