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
@@ -23,7 +23,8 @@ class ListIpGroupsRequest:
|
|
23
23
|
'id': 'list[str]',
|
24
24
|
'name': 'list[str]',
|
25
25
|
'description': 'list[str]',
|
26
|
-
'ip_list': 'list[str]'
|
26
|
+
'ip_list': 'list[str]',
|
27
|
+
'enterprise_project_id': 'list[str]'
|
27
28
|
}
|
28
29
|
|
29
30
|
attribute_map = {
|
@@ -33,28 +34,31 @@ class ListIpGroupsRequest:
|
|
33
34
|
'id': 'id',
|
34
35
|
'name': 'name',
|
35
36
|
'description': 'description',
|
36
|
-
'ip_list': 'ip_list'
|
37
|
+
'ip_list': 'ip_list',
|
38
|
+
'enterprise_project_id': 'enterprise_project_id'
|
37
39
|
}
|
38
40
|
|
39
|
-
def __init__(self, marker=None, limit=None, page_reverse=None, id=None, name=None, description=None, ip_list=None):
|
41
|
+
def __init__(self, marker=None, limit=None, page_reverse=None, id=None, name=None, description=None, ip_list=None, enterprise_project_id=None):
|
40
42
|
"""ListIpGroupsRequest
|
41
43
|
|
42
44
|
The model defined in huaweicloud sdk
|
43
45
|
|
44
|
-
:param marker:
|
46
|
+
:param marker: 参数解释:上一页最后一条记录的ID。 使用说明: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
|
45
47
|
:type marker: str
|
46
|
-
:param limit:
|
48
|
+
:param limit: 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
|
47
49
|
:type limit: int
|
48
|
-
:param page_reverse:
|
50
|
+
:param page_reverse: 参数解释:是否反向查询。 取值: - true:查询上一页。 - false:查询下一页,默认。 使用说明: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。
|
49
51
|
:type page_reverse: bool
|
50
|
-
:param id: IP地址组的ID。
|
52
|
+
:param id: 参数解释:IP地址组的ID。
|
51
53
|
:type id: list[str]
|
52
|
-
:param name: IP地址组的名称。
|
54
|
+
:param name: 参数解释:IP地址组的名称。
|
53
55
|
:type name: list[str]
|
54
|
-
:param description: IP地址组的描述信息。
|
56
|
+
:param description: 参数解释:IP地址组的描述信息。
|
55
57
|
:type description: list[str]
|
56
|
-
:param ip_list: IP地址,多个用逗号分隔。
|
58
|
+
:param ip_list: 参数解释:IP地址,多个用逗号分隔。
|
57
59
|
:type ip_list: list[str]
|
60
|
+
:param enterprise_project_id: 参数解释:企业项目ID。
|
61
|
+
:type enterprise_project_id: list[str]
|
58
62
|
"""
|
59
63
|
|
60
64
|
|
@@ -66,6 +70,7 @@ class ListIpGroupsRequest:
|
|
66
70
|
self._name = None
|
67
71
|
self._description = None
|
68
72
|
self._ip_list = None
|
73
|
+
self._enterprise_project_id = None
|
69
74
|
self.discriminator = None
|
70
75
|
|
71
76
|
if marker is not None:
|
@@ -82,12 +87,14 @@ class ListIpGroupsRequest:
|
|
82
87
|
self.description = description
|
83
88
|
if ip_list is not None:
|
84
89
|
self.ip_list = ip_list
|
90
|
+
if enterprise_project_id is not None:
|
91
|
+
self.enterprise_project_id = enterprise_project_id
|
85
92
|
|
86
93
|
@property
|
87
94
|
def marker(self):
|
88
95
|
"""Gets the marker of this ListIpGroupsRequest.
|
89
96
|
|
90
|
-
|
97
|
+
参数解释:上一页最后一条记录的ID。 使用说明: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
|
91
98
|
|
92
99
|
:return: The marker of this ListIpGroupsRequest.
|
93
100
|
:rtype: str
|
@@ -98,7 +105,7 @@ class ListIpGroupsRequest:
|
|
98
105
|
def marker(self, marker):
|
99
106
|
"""Sets the marker of this ListIpGroupsRequest.
|
100
107
|
|
101
|
-
|
108
|
+
参数解释:上一页最后一条记录的ID。 使用说明: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
|
102
109
|
|
103
110
|
:param marker: The marker of this ListIpGroupsRequest.
|
104
111
|
:type marker: str
|
@@ -109,7 +116,7 @@ class ListIpGroupsRequest:
|
|
109
116
|
def limit(self):
|
110
117
|
"""Gets the limit of this ListIpGroupsRequest.
|
111
118
|
|
112
|
-
|
119
|
+
参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
|
113
120
|
|
114
121
|
:return: The limit of this ListIpGroupsRequest.
|
115
122
|
:rtype: int
|
@@ -120,7 +127,7 @@ class ListIpGroupsRequest:
|
|
120
127
|
def limit(self, limit):
|
121
128
|
"""Sets the limit of this ListIpGroupsRequest.
|
122
129
|
|
123
|
-
|
130
|
+
参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
|
124
131
|
|
125
132
|
:param limit: The limit of this ListIpGroupsRequest.
|
126
133
|
:type limit: int
|
@@ -131,7 +138,7 @@ class ListIpGroupsRequest:
|
|
131
138
|
def page_reverse(self):
|
132
139
|
"""Gets the page_reverse of this ListIpGroupsRequest.
|
133
140
|
|
134
|
-
|
141
|
+
参数解释:是否反向查询。 取值: - true:查询上一页。 - false:查询下一页,默认。 使用说明: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。
|
135
142
|
|
136
143
|
:return: The page_reverse of this ListIpGroupsRequest.
|
137
144
|
:rtype: bool
|
@@ -142,7 +149,7 @@ class ListIpGroupsRequest:
|
|
142
149
|
def page_reverse(self, page_reverse):
|
143
150
|
"""Sets the page_reverse of this ListIpGroupsRequest.
|
144
151
|
|
145
|
-
|
152
|
+
参数解释:是否反向查询。 取值: - true:查询上一页。 - false:查询下一页,默认。 使用说明: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。
|
146
153
|
|
147
154
|
:param page_reverse: The page_reverse of this ListIpGroupsRequest.
|
148
155
|
:type page_reverse: bool
|
@@ -153,7 +160,7 @@ class ListIpGroupsRequest:
|
|
153
160
|
def id(self):
|
154
161
|
"""Gets the id of this ListIpGroupsRequest.
|
155
162
|
|
156
|
-
IP地址组的ID。
|
163
|
+
参数解释:IP地址组的ID。
|
157
164
|
|
158
165
|
:return: The id of this ListIpGroupsRequest.
|
159
166
|
:rtype: list[str]
|
@@ -164,7 +171,7 @@ class ListIpGroupsRequest:
|
|
164
171
|
def id(self, id):
|
165
172
|
"""Sets the id of this ListIpGroupsRequest.
|
166
173
|
|
167
|
-
IP地址组的ID。
|
174
|
+
参数解释:IP地址组的ID。
|
168
175
|
|
169
176
|
:param id: The id of this ListIpGroupsRequest.
|
170
177
|
:type id: list[str]
|
@@ -175,7 +182,7 @@ class ListIpGroupsRequest:
|
|
175
182
|
def name(self):
|
176
183
|
"""Gets the name of this ListIpGroupsRequest.
|
177
184
|
|
178
|
-
IP地址组的名称。
|
185
|
+
参数解释:IP地址组的名称。
|
179
186
|
|
180
187
|
:return: The name of this ListIpGroupsRequest.
|
181
188
|
:rtype: list[str]
|
@@ -186,7 +193,7 @@ class ListIpGroupsRequest:
|
|
186
193
|
def name(self, name):
|
187
194
|
"""Sets the name of this ListIpGroupsRequest.
|
188
195
|
|
189
|
-
IP地址组的名称。
|
196
|
+
参数解释:IP地址组的名称。
|
190
197
|
|
191
198
|
:param name: The name of this ListIpGroupsRequest.
|
192
199
|
:type name: list[str]
|
@@ -197,7 +204,7 @@ class ListIpGroupsRequest:
|
|
197
204
|
def description(self):
|
198
205
|
"""Gets the description of this ListIpGroupsRequest.
|
199
206
|
|
200
|
-
IP地址组的描述信息。
|
207
|
+
参数解释:IP地址组的描述信息。
|
201
208
|
|
202
209
|
:return: The description of this ListIpGroupsRequest.
|
203
210
|
:rtype: list[str]
|
@@ -208,7 +215,7 @@ class ListIpGroupsRequest:
|
|
208
215
|
def description(self, description):
|
209
216
|
"""Sets the description of this ListIpGroupsRequest.
|
210
217
|
|
211
|
-
IP地址组的描述信息。
|
218
|
+
参数解释:IP地址组的描述信息。
|
212
219
|
|
213
220
|
:param description: The description of this ListIpGroupsRequest.
|
214
221
|
:type description: list[str]
|
@@ -219,7 +226,7 @@ class ListIpGroupsRequest:
|
|
219
226
|
def ip_list(self):
|
220
227
|
"""Gets the ip_list of this ListIpGroupsRequest.
|
221
228
|
|
222
|
-
IP地址,多个用逗号分隔。
|
229
|
+
参数解释:IP地址,多个用逗号分隔。
|
223
230
|
|
224
231
|
:return: The ip_list of this ListIpGroupsRequest.
|
225
232
|
:rtype: list[str]
|
@@ -230,13 +237,35 @@ class ListIpGroupsRequest:
|
|
230
237
|
def ip_list(self, ip_list):
|
231
238
|
"""Sets the ip_list of this ListIpGroupsRequest.
|
232
239
|
|
233
|
-
IP地址,多个用逗号分隔。
|
240
|
+
参数解释:IP地址,多个用逗号分隔。
|
234
241
|
|
235
242
|
:param ip_list: The ip_list of this ListIpGroupsRequest.
|
236
243
|
:type ip_list: list[str]
|
237
244
|
"""
|
238
245
|
self._ip_list = ip_list
|
239
246
|
|
247
|
+
@property
|
248
|
+
def enterprise_project_id(self):
|
249
|
+
"""Gets the enterprise_project_id of this ListIpGroupsRequest.
|
250
|
+
|
251
|
+
参数解释:企业项目ID。
|
252
|
+
|
253
|
+
:return: The enterprise_project_id of this ListIpGroupsRequest.
|
254
|
+
:rtype: list[str]
|
255
|
+
"""
|
256
|
+
return self._enterprise_project_id
|
257
|
+
|
258
|
+
@enterprise_project_id.setter
|
259
|
+
def enterprise_project_id(self, enterprise_project_id):
|
260
|
+
"""Sets the enterprise_project_id of this ListIpGroupsRequest.
|
261
|
+
|
262
|
+
参数解释:企业项目ID。
|
263
|
+
|
264
|
+
:param enterprise_project_id: The enterprise_project_id of this ListIpGroupsRequest.
|
265
|
+
:type enterprise_project_id: list[str]
|
266
|
+
"""
|
267
|
+
self._enterprise_project_id = enterprise_project_id
|
268
|
+
|
240
269
|
def to_dict(self):
|
241
270
|
"""Returns the model properties as a dict"""
|
242
271
|
result = {}
|
@@ -34,9 +34,9 @@ class ListIpGroupsResponse(SdkResponse):
|
|
34
34
|
|
35
35
|
The model defined in huaweicloud sdk
|
36
36
|
|
37
|
-
:param ipgroups: IP地址组列表返回对象。
|
37
|
+
:param ipgroups: 参数解释:IP地址组列表返回对象。
|
38
38
|
:type ipgroups: list[:class:`huaweicloudsdkelb.v3.IpGroup`]
|
39
|
-
:param request_id:
|
39
|
+
:param request_id: 参数解释:请求ID。 注:自动生成 。
|
40
40
|
:type request_id: str
|
41
41
|
:param page_info:
|
42
42
|
:type page_info: :class:`huaweicloudsdkelb.v3.PageInfo`
|
@@ -60,7 +60,7 @@ class ListIpGroupsResponse(SdkResponse):
|
|
60
60
|
def ipgroups(self):
|
61
61
|
"""Gets the ipgroups of this ListIpGroupsResponse.
|
62
62
|
|
63
|
-
IP地址组列表返回对象。
|
63
|
+
参数解释:IP地址组列表返回对象。
|
64
64
|
|
65
65
|
:return: The ipgroups of this ListIpGroupsResponse.
|
66
66
|
:rtype: list[:class:`huaweicloudsdkelb.v3.IpGroup`]
|
@@ -71,7 +71,7 @@ class ListIpGroupsResponse(SdkResponse):
|
|
71
71
|
def ipgroups(self, ipgroups):
|
72
72
|
"""Sets the ipgroups of this ListIpGroupsResponse.
|
73
73
|
|
74
|
-
IP地址组列表返回对象。
|
74
|
+
参数解释:IP地址组列表返回对象。
|
75
75
|
|
76
76
|
:param ipgroups: The ipgroups of this ListIpGroupsResponse.
|
77
77
|
:type ipgroups: list[:class:`huaweicloudsdkelb.v3.IpGroup`]
|
@@ -82,7 +82,7 @@ class ListIpGroupsResponse(SdkResponse):
|
|
82
82
|
def request_id(self):
|
83
83
|
"""Gets the request_id of this ListIpGroupsResponse.
|
84
84
|
|
85
|
-
|
85
|
+
参数解释:请求ID。 注:自动生成 。
|
86
86
|
|
87
87
|
:return: The request_id of this ListIpGroupsResponse.
|
88
88
|
:rtype: str
|
@@ -93,7 +93,7 @@ class ListIpGroupsResponse(SdkResponse):
|
|
93
93
|
def request_id(self, request_id):
|
94
94
|
"""Sets the request_id of this ListIpGroupsResponse.
|
95
95
|
|
96
|
-
|
96
|
+
参数解释:请求ID。 注:自动生成 。
|
97
97
|
|
98
98
|
:param request_id: The request_id of this ListIpGroupsResponse.
|
99
99
|
:type request_id: str
|
@@ -61,39 +61,39 @@ class ListL7PoliciesRequest:
|
|
61
61
|
|
62
62
|
The model defined in huaweicloud sdk
|
63
63
|
|
64
|
-
:param marker:
|
64
|
+
:param marker: 参数解释:上一页最后一条记录的ID。 约束限制: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
|
65
65
|
:type marker: str
|
66
|
-
:param limit:
|
66
|
+
:param limit: 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
|
67
67
|
:type limit: int
|
68
|
-
:param page_reverse:
|
68
|
+
:param page_reverse: 参数解释:是否反向查询。 约束限制: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。 取值范围: - true:查询上一页。 - false:查询下一页。 默认取值:false
|
69
69
|
:type page_reverse: bool
|
70
|
-
:param enterprise_project_id:
|
70
|
+
: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)
|
71
71
|
:type enterprise_project_id: list[str]
|
72
|
-
:param id:
|
72
|
+
:param id: 参数解释:转发策略ID。 支持多值查询,查询条件格式:*id=xxx&id=xxx*。
|
73
73
|
:type id: list[str]
|
74
|
-
:param name:
|
74
|
+
:param name: 参数解释:转发策略名称。 支持多值查询,查询条件格式:**name=xxx&name=xxx**。
|
75
75
|
:type name: list[str]
|
76
|
-
:param description:
|
76
|
+
:param description: 参数解释:转发策略额描述信息。 支持多值查询,查询条件格式:*description=xxx&description=xxx*。
|
77
77
|
:type description: list[str]
|
78
|
-
:param admin_state_up:
|
78
|
+
:param admin_state_up: 参数解释:转发策略的管理状态。
|
79
79
|
:type admin_state_up: bool
|
80
|
-
:param listener_id:
|
80
|
+
:param listener_id: 参数解释:转发策略所属的监听器ID。 支持多值查询,查询条件格式:*******listener_id=xxx&listener_id=xxx*******。
|
81
81
|
:type listener_id: list[str]
|
82
|
-
:param position:
|
82
|
+
:param position: 参数解释:转发策略的优先级。 支持多值查询,查询条件格式:****position=xxx&position=xxx****。 不支持该字段,请勿使用。
|
83
83
|
:type position: list[int]
|
84
|
-
:param action:
|
84
|
+
:param action: 参数解释:转发策略的转发动作。 取值范围: - REDIRECT_TO_POOL:转发到后端服务器组。 - REDIRECT_TO_LISTENER:重定向到监听器。 - REDIRECT_TO_URL:重定向到URL。 - FIXED_RESPONSE:返回固定响应体。 支持多值查询,查询条件格式:*****action=xxx&action=xxx*****。 [不支持REDIRECT_TO_URL和FIXED_RESPONSE](tag:hcso_dt)
|
85
85
|
:type action: list[str]
|
86
|
-
:param redirect_url:
|
86
|
+
:param redirect_url: 参数解释:转发到的url。 支持多值查询,查询条件格式:****redirect_url=xxx&redirect_url=xxx****。 不支持该字段,请勿使用。
|
87
87
|
:type redirect_url: list[str]
|
88
|
-
:param redirect_pool_id:
|
88
|
+
:param redirect_pool_id: 参数解释:转发到pool的ID。 支持多值查询,查询条件格式:***redirect_pool_id=xxx&redirect_pool_id=xxx***。
|
89
89
|
:type redirect_pool_id: list[str]
|
90
|
-
:param redirect_listener_id:
|
90
|
+
:param redirect_listener_id: 参数解释:转发到的listener的ID。 支持多值查询,查询条件格式:**redirect_listener_id=xxx&redirect_listener_id=xxx**。
|
91
91
|
:type redirect_listener_id: list[str]
|
92
|
-
:param provisioning_status:
|
92
|
+
:param provisioning_status: 参数解释:转发策略的配置状态。 取值范围: - ACTIVE: 表示正常。 - ERROR: 表示当前策略与同一监听器下的其他策略存在相同的规则配置。 支持多值查询,查询条件格式:*provisioning_status=xxx&provisioning_status=xxx*。
|
93
93
|
:type provisioning_status: list[str]
|
94
|
-
:param display_all_rules:
|
94
|
+
:param display_all_rules: 参数解释:是否显示转发策略下的rule详细信息。 取值范围: - true:显示policy下面的rule的详细信息。 - false:只显示policy下面的rule的id信息
|
95
95
|
:type display_all_rules: bool
|
96
|
-
:param priority:
|
96
|
+
:param priority: 参数解释:转发策略的优先级。数值越小,优先级越高。 支持多值查询,查询条件格式:*priority=xxx&priority=xxx*。 [不支持该字段,请勿使用。](tag:hcso_dt)
|
97
97
|
:type priority: list[int]
|
98
98
|
"""
|
99
99
|
|
@@ -157,7 +157,7 @@ class ListL7PoliciesRequest:
|
|
157
157
|
def marker(self):
|
158
158
|
"""Gets the marker of this ListL7PoliciesRequest.
|
159
159
|
|
160
|
-
|
160
|
+
参数解释:上一页最后一条记录的ID。 约束限制: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
|
161
161
|
|
162
162
|
:return: The marker of this ListL7PoliciesRequest.
|
163
163
|
:rtype: str
|
@@ -168,7 +168,7 @@ class ListL7PoliciesRequest:
|
|
168
168
|
def marker(self, marker):
|
169
169
|
"""Sets the marker of this ListL7PoliciesRequest.
|
170
170
|
|
171
|
-
|
171
|
+
参数解释:上一页最后一条记录的ID。 约束限制: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
|
172
172
|
|
173
173
|
:param marker: The marker of this ListL7PoliciesRequest.
|
174
174
|
:type marker: str
|
@@ -179,7 +179,7 @@ class ListL7PoliciesRequest:
|
|
179
179
|
def limit(self):
|
180
180
|
"""Gets the limit of this ListL7PoliciesRequest.
|
181
181
|
|
182
|
-
|
182
|
+
参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
|
183
183
|
|
184
184
|
:return: The limit of this ListL7PoliciesRequest.
|
185
185
|
:rtype: int
|
@@ -190,7 +190,7 @@ class ListL7PoliciesRequest:
|
|
190
190
|
def limit(self, limit):
|
191
191
|
"""Sets the limit of this ListL7PoliciesRequest.
|
192
192
|
|
193
|
-
|
193
|
+
参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
|
194
194
|
|
195
195
|
:param limit: The limit of this ListL7PoliciesRequest.
|
196
196
|
:type limit: int
|
@@ -201,7 +201,7 @@ class ListL7PoliciesRequest:
|
|
201
201
|
def page_reverse(self):
|
202
202
|
"""Gets the page_reverse of this ListL7PoliciesRequest.
|
203
203
|
|
204
|
-
|
204
|
+
参数解释:是否反向查询。 约束限制: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。 取值范围: - true:查询上一页。 - false:查询下一页。 默认取值:false
|
205
205
|
|
206
206
|
:return: The page_reverse of this ListL7PoliciesRequest.
|
207
207
|
:rtype: bool
|
@@ -212,7 +212,7 @@ class ListL7PoliciesRequest:
|
|
212
212
|
def page_reverse(self, page_reverse):
|
213
213
|
"""Sets the page_reverse of this ListL7PoliciesRequest.
|
214
214
|
|
215
|
-
|
215
|
+
参数解释:是否反向查询。 约束限制: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。 取值范围: - true:查询上一页。 - false:查询下一页。 默认取值:false
|
216
216
|
|
217
217
|
:param page_reverse: The page_reverse of this ListL7PoliciesRequest.
|
218
218
|
:type page_reverse: bool
|
@@ -223,7 +223,7 @@ class ListL7PoliciesRequest:
|
|
223
223
|
def enterprise_project_id(self):
|
224
224
|
"""Gets the enterprise_project_id of this ListL7PoliciesRequest.
|
225
225
|
|
226
|
-
|
226
|
+
参数解释:企业项目ID。不传时查询default企业项目\"0\"下的资源,鉴权按照default企业项目鉴权。 如果传值,则传已存在的企业项目ID或all_granted_eps(表示查询所有企业项目)进行查询。 支持多值查询,查询条件格式: *enterprise_project_id=xxx&enterprise_project_id=xxx*。 [不支持该字段,请勿使用。](tag:dt,dt_test,hcso_dt)
|
227
227
|
|
228
228
|
:return: The enterprise_project_id of this ListL7PoliciesRequest.
|
229
229
|
:rtype: list[str]
|
@@ -234,7 +234,7 @@ class ListL7PoliciesRequest:
|
|
234
234
|
def enterprise_project_id(self, enterprise_project_id):
|
235
235
|
"""Sets the enterprise_project_id of this ListL7PoliciesRequest.
|
236
236
|
|
237
|
-
|
237
|
+
参数解释:企业项目ID。不传时查询default企业项目\"0\"下的资源,鉴权按照default企业项目鉴权。 如果传值,则传已存在的企业项目ID或all_granted_eps(表示查询所有企业项目)进行查询。 支持多值查询,查询条件格式: *enterprise_project_id=xxx&enterprise_project_id=xxx*。 [不支持该字段,请勿使用。](tag:dt,dt_test,hcso_dt)
|
238
238
|
|
239
239
|
:param enterprise_project_id: The enterprise_project_id of this ListL7PoliciesRequest.
|
240
240
|
:type enterprise_project_id: list[str]
|
@@ -245,7 +245,7 @@ class ListL7PoliciesRequest:
|
|
245
245
|
def id(self):
|
246
246
|
"""Gets the id of this ListL7PoliciesRequest.
|
247
247
|
|
248
|
-
|
248
|
+
参数解释:转发策略ID。 支持多值查询,查询条件格式:*id=xxx&id=xxx*。
|
249
249
|
|
250
250
|
:return: The id of this ListL7PoliciesRequest.
|
251
251
|
:rtype: list[str]
|
@@ -256,7 +256,7 @@ class ListL7PoliciesRequest:
|
|
256
256
|
def id(self, id):
|
257
257
|
"""Sets the id of this ListL7PoliciesRequest.
|
258
258
|
|
259
|
-
|
259
|
+
参数解释:转发策略ID。 支持多值查询,查询条件格式:*id=xxx&id=xxx*。
|
260
260
|
|
261
261
|
:param id: The id of this ListL7PoliciesRequest.
|
262
262
|
:type id: list[str]
|
@@ -267,7 +267,7 @@ class ListL7PoliciesRequest:
|
|
267
267
|
def name(self):
|
268
268
|
"""Gets the name of this ListL7PoliciesRequest.
|
269
269
|
|
270
|
-
|
270
|
+
参数解释:转发策略名称。 支持多值查询,查询条件格式:**name=xxx&name=xxx**。
|
271
271
|
|
272
272
|
:return: The name of this ListL7PoliciesRequest.
|
273
273
|
:rtype: list[str]
|
@@ -278,7 +278,7 @@ class ListL7PoliciesRequest:
|
|
278
278
|
def name(self, name):
|
279
279
|
"""Sets the name of this ListL7PoliciesRequest.
|
280
280
|
|
281
|
-
|
281
|
+
参数解释:转发策略名称。 支持多值查询,查询条件格式:**name=xxx&name=xxx**。
|
282
282
|
|
283
283
|
:param name: The name of this ListL7PoliciesRequest.
|
284
284
|
:type name: list[str]
|
@@ -289,7 +289,7 @@ class ListL7PoliciesRequest:
|
|
289
289
|
def description(self):
|
290
290
|
"""Gets the description of this ListL7PoliciesRequest.
|
291
291
|
|
292
|
-
|
292
|
+
参数解释:转发策略额描述信息。 支持多值查询,查询条件格式:*description=xxx&description=xxx*。
|
293
293
|
|
294
294
|
:return: The description of this ListL7PoliciesRequest.
|
295
295
|
:rtype: list[str]
|
@@ -300,7 +300,7 @@ class ListL7PoliciesRequest:
|
|
300
300
|
def description(self, description):
|
301
301
|
"""Sets the description of this ListL7PoliciesRequest.
|
302
302
|
|
303
|
-
|
303
|
+
参数解释:转发策略额描述信息。 支持多值查询,查询条件格式:*description=xxx&description=xxx*。
|
304
304
|
|
305
305
|
:param description: The description of this ListL7PoliciesRequest.
|
306
306
|
:type description: list[str]
|
@@ -311,7 +311,7 @@ class ListL7PoliciesRequest:
|
|
311
311
|
def admin_state_up(self):
|
312
312
|
"""Gets the admin_state_up of this ListL7PoliciesRequest.
|
313
313
|
|
314
|
-
|
314
|
+
参数解释:转发策略的管理状态。
|
315
315
|
|
316
316
|
:return: The admin_state_up of this ListL7PoliciesRequest.
|
317
317
|
:rtype: bool
|
@@ -322,7 +322,7 @@ class ListL7PoliciesRequest:
|
|
322
322
|
def admin_state_up(self, admin_state_up):
|
323
323
|
"""Sets the admin_state_up of this ListL7PoliciesRequest.
|
324
324
|
|
325
|
-
|
325
|
+
参数解释:转发策略的管理状态。
|
326
326
|
|
327
327
|
:param admin_state_up: The admin_state_up of this ListL7PoliciesRequest.
|
328
328
|
:type admin_state_up: bool
|
@@ -333,7 +333,7 @@ class ListL7PoliciesRequest:
|
|
333
333
|
def listener_id(self):
|
334
334
|
"""Gets the listener_id of this ListL7PoliciesRequest.
|
335
335
|
|
336
|
-
|
336
|
+
参数解释:转发策略所属的监听器ID。 支持多值查询,查询条件格式:*******listener_id=xxx&listener_id=xxx*******。
|
337
337
|
|
338
338
|
:return: The listener_id of this ListL7PoliciesRequest.
|
339
339
|
:rtype: list[str]
|
@@ -344,7 +344,7 @@ class ListL7PoliciesRequest:
|
|
344
344
|
def listener_id(self, listener_id):
|
345
345
|
"""Sets the listener_id of this ListL7PoliciesRequest.
|
346
346
|
|
347
|
-
|
347
|
+
参数解释:转发策略所属的监听器ID。 支持多值查询,查询条件格式:*******listener_id=xxx&listener_id=xxx*******。
|
348
348
|
|
349
349
|
:param listener_id: The listener_id of this ListL7PoliciesRequest.
|
350
350
|
:type listener_id: list[str]
|
@@ -355,7 +355,7 @@ class ListL7PoliciesRequest:
|
|
355
355
|
def position(self):
|
356
356
|
"""Gets the position of this ListL7PoliciesRequest.
|
357
357
|
|
358
|
-
|
358
|
+
参数解释:转发策略的优先级。 支持多值查询,查询条件格式:****position=xxx&position=xxx****。 不支持该字段,请勿使用。
|
359
359
|
|
360
360
|
:return: The position of this ListL7PoliciesRequest.
|
361
361
|
:rtype: list[int]
|
@@ -366,7 +366,7 @@ class ListL7PoliciesRequest:
|
|
366
366
|
def position(self, position):
|
367
367
|
"""Sets the position of this ListL7PoliciesRequest.
|
368
368
|
|
369
|
-
|
369
|
+
参数解释:转发策略的优先级。 支持多值查询,查询条件格式:****position=xxx&position=xxx****。 不支持该字段,请勿使用。
|
370
370
|
|
371
371
|
:param position: The position of this ListL7PoliciesRequest.
|
372
372
|
:type position: list[int]
|
@@ -377,7 +377,7 @@ class ListL7PoliciesRequest:
|
|
377
377
|
def action(self):
|
378
378
|
"""Gets the action of this ListL7PoliciesRequest.
|
379
379
|
|
380
|
-
|
380
|
+
参数解释:转发策略的转发动作。 取值范围: - REDIRECT_TO_POOL:转发到后端服务器组。 - REDIRECT_TO_LISTENER:重定向到监听器。 - REDIRECT_TO_URL:重定向到URL。 - FIXED_RESPONSE:返回固定响应体。 支持多值查询,查询条件格式:*****action=xxx&action=xxx*****。 [不支持REDIRECT_TO_URL和FIXED_RESPONSE](tag:hcso_dt)
|
381
381
|
|
382
382
|
:return: The action of this ListL7PoliciesRequest.
|
383
383
|
:rtype: list[str]
|
@@ -388,7 +388,7 @@ class ListL7PoliciesRequest:
|
|
388
388
|
def action(self, action):
|
389
389
|
"""Sets the action of this ListL7PoliciesRequest.
|
390
390
|
|
391
|
-
|
391
|
+
参数解释:转发策略的转发动作。 取值范围: - REDIRECT_TO_POOL:转发到后端服务器组。 - REDIRECT_TO_LISTENER:重定向到监听器。 - REDIRECT_TO_URL:重定向到URL。 - FIXED_RESPONSE:返回固定响应体。 支持多值查询,查询条件格式:*****action=xxx&action=xxx*****。 [不支持REDIRECT_TO_URL和FIXED_RESPONSE](tag:hcso_dt)
|
392
392
|
|
393
393
|
:param action: The action of this ListL7PoliciesRequest.
|
394
394
|
:type action: list[str]
|
@@ -399,7 +399,7 @@ class ListL7PoliciesRequest:
|
|
399
399
|
def redirect_url(self):
|
400
400
|
"""Gets the redirect_url of this ListL7PoliciesRequest.
|
401
401
|
|
402
|
-
|
402
|
+
参数解释:转发到的url。 支持多值查询,查询条件格式:****redirect_url=xxx&redirect_url=xxx****。 不支持该字段,请勿使用。
|
403
403
|
|
404
404
|
:return: The redirect_url of this ListL7PoliciesRequest.
|
405
405
|
:rtype: list[str]
|
@@ -410,7 +410,7 @@ class ListL7PoliciesRequest:
|
|
410
410
|
def redirect_url(self, redirect_url):
|
411
411
|
"""Sets the redirect_url of this ListL7PoliciesRequest.
|
412
412
|
|
413
|
-
|
413
|
+
参数解释:转发到的url。 支持多值查询,查询条件格式:****redirect_url=xxx&redirect_url=xxx****。 不支持该字段,请勿使用。
|
414
414
|
|
415
415
|
:param redirect_url: The redirect_url of this ListL7PoliciesRequest.
|
416
416
|
:type redirect_url: list[str]
|
@@ -421,7 +421,7 @@ class ListL7PoliciesRequest:
|
|
421
421
|
def redirect_pool_id(self):
|
422
422
|
"""Gets the redirect_pool_id of this ListL7PoliciesRequest.
|
423
423
|
|
424
|
-
|
424
|
+
参数解释:转发到pool的ID。 支持多值查询,查询条件格式:***redirect_pool_id=xxx&redirect_pool_id=xxx***。
|
425
425
|
|
426
426
|
:return: The redirect_pool_id of this ListL7PoliciesRequest.
|
427
427
|
:rtype: list[str]
|
@@ -432,7 +432,7 @@ class ListL7PoliciesRequest:
|
|
432
432
|
def redirect_pool_id(self, redirect_pool_id):
|
433
433
|
"""Sets the redirect_pool_id of this ListL7PoliciesRequest.
|
434
434
|
|
435
|
-
|
435
|
+
参数解释:转发到pool的ID。 支持多值查询,查询条件格式:***redirect_pool_id=xxx&redirect_pool_id=xxx***。
|
436
436
|
|
437
437
|
:param redirect_pool_id: The redirect_pool_id of this ListL7PoliciesRequest.
|
438
438
|
:type redirect_pool_id: list[str]
|
@@ -443,7 +443,7 @@ class ListL7PoliciesRequest:
|
|
443
443
|
def redirect_listener_id(self):
|
444
444
|
"""Gets the redirect_listener_id of this ListL7PoliciesRequest.
|
445
445
|
|
446
|
-
|
446
|
+
参数解释:转发到的listener的ID。 支持多值查询,查询条件格式:**redirect_listener_id=xxx&redirect_listener_id=xxx**。
|
447
447
|
|
448
448
|
:return: The redirect_listener_id of this ListL7PoliciesRequest.
|
449
449
|
:rtype: list[str]
|
@@ -454,7 +454,7 @@ class ListL7PoliciesRequest:
|
|
454
454
|
def redirect_listener_id(self, redirect_listener_id):
|
455
455
|
"""Sets the redirect_listener_id of this ListL7PoliciesRequest.
|
456
456
|
|
457
|
-
|
457
|
+
参数解释:转发到的listener的ID。 支持多值查询,查询条件格式:**redirect_listener_id=xxx&redirect_listener_id=xxx**。
|
458
458
|
|
459
459
|
:param redirect_listener_id: The redirect_listener_id of this ListL7PoliciesRequest.
|
460
460
|
:type redirect_listener_id: list[str]
|
@@ -465,7 +465,7 @@ class ListL7PoliciesRequest:
|
|
465
465
|
def provisioning_status(self):
|
466
466
|
"""Gets the provisioning_status of this ListL7PoliciesRequest.
|
467
467
|
|
468
|
-
|
468
|
+
参数解释:转发策略的配置状态。 取值范围: - ACTIVE: 表示正常。 - ERROR: 表示当前策略与同一监听器下的其他策略存在相同的规则配置。 支持多值查询,查询条件格式:*provisioning_status=xxx&provisioning_status=xxx*。
|
469
469
|
|
470
470
|
:return: The provisioning_status of this ListL7PoliciesRequest.
|
471
471
|
:rtype: list[str]
|
@@ -476,7 +476,7 @@ class ListL7PoliciesRequest:
|
|
476
476
|
def provisioning_status(self, provisioning_status):
|
477
477
|
"""Sets the provisioning_status of this ListL7PoliciesRequest.
|
478
478
|
|
479
|
-
|
479
|
+
参数解释:转发策略的配置状态。 取值范围: - ACTIVE: 表示正常。 - ERROR: 表示当前策略与同一监听器下的其他策略存在相同的规则配置。 支持多值查询,查询条件格式:*provisioning_status=xxx&provisioning_status=xxx*。
|
480
480
|
|
481
481
|
:param provisioning_status: The provisioning_status of this ListL7PoliciesRequest.
|
482
482
|
:type provisioning_status: list[str]
|
@@ -487,7 +487,7 @@ class ListL7PoliciesRequest:
|
|
487
487
|
def display_all_rules(self):
|
488
488
|
"""Gets the display_all_rules of this ListL7PoliciesRequest.
|
489
489
|
|
490
|
-
|
490
|
+
参数解释:是否显示转发策略下的rule详细信息。 取值范围: - true:显示policy下面的rule的详细信息。 - false:只显示policy下面的rule的id信息
|
491
491
|
|
492
492
|
:return: The display_all_rules of this ListL7PoliciesRequest.
|
493
493
|
:rtype: bool
|
@@ -498,7 +498,7 @@ class ListL7PoliciesRequest:
|
|
498
498
|
def display_all_rules(self, display_all_rules):
|
499
499
|
"""Sets the display_all_rules of this ListL7PoliciesRequest.
|
500
500
|
|
501
|
-
|
501
|
+
参数解释:是否显示转发策略下的rule详细信息。 取值范围: - true:显示policy下面的rule的详细信息。 - false:只显示policy下面的rule的id信息
|
502
502
|
|
503
503
|
:param display_all_rules: The display_all_rules of this ListL7PoliciesRequest.
|
504
504
|
:type display_all_rules: bool
|
@@ -509,7 +509,7 @@ class ListL7PoliciesRequest:
|
|
509
509
|
def priority(self):
|
510
510
|
"""Gets the priority of this ListL7PoliciesRequest.
|
511
511
|
|
512
|
-
|
512
|
+
参数解释:转发策略的优先级。数值越小,优先级越高。 支持多值查询,查询条件格式:*priority=xxx&priority=xxx*。 [不支持该字段,请勿使用。](tag:hcso_dt)
|
513
513
|
|
514
514
|
:return: The priority of this ListL7PoliciesRequest.
|
515
515
|
:rtype: list[int]
|
@@ -520,7 +520,7 @@ class ListL7PoliciesRequest:
|
|
520
520
|
def priority(self, priority):
|
521
521
|
"""Sets the priority of this ListL7PoliciesRequest.
|
522
522
|
|
523
|
-
|
523
|
+
参数解释:转发策略的优先级。数值越小,优先级越高。 支持多值查询,查询条件格式:*priority=xxx&priority=xxx*。 [不支持该字段,请勿使用。](tag:hcso_dt)
|
524
524
|
|
525
525
|
:param priority: The priority of this ListL7PoliciesRequest.
|
526
526
|
:type priority: list[int]
|