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
@@ -101,7 +101,7 @@ class ListLoadBalancersRequest:
|
|
101
101
|
|
102
102
|
:param marker: 上一页最后一条记录的ID。 使用说明: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
|
103
103
|
:type marker: str
|
104
|
-
:param limit:
|
104
|
+
:param limit: 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
|
105
105
|
:type limit: int
|
106
106
|
:param page_reverse: 是否反向查询。 取值: - true:查询上一页。 - false:查询下一页,默认。 使用说明: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。
|
107
107
|
:type page_reverse: bool
|
@@ -111,7 +111,7 @@ class ListLoadBalancersRequest:
|
|
111
111
|
:type name: list[str]
|
112
112
|
:param description: 负载均衡器的描述信息。 支持多值查询,查询条件格式:*description=xxx&description=xxx*。
|
113
113
|
:type description: list[str]
|
114
|
-
:param admin_state_up:
|
114
|
+
:param admin_state_up: 参数解释:负载均衡器的启用状态。 取值范围: - true :启用。 - false:停用。 [不支持该字段,请勿使用。](tag:dt,dt_test)
|
115
115
|
:type admin_state_up: bool
|
116
116
|
:param provisioning_status: 负载均衡器的配置状态。 取值: - ACTIVE:使用中。 - PENDING_DELETE:删除中。 支持多值查询,查询条件格式:*provisioning_status=xxx&provisioning_status=xxx*。
|
117
117
|
:type provisioning_status: list[str]
|
@@ -125,39 +125,39 @@ class ListLoadBalancersRequest:
|
|
125
125
|
:type vip_port_id: list[str]
|
126
126
|
:param vip_address: 负载均衡器的IPv4虚拟IP地址。 支持多值查询,查询条件格式:*vip_address=xxx&vip_address=xxx*。
|
127
127
|
:type vip_address: list[str]
|
128
|
-
:param vip_subnet_cidr_id: 负载均衡器所在子网的IPv4子网ID
|
128
|
+
:param vip_subnet_cidr_id: 负载均衡器所在子网的IPv4子网ID,也称为该负载均衡器实例的前端子网。 支持多值查询,查询条件格式:*vip_subnet_cidr_id=xxx&vip_subnet_cidr_id=xxx*。
|
129
129
|
:type vip_subnet_cidr_id: list[str]
|
130
130
|
:param ipv6_vip_port_id: 双栈类型负载均衡器的IPv6对应的port ID。 支持多值查询,查询条件格式:*ipv6_vip_port_id=xxx&ipv6_vip_port_id=xxx*。 [不支持IPv6,请勿使用。](tag:dt,dt_test)
|
131
131
|
:type ipv6_vip_port_id: list[str]
|
132
132
|
:param ipv6_vip_address: 双栈类型负载均衡器的IPv6地址。 支持多值查询,查询条件格式:*ipv6_vip_address=xxx&ipv6_vip_address=xxx*。 [不支持IPv6,请勿使用。](tag:dt,dt_test)
|
133
133
|
:type ipv6_vip_address: list[str]
|
134
|
-
:param ipv6_vip_virsubnet_id: 双栈类型负载均衡器所在的子网IPv6网络ID
|
134
|
+
:param ipv6_vip_virsubnet_id: 双栈类型负载均衡器所在的子网IPv6网络ID,也称为该负载均衡器实例的前端子网。 支持多值查询,查询条件格式:*ipv6_vip_virsubnet_id=xxx&ipv6_vip_virsubnet_id=xxx*。 [不支持IPv6,请勿使用。](tag:dt,dt_test)
|
135
135
|
:type ipv6_vip_virsubnet_id: list[str]
|
136
|
-
:param eips: 负载均衡器绑定的EIP
|
136
|
+
:param eips: 负载均衡器绑定的EIP。例如要查询绑定以下EIP的LB: \"eips\": [ { \"eip_id\": \"e9b72a9d-4275-455e-a724-853504e4d9c6\", \"eip_address\": \"88.88.14.122\", \"ip_version\": 4 } ] 可以通如下查询: eips=ip_version%3D4&eips=eip_address%3D88.88.14.122&eips=eip_id%3De9b72a9d-4275-455e-a724-853504e4d9c6 支持多值查询,查询条件格式: - eip_id作为查询条件:*eips=eip_id=xxx&eips=eip_id=xxx*。 - eip_address作为查询条件:*eips=eip_address=xxx&eips=eip_address=xxx*。 - ip_version作为查询条件:*eips=ip_version=xxx&eips=ip_version=xxx*。 注:该字段与publicips字段一致。
|
137
137
|
:type eips: list[str]
|
138
|
-
:param publicips: 负载均衡器绑定的公网IP
|
138
|
+
:param publicips: 负载均衡器绑定的公网IP。例如要查询绑定以下公网IP的LB: \"publicips=\": [ { \"public_id\": \"e9b72a9d-4275-455e-a724-853504e4d9c6\", \"public_address\": \"88.88.14.122\", \"ip_version\": 4 } ] 可以通如下查询: publicips=ip_version%3D4&publicips=public_address%3D88.88.14.122&publicips=public_id%3De9b72a9d-4275-455e-a724-853504e4d9c6 支持多值查询,查询条件格式: - publicip_id作为查询条件: *publicips=publicip_id=xxx&publicips=publicip_id=xxx* - publicip_address作为查询条件: *publicips=publicip_address=xxx&publicips=publicip_address=xxx* - ip_version作为查询条件: *publicips=ip_version=xxx&publicips=ip_version=xxx* 注:该字段与eips字段一致。
|
139
139
|
:type publicips: list[str]
|
140
140
|
:param availability_zone_list: 负载均衡器所在可用区列表。 支持多值查询,查询条件格式: *availability_zone_list=xxx&availability_zone_list=xxx*。
|
141
141
|
:type availability_zone_list: list[str]
|
142
|
-
:param l4_flavor_id: 网络型规格ID。 支持多值查询,查询条件格式:*l4_flavor_id=xxx&l4_flavor_id=xxx*。 [不支持该字段,请勿使用。](tag:hcso,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
|
142
|
+
:param l4_flavor_id: 网络型规格ID。 支持多值查询,查询条件格式:*l4_flavor_id=xxx&l4_flavor_id=xxx*。 [不支持该字段,请勿使用。](tag:hcso,hk_vdf,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
|
143
143
|
:type l4_flavor_id: list[str]
|
144
144
|
:param l4_scale_flavor_id: 四层弹性Flavor ID。 支持多值查询,查询条件格式:*l4_scale_flavor_id=xxx&l4_scale_flavor_id=xxx*。 不支持该字段,请勿使用。
|
145
145
|
:type l4_scale_flavor_id: list[str]
|
146
|
-
:param l7_flavor_id: 应用型规格ID。 支持多值查询,查询条件格式:*l7_flavor_id=xxx&l7_flavor_id=xxx*。 [不支持该字段,请勿使用。](tag:hcso,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
|
146
|
+
:param l7_flavor_id: 应用型规格ID。 支持多值查询,查询条件格式:*l7_flavor_id=xxx&l7_flavor_id=xxx*。 [不支持该字段,请勿使用。](tag:hcso,hk_vdf,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
|
147
147
|
:type l7_flavor_id: list[str]
|
148
148
|
:param l7_scale_flavor_id: 七层弹性Flavor ID。 支持多值查询,查询条件格式:*l7_scale_flavor_id=xxx&l7_scale_flavor_id=xxx*。 不支持该字段,请勿使用。
|
149
149
|
:type l7_scale_flavor_id: list[str]
|
150
|
-
:param billing_info: 资源账单信息。 支持多值查询,查询条件格式:*billing_info=xxx&billing_info=xxx*。 [不支持该字段,请勿使用。](tag:hws_hk,hws_eu,hws_test,hcs,hcs_sm,hcso,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b,hcso_dt,dt,dt_test,ocb,ctc,cmcc,tm,sbc,g42,hws_ocb,hk_sbc,hk_tm,hk_g42)
|
150
|
+
:param billing_info: 资源账单信息。 支持多值查询,查询条件格式:*billing_info=xxx&billing_info=xxx*。 [不支持该字段,请勿使用。](tag:hws_hk,hws_eu,hws_test,hcs,hcs_sm,hcso,hk_vdf,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b,hcso_dt,dt,dt_test,ocb,ctc,cmcc,tm,sbc,g42,hws_ocb,hk_sbc,hk_tm,hk_g42)
|
151
151
|
:type billing_info: list[str]
|
152
|
-
:param member_device_id:
|
152
|
+
:param member_device_id: 负载均衡器中的后端服务器对应的弹性云服务器的ID。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_device_id=xxx&member_device_id=xxx*。
|
153
153
|
:type member_device_id: list[str]
|
154
|
-
:param member_address:
|
154
|
+
:param member_address: 负载均衡器中的后端服务器对应的弹性云服务器的IP地址。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_address=xxx&member_address=xxx*。
|
155
155
|
:type member_address: list[str]
|
156
156
|
:param enterprise_project_id: 负载均衡器所属的企业项目ID。 查询时若不传,则查询default企业项目下的资源,鉴权按照default企业项目鉴权。 如果传值,则必须传已存在的企业项目ID(不可为\"0\")或传all_granted_eps表示查询所有企业项目。 支持多值查询,查询条件格式: *enterprise_project_id=xxx&enterprise_project_id=xxx*。 [不支持该字段,请勿使用。](tag:dt,dt_test,hcso_dt)
|
157
157
|
:type enterprise_project_id: list[str]
|
158
158
|
:param ip_version: IP版本信息。 取值:4代表IPv4,6代表IPv6。 支持多值查询,查询条件格式:*ip_version=xxx&ip_version=xxx*。 [不支持IPv6,请勿设置为6。](tag:dt,dt_test)
|
159
159
|
:type ip_version: list[int]
|
160
|
-
:param deletion_protection_enable: 是否开启删除保护,false不开启,true开启。[不支持该字段,请勿使用。](tag:hws_eu,g42,hk_g42) [荷兰region不支持该字段,请勿使用。](tag:dt)
|
160
|
+
:param deletion_protection_enable: 是否开启删除保护,false不开启,true开启。[不支持该字段,请勿使用。](tag:hws_eu,g42,hk_g42) [荷兰region不支持该字段,请勿使用。](tag:dt,dt_test)
|
161
161
|
:type deletion_protection_enable: bool
|
162
162
|
:param elb_virsubnet_type: 下联面子网类型。 取值: - ipv4:ipv4。 - dualstack:双栈。 支持多值查询,查询条件格式: *elb_virsubnet_type=ipv4&elb_virsubnet_type=dualstack*。
|
163
163
|
:type elb_virsubnet_type: list[str]
|
@@ -312,7 +312,7 @@ class ListLoadBalancersRequest:
|
|
312
312
|
def limit(self):
|
313
313
|
"""Gets the limit of this ListLoadBalancersRequest.
|
314
314
|
|
315
|
-
|
315
|
+
参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
|
316
316
|
|
317
317
|
:return: The limit of this ListLoadBalancersRequest.
|
318
318
|
:rtype: int
|
@@ -323,7 +323,7 @@ class ListLoadBalancersRequest:
|
|
323
323
|
def limit(self, limit):
|
324
324
|
"""Sets the limit of this ListLoadBalancersRequest.
|
325
325
|
|
326
|
-
|
326
|
+
参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
|
327
327
|
|
328
328
|
:param limit: The limit of this ListLoadBalancersRequest.
|
329
329
|
:type limit: int
|
@@ -422,7 +422,7 @@ class ListLoadBalancersRequest:
|
|
422
422
|
def admin_state_up(self):
|
423
423
|
"""Gets the admin_state_up of this ListLoadBalancersRequest.
|
424
424
|
|
425
|
-
|
425
|
+
参数解释:负载均衡器的启用状态。 取值范围: - true :启用。 - false:停用。 [不支持该字段,请勿使用。](tag:dt,dt_test)
|
426
426
|
|
427
427
|
:return: The admin_state_up of this ListLoadBalancersRequest.
|
428
428
|
:rtype: bool
|
@@ -433,7 +433,7 @@ class ListLoadBalancersRequest:
|
|
433
433
|
def admin_state_up(self, admin_state_up):
|
434
434
|
"""Sets the admin_state_up of this ListLoadBalancersRequest.
|
435
435
|
|
436
|
-
|
436
|
+
参数解释:负载均衡器的启用状态。 取值范围: - true :启用。 - false:停用。 [不支持该字段,请勿使用。](tag:dt,dt_test)
|
437
437
|
|
438
438
|
:param admin_state_up: The admin_state_up of this ListLoadBalancersRequest.
|
439
439
|
:type admin_state_up: bool
|
@@ -576,7 +576,7 @@ class ListLoadBalancersRequest:
|
|
576
576
|
def vip_subnet_cidr_id(self):
|
577
577
|
"""Gets the vip_subnet_cidr_id of this ListLoadBalancersRequest.
|
578
578
|
|
579
|
-
负载均衡器所在子网的IPv4子网ID
|
579
|
+
负载均衡器所在子网的IPv4子网ID,也称为该负载均衡器实例的前端子网。 支持多值查询,查询条件格式:*vip_subnet_cidr_id=xxx&vip_subnet_cidr_id=xxx*。
|
580
580
|
|
581
581
|
:return: The vip_subnet_cidr_id of this ListLoadBalancersRequest.
|
582
582
|
:rtype: list[str]
|
@@ -587,7 +587,7 @@ class ListLoadBalancersRequest:
|
|
587
587
|
def vip_subnet_cidr_id(self, vip_subnet_cidr_id):
|
588
588
|
"""Sets the vip_subnet_cidr_id of this ListLoadBalancersRequest.
|
589
589
|
|
590
|
-
负载均衡器所在子网的IPv4子网ID
|
590
|
+
负载均衡器所在子网的IPv4子网ID,也称为该负载均衡器实例的前端子网。 支持多值查询,查询条件格式:*vip_subnet_cidr_id=xxx&vip_subnet_cidr_id=xxx*。
|
591
591
|
|
592
592
|
:param vip_subnet_cidr_id: The vip_subnet_cidr_id of this ListLoadBalancersRequest.
|
593
593
|
:type vip_subnet_cidr_id: list[str]
|
@@ -642,7 +642,7 @@ class ListLoadBalancersRequest:
|
|
642
642
|
def ipv6_vip_virsubnet_id(self):
|
643
643
|
"""Gets the ipv6_vip_virsubnet_id of this ListLoadBalancersRequest.
|
644
644
|
|
645
|
-
双栈类型负载均衡器所在的子网IPv6网络ID
|
645
|
+
双栈类型负载均衡器所在的子网IPv6网络ID,也称为该负载均衡器实例的前端子网。 支持多值查询,查询条件格式:*ipv6_vip_virsubnet_id=xxx&ipv6_vip_virsubnet_id=xxx*。 [不支持IPv6,请勿使用。](tag:dt,dt_test)
|
646
646
|
|
647
647
|
:return: The ipv6_vip_virsubnet_id of this ListLoadBalancersRequest.
|
648
648
|
:rtype: list[str]
|
@@ -653,7 +653,7 @@ class ListLoadBalancersRequest:
|
|
653
653
|
def ipv6_vip_virsubnet_id(self, ipv6_vip_virsubnet_id):
|
654
654
|
"""Sets the ipv6_vip_virsubnet_id of this ListLoadBalancersRequest.
|
655
655
|
|
656
|
-
双栈类型负载均衡器所在的子网IPv6网络ID
|
656
|
+
双栈类型负载均衡器所在的子网IPv6网络ID,也称为该负载均衡器实例的前端子网。 支持多值查询,查询条件格式:*ipv6_vip_virsubnet_id=xxx&ipv6_vip_virsubnet_id=xxx*。 [不支持IPv6,请勿使用。](tag:dt,dt_test)
|
657
657
|
|
658
658
|
:param ipv6_vip_virsubnet_id: The ipv6_vip_virsubnet_id of this ListLoadBalancersRequest.
|
659
659
|
:type ipv6_vip_virsubnet_id: list[str]
|
@@ -664,7 +664,7 @@ class ListLoadBalancersRequest:
|
|
664
664
|
def eips(self):
|
665
665
|
"""Gets the eips of this ListLoadBalancersRequest.
|
666
666
|
|
667
|
-
负载均衡器绑定的EIP
|
667
|
+
负载均衡器绑定的EIP。例如要查询绑定以下EIP的LB: \"eips\": [ { \"eip_id\": \"e9b72a9d-4275-455e-a724-853504e4d9c6\", \"eip_address\": \"88.88.14.122\", \"ip_version\": 4 } ] 可以通如下查询: eips=ip_version%3D4&eips=eip_address%3D88.88.14.122&eips=eip_id%3De9b72a9d-4275-455e-a724-853504e4d9c6 支持多值查询,查询条件格式: - eip_id作为查询条件:*eips=eip_id=xxx&eips=eip_id=xxx*。 - eip_address作为查询条件:*eips=eip_address=xxx&eips=eip_address=xxx*。 - ip_version作为查询条件:*eips=ip_version=xxx&eips=ip_version=xxx*。 注:该字段与publicips字段一致。
|
668
668
|
|
669
669
|
:return: The eips of this ListLoadBalancersRequest.
|
670
670
|
:rtype: list[str]
|
@@ -675,7 +675,7 @@ class ListLoadBalancersRequest:
|
|
675
675
|
def eips(self, eips):
|
676
676
|
"""Sets the eips of this ListLoadBalancersRequest.
|
677
677
|
|
678
|
-
负载均衡器绑定的EIP
|
678
|
+
负载均衡器绑定的EIP。例如要查询绑定以下EIP的LB: \"eips\": [ { \"eip_id\": \"e9b72a9d-4275-455e-a724-853504e4d9c6\", \"eip_address\": \"88.88.14.122\", \"ip_version\": 4 } ] 可以通如下查询: eips=ip_version%3D4&eips=eip_address%3D88.88.14.122&eips=eip_id%3De9b72a9d-4275-455e-a724-853504e4d9c6 支持多值查询,查询条件格式: - eip_id作为查询条件:*eips=eip_id=xxx&eips=eip_id=xxx*。 - eip_address作为查询条件:*eips=eip_address=xxx&eips=eip_address=xxx*。 - ip_version作为查询条件:*eips=ip_version=xxx&eips=ip_version=xxx*。 注:该字段与publicips字段一致。
|
679
679
|
|
680
680
|
:param eips: The eips of this ListLoadBalancersRequest.
|
681
681
|
:type eips: list[str]
|
@@ -686,7 +686,7 @@ class ListLoadBalancersRequest:
|
|
686
686
|
def publicips(self):
|
687
687
|
"""Gets the publicips of this ListLoadBalancersRequest.
|
688
688
|
|
689
|
-
负载均衡器绑定的公网IP
|
689
|
+
负载均衡器绑定的公网IP。例如要查询绑定以下公网IP的LB: \"publicips=\": [ { \"public_id\": \"e9b72a9d-4275-455e-a724-853504e4d9c6\", \"public_address\": \"88.88.14.122\", \"ip_version\": 4 } ] 可以通如下查询: publicips=ip_version%3D4&publicips=public_address%3D88.88.14.122&publicips=public_id%3De9b72a9d-4275-455e-a724-853504e4d9c6 支持多值查询,查询条件格式: - publicip_id作为查询条件: *publicips=publicip_id=xxx&publicips=publicip_id=xxx* - publicip_address作为查询条件: *publicips=publicip_address=xxx&publicips=publicip_address=xxx* - ip_version作为查询条件: *publicips=ip_version=xxx&publicips=ip_version=xxx* 注:该字段与eips字段一致。
|
690
690
|
|
691
691
|
:return: The publicips of this ListLoadBalancersRequest.
|
692
692
|
:rtype: list[str]
|
@@ -697,7 +697,7 @@ class ListLoadBalancersRequest:
|
|
697
697
|
def publicips(self, publicips):
|
698
698
|
"""Sets the publicips of this ListLoadBalancersRequest.
|
699
699
|
|
700
|
-
负载均衡器绑定的公网IP
|
700
|
+
负载均衡器绑定的公网IP。例如要查询绑定以下公网IP的LB: \"publicips=\": [ { \"public_id\": \"e9b72a9d-4275-455e-a724-853504e4d9c6\", \"public_address\": \"88.88.14.122\", \"ip_version\": 4 } ] 可以通如下查询: publicips=ip_version%3D4&publicips=public_address%3D88.88.14.122&publicips=public_id%3De9b72a9d-4275-455e-a724-853504e4d9c6 支持多值查询,查询条件格式: - publicip_id作为查询条件: *publicips=publicip_id=xxx&publicips=publicip_id=xxx* - publicip_address作为查询条件: *publicips=publicip_address=xxx&publicips=publicip_address=xxx* - ip_version作为查询条件: *publicips=ip_version=xxx&publicips=ip_version=xxx* 注:该字段与eips字段一致。
|
701
701
|
|
702
702
|
:param publicips: The publicips of this ListLoadBalancersRequest.
|
703
703
|
:type publicips: list[str]
|
@@ -730,7 +730,7 @@ class ListLoadBalancersRequest:
|
|
730
730
|
def l4_flavor_id(self):
|
731
731
|
"""Gets the l4_flavor_id of this ListLoadBalancersRequest.
|
732
732
|
|
733
|
-
网络型规格ID。 支持多值查询,查询条件格式:*l4_flavor_id=xxx&l4_flavor_id=xxx*。 [不支持该字段,请勿使用。](tag:hcso,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
|
733
|
+
网络型规格ID。 支持多值查询,查询条件格式:*l4_flavor_id=xxx&l4_flavor_id=xxx*。 [不支持该字段,请勿使用。](tag:hcso,hk_vdf,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
|
734
734
|
|
735
735
|
:return: The l4_flavor_id of this ListLoadBalancersRequest.
|
736
736
|
:rtype: list[str]
|
@@ -741,7 +741,7 @@ class ListLoadBalancersRequest:
|
|
741
741
|
def l4_flavor_id(self, l4_flavor_id):
|
742
742
|
"""Sets the l4_flavor_id of this ListLoadBalancersRequest.
|
743
743
|
|
744
|
-
网络型规格ID。 支持多值查询,查询条件格式:*l4_flavor_id=xxx&l4_flavor_id=xxx*。 [不支持该字段,请勿使用。](tag:hcso,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
|
744
|
+
网络型规格ID。 支持多值查询,查询条件格式:*l4_flavor_id=xxx&l4_flavor_id=xxx*。 [不支持该字段,请勿使用。](tag:hcso,hk_vdf,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
|
745
745
|
|
746
746
|
:param l4_flavor_id: The l4_flavor_id of this ListLoadBalancersRequest.
|
747
747
|
:type l4_flavor_id: list[str]
|
@@ -774,7 +774,7 @@ class ListLoadBalancersRequest:
|
|
774
774
|
def l7_flavor_id(self):
|
775
775
|
"""Gets the l7_flavor_id of this ListLoadBalancersRequest.
|
776
776
|
|
777
|
-
应用型规格ID。 支持多值查询,查询条件格式:*l7_flavor_id=xxx&l7_flavor_id=xxx*。 [不支持该字段,请勿使用。](tag:hcso,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
|
777
|
+
应用型规格ID。 支持多值查询,查询条件格式:*l7_flavor_id=xxx&l7_flavor_id=xxx*。 [不支持该字段,请勿使用。](tag:hcso,hk_vdf,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
|
778
778
|
|
779
779
|
:return: The l7_flavor_id of this ListLoadBalancersRequest.
|
780
780
|
:rtype: list[str]
|
@@ -785,7 +785,7 @@ class ListLoadBalancersRequest:
|
|
785
785
|
def l7_flavor_id(self, l7_flavor_id):
|
786
786
|
"""Sets the l7_flavor_id of this ListLoadBalancersRequest.
|
787
787
|
|
788
|
-
应用型规格ID。 支持多值查询,查询条件格式:*l7_flavor_id=xxx&l7_flavor_id=xxx*。 [不支持该字段,请勿使用。](tag:hcso,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
|
788
|
+
应用型规格ID。 支持多值查询,查询条件格式:*l7_flavor_id=xxx&l7_flavor_id=xxx*。 [不支持该字段,请勿使用。](tag:hcso,hk_vdf,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
|
789
789
|
|
790
790
|
:param l7_flavor_id: The l7_flavor_id of this ListLoadBalancersRequest.
|
791
791
|
:type l7_flavor_id: list[str]
|
@@ -818,7 +818,7 @@ class ListLoadBalancersRequest:
|
|
818
818
|
def billing_info(self):
|
819
819
|
"""Gets the billing_info of this ListLoadBalancersRequest.
|
820
820
|
|
821
|
-
资源账单信息。 支持多值查询,查询条件格式:*billing_info=xxx&billing_info=xxx*。 [不支持该字段,请勿使用。](tag:hws_hk,hws_eu,hws_test,hcs,hcs_sm,hcso,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b,hcso_dt,dt,dt_test,ocb,ctc,cmcc,tm,sbc,g42,hws_ocb,hk_sbc,hk_tm,hk_g42)
|
821
|
+
资源账单信息。 支持多值查询,查询条件格式:*billing_info=xxx&billing_info=xxx*。 [不支持该字段,请勿使用。](tag:hws_hk,hws_eu,hws_test,hcs,hcs_sm,hcso,hk_vdf,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b,hcso_dt,dt,dt_test,ocb,ctc,cmcc,tm,sbc,g42,hws_ocb,hk_sbc,hk_tm,hk_g42)
|
822
822
|
|
823
823
|
:return: The billing_info of this ListLoadBalancersRequest.
|
824
824
|
:rtype: list[str]
|
@@ -829,7 +829,7 @@ class ListLoadBalancersRequest:
|
|
829
829
|
def billing_info(self, billing_info):
|
830
830
|
"""Sets the billing_info of this ListLoadBalancersRequest.
|
831
831
|
|
832
|
-
资源账单信息。 支持多值查询,查询条件格式:*billing_info=xxx&billing_info=xxx*。 [不支持该字段,请勿使用。](tag:hws_hk,hws_eu,hws_test,hcs,hcs_sm,hcso,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b,hcso_dt,dt,dt_test,ocb,ctc,cmcc,tm,sbc,g42,hws_ocb,hk_sbc,hk_tm,hk_g42)
|
832
|
+
资源账单信息。 支持多值查询,查询条件格式:*billing_info=xxx&billing_info=xxx*。 [不支持该字段,请勿使用。](tag:hws_hk,hws_eu,hws_test,hcs,hcs_sm,hcso,hk_vdf,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b,hcso_dt,dt,dt_test,ocb,ctc,cmcc,tm,sbc,g42,hws_ocb,hk_sbc,hk_tm,hk_g42)
|
833
833
|
|
834
834
|
:param billing_info: The billing_info of this ListLoadBalancersRequest.
|
835
835
|
:type billing_info: list[str]
|
@@ -840,7 +840,7 @@ class ListLoadBalancersRequest:
|
|
840
840
|
def member_device_id(self):
|
841
841
|
"""Gets the member_device_id of this ListLoadBalancersRequest.
|
842
842
|
|
843
|
-
|
843
|
+
负载均衡器中的后端服务器对应的弹性云服务器的ID。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_device_id=xxx&member_device_id=xxx*。
|
844
844
|
|
845
845
|
:return: The member_device_id of this ListLoadBalancersRequest.
|
846
846
|
:rtype: list[str]
|
@@ -851,7 +851,7 @@ class ListLoadBalancersRequest:
|
|
851
851
|
def member_device_id(self, member_device_id):
|
852
852
|
"""Sets the member_device_id of this ListLoadBalancersRequest.
|
853
853
|
|
854
|
-
|
854
|
+
负载均衡器中的后端服务器对应的弹性云服务器的ID。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_device_id=xxx&member_device_id=xxx*。
|
855
855
|
|
856
856
|
:param member_device_id: The member_device_id of this ListLoadBalancersRequest.
|
857
857
|
:type member_device_id: list[str]
|
@@ -862,7 +862,7 @@ class ListLoadBalancersRequest:
|
|
862
862
|
def member_address(self):
|
863
863
|
"""Gets the member_address of this ListLoadBalancersRequest.
|
864
864
|
|
865
|
-
|
865
|
+
负载均衡器中的后端服务器对应的弹性云服务器的IP地址。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_address=xxx&member_address=xxx*。
|
866
866
|
|
867
867
|
:return: The member_address of this ListLoadBalancersRequest.
|
868
868
|
:rtype: list[str]
|
@@ -873,7 +873,7 @@ class ListLoadBalancersRequest:
|
|
873
873
|
def member_address(self, member_address):
|
874
874
|
"""Sets the member_address of this ListLoadBalancersRequest.
|
875
875
|
|
876
|
-
|
876
|
+
负载均衡器中的后端服务器对应的弹性云服务器的IP地址。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_address=xxx&member_address=xxx*。
|
877
877
|
|
878
878
|
:param member_address: The member_address of this ListLoadBalancersRequest.
|
879
879
|
:type member_address: list[str]
|
@@ -928,7 +928,7 @@ class ListLoadBalancersRequest:
|
|
928
928
|
def deletion_protection_enable(self):
|
929
929
|
"""Gets the deletion_protection_enable of this ListLoadBalancersRequest.
|
930
930
|
|
931
|
-
是否开启删除保护,false不开启,true开启。[不支持该字段,请勿使用。](tag:hws_eu,g42,hk_g42) [荷兰region不支持该字段,请勿使用。](tag:dt)
|
931
|
+
是否开启删除保护,false不开启,true开启。[不支持该字段,请勿使用。](tag:hws_eu,g42,hk_g42) [荷兰region不支持该字段,请勿使用。](tag:dt,dt_test)
|
932
932
|
|
933
933
|
:return: The deletion_protection_enable of this ListLoadBalancersRequest.
|
934
934
|
:rtype: bool
|
@@ -939,7 +939,7 @@ class ListLoadBalancersRequest:
|
|
939
939
|
def deletion_protection_enable(self, deletion_protection_enable):
|
940
940
|
"""Sets the deletion_protection_enable of this ListLoadBalancersRequest.
|
941
941
|
|
942
|
-
是否开启删除保护,false不开启,true开启。[不支持该字段,请勿使用。](tag:hws_eu,g42,hk_g42) [荷兰region不支持该字段,请勿使用。](tag:dt)
|
942
|
+
是否开启删除保护,false不开启,true开启。[不支持该字段,请勿使用。](tag:hws_eu,g42,hk_g42) [荷兰region不支持该字段,请勿使用。](tag:dt,dt_test)
|
943
943
|
|
944
944
|
:param deletion_protection_enable: The deletion_protection_enable of this ListLoadBalancersRequest.
|
945
945
|
:type deletion_protection_enable: bool
|
@@ -43,7 +43,7 @@ class ListLogtanksRequest:
|
|
43
43
|
|
44
44
|
The model defined in huaweicloud sdk
|
45
45
|
|
46
|
-
:param limit:
|
46
|
+
:param limit: 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
|
47
47
|
:type limit: int
|
48
48
|
:param marker: 上一页最后一条记录的ID。 使用说明: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
|
49
49
|
:type marker: str
|
@@ -94,7 +94,7 @@ class ListLogtanksRequest:
|
|
94
94
|
def limit(self):
|
95
95
|
"""Gets the limit of this ListLogtanksRequest.
|
96
96
|
|
97
|
-
|
97
|
+
参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
|
98
98
|
|
99
99
|
:return: The limit of this ListLogtanksRequest.
|
100
100
|
:rtype: int
|
@@ -105,7 +105,7 @@ class ListLogtanksRequest:
|
|
105
105
|
def limit(self, limit):
|
106
106
|
"""Sets the limit of this ListLogtanksRequest.
|
107
107
|
|
108
|
-
|
108
|
+
参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
|
109
109
|
|
110
110
|
:param limit: The limit of this ListLogtanksRequest.
|
111
111
|
:type limit: int
|
@@ -67,37 +67,37 @@ class ListMasterSlavePoolsRequest:
|
|
67
67
|
|
68
68
|
:param marker: 上一页最后一条记录的ID。 使用说明: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
|
69
69
|
:type marker: str
|
70
|
-
:param limit:
|
70
|
+
:param limit: 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
|
71
71
|
:type limit: int
|
72
72
|
:param page_reverse: 是否反向查询。 取值: - true:查询上一页。 - false:查询下一页,默认。 使用说明: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。
|
73
73
|
:type page_reverse: bool
|
74
|
-
:param description:
|
74
|
+
:param description: 后端服务器组的描述信息。 支持多值查询,查询条件格式:*description=xxx&description=xxx*。
|
75
75
|
:type description: list[str]
|
76
|
-
:param healthmonitor_id:
|
76
|
+
:param healthmonitor_id: 后端服务器组关联的健康检查的ID。 支持多值查询,查询条件格式:*healthmonitor_id=xxx&healthmonitor_id=xxx*。
|
77
77
|
:type healthmonitor_id: list[str]
|
78
|
-
:param id:
|
78
|
+
:param id: 后端服务器组的ID。 支持多值查询,查询条件格式:*id=xxx&id=xxx*。
|
79
79
|
:type id: list[str]
|
80
|
-
:param name:
|
80
|
+
:param name: 后端服务器组的名称。 支持多值查询,查询条件格式:*name=xxx&name=xxx*。
|
81
81
|
:type name: list[str]
|
82
|
-
:param loadbalancer_id:
|
82
|
+
:param loadbalancer_id: 后端服务器组绑定的负载均衡器ID。 支持多值查询,查询条件格式:*loadbalancer_id=xxx&loadbalancer_id=xxx*。
|
83
83
|
:type loadbalancer_id: list[str]
|
84
|
-
:param protocol:
|
84
|
+
:param protocol: 后端服务器组的后端协议。 取值:TCP、UDP、[IP、](tag:hws_eu)TLS、GRPC、HTTP、HTTPS和QUIC。 [IP类型为网关型LB独有的后端服务器组协议。](tag:hws_eu) 支持多值查询,查询条件格式:*protocol=xxx&protocol=xxx*。 [不支持QUIC。](tag:tm,hws_eu,g42,hk_g42,hcso_dt) [荷兰region不支持QUIC。](tag:dt,dt_test)
|
85
85
|
:type protocol: list[str]
|
86
|
-
:param lb_algorithm:
|
86
|
+
:param lb_algorithm: 后端服务器组的负载均衡算法。 取值: 1、ROUND_ROBIN:加权轮询算法。 2、LEAST_CONNECTIONS:加权最少连接算法。 3、SOURCE_IP:源IP算法。 4、QUIC_CID:连接ID算法。 支持多值查询,查询条件格式:*lb_algorithm=xxx&lb_algorithm=xxx*。 [不支持QUIC_CID。](tag:tm,hws_eu,g42,hk_g42,hcso_dt) [荷兰region不支持QUIC_CID。](tag:dt,dt_test)
|
87
87
|
:type lb_algorithm: list[str]
|
88
88
|
:param enterprise_project_id: 企业项目ID。不传时查询default企业项目\"0\"下的资源,鉴权按照default企业项目鉴权; 如果传值,则传已存在的企业项目ID或all_granted_eps(表示查询所有企业项目)进行查询。 支持多值查询,查询条件格式: *enterprise_project_id=xxx&enterprise_project_id=xxx*。 [不支持该字段,请勿使用。](tag:dt,dt_test,hcso_dt)
|
89
89
|
:type enterprise_project_id: list[str]
|
90
|
-
:param ip_version:
|
90
|
+
:param ip_version: 后端服务器组支持的IP版本。 支持多值查询,查询条件格式:*ip_version=xxx&ip_version=xxx*。
|
91
91
|
:type ip_version: list[str]
|
92
|
-
:param member_address:
|
92
|
+
:param member_address: 后端服务器的IP地址。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_address=xxx&member_address=xxx*。
|
93
93
|
:type member_address: list[str]
|
94
|
-
:param member_device_id:
|
94
|
+
:param member_device_id: 后端服务器对应的弹性云服务器的ID。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_device_id=xxx&member_device_id=xxx*。
|
95
95
|
:type member_device_id: list[str]
|
96
96
|
:param listener_id: 关联的监听器ID,包括通过l7policy关联的。 支持多值查询,查询条件格式:*listener_id=xxx&listener_id=xxx*。
|
97
97
|
:type listener_id: list[str]
|
98
|
-
:param member_instance_id:
|
98
|
+
:param member_instance_id: 后端服务器ID。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_instance_id=xxx&member_instance_id=xxx*。
|
99
99
|
:type member_instance_id: list[str]
|
100
|
-
:param vpc_id:
|
100
|
+
:param vpc_id: 后端服务器组关联的虚拟私有云的ID。
|
101
101
|
:type vpc_id: list[str]
|
102
102
|
:param type: 后端服务器组的类型。 取值: - instance:允许任意类型的后端,type指定为该类型时,vpc_id是必选字段。 - ip:只能添加跨VPC后端,type指定为该类型时,vpc_id不允许指定。 - 空字符串(\"\"):允许任意类型的后端
|
103
103
|
:type type: list[str]
|
@@ -193,7 +193,7 @@ class ListMasterSlavePoolsRequest:
|
|
193
193
|
def limit(self):
|
194
194
|
"""Gets the limit of this ListMasterSlavePoolsRequest.
|
195
195
|
|
196
|
-
|
196
|
+
参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
|
197
197
|
|
198
198
|
:return: The limit of this ListMasterSlavePoolsRequest.
|
199
199
|
:rtype: int
|
@@ -204,7 +204,7 @@ class ListMasterSlavePoolsRequest:
|
|
204
204
|
def limit(self, limit):
|
205
205
|
"""Sets the limit of this ListMasterSlavePoolsRequest.
|
206
206
|
|
207
|
-
|
207
|
+
参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
|
208
208
|
|
209
209
|
:param limit: The limit of this ListMasterSlavePoolsRequest.
|
210
210
|
:type limit: int
|
@@ -237,7 +237,7 @@ class ListMasterSlavePoolsRequest:
|
|
237
237
|
def description(self):
|
238
238
|
"""Gets the description of this ListMasterSlavePoolsRequest.
|
239
239
|
|
240
|
-
|
240
|
+
后端服务器组的描述信息。 支持多值查询,查询条件格式:*description=xxx&description=xxx*。
|
241
241
|
|
242
242
|
:return: The description of this ListMasterSlavePoolsRequest.
|
243
243
|
:rtype: list[str]
|
@@ -248,7 +248,7 @@ class ListMasterSlavePoolsRequest:
|
|
248
248
|
def description(self, description):
|
249
249
|
"""Sets the description of this ListMasterSlavePoolsRequest.
|
250
250
|
|
251
|
-
|
251
|
+
后端服务器组的描述信息。 支持多值查询,查询条件格式:*description=xxx&description=xxx*。
|
252
252
|
|
253
253
|
:param description: The description of this ListMasterSlavePoolsRequest.
|
254
254
|
:type description: list[str]
|
@@ -259,7 +259,7 @@ class ListMasterSlavePoolsRequest:
|
|
259
259
|
def healthmonitor_id(self):
|
260
260
|
"""Gets the healthmonitor_id of this ListMasterSlavePoolsRequest.
|
261
261
|
|
262
|
-
|
262
|
+
后端服务器组关联的健康检查的ID。 支持多值查询,查询条件格式:*healthmonitor_id=xxx&healthmonitor_id=xxx*。
|
263
263
|
|
264
264
|
:return: The healthmonitor_id of this ListMasterSlavePoolsRequest.
|
265
265
|
:rtype: list[str]
|
@@ -270,7 +270,7 @@ class ListMasterSlavePoolsRequest:
|
|
270
270
|
def healthmonitor_id(self, healthmonitor_id):
|
271
271
|
"""Sets the healthmonitor_id of this ListMasterSlavePoolsRequest.
|
272
272
|
|
273
|
-
|
273
|
+
后端服务器组关联的健康检查的ID。 支持多值查询,查询条件格式:*healthmonitor_id=xxx&healthmonitor_id=xxx*。
|
274
274
|
|
275
275
|
:param healthmonitor_id: The healthmonitor_id of this ListMasterSlavePoolsRequest.
|
276
276
|
:type healthmonitor_id: list[str]
|
@@ -281,7 +281,7 @@ class ListMasterSlavePoolsRequest:
|
|
281
281
|
def id(self):
|
282
282
|
"""Gets the id of this ListMasterSlavePoolsRequest.
|
283
283
|
|
284
|
-
|
284
|
+
后端服务器组的ID。 支持多值查询,查询条件格式:*id=xxx&id=xxx*。
|
285
285
|
|
286
286
|
:return: The id of this ListMasterSlavePoolsRequest.
|
287
287
|
:rtype: list[str]
|
@@ -292,7 +292,7 @@ class ListMasterSlavePoolsRequest:
|
|
292
292
|
def id(self, id):
|
293
293
|
"""Sets the id of this ListMasterSlavePoolsRequest.
|
294
294
|
|
295
|
-
|
295
|
+
后端服务器组的ID。 支持多值查询,查询条件格式:*id=xxx&id=xxx*。
|
296
296
|
|
297
297
|
:param id: The id of this ListMasterSlavePoolsRequest.
|
298
298
|
:type id: list[str]
|
@@ -303,7 +303,7 @@ class ListMasterSlavePoolsRequest:
|
|
303
303
|
def name(self):
|
304
304
|
"""Gets the name of this ListMasterSlavePoolsRequest.
|
305
305
|
|
306
|
-
|
306
|
+
后端服务器组的名称。 支持多值查询,查询条件格式:*name=xxx&name=xxx*。
|
307
307
|
|
308
308
|
:return: The name of this ListMasterSlavePoolsRequest.
|
309
309
|
:rtype: list[str]
|
@@ -314,7 +314,7 @@ class ListMasterSlavePoolsRequest:
|
|
314
314
|
def name(self, name):
|
315
315
|
"""Sets the name of this ListMasterSlavePoolsRequest.
|
316
316
|
|
317
|
-
|
317
|
+
后端服务器组的名称。 支持多值查询,查询条件格式:*name=xxx&name=xxx*。
|
318
318
|
|
319
319
|
:param name: The name of this ListMasterSlavePoolsRequest.
|
320
320
|
:type name: list[str]
|
@@ -325,7 +325,7 @@ class ListMasterSlavePoolsRequest:
|
|
325
325
|
def loadbalancer_id(self):
|
326
326
|
"""Gets the loadbalancer_id of this ListMasterSlavePoolsRequest.
|
327
327
|
|
328
|
-
|
328
|
+
后端服务器组绑定的负载均衡器ID。 支持多值查询,查询条件格式:*loadbalancer_id=xxx&loadbalancer_id=xxx*。
|
329
329
|
|
330
330
|
:return: The loadbalancer_id of this ListMasterSlavePoolsRequest.
|
331
331
|
:rtype: list[str]
|
@@ -336,7 +336,7 @@ class ListMasterSlavePoolsRequest:
|
|
336
336
|
def loadbalancer_id(self, loadbalancer_id):
|
337
337
|
"""Sets the loadbalancer_id of this ListMasterSlavePoolsRequest.
|
338
338
|
|
339
|
-
|
339
|
+
后端服务器组绑定的负载均衡器ID。 支持多值查询,查询条件格式:*loadbalancer_id=xxx&loadbalancer_id=xxx*。
|
340
340
|
|
341
341
|
:param loadbalancer_id: The loadbalancer_id of this ListMasterSlavePoolsRequest.
|
342
342
|
:type loadbalancer_id: list[str]
|
@@ -347,7 +347,7 @@ class ListMasterSlavePoolsRequest:
|
|
347
347
|
def protocol(self):
|
348
348
|
"""Gets the protocol of this ListMasterSlavePoolsRequest.
|
349
349
|
|
350
|
-
|
350
|
+
后端服务器组的后端协议。 取值:TCP、UDP、[IP、](tag:hws_eu)TLS、GRPC、HTTP、HTTPS和QUIC。 [IP类型为网关型LB独有的后端服务器组协议。](tag:hws_eu) 支持多值查询,查询条件格式:*protocol=xxx&protocol=xxx*。 [不支持QUIC。](tag:tm,hws_eu,g42,hk_g42,hcso_dt) [荷兰region不支持QUIC。](tag:dt,dt_test)
|
351
351
|
|
352
352
|
:return: The protocol of this ListMasterSlavePoolsRequest.
|
353
353
|
:rtype: list[str]
|
@@ -358,7 +358,7 @@ class ListMasterSlavePoolsRequest:
|
|
358
358
|
def protocol(self, protocol):
|
359
359
|
"""Sets the protocol of this ListMasterSlavePoolsRequest.
|
360
360
|
|
361
|
-
|
361
|
+
后端服务器组的后端协议。 取值:TCP、UDP、[IP、](tag:hws_eu)TLS、GRPC、HTTP、HTTPS和QUIC。 [IP类型为网关型LB独有的后端服务器组协议。](tag:hws_eu) 支持多值查询,查询条件格式:*protocol=xxx&protocol=xxx*。 [不支持QUIC。](tag:tm,hws_eu,g42,hk_g42,hcso_dt) [荷兰region不支持QUIC。](tag:dt,dt_test)
|
362
362
|
|
363
363
|
:param protocol: The protocol of this ListMasterSlavePoolsRequest.
|
364
364
|
:type protocol: list[str]
|
@@ -369,7 +369,7 @@ class ListMasterSlavePoolsRequest:
|
|
369
369
|
def lb_algorithm(self):
|
370
370
|
"""Gets the lb_algorithm of this ListMasterSlavePoolsRequest.
|
371
371
|
|
372
|
-
|
372
|
+
后端服务器组的负载均衡算法。 取值: 1、ROUND_ROBIN:加权轮询算法。 2、LEAST_CONNECTIONS:加权最少连接算法。 3、SOURCE_IP:源IP算法。 4、QUIC_CID:连接ID算法。 支持多值查询,查询条件格式:*lb_algorithm=xxx&lb_algorithm=xxx*。 [不支持QUIC_CID。](tag:tm,hws_eu,g42,hk_g42,hcso_dt) [荷兰region不支持QUIC_CID。](tag:dt,dt_test)
|
373
373
|
|
374
374
|
:return: The lb_algorithm of this ListMasterSlavePoolsRequest.
|
375
375
|
:rtype: list[str]
|
@@ -380,7 +380,7 @@ class ListMasterSlavePoolsRequest:
|
|
380
380
|
def lb_algorithm(self, lb_algorithm):
|
381
381
|
"""Sets the lb_algorithm of this ListMasterSlavePoolsRequest.
|
382
382
|
|
383
|
-
|
383
|
+
后端服务器组的负载均衡算法。 取值: 1、ROUND_ROBIN:加权轮询算法。 2、LEAST_CONNECTIONS:加权最少连接算法。 3、SOURCE_IP:源IP算法。 4、QUIC_CID:连接ID算法。 支持多值查询,查询条件格式:*lb_algorithm=xxx&lb_algorithm=xxx*。 [不支持QUIC_CID。](tag:tm,hws_eu,g42,hk_g42,hcso_dt) [荷兰region不支持QUIC_CID。](tag:dt,dt_test)
|
384
384
|
|
385
385
|
:param lb_algorithm: The lb_algorithm of this ListMasterSlavePoolsRequest.
|
386
386
|
:type lb_algorithm: list[str]
|
@@ -413,7 +413,7 @@ class ListMasterSlavePoolsRequest:
|
|
413
413
|
def ip_version(self):
|
414
414
|
"""Gets the ip_version of this ListMasterSlavePoolsRequest.
|
415
415
|
|
416
|
-
|
416
|
+
后端服务器组支持的IP版本。 支持多值查询,查询条件格式:*ip_version=xxx&ip_version=xxx*。
|
417
417
|
|
418
418
|
:return: The ip_version of this ListMasterSlavePoolsRequest.
|
419
419
|
:rtype: list[str]
|
@@ -424,7 +424,7 @@ class ListMasterSlavePoolsRequest:
|
|
424
424
|
def ip_version(self, ip_version):
|
425
425
|
"""Sets the ip_version of this ListMasterSlavePoolsRequest.
|
426
426
|
|
427
|
-
|
427
|
+
后端服务器组支持的IP版本。 支持多值查询,查询条件格式:*ip_version=xxx&ip_version=xxx*。
|
428
428
|
|
429
429
|
:param ip_version: The ip_version of this ListMasterSlavePoolsRequest.
|
430
430
|
:type ip_version: list[str]
|
@@ -435,7 +435,7 @@ class ListMasterSlavePoolsRequest:
|
|
435
435
|
def member_address(self):
|
436
436
|
"""Gets the member_address of this ListMasterSlavePoolsRequest.
|
437
437
|
|
438
|
-
|
438
|
+
后端服务器的IP地址。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_address=xxx&member_address=xxx*。
|
439
439
|
|
440
440
|
:return: The member_address of this ListMasterSlavePoolsRequest.
|
441
441
|
:rtype: list[str]
|
@@ -446,7 +446,7 @@ class ListMasterSlavePoolsRequest:
|
|
446
446
|
def member_address(self, member_address):
|
447
447
|
"""Sets the member_address of this ListMasterSlavePoolsRequest.
|
448
448
|
|
449
|
-
|
449
|
+
后端服务器的IP地址。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_address=xxx&member_address=xxx*。
|
450
450
|
|
451
451
|
:param member_address: The member_address of this ListMasterSlavePoolsRequest.
|
452
452
|
:type member_address: list[str]
|
@@ -457,7 +457,7 @@ class ListMasterSlavePoolsRequest:
|
|
457
457
|
def member_device_id(self):
|
458
458
|
"""Gets the member_device_id of this ListMasterSlavePoolsRequest.
|
459
459
|
|
460
|
-
|
460
|
+
后端服务器对应的弹性云服务器的ID。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_device_id=xxx&member_device_id=xxx*。
|
461
461
|
|
462
462
|
:return: The member_device_id of this ListMasterSlavePoolsRequest.
|
463
463
|
:rtype: list[str]
|
@@ -468,7 +468,7 @@ class ListMasterSlavePoolsRequest:
|
|
468
468
|
def member_device_id(self, member_device_id):
|
469
469
|
"""Sets the member_device_id of this ListMasterSlavePoolsRequest.
|
470
470
|
|
471
|
-
|
471
|
+
后端服务器对应的弹性云服务器的ID。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_device_id=xxx&member_device_id=xxx*。
|
472
472
|
|
473
473
|
:param member_device_id: The member_device_id of this ListMasterSlavePoolsRequest.
|
474
474
|
:type member_device_id: list[str]
|
@@ -501,7 +501,7 @@ class ListMasterSlavePoolsRequest:
|
|
501
501
|
def member_instance_id(self):
|
502
502
|
"""Gets the member_instance_id of this ListMasterSlavePoolsRequest.
|
503
503
|
|
504
|
-
|
504
|
+
后端服务器ID。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_instance_id=xxx&member_instance_id=xxx*。
|
505
505
|
|
506
506
|
:return: The member_instance_id of this ListMasterSlavePoolsRequest.
|
507
507
|
:rtype: list[str]
|
@@ -512,7 +512,7 @@ class ListMasterSlavePoolsRequest:
|
|
512
512
|
def member_instance_id(self, member_instance_id):
|
513
513
|
"""Sets the member_instance_id of this ListMasterSlavePoolsRequest.
|
514
514
|
|
515
|
-
|
515
|
+
后端服务器ID。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_instance_id=xxx&member_instance_id=xxx*。
|
516
516
|
|
517
517
|
:param member_instance_id: The member_instance_id of this ListMasterSlavePoolsRequest.
|
518
518
|
:type member_instance_id: list[str]
|
@@ -523,7 +523,7 @@ class ListMasterSlavePoolsRequest:
|
|
523
523
|
def vpc_id(self):
|
524
524
|
"""Gets the vpc_id of this ListMasterSlavePoolsRequest.
|
525
525
|
|
526
|
-
|
526
|
+
后端服务器组关联的虚拟私有云的ID。
|
527
527
|
|
528
528
|
:return: The vpc_id of this ListMasterSlavePoolsRequest.
|
529
529
|
:rtype: list[str]
|
@@ -534,7 +534,7 @@ class ListMasterSlavePoolsRequest:
|
|
534
534
|
def vpc_id(self, vpc_id):
|
535
535
|
"""Sets the vpc_id of this ListMasterSlavePoolsRequest.
|
536
536
|
|
537
|
-
|
537
|
+
后端服务器组关联的虚拟私有云的ID。
|
538
538
|
|
539
539
|
:param vpc_id: The vpc_id of this ListMasterSlavePoolsRequest.
|
540
540
|
:type vpc_id: list[str]
|