huaweicloudsdkelb 3.1.86__py2.py3-none-any.whl → 3.1.132__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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.86.dist-info → huaweicloudsdkelb-3.1.132.dist-info}/METADATA +2 -2
- {huaweicloudsdkelb-3.1.86.dist-info → huaweicloudsdkelb-3.1.132.dist-info}/RECORD +213 -184
- {huaweicloudsdkelb-3.1.86.dist-info → huaweicloudsdkelb-3.1.132.dist-info}/WHEEL +1 -1
- {huaweicloudsdkelb-3.1.86.dist-info → huaweicloudsdkelb-3.1.132.dist-info}/LICENSE +0 -0
- {huaweicloudsdkelb-3.1.86.dist-info → huaweicloudsdkelb-3.1.132.dist-info}/top_level.txt +0 -0
@@ -38,7 +38,10 @@ class ListPoolsRequest:
|
|
38
38
|
'vpc_id': 'list[str]',
|
39
39
|
'type': 'list[str]',
|
40
40
|
'protection_status': 'list[str]',
|
41
|
-
'connection_drain': 'bool'
|
41
|
+
'connection_drain': 'bool',
|
42
|
+
'pool_health': 'str',
|
43
|
+
'any_port_enable': 'bool',
|
44
|
+
'public_border_group': 'str'
|
42
45
|
}
|
43
46
|
|
44
47
|
attribute_map = {
|
@@ -63,51 +66,54 @@ class ListPoolsRequest:
|
|
63
66
|
'vpc_id': 'vpc_id',
|
64
67
|
'type': 'type',
|
65
68
|
'protection_status': 'protection_status',
|
66
|
-
'connection_drain': 'connection_drain'
|
69
|
+
'connection_drain': 'connection_drain',
|
70
|
+
'pool_health': 'pool_health',
|
71
|
+
'any_port_enable': 'any_port_enable',
|
72
|
+
'public_border_group': 'public_border_group'
|
67
73
|
}
|
68
74
|
|
69
|
-
def __init__(self, marker=None, limit=None, page_reverse=None, description=None, admin_state_up=None, healthmonitor_id=None, id=None, name=None, loadbalancer_id=None, protocol=None, lb_algorithm=None, enterprise_project_id=None, ip_version=None, member_address=None, member_device_id=None, member_deletion_protection_enable=None, listener_id=None, member_instance_id=None, vpc_id=None, type=None, protection_status=None, connection_drain=None):
|
75
|
+
def __init__(self, marker=None, limit=None, page_reverse=None, description=None, admin_state_up=None, healthmonitor_id=None, id=None, name=None, loadbalancer_id=None, protocol=None, lb_algorithm=None, enterprise_project_id=None, ip_version=None, member_address=None, member_device_id=None, member_deletion_protection_enable=None, listener_id=None, member_instance_id=None, vpc_id=None, type=None, protection_status=None, connection_drain=None, pool_health=None, any_port_enable=None, public_border_group=None):
|
70
76
|
"""ListPoolsRequest
|
71
77
|
|
72
78
|
The model defined in huaweicloud sdk
|
73
79
|
|
74
80
|
:param marker: 上一页最后一条记录的ID。 使用说明: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
|
75
81
|
:type marker: str
|
76
|
-
:param limit:
|
82
|
+
:param limit: 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
|
77
83
|
:type limit: int
|
78
84
|
:param page_reverse: 是否反向查询。 取值: - true:查询上一页。 - false:查询下一页,默认。 使用说明: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。
|
79
85
|
:type page_reverse: bool
|
80
|
-
:param description:
|
86
|
+
:param description: 后端服务器组的描述信息。 支持多值查询,查询条件格式:*description=xxx&description=xxx*。
|
81
87
|
:type description: list[str]
|
82
|
-
:param admin_state_up:
|
88
|
+
:param admin_state_up: 后端服务器组的管理状态。 [不支持该字段,请勿使用。](tag:dt,dt_test,hcso_dt)
|
83
89
|
:type admin_state_up: bool
|
84
|
-
:param healthmonitor_id:
|
90
|
+
:param healthmonitor_id: 后端服务器组关联的健康检查的ID。 支持多值查询,查询条件格式:*healthmonitor_id=xxx&healthmonitor_id=xxx*。
|
85
91
|
:type healthmonitor_id: list[str]
|
86
|
-
:param id:
|
92
|
+
:param id: 后端服务器组的ID。 支持多值查询,查询条件格式:*id=xxx&id=xxx*。
|
87
93
|
:type id: list[str]
|
88
|
-
:param name:
|
94
|
+
:param name: 后端服务器组的名称。 支持多值查询,查询条件格式:*name=xxx&name=xxx*。
|
89
95
|
:type name: list[str]
|
90
|
-
:param loadbalancer_id:
|
96
|
+
:param loadbalancer_id: 后端服务器组绑定的负载均衡器ID。 支持多值查询,查询条件格式:*loadbalancer_id=xxx&loadbalancer_id=xxx*。
|
91
97
|
:type loadbalancer_id: list[str]
|
92
|
-
:param protocol:
|
98
|
+
:param protocol: 后端服务器组的后端协议。 取值:TCP、UDP、[IP、](tag:hws_eu)TLS、HTTP、HTTPS、QUIC和GRPC。 支持多值查询,查询条件格式:*protocol=xxx&protocol=xxx*。 [不支持QUIC协议。](tag:hws_eu,g42,hk_g42,hcso_dt) [荷兰region不支持QUIC。](tag:dt,dt_test)
|
93
99
|
:type protocol: list[str]
|
94
|
-
:param lb_algorithm:
|
100
|
+
:param lb_algorithm: 后端服务器组的负载均衡算法。 取值: - ROUND_ROBIN:加权轮询算法。 - LEAST_CONNECTIONS:加权最少连接算法。 - SOURCE_IP:源IP算法。 - QUIC_CID:连接ID算法。 [- 2_TUPLE_HASH:二元组hash算法,仅IP类型的pool支持。 - 3_TUPLE_HASH:三元组hash算法,仅IP类型的pool支持。 - 5_TUPLE_HASH:五元组hash算法,仅IP类型的pool支持。 - IP型pool不指定该字段时,默认设置为5_TUPLE_HASH。](tag:hws_eu) 支持多值查询,查询条件格式:*lb_algorithm=xxx&lb_algorithm=xxx*。 [不支持QUIC_CID。](tag:hws_eu,g42,hk_g42,hcso_dt) [荷兰region不支持QUIC_CID。](tag:dt,dt_test)
|
95
101
|
:type lb_algorithm: list[str]
|
96
102
|
: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)
|
97
103
|
:type enterprise_project_id: list[str]
|
98
|
-
:param ip_version:
|
104
|
+
:param ip_version: 后端服务器组支持的IP版本。 支持多值查询,查询条件格式:*ip_version=xxx&ip_version=xxx*。
|
99
105
|
:type ip_version: list[str]
|
100
|
-
:param member_address:
|
106
|
+
:param member_address: 后端服务器的IP地址。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_address=xxx&member_address=xxx*。
|
101
107
|
:type member_address: list[str]
|
102
|
-
:param member_device_id:
|
108
|
+
:param member_device_id: 后端服务器对应的弹性云服务器的ID。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_device_id=xxx&member_device_id=xxx*。
|
103
109
|
:type member_device_id: list[str]
|
104
|
-
:param member_deletion_protection_enable: 是否开启删除保护,false不开启,true开启,不传查询全部。 [不支持该字段,请勿使用。](tag:hws_eu,g42,hk_g42) [荷兰region不支持该字段,请勿使用。](tag:dt)
|
110
|
+
:param member_deletion_protection_enable: 是否开启删除保护,false不开启,true开启,不传查询全部。 [不支持该字段,请勿使用。](tag:hws_eu,g42,hk_g42) [荷兰region不支持该字段,请勿使用。](tag:dt,dt_test)
|
105
111
|
:type member_deletion_protection_enable: bool
|
106
112
|
:param listener_id: 关联的监听器ID,包括通过l7policy关联的。 支持多值查询,查询条件格式:*listener_id=xxx&listener_id=xxx*。
|
107
113
|
:type listener_id: list[str]
|
108
|
-
:param member_instance_id:
|
114
|
+
:param member_instance_id: 后端服务器ID。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_instance_id=xxx&member_instance_id=xxx*。
|
109
115
|
:type member_instance_id: list[str]
|
110
|
-
:param vpc_id:
|
116
|
+
:param vpc_id: 后端服务器组关联的虚拟私有云的ID。
|
111
117
|
:type vpc_id: list[str]
|
112
118
|
:param type: 后端服务器组的类型。 取值: - instance:允许任意类型的后端,type指定为该类型时,vpc_id是必选字段。 - ip:只能添加跨VPC后端,type指定为该类型时,vpc_id不允许指定。 - 空字符串(\"\"):允许任意类型的后端
|
113
119
|
:type type: list[str]
|
@@ -115,6 +121,12 @@ class ListPoolsRequest:
|
|
115
121
|
:type protection_status: list[str]
|
116
122
|
:param connection_drain: 查询是否开启延迟注销的功能,查询条件格式:*connection_drain=true或者*connection_drain=false
|
117
123
|
:type connection_drain: bool
|
124
|
+
:param pool_health: 查询是否开启后端全下线转发功能,查询条件格式:*pool_health=minimum_healthy_member_count=0或者*pool_health=minimum_healthy_member_count=1
|
125
|
+
:type pool_health: str
|
126
|
+
:param any_port_enable: 后端是否开启端口透传。开启后,后端服务器端口与前端监听器端口保持一致。取值:false不开启,true开启。
|
127
|
+
:type any_port_enable: bool
|
128
|
+
:param public_border_group: 可用区组
|
129
|
+
:type public_border_group: str
|
118
130
|
"""
|
119
131
|
|
120
132
|
|
@@ -141,6 +153,9 @@ class ListPoolsRequest:
|
|
141
153
|
self._type = None
|
142
154
|
self._protection_status = None
|
143
155
|
self._connection_drain = None
|
156
|
+
self._pool_health = None
|
157
|
+
self._any_port_enable = None
|
158
|
+
self._public_border_group = None
|
144
159
|
self.discriminator = None
|
145
160
|
|
146
161
|
if marker is not None:
|
@@ -187,6 +202,12 @@ class ListPoolsRequest:
|
|
187
202
|
self.protection_status = protection_status
|
188
203
|
if connection_drain is not None:
|
189
204
|
self.connection_drain = connection_drain
|
205
|
+
if pool_health is not None:
|
206
|
+
self.pool_health = pool_health
|
207
|
+
if any_port_enable is not None:
|
208
|
+
self.any_port_enable = any_port_enable
|
209
|
+
if public_border_group is not None:
|
210
|
+
self.public_border_group = public_border_group
|
190
211
|
|
191
212
|
@property
|
192
213
|
def marker(self):
|
@@ -214,7 +235,7 @@ class ListPoolsRequest:
|
|
214
235
|
def limit(self):
|
215
236
|
"""Gets the limit of this ListPoolsRequest.
|
216
237
|
|
217
|
-
|
238
|
+
参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
|
218
239
|
|
219
240
|
:return: The limit of this ListPoolsRequest.
|
220
241
|
:rtype: int
|
@@ -225,7 +246,7 @@ class ListPoolsRequest:
|
|
225
246
|
def limit(self, limit):
|
226
247
|
"""Sets the limit of this ListPoolsRequest.
|
227
248
|
|
228
|
-
|
249
|
+
参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
|
229
250
|
|
230
251
|
:param limit: The limit of this ListPoolsRequest.
|
231
252
|
:type limit: int
|
@@ -258,7 +279,7 @@ class ListPoolsRequest:
|
|
258
279
|
def description(self):
|
259
280
|
"""Gets the description of this ListPoolsRequest.
|
260
281
|
|
261
|
-
|
282
|
+
后端服务器组的描述信息。 支持多值查询,查询条件格式:*description=xxx&description=xxx*。
|
262
283
|
|
263
284
|
:return: The description of this ListPoolsRequest.
|
264
285
|
:rtype: list[str]
|
@@ -269,7 +290,7 @@ class ListPoolsRequest:
|
|
269
290
|
def description(self, description):
|
270
291
|
"""Sets the description of this ListPoolsRequest.
|
271
292
|
|
272
|
-
|
293
|
+
后端服务器组的描述信息。 支持多值查询,查询条件格式:*description=xxx&description=xxx*。
|
273
294
|
|
274
295
|
:param description: The description of this ListPoolsRequest.
|
275
296
|
:type description: list[str]
|
@@ -280,7 +301,7 @@ class ListPoolsRequest:
|
|
280
301
|
def admin_state_up(self):
|
281
302
|
"""Gets the admin_state_up of this ListPoolsRequest.
|
282
303
|
|
283
|
-
|
304
|
+
后端服务器组的管理状态。 [不支持该字段,请勿使用。](tag:dt,dt_test,hcso_dt)
|
284
305
|
|
285
306
|
:return: The admin_state_up of this ListPoolsRequest.
|
286
307
|
:rtype: bool
|
@@ -291,7 +312,7 @@ class ListPoolsRequest:
|
|
291
312
|
def admin_state_up(self, admin_state_up):
|
292
313
|
"""Sets the admin_state_up of this ListPoolsRequest.
|
293
314
|
|
294
|
-
|
315
|
+
后端服务器组的管理状态。 [不支持该字段,请勿使用。](tag:dt,dt_test,hcso_dt)
|
295
316
|
|
296
317
|
:param admin_state_up: The admin_state_up of this ListPoolsRequest.
|
297
318
|
:type admin_state_up: bool
|
@@ -302,7 +323,7 @@ class ListPoolsRequest:
|
|
302
323
|
def healthmonitor_id(self):
|
303
324
|
"""Gets the healthmonitor_id of this ListPoolsRequest.
|
304
325
|
|
305
|
-
|
326
|
+
后端服务器组关联的健康检查的ID。 支持多值查询,查询条件格式:*healthmonitor_id=xxx&healthmonitor_id=xxx*。
|
306
327
|
|
307
328
|
:return: The healthmonitor_id of this ListPoolsRequest.
|
308
329
|
:rtype: list[str]
|
@@ -313,7 +334,7 @@ class ListPoolsRequest:
|
|
313
334
|
def healthmonitor_id(self, healthmonitor_id):
|
314
335
|
"""Sets the healthmonitor_id of this ListPoolsRequest.
|
315
336
|
|
316
|
-
|
337
|
+
后端服务器组关联的健康检查的ID。 支持多值查询,查询条件格式:*healthmonitor_id=xxx&healthmonitor_id=xxx*。
|
317
338
|
|
318
339
|
:param healthmonitor_id: The healthmonitor_id of this ListPoolsRequest.
|
319
340
|
:type healthmonitor_id: list[str]
|
@@ -324,7 +345,7 @@ class ListPoolsRequest:
|
|
324
345
|
def id(self):
|
325
346
|
"""Gets the id of this ListPoolsRequest.
|
326
347
|
|
327
|
-
|
348
|
+
后端服务器组的ID。 支持多值查询,查询条件格式:*id=xxx&id=xxx*。
|
328
349
|
|
329
350
|
:return: The id of this ListPoolsRequest.
|
330
351
|
:rtype: list[str]
|
@@ -335,7 +356,7 @@ class ListPoolsRequest:
|
|
335
356
|
def id(self, id):
|
336
357
|
"""Sets the id of this ListPoolsRequest.
|
337
358
|
|
338
|
-
|
359
|
+
后端服务器组的ID。 支持多值查询,查询条件格式:*id=xxx&id=xxx*。
|
339
360
|
|
340
361
|
:param id: The id of this ListPoolsRequest.
|
341
362
|
:type id: list[str]
|
@@ -346,7 +367,7 @@ class ListPoolsRequest:
|
|
346
367
|
def name(self):
|
347
368
|
"""Gets the name of this ListPoolsRequest.
|
348
369
|
|
349
|
-
|
370
|
+
后端服务器组的名称。 支持多值查询,查询条件格式:*name=xxx&name=xxx*。
|
350
371
|
|
351
372
|
:return: The name of this ListPoolsRequest.
|
352
373
|
:rtype: list[str]
|
@@ -357,7 +378,7 @@ class ListPoolsRequest:
|
|
357
378
|
def name(self, name):
|
358
379
|
"""Sets the name of this ListPoolsRequest.
|
359
380
|
|
360
|
-
|
381
|
+
后端服务器组的名称。 支持多值查询,查询条件格式:*name=xxx&name=xxx*。
|
361
382
|
|
362
383
|
:param name: The name of this ListPoolsRequest.
|
363
384
|
:type name: list[str]
|
@@ -368,7 +389,7 @@ class ListPoolsRequest:
|
|
368
389
|
def loadbalancer_id(self):
|
369
390
|
"""Gets the loadbalancer_id of this ListPoolsRequest.
|
370
391
|
|
371
|
-
|
392
|
+
后端服务器组绑定的负载均衡器ID。 支持多值查询,查询条件格式:*loadbalancer_id=xxx&loadbalancer_id=xxx*。
|
372
393
|
|
373
394
|
:return: The loadbalancer_id of this ListPoolsRequest.
|
374
395
|
:rtype: list[str]
|
@@ -379,7 +400,7 @@ class ListPoolsRequest:
|
|
379
400
|
def loadbalancer_id(self, loadbalancer_id):
|
380
401
|
"""Sets the loadbalancer_id of this ListPoolsRequest.
|
381
402
|
|
382
|
-
|
403
|
+
后端服务器组绑定的负载均衡器ID。 支持多值查询,查询条件格式:*loadbalancer_id=xxx&loadbalancer_id=xxx*。
|
383
404
|
|
384
405
|
:param loadbalancer_id: The loadbalancer_id of this ListPoolsRequest.
|
385
406
|
:type loadbalancer_id: list[str]
|
@@ -390,7 +411,7 @@ class ListPoolsRequest:
|
|
390
411
|
def protocol(self):
|
391
412
|
"""Gets the protocol of this ListPoolsRequest.
|
392
413
|
|
393
|
-
|
414
|
+
后端服务器组的后端协议。 取值:TCP、UDP、[IP、](tag:hws_eu)TLS、HTTP、HTTPS、QUIC和GRPC。 支持多值查询,查询条件格式:*protocol=xxx&protocol=xxx*。 [不支持QUIC协议。](tag:hws_eu,g42,hk_g42,hcso_dt) [荷兰region不支持QUIC。](tag:dt,dt_test)
|
394
415
|
|
395
416
|
:return: The protocol of this ListPoolsRequest.
|
396
417
|
:rtype: list[str]
|
@@ -401,7 +422,7 @@ class ListPoolsRequest:
|
|
401
422
|
def protocol(self, protocol):
|
402
423
|
"""Sets the protocol of this ListPoolsRequest.
|
403
424
|
|
404
|
-
|
425
|
+
后端服务器组的后端协议。 取值:TCP、UDP、[IP、](tag:hws_eu)TLS、HTTP、HTTPS、QUIC和GRPC。 支持多值查询,查询条件格式:*protocol=xxx&protocol=xxx*。 [不支持QUIC协议。](tag:hws_eu,g42,hk_g42,hcso_dt) [荷兰region不支持QUIC。](tag:dt,dt_test)
|
405
426
|
|
406
427
|
:param protocol: The protocol of this ListPoolsRequest.
|
407
428
|
:type protocol: list[str]
|
@@ -412,7 +433,7 @@ class ListPoolsRequest:
|
|
412
433
|
def lb_algorithm(self):
|
413
434
|
"""Gets the lb_algorithm of this ListPoolsRequest.
|
414
435
|
|
415
|
-
|
436
|
+
后端服务器组的负载均衡算法。 取值: - ROUND_ROBIN:加权轮询算法。 - LEAST_CONNECTIONS:加权最少连接算法。 - SOURCE_IP:源IP算法。 - QUIC_CID:连接ID算法。 [- 2_TUPLE_HASH:二元组hash算法,仅IP类型的pool支持。 - 3_TUPLE_HASH:三元组hash算法,仅IP类型的pool支持。 - 5_TUPLE_HASH:五元组hash算法,仅IP类型的pool支持。 - IP型pool不指定该字段时,默认设置为5_TUPLE_HASH。](tag:hws_eu) 支持多值查询,查询条件格式:*lb_algorithm=xxx&lb_algorithm=xxx*。 [不支持QUIC_CID。](tag:hws_eu,g42,hk_g42,hcso_dt) [荷兰region不支持QUIC_CID。](tag:dt,dt_test)
|
416
437
|
|
417
438
|
:return: The lb_algorithm of this ListPoolsRequest.
|
418
439
|
:rtype: list[str]
|
@@ -423,7 +444,7 @@ class ListPoolsRequest:
|
|
423
444
|
def lb_algorithm(self, lb_algorithm):
|
424
445
|
"""Sets the lb_algorithm of this ListPoolsRequest.
|
425
446
|
|
426
|
-
|
447
|
+
后端服务器组的负载均衡算法。 取值: - ROUND_ROBIN:加权轮询算法。 - LEAST_CONNECTIONS:加权最少连接算法。 - SOURCE_IP:源IP算法。 - QUIC_CID:连接ID算法。 [- 2_TUPLE_HASH:二元组hash算法,仅IP类型的pool支持。 - 3_TUPLE_HASH:三元组hash算法,仅IP类型的pool支持。 - 5_TUPLE_HASH:五元组hash算法,仅IP类型的pool支持。 - IP型pool不指定该字段时,默认设置为5_TUPLE_HASH。](tag:hws_eu) 支持多值查询,查询条件格式:*lb_algorithm=xxx&lb_algorithm=xxx*。 [不支持QUIC_CID。](tag:hws_eu,g42,hk_g42,hcso_dt) [荷兰region不支持QUIC_CID。](tag:dt,dt_test)
|
427
448
|
|
428
449
|
:param lb_algorithm: The lb_algorithm of this ListPoolsRequest.
|
429
450
|
:type lb_algorithm: list[str]
|
@@ -456,7 +477,7 @@ class ListPoolsRequest:
|
|
456
477
|
def ip_version(self):
|
457
478
|
"""Gets the ip_version of this ListPoolsRequest.
|
458
479
|
|
459
|
-
|
480
|
+
后端服务器组支持的IP版本。 支持多值查询,查询条件格式:*ip_version=xxx&ip_version=xxx*。
|
460
481
|
|
461
482
|
:return: The ip_version of this ListPoolsRequest.
|
462
483
|
:rtype: list[str]
|
@@ -467,7 +488,7 @@ class ListPoolsRequest:
|
|
467
488
|
def ip_version(self, ip_version):
|
468
489
|
"""Sets the ip_version of this ListPoolsRequest.
|
469
490
|
|
470
|
-
|
491
|
+
后端服务器组支持的IP版本。 支持多值查询,查询条件格式:*ip_version=xxx&ip_version=xxx*。
|
471
492
|
|
472
493
|
:param ip_version: The ip_version of this ListPoolsRequest.
|
473
494
|
:type ip_version: list[str]
|
@@ -478,7 +499,7 @@ class ListPoolsRequest:
|
|
478
499
|
def member_address(self):
|
479
500
|
"""Gets the member_address of this ListPoolsRequest.
|
480
501
|
|
481
|
-
|
502
|
+
后端服务器的IP地址。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_address=xxx&member_address=xxx*。
|
482
503
|
|
483
504
|
:return: The member_address of this ListPoolsRequest.
|
484
505
|
:rtype: list[str]
|
@@ -489,7 +510,7 @@ class ListPoolsRequest:
|
|
489
510
|
def member_address(self, member_address):
|
490
511
|
"""Sets the member_address of this ListPoolsRequest.
|
491
512
|
|
492
|
-
|
513
|
+
后端服务器的IP地址。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_address=xxx&member_address=xxx*。
|
493
514
|
|
494
515
|
:param member_address: The member_address of this ListPoolsRequest.
|
495
516
|
:type member_address: list[str]
|
@@ -500,7 +521,7 @@ class ListPoolsRequest:
|
|
500
521
|
def member_device_id(self):
|
501
522
|
"""Gets the member_device_id of this ListPoolsRequest.
|
502
523
|
|
503
|
-
|
524
|
+
后端服务器对应的弹性云服务器的ID。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_device_id=xxx&member_device_id=xxx*。
|
504
525
|
|
505
526
|
:return: The member_device_id of this ListPoolsRequest.
|
506
527
|
:rtype: list[str]
|
@@ -511,7 +532,7 @@ class ListPoolsRequest:
|
|
511
532
|
def member_device_id(self, member_device_id):
|
512
533
|
"""Sets the member_device_id of this ListPoolsRequest.
|
513
534
|
|
514
|
-
|
535
|
+
后端服务器对应的弹性云服务器的ID。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_device_id=xxx&member_device_id=xxx*。
|
515
536
|
|
516
537
|
:param member_device_id: The member_device_id of this ListPoolsRequest.
|
517
538
|
:type member_device_id: list[str]
|
@@ -522,7 +543,7 @@ class ListPoolsRequest:
|
|
522
543
|
def member_deletion_protection_enable(self):
|
523
544
|
"""Gets the member_deletion_protection_enable of this ListPoolsRequest.
|
524
545
|
|
525
|
-
是否开启删除保护,false不开启,true开启,不传查询全部。 [不支持该字段,请勿使用。](tag:hws_eu,g42,hk_g42) [荷兰region不支持该字段,请勿使用。](tag:dt)
|
546
|
+
是否开启删除保护,false不开启,true开启,不传查询全部。 [不支持该字段,请勿使用。](tag:hws_eu,g42,hk_g42) [荷兰region不支持该字段,请勿使用。](tag:dt,dt_test)
|
526
547
|
|
527
548
|
:return: The member_deletion_protection_enable of this ListPoolsRequest.
|
528
549
|
:rtype: bool
|
@@ -533,7 +554,7 @@ class ListPoolsRequest:
|
|
533
554
|
def member_deletion_protection_enable(self, member_deletion_protection_enable):
|
534
555
|
"""Sets the member_deletion_protection_enable of this ListPoolsRequest.
|
535
556
|
|
536
|
-
是否开启删除保护,false不开启,true开启,不传查询全部。 [不支持该字段,请勿使用。](tag:hws_eu,g42,hk_g42) [荷兰region不支持该字段,请勿使用。](tag:dt)
|
557
|
+
是否开启删除保护,false不开启,true开启,不传查询全部。 [不支持该字段,请勿使用。](tag:hws_eu,g42,hk_g42) [荷兰region不支持该字段,请勿使用。](tag:dt,dt_test)
|
537
558
|
|
538
559
|
:param member_deletion_protection_enable: The member_deletion_protection_enable of this ListPoolsRequest.
|
539
560
|
:type member_deletion_protection_enable: bool
|
@@ -566,7 +587,7 @@ class ListPoolsRequest:
|
|
566
587
|
def member_instance_id(self):
|
567
588
|
"""Gets the member_instance_id of this ListPoolsRequest.
|
568
589
|
|
569
|
-
|
590
|
+
后端服务器ID。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_instance_id=xxx&member_instance_id=xxx*。
|
570
591
|
|
571
592
|
:return: The member_instance_id of this ListPoolsRequest.
|
572
593
|
:rtype: list[str]
|
@@ -577,7 +598,7 @@ class ListPoolsRequest:
|
|
577
598
|
def member_instance_id(self, member_instance_id):
|
578
599
|
"""Sets the member_instance_id of this ListPoolsRequest.
|
579
600
|
|
580
|
-
|
601
|
+
后端服务器ID。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_instance_id=xxx&member_instance_id=xxx*。
|
581
602
|
|
582
603
|
:param member_instance_id: The member_instance_id of this ListPoolsRequest.
|
583
604
|
:type member_instance_id: list[str]
|
@@ -588,7 +609,7 @@ class ListPoolsRequest:
|
|
588
609
|
def vpc_id(self):
|
589
610
|
"""Gets the vpc_id of this ListPoolsRequest.
|
590
611
|
|
591
|
-
|
612
|
+
后端服务器组关联的虚拟私有云的ID。
|
592
613
|
|
593
614
|
:return: The vpc_id of this ListPoolsRequest.
|
594
615
|
:rtype: list[str]
|
@@ -599,7 +620,7 @@ class ListPoolsRequest:
|
|
599
620
|
def vpc_id(self, vpc_id):
|
600
621
|
"""Sets the vpc_id of this ListPoolsRequest.
|
601
622
|
|
602
|
-
|
623
|
+
后端服务器组关联的虚拟私有云的ID。
|
603
624
|
|
604
625
|
:param vpc_id: The vpc_id of this ListPoolsRequest.
|
605
626
|
:type vpc_id: list[str]
|
@@ -672,6 +693,72 @@ class ListPoolsRequest:
|
|
672
693
|
"""
|
673
694
|
self._connection_drain = connection_drain
|
674
695
|
|
696
|
+
@property
|
697
|
+
def pool_health(self):
|
698
|
+
"""Gets the pool_health of this ListPoolsRequest.
|
699
|
+
|
700
|
+
查询是否开启后端全下线转发功能,查询条件格式:*pool_health=minimum_healthy_member_count=0或者*pool_health=minimum_healthy_member_count=1
|
701
|
+
|
702
|
+
:return: The pool_health of this ListPoolsRequest.
|
703
|
+
:rtype: str
|
704
|
+
"""
|
705
|
+
return self._pool_health
|
706
|
+
|
707
|
+
@pool_health.setter
|
708
|
+
def pool_health(self, pool_health):
|
709
|
+
"""Sets the pool_health of this ListPoolsRequest.
|
710
|
+
|
711
|
+
查询是否开启后端全下线转发功能,查询条件格式:*pool_health=minimum_healthy_member_count=0或者*pool_health=minimum_healthy_member_count=1
|
712
|
+
|
713
|
+
:param pool_health: The pool_health of this ListPoolsRequest.
|
714
|
+
:type pool_health: str
|
715
|
+
"""
|
716
|
+
self._pool_health = pool_health
|
717
|
+
|
718
|
+
@property
|
719
|
+
def any_port_enable(self):
|
720
|
+
"""Gets the any_port_enable of this ListPoolsRequest.
|
721
|
+
|
722
|
+
后端是否开启端口透传。开启后,后端服务器端口与前端监听器端口保持一致。取值:false不开启,true开启。
|
723
|
+
|
724
|
+
:return: The any_port_enable of this ListPoolsRequest.
|
725
|
+
:rtype: bool
|
726
|
+
"""
|
727
|
+
return self._any_port_enable
|
728
|
+
|
729
|
+
@any_port_enable.setter
|
730
|
+
def any_port_enable(self, any_port_enable):
|
731
|
+
"""Sets the any_port_enable of this ListPoolsRequest.
|
732
|
+
|
733
|
+
后端是否开启端口透传。开启后,后端服务器端口与前端监听器端口保持一致。取值:false不开启,true开启。
|
734
|
+
|
735
|
+
:param any_port_enable: The any_port_enable of this ListPoolsRequest.
|
736
|
+
:type any_port_enable: bool
|
737
|
+
"""
|
738
|
+
self._any_port_enable = any_port_enable
|
739
|
+
|
740
|
+
@property
|
741
|
+
def public_border_group(self):
|
742
|
+
"""Gets the public_border_group of this ListPoolsRequest.
|
743
|
+
|
744
|
+
可用区组
|
745
|
+
|
746
|
+
:return: The public_border_group of this ListPoolsRequest.
|
747
|
+
:rtype: str
|
748
|
+
"""
|
749
|
+
return self._public_border_group
|
750
|
+
|
751
|
+
@public_border_group.setter
|
752
|
+
def public_border_group(self, public_border_group):
|
753
|
+
"""Sets the public_border_group of this ListPoolsRequest.
|
754
|
+
|
755
|
+
可用区组
|
756
|
+
|
757
|
+
:param public_border_group: The public_border_group of this ListPoolsRequest.
|
758
|
+
:type public_border_group: str
|
759
|
+
"""
|
760
|
+
self._public_border_group = public_border_group
|
761
|
+
|
675
762
|
def to_dict(self):
|
676
763
|
"""Returns the model properties as a dict"""
|
677
764
|
result = {}
|
@@ -45,7 +45,7 @@ class ListSecurityPoliciesRequest:
|
|
45
45
|
|
46
46
|
:param marker: 上一页最后一条记录的ID。 使用说明: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
|
47
47
|
:type marker: str
|
48
|
-
:param limit:
|
48
|
+
:param limit: 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
|
49
49
|
:type limit: int
|
50
50
|
:param page_reverse: 是否反向查询。 取值: - true:查询上一页。 - false:查询下一页,默认。 使用说明: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。
|
51
51
|
:type page_reverse: bool
|
@@ -116,7 +116,7 @@ class ListSecurityPoliciesRequest:
|
|
116
116
|
def limit(self):
|
117
117
|
"""Gets the limit of this ListSecurityPoliciesRequest.
|
118
118
|
|
119
|
-
|
119
|
+
参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
|
120
120
|
|
121
121
|
:return: The limit of this ListSecurityPoliciesRequest.
|
122
122
|
:rtype: int
|
@@ -127,7 +127,7 @@ class ListSecurityPoliciesRequest:
|
|
127
127
|
def limit(self, limit):
|
128
128
|
"""Sets the limit of this ListSecurityPoliciesRequest.
|
129
129
|
|
130
|
-
|
130
|
+
参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
|
131
131
|
|
132
132
|
:param limit: The limit of this ListSecurityPoliciesRequest.
|
133
133
|
:type limit: int
|