huaweicloudsdkelb 3.1.85__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.
- huaweicloudsdkelb/v2/elb_async_client.py +2 -0
- huaweicloudsdkelb/v2/elb_client.py +2 -0
- huaweicloudsdkelb/v2/model/list_members_request.py +32 -3
- huaweicloudsdkelb/v2/region/elb_region.py +19 -1
- huaweicloudsdkelb/v3/__init__.py +29 -0
- huaweicloudsdkelb/v3/elb_async_client.py +175 -34
- huaweicloudsdkelb/v3/elb_client.py +175 -34
- huaweicloudsdkelb/v3/model/__init__.py +29 -0
- huaweicloudsdkelb/v3/model/autoscaling_ref.py +6 -6
- huaweicloudsdkelb/v3/model/availability_zone.py +15 -15
- huaweicloudsdkelb/v3/model/bandwidth_ref.py +3 -3
- huaweicloudsdkelb/v3/model/batch_add_available_zones_request.py +3 -3
- huaweicloudsdkelb/v3/model/batch_add_available_zones_response.py +6 -6
- huaweicloudsdkelb/v3/model/batch_create_members_option.py +12 -12
- huaweicloudsdkelb/v3/model/batch_create_members_request.py +3 -3
- huaweicloudsdkelb/v3/model/batch_delete_ip_list_option.py +3 -3
- huaweicloudsdkelb/v3/model/batch_delete_ip_list_request.py +3 -3
- huaweicloudsdkelb/v3/model/batch_delete_ip_list_response.py +3 -3
- huaweicloudsdkelb/v3/model/batch_delete_members_request.py +3 -3
- huaweicloudsdkelb/v3/model/batch_member.py +85 -27
- huaweicloudsdkelb/v3/model/batch_update_member.py +85 -27
- huaweicloudsdkelb/v3/model/batch_update_members_option.py +9 -9
- huaweicloudsdkelb/v3/model/batch_update_members_request.py +3 -3
- huaweicloudsdkelb/v3/model/batch_update_policies_priority_request_body.py +3 -3
- huaweicloudsdkelb/v3/model/batch_update_priority_request_body.py +6 -6
- huaweicloudsdkelb/v3/model/certificate_info.py +93 -6
- huaweicloudsdkelb/v3/model/change_loadbalancer_charge_mode_request_body.py +3 -3
- huaweicloudsdkelb/v3/model/connection_drain.py +6 -6
- huaweicloudsdkelb/v3/model/count_preoccupy_ip_num_request.py +6 -6
- huaweicloudsdkelb/v3/model/create_certificate_option.py +5 -4
- huaweicloudsdkelb/v3/model/create_certificate_private_key_echo_request.py +111 -0
- huaweicloudsdkelb/v3/model/create_certificate_private_key_echo_request_body.py +114 -0
- huaweicloudsdkelb/v3/model/create_certificate_private_key_echo_response.py +145 -0
- huaweicloudsdkelb/v3/model/create_fixted_response_config.py +87 -12
- huaweicloudsdkelb/v3/model/create_health_monitor_option.py +18 -18
- huaweicloudsdkelb/v3/model/create_insert_header_config.py +170 -0
- huaweicloudsdkelb/v3/model/create_insert_headers_config.py +114 -0
- huaweicloudsdkelb/v3/model/create_ip_group_ip_option.py +6 -6
- huaweicloudsdkelb/v3/model/create_ip_group_option.py +15 -15
- huaweicloudsdkelb/v3/model/create_ip_group_response.py +3 -3
- huaweicloudsdkelb/v3/model/create_l7_policy_option.py +91 -37
- huaweicloudsdkelb/v3/model/create_l7_policy_response.py +3 -3
- huaweicloudsdkelb/v3/model/create_l7_policy_rule_option.py +21 -21
- huaweicloudsdkelb/v3/model/create_l7_rule_request.py +3 -3
- huaweicloudsdkelb/v3/model/create_l7_rule_response.py +3 -3
- huaweicloudsdkelb/v3/model/create_listener_ip_group_option.py +9 -9
- huaweicloudsdkelb/v3/model/create_listener_option.py +84 -84
- huaweicloudsdkelb/v3/model/create_listener_quic_config_option.py +6 -6
- huaweicloudsdkelb/v3/model/create_listener_response.py +3 -3
- huaweicloudsdkelb/v3/model/create_load_balancer_bandwidth_option.py +18 -18
- huaweicloudsdkelb/v3/model/create_load_balancer_option.py +76 -105
- huaweicloudsdkelb/v3/model/create_load_balancer_public_ip_option.py +12 -12
- huaweicloudsdkelb/v3/model/create_load_balancer_response.py +9 -9
- huaweicloudsdkelb/v3/model/create_loadbalancer_autoscaling_option.py +6 -6
- huaweicloudsdkelb/v3/model/create_master_slave_health_monitor_option.py +9 -9
- huaweicloudsdkelb/v3/model/create_master_slave_member_option.py +12 -12
- huaweicloudsdkelb/v3/model/create_master_slave_pool_option.py +33 -33
- huaweicloudsdkelb/v3/model/create_member_option.py +21 -21
- huaweicloudsdkelb/v3/model/create_member_request.py +3 -3
- huaweicloudsdkelb/v3/model/create_member_response.py +3 -3
- huaweicloudsdkelb/v3/model/create_pool_option.py +102 -48
- huaweicloudsdkelb/v3/model/create_pool_response.py +3 -3
- huaweicloudsdkelb/v3/model/create_pool_session_persistence_option.py +9 -9
- huaweicloudsdkelb/v3/model/create_pool_slow_start_option.py +6 -6
- huaweicloudsdkelb/v3/model/create_redirect_pools_config.py +143 -0
- huaweicloudsdkelb/v3/model/create_redirect_pools_extend_config.py +81 -6
- huaweicloudsdkelb/v3/model/create_redirect_pools_sticky_session_config.py +144 -0
- huaweicloudsdkelb/v3/model/create_redirect_url_config.py +71 -21
- huaweicloudsdkelb/v3/model/create_remove_header_config.py +114 -0
- huaweicloudsdkelb/v3/model/create_remove_headers_config.py +114 -0
- huaweicloudsdkelb/v3/model/create_rewrite_url_config.py +9 -9
- huaweicloudsdkelb/v3/model/create_rule_condition.py +6 -6
- huaweicloudsdkelb/v3/model/create_rule_option.py +24 -24
- huaweicloudsdkelb/v3/model/create_traffic_limit_config.py +173 -0
- huaweicloudsdkelb/v3/model/delete_ip_group_request.py +3 -3
- huaweicloudsdkelb/v3/model/delete_l7_policy_request.py +3 -3
- huaweicloudsdkelb/v3/model/delete_master_slave_pool_request.py +3 -3
- huaweicloudsdkelb/v3/model/delete_member_request.py +6 -6
- huaweicloudsdkelb/v3/model/delete_pool_request.py +3 -3
- huaweicloudsdkelb/v3/model/eip_info.py +9 -9
- huaweicloudsdkelb/v3/model/fixted_response_config.py +87 -12
- huaweicloudsdkelb/v3/model/flavor.py +79 -21
- huaweicloudsdkelb/v3/model/flavor_info.py +18 -18
- huaweicloudsdkelb/v3/model/global_eip_info.py +9 -9
- huaweicloudsdkelb/v3/model/health_monitor.py +18 -18
- huaweicloudsdkelb/v3/model/insert_header_config.py +170 -0
- huaweicloudsdkelb/v3/model/insert_headers_config.py +114 -0
- huaweicloudsdkelb/v3/model/ip_group.py +119 -90
- huaweicloudsdkelb/v3/model/ip_group_ip.py +3 -3
- huaweicloudsdkelb/v3/model/ip_info.py +6 -6
- huaweicloudsdkelb/v3/model/l7_policy.py +103 -49
- huaweicloudsdkelb/v3/model/l7_rule.py +36 -36
- huaweicloudsdkelb/v3/model/list_all_members_request.py +24 -24
- huaweicloudsdkelb/v3/model/list_all_members_response.py +4 -4
- huaweicloudsdkelb/v3/model/list_availability_zones_request.py +3 -3
- huaweicloudsdkelb/v3/model/list_availability_zones_response.py +38 -9
- huaweicloudsdkelb/v3/model/list_certificates_request.py +64 -6
- huaweicloudsdkelb/v3/model/list_flavors_request.py +21 -21
- huaweicloudsdkelb/v3/model/list_flavors_response.py +6 -6
- huaweicloudsdkelb/v3/model/list_health_monitors_request.py +15 -15
- huaweicloudsdkelb/v3/model/list_ip_groups_request.py +53 -24
- huaweicloudsdkelb/v3/model/list_ip_groups_response.py +6 -6
- huaweicloudsdkelb/v3/model/list_l7_policies_request.py +51 -51
- huaweicloudsdkelb/v3/model/list_l7_policies_response.py +6 -6
- huaweicloudsdkelb/v3/model/list_l7_rules_request.py +6 -6
- huaweicloudsdkelb/v3/model/list_l7_rules_response.py +6 -6
- huaweicloudsdkelb/v3/model/list_listeners_request.py +42 -42
- huaweicloudsdkelb/v3/model/list_listeners_response.py +6 -6
- huaweicloudsdkelb/v3/model/list_load_balancers_request.py +36 -36
- huaweicloudsdkelb/v3/model/list_logtanks_request.py +3 -3
- huaweicloudsdkelb/v3/model/list_master_slave_pools_request.py +39 -39
- huaweicloudsdkelb/v3/model/list_members_request.py +27 -27
- huaweicloudsdkelb/v3/model/list_pools_request.py +135 -48
- huaweicloudsdkelb/v3/model/list_security_policies_request.py +3 -3
- huaweicloudsdkelb/v3/model/listener.py +96 -96
- huaweicloudsdkelb/v3/model/listener_insert_headers.py +30 -30
- huaweicloudsdkelb/v3/model/listener_ip_group.py +9 -9
- huaweicloudsdkelb/v3/model/listener_member_info.py +3 -3
- huaweicloudsdkelb/v3/model/listener_quic_config.py +6 -6
- huaweicloudsdkelb/v3/model/listener_ref.py +3 -3
- huaweicloudsdkelb/v3/model/load_balancer.py +129 -129
- huaweicloudsdkelb/v3/model/load_balancer_ref.py +3 -3
- huaweicloudsdkelb/v3/model/load_balancer_status.py +3 -3
- huaweicloudsdkelb/v3/model/load_balancer_status_policy.py +3 -3
- huaweicloudsdkelb/v3/model/load_balancer_status_pool.py +3 -3
- huaweicloudsdkelb/v3/model/logtank.py +3 -3
- huaweicloudsdkelb/v3/model/master_slave_health_monitor.py +12 -12
- huaweicloudsdkelb/v3/model/master_slave_member.py +18 -18
- huaweicloudsdkelb/v3/model/master_slave_pool.py +42 -42
- huaweicloudsdkelb/v3/model/member.py +46 -191
- huaweicloudsdkelb/v3/model/member_info.py +656 -0
- huaweicloudsdkelb/v3/model/member_ref.py +3 -3
- huaweicloudsdkelb/v3/model/member_status.py +6 -6
- huaweicloudsdkelb/v3/model/page_info.py +9 -9
- huaweicloudsdkelb/v3/model/pool.py +146 -63
- huaweicloudsdkelb/v3/model/pool_health.py +115 -0
- huaweicloudsdkelb/v3/model/pool_ref.py +3 -3
- huaweicloudsdkelb/v3/model/prepaid_create_option.py +12 -12
- huaweicloudsdkelb/v3/model/public_ip_info.py +9 -9
- huaweicloudsdkelb/v3/model/quota.py +21 -21
- huaweicloudsdkelb/v3/model/quota_info.py +3 -3
- huaweicloudsdkelb/v3/model/redirect_pools_config.py +144 -0
- huaweicloudsdkelb/v3/model/redirect_pools_extend_config.py +81 -6
- huaweicloudsdkelb/v3/model/redirect_pools_sticky_session_config.py +144 -0
- huaweicloudsdkelb/v3/model/redirect_url_config.py +83 -27
- huaweicloudsdkelb/v3/model/remove_header_config.py +114 -0
- huaweicloudsdkelb/v3/model/remove_headers_config.py +114 -0
- huaweicloudsdkelb/v3/model/rewrite_url_config.py +9 -9
- huaweicloudsdkelb/v3/model/rule_condition.py +6 -6
- huaweicloudsdkelb/v3/model/rule_ref.py +3 -3
- huaweicloudsdkelb/v3/model/session_persistence.py +9 -9
- huaweicloudsdkelb/v3/model/show_certificate_private_key_echo_request.py +84 -0
- huaweicloudsdkelb/v3/model/show_certificate_private_key_echo_response.py +145 -0
- huaweicloudsdkelb/v3/model/show_flavor_request.py +3 -3
- huaweicloudsdkelb/v3/model/show_flavor_response.py +3 -3
- huaweicloudsdkelb/v3/model/show_ip_group_request.py +3 -3
- huaweicloudsdkelb/v3/model/show_ip_group_response.py +3 -3
- huaweicloudsdkelb/v3/model/show_l7_policy_request.py +3 -3
- huaweicloudsdkelb/v3/model/show_l7_policy_response.py +3 -3
- huaweicloudsdkelb/v3/model/show_l7_rule_response.py +3 -3
- huaweicloudsdkelb/v3/model/show_listener_response.py +3 -3
- huaweicloudsdkelb/v3/model/show_load_balancer_response.py +3 -3
- huaweicloudsdkelb/v3/model/show_load_balancer_status_response.py +3 -3
- huaweicloudsdkelb/v3/model/show_master_slave_pool_request.py +3 -3
- huaweicloudsdkelb/v3/model/show_member_request.py +3 -3
- huaweicloudsdkelb/v3/model/show_pool_request.py +3 -3
- huaweicloudsdkelb/v3/model/slow_start.py +6 -6
- huaweicloudsdkelb/v3/model/tag.py +6 -6
- huaweicloudsdkelb/v3/model/traffic_limit_config.py +173 -0
- huaweicloudsdkelb/v3/model/upadate_ip_group_ip_option.py +6 -6
- huaweicloudsdkelb/v3/model/update_certificate_option.py +3 -3
- huaweicloudsdkelb/v3/model/update_fixted_response_config.py +87 -12
- huaweicloudsdkelb/v3/model/update_health_monitor_option.py +15 -15
- huaweicloudsdkelb/v3/model/update_insert_header_config.py +170 -0
- huaweicloudsdkelb/v3/model/update_insert_headers_config.py +114 -0
- huaweicloudsdkelb/v3/model/update_ip_group_option.py +9 -9
- huaweicloudsdkelb/v3/model/update_ip_group_request.py +3 -3
- huaweicloudsdkelb/v3/model/update_ip_group_response.py +3 -3
- huaweicloudsdkelb/v3/model/update_ip_list_option.py +9 -9
- huaweicloudsdkelb/v3/model/update_ip_list_request.py +3 -3
- huaweicloudsdkelb/v3/model/update_ip_list_response.py +3 -3
- huaweicloudsdkelb/v3/model/update_l7_policy_option.py +76 -22
- huaweicloudsdkelb/v3/model/update_l7_policy_request.py +3 -3
- huaweicloudsdkelb/v3/model/update_l7_policy_response.py +3 -3
- huaweicloudsdkelb/v3/model/update_l7_rule_option.py +18 -18
- huaweicloudsdkelb/v3/model/update_l7_rule_response.py +3 -3
- huaweicloudsdkelb/v3/model/update_listener_ip_group_option.py +9 -9
- huaweicloudsdkelb/v3/model/update_listener_option.py +66 -66
- huaweicloudsdkelb/v3/model/update_listener_quic_config_option.py +6 -6
- huaweicloudsdkelb/v3/model/update_listener_response.py +3 -3
- huaweicloudsdkelb/v3/model/update_load_balancer_option.py +48 -48
- huaweicloudsdkelb/v3/model/update_load_balancer_response.py +9 -9
- huaweicloudsdkelb/v3/model/update_loadbalancer_autoscaling_option.py +6 -6
- huaweicloudsdkelb/v3/model/update_member_option.py +12 -12
- huaweicloudsdkelb/v3/model/update_member_request.py +3 -3
- huaweicloudsdkelb/v3/model/update_pool_option.py +52 -27
- huaweicloudsdkelb/v3/model/update_pool_request.py +3 -3
- huaweicloudsdkelb/v3/model/update_pool_session_persistence_option.py +6 -6
- huaweicloudsdkelb/v3/model/update_redirect_pools_config.py +143 -0
- huaweicloudsdkelb/v3/model/update_redirect_pools_extend_config.py +84 -9
- huaweicloudsdkelb/v3/model/update_redirect_pools_sticky_session_config.py +144 -0
- huaweicloudsdkelb/v3/model/update_redirect_url_config.py +71 -21
- huaweicloudsdkelb/v3/model/update_remove_header_config.py +114 -0
- huaweicloudsdkelb/v3/model/update_remove_headers_config.py +114 -0
- huaweicloudsdkelb/v3/model/update_rewrite_url_config.py +173 -0
- huaweicloudsdkelb/v3/model/update_rule_condition.py +6 -6
- huaweicloudsdkelb/v3/model/update_traffic_limit_config.py +173 -0
- huaweicloudsdkelb/v3/region/elb_region.py +19 -1
- {huaweicloudsdkelb-3.1.85.dist-info → huaweicloudsdkelb-3.1.132.dist-info}/METADATA +2 -2
- {huaweicloudsdkelb-3.1.85.dist-info → huaweicloudsdkelb-3.1.132.dist-info}/RECORD +213 -184
- {huaweicloudsdkelb-3.1.85.dist-info → huaweicloudsdkelb-3.1.132.dist-info}/WHEEL +1 -1
- {huaweicloudsdkelb-3.1.85.dist-info → huaweicloudsdkelb-3.1.132.dist-info}/LICENSE +0 -0
- {huaweicloudsdkelb-3.1.85.dist-info → huaweicloudsdkelb-3.1.132.dist-info}/top_level.txt +0 -0
@@ -29,7 +29,7 @@ class BandwidthRef:
|
|
29
29
|
|
30
30
|
The model defined in huaweicloud sdk
|
31
31
|
|
32
|
-
:param id:
|
32
|
+
:param id: 参数解释:共享带宽的ID。
|
33
33
|
:type id: str
|
34
34
|
"""
|
35
35
|
|
@@ -44,7 +44,7 @@ class BandwidthRef:
|
|
44
44
|
def id(self):
|
45
45
|
"""Gets the id of this BandwidthRef.
|
46
46
|
|
47
|
-
|
47
|
+
参数解释:共享带宽的ID。
|
48
48
|
|
49
49
|
:return: The id of this BandwidthRef.
|
50
50
|
:rtype: str
|
@@ -55,7 +55,7 @@ class BandwidthRef:
|
|
55
55
|
def id(self, id):
|
56
56
|
"""Sets the id of this BandwidthRef.
|
57
57
|
|
58
|
-
|
58
|
+
参数解释:共享带宽的ID。
|
59
59
|
|
60
60
|
:param id: The id of this BandwidthRef.
|
61
61
|
:type id: str
|
@@ -31,7 +31,7 @@ class BatchAddAvailableZonesRequest:
|
|
31
31
|
|
32
32
|
The model defined in huaweicloud sdk
|
33
33
|
|
34
|
-
:param loadbalancer_id:
|
34
|
+
:param loadbalancer_id: 参数解释:负载均衡器ID。
|
35
35
|
:type loadbalancer_id: str
|
36
36
|
:param body: Body of the BatchAddAvailableZonesRequest
|
37
37
|
:type body: :class:`huaweicloudsdkelb.v3.BatchAddAvailableZonesRequestBody`
|
@@ -51,7 +51,7 @@ class BatchAddAvailableZonesRequest:
|
|
51
51
|
def loadbalancer_id(self):
|
52
52
|
"""Gets the loadbalancer_id of this BatchAddAvailableZonesRequest.
|
53
53
|
|
54
|
-
|
54
|
+
参数解释:负载均衡器ID。
|
55
55
|
|
56
56
|
:return: The loadbalancer_id of this BatchAddAvailableZonesRequest.
|
57
57
|
:rtype: str
|
@@ -62,7 +62,7 @@ class BatchAddAvailableZonesRequest:
|
|
62
62
|
def loadbalancer_id(self, loadbalancer_id):
|
63
63
|
"""Sets the loadbalancer_id of this BatchAddAvailableZonesRequest.
|
64
64
|
|
65
|
-
|
65
|
+
参数解释:负载均衡器ID。
|
66
66
|
|
67
67
|
:param loadbalancer_id: The loadbalancer_id of this BatchAddAvailableZonesRequest.
|
68
68
|
:type loadbalancer_id: str
|
@@ -40,9 +40,9 @@ class BatchAddAvailableZonesResponse(SdkResponse):
|
|
40
40
|
:type loadbalancer: :class:`huaweicloudsdkelb.v3.LoadBalancer`
|
41
41
|
:param request_id: 请求ID。 注:自动生成 。
|
42
42
|
:type request_id: str
|
43
|
-
:param loadbalancer_id: 负载均衡器ID[(包周期场景返回该字段)](tag:hws_eu,g42,hk_g42,dt,dt_test,hcso_dt,ctc,cmcc,hcso,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
|
43
|
+
:param loadbalancer_id: 负载均衡器ID[(包周期场景返回该字段)](tag:hws_eu,g42,hk_g42,dt,dt_test,hcso_dt,ctc,cmcc,hcso,hk_vdf,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
|
44
44
|
:type loadbalancer_id: str
|
45
|
-
:param order_id: 订单号[(包周期场景返回该字段)](tag:hws_eu,g42,hk_g42,dt,dt_test,hcso_dt,ctc,cmcc,hcso,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
|
45
|
+
:param order_id: 订单号[(包周期场景返回该字段)](tag:hws_eu,g42,hk_g42,dt,dt_test,hcso_dt,ctc,cmcc,hcso,hk_vdf,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
|
46
46
|
:type order_id: str
|
47
47
|
"""
|
48
48
|
|
@@ -107,7 +107,7 @@ class BatchAddAvailableZonesResponse(SdkResponse):
|
|
107
107
|
def loadbalancer_id(self):
|
108
108
|
"""Gets the loadbalancer_id of this BatchAddAvailableZonesResponse.
|
109
109
|
|
110
|
-
负载均衡器ID[(包周期场景返回该字段)](tag:hws_eu,g42,hk_g42,dt,dt_test,hcso_dt,ctc,cmcc,hcso,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
|
110
|
+
负载均衡器ID[(包周期场景返回该字段)](tag:hws_eu,g42,hk_g42,dt,dt_test,hcso_dt,ctc,cmcc,hcso,hk_vdf,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
|
111
111
|
|
112
112
|
:return: The loadbalancer_id of this BatchAddAvailableZonesResponse.
|
113
113
|
:rtype: str
|
@@ -118,7 +118,7 @@ class BatchAddAvailableZonesResponse(SdkResponse):
|
|
118
118
|
def loadbalancer_id(self, loadbalancer_id):
|
119
119
|
"""Sets the loadbalancer_id of this BatchAddAvailableZonesResponse.
|
120
120
|
|
121
|
-
负载均衡器ID[(包周期场景返回该字段)](tag:hws_eu,g42,hk_g42,dt,dt_test,hcso_dt,ctc,cmcc,hcso,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
|
121
|
+
负载均衡器ID[(包周期场景返回该字段)](tag:hws_eu,g42,hk_g42,dt,dt_test,hcso_dt,ctc,cmcc,hcso,hk_vdf,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
|
122
122
|
|
123
123
|
:param loadbalancer_id: The loadbalancer_id of this BatchAddAvailableZonesResponse.
|
124
124
|
:type loadbalancer_id: str
|
@@ -129,7 +129,7 @@ class BatchAddAvailableZonesResponse(SdkResponse):
|
|
129
129
|
def order_id(self):
|
130
130
|
"""Gets the order_id of this BatchAddAvailableZonesResponse.
|
131
131
|
|
132
|
-
订单号[(包周期场景返回该字段)](tag:hws_eu,g42,hk_g42,dt,dt_test,hcso_dt,ctc,cmcc,hcso,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
|
132
|
+
订单号[(包周期场景返回该字段)](tag:hws_eu,g42,hk_g42,dt,dt_test,hcso_dt,ctc,cmcc,hcso,hk_vdf,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
|
133
133
|
|
134
134
|
:return: The order_id of this BatchAddAvailableZonesResponse.
|
135
135
|
:rtype: str
|
@@ -140,7 +140,7 @@ class BatchAddAvailableZonesResponse(SdkResponse):
|
|
140
140
|
def order_id(self, order_id):
|
141
141
|
"""Sets the order_id of this BatchAddAvailableZonesResponse.
|
142
142
|
|
143
|
-
订单号[(包周期场景返回该字段)](tag:hws_eu,g42,hk_g42,dt,dt_test,hcso_dt,ctc,cmcc,hcso,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
|
143
|
+
订单号[(包周期场景返回该字段)](tag:hws_eu,g42,hk_g42,dt,dt_test,hcso_dt,ctc,cmcc,hcso,hk_vdf,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
|
144
144
|
|
145
145
|
:param order_id: The order_id of this BatchAddAvailableZonesResponse.
|
146
146
|
:type order_id: str
|
@@ -39,13 +39,13 @@ class BatchCreateMembersOption:
|
|
39
39
|
|
40
40
|
:param name: 后端服务器名称。
|
41
41
|
:type name: str
|
42
|
-
:param address:
|
42
|
+
:param address: 后端服务器的对应的IP地址,这个IP必须在subnet_cidr_id字段的子网网段中。例如:192.168.3.11。 subnet_cidr_id为空代表添加跨VPC后端,此时address必须为ipv4地址。
|
43
43
|
:type address: str
|
44
|
-
:param protocol_port:
|
44
|
+
:param protocol_port: 后端服务器业务端口。 [网关型LB,即pool协议为IP时,protocol_port必须设置为0。](tag:hws_eu) >在开启端口透传的pool下创建member传该字段不生效,可不传该字段。
|
45
45
|
:type protocol_port: int
|
46
|
-
:param subnet_cidr_id:
|
46
|
+
:param subnet_cidr_id: 后端服务器所在的子网,可以是IPv4或IPv6子网。若是IPv4子网,使用对应子网的子网ID(neutron_subnet_id);若是IPv6子网,使用对应子网的网络ID(neutron_network_id)。 ipv4子网的子网ID可以通过GET https://{VPC_Endpoint}/v1/{project_id}/subnets 响应参数中的neutron_subnet_id得到 ipv6子网的网络ID可以通过GET https://{VPC_Endpoint}/v1/{project_id}/subnets 响应参数中的neutron_network_id得到 使用说明: - 该子网和关联的负载均衡器的子网必须在同一VPC下。 - 若所属LB的跨VPC后端转发已开启(ip_target_enable=true),则该字段可以不传,表示添加跨VPC的后端服务器。此时address必须为IPv4地址,所在的pool的协议必须为UDP/TCP/TLS/HTTP/HTTPS/QUIC/GRPC。 - 若所属LB未开启跨VPC后端转发,该参数必填。 [- 网关型LB,即pool协议为IP时,必须指定该子网,且必须和负载均衡器的子网在同一个VPC下,但不能相同。](tag:hws_eu) [不支持IPv6,请勿设置为IPv6子网ID。](tag:dt,dt_test)
|
47
47
|
:type subnet_cidr_id: str
|
48
|
-
:param weight:
|
48
|
+
:param weight: 后端服务器的权重,请求将根据pool配置的负载均衡算法和后端服务器的权重进行负载分发。 权重值越大,分发的请求越多。权重为0的后端不再接受新的请求。 取值:0-100,默认1。 使用说明:若所在pool的lb_algorithm取值为SOURCE_IP或QUIC_CID,该字段无效。
|
49
49
|
:type weight: int
|
50
50
|
"""
|
51
51
|
|
@@ -93,7 +93,7 @@ class BatchCreateMembersOption:
|
|
93
93
|
def address(self):
|
94
94
|
"""Gets the address of this BatchCreateMembersOption.
|
95
95
|
|
96
|
-
|
96
|
+
后端服务器的对应的IP地址,这个IP必须在subnet_cidr_id字段的子网网段中。例如:192.168.3.11。 subnet_cidr_id为空代表添加跨VPC后端,此时address必须为ipv4地址。
|
97
97
|
|
98
98
|
:return: The address of this BatchCreateMembersOption.
|
99
99
|
:rtype: str
|
@@ -104,7 +104,7 @@ class BatchCreateMembersOption:
|
|
104
104
|
def address(self, address):
|
105
105
|
"""Sets the address of this BatchCreateMembersOption.
|
106
106
|
|
107
|
-
|
107
|
+
后端服务器的对应的IP地址,这个IP必须在subnet_cidr_id字段的子网网段中。例如:192.168.3.11。 subnet_cidr_id为空代表添加跨VPC后端,此时address必须为ipv4地址。
|
108
108
|
|
109
109
|
:param address: The address of this BatchCreateMembersOption.
|
110
110
|
:type address: str
|
@@ -115,7 +115,7 @@ class BatchCreateMembersOption:
|
|
115
115
|
def protocol_port(self):
|
116
116
|
"""Gets the protocol_port of this BatchCreateMembersOption.
|
117
117
|
|
118
|
-
|
118
|
+
后端服务器业务端口。 [网关型LB,即pool协议为IP时,protocol_port必须设置为0。](tag:hws_eu) >在开启端口透传的pool下创建member传该字段不生效,可不传该字段。
|
119
119
|
|
120
120
|
:return: The protocol_port of this BatchCreateMembersOption.
|
121
121
|
:rtype: int
|
@@ -126,7 +126,7 @@ class BatchCreateMembersOption:
|
|
126
126
|
def protocol_port(self, protocol_port):
|
127
127
|
"""Sets the protocol_port of this BatchCreateMembersOption.
|
128
128
|
|
129
|
-
|
129
|
+
后端服务器业务端口。 [网关型LB,即pool协议为IP时,protocol_port必须设置为0。](tag:hws_eu) >在开启端口透传的pool下创建member传该字段不生效,可不传该字段。
|
130
130
|
|
131
131
|
:param protocol_port: The protocol_port of this BatchCreateMembersOption.
|
132
132
|
:type protocol_port: int
|
@@ -137,7 +137,7 @@ class BatchCreateMembersOption:
|
|
137
137
|
def subnet_cidr_id(self):
|
138
138
|
"""Gets the subnet_cidr_id of this BatchCreateMembersOption.
|
139
139
|
|
140
|
-
|
140
|
+
后端服务器所在的子网,可以是IPv4或IPv6子网。若是IPv4子网,使用对应子网的子网ID(neutron_subnet_id);若是IPv6子网,使用对应子网的网络ID(neutron_network_id)。 ipv4子网的子网ID可以通过GET https://{VPC_Endpoint}/v1/{project_id}/subnets 响应参数中的neutron_subnet_id得到 ipv6子网的网络ID可以通过GET https://{VPC_Endpoint}/v1/{project_id}/subnets 响应参数中的neutron_network_id得到 使用说明: - 该子网和关联的负载均衡器的子网必须在同一VPC下。 - 若所属LB的跨VPC后端转发已开启(ip_target_enable=true),则该字段可以不传,表示添加跨VPC的后端服务器。此时address必须为IPv4地址,所在的pool的协议必须为UDP/TCP/TLS/HTTP/HTTPS/QUIC/GRPC。 - 若所属LB未开启跨VPC后端转发,该参数必填。 [- 网关型LB,即pool协议为IP时,必须指定该子网,且必须和负载均衡器的子网在同一个VPC下,但不能相同。](tag:hws_eu) [不支持IPv6,请勿设置为IPv6子网ID。](tag:dt,dt_test)
|
141
141
|
|
142
142
|
:return: The subnet_cidr_id of this BatchCreateMembersOption.
|
143
143
|
:rtype: str
|
@@ -148,7 +148,7 @@ class BatchCreateMembersOption:
|
|
148
148
|
def subnet_cidr_id(self, subnet_cidr_id):
|
149
149
|
"""Sets the subnet_cidr_id of this BatchCreateMembersOption.
|
150
150
|
|
151
|
-
|
151
|
+
后端服务器所在的子网,可以是IPv4或IPv6子网。若是IPv4子网,使用对应子网的子网ID(neutron_subnet_id);若是IPv6子网,使用对应子网的网络ID(neutron_network_id)。 ipv4子网的子网ID可以通过GET https://{VPC_Endpoint}/v1/{project_id}/subnets 响应参数中的neutron_subnet_id得到 ipv6子网的网络ID可以通过GET https://{VPC_Endpoint}/v1/{project_id}/subnets 响应参数中的neutron_network_id得到 使用说明: - 该子网和关联的负载均衡器的子网必须在同一VPC下。 - 若所属LB的跨VPC后端转发已开启(ip_target_enable=true),则该字段可以不传,表示添加跨VPC的后端服务器。此时address必须为IPv4地址,所在的pool的协议必须为UDP/TCP/TLS/HTTP/HTTPS/QUIC/GRPC。 - 若所属LB未开启跨VPC后端转发,该参数必填。 [- 网关型LB,即pool协议为IP时,必须指定该子网,且必须和负载均衡器的子网在同一个VPC下,但不能相同。](tag:hws_eu) [不支持IPv6,请勿设置为IPv6子网ID。](tag:dt,dt_test)
|
152
152
|
|
153
153
|
:param subnet_cidr_id: The subnet_cidr_id of this BatchCreateMembersOption.
|
154
154
|
:type subnet_cidr_id: str
|
@@ -159,7 +159,7 @@ class BatchCreateMembersOption:
|
|
159
159
|
def weight(self):
|
160
160
|
"""Gets the weight of this BatchCreateMembersOption.
|
161
161
|
|
162
|
-
|
162
|
+
后端服务器的权重,请求将根据pool配置的负载均衡算法和后端服务器的权重进行负载分发。 权重值越大,分发的请求越多。权重为0的后端不再接受新的请求。 取值:0-100,默认1。 使用说明:若所在pool的lb_algorithm取值为SOURCE_IP或QUIC_CID,该字段无效。
|
163
163
|
|
164
164
|
:return: The weight of this BatchCreateMembersOption.
|
165
165
|
:rtype: int
|
@@ -170,7 +170,7 @@ class BatchCreateMembersOption:
|
|
170
170
|
def weight(self, weight):
|
171
171
|
"""Sets the weight of this BatchCreateMembersOption.
|
172
172
|
|
173
|
-
|
173
|
+
后端服务器的权重,请求将根据pool配置的负载均衡算法和后端服务器的权重进行负载分发。 权重值越大,分发的请求越多。权重为0的后端不再接受新的请求。 取值:0-100,默认1。 使用说明:若所在pool的lb_algorithm取值为SOURCE_IP或QUIC_CID,该字段无效。
|
174
174
|
|
175
175
|
:param weight: The weight of this BatchCreateMembersOption.
|
176
176
|
:type weight: int
|
@@ -31,7 +31,7 @@ class BatchCreateMembersRequest:
|
|
31
31
|
|
32
32
|
The model defined in huaweicloud sdk
|
33
33
|
|
34
|
-
:param pool_id:
|
34
|
+
:param pool_id: 参数解释:后端服务器组ID。
|
35
35
|
:type pool_id: str
|
36
36
|
:param body: Body of the BatchCreateMembersRequest
|
37
37
|
:type body: :class:`huaweicloudsdkelb.v3.BatchCreateMembersRequestBody`
|
@@ -51,7 +51,7 @@ class BatchCreateMembersRequest:
|
|
51
51
|
def pool_id(self):
|
52
52
|
"""Gets the pool_id of this BatchCreateMembersRequest.
|
53
53
|
|
54
|
-
|
54
|
+
参数解释:后端服务器组ID。
|
55
55
|
|
56
56
|
:return: The pool_id of this BatchCreateMembersRequest.
|
57
57
|
:rtype: str
|
@@ -62,7 +62,7 @@ class BatchCreateMembersRequest:
|
|
62
62
|
def pool_id(self, pool_id):
|
63
63
|
"""Sets the pool_id of this BatchCreateMembersRequest.
|
64
64
|
|
65
|
-
|
65
|
+
参数解释:后端服务器组ID。
|
66
66
|
|
67
67
|
:param pool_id: The pool_id of this BatchCreateMembersRequest.
|
68
68
|
:type pool_id: str
|
@@ -29,7 +29,7 @@ class BatchDeleteIpListOption:
|
|
29
29
|
|
30
30
|
The model defined in huaweicloud sdk
|
31
31
|
|
32
|
-
:param ip_list: IP列表。
|
32
|
+
:param ip_list: 参数解释:IP列表。
|
33
33
|
:type ip_list: list[:class:`huaweicloudsdkelb.v3.IpGroupIp`]
|
34
34
|
"""
|
35
35
|
|
@@ -45,7 +45,7 @@ class BatchDeleteIpListOption:
|
|
45
45
|
def ip_list(self):
|
46
46
|
"""Gets the ip_list of this BatchDeleteIpListOption.
|
47
47
|
|
48
|
-
IP列表。
|
48
|
+
参数解释:IP列表。
|
49
49
|
|
50
50
|
:return: The ip_list of this BatchDeleteIpListOption.
|
51
51
|
:rtype: list[:class:`huaweicloudsdkelb.v3.IpGroupIp`]
|
@@ -56,7 +56,7 @@ class BatchDeleteIpListOption:
|
|
56
56
|
def ip_list(self, ip_list):
|
57
57
|
"""Sets the ip_list of this BatchDeleteIpListOption.
|
58
58
|
|
59
|
-
IP列表。
|
59
|
+
参数解释:IP列表。
|
60
60
|
|
61
61
|
:param ip_list: The ip_list of this BatchDeleteIpListOption.
|
62
62
|
:type ip_list: list[:class:`huaweicloudsdkelb.v3.IpGroupIp`]
|
@@ -31,7 +31,7 @@ class BatchDeleteIpListRequest:
|
|
31
31
|
|
32
32
|
The model defined in huaweicloud sdk
|
33
33
|
|
34
|
-
:param ipgroup_id: IP地址组ID。
|
34
|
+
:param ipgroup_id: 参数解释:IP地址组ID。
|
35
35
|
:type ipgroup_id: str
|
36
36
|
:param body: Body of the BatchDeleteIpListRequest
|
37
37
|
:type body: :class:`huaweicloudsdkelb.v3.BatchDeleteIpListRequestBody`
|
@@ -51,7 +51,7 @@ class BatchDeleteIpListRequest:
|
|
51
51
|
def ipgroup_id(self):
|
52
52
|
"""Gets the ipgroup_id of this BatchDeleteIpListRequest.
|
53
53
|
|
54
|
-
IP地址组ID。
|
54
|
+
参数解释:IP地址组ID。
|
55
55
|
|
56
56
|
:return: The ipgroup_id of this BatchDeleteIpListRequest.
|
57
57
|
:rtype: str
|
@@ -62,7 +62,7 @@ class BatchDeleteIpListRequest:
|
|
62
62
|
def ipgroup_id(self, ipgroup_id):
|
63
63
|
"""Sets the ipgroup_id of this BatchDeleteIpListRequest.
|
64
64
|
|
65
|
-
IP地址组ID。
|
65
|
+
参数解释:IP地址组ID。
|
66
66
|
|
67
67
|
:param ipgroup_id: The ipgroup_id of this BatchDeleteIpListRequest.
|
68
68
|
:type ipgroup_id: str
|
@@ -34,7 +34,7 @@ class BatchDeleteIpListResponse(SdkResponse):
|
|
34
34
|
|
35
35
|
:param ipgroup:
|
36
36
|
:type ipgroup: :class:`huaweicloudsdkelb.v3.IpGroup`
|
37
|
-
:param request_id:
|
37
|
+
:param request_id: 参数解释:请求ID。 注:自动生成 。
|
38
38
|
:type request_id: str
|
39
39
|
"""
|
40
40
|
|
@@ -71,7 +71,7 @@ class BatchDeleteIpListResponse(SdkResponse):
|
|
71
71
|
def request_id(self):
|
72
72
|
"""Gets the request_id of this BatchDeleteIpListResponse.
|
73
73
|
|
74
|
-
|
74
|
+
参数解释:请求ID。 注:自动生成 。
|
75
75
|
|
76
76
|
:return: The request_id of this BatchDeleteIpListResponse.
|
77
77
|
:rtype: str
|
@@ -82,7 +82,7 @@ class BatchDeleteIpListResponse(SdkResponse):
|
|
82
82
|
def request_id(self, request_id):
|
83
83
|
"""Sets the request_id of this BatchDeleteIpListResponse.
|
84
84
|
|
85
|
-
|
85
|
+
参数解释:请求ID。 注:自动生成 。
|
86
86
|
|
87
87
|
:param request_id: The request_id of this BatchDeleteIpListResponse.
|
88
88
|
:type request_id: str
|
@@ -31,7 +31,7 @@ class BatchDeleteMembersRequest:
|
|
31
31
|
|
32
32
|
The model defined in huaweicloud sdk
|
33
33
|
|
34
|
-
:param pool_id:
|
34
|
+
:param pool_id: 参数解释:后端服务器组ID。
|
35
35
|
:type pool_id: str
|
36
36
|
:param body: Body of the BatchDeleteMembersRequest
|
37
37
|
:type body: :class:`huaweicloudsdkelb.v3.BatchDeleteMembersRequestBody`
|
@@ -51,7 +51,7 @@ class BatchDeleteMembersRequest:
|
|
51
51
|
def pool_id(self):
|
52
52
|
"""Gets the pool_id of this BatchDeleteMembersRequest.
|
53
53
|
|
54
|
-
|
54
|
+
参数解释:后端服务器组ID。
|
55
55
|
|
56
56
|
:return: The pool_id of this BatchDeleteMembersRequest.
|
57
57
|
:rtype: str
|
@@ -62,7 +62,7 @@ class BatchDeleteMembersRequest:
|
|
62
62
|
def pool_id(self, pool_id):
|
63
63
|
"""Sets the pool_id of this BatchDeleteMembersRequest.
|
64
64
|
|
65
|
-
|
65
|
+
参数解释:后端服务器组ID。
|
66
66
|
|
67
67
|
:param pool_id: The pool_id of this BatchDeleteMembersRequest.
|
68
68
|
:type pool_id: str
|
@@ -30,7 +30,9 @@ class BatchMember:
|
|
30
30
|
'member_type': 'str',
|
31
31
|
'instance_id': 'str',
|
32
32
|
'port_id': 'str',
|
33
|
-
'ret_status': 'str'
|
33
|
+
'ret_status': 'str',
|
34
|
+
'created_at': 'str',
|
35
|
+
'updated_at': 'str'
|
34
36
|
}
|
35
37
|
|
36
38
|
attribute_map = {
|
@@ -47,10 +49,12 @@ class BatchMember:
|
|
47
49
|
'member_type': 'member_type',
|
48
50
|
'instance_id': 'instance_id',
|
49
51
|
'port_id': 'port_id',
|
50
|
-
'ret_status': 'ret_status'
|
52
|
+
'ret_status': 'ret_status',
|
53
|
+
'created_at': 'created_at',
|
54
|
+
'updated_at': 'updated_at'
|
51
55
|
}
|
52
56
|
|
53
|
-
def __init__(self, id=None, name=None, project_id=None, admin_state_up=None, subnet_cidr_id=None, protocol_port=None, weight=None, address=None, operating_status=None, status=None, member_type=None, instance_id=None, port_id=None, ret_status=None):
|
57
|
+
def __init__(self, id=None, name=None, project_id=None, admin_state_up=None, subnet_cidr_id=None, protocol_port=None, weight=None, address=None, operating_status=None, status=None, member_type=None, instance_id=None, port_id=None, ret_status=None, created_at=None, updated_at=None):
|
54
58
|
"""BatchMember
|
55
59
|
|
56
60
|
The model defined in huaweicloud sdk
|
@@ -61,21 +65,21 @@ class BatchMember:
|
|
61
65
|
:type name: str
|
62
66
|
:param project_id: 后端服务器所在的项目ID。
|
63
67
|
:type project_id: str
|
64
|
-
:param admin_state_up:
|
68
|
+
:param admin_state_up: 后端服务器的管理状态。 取值:true、false。 虽然创建、更新请求支持该字段,但实际取值决定于后端服务器对应的弹性云服务器是否存在。若存在,该值为true,否则,该值为false。
|
65
69
|
:type admin_state_up: bool
|
66
|
-
:param subnet_cidr_id:
|
70
|
+
:param subnet_cidr_id: 后端服务器所在的子网,可以是IPv4或IPv6子网。若是IPv4子网,使用对应子网的子网ID(neutron_subnet_id);若是IPv6子网,使用对应子网的网络ID(neutron_network_id)。 ipv4子网的子网ID可以通过GET https://{VPC_Endpoint}/v1/{project_id}/subnets 响应参数中的neutron_subnet_id得到 ipv6子网的网络ID可以通过GET https://{VPC_Endpoint}/v1/{project_id}/subnets 响应参数中的neutron_network_id得到 使用说明: - 该子网和关联的负载均衡器的子网必须在同一VPC下。 - 若所属LB的跨VPC后端转发已开启(ip_target_enable=true),则该字段可以不传,表示添加跨VPC的后端服务器。此时address必须为IPv4地址,所在的pool的协议必须为UDP/TCP/TLS/HTTP/HTTPS/QUIC/GRPC。 - 若所属LB未开启跨VPC后端转发,该参数必填。 [- 网关型LB,即pool协议为IP时,必须指定该子网,且必须和负载均衡器的子网在同一个VPC下,但不能相同。](tag:hws_eu) [不支持IPv6,请勿设置为IPv6子网ID。](tag:dt,dt_test)
|
67
71
|
:type subnet_cidr_id: str
|
68
|
-
:param protocol_port: 后端服务器业务端口。 >在开启端口透传的pool下创建member传该字段不生效,可不传该字段。
|
72
|
+
:param protocol_port: 后端服务器业务端口。 [网关型LB,即pool协议为IP时,protocol_port必须设置为0。](tag:hws_eu) >在开启端口透传的pool下创建member传该字段不生效,可不传该字段。
|
69
73
|
:type protocol_port: int
|
70
|
-
:param weight:
|
74
|
+
:param weight: 后端服务器的权重,请求将根据pool配置的负载均衡算法和后端服务器的权重进行负载分发。 权重值越大,分发的请求越多。权重为0的后端不再接受新的请求。 取值:0-100,默认1。 使用说明: - 若所在pool的lb_algorithm取值为SOURCE_IP或QUIC_CID,该字段无效。
|
71
75
|
:type weight: int
|
72
|
-
:param address: 后端服务器对应的IP地址。 使用说明: - 若subnet_cidr_id为空,表示添加跨VPC后端,此时address必须为IPv4地址。 - 若subnet_cidr_id不为空,表示是一个关联到ECS的后端服务器。该IP
|
76
|
+
:param address: 后端服务器对应的IP地址。 使用说明: - 若subnet_cidr_id为空,表示添加跨VPC后端,此时address必须为IPv4地址。 - 若subnet_cidr_id不为空,表示是一个关联到ECS的后端服务器。该IP地址可以是私网IPv4或IPv6。 但必须在subnet_cidr_id对应的子网网段中。 [不支持IPv6,请勿设置为IPv6地址。](tag:dt,dt_test)
|
73
77
|
:type address: str
|
74
|
-
:param operating_status:
|
78
|
+
:param operating_status: 后端服务器的健康状态。 取值: - ONLINE:后端服务器正常。 - NO_MONITOR:后端服务器所在的服务器组没有健康检查器。 - OFFLINE:后端服务器关联的ECS服务器不存在或已关机。
|
75
79
|
:type operating_status: str
|
76
|
-
:param status:
|
80
|
+
:param status: 后端服务器监听器粒度的的健康状态。 若绑定的监听器在该字段中,则以该字段中监听器对应的operating_stauts为准。 若绑定的监听器不在该字段中,则以外层的operating_status为准。
|
77
81
|
:type status: list[:class:`huaweicloudsdkelb.v3.MemberStatus`]
|
78
|
-
:param member_type:
|
82
|
+
:param member_type: 后端服务器的类型。 取值: - ip:跨VPC的member。 - instance:关联到ECS的member。
|
79
83
|
:type member_type: str
|
80
84
|
:param instance_id: member关联的实例ID,空表示跨VPC场景的member。
|
81
85
|
:type instance_id: str
|
@@ -83,6 +87,10 @@ class BatchMember:
|
|
83
87
|
:type port_id: str
|
84
88
|
:param ret_status: 当前后端服务器创建结果状态。 取值: - successful:添加成功。 - existed:member已存在。
|
85
89
|
:type ret_status: str
|
90
|
+
:param created_at: 创建时间。格式:yyyy-MM-dd'T'HH:mm:ss'Z',UTC时区。 [注意:独享型实例的历史数据以及共享型实例下的资源,不返回该字段。 ](tag:hws,hws_hk,ocb,ctc,g42,tm,cmcc,hk_g42,hws_ocb,hk_vdf,fcs,dt,hk_tm)
|
91
|
+
:type created_at: str
|
92
|
+
:param updated_at: 更新时间。格式:yyyy-MM-dd'T'HH:mm:ss'Z',UTC时区。 [注意:独享型实例的历史数据以及共享型实例下的资源,不返回该字段。 ](tag:hws,hws_hk,ocb,ctc,g42,tm,cmcc,hk_g42,hws_ocb,hk_vdf,fcs,dt,hk_tm)
|
93
|
+
:type updated_at: str
|
86
94
|
"""
|
87
95
|
|
88
96
|
|
@@ -101,6 +109,8 @@ class BatchMember:
|
|
101
109
|
self._instance_id = None
|
102
110
|
self._port_id = None
|
103
111
|
self._ret_status = None
|
112
|
+
self._created_at = None
|
113
|
+
self._updated_at = None
|
104
114
|
self.discriminator = None
|
105
115
|
|
106
116
|
self.id = id
|
@@ -121,6 +131,10 @@ class BatchMember:
|
|
121
131
|
self.instance_id = instance_id
|
122
132
|
self.port_id = port_id
|
123
133
|
self.ret_status = ret_status
|
134
|
+
if created_at is not None:
|
135
|
+
self.created_at = created_at
|
136
|
+
if updated_at is not None:
|
137
|
+
self.updated_at = updated_at
|
124
138
|
|
125
139
|
@property
|
126
140
|
def id(self):
|
@@ -192,7 +206,7 @@ class BatchMember:
|
|
192
206
|
def admin_state_up(self):
|
193
207
|
"""Gets the admin_state_up of this BatchMember.
|
194
208
|
|
195
|
-
|
209
|
+
后端服务器的管理状态。 取值:true、false。 虽然创建、更新请求支持该字段,但实际取值决定于后端服务器对应的弹性云服务器是否存在。若存在,该值为true,否则,该值为false。
|
196
210
|
|
197
211
|
:return: The admin_state_up of this BatchMember.
|
198
212
|
:rtype: bool
|
@@ -203,7 +217,7 @@ class BatchMember:
|
|
203
217
|
def admin_state_up(self, admin_state_up):
|
204
218
|
"""Sets the admin_state_up of this BatchMember.
|
205
219
|
|
206
|
-
|
220
|
+
后端服务器的管理状态。 取值:true、false。 虽然创建、更新请求支持该字段,但实际取值决定于后端服务器对应的弹性云服务器是否存在。若存在,该值为true,否则,该值为false。
|
207
221
|
|
208
222
|
:param admin_state_up: The admin_state_up of this BatchMember.
|
209
223
|
:type admin_state_up: bool
|
@@ -214,7 +228,7 @@ class BatchMember:
|
|
214
228
|
def subnet_cidr_id(self):
|
215
229
|
"""Gets the subnet_cidr_id of this BatchMember.
|
216
230
|
|
217
|
-
|
231
|
+
后端服务器所在的子网,可以是IPv4或IPv6子网。若是IPv4子网,使用对应子网的子网ID(neutron_subnet_id);若是IPv6子网,使用对应子网的网络ID(neutron_network_id)。 ipv4子网的子网ID可以通过GET https://{VPC_Endpoint}/v1/{project_id}/subnets 响应参数中的neutron_subnet_id得到 ipv6子网的网络ID可以通过GET https://{VPC_Endpoint}/v1/{project_id}/subnets 响应参数中的neutron_network_id得到 使用说明: - 该子网和关联的负载均衡器的子网必须在同一VPC下。 - 若所属LB的跨VPC后端转发已开启(ip_target_enable=true),则该字段可以不传,表示添加跨VPC的后端服务器。此时address必须为IPv4地址,所在的pool的协议必须为UDP/TCP/TLS/HTTP/HTTPS/QUIC/GRPC。 - 若所属LB未开启跨VPC后端转发,该参数必填。 [- 网关型LB,即pool协议为IP时,必须指定该子网,且必须和负载均衡器的子网在同一个VPC下,但不能相同。](tag:hws_eu) [不支持IPv6,请勿设置为IPv6子网ID。](tag:dt,dt_test)
|
218
232
|
|
219
233
|
:return: The subnet_cidr_id of this BatchMember.
|
220
234
|
:rtype: str
|
@@ -225,7 +239,7 @@ class BatchMember:
|
|
225
239
|
def subnet_cidr_id(self, subnet_cidr_id):
|
226
240
|
"""Sets the subnet_cidr_id of this BatchMember.
|
227
241
|
|
228
|
-
|
242
|
+
后端服务器所在的子网,可以是IPv4或IPv6子网。若是IPv4子网,使用对应子网的子网ID(neutron_subnet_id);若是IPv6子网,使用对应子网的网络ID(neutron_network_id)。 ipv4子网的子网ID可以通过GET https://{VPC_Endpoint}/v1/{project_id}/subnets 响应参数中的neutron_subnet_id得到 ipv6子网的网络ID可以通过GET https://{VPC_Endpoint}/v1/{project_id}/subnets 响应参数中的neutron_network_id得到 使用说明: - 该子网和关联的负载均衡器的子网必须在同一VPC下。 - 若所属LB的跨VPC后端转发已开启(ip_target_enable=true),则该字段可以不传,表示添加跨VPC的后端服务器。此时address必须为IPv4地址,所在的pool的协议必须为UDP/TCP/TLS/HTTP/HTTPS/QUIC/GRPC。 - 若所属LB未开启跨VPC后端转发,该参数必填。 [- 网关型LB,即pool协议为IP时,必须指定该子网,且必须和负载均衡器的子网在同一个VPC下,但不能相同。](tag:hws_eu) [不支持IPv6,请勿设置为IPv6子网ID。](tag:dt,dt_test)
|
229
243
|
|
230
244
|
:param subnet_cidr_id: The subnet_cidr_id of this BatchMember.
|
231
245
|
:type subnet_cidr_id: str
|
@@ -236,7 +250,7 @@ class BatchMember:
|
|
236
250
|
def protocol_port(self):
|
237
251
|
"""Gets the protocol_port of this BatchMember.
|
238
252
|
|
239
|
-
后端服务器业务端口。 >在开启端口透传的pool下创建member传该字段不生效,可不传该字段。
|
253
|
+
后端服务器业务端口。 [网关型LB,即pool协议为IP时,protocol_port必须设置为0。](tag:hws_eu) >在开启端口透传的pool下创建member传该字段不生效,可不传该字段。
|
240
254
|
|
241
255
|
:return: The protocol_port of this BatchMember.
|
242
256
|
:rtype: int
|
@@ -247,7 +261,7 @@ class BatchMember:
|
|
247
261
|
def protocol_port(self, protocol_port):
|
248
262
|
"""Sets the protocol_port of this BatchMember.
|
249
263
|
|
250
|
-
后端服务器业务端口。 >在开启端口透传的pool下创建member传该字段不生效,可不传该字段。
|
264
|
+
后端服务器业务端口。 [网关型LB,即pool协议为IP时,protocol_port必须设置为0。](tag:hws_eu) >在开启端口透传的pool下创建member传该字段不生效,可不传该字段。
|
251
265
|
|
252
266
|
:param protocol_port: The protocol_port of this BatchMember.
|
253
267
|
:type protocol_port: int
|
@@ -258,7 +272,7 @@ class BatchMember:
|
|
258
272
|
def weight(self):
|
259
273
|
"""Gets the weight of this BatchMember.
|
260
274
|
|
261
|
-
|
275
|
+
后端服务器的权重,请求将根据pool配置的负载均衡算法和后端服务器的权重进行负载分发。 权重值越大,分发的请求越多。权重为0的后端不再接受新的请求。 取值:0-100,默认1。 使用说明: - 若所在pool的lb_algorithm取值为SOURCE_IP或QUIC_CID,该字段无效。
|
262
276
|
|
263
277
|
:return: The weight of this BatchMember.
|
264
278
|
:rtype: int
|
@@ -269,7 +283,7 @@ class BatchMember:
|
|
269
283
|
def weight(self, weight):
|
270
284
|
"""Sets the weight of this BatchMember.
|
271
285
|
|
272
|
-
|
286
|
+
后端服务器的权重,请求将根据pool配置的负载均衡算法和后端服务器的权重进行负载分发。 权重值越大,分发的请求越多。权重为0的后端不再接受新的请求。 取值:0-100,默认1。 使用说明: - 若所在pool的lb_algorithm取值为SOURCE_IP或QUIC_CID,该字段无效。
|
273
287
|
|
274
288
|
:param weight: The weight of this BatchMember.
|
275
289
|
:type weight: int
|
@@ -280,7 +294,7 @@ class BatchMember:
|
|
280
294
|
def address(self):
|
281
295
|
"""Gets the address of this BatchMember.
|
282
296
|
|
283
|
-
后端服务器对应的IP地址。 使用说明: - 若subnet_cidr_id为空,表示添加跨VPC后端,此时address必须为IPv4地址。 - 若subnet_cidr_id不为空,表示是一个关联到ECS的后端服务器。该IP
|
297
|
+
后端服务器对应的IP地址。 使用说明: - 若subnet_cidr_id为空,表示添加跨VPC后端,此时address必须为IPv4地址。 - 若subnet_cidr_id不为空,表示是一个关联到ECS的后端服务器。该IP地址可以是私网IPv4或IPv6。 但必须在subnet_cidr_id对应的子网网段中。 [不支持IPv6,请勿设置为IPv6地址。](tag:dt,dt_test)
|
284
298
|
|
285
299
|
:return: The address of this BatchMember.
|
286
300
|
:rtype: str
|
@@ -291,7 +305,7 @@ class BatchMember:
|
|
291
305
|
def address(self, address):
|
292
306
|
"""Sets the address of this BatchMember.
|
293
307
|
|
294
|
-
后端服务器对应的IP地址。 使用说明: - 若subnet_cidr_id为空,表示添加跨VPC后端,此时address必须为IPv4地址。 - 若subnet_cidr_id不为空,表示是一个关联到ECS的后端服务器。该IP
|
308
|
+
后端服务器对应的IP地址。 使用说明: - 若subnet_cidr_id为空,表示添加跨VPC后端,此时address必须为IPv4地址。 - 若subnet_cidr_id不为空,表示是一个关联到ECS的后端服务器。该IP地址可以是私网IPv4或IPv6。 但必须在subnet_cidr_id对应的子网网段中。 [不支持IPv6,请勿设置为IPv6地址。](tag:dt,dt_test)
|
295
309
|
|
296
310
|
:param address: The address of this BatchMember.
|
297
311
|
:type address: str
|
@@ -302,7 +316,7 @@ class BatchMember:
|
|
302
316
|
def operating_status(self):
|
303
317
|
"""Gets the operating_status of this BatchMember.
|
304
318
|
|
305
|
-
|
319
|
+
后端服务器的健康状态。 取值: - ONLINE:后端服务器正常。 - NO_MONITOR:后端服务器所在的服务器组没有健康检查器。 - OFFLINE:后端服务器关联的ECS服务器不存在或已关机。
|
306
320
|
|
307
321
|
:return: The operating_status of this BatchMember.
|
308
322
|
:rtype: str
|
@@ -313,7 +327,7 @@ class BatchMember:
|
|
313
327
|
def operating_status(self, operating_status):
|
314
328
|
"""Sets the operating_status of this BatchMember.
|
315
329
|
|
316
|
-
|
330
|
+
后端服务器的健康状态。 取值: - ONLINE:后端服务器正常。 - NO_MONITOR:后端服务器所在的服务器组没有健康检查器。 - OFFLINE:后端服务器关联的ECS服务器不存在或已关机。
|
317
331
|
|
318
332
|
:param operating_status: The operating_status of this BatchMember.
|
319
333
|
:type operating_status: str
|
@@ -324,7 +338,7 @@ class BatchMember:
|
|
324
338
|
def status(self):
|
325
339
|
"""Gets the status of this BatchMember.
|
326
340
|
|
327
|
-
|
341
|
+
后端服务器监听器粒度的的健康状态。 若绑定的监听器在该字段中,则以该字段中监听器对应的operating_stauts为准。 若绑定的监听器不在该字段中,则以外层的operating_status为准。
|
328
342
|
|
329
343
|
:return: The status of this BatchMember.
|
330
344
|
:rtype: list[:class:`huaweicloudsdkelb.v3.MemberStatus`]
|
@@ -335,7 +349,7 @@ class BatchMember:
|
|
335
349
|
def status(self, status):
|
336
350
|
"""Sets the status of this BatchMember.
|
337
351
|
|
338
|
-
|
352
|
+
后端服务器监听器粒度的的健康状态。 若绑定的监听器在该字段中,则以该字段中监听器对应的operating_stauts为准。 若绑定的监听器不在该字段中,则以外层的operating_status为准。
|
339
353
|
|
340
354
|
:param status: The status of this BatchMember.
|
341
355
|
:type status: list[:class:`huaweicloudsdkelb.v3.MemberStatus`]
|
@@ -346,7 +360,7 @@ class BatchMember:
|
|
346
360
|
def member_type(self):
|
347
361
|
"""Gets the member_type of this BatchMember.
|
348
362
|
|
349
|
-
|
363
|
+
后端服务器的类型。 取值: - ip:跨VPC的member。 - instance:关联到ECS的member。
|
350
364
|
|
351
365
|
:return: The member_type of this BatchMember.
|
352
366
|
:rtype: str
|
@@ -357,7 +371,7 @@ class BatchMember:
|
|
357
371
|
def member_type(self, member_type):
|
358
372
|
"""Sets the member_type of this BatchMember.
|
359
373
|
|
360
|
-
|
374
|
+
后端服务器的类型。 取值: - ip:跨VPC的member。 - instance:关联到ECS的member。
|
361
375
|
|
362
376
|
:param member_type: The member_type of this BatchMember.
|
363
377
|
:type member_type: str
|
@@ -430,6 +444,50 @@ class BatchMember:
|
|
430
444
|
"""
|
431
445
|
self._ret_status = ret_status
|
432
446
|
|
447
|
+
@property
|
448
|
+
def created_at(self):
|
449
|
+
"""Gets the created_at of this BatchMember.
|
450
|
+
|
451
|
+
创建时间。格式:yyyy-MM-dd'T'HH:mm:ss'Z',UTC时区。 [注意:独享型实例的历史数据以及共享型实例下的资源,不返回该字段。 ](tag:hws,hws_hk,ocb,ctc,g42,tm,cmcc,hk_g42,hws_ocb,hk_vdf,fcs,dt,hk_tm)
|
452
|
+
|
453
|
+
:return: The created_at of this BatchMember.
|
454
|
+
:rtype: str
|
455
|
+
"""
|
456
|
+
return self._created_at
|
457
|
+
|
458
|
+
@created_at.setter
|
459
|
+
def created_at(self, created_at):
|
460
|
+
"""Sets the created_at of this BatchMember.
|
461
|
+
|
462
|
+
创建时间。格式:yyyy-MM-dd'T'HH:mm:ss'Z',UTC时区。 [注意:独享型实例的历史数据以及共享型实例下的资源,不返回该字段。 ](tag:hws,hws_hk,ocb,ctc,g42,tm,cmcc,hk_g42,hws_ocb,hk_vdf,fcs,dt,hk_tm)
|
463
|
+
|
464
|
+
:param created_at: The created_at of this BatchMember.
|
465
|
+
:type created_at: str
|
466
|
+
"""
|
467
|
+
self._created_at = created_at
|
468
|
+
|
469
|
+
@property
|
470
|
+
def updated_at(self):
|
471
|
+
"""Gets the updated_at of this BatchMember.
|
472
|
+
|
473
|
+
更新时间。格式:yyyy-MM-dd'T'HH:mm:ss'Z',UTC时区。 [注意:独享型实例的历史数据以及共享型实例下的资源,不返回该字段。 ](tag:hws,hws_hk,ocb,ctc,g42,tm,cmcc,hk_g42,hws_ocb,hk_vdf,fcs,dt,hk_tm)
|
474
|
+
|
475
|
+
:return: The updated_at of this BatchMember.
|
476
|
+
:rtype: str
|
477
|
+
"""
|
478
|
+
return self._updated_at
|
479
|
+
|
480
|
+
@updated_at.setter
|
481
|
+
def updated_at(self, updated_at):
|
482
|
+
"""Sets the updated_at of this BatchMember.
|
483
|
+
|
484
|
+
更新时间。格式:yyyy-MM-dd'T'HH:mm:ss'Z',UTC时区。 [注意:独享型实例的历史数据以及共享型实例下的资源,不返回该字段。 ](tag:hws,hws_hk,ocb,ctc,g42,tm,cmcc,hk_g42,hws_ocb,hk_vdf,fcs,dt,hk_tm)
|
485
|
+
|
486
|
+
:param updated_at: The updated_at of this BatchMember.
|
487
|
+
:type updated_at: str
|
488
|
+
"""
|
489
|
+
self._updated_at = updated_at
|
490
|
+
|
433
491
|
def to_dict(self):
|
434
492
|
"""Returns the model properties as a dict"""
|
435
493
|
result = {}
|