2021-08-17 07:57:38 +00:00
|
|
|
|
# coding: utf-8
|
|
|
|
|
|
|
|
|
|
from __future__ import absolute_import
|
|
|
|
|
|
|
|
|
|
import importlib
|
2023-11-16 09:47:10 +00:00
|
|
|
|
import warnings
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
from huaweicloudsdkcore.client import Client, ClientBuilder
|
|
|
|
|
from huaweicloudsdkcore.utils import http_utils
|
|
|
|
|
from huaweicloudsdkcore.sdk_stream_request import SdkStreamRequest
|
2023-11-16 09:47:10 +00:00
|
|
|
|
try:
|
|
|
|
|
from huaweicloudsdkcore.invoker.invoker import AsyncInvoker
|
|
|
|
|
except ImportError as e:
|
|
|
|
|
warnings.warn(str(e) + ", please check if you are using the same versions of 'huaweicloudsdkcore' and 'huaweicloudsdkantiddos'")
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class AntiDDoSAsyncClient(Client):
|
|
|
|
|
def __init__(self):
|
|
|
|
|
super(AntiDDoSAsyncClient, self).__init__()
|
|
|
|
|
self.model_package = importlib.import_module("huaweicloudsdkantiddos.v1.model")
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
def new_builder(cls, clazz=None):
|
2023-10-19 08:19:16 +00:00
|
|
|
|
if not clazz:
|
|
|
|
|
client_builder = ClientBuilder(cls)
|
|
|
|
|
else:
|
|
|
|
|
if clazz.__name__ != "AntiDDoSAsyncClient":
|
|
|
|
|
raise TypeError("client type error, support client type is AntiDDoSAsyncClient")
|
|
|
|
|
client_builder = ClientBuilder(clazz)
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2023-10-19 08:19:16 +00:00
|
|
|
|
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2023-10-19 08:19:16 +00:00
|
|
|
|
return client_builder
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
def create_default_config_async(self, request):
|
|
|
|
|
"""配置Anti-DDoS默认防护策略
|
|
|
|
|
|
|
|
|
|
配置用户的默认防护策略。配置防护策略后,新购买的资源在自动开启防护时,会按照该默认防护策略进行配置。
|
2022-04-21 12:03:46 +00:00
|
|
|
|
|
2022-11-30 08:59:35 +00:00
|
|
|
|
Please refer to HUAWEI cloud API Explorer for details.
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2022-11-17 12:13:53 +00:00
|
|
|
|
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:param request: Request instance for CreateDefaultConfig
|
|
|
|
|
:type request: :class:`huaweicloudsdkantiddos.v1.CreateDefaultConfigRequest`
|
|
|
|
|
:rtype: :class:`huaweicloudsdkantiddos.v1.CreateDefaultConfigResponse`
|
2021-08-17 07:57:38 +00:00
|
|
|
|
"""
|
2023-11-16 09:47:10 +00:00
|
|
|
|
http_info = self._create_default_config_http_info(request)
|
|
|
|
|
return self._call_api(**http_info)
|
|
|
|
|
|
|
|
|
|
def create_default_config_async_invoker(self, request):
|
|
|
|
|
http_info = self._create_default_config_http_info(request)
|
|
|
|
|
return AsyncInvoker(self, http_info)
|
|
|
|
|
|
|
|
|
|
def _create_default_config_http_info(self, request):
|
|
|
|
|
http_info = {
|
|
|
|
|
"method": "POST",
|
|
|
|
|
"resource_path": "/v1/{project_id}/antiddos/default-config",
|
|
|
|
|
"request_type": request.__class__.__name__,
|
|
|
|
|
"response_type": "CreateDefaultConfigResponse"
|
|
|
|
|
}
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2023-05-11 09:07:48 +00:00
|
|
|
|
local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2022-11-17 12:13:53 +00:00
|
|
|
|
cname = None
|
|
|
|
|
|
2021-08-17 07:57:38 +00:00
|
|
|
|
collection_formats = {}
|
|
|
|
|
|
|
|
|
|
path_params = {}
|
|
|
|
|
|
|
|
|
|
query_params = []
|
|
|
|
|
|
|
|
|
|
header_params = {}
|
|
|
|
|
|
|
|
|
|
form_params = {}
|
|
|
|
|
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = None
|
2021-08-17 07:57:38 +00:00
|
|
|
|
if 'body' in local_var_params:
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = local_var_params['body']
|
2021-08-17 07:57:38 +00:00
|
|
|
|
if isinstance(request, SdkStreamRequest):
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = request.get_file_stream()
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
response_headers = []
|
|
|
|
|
|
|
|
|
|
header_params['Content-Type'] = http_utils.select_header_content_type(
|
|
|
|
|
['application/json'])
|
|
|
|
|
|
|
|
|
|
auth_settings = []
|
|
|
|
|
|
2023-11-16 09:47:10 +00:00
|
|
|
|
http_info["cname"] = cname
|
|
|
|
|
http_info["collection_formats"] = collection_formats
|
|
|
|
|
http_info["path_params"] = path_params
|
|
|
|
|
http_info["query_params"] = query_params
|
|
|
|
|
http_info["header_params"] = header_params
|
|
|
|
|
http_info["post_params"] = form_params
|
|
|
|
|
http_info["body"] = body
|
|
|
|
|
http_info["response_headers"] = response_headers
|
|
|
|
|
|
|
|
|
|
return http_info
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
def delete_default_config_async(self, request):
|
|
|
|
|
"""删除Ani-DDoS默认防护策略
|
|
|
|
|
|
|
|
|
|
删除用户配置的默认防护策略。
|
2022-04-21 12:03:46 +00:00
|
|
|
|
|
2022-11-30 08:59:35 +00:00
|
|
|
|
Please refer to HUAWEI cloud API Explorer for details.
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2022-11-17 12:13:53 +00:00
|
|
|
|
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:param request: Request instance for DeleteDefaultConfig
|
|
|
|
|
:type request: :class:`huaweicloudsdkantiddos.v1.DeleteDefaultConfigRequest`
|
|
|
|
|
:rtype: :class:`huaweicloudsdkantiddos.v1.DeleteDefaultConfigResponse`
|
2021-08-17 07:57:38 +00:00
|
|
|
|
"""
|
2023-11-16 09:47:10 +00:00
|
|
|
|
http_info = self._delete_default_config_http_info(request)
|
|
|
|
|
return self._call_api(**http_info)
|
|
|
|
|
|
|
|
|
|
def delete_default_config_async_invoker(self, request):
|
|
|
|
|
http_info = self._delete_default_config_http_info(request)
|
|
|
|
|
return AsyncInvoker(self, http_info)
|
|
|
|
|
|
|
|
|
|
def _delete_default_config_http_info(self, request):
|
|
|
|
|
http_info = {
|
|
|
|
|
"method": "DELETE",
|
|
|
|
|
"resource_path": "/v1/{project_id}/antiddos/default-config",
|
|
|
|
|
"request_type": request.__class__.__name__,
|
|
|
|
|
"response_type": "DeleteDefaultConfigResponse"
|
|
|
|
|
}
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2023-05-11 09:07:48 +00:00
|
|
|
|
local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2022-11-17 12:13:53 +00:00
|
|
|
|
cname = None
|
|
|
|
|
|
2021-08-17 07:57:38 +00:00
|
|
|
|
collection_formats = {}
|
|
|
|
|
|
|
|
|
|
path_params = {}
|
|
|
|
|
|
|
|
|
|
query_params = []
|
|
|
|
|
|
|
|
|
|
header_params = {}
|
|
|
|
|
|
|
|
|
|
form_params = {}
|
|
|
|
|
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = None
|
2021-08-17 07:57:38 +00:00
|
|
|
|
if isinstance(request, SdkStreamRequest):
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = request.get_file_stream()
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
response_headers = []
|
|
|
|
|
|
|
|
|
|
header_params['Content-Type'] = http_utils.select_header_content_type(
|
|
|
|
|
['application/json'])
|
|
|
|
|
|
|
|
|
|
auth_settings = []
|
|
|
|
|
|
2023-11-16 09:47:10 +00:00
|
|
|
|
http_info["cname"] = cname
|
|
|
|
|
http_info["collection_formats"] = collection_formats
|
|
|
|
|
http_info["path_params"] = path_params
|
|
|
|
|
http_info["query_params"] = query_params
|
|
|
|
|
http_info["header_params"] = header_params
|
|
|
|
|
http_info["post_params"] = form_params
|
|
|
|
|
http_info["body"] = body
|
|
|
|
|
http_info["response_headers"] = response_headers
|
|
|
|
|
|
|
|
|
|
return http_info
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
def show_alert_config_async(self, request):
|
|
|
|
|
"""查询告警配置信息
|
|
|
|
|
|
|
|
|
|
查询用户配置信息,用户可以通过此接口查询是否接收某类告警,同时可以配置是手机短信还是电子邮件接收告警信息。
|
2022-04-21 12:03:46 +00:00
|
|
|
|
|
2022-11-30 08:59:35 +00:00
|
|
|
|
Please refer to HUAWEI cloud API Explorer for details.
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2022-11-17 12:13:53 +00:00
|
|
|
|
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:param request: Request instance for ShowAlertConfig
|
|
|
|
|
:type request: :class:`huaweicloudsdkantiddos.v1.ShowAlertConfigRequest`
|
|
|
|
|
:rtype: :class:`huaweicloudsdkantiddos.v1.ShowAlertConfigResponse`
|
2021-08-17 07:57:38 +00:00
|
|
|
|
"""
|
2023-11-16 09:47:10 +00:00
|
|
|
|
http_info = self._show_alert_config_http_info(request)
|
|
|
|
|
return self._call_api(**http_info)
|
|
|
|
|
|
|
|
|
|
def show_alert_config_async_invoker(self, request):
|
|
|
|
|
http_info = self._show_alert_config_http_info(request)
|
|
|
|
|
return AsyncInvoker(self, http_info)
|
|
|
|
|
|
|
|
|
|
def _show_alert_config_http_info(self, request):
|
|
|
|
|
http_info = {
|
|
|
|
|
"method": "GET",
|
|
|
|
|
"resource_path": "/v2/{project_id}/warnalert/alertconfig/query",
|
|
|
|
|
"request_type": request.__class__.__name__,
|
|
|
|
|
"response_type": "ShowAlertConfigResponse"
|
|
|
|
|
}
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2023-05-11 09:07:48 +00:00
|
|
|
|
local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2022-11-17 12:13:53 +00:00
|
|
|
|
cname = None
|
|
|
|
|
|
2021-08-17 07:57:38 +00:00
|
|
|
|
collection_formats = {}
|
|
|
|
|
|
|
|
|
|
path_params = {}
|
|
|
|
|
|
|
|
|
|
query_params = []
|
|
|
|
|
|
|
|
|
|
header_params = {}
|
|
|
|
|
|
|
|
|
|
form_params = {}
|
|
|
|
|
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = None
|
2021-08-17 07:57:38 +00:00
|
|
|
|
if isinstance(request, SdkStreamRequest):
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = request.get_file_stream()
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
response_headers = []
|
|
|
|
|
|
|
|
|
|
header_params['Content-Type'] = http_utils.select_header_content_type(
|
|
|
|
|
['application/json'])
|
|
|
|
|
|
|
|
|
|
auth_settings = []
|
|
|
|
|
|
2023-11-16 09:47:10 +00:00
|
|
|
|
http_info["cname"] = cname
|
|
|
|
|
http_info["collection_formats"] = collection_formats
|
|
|
|
|
http_info["path_params"] = path_params
|
|
|
|
|
http_info["query_params"] = query_params
|
|
|
|
|
http_info["header_params"] = header_params
|
|
|
|
|
http_info["post_params"] = form_params
|
|
|
|
|
http_info["body"] = body
|
|
|
|
|
http_info["response_headers"] = response_headers
|
|
|
|
|
|
|
|
|
|
return http_info
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
def show_default_config_async(self, request):
|
|
|
|
|
"""查询Ani-DDoS默认防护策略
|
|
|
|
|
|
|
|
|
|
查询用户配置的默认防护策略。
|
2022-04-21 12:03:46 +00:00
|
|
|
|
|
2022-11-30 08:59:35 +00:00
|
|
|
|
Please refer to HUAWEI cloud API Explorer for details.
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2022-11-17 12:13:53 +00:00
|
|
|
|
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:param request: Request instance for ShowDefaultConfig
|
|
|
|
|
:type request: :class:`huaweicloudsdkantiddos.v1.ShowDefaultConfigRequest`
|
|
|
|
|
:rtype: :class:`huaweicloudsdkantiddos.v1.ShowDefaultConfigResponse`
|
2021-08-17 07:57:38 +00:00
|
|
|
|
"""
|
2023-11-16 09:47:10 +00:00
|
|
|
|
http_info = self._show_default_config_http_info(request)
|
|
|
|
|
return self._call_api(**http_info)
|
|
|
|
|
|
|
|
|
|
def show_default_config_async_invoker(self, request):
|
|
|
|
|
http_info = self._show_default_config_http_info(request)
|
|
|
|
|
return AsyncInvoker(self, http_info)
|
|
|
|
|
|
|
|
|
|
def _show_default_config_http_info(self, request):
|
|
|
|
|
http_info = {
|
|
|
|
|
"method": "GET",
|
|
|
|
|
"resource_path": "/v1/{project_id}/antiddos/default-config",
|
|
|
|
|
"request_type": request.__class__.__name__,
|
|
|
|
|
"response_type": "ShowDefaultConfigResponse"
|
|
|
|
|
}
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2023-05-11 09:07:48 +00:00
|
|
|
|
local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2022-11-17 12:13:53 +00:00
|
|
|
|
cname = None
|
|
|
|
|
|
2021-08-17 07:57:38 +00:00
|
|
|
|
collection_formats = {}
|
|
|
|
|
|
|
|
|
|
path_params = {}
|
|
|
|
|
|
|
|
|
|
query_params = []
|
|
|
|
|
|
|
|
|
|
header_params = {}
|
|
|
|
|
|
|
|
|
|
form_params = {}
|
|
|
|
|
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = None
|
2021-08-17 07:57:38 +00:00
|
|
|
|
if isinstance(request, SdkStreamRequest):
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = request.get_file_stream()
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
response_headers = []
|
|
|
|
|
|
|
|
|
|
header_params['Content-Type'] = http_utils.select_header_content_type(
|
|
|
|
|
['application/json'])
|
|
|
|
|
|
|
|
|
|
auth_settings = []
|
|
|
|
|
|
2023-11-16 09:47:10 +00:00
|
|
|
|
http_info["cname"] = cname
|
|
|
|
|
http_info["collection_formats"] = collection_formats
|
|
|
|
|
http_info["path_params"] = path_params
|
|
|
|
|
http_info["query_params"] = query_params
|
|
|
|
|
http_info["header_params"] = header_params
|
|
|
|
|
http_info["post_params"] = form_params
|
|
|
|
|
http_info["body"] = body
|
|
|
|
|
http_info["response_headers"] = response_headers
|
|
|
|
|
|
|
|
|
|
return http_info
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
def update_alert_config_async(self, request):
|
|
|
|
|
"""更新告警配置信息
|
|
|
|
|
|
|
|
|
|
更新用户配置信息,用户可以通过此接口更新是否接收某类告警,同时可以配置是手机短信还是电子邮件接收告警信息。
|
2022-04-21 12:03:46 +00:00
|
|
|
|
|
2022-11-30 08:59:35 +00:00
|
|
|
|
Please refer to HUAWEI cloud API Explorer for details.
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2022-11-17 12:13:53 +00:00
|
|
|
|
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:param request: Request instance for UpdateAlertConfig
|
|
|
|
|
:type request: :class:`huaweicloudsdkantiddos.v1.UpdateAlertConfigRequest`
|
|
|
|
|
:rtype: :class:`huaweicloudsdkantiddos.v1.UpdateAlertConfigResponse`
|
2021-08-17 07:57:38 +00:00
|
|
|
|
"""
|
2023-11-16 09:47:10 +00:00
|
|
|
|
http_info = self._update_alert_config_http_info(request)
|
|
|
|
|
return self._call_api(**http_info)
|
|
|
|
|
|
|
|
|
|
def update_alert_config_async_invoker(self, request):
|
|
|
|
|
http_info = self._update_alert_config_http_info(request)
|
|
|
|
|
return AsyncInvoker(self, http_info)
|
|
|
|
|
|
|
|
|
|
def _update_alert_config_http_info(self, request):
|
|
|
|
|
http_info = {
|
|
|
|
|
"method": "POST",
|
|
|
|
|
"resource_path": "/v2/{project_id}/warnalert/alertconfig/update",
|
|
|
|
|
"request_type": request.__class__.__name__,
|
|
|
|
|
"response_type": "UpdateAlertConfigResponse"
|
|
|
|
|
}
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2023-05-11 09:07:48 +00:00
|
|
|
|
local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2022-11-17 12:13:53 +00:00
|
|
|
|
cname = None
|
|
|
|
|
|
2021-08-17 07:57:38 +00:00
|
|
|
|
collection_formats = {}
|
|
|
|
|
|
|
|
|
|
path_params = {}
|
|
|
|
|
|
|
|
|
|
query_params = []
|
|
|
|
|
|
|
|
|
|
header_params = {}
|
|
|
|
|
|
|
|
|
|
form_params = {}
|
|
|
|
|
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = None
|
2021-08-17 07:57:38 +00:00
|
|
|
|
if 'body' in local_var_params:
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = local_var_params['body']
|
2021-08-17 07:57:38 +00:00
|
|
|
|
if isinstance(request, SdkStreamRequest):
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = request.get_file_stream()
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
response_headers = []
|
|
|
|
|
|
|
|
|
|
header_params['Content-Type'] = http_utils.select_header_content_type(
|
|
|
|
|
['application/json'])
|
|
|
|
|
|
|
|
|
|
auth_settings = []
|
|
|
|
|
|
2023-11-16 09:47:10 +00:00
|
|
|
|
http_info["cname"] = cname
|
|
|
|
|
http_info["collection_formats"] = collection_formats
|
|
|
|
|
http_info["path_params"] = path_params
|
|
|
|
|
http_info["query_params"] = query_params
|
|
|
|
|
http_info["header_params"] = header_params
|
|
|
|
|
http_info["post_params"] = form_params
|
|
|
|
|
http_info["body"] = body
|
|
|
|
|
http_info["response_headers"] = response_headers
|
|
|
|
|
|
|
|
|
|
return http_info
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
def list_d_dos_status_async(self, request):
|
|
|
|
|
"""查询EIP防护状态列表
|
|
|
|
|
|
|
|
|
|
查询用户所有EIP的Anti-DDoS防护状态信息,用户的EIP无论是否绑定到云服务器,都可以进行查询。
|
2022-04-21 12:03:46 +00:00
|
|
|
|
|
2022-11-30 08:59:35 +00:00
|
|
|
|
Please refer to HUAWEI cloud API Explorer for details.
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2022-11-17 12:13:53 +00:00
|
|
|
|
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:param request: Request instance for ListDDosStatus
|
|
|
|
|
:type request: :class:`huaweicloudsdkantiddos.v1.ListDDosStatusRequest`
|
|
|
|
|
:rtype: :class:`huaweicloudsdkantiddos.v1.ListDDosStatusResponse`
|
2021-08-17 07:57:38 +00:00
|
|
|
|
"""
|
2023-11-16 09:47:10 +00:00
|
|
|
|
http_info = self._list_d_dos_status_http_info(request)
|
|
|
|
|
return self._call_api(**http_info)
|
|
|
|
|
|
|
|
|
|
def list_d_dos_status_async_invoker(self, request):
|
|
|
|
|
http_info = self._list_d_dos_status_http_info(request)
|
|
|
|
|
return AsyncInvoker(self, http_info)
|
|
|
|
|
|
|
|
|
|
def _list_d_dos_status_http_info(self, request):
|
|
|
|
|
http_info = {
|
|
|
|
|
"method": "GET",
|
|
|
|
|
"resource_path": "/v1/{project_id}/antiddos",
|
|
|
|
|
"request_type": request.__class__.__name__,
|
|
|
|
|
"response_type": "ListDDosStatusResponse"
|
|
|
|
|
}
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2023-05-11 09:07:48 +00:00
|
|
|
|
local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2022-11-17 12:13:53 +00:00
|
|
|
|
cname = None
|
|
|
|
|
|
2021-08-17 07:57:38 +00:00
|
|
|
|
collection_formats = {}
|
|
|
|
|
|
|
|
|
|
path_params = {}
|
|
|
|
|
|
|
|
|
|
query_params = []
|
|
|
|
|
if 'status' in local_var_params:
|
|
|
|
|
query_params.append(('status', local_var_params['status']))
|
|
|
|
|
if 'limit' in local_var_params:
|
|
|
|
|
query_params.append(('limit', local_var_params['limit']))
|
|
|
|
|
if 'offset' in local_var_params:
|
|
|
|
|
query_params.append(('offset', local_var_params['offset']))
|
|
|
|
|
if 'ip' in local_var_params:
|
|
|
|
|
query_params.append(('ip', local_var_params['ip']))
|
|
|
|
|
|
|
|
|
|
header_params = {}
|
|
|
|
|
|
|
|
|
|
form_params = {}
|
|
|
|
|
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = None
|
2021-08-17 07:57:38 +00:00
|
|
|
|
if isinstance(request, SdkStreamRequest):
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = request.get_file_stream()
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
response_headers = []
|
|
|
|
|
|
|
|
|
|
header_params['Content-Type'] = http_utils.select_header_content_type(
|
|
|
|
|
['application/json'])
|
|
|
|
|
|
|
|
|
|
auth_settings = []
|
|
|
|
|
|
2023-11-16 09:47:10 +00:00
|
|
|
|
http_info["cname"] = cname
|
|
|
|
|
http_info["collection_formats"] = collection_formats
|
|
|
|
|
http_info["path_params"] = path_params
|
|
|
|
|
http_info["query_params"] = query_params
|
|
|
|
|
http_info["header_params"] = header_params
|
|
|
|
|
http_info["post_params"] = form_params
|
|
|
|
|
http_info["body"] = body
|
|
|
|
|
http_info["response_headers"] = response_headers
|
|
|
|
|
|
|
|
|
|
return http_info
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
def list_daily_log_async(self, request):
|
|
|
|
|
"""查询指定EIP异常事件
|
|
|
|
|
|
|
|
|
|
查询指定EIP在过去24小时之内的异常事件信息,异常事件包括清洗事件和黑洞事件,查询延迟在5分钟之内。
|
2022-04-21 12:03:46 +00:00
|
|
|
|
|
2022-11-30 08:59:35 +00:00
|
|
|
|
Please refer to HUAWEI cloud API Explorer for details.
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2022-11-17 12:13:53 +00:00
|
|
|
|
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:param request: Request instance for ListDailyLog
|
|
|
|
|
:type request: :class:`huaweicloudsdkantiddos.v1.ListDailyLogRequest`
|
|
|
|
|
:rtype: :class:`huaweicloudsdkantiddos.v1.ListDailyLogResponse`
|
2021-08-17 07:57:38 +00:00
|
|
|
|
"""
|
2023-11-16 09:47:10 +00:00
|
|
|
|
http_info = self._list_daily_log_http_info(request)
|
|
|
|
|
return self._call_api(**http_info)
|
|
|
|
|
|
|
|
|
|
def list_daily_log_async_invoker(self, request):
|
|
|
|
|
http_info = self._list_daily_log_http_info(request)
|
|
|
|
|
return AsyncInvoker(self, http_info)
|
|
|
|
|
|
|
|
|
|
def _list_daily_log_http_info(self, request):
|
|
|
|
|
http_info = {
|
|
|
|
|
"method": "GET",
|
|
|
|
|
"resource_path": "/v1/{project_id}/antiddos/{floating_ip_id}/logs",
|
|
|
|
|
"request_type": request.__class__.__name__,
|
|
|
|
|
"response_type": "ListDailyLogResponse"
|
|
|
|
|
}
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2023-05-11 09:07:48 +00:00
|
|
|
|
local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2022-11-17 12:13:53 +00:00
|
|
|
|
cname = None
|
|
|
|
|
|
2021-08-17 07:57:38 +00:00
|
|
|
|
collection_formats = {}
|
|
|
|
|
|
|
|
|
|
path_params = {}
|
|
|
|
|
if 'floating_ip_id' in local_var_params:
|
|
|
|
|
path_params['floating_ip_id'] = local_var_params['floating_ip_id']
|
|
|
|
|
|
|
|
|
|
query_params = []
|
|
|
|
|
if 'sort_dir' in local_var_params:
|
|
|
|
|
query_params.append(('sort_dir', local_var_params['sort_dir']))
|
|
|
|
|
if 'limit' in local_var_params:
|
|
|
|
|
query_params.append(('limit', local_var_params['limit']))
|
|
|
|
|
if 'offset' in local_var_params:
|
|
|
|
|
query_params.append(('offset', local_var_params['offset']))
|
|
|
|
|
if 'ip' in local_var_params:
|
|
|
|
|
query_params.append(('ip', local_var_params['ip']))
|
|
|
|
|
|
|
|
|
|
header_params = {}
|
|
|
|
|
|
|
|
|
|
form_params = {}
|
|
|
|
|
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = None
|
2021-08-17 07:57:38 +00:00
|
|
|
|
if isinstance(request, SdkStreamRequest):
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = request.get_file_stream()
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
response_headers = []
|
|
|
|
|
|
|
|
|
|
header_params['Content-Type'] = http_utils.select_header_content_type(
|
|
|
|
|
['application/json'])
|
|
|
|
|
|
|
|
|
|
auth_settings = []
|
|
|
|
|
|
2023-11-16 09:47:10 +00:00
|
|
|
|
http_info["cname"] = cname
|
|
|
|
|
http_info["collection_formats"] = collection_formats
|
|
|
|
|
http_info["path_params"] = path_params
|
|
|
|
|
http_info["query_params"] = query_params
|
|
|
|
|
http_info["header_params"] = header_params
|
|
|
|
|
http_info["post_params"] = form_params
|
|
|
|
|
http_info["body"] = body
|
|
|
|
|
http_info["response_headers"] = response_headers
|
|
|
|
|
|
|
|
|
|
return http_info
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
def list_daily_report_async(self, request):
|
|
|
|
|
"""查询指定EIP防护流量
|
|
|
|
|
|
|
|
|
|
查询指定EIP在过去24小时之内的防护流量信息,流量的间隔时间单位为5分钟。
|
2022-04-21 12:03:46 +00:00
|
|
|
|
|
2022-11-30 08:59:35 +00:00
|
|
|
|
Please refer to HUAWEI cloud API Explorer for details.
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2022-11-17 12:13:53 +00:00
|
|
|
|
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:param request: Request instance for ListDailyReport
|
|
|
|
|
:type request: :class:`huaweicloudsdkantiddos.v1.ListDailyReportRequest`
|
|
|
|
|
:rtype: :class:`huaweicloudsdkantiddos.v1.ListDailyReportResponse`
|
2021-08-17 07:57:38 +00:00
|
|
|
|
"""
|
2023-11-16 09:47:10 +00:00
|
|
|
|
http_info = self._list_daily_report_http_info(request)
|
|
|
|
|
return self._call_api(**http_info)
|
|
|
|
|
|
|
|
|
|
def list_daily_report_async_invoker(self, request):
|
|
|
|
|
http_info = self._list_daily_report_http_info(request)
|
|
|
|
|
return AsyncInvoker(self, http_info)
|
|
|
|
|
|
|
|
|
|
def _list_daily_report_http_info(self, request):
|
|
|
|
|
http_info = {
|
|
|
|
|
"method": "GET",
|
|
|
|
|
"resource_path": "/v1/{project_id}/antiddos/{floating_ip_id}/daily",
|
|
|
|
|
"request_type": request.__class__.__name__,
|
|
|
|
|
"response_type": "ListDailyReportResponse"
|
|
|
|
|
}
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2023-05-11 09:07:48 +00:00
|
|
|
|
local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2022-11-17 12:13:53 +00:00
|
|
|
|
cname = None
|
|
|
|
|
|
2021-08-17 07:57:38 +00:00
|
|
|
|
collection_formats = {}
|
|
|
|
|
|
|
|
|
|
path_params = {}
|
|
|
|
|
if 'floating_ip_id' in local_var_params:
|
|
|
|
|
path_params['floating_ip_id'] = local_var_params['floating_ip_id']
|
|
|
|
|
|
|
|
|
|
query_params = []
|
|
|
|
|
if 'ip' in local_var_params:
|
|
|
|
|
query_params.append(('ip', local_var_params['ip']))
|
|
|
|
|
|
|
|
|
|
header_params = {}
|
|
|
|
|
|
|
|
|
|
form_params = {}
|
|
|
|
|
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = None
|
2021-08-17 07:57:38 +00:00
|
|
|
|
if isinstance(request, SdkStreamRequest):
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = request.get_file_stream()
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
response_headers = []
|
|
|
|
|
|
|
|
|
|
header_params['Content-Type'] = http_utils.select_header_content_type(
|
|
|
|
|
['application/json'])
|
|
|
|
|
|
|
|
|
|
auth_settings = []
|
|
|
|
|
|
2023-11-16 09:47:10 +00:00
|
|
|
|
http_info["cname"] = cname
|
|
|
|
|
http_info["collection_formats"] = collection_formats
|
|
|
|
|
http_info["path_params"] = path_params
|
|
|
|
|
http_info["query_params"] = query_params
|
|
|
|
|
http_info["header_params"] = header_params
|
|
|
|
|
http_info["post_params"] = form_params
|
|
|
|
|
http_info["body"] = body
|
|
|
|
|
http_info["response_headers"] = response_headers
|
|
|
|
|
|
|
|
|
|
return http_info
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
def list_new_configs_async(self, request):
|
|
|
|
|
"""查询Anti-DDoS配置可选范围
|
|
|
|
|
|
|
|
|
|
查询系统支持的Anti-DDoS防护策略配置的可选范围,用户根据范围列表选择适合自已业务的防护策略进行Anti-DDoS流量清洗。
|
2022-04-21 12:03:46 +00:00
|
|
|
|
|
2022-11-30 08:59:35 +00:00
|
|
|
|
Please refer to HUAWEI cloud API Explorer for details.
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2022-11-17 12:13:53 +00:00
|
|
|
|
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:param request: Request instance for ListNewConfigs
|
|
|
|
|
:type request: :class:`huaweicloudsdkantiddos.v1.ListNewConfigsRequest`
|
|
|
|
|
:rtype: :class:`huaweicloudsdkantiddos.v1.ListNewConfigsResponse`
|
2021-08-17 07:57:38 +00:00
|
|
|
|
"""
|
2023-11-16 09:47:10 +00:00
|
|
|
|
http_info = self._list_new_configs_http_info(request)
|
|
|
|
|
return self._call_api(**http_info)
|
|
|
|
|
|
|
|
|
|
def list_new_configs_async_invoker(self, request):
|
|
|
|
|
http_info = self._list_new_configs_http_info(request)
|
|
|
|
|
return AsyncInvoker(self, http_info)
|
|
|
|
|
|
|
|
|
|
def _list_new_configs_http_info(self, request):
|
|
|
|
|
http_info = {
|
|
|
|
|
"method": "GET",
|
|
|
|
|
"resource_path": "/v2/{project_id}/antiddos/query-config-list",
|
|
|
|
|
"request_type": request.__class__.__name__,
|
|
|
|
|
"response_type": "ListNewConfigsResponse"
|
|
|
|
|
}
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2023-05-11 09:07:48 +00:00
|
|
|
|
local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2022-11-17 12:13:53 +00:00
|
|
|
|
cname = None
|
|
|
|
|
|
2021-08-17 07:57:38 +00:00
|
|
|
|
collection_formats = {}
|
|
|
|
|
|
|
|
|
|
path_params = {}
|
|
|
|
|
|
|
|
|
|
query_params = []
|
|
|
|
|
|
|
|
|
|
header_params = {}
|
|
|
|
|
|
|
|
|
|
form_params = {}
|
|
|
|
|
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = None
|
2021-08-17 07:57:38 +00:00
|
|
|
|
if isinstance(request, SdkStreamRequest):
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = request.get_file_stream()
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
response_headers = []
|
|
|
|
|
|
|
|
|
|
header_params['Content-Type'] = http_utils.select_header_content_type(
|
|
|
|
|
['application/json'])
|
|
|
|
|
|
|
|
|
|
auth_settings = []
|
|
|
|
|
|
2023-11-16 09:47:10 +00:00
|
|
|
|
http_info["cname"] = cname
|
|
|
|
|
http_info["collection_formats"] = collection_formats
|
|
|
|
|
http_info["path_params"] = path_params
|
|
|
|
|
http_info["query_params"] = query_params
|
|
|
|
|
http_info["header_params"] = header_params
|
|
|
|
|
http_info["post_params"] = form_params
|
|
|
|
|
http_info["body"] = body
|
|
|
|
|
http_info["response_headers"] = response_headers
|
|
|
|
|
|
|
|
|
|
return http_info
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
def list_weekly_reports_async(self, request):
|
|
|
|
|
"""查询周防护统计情况
|
|
|
|
|
|
|
|
|
|
查询用户所有Anti-DDoS防护周统计情况,包括一周内DDoS拦截次数和攻击次数、以及按照被攻击次数进行的排名信息等统计数据。系统支持当前时间之前四周的周统计数据查询,超过这个时间的请求是查询不到统计数据的。
|
2022-04-21 12:03:46 +00:00
|
|
|
|
|
2022-11-30 08:59:35 +00:00
|
|
|
|
Please refer to HUAWEI cloud API Explorer for details.
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2022-11-17 12:13:53 +00:00
|
|
|
|
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:param request: Request instance for ListWeeklyReports
|
|
|
|
|
:type request: :class:`huaweicloudsdkantiddos.v1.ListWeeklyReportsRequest`
|
|
|
|
|
:rtype: :class:`huaweicloudsdkantiddos.v1.ListWeeklyReportsResponse`
|
2021-08-17 07:57:38 +00:00
|
|
|
|
"""
|
2023-11-16 09:47:10 +00:00
|
|
|
|
http_info = self._list_weekly_reports_http_info(request)
|
|
|
|
|
return self._call_api(**http_info)
|
|
|
|
|
|
|
|
|
|
def list_weekly_reports_async_invoker(self, request):
|
|
|
|
|
http_info = self._list_weekly_reports_http_info(request)
|
|
|
|
|
return AsyncInvoker(self, http_info)
|
|
|
|
|
|
|
|
|
|
def _list_weekly_reports_http_info(self, request):
|
|
|
|
|
http_info = {
|
|
|
|
|
"method": "GET",
|
|
|
|
|
"resource_path": "/v1/{project_id}/antiddos/weekly",
|
|
|
|
|
"request_type": request.__class__.__name__,
|
|
|
|
|
"response_type": "ListWeeklyReportsResponse"
|
|
|
|
|
}
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2023-05-11 09:07:48 +00:00
|
|
|
|
local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2022-11-17 12:13:53 +00:00
|
|
|
|
cname = None
|
|
|
|
|
|
2021-08-17 07:57:38 +00:00
|
|
|
|
collection_formats = {}
|
|
|
|
|
|
|
|
|
|
path_params = {}
|
|
|
|
|
|
|
|
|
|
query_params = []
|
|
|
|
|
if 'period_start_date' in local_var_params:
|
|
|
|
|
query_params.append(('period_start_date', local_var_params['period_start_date']))
|
|
|
|
|
|
|
|
|
|
header_params = {}
|
|
|
|
|
|
|
|
|
|
form_params = {}
|
|
|
|
|
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = None
|
2021-08-17 07:57:38 +00:00
|
|
|
|
if isinstance(request, SdkStreamRequest):
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = request.get_file_stream()
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
response_headers = []
|
|
|
|
|
|
|
|
|
|
header_params['Content-Type'] = http_utils.select_header_content_type(
|
|
|
|
|
['application/json'])
|
|
|
|
|
|
|
|
|
|
auth_settings = []
|
|
|
|
|
|
2023-11-16 09:47:10 +00:00
|
|
|
|
http_info["cname"] = cname
|
|
|
|
|
http_info["collection_formats"] = collection_formats
|
|
|
|
|
http_info["path_params"] = path_params
|
|
|
|
|
http_info["query_params"] = query_params
|
|
|
|
|
http_info["header_params"] = header_params
|
|
|
|
|
http_info["post_params"] = form_params
|
|
|
|
|
http_info["body"] = body
|
|
|
|
|
http_info["response_headers"] = response_headers
|
|
|
|
|
|
|
|
|
|
return http_info
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
def show_d_dos_async(self, request):
|
|
|
|
|
"""查询Anti-DDoS服务
|
|
|
|
|
|
|
|
|
|
查询配置的Anti-DDoS防护策略,用户可以查询指定EIP的Anti-DDoS防护策略。
|
2022-04-21 12:03:46 +00:00
|
|
|
|
|
2022-11-30 08:59:35 +00:00
|
|
|
|
Please refer to HUAWEI cloud API Explorer for details.
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2022-11-17 12:13:53 +00:00
|
|
|
|
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:param request: Request instance for ShowDDos
|
|
|
|
|
:type request: :class:`huaweicloudsdkantiddos.v1.ShowDDosRequest`
|
|
|
|
|
:rtype: :class:`huaweicloudsdkantiddos.v1.ShowDDosResponse`
|
2021-08-17 07:57:38 +00:00
|
|
|
|
"""
|
2023-11-16 09:47:10 +00:00
|
|
|
|
http_info = self._show_d_dos_http_info(request)
|
|
|
|
|
return self._call_api(**http_info)
|
|
|
|
|
|
|
|
|
|
def show_d_dos_async_invoker(self, request):
|
|
|
|
|
http_info = self._show_d_dos_http_info(request)
|
|
|
|
|
return AsyncInvoker(self, http_info)
|
|
|
|
|
|
|
|
|
|
def _show_d_dos_http_info(self, request):
|
|
|
|
|
http_info = {
|
|
|
|
|
"method": "GET",
|
|
|
|
|
"resource_path": "/v1/{project_id}/antiddos/{floating_ip_id}",
|
|
|
|
|
"request_type": request.__class__.__name__,
|
|
|
|
|
"response_type": "ShowDDosResponse"
|
|
|
|
|
}
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2023-05-11 09:07:48 +00:00
|
|
|
|
local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2022-11-17 12:13:53 +00:00
|
|
|
|
cname = None
|
|
|
|
|
|
2021-08-17 07:57:38 +00:00
|
|
|
|
collection_formats = {}
|
|
|
|
|
|
|
|
|
|
path_params = {}
|
|
|
|
|
if 'floating_ip_id' in local_var_params:
|
|
|
|
|
path_params['floating_ip_id'] = local_var_params['floating_ip_id']
|
|
|
|
|
|
|
|
|
|
query_params = []
|
|
|
|
|
if 'ip' in local_var_params:
|
|
|
|
|
query_params.append(('ip', local_var_params['ip']))
|
|
|
|
|
|
|
|
|
|
header_params = {}
|
|
|
|
|
|
|
|
|
|
form_params = {}
|
|
|
|
|
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = None
|
2021-08-17 07:57:38 +00:00
|
|
|
|
if isinstance(request, SdkStreamRequest):
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = request.get_file_stream()
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
response_headers = []
|
|
|
|
|
|
|
|
|
|
header_params['Content-Type'] = http_utils.select_header_content_type(
|
|
|
|
|
['application/json'])
|
|
|
|
|
|
|
|
|
|
auth_settings = []
|
|
|
|
|
|
2023-11-16 09:47:10 +00:00
|
|
|
|
http_info["cname"] = cname
|
|
|
|
|
http_info["collection_formats"] = collection_formats
|
|
|
|
|
http_info["path_params"] = path_params
|
|
|
|
|
http_info["query_params"] = query_params
|
|
|
|
|
http_info["header_params"] = header_params
|
|
|
|
|
http_info["post_params"] = form_params
|
|
|
|
|
http_info["body"] = body
|
|
|
|
|
http_info["response_headers"] = response_headers
|
|
|
|
|
|
|
|
|
|
return http_info
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
def show_d_dos_status_async(self, request):
|
|
|
|
|
"""查询指定EIP防护状态
|
|
|
|
|
|
|
|
|
|
查询指定EIP的Anti-DDoS防护状态。
|
2022-04-21 12:03:46 +00:00
|
|
|
|
|
2022-11-30 08:59:35 +00:00
|
|
|
|
Please refer to HUAWEI cloud API Explorer for details.
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2022-11-17 12:13:53 +00:00
|
|
|
|
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:param request: Request instance for ShowDDosStatus
|
|
|
|
|
:type request: :class:`huaweicloudsdkantiddos.v1.ShowDDosStatusRequest`
|
|
|
|
|
:rtype: :class:`huaweicloudsdkantiddos.v1.ShowDDosStatusResponse`
|
2021-08-17 07:57:38 +00:00
|
|
|
|
"""
|
2023-11-16 09:47:10 +00:00
|
|
|
|
http_info = self._show_d_dos_status_http_info(request)
|
|
|
|
|
return self._call_api(**http_info)
|
|
|
|
|
|
|
|
|
|
def show_d_dos_status_async_invoker(self, request):
|
|
|
|
|
http_info = self._show_d_dos_status_http_info(request)
|
|
|
|
|
return AsyncInvoker(self, http_info)
|
|
|
|
|
|
|
|
|
|
def _show_d_dos_status_http_info(self, request):
|
|
|
|
|
http_info = {
|
|
|
|
|
"method": "GET",
|
|
|
|
|
"resource_path": "/v1/{project_id}/antiddos/{floating_ip_id}/status",
|
|
|
|
|
"request_type": request.__class__.__name__,
|
|
|
|
|
"response_type": "ShowDDosStatusResponse"
|
|
|
|
|
}
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2023-05-11 09:07:48 +00:00
|
|
|
|
local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2022-11-17 12:13:53 +00:00
|
|
|
|
cname = None
|
|
|
|
|
|
2021-08-17 07:57:38 +00:00
|
|
|
|
collection_formats = {}
|
|
|
|
|
|
|
|
|
|
path_params = {}
|
|
|
|
|
if 'floating_ip_id' in local_var_params:
|
|
|
|
|
path_params['floating_ip_id'] = local_var_params['floating_ip_id']
|
|
|
|
|
|
|
|
|
|
query_params = []
|
|
|
|
|
if 'ip' in local_var_params:
|
|
|
|
|
query_params.append(('ip', local_var_params['ip']))
|
|
|
|
|
|
|
|
|
|
header_params = {}
|
|
|
|
|
|
|
|
|
|
form_params = {}
|
|
|
|
|
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = None
|
2021-08-17 07:57:38 +00:00
|
|
|
|
if isinstance(request, SdkStreamRequest):
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = request.get_file_stream()
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
response_headers = []
|
|
|
|
|
|
|
|
|
|
header_params['Content-Type'] = http_utils.select_header_content_type(
|
|
|
|
|
['application/json'])
|
|
|
|
|
|
|
|
|
|
auth_settings = []
|
|
|
|
|
|
2023-11-16 09:47:10 +00:00
|
|
|
|
http_info["cname"] = cname
|
|
|
|
|
http_info["collection_formats"] = collection_formats
|
|
|
|
|
http_info["path_params"] = path_params
|
|
|
|
|
http_info["query_params"] = query_params
|
|
|
|
|
http_info["header_params"] = header_params
|
|
|
|
|
http_info["post_params"] = form_params
|
|
|
|
|
http_info["body"] = body
|
|
|
|
|
http_info["response_headers"] = response_headers
|
|
|
|
|
|
|
|
|
|
return http_info
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
def show_new_task_status_async(self, request):
|
|
|
|
|
"""查询Anti-DDoS任务
|
|
|
|
|
|
|
|
|
|
用户查询指定的Anti-DDoS防护配置任务,得到任务当前执行的状态。
|
2022-04-21 12:03:46 +00:00
|
|
|
|
|
2022-11-30 08:59:35 +00:00
|
|
|
|
Please refer to HUAWEI cloud API Explorer for details.
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2022-11-17 12:13:53 +00:00
|
|
|
|
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:param request: Request instance for ShowNewTaskStatus
|
|
|
|
|
:type request: :class:`huaweicloudsdkantiddos.v1.ShowNewTaskStatusRequest`
|
|
|
|
|
:rtype: :class:`huaweicloudsdkantiddos.v1.ShowNewTaskStatusResponse`
|
2021-08-17 07:57:38 +00:00
|
|
|
|
"""
|
2023-11-16 09:47:10 +00:00
|
|
|
|
http_info = self._show_new_task_status_http_info(request)
|
|
|
|
|
return self._call_api(**http_info)
|
|
|
|
|
|
|
|
|
|
def show_new_task_status_async_invoker(self, request):
|
|
|
|
|
http_info = self._show_new_task_status_http_info(request)
|
|
|
|
|
return AsyncInvoker(self, http_info)
|
|
|
|
|
|
|
|
|
|
def _show_new_task_status_http_info(self, request):
|
|
|
|
|
http_info = {
|
|
|
|
|
"method": "GET",
|
|
|
|
|
"resource_path": "/v2/{project_id}/query-task-status",
|
|
|
|
|
"request_type": request.__class__.__name__,
|
|
|
|
|
"response_type": "ShowNewTaskStatusResponse"
|
|
|
|
|
}
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2023-05-11 09:07:48 +00:00
|
|
|
|
local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2022-11-17 12:13:53 +00:00
|
|
|
|
cname = None
|
|
|
|
|
|
2021-08-17 07:57:38 +00:00
|
|
|
|
collection_formats = {}
|
|
|
|
|
|
|
|
|
|
path_params = {}
|
|
|
|
|
|
|
|
|
|
query_params = []
|
|
|
|
|
if 'task_id' in local_var_params:
|
|
|
|
|
query_params.append(('task_id', local_var_params['task_id']))
|
|
|
|
|
|
|
|
|
|
header_params = {}
|
|
|
|
|
|
|
|
|
|
form_params = {}
|
|
|
|
|
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = None
|
2021-08-17 07:57:38 +00:00
|
|
|
|
if isinstance(request, SdkStreamRequest):
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = request.get_file_stream()
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
response_headers = []
|
|
|
|
|
|
|
|
|
|
header_params['Content-Type'] = http_utils.select_header_content_type(
|
|
|
|
|
['application/json'])
|
|
|
|
|
|
|
|
|
|
auth_settings = []
|
|
|
|
|
|
2023-11-16 09:47:10 +00:00
|
|
|
|
http_info["cname"] = cname
|
|
|
|
|
http_info["collection_formats"] = collection_formats
|
|
|
|
|
http_info["path_params"] = path_params
|
|
|
|
|
http_info["query_params"] = query_params
|
|
|
|
|
http_info["header_params"] = header_params
|
|
|
|
|
http_info["post_params"] = form_params
|
|
|
|
|
http_info["body"] = body
|
|
|
|
|
http_info["response_headers"] = response_headers
|
|
|
|
|
|
|
|
|
|
return http_info
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
def update_d_dos_async(self, request):
|
|
|
|
|
"""更新Anti-DDoS服务
|
|
|
|
|
|
|
|
|
|
更新指定EIP的Anti-DDoS防护策略配置。调用成功,只是说明服务节点收到了关闭更新配置请求,操作是否成功需要通过任务查询接口查询该任务的执行状态,具体请参考查询Anti-DDoS任务。
|
2022-04-21 12:03:46 +00:00
|
|
|
|
|
2022-11-30 08:59:35 +00:00
|
|
|
|
Please refer to HUAWEI cloud API Explorer for details.
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2022-11-17 12:13:53 +00:00
|
|
|
|
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:param request: Request instance for UpdateDDos
|
|
|
|
|
:type request: :class:`huaweicloudsdkantiddos.v1.UpdateDDosRequest`
|
|
|
|
|
:rtype: :class:`huaweicloudsdkantiddos.v1.UpdateDDosResponse`
|
2021-08-17 07:57:38 +00:00
|
|
|
|
"""
|
2023-11-16 09:47:10 +00:00
|
|
|
|
http_info = self._update_d_dos_http_info(request)
|
|
|
|
|
return self._call_api(**http_info)
|
|
|
|
|
|
|
|
|
|
def update_d_dos_async_invoker(self, request):
|
|
|
|
|
http_info = self._update_d_dos_http_info(request)
|
|
|
|
|
return AsyncInvoker(self, http_info)
|
|
|
|
|
|
|
|
|
|
def _update_d_dos_http_info(self, request):
|
|
|
|
|
http_info = {
|
|
|
|
|
"method": "PUT",
|
|
|
|
|
"resource_path": "/v1/{project_id}/antiddos/{floating_ip_id}",
|
|
|
|
|
"request_type": request.__class__.__name__,
|
|
|
|
|
"response_type": "UpdateDDosResponse"
|
|
|
|
|
}
|
2023-05-11 09:07:48 +00:00
|
|
|
|
|
|
|
|
|
local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
2022-11-17 12:13:53 +00:00
|
|
|
|
cname = None
|
|
|
|
|
|
2021-08-17 07:57:38 +00:00
|
|
|
|
collection_formats = {}
|
|
|
|
|
|
|
|
|
|
path_params = {}
|
|
|
|
|
if 'floating_ip_id' in local_var_params:
|
|
|
|
|
path_params['floating_ip_id'] = local_var_params['floating_ip_id']
|
|
|
|
|
|
|
|
|
|
query_params = []
|
|
|
|
|
if 'ip' in local_var_params:
|
|
|
|
|
query_params.append(('ip', local_var_params['ip']))
|
|
|
|
|
|
|
|
|
|
header_params = {}
|
|
|
|
|
|
|
|
|
|
form_params = {}
|
|
|
|
|
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = None
|
2021-08-17 07:57:38 +00:00
|
|
|
|
if 'body' in local_var_params:
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = local_var_params['body']
|
2021-08-17 07:57:38 +00:00
|
|
|
|
if isinstance(request, SdkStreamRequest):
|
2023-11-16 09:47:10 +00:00
|
|
|
|
body = request.get_file_stream()
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
response_headers = []
|
|
|
|
|
|
|
|
|
|
header_params['Content-Type'] = http_utils.select_header_content_type(
|
|
|
|
|
['application/json'])
|
|
|
|
|
|
|
|
|
|
auth_settings = []
|
|
|
|
|
|
2023-11-16 09:47:10 +00:00
|
|
|
|
http_info["cname"] = cname
|
|
|
|
|
http_info["collection_formats"] = collection_formats
|
|
|
|
|
http_info["path_params"] = path_params
|
|
|
|
|
http_info["query_params"] = query_params
|
|
|
|
|
http_info["header_params"] = header_params
|
|
|
|
|
http_info["post_params"] = form_params
|
|
|
|
|
http_info["body"] = body
|
|
|
|
|
http_info["response_headers"] = response_headers
|
|
|
|
|
|
|
|
|
|
return http_info
|
|
|
|
|
|
|
|
|
|
def _call_api(self, **kwargs):
|
|
|
|
|
try:
|
|
|
|
|
kwargs["async_request"] = True
|
|
|
|
|
return self.do_http_request(**kwargs)
|
|
|
|
|
except TypeError:
|
|
|
|
|
import inspect
|
|
|
|
|
params = inspect.signature(self.do_http_request).parameters
|
|
|
|
|
http_info = {param_name: kwargs.get(param_name) for param_name in params if param_name in kwargs}
|
|
|
|
|
return self.do_http_request(**http_info)
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|
|
def call_api(self, resource_path, method, path_params=None, query_params=None, header_params=None, body=None,
|
2022-11-17 12:13:53 +00:00
|
|
|
|
post_params=None, cname=None, response_type=None, response_headers=None, auth_settings=None,
|
2021-08-17 07:57:38 +00:00
|
|
|
|
collection_formats=None, request_type=None):
|
|
|
|
|
"""Makes the HTTP request and returns deserialized data.
|
|
|
|
|
|
|
|
|
|
:param resource_path: Path to method endpoint.
|
|
|
|
|
:param method: Method to call.
|
|
|
|
|
:param path_params: Path parameters in the url.
|
|
|
|
|
:param query_params: Query parameters in the url.
|
|
|
|
|
:param header_params: Header parameters to be
|
|
|
|
|
placed in the request header.
|
|
|
|
|
:param body: Request body.
|
2022-11-17 12:13:53 +00:00
|
|
|
|
:param post_params: Request post form parameters,
|
2021-08-17 07:57:38 +00:00
|
|
|
|
for `application/x-www-form-urlencoded`, `multipart/form-data`.
|
2022-11-17 12:13:53 +00:00
|
|
|
|
:param cname: Used for obs endpoint.
|
|
|
|
|
:param auth_settings: Auth Settings names for the request.
|
2021-08-17 07:57:38 +00:00
|
|
|
|
:param response_type: Response data type.
|
|
|
|
|
:param response_headers: Header should be added to response data.
|
|
|
|
|
:param collection_formats: dict of collection formats for path, query,
|
|
|
|
|
header, and post parameters.
|
|
|
|
|
:param request_type: Request data type.
|
|
|
|
|
:return:
|
|
|
|
|
Return the response directly.
|
|
|
|
|
"""
|
|
|
|
|
return self.do_http_request(
|
|
|
|
|
method=method,
|
|
|
|
|
resource_path=resource_path,
|
|
|
|
|
path_params=path_params,
|
|
|
|
|
query_params=query_params,
|
|
|
|
|
header_params=header_params,
|
|
|
|
|
body=body,
|
|
|
|
|
post_params=post_params,
|
2022-11-17 12:13:53 +00:00
|
|
|
|
cname=cname,
|
2021-08-17 07:57:38 +00:00
|
|
|
|
response_type=response_type,
|
|
|
|
|
response_headers=response_headers,
|
|
|
|
|
collection_formats=collection_formats,
|
|
|
|
|
request_type=request_type,
|
2023-11-16 09:47:10 +00:00
|
|
|
|
async_request=True)
|