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
@@ -37,13 +37,13 @@ class CreateLoadBalancerPublicIpOption:
|
|
37
37
|
|
38
38
|
The model defined in huaweicloud sdk
|
39
39
|
|
40
|
-
:param ip_version: IP版本。
|
40
|
+
:param ip_version: 参数解释:IP版本。 约束限制:取值只有4和6。4:IPv4, 6: IPv6。 [不支持IPv6,请勿设置为6。](tag:dt,dt_test) 取值范围: - 4:表示IPv4。 - 6:表示IPv6。 默认取值:4
|
41
41
|
:type ip_version: int
|
42
|
-
:param network_type:
|
42
|
+
:param network_type: 参数解释:弹性公网IP的网络类型,默认5_bgp,更多请参考弹性公网ip创建。 [约束限制:华南-深圳局点该参数取值只能为5_gray。](tag:hws) [约束限制:只支持设置为5_gray。](tag:dt) 取值范围:5_bgp。 默认取值:5_bgp。
|
43
43
|
:type network_type: str
|
44
|
-
:param billing_info:
|
44
|
+
:param billing_info: 参数解释:计费订单信息。 约束限制: - 空:按需计费。 [ - 非空:包周期计费。格式:order_id:product_id:region_id:project_id ](tag:hws,hk,hws_eu,otc,tlf,ctc,hcso,sbc,g42,cmcc,hk_g42,dt_test,hcso_dt,mix,hk_sbc,hws_ocb,hk_vdf,fcs,fcs_dt,dt) [不支持该字段,请勿使用。](tag:hws_eu,g42,hk_g42,dt,dt_test,hcso_dt,hcso,hk_vdf,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
|
45
45
|
:type billing_info: str
|
46
|
-
:param description:
|
46
|
+
:param description: 参数解释:弹性公网IP的描述信息。
|
47
47
|
:type description: str
|
48
48
|
:param bandwidth:
|
49
49
|
:type bandwidth: :class:`huaweicloudsdkelb.v3.CreateLoadBalancerBandwidthOption`
|
@@ -71,7 +71,7 @@ class CreateLoadBalancerPublicIpOption:
|
|
71
71
|
def ip_version(self):
|
72
72
|
"""Gets the ip_version of this CreateLoadBalancerPublicIpOption.
|
73
73
|
|
74
|
-
IP版本。
|
74
|
+
参数解释:IP版本。 约束限制:取值只有4和6。4:IPv4, 6: IPv6。 [不支持IPv6,请勿设置为6。](tag:dt,dt_test) 取值范围: - 4:表示IPv4。 - 6:表示IPv6。 默认取值:4
|
75
75
|
|
76
76
|
:return: The ip_version of this CreateLoadBalancerPublicIpOption.
|
77
77
|
:rtype: int
|
@@ -82,7 +82,7 @@ class CreateLoadBalancerPublicIpOption:
|
|
82
82
|
def ip_version(self, ip_version):
|
83
83
|
"""Sets the ip_version of this CreateLoadBalancerPublicIpOption.
|
84
84
|
|
85
|
-
IP版本。
|
85
|
+
参数解释:IP版本。 约束限制:取值只有4和6。4:IPv4, 6: IPv6。 [不支持IPv6,请勿设置为6。](tag:dt,dt_test) 取值范围: - 4:表示IPv4。 - 6:表示IPv6。 默认取值:4
|
86
86
|
|
87
87
|
:param ip_version: The ip_version of this CreateLoadBalancerPublicIpOption.
|
88
88
|
:type ip_version: int
|
@@ -93,7 +93,7 @@ class CreateLoadBalancerPublicIpOption:
|
|
93
93
|
def network_type(self):
|
94
94
|
"""Gets the network_type of this CreateLoadBalancerPublicIpOption.
|
95
95
|
|
96
|
-
|
96
|
+
参数解释:弹性公网IP的网络类型,默认5_bgp,更多请参考弹性公网ip创建。 [约束限制:华南-深圳局点该参数取值只能为5_gray。](tag:hws) [约束限制:只支持设置为5_gray。](tag:dt) 取值范围:5_bgp。 默认取值:5_bgp。
|
97
97
|
|
98
98
|
:return: The network_type of this CreateLoadBalancerPublicIpOption.
|
99
99
|
:rtype: str
|
@@ -104,7 +104,7 @@ class CreateLoadBalancerPublicIpOption:
|
|
104
104
|
def network_type(self, network_type):
|
105
105
|
"""Sets the network_type of this CreateLoadBalancerPublicIpOption.
|
106
106
|
|
107
|
-
|
107
|
+
参数解释:弹性公网IP的网络类型,默认5_bgp,更多请参考弹性公网ip创建。 [约束限制:华南-深圳局点该参数取值只能为5_gray。](tag:hws) [约束限制:只支持设置为5_gray。](tag:dt) 取值范围:5_bgp。 默认取值:5_bgp。
|
108
108
|
|
109
109
|
:param network_type: The network_type of this CreateLoadBalancerPublicIpOption.
|
110
110
|
:type network_type: str
|
@@ -115,7 +115,7 @@ class CreateLoadBalancerPublicIpOption:
|
|
115
115
|
def billing_info(self):
|
116
116
|
"""Gets the billing_info of this CreateLoadBalancerPublicIpOption.
|
117
117
|
|
118
|
-
|
118
|
+
参数解释:计费订单信息。 约束限制: - 空:按需计费。 [ - 非空:包周期计费。格式:order_id:product_id:region_id:project_id ](tag:hws,hk,hws_eu,otc,tlf,ctc,hcso,sbc,g42,cmcc,hk_g42,dt_test,hcso_dt,mix,hk_sbc,hws_ocb,hk_vdf,fcs,fcs_dt,dt) [不支持该字段,请勿使用。](tag:hws_eu,g42,hk_g42,dt,dt_test,hcso_dt,hcso,hk_vdf,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
|
119
119
|
|
120
120
|
:return: The billing_info of this CreateLoadBalancerPublicIpOption.
|
121
121
|
:rtype: str
|
@@ -126,7 +126,7 @@ class CreateLoadBalancerPublicIpOption:
|
|
126
126
|
def billing_info(self, billing_info):
|
127
127
|
"""Sets the billing_info of this CreateLoadBalancerPublicIpOption.
|
128
128
|
|
129
|
-
|
129
|
+
参数解释:计费订单信息。 约束限制: - 空:按需计费。 [ - 非空:包周期计费。格式:order_id:product_id:region_id:project_id ](tag:hws,hk,hws_eu,otc,tlf,ctc,hcso,sbc,g42,cmcc,hk_g42,dt_test,hcso_dt,mix,hk_sbc,hws_ocb,hk_vdf,fcs,fcs_dt,dt) [不支持该字段,请勿使用。](tag:hws_eu,g42,hk_g42,dt,dt_test,hcso_dt,hcso,hk_vdf,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
|
130
130
|
|
131
131
|
:param billing_info: The billing_info of this CreateLoadBalancerPublicIpOption.
|
132
132
|
:type billing_info: str
|
@@ -137,7 +137,7 @@ class CreateLoadBalancerPublicIpOption:
|
|
137
137
|
def description(self):
|
138
138
|
"""Gets the description of this CreateLoadBalancerPublicIpOption.
|
139
139
|
|
140
|
-
|
140
|
+
参数解释:弹性公网IP的描述信息。
|
141
141
|
|
142
142
|
:return: The description of this CreateLoadBalancerPublicIpOption.
|
143
143
|
:rtype: str
|
@@ -148,7 +148,7 @@ class CreateLoadBalancerPublicIpOption:
|
|
148
148
|
def description(self, description):
|
149
149
|
"""Sets the description of this CreateLoadBalancerPublicIpOption.
|
150
150
|
|
151
|
-
|
151
|
+
参数解释:弹性公网IP的描述信息。
|
152
152
|
|
153
153
|
:param description: The description of this CreateLoadBalancerPublicIpOption.
|
154
154
|
:type description: str
|
@@ -38,11 +38,11 @@ class CreateLoadBalancerResponse(SdkResponse):
|
|
38
38
|
|
39
39
|
:param loadbalancer:
|
40
40
|
:type loadbalancer: :class:`huaweicloudsdkelb.v3.LoadBalancer`
|
41
|
-
:param loadbalancer_id:
|
41
|
+
: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) [不支持该字段,请勿使用](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)
|
42
42
|
:type loadbalancer_id: str
|
43
|
-
:param order_id:
|
43
|
+
: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) [不支持该字段,请勿使用](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 order_id: str
|
45
|
-
:param request_id:
|
45
|
+
:param request_id: 参数解释:请求ID。 注:自动生成 。
|
46
46
|
:type request_id: str
|
47
47
|
"""
|
48
48
|
|
@@ -85,7 +85,7 @@ class CreateLoadBalancerResponse(SdkResponse):
|
|
85
85
|
def loadbalancer_id(self):
|
86
86
|
"""Gets the loadbalancer_id of this CreateLoadBalancerResponse.
|
87
87
|
|
88
|
-
|
88
|
+
参数解释:负载均衡器的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) [不支持该字段,请勿使用](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)
|
89
89
|
|
90
90
|
:return: The loadbalancer_id of this CreateLoadBalancerResponse.
|
91
91
|
:rtype: str
|
@@ -96,7 +96,7 @@ class CreateLoadBalancerResponse(SdkResponse):
|
|
96
96
|
def loadbalancer_id(self, loadbalancer_id):
|
97
97
|
"""Sets the loadbalancer_id of this CreateLoadBalancerResponse.
|
98
98
|
|
99
|
-
|
99
|
+
参数解释:负载均衡器的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) [不支持该字段,请勿使用](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)
|
100
100
|
|
101
101
|
:param loadbalancer_id: The loadbalancer_id of this CreateLoadBalancerResponse.
|
102
102
|
:type loadbalancer_id: str
|
@@ -107,7 +107,7 @@ class CreateLoadBalancerResponse(SdkResponse):
|
|
107
107
|
def order_id(self):
|
108
108
|
"""Gets the order_id of this CreateLoadBalancerResponse.
|
109
109
|
|
110
|
-
|
110
|
+
参数解释:订单号[(包周期场景返回该字段)](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) [不支持该字段,请勿使用](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 order_id of this CreateLoadBalancerResponse.
|
113
113
|
:rtype: str
|
@@ -118,7 +118,7 @@ class CreateLoadBalancerResponse(SdkResponse):
|
|
118
118
|
def order_id(self, order_id):
|
119
119
|
"""Sets the order_id of this CreateLoadBalancerResponse.
|
120
120
|
|
121
|
-
|
121
|
+
参数解释:订单号[(包周期场景返回该字段)](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) [不支持该字段,请勿使用](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 order_id: The order_id of this CreateLoadBalancerResponse.
|
124
124
|
:type order_id: str
|
@@ -129,7 +129,7 @@ class CreateLoadBalancerResponse(SdkResponse):
|
|
129
129
|
def request_id(self):
|
130
130
|
"""Gets the request_id of this CreateLoadBalancerResponse.
|
131
131
|
|
132
|
-
|
132
|
+
参数解释:请求ID。 注:自动生成 。
|
133
133
|
|
134
134
|
:return: The request_id of this CreateLoadBalancerResponse.
|
135
135
|
:rtype: str
|
@@ -140,7 +140,7 @@ class CreateLoadBalancerResponse(SdkResponse):
|
|
140
140
|
def request_id(self, request_id):
|
141
141
|
"""Sets the request_id of this CreateLoadBalancerResponse.
|
142
142
|
|
143
|
-
|
143
|
+
参数解释:请求ID。 注:自动生成 。
|
144
144
|
|
145
145
|
:param request_id: The request_id of this CreateLoadBalancerResponse.
|
146
146
|
:type request_id: str
|
@@ -31,9 +31,9 @@ class CreateLoadbalancerAutoscalingOption:
|
|
31
31
|
|
32
32
|
The model defined in huaweicloud sdk
|
33
33
|
|
34
|
-
:param enable:
|
34
|
+
:param enable: 参数解释:负载均衡器实例弹性扩缩容开关。 [网关型LB不支持该字段。](tag:hws_eu) 取值范围: - true:开启。 - false:关闭。
|
35
35
|
:type enable: bool
|
36
|
-
:param min_l7_flavor_id:
|
36
|
+
:param min_l7_flavor_id: 参数解释:实例弹性扩缩容的最小七层规格ID。 约束限制: 该字段已经废弃,建议不要使用该字段。
|
37
37
|
:type min_l7_flavor_id: str
|
38
38
|
"""
|
39
39
|
|
@@ -51,7 +51,7 @@ class CreateLoadbalancerAutoscalingOption:
|
|
51
51
|
def enable(self):
|
52
52
|
"""Gets the enable of this CreateLoadbalancerAutoscalingOption.
|
53
53
|
|
54
|
-
|
54
|
+
参数解释:负载均衡器实例弹性扩缩容开关。 [网关型LB不支持该字段。](tag:hws_eu) 取值范围: - true:开启。 - false:关闭。
|
55
55
|
|
56
56
|
:return: The enable of this CreateLoadbalancerAutoscalingOption.
|
57
57
|
:rtype: bool
|
@@ -62,7 +62,7 @@ class CreateLoadbalancerAutoscalingOption:
|
|
62
62
|
def enable(self, enable):
|
63
63
|
"""Sets the enable of this CreateLoadbalancerAutoscalingOption.
|
64
64
|
|
65
|
-
|
65
|
+
参数解释:负载均衡器实例弹性扩缩容开关。 [网关型LB不支持该字段。](tag:hws_eu) 取值范围: - true:开启。 - false:关闭。
|
66
66
|
|
67
67
|
:param enable: The enable of this CreateLoadbalancerAutoscalingOption.
|
68
68
|
:type enable: bool
|
@@ -73,7 +73,7 @@ class CreateLoadbalancerAutoscalingOption:
|
|
73
73
|
def min_l7_flavor_id(self):
|
74
74
|
"""Gets the min_l7_flavor_id of this CreateLoadbalancerAutoscalingOption.
|
75
75
|
|
76
|
-
|
76
|
+
参数解释:实例弹性扩缩容的最小七层规格ID。 约束限制: 该字段已经废弃,建议不要使用该字段。
|
77
77
|
|
78
78
|
:return: The min_l7_flavor_id of this CreateLoadbalancerAutoscalingOption.
|
79
79
|
:rtype: str
|
@@ -84,7 +84,7 @@ class CreateLoadbalancerAutoscalingOption:
|
|
84
84
|
def min_l7_flavor_id(self, min_l7_flavor_id):
|
85
85
|
"""Sets the min_l7_flavor_id of this CreateLoadbalancerAutoscalingOption.
|
86
86
|
|
87
|
-
|
87
|
+
参数解释:实例弹性扩缩容的最小七层规格ID。 约束限制: 该字段已经废弃,建议不要使用该字段。
|
88
88
|
|
89
89
|
:param min_l7_flavor_id: The min_l7_flavor_id of this CreateLoadbalancerAutoscalingOption.
|
90
90
|
:type min_l7_flavor_id: str
|
@@ -53,15 +53,15 @@ class CreateMasterSlaveHealthMonitorOption:
|
|
53
53
|
:type delay: int
|
54
54
|
:param domain_name: 发送健康检查请求的域名。 取值:以数字或字母开头,只能包含数字、字母、’-’、’.’。 默认为空,表示使用负载均衡器的vip作为http请求的目的地址。 使用说明:当type为HTTP/HTTPS时生效。
|
55
55
|
:type domain_name: str
|
56
|
-
:param expected_codes: 期望响应状态码。 取值: - 单值:单个返回码,例如200。 - 列表:多个特定返回码,例如200,202。 - 区间:一个返回码区间,例如200-204。 默认值:200。 仅支持HTTP/HTTPS设置该字段,其他协议设置不会生效。
|
56
|
+
:param expected_codes: 期望响应状态码。 取值: - 单值:单个返回码,例如200。 - 列表:多个特定返回码,例如200,202。 - 区间:一个返回码区间,例如200-204。 默认值:200。 仅支持HTTP/HTTPS/GRPC设置该字段,其他协议设置不会生效。
|
57
57
|
:type expected_codes: str
|
58
|
-
:param http_method: HTTP请求方法。 取值:GET、HEAD、POST
|
58
|
+
:param http_method: HTTP请求方法。 取值:GET、HEAD、POST,默认GET。 使用说明:当type为HTTP/HTTPS时生效。
|
59
59
|
:type http_method: str
|
60
60
|
:param max_retries: 健康检查连续成功多少次后,将后端服务器的健康检查状态由OFFLINE判定为ONLINE。取值范围:1-10。
|
61
61
|
:type max_retries: int
|
62
62
|
:param max_retries_down: 健康检查连续失败多少次后,将后端服务器的健康检查状态由ONLINE判定为OFFLINE。取值范围:1-10,默认3。
|
63
63
|
:type max_retries_down: int
|
64
|
-
:param monitor_port: 健康检查端口号。取值:1-65535
|
64
|
+
:param monitor_port: 健康检查端口号。取值:1-65535,默认为空,表示使用后端服务器端口号。
|
65
65
|
:type monitor_port: int
|
66
66
|
:param name: 健康检查名称。
|
67
67
|
:type name: str
|
@@ -155,7 +155,7 @@ class CreateMasterSlaveHealthMonitorOption:
|
|
155
155
|
def expected_codes(self):
|
156
156
|
"""Gets the expected_codes of this CreateMasterSlaveHealthMonitorOption.
|
157
157
|
|
158
|
-
期望响应状态码。 取值: - 单值:单个返回码,例如200。 - 列表:多个特定返回码,例如200,202。 - 区间:一个返回码区间,例如200-204。 默认值:200。 仅支持HTTP/HTTPS设置该字段,其他协议设置不会生效。
|
158
|
+
期望响应状态码。 取值: - 单值:单个返回码,例如200。 - 列表:多个特定返回码,例如200,202。 - 区间:一个返回码区间,例如200-204。 默认值:200。 仅支持HTTP/HTTPS/GRPC设置该字段,其他协议设置不会生效。
|
159
159
|
|
160
160
|
:return: The expected_codes of this CreateMasterSlaveHealthMonitorOption.
|
161
161
|
:rtype: str
|
@@ -166,7 +166,7 @@ class CreateMasterSlaveHealthMonitorOption:
|
|
166
166
|
def expected_codes(self, expected_codes):
|
167
167
|
"""Sets the expected_codes of this CreateMasterSlaveHealthMonitorOption.
|
168
168
|
|
169
|
-
期望响应状态码。 取值: - 单值:单个返回码,例如200。 - 列表:多个特定返回码,例如200,202。 - 区间:一个返回码区间,例如200-204。 默认值:200。 仅支持HTTP/HTTPS设置该字段,其他协议设置不会生效。
|
169
|
+
期望响应状态码。 取值: - 单值:单个返回码,例如200。 - 列表:多个特定返回码,例如200,202。 - 区间:一个返回码区间,例如200-204。 默认值:200。 仅支持HTTP/HTTPS/GRPC设置该字段,其他协议设置不会生效。
|
170
170
|
|
171
171
|
:param expected_codes: The expected_codes of this CreateMasterSlaveHealthMonitorOption.
|
172
172
|
:type expected_codes: str
|
@@ -177,7 +177,7 @@ class CreateMasterSlaveHealthMonitorOption:
|
|
177
177
|
def http_method(self):
|
178
178
|
"""Gets the http_method of this CreateMasterSlaveHealthMonitorOption.
|
179
179
|
|
180
|
-
HTTP请求方法。 取值:GET、HEAD、POST
|
180
|
+
HTTP请求方法。 取值:GET、HEAD、POST,默认GET。 使用说明:当type为HTTP/HTTPS时生效。
|
181
181
|
|
182
182
|
:return: The http_method of this CreateMasterSlaveHealthMonitorOption.
|
183
183
|
:rtype: str
|
@@ -188,7 +188,7 @@ class CreateMasterSlaveHealthMonitorOption:
|
|
188
188
|
def http_method(self, http_method):
|
189
189
|
"""Sets the http_method of this CreateMasterSlaveHealthMonitorOption.
|
190
190
|
|
191
|
-
HTTP请求方法。 取值:GET、HEAD、POST
|
191
|
+
HTTP请求方法。 取值:GET、HEAD、POST,默认GET。 使用说明:当type为HTTP/HTTPS时生效。
|
192
192
|
|
193
193
|
:param http_method: The http_method of this CreateMasterSlaveHealthMonitorOption.
|
194
194
|
:type http_method: str
|
@@ -243,7 +243,7 @@ class CreateMasterSlaveHealthMonitorOption:
|
|
243
243
|
def monitor_port(self):
|
244
244
|
"""Gets the monitor_port of this CreateMasterSlaveHealthMonitorOption.
|
245
245
|
|
246
|
-
健康检查端口号。取值:1-65535
|
246
|
+
健康检查端口号。取值:1-65535,默认为空,表示使用后端服务器端口号。
|
247
247
|
|
248
248
|
:return: The monitor_port of this CreateMasterSlaveHealthMonitorOption.
|
249
249
|
:rtype: int
|
@@ -254,7 +254,7 @@ class CreateMasterSlaveHealthMonitorOption:
|
|
254
254
|
def monitor_port(self, monitor_port):
|
255
255
|
"""Sets the monitor_port of this CreateMasterSlaveHealthMonitorOption.
|
256
256
|
|
257
|
-
健康检查端口号。取值:1-65535
|
257
|
+
健康检查端口号。取值:1-65535,默认为空,表示使用后端服务器端口号。
|
258
258
|
|
259
259
|
:param monitor_port: The monitor_port of this CreateMasterSlaveHealthMonitorOption.
|
260
260
|
:type monitor_port: int
|
@@ -39,15 +39,15 @@ class CreateMasterSlaveMemberOption:
|
|
39
39
|
|
40
40
|
The model defined in huaweicloud sdk
|
41
41
|
|
42
|
-
:param address: 后端服务器对应的IP地址。 使用说明: - 若subnet_cidr_id为空,表示添加跨VPC后端,此时address必须为IPv4地址。 - 若subnet_cidr_id不为空,表示是一个关联到ECS的后端服务器。 该IP
|
42
|
+
: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)
|
43
43
|
:type address: str
|
44
|
-
:param admin_state_up:
|
44
|
+
:param admin_state_up: 后端服务器的管理状态。 取值:true。 虽然创建、更新请求支持该字段,但实际取值决定于后端服务器对应的弹性云服务器是否存在。若存在,该值为true,否则,该值为false。
|
45
45
|
:type admin_state_up: bool
|
46
|
-
:param name:
|
46
|
+
:param name: 后端服务器名称。
|
47
47
|
:type name: str
|
48
48
|
:param protocol_port: 后端服务器业务端口。 >在开启端口透传的pool下创建member传该字段不生效,可不传该字段。
|
49
49
|
:type protocol_port: int
|
50
|
-
:param subnet_cidr_id:
|
50
|
+
:param subnet_cidr_id: 后端服务器所在的子网ID,可以是子网的IPv4子网ID或IPv6子网ID。 使用说明: - 该子网和关联的负载均衡器的子网必须在同一VPC下。 - 若所属LB的跨VPC后端转发特性已开启,则该字段可以不传,表示添加跨VPC的后端服务器。此时address必须为IPv4地址,所在的pool的协议必须为UDP/TCP/TLS/HTTP/HTTPS/QUIC/GRPC。 [不支持IPv6,请勿设置为IPv6子网ID。](tag:dt,dt_test)
|
51
51
|
:type subnet_cidr_id: str
|
52
52
|
:param role: 后端服务器的主备状态。 取值范围: - master:主后端服务器。 - slave:备后端服务器。
|
53
53
|
:type role: str
|
@@ -77,7 +77,7 @@ class CreateMasterSlaveMemberOption:
|
|
77
77
|
def address(self):
|
78
78
|
"""Gets the address of this CreateMasterSlaveMemberOption.
|
79
79
|
|
80
|
-
后端服务器对应的IP地址。 使用说明: - 若subnet_cidr_id为空,表示添加跨VPC后端,此时address必须为IPv4地址。 - 若subnet_cidr_id不为空,表示是一个关联到ECS的后端服务器。 该IP
|
80
|
+
后端服务器对应的IP地址。 使用说明: - 若subnet_cidr_id为空,表示添加跨VPC后端,此时address必须为IPv4地址。 - 若subnet_cidr_id不为空,表示是一个关联到ECS的后端服务器。 该IP地址可以是私网IPv4或IPv6。但必须在subnet_cidr_id对应的子网网段中。 [不支持IPv6,请勿设置为IPv6地址。](tag:dt,dt_test)
|
81
81
|
|
82
82
|
:return: The address of this CreateMasterSlaveMemberOption.
|
83
83
|
:rtype: str
|
@@ -88,7 +88,7 @@ class CreateMasterSlaveMemberOption:
|
|
88
88
|
def address(self, address):
|
89
89
|
"""Sets the address of this CreateMasterSlaveMemberOption.
|
90
90
|
|
91
|
-
后端服务器对应的IP地址。 使用说明: - 若subnet_cidr_id为空,表示添加跨VPC后端,此时address必须为IPv4地址。 - 若subnet_cidr_id不为空,表示是一个关联到ECS的后端服务器。 该IP
|
91
|
+
后端服务器对应的IP地址。 使用说明: - 若subnet_cidr_id为空,表示添加跨VPC后端,此时address必须为IPv4地址。 - 若subnet_cidr_id不为空,表示是一个关联到ECS的后端服务器。 该IP地址可以是私网IPv4或IPv6。但必须在subnet_cidr_id对应的子网网段中。 [不支持IPv6,请勿设置为IPv6地址。](tag:dt,dt_test)
|
92
92
|
|
93
93
|
:param address: The address of this CreateMasterSlaveMemberOption.
|
94
94
|
:type address: str
|
@@ -99,7 +99,7 @@ class CreateMasterSlaveMemberOption:
|
|
99
99
|
def admin_state_up(self):
|
100
100
|
"""Gets the admin_state_up of this CreateMasterSlaveMemberOption.
|
101
101
|
|
102
|
-
|
102
|
+
后端服务器的管理状态。 取值:true。 虽然创建、更新请求支持该字段,但实际取值决定于后端服务器对应的弹性云服务器是否存在。若存在,该值为true,否则,该值为false。
|
103
103
|
|
104
104
|
:return: The admin_state_up of this CreateMasterSlaveMemberOption.
|
105
105
|
:rtype: bool
|
@@ -110,7 +110,7 @@ class CreateMasterSlaveMemberOption:
|
|
110
110
|
def admin_state_up(self, admin_state_up):
|
111
111
|
"""Sets the admin_state_up of this CreateMasterSlaveMemberOption.
|
112
112
|
|
113
|
-
|
113
|
+
后端服务器的管理状态。 取值:true。 虽然创建、更新请求支持该字段,但实际取值决定于后端服务器对应的弹性云服务器是否存在。若存在,该值为true,否则,该值为false。
|
114
114
|
|
115
115
|
:param admin_state_up: The admin_state_up of this CreateMasterSlaveMemberOption.
|
116
116
|
:type admin_state_up: bool
|
@@ -121,7 +121,7 @@ class CreateMasterSlaveMemberOption:
|
|
121
121
|
def name(self):
|
122
122
|
"""Gets the name of this CreateMasterSlaveMemberOption.
|
123
123
|
|
124
|
-
|
124
|
+
后端服务器名称。
|
125
125
|
|
126
126
|
:return: The name of this CreateMasterSlaveMemberOption.
|
127
127
|
:rtype: str
|
@@ -132,7 +132,7 @@ class CreateMasterSlaveMemberOption:
|
|
132
132
|
def name(self, name):
|
133
133
|
"""Sets the name of this CreateMasterSlaveMemberOption.
|
134
134
|
|
135
|
-
|
135
|
+
后端服务器名称。
|
136
136
|
|
137
137
|
:param name: The name of this CreateMasterSlaveMemberOption.
|
138
138
|
:type name: str
|
@@ -165,7 +165,7 @@ class CreateMasterSlaveMemberOption:
|
|
165
165
|
def subnet_cidr_id(self):
|
166
166
|
"""Gets the subnet_cidr_id of this CreateMasterSlaveMemberOption.
|
167
167
|
|
168
|
-
|
168
|
+
后端服务器所在的子网ID,可以是子网的IPv4子网ID或IPv6子网ID。 使用说明: - 该子网和关联的负载均衡器的子网必须在同一VPC下。 - 若所属LB的跨VPC后端转发特性已开启,则该字段可以不传,表示添加跨VPC的后端服务器。此时address必须为IPv4地址,所在的pool的协议必须为UDP/TCP/TLS/HTTP/HTTPS/QUIC/GRPC。 [不支持IPv6,请勿设置为IPv6子网ID。](tag:dt,dt_test)
|
169
169
|
|
170
170
|
:return: The subnet_cidr_id of this CreateMasterSlaveMemberOption.
|
171
171
|
:rtype: str
|
@@ -176,7 +176,7 @@ class CreateMasterSlaveMemberOption:
|
|
176
176
|
def subnet_cidr_id(self, subnet_cidr_id):
|
177
177
|
"""Sets the subnet_cidr_id of this CreateMasterSlaveMemberOption.
|
178
178
|
|
179
|
-
|
179
|
+
后端服务器所在的子网ID,可以是子网的IPv4子网ID或IPv6子网ID。 使用说明: - 该子网和关联的负载均衡器的子网必须在同一VPC下。 - 若所属LB的跨VPC后端转发特性已开启,则该字段可以不传,表示添加跨VPC的后端服务器。此时address必须为IPv4地址,所在的pool的协议必须为UDP/TCP/TLS/HTTP/HTTPS/QUIC/GRPC。 [不支持IPv6,请勿设置为IPv6子网ID。](tag:dt,dt_test)
|
180
180
|
|
181
181
|
:param subnet_cidr_id: The subnet_cidr_id of this CreateMasterSlaveMemberOption.
|
182
182
|
:type subnet_cidr_id: str
|