alibabacloud-esa20240910 2.34.0__py3-none-any.whl → 2.36.0__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.
- alibabacloud_esa20240910/__init__.py +1 -1
- alibabacloud_esa20240910/client.py +448 -0
- alibabacloud_esa20240910/models/__init__.py +44 -0
- alibabacloud_esa20240910/models/_create_edge_container_app_image_secret_request.py +8 -0
- alibabacloud_esa20240910/models/_create_edge_container_app_image_secret_response_body.py +1 -0
- alibabacloud_esa20240910/models/_delete_edge_container_app_image_secret_request.py +4 -0
- alibabacloud_esa20240910/models/_delete_edge_container_app_image_secret_response_body.py +1 -0
- alibabacloud_esa20240910/models/_delete_http_ddo_sintelligent_rule_request.py +6 -0
- alibabacloud_esa20240910/models/_delete_http_ddo_sintelligent_rule_response_body.py +4 -1
- alibabacloud_esa20240910/models/_delete_user_waf_ruleset_request.py +4 -0
- alibabacloud_esa20240910/models/_delete_user_waf_ruleset_response_body.py +1 -0
- alibabacloud_esa20240910/models/_describe_ddos_max_burst_gbps_request.py +34 -0
- alibabacloud_esa20240910/models/_describe_ddos_max_burst_gbps_response.py +54 -0
- alibabacloud_esa20240910/models/_describe_ddos_max_burst_gbps_response_body.py +50 -0
- alibabacloud_esa20240910/models/_describe_http_ddo_sattack_rules_request.py +51 -0
- alibabacloud_esa20240910/models/_describe_http_ddo_sattack_rules_response.py +54 -0
- alibabacloud_esa20240910/models/_describe_http_ddo_sattack_rules_response_body.py +160 -0
- alibabacloud_esa20240910/models/_describe_http_ddo_sintelligent_acl_rules_request.py +59 -0
- alibabacloud_esa20240910/models/_describe_http_ddo_sintelligent_acl_rules_response.py +54 -0
- alibabacloud_esa20240910/models/_describe_http_ddo_sintelligent_acl_rules_response_body.py +152 -0
- alibabacloud_esa20240910/models/_describe_http_ddo_sintelligent_rate_limit_rules_request.py +59 -0
- alibabacloud_esa20240910/models/_describe_http_ddo_sintelligent_rate_limit_rules_response.py +54 -0
- alibabacloud_esa20240910/models/_describe_http_ddo_sintelligent_rate_limit_rules_response_body.py +168 -0
- alibabacloud_esa20240910/models/_get_edge_container_app_resource_capacity_request.py +2 -0
- alibabacloud_esa20240910/models/_get_edge_container_app_resource_capacity_response_body.py +49 -0
- alibabacloud_esa20240910/models/_get_kv_detail_request.py +4 -0
- alibabacloud_esa20240910/models/_get_kv_detail_response_body.py +3 -0
- alibabacloud_esa20240910/models/_list_edge_container_app_image_secrets_request.py +2 -0
- alibabacloud_esa20240910/models/_list_edge_container_app_image_secrets_response_body.py +5 -0
- alibabacloud_esa20240910/models/_list_site_origin_client_certificates_request.py +54 -0
- alibabacloud_esa20240910/models/_list_site_origin_client_certificates_response.py +54 -0
- alibabacloud_esa20240910/models/_list_site_origin_client_certificates_response_body.py +253 -0
- alibabacloud_esa20240910/models/_set_ddos_max_burst_gbps_request.py +43 -0
- alibabacloud_esa20240910/models/_set_ddos_max_burst_gbps_response.py +54 -0
- alibabacloud_esa20240910/models/_set_ddos_max_burst_gbps_response_body.py +33 -0
- alibabacloud_esa20240910/models/_set_http_ddo_sattack_rule_action_request.py +13 -0
- alibabacloud_esa20240910/models/_set_http_ddo_sattack_rule_action_response_body.py +1 -1
- alibabacloud_esa20240910/models/_set_http_ddo_sattack_rule_status_request.py +10 -0
- alibabacloud_esa20240910/models/_set_http_ddo_sattack_rule_status_response_body.py +1 -1
- {alibabacloud_esa20240910-2.34.0.dist-info → alibabacloud_esa20240910-2.36.0.dist-info}/METADATA +2 -2
- {alibabacloud_esa20240910-2.34.0.dist-info → alibabacloud_esa20240910-2.36.0.dist-info}/RECORD +44 -26
- {alibabacloud_esa20240910-2.34.0.dist-info → alibabacloud_esa20240910-2.36.0.dist-info}/LICENSE +0 -0
- {alibabacloud_esa20240910-2.34.0.dist-info → alibabacloud_esa20240910-2.36.0.dist-info}/WHEEL +0 -0
- {alibabacloud_esa20240910-2.34.0.dist-info → alibabacloud_esa20240910-2.36.0.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '2.
|
|
1
|
+
__version__ = '2.36.0'
|
|
@@ -10829,6 +10829,72 @@ class Client(OpenApiClient):
|
|
|
10829
10829
|
runtime = RuntimeOptions()
|
|
10830
10830
|
return await self.describe_ddo_sl7qps_list_with_options_async(request, runtime)
|
|
10831
10831
|
|
|
10832
|
+
def describe_ddos_max_burst_gbps_with_options(
|
|
10833
|
+
self,
|
|
10834
|
+
request: main_models.DescribeDdosMaxBurstGbpsRequest,
|
|
10835
|
+
runtime: RuntimeOptions,
|
|
10836
|
+
) -> main_models.DescribeDdosMaxBurstGbpsResponse:
|
|
10837
|
+
request.validate()
|
|
10838
|
+
query = Utils.query(request.to_map())
|
|
10839
|
+
req = open_api_util_models.OpenApiRequest(
|
|
10840
|
+
query = Utils.query(query)
|
|
10841
|
+
)
|
|
10842
|
+
params = open_api_util_models.Params(
|
|
10843
|
+
action = 'DescribeDdosMaxBurstGbps',
|
|
10844
|
+
version = '2024-09-10',
|
|
10845
|
+
protocol = 'HTTPS',
|
|
10846
|
+
pathname = '/',
|
|
10847
|
+
method = 'GET',
|
|
10848
|
+
auth_type = 'AK',
|
|
10849
|
+
style = 'RPC',
|
|
10850
|
+
req_body_type = 'formData',
|
|
10851
|
+
body_type = 'json'
|
|
10852
|
+
)
|
|
10853
|
+
return DaraCore.from_map(
|
|
10854
|
+
main_models.DescribeDdosMaxBurstGbpsResponse(),
|
|
10855
|
+
self.call_api(params, req, runtime)
|
|
10856
|
+
)
|
|
10857
|
+
|
|
10858
|
+
async def describe_ddos_max_burst_gbps_with_options_async(
|
|
10859
|
+
self,
|
|
10860
|
+
request: main_models.DescribeDdosMaxBurstGbpsRequest,
|
|
10861
|
+
runtime: RuntimeOptions,
|
|
10862
|
+
) -> main_models.DescribeDdosMaxBurstGbpsResponse:
|
|
10863
|
+
request.validate()
|
|
10864
|
+
query = Utils.query(request.to_map())
|
|
10865
|
+
req = open_api_util_models.OpenApiRequest(
|
|
10866
|
+
query = Utils.query(query)
|
|
10867
|
+
)
|
|
10868
|
+
params = open_api_util_models.Params(
|
|
10869
|
+
action = 'DescribeDdosMaxBurstGbps',
|
|
10870
|
+
version = '2024-09-10',
|
|
10871
|
+
protocol = 'HTTPS',
|
|
10872
|
+
pathname = '/',
|
|
10873
|
+
method = 'GET',
|
|
10874
|
+
auth_type = 'AK',
|
|
10875
|
+
style = 'RPC',
|
|
10876
|
+
req_body_type = 'formData',
|
|
10877
|
+
body_type = 'json'
|
|
10878
|
+
)
|
|
10879
|
+
return DaraCore.from_map(
|
|
10880
|
+
main_models.DescribeDdosMaxBurstGbpsResponse(),
|
|
10881
|
+
await self.call_api_async(params, req, runtime)
|
|
10882
|
+
)
|
|
10883
|
+
|
|
10884
|
+
def describe_ddos_max_burst_gbps(
|
|
10885
|
+
self,
|
|
10886
|
+
request: main_models.DescribeDdosMaxBurstGbpsRequest,
|
|
10887
|
+
) -> main_models.DescribeDdosMaxBurstGbpsResponse:
|
|
10888
|
+
runtime = RuntimeOptions()
|
|
10889
|
+
return self.describe_ddos_max_burst_gbps_with_options(request, runtime)
|
|
10890
|
+
|
|
10891
|
+
async def describe_ddos_max_burst_gbps_async(
|
|
10892
|
+
self,
|
|
10893
|
+
request: main_models.DescribeDdosMaxBurstGbpsRequest,
|
|
10894
|
+
) -> main_models.DescribeDdosMaxBurstGbpsResponse:
|
|
10895
|
+
runtime = RuntimeOptions()
|
|
10896
|
+
return await self.describe_ddos_max_burst_gbps_with_options_async(request, runtime)
|
|
10897
|
+
|
|
10832
10898
|
def describe_edge_container_app_stats_with_options(
|
|
10833
10899
|
self,
|
|
10834
10900
|
request: main_models.DescribeEdgeContainerAppStatsRequest,
|
|
@@ -11035,6 +11101,248 @@ class Client(OpenApiClient):
|
|
|
11035
11101
|
runtime = RuntimeOptions()
|
|
11036
11102
|
return await self.describe_http_ddo_sattack_protection_with_options_async(request, runtime)
|
|
11037
11103
|
|
|
11104
|
+
def describe_http_ddo_sattack_rules_with_options(
|
|
11105
|
+
self,
|
|
11106
|
+
request: main_models.DescribeHttpDDoSAttackRulesRequest,
|
|
11107
|
+
runtime: RuntimeOptions,
|
|
11108
|
+
) -> main_models.DescribeHttpDDoSAttackRulesResponse:
|
|
11109
|
+
request.validate()
|
|
11110
|
+
query = {}
|
|
11111
|
+
if not DaraCore.is_null(request.page_number):
|
|
11112
|
+
query['PageNumber'] = request.page_number
|
|
11113
|
+
if not DaraCore.is_null(request.page_size):
|
|
11114
|
+
query['PageSize'] = request.page_size
|
|
11115
|
+
if not DaraCore.is_null(request.site_id):
|
|
11116
|
+
query['SiteId'] = request.site_id
|
|
11117
|
+
req = open_api_util_models.OpenApiRequest(
|
|
11118
|
+
query = Utils.query(query)
|
|
11119
|
+
)
|
|
11120
|
+
params = open_api_util_models.Params(
|
|
11121
|
+
action = 'DescribeHttpDDoSAttackRules',
|
|
11122
|
+
version = '2024-09-10',
|
|
11123
|
+
protocol = 'HTTPS',
|
|
11124
|
+
pathname = '/',
|
|
11125
|
+
method = 'POST',
|
|
11126
|
+
auth_type = 'AK',
|
|
11127
|
+
style = 'RPC',
|
|
11128
|
+
req_body_type = 'formData',
|
|
11129
|
+
body_type = 'json'
|
|
11130
|
+
)
|
|
11131
|
+
return DaraCore.from_map(
|
|
11132
|
+
main_models.DescribeHttpDDoSAttackRulesResponse(),
|
|
11133
|
+
self.call_api(params, req, runtime)
|
|
11134
|
+
)
|
|
11135
|
+
|
|
11136
|
+
async def describe_http_ddo_sattack_rules_with_options_async(
|
|
11137
|
+
self,
|
|
11138
|
+
request: main_models.DescribeHttpDDoSAttackRulesRequest,
|
|
11139
|
+
runtime: RuntimeOptions,
|
|
11140
|
+
) -> main_models.DescribeHttpDDoSAttackRulesResponse:
|
|
11141
|
+
request.validate()
|
|
11142
|
+
query = {}
|
|
11143
|
+
if not DaraCore.is_null(request.page_number):
|
|
11144
|
+
query['PageNumber'] = request.page_number
|
|
11145
|
+
if not DaraCore.is_null(request.page_size):
|
|
11146
|
+
query['PageSize'] = request.page_size
|
|
11147
|
+
if not DaraCore.is_null(request.site_id):
|
|
11148
|
+
query['SiteId'] = request.site_id
|
|
11149
|
+
req = open_api_util_models.OpenApiRequest(
|
|
11150
|
+
query = Utils.query(query)
|
|
11151
|
+
)
|
|
11152
|
+
params = open_api_util_models.Params(
|
|
11153
|
+
action = 'DescribeHttpDDoSAttackRules',
|
|
11154
|
+
version = '2024-09-10',
|
|
11155
|
+
protocol = 'HTTPS',
|
|
11156
|
+
pathname = '/',
|
|
11157
|
+
method = 'POST',
|
|
11158
|
+
auth_type = 'AK',
|
|
11159
|
+
style = 'RPC',
|
|
11160
|
+
req_body_type = 'formData',
|
|
11161
|
+
body_type = 'json'
|
|
11162
|
+
)
|
|
11163
|
+
return DaraCore.from_map(
|
|
11164
|
+
main_models.DescribeHttpDDoSAttackRulesResponse(),
|
|
11165
|
+
await self.call_api_async(params, req, runtime)
|
|
11166
|
+
)
|
|
11167
|
+
|
|
11168
|
+
def describe_http_ddo_sattack_rules(
|
|
11169
|
+
self,
|
|
11170
|
+
request: main_models.DescribeHttpDDoSAttackRulesRequest,
|
|
11171
|
+
) -> main_models.DescribeHttpDDoSAttackRulesResponse:
|
|
11172
|
+
runtime = RuntimeOptions()
|
|
11173
|
+
return self.describe_http_ddo_sattack_rules_with_options(request, runtime)
|
|
11174
|
+
|
|
11175
|
+
async def describe_http_ddo_sattack_rules_async(
|
|
11176
|
+
self,
|
|
11177
|
+
request: main_models.DescribeHttpDDoSAttackRulesRequest,
|
|
11178
|
+
) -> main_models.DescribeHttpDDoSAttackRulesResponse:
|
|
11179
|
+
runtime = RuntimeOptions()
|
|
11180
|
+
return await self.describe_http_ddo_sattack_rules_with_options_async(request, runtime)
|
|
11181
|
+
|
|
11182
|
+
def describe_http_ddo_sintelligent_acl_rules_with_options(
|
|
11183
|
+
self,
|
|
11184
|
+
request: main_models.DescribeHttpDDoSIntelligentAclRulesRequest,
|
|
11185
|
+
runtime: RuntimeOptions,
|
|
11186
|
+
) -> main_models.DescribeHttpDDoSIntelligentAclRulesResponse:
|
|
11187
|
+
request.validate()
|
|
11188
|
+
query = {}
|
|
11189
|
+
if not DaraCore.is_null(request.page_number):
|
|
11190
|
+
query['PageNumber'] = request.page_number
|
|
11191
|
+
if not DaraCore.is_null(request.page_size):
|
|
11192
|
+
query['PageSize'] = request.page_size
|
|
11193
|
+
if not DaraCore.is_null(request.rule_type):
|
|
11194
|
+
query['RuleType'] = request.rule_type
|
|
11195
|
+
if not DaraCore.is_null(request.site_id):
|
|
11196
|
+
query['SiteId'] = request.site_id
|
|
11197
|
+
req = open_api_util_models.OpenApiRequest(
|
|
11198
|
+
query = Utils.query(query)
|
|
11199
|
+
)
|
|
11200
|
+
params = open_api_util_models.Params(
|
|
11201
|
+
action = 'DescribeHttpDDoSIntelligentAclRules',
|
|
11202
|
+
version = '2024-09-10',
|
|
11203
|
+
protocol = 'HTTPS',
|
|
11204
|
+
pathname = '/',
|
|
11205
|
+
method = 'POST',
|
|
11206
|
+
auth_type = 'AK',
|
|
11207
|
+
style = 'RPC',
|
|
11208
|
+
req_body_type = 'formData',
|
|
11209
|
+
body_type = 'json'
|
|
11210
|
+
)
|
|
11211
|
+
return DaraCore.from_map(
|
|
11212
|
+
main_models.DescribeHttpDDoSIntelligentAclRulesResponse(),
|
|
11213
|
+
self.call_api(params, req, runtime)
|
|
11214
|
+
)
|
|
11215
|
+
|
|
11216
|
+
async def describe_http_ddo_sintelligent_acl_rules_with_options_async(
|
|
11217
|
+
self,
|
|
11218
|
+
request: main_models.DescribeHttpDDoSIntelligentAclRulesRequest,
|
|
11219
|
+
runtime: RuntimeOptions,
|
|
11220
|
+
) -> main_models.DescribeHttpDDoSIntelligentAclRulesResponse:
|
|
11221
|
+
request.validate()
|
|
11222
|
+
query = {}
|
|
11223
|
+
if not DaraCore.is_null(request.page_number):
|
|
11224
|
+
query['PageNumber'] = request.page_number
|
|
11225
|
+
if not DaraCore.is_null(request.page_size):
|
|
11226
|
+
query['PageSize'] = request.page_size
|
|
11227
|
+
if not DaraCore.is_null(request.rule_type):
|
|
11228
|
+
query['RuleType'] = request.rule_type
|
|
11229
|
+
if not DaraCore.is_null(request.site_id):
|
|
11230
|
+
query['SiteId'] = request.site_id
|
|
11231
|
+
req = open_api_util_models.OpenApiRequest(
|
|
11232
|
+
query = Utils.query(query)
|
|
11233
|
+
)
|
|
11234
|
+
params = open_api_util_models.Params(
|
|
11235
|
+
action = 'DescribeHttpDDoSIntelligentAclRules',
|
|
11236
|
+
version = '2024-09-10',
|
|
11237
|
+
protocol = 'HTTPS',
|
|
11238
|
+
pathname = '/',
|
|
11239
|
+
method = 'POST',
|
|
11240
|
+
auth_type = 'AK',
|
|
11241
|
+
style = 'RPC',
|
|
11242
|
+
req_body_type = 'formData',
|
|
11243
|
+
body_type = 'json'
|
|
11244
|
+
)
|
|
11245
|
+
return DaraCore.from_map(
|
|
11246
|
+
main_models.DescribeHttpDDoSIntelligentAclRulesResponse(),
|
|
11247
|
+
await self.call_api_async(params, req, runtime)
|
|
11248
|
+
)
|
|
11249
|
+
|
|
11250
|
+
def describe_http_ddo_sintelligent_acl_rules(
|
|
11251
|
+
self,
|
|
11252
|
+
request: main_models.DescribeHttpDDoSIntelligentAclRulesRequest,
|
|
11253
|
+
) -> main_models.DescribeHttpDDoSIntelligentAclRulesResponse:
|
|
11254
|
+
runtime = RuntimeOptions()
|
|
11255
|
+
return self.describe_http_ddo_sintelligent_acl_rules_with_options(request, runtime)
|
|
11256
|
+
|
|
11257
|
+
async def describe_http_ddo_sintelligent_acl_rules_async(
|
|
11258
|
+
self,
|
|
11259
|
+
request: main_models.DescribeHttpDDoSIntelligentAclRulesRequest,
|
|
11260
|
+
) -> main_models.DescribeHttpDDoSIntelligentAclRulesResponse:
|
|
11261
|
+
runtime = RuntimeOptions()
|
|
11262
|
+
return await self.describe_http_ddo_sintelligent_acl_rules_with_options_async(request, runtime)
|
|
11263
|
+
|
|
11264
|
+
def describe_http_ddo_sintelligent_rate_limit_rules_with_options(
|
|
11265
|
+
self,
|
|
11266
|
+
request: main_models.DescribeHttpDDoSIntelligentRateLimitRulesRequest,
|
|
11267
|
+
runtime: RuntimeOptions,
|
|
11268
|
+
) -> main_models.DescribeHttpDDoSIntelligentRateLimitRulesResponse:
|
|
11269
|
+
request.validate()
|
|
11270
|
+
query = {}
|
|
11271
|
+
if not DaraCore.is_null(request.page_number):
|
|
11272
|
+
query['PageNumber'] = request.page_number
|
|
11273
|
+
if not DaraCore.is_null(request.page_size):
|
|
11274
|
+
query['PageSize'] = request.page_size
|
|
11275
|
+
if not DaraCore.is_null(request.rule_type):
|
|
11276
|
+
query['RuleType'] = request.rule_type
|
|
11277
|
+
if not DaraCore.is_null(request.site_id):
|
|
11278
|
+
query['SiteId'] = request.site_id
|
|
11279
|
+
req = open_api_util_models.OpenApiRequest(
|
|
11280
|
+
query = Utils.query(query)
|
|
11281
|
+
)
|
|
11282
|
+
params = open_api_util_models.Params(
|
|
11283
|
+
action = 'DescribeHttpDDoSIntelligentRateLimitRules',
|
|
11284
|
+
version = '2024-09-10',
|
|
11285
|
+
protocol = 'HTTPS',
|
|
11286
|
+
pathname = '/',
|
|
11287
|
+
method = 'POST',
|
|
11288
|
+
auth_type = 'AK',
|
|
11289
|
+
style = 'RPC',
|
|
11290
|
+
req_body_type = 'formData',
|
|
11291
|
+
body_type = 'json'
|
|
11292
|
+
)
|
|
11293
|
+
return DaraCore.from_map(
|
|
11294
|
+
main_models.DescribeHttpDDoSIntelligentRateLimitRulesResponse(),
|
|
11295
|
+
self.call_api(params, req, runtime)
|
|
11296
|
+
)
|
|
11297
|
+
|
|
11298
|
+
async def describe_http_ddo_sintelligent_rate_limit_rules_with_options_async(
|
|
11299
|
+
self,
|
|
11300
|
+
request: main_models.DescribeHttpDDoSIntelligentRateLimitRulesRequest,
|
|
11301
|
+
runtime: RuntimeOptions,
|
|
11302
|
+
) -> main_models.DescribeHttpDDoSIntelligentRateLimitRulesResponse:
|
|
11303
|
+
request.validate()
|
|
11304
|
+
query = {}
|
|
11305
|
+
if not DaraCore.is_null(request.page_number):
|
|
11306
|
+
query['PageNumber'] = request.page_number
|
|
11307
|
+
if not DaraCore.is_null(request.page_size):
|
|
11308
|
+
query['PageSize'] = request.page_size
|
|
11309
|
+
if not DaraCore.is_null(request.rule_type):
|
|
11310
|
+
query['RuleType'] = request.rule_type
|
|
11311
|
+
if not DaraCore.is_null(request.site_id):
|
|
11312
|
+
query['SiteId'] = request.site_id
|
|
11313
|
+
req = open_api_util_models.OpenApiRequest(
|
|
11314
|
+
query = Utils.query(query)
|
|
11315
|
+
)
|
|
11316
|
+
params = open_api_util_models.Params(
|
|
11317
|
+
action = 'DescribeHttpDDoSIntelligentRateLimitRules',
|
|
11318
|
+
version = '2024-09-10',
|
|
11319
|
+
protocol = 'HTTPS',
|
|
11320
|
+
pathname = '/',
|
|
11321
|
+
method = 'POST',
|
|
11322
|
+
auth_type = 'AK',
|
|
11323
|
+
style = 'RPC',
|
|
11324
|
+
req_body_type = 'formData',
|
|
11325
|
+
body_type = 'json'
|
|
11326
|
+
)
|
|
11327
|
+
return DaraCore.from_map(
|
|
11328
|
+
main_models.DescribeHttpDDoSIntelligentRateLimitRulesResponse(),
|
|
11329
|
+
await self.call_api_async(params, req, runtime)
|
|
11330
|
+
)
|
|
11331
|
+
|
|
11332
|
+
def describe_http_ddo_sintelligent_rate_limit_rules(
|
|
11333
|
+
self,
|
|
11334
|
+
request: main_models.DescribeHttpDDoSIntelligentRateLimitRulesRequest,
|
|
11335
|
+
) -> main_models.DescribeHttpDDoSIntelligentRateLimitRulesResponse:
|
|
11336
|
+
runtime = RuntimeOptions()
|
|
11337
|
+
return self.describe_http_ddo_sintelligent_rate_limit_rules_with_options(request, runtime)
|
|
11338
|
+
|
|
11339
|
+
async def describe_http_ddo_sintelligent_rate_limit_rules_async(
|
|
11340
|
+
self,
|
|
11341
|
+
request: main_models.DescribeHttpDDoSIntelligentRateLimitRulesRequest,
|
|
11342
|
+
) -> main_models.DescribeHttpDDoSIntelligentRateLimitRulesResponse:
|
|
11343
|
+
runtime = RuntimeOptions()
|
|
11344
|
+
return await self.describe_http_ddo_sintelligent_rate_limit_rules_with_options_async(request, runtime)
|
|
11345
|
+
|
|
11038
11346
|
def describe_kv_account_status_with_options(
|
|
11039
11347
|
self,
|
|
11040
11348
|
runtime: RuntimeOptions,
|
|
@@ -20691,6 +20999,72 @@ class Client(OpenApiClient):
|
|
|
20691
20999
|
runtime = RuntimeOptions()
|
|
20692
21000
|
return await self.list_site_delivery_tasks_with_options_async(request, runtime)
|
|
20693
21001
|
|
|
21002
|
+
def list_site_origin_client_certificates_with_options(
|
|
21003
|
+
self,
|
|
21004
|
+
request: main_models.ListSiteOriginClientCertificatesRequest,
|
|
21005
|
+
runtime: RuntimeOptions,
|
|
21006
|
+
) -> main_models.ListSiteOriginClientCertificatesResponse:
|
|
21007
|
+
request.validate()
|
|
21008
|
+
query = Utils.query(request.to_map())
|
|
21009
|
+
req = open_api_util_models.OpenApiRequest(
|
|
21010
|
+
query = Utils.query(query)
|
|
21011
|
+
)
|
|
21012
|
+
params = open_api_util_models.Params(
|
|
21013
|
+
action = 'ListSiteOriginClientCertificates',
|
|
21014
|
+
version = '2024-09-10',
|
|
21015
|
+
protocol = 'HTTPS',
|
|
21016
|
+
pathname = '/',
|
|
21017
|
+
method = 'GET',
|
|
21018
|
+
auth_type = 'AK',
|
|
21019
|
+
style = 'RPC',
|
|
21020
|
+
req_body_type = 'formData',
|
|
21021
|
+
body_type = 'json'
|
|
21022
|
+
)
|
|
21023
|
+
return DaraCore.from_map(
|
|
21024
|
+
main_models.ListSiteOriginClientCertificatesResponse(),
|
|
21025
|
+
self.call_api(params, req, runtime)
|
|
21026
|
+
)
|
|
21027
|
+
|
|
21028
|
+
async def list_site_origin_client_certificates_with_options_async(
|
|
21029
|
+
self,
|
|
21030
|
+
request: main_models.ListSiteOriginClientCertificatesRequest,
|
|
21031
|
+
runtime: RuntimeOptions,
|
|
21032
|
+
) -> main_models.ListSiteOriginClientCertificatesResponse:
|
|
21033
|
+
request.validate()
|
|
21034
|
+
query = Utils.query(request.to_map())
|
|
21035
|
+
req = open_api_util_models.OpenApiRequest(
|
|
21036
|
+
query = Utils.query(query)
|
|
21037
|
+
)
|
|
21038
|
+
params = open_api_util_models.Params(
|
|
21039
|
+
action = 'ListSiteOriginClientCertificates',
|
|
21040
|
+
version = '2024-09-10',
|
|
21041
|
+
protocol = 'HTTPS',
|
|
21042
|
+
pathname = '/',
|
|
21043
|
+
method = 'GET',
|
|
21044
|
+
auth_type = 'AK',
|
|
21045
|
+
style = 'RPC',
|
|
21046
|
+
req_body_type = 'formData',
|
|
21047
|
+
body_type = 'json'
|
|
21048
|
+
)
|
|
21049
|
+
return DaraCore.from_map(
|
|
21050
|
+
main_models.ListSiteOriginClientCertificatesResponse(),
|
|
21051
|
+
await self.call_api_async(params, req, runtime)
|
|
21052
|
+
)
|
|
21053
|
+
|
|
21054
|
+
def list_site_origin_client_certificates(
|
|
21055
|
+
self,
|
|
21056
|
+
request: main_models.ListSiteOriginClientCertificatesRequest,
|
|
21057
|
+
) -> main_models.ListSiteOriginClientCertificatesResponse:
|
|
21058
|
+
runtime = RuntimeOptions()
|
|
21059
|
+
return self.list_site_origin_client_certificates_with_options(request, runtime)
|
|
21060
|
+
|
|
21061
|
+
async def list_site_origin_client_certificates_async(
|
|
21062
|
+
self,
|
|
21063
|
+
request: main_models.ListSiteOriginClientCertificatesRequest,
|
|
21064
|
+
) -> main_models.ListSiteOriginClientCertificatesResponse:
|
|
21065
|
+
runtime = RuntimeOptions()
|
|
21066
|
+
return await self.list_site_origin_client_certificates_with_options_async(request, runtime)
|
|
21067
|
+
|
|
20694
21068
|
def list_site_routes_with_options(
|
|
20695
21069
|
self,
|
|
20696
21070
|
request: main_models.ListSiteRoutesRequest,
|
|
@@ -23803,6 +24177,80 @@ class Client(OpenApiClient):
|
|
|
23803
24177
|
runtime = RuntimeOptions()
|
|
23804
24178
|
return await self.set_client_certificate_hostnames_with_options_async(request, runtime)
|
|
23805
24179
|
|
|
24180
|
+
def set_ddos_max_burst_gbps_with_options(
|
|
24181
|
+
self,
|
|
24182
|
+
request: main_models.SetDdosMaxBurstGbpsRequest,
|
|
24183
|
+
runtime: RuntimeOptions,
|
|
24184
|
+
) -> main_models.SetDdosMaxBurstGbpsResponse:
|
|
24185
|
+
request.validate()
|
|
24186
|
+
query = {}
|
|
24187
|
+
if not DaraCore.is_null(request.instance_id):
|
|
24188
|
+
query['InstanceId'] = request.instance_id
|
|
24189
|
+
if not DaraCore.is_null(request.max_burst_gbps):
|
|
24190
|
+
query['MaxBurstGbps'] = request.max_burst_gbps
|
|
24191
|
+
req = open_api_util_models.OpenApiRequest(
|
|
24192
|
+
query = Utils.query(query)
|
|
24193
|
+
)
|
|
24194
|
+
params = open_api_util_models.Params(
|
|
24195
|
+
action = 'SetDdosMaxBurstGbps',
|
|
24196
|
+
version = '2024-09-10',
|
|
24197
|
+
protocol = 'HTTPS',
|
|
24198
|
+
pathname = '/',
|
|
24199
|
+
method = 'POST',
|
|
24200
|
+
auth_type = 'AK',
|
|
24201
|
+
style = 'RPC',
|
|
24202
|
+
req_body_type = 'formData',
|
|
24203
|
+
body_type = 'json'
|
|
24204
|
+
)
|
|
24205
|
+
return DaraCore.from_map(
|
|
24206
|
+
main_models.SetDdosMaxBurstGbpsResponse(),
|
|
24207
|
+
self.call_api(params, req, runtime)
|
|
24208
|
+
)
|
|
24209
|
+
|
|
24210
|
+
async def set_ddos_max_burst_gbps_with_options_async(
|
|
24211
|
+
self,
|
|
24212
|
+
request: main_models.SetDdosMaxBurstGbpsRequest,
|
|
24213
|
+
runtime: RuntimeOptions,
|
|
24214
|
+
) -> main_models.SetDdosMaxBurstGbpsResponse:
|
|
24215
|
+
request.validate()
|
|
24216
|
+
query = {}
|
|
24217
|
+
if not DaraCore.is_null(request.instance_id):
|
|
24218
|
+
query['InstanceId'] = request.instance_id
|
|
24219
|
+
if not DaraCore.is_null(request.max_burst_gbps):
|
|
24220
|
+
query['MaxBurstGbps'] = request.max_burst_gbps
|
|
24221
|
+
req = open_api_util_models.OpenApiRequest(
|
|
24222
|
+
query = Utils.query(query)
|
|
24223
|
+
)
|
|
24224
|
+
params = open_api_util_models.Params(
|
|
24225
|
+
action = 'SetDdosMaxBurstGbps',
|
|
24226
|
+
version = '2024-09-10',
|
|
24227
|
+
protocol = 'HTTPS',
|
|
24228
|
+
pathname = '/',
|
|
24229
|
+
method = 'POST',
|
|
24230
|
+
auth_type = 'AK',
|
|
24231
|
+
style = 'RPC',
|
|
24232
|
+
req_body_type = 'formData',
|
|
24233
|
+
body_type = 'json'
|
|
24234
|
+
)
|
|
24235
|
+
return DaraCore.from_map(
|
|
24236
|
+
main_models.SetDdosMaxBurstGbpsResponse(),
|
|
24237
|
+
await self.call_api_async(params, req, runtime)
|
|
24238
|
+
)
|
|
24239
|
+
|
|
24240
|
+
def set_ddos_max_burst_gbps(
|
|
24241
|
+
self,
|
|
24242
|
+
request: main_models.SetDdosMaxBurstGbpsRequest,
|
|
24243
|
+
) -> main_models.SetDdosMaxBurstGbpsResponse:
|
|
24244
|
+
runtime = RuntimeOptions()
|
|
24245
|
+
return self.set_ddos_max_burst_gbps_with_options(request, runtime)
|
|
24246
|
+
|
|
24247
|
+
async def set_ddos_max_burst_gbps_async(
|
|
24248
|
+
self,
|
|
24249
|
+
request: main_models.SetDdosMaxBurstGbpsRequest,
|
|
24250
|
+
) -> main_models.SetDdosMaxBurstGbpsResponse:
|
|
24251
|
+
runtime = RuntimeOptions()
|
|
24252
|
+
return await self.set_ddos_max_burst_gbps_with_options_async(request, runtime)
|
|
24253
|
+
|
|
23806
24254
|
def set_http_ddo_sattack_intelligent_protection_with_options(
|
|
23807
24255
|
self,
|
|
23808
24256
|
request: main_models.SetHttpDDoSAttackIntelligentProtectionRequest,
|
|
@@ -402,6 +402,9 @@ from ._describe_ddo_sbps_list_response import DescribeDDoSBpsListResponse
|
|
|
402
402
|
from ._describe_ddo_sl7qps_list_request import DescribeDDoSL7QpsListRequest
|
|
403
403
|
from ._describe_ddo_sl7qps_list_response_body import DescribeDDoSL7QpsListResponseBody
|
|
404
404
|
from ._describe_ddo_sl7qps_list_response import DescribeDDoSL7QpsListResponse
|
|
405
|
+
from ._describe_ddos_max_burst_gbps_request import DescribeDdosMaxBurstGbpsRequest
|
|
406
|
+
from ._describe_ddos_max_burst_gbps_response_body import DescribeDdosMaxBurstGbpsResponseBody
|
|
407
|
+
from ._describe_ddos_max_burst_gbps_response import DescribeDdosMaxBurstGbpsResponse
|
|
405
408
|
from ._describe_edge_container_app_stats_request import DescribeEdgeContainerAppStatsRequest
|
|
406
409
|
from ._describe_edge_container_app_stats_response_body import DescribeEdgeContainerAppStatsResponseBody
|
|
407
410
|
from ._describe_edge_container_app_stats_response import DescribeEdgeContainerAppStatsResponse
|
|
@@ -411,6 +414,15 @@ from ._describe_http_ddo_sattack_intelligent_protection_response import Describe
|
|
|
411
414
|
from ._describe_http_ddo_sattack_protection_request import DescribeHttpDDoSAttackProtectionRequest
|
|
412
415
|
from ._describe_http_ddo_sattack_protection_response_body import DescribeHttpDDoSAttackProtectionResponseBody
|
|
413
416
|
from ._describe_http_ddo_sattack_protection_response import DescribeHttpDDoSAttackProtectionResponse
|
|
417
|
+
from ._describe_http_ddo_sattack_rules_request import DescribeHttpDDoSAttackRulesRequest
|
|
418
|
+
from ._describe_http_ddo_sattack_rules_response_body import DescribeHttpDDoSAttackRulesResponseBody
|
|
419
|
+
from ._describe_http_ddo_sattack_rules_response import DescribeHttpDDoSAttackRulesResponse
|
|
420
|
+
from ._describe_http_ddo_sintelligent_acl_rules_request import DescribeHttpDDoSIntelligentAclRulesRequest
|
|
421
|
+
from ._describe_http_ddo_sintelligent_acl_rules_response_body import DescribeHttpDDoSIntelligentAclRulesResponseBody
|
|
422
|
+
from ._describe_http_ddo_sintelligent_acl_rules_response import DescribeHttpDDoSIntelligentAclRulesResponse
|
|
423
|
+
from ._describe_http_ddo_sintelligent_rate_limit_rules_request import DescribeHttpDDoSIntelligentRateLimitRulesRequest
|
|
424
|
+
from ._describe_http_ddo_sintelligent_rate_limit_rules_response_body import DescribeHttpDDoSIntelligentRateLimitRulesResponseBody
|
|
425
|
+
from ._describe_http_ddo_sintelligent_rate_limit_rules_response import DescribeHttpDDoSIntelligentRateLimitRulesResponse
|
|
414
426
|
from ._describe_kv_account_status_response_body import DescribeKvAccountStatusResponseBody
|
|
415
427
|
from ._describe_kv_account_status_response import DescribeKvAccountStatusResponse
|
|
416
428
|
from ._describe_preload_tasks_request import DescribePreloadTasksRequest
|
|
@@ -834,6 +846,9 @@ from ._list_scheduled_preload_jobs_response import ListScheduledPreloadJobsRespo
|
|
|
834
846
|
from ._list_site_delivery_tasks_request import ListSiteDeliveryTasksRequest
|
|
835
847
|
from ._list_site_delivery_tasks_response_body import ListSiteDeliveryTasksResponseBody
|
|
836
848
|
from ._list_site_delivery_tasks_response import ListSiteDeliveryTasksResponse
|
|
849
|
+
from ._list_site_origin_client_certificates_request import ListSiteOriginClientCertificatesRequest
|
|
850
|
+
from ._list_site_origin_client_certificates_response_body import ListSiteOriginClientCertificatesResponseBody
|
|
851
|
+
from ._list_site_origin_client_certificates_response import ListSiteOriginClientCertificatesResponse
|
|
837
852
|
from ._list_site_routes_request import ListSiteRoutesRequest
|
|
838
853
|
from ._list_site_routes_response_body import ListSiteRoutesResponseBody
|
|
839
854
|
from ._list_site_routes_response import ListSiteRoutesResponse
|
|
@@ -950,6 +965,9 @@ from ._set_client_certificate_hostnames_request import SetClientCertificateHostn
|
|
|
950
965
|
from ._set_client_certificate_hostnames_shrink_request import SetClientCertificateHostnamesShrinkRequest
|
|
951
966
|
from ._set_client_certificate_hostnames_response_body import SetClientCertificateHostnamesResponseBody
|
|
952
967
|
from ._set_client_certificate_hostnames_response import SetClientCertificateHostnamesResponse
|
|
968
|
+
from ._set_ddos_max_burst_gbps_request import SetDdosMaxBurstGbpsRequest
|
|
969
|
+
from ._set_ddos_max_burst_gbps_response_body import SetDdosMaxBurstGbpsResponseBody
|
|
970
|
+
from ._set_ddos_max_burst_gbps_response import SetDdosMaxBurstGbpsResponse
|
|
953
971
|
from ._set_http_ddo_sattack_intelligent_protection_request import SetHttpDDoSAttackIntelligentProtectionRequest
|
|
954
972
|
from ._set_http_ddo_sattack_intelligent_protection_response_body import SetHttpDDoSAttackIntelligentProtectionResponseBody
|
|
955
973
|
from ._set_http_ddo_sattack_intelligent_protection_response import SetHttpDDoSAttackIntelligentProtectionResponse
|
|
@@ -1267,6 +1285,9 @@ from ._describe_ddo_sall_event_list_response_body import DescribeDDoSAllEventLis
|
|
|
1267
1285
|
from ._describe_ddo_sbps_list_response_body import DescribeDDoSBpsListResponseBodyDataModule
|
|
1268
1286
|
from ._describe_ddo_sl7qps_list_response_body import DescribeDDoSL7QpsListResponseBodyDataModule
|
|
1269
1287
|
from ._describe_edge_container_app_stats_response_body import DescribeEdgeContainerAppStatsResponseBodyPoints
|
|
1288
|
+
from ._describe_http_ddo_sattack_rules_response_body import DescribeHttpDDoSAttackRulesResponseBodyRuleInfos
|
|
1289
|
+
from ._describe_http_ddo_sintelligent_acl_rules_response_body import DescribeHttpDDoSIntelligentAclRulesResponseBodyRuleInfos
|
|
1290
|
+
from ._describe_http_ddo_sintelligent_rate_limit_rules_response_body import DescribeHttpDDoSIntelligentRateLimitRulesResponseBodyRuleInfos
|
|
1270
1291
|
from ._describe_preload_tasks_response_body import DescribePreloadTasksResponseBodyTasks
|
|
1271
1292
|
from ._describe_purge_tasks_response_body import DescribePurgeTasksResponseBodyTasks
|
|
1272
1293
|
from ._describe_site_logs_response_body import DescribeSiteLogsResponseBodySiteLogDetailsLogInfos
|
|
@@ -1436,6 +1457,7 @@ from ._list_routine_routes_response_body import ListRoutineRoutesResponseBodyCon
|
|
|
1436
1457
|
from ._list_scheduled_preload_executions_response_body import ListScheduledPreloadExecutionsResponseBodyExecutions
|
|
1437
1458
|
from ._list_scheduled_preload_jobs_response_body import ListScheduledPreloadJobsResponseBodyJobs
|
|
1438
1459
|
from ._list_site_delivery_tasks_response_body import ListSiteDeliveryTasksResponseBodyTasks
|
|
1460
|
+
from ._list_site_origin_client_certificates_response_body import ListSiteOriginClientCertificatesResponseBodyResult
|
|
1439
1461
|
from ._list_site_routes_response_body import ListSiteRoutesResponseBodyConfigs
|
|
1440
1462
|
from ._list_sites_request import ListSitesRequestTagFilter
|
|
1441
1463
|
from ._list_sites_response_body import ListSitesResponseBodySites
|
|
@@ -1892,6 +1914,9 @@ __all__ = [
|
|
|
1892
1914
|
DescribeDDoSL7QpsListRequest,
|
|
1893
1915
|
DescribeDDoSL7QpsListResponseBody,
|
|
1894
1916
|
DescribeDDoSL7QpsListResponse,
|
|
1917
|
+
DescribeDdosMaxBurstGbpsRequest,
|
|
1918
|
+
DescribeDdosMaxBurstGbpsResponseBody,
|
|
1919
|
+
DescribeDdosMaxBurstGbpsResponse,
|
|
1895
1920
|
DescribeEdgeContainerAppStatsRequest,
|
|
1896
1921
|
DescribeEdgeContainerAppStatsResponseBody,
|
|
1897
1922
|
DescribeEdgeContainerAppStatsResponse,
|
|
@@ -1901,6 +1926,15 @@ __all__ = [
|
|
|
1901
1926
|
DescribeHttpDDoSAttackProtectionRequest,
|
|
1902
1927
|
DescribeHttpDDoSAttackProtectionResponseBody,
|
|
1903
1928
|
DescribeHttpDDoSAttackProtectionResponse,
|
|
1929
|
+
DescribeHttpDDoSAttackRulesRequest,
|
|
1930
|
+
DescribeHttpDDoSAttackRulesResponseBody,
|
|
1931
|
+
DescribeHttpDDoSAttackRulesResponse,
|
|
1932
|
+
DescribeHttpDDoSIntelligentAclRulesRequest,
|
|
1933
|
+
DescribeHttpDDoSIntelligentAclRulesResponseBody,
|
|
1934
|
+
DescribeHttpDDoSIntelligentAclRulesResponse,
|
|
1935
|
+
DescribeHttpDDoSIntelligentRateLimitRulesRequest,
|
|
1936
|
+
DescribeHttpDDoSIntelligentRateLimitRulesResponseBody,
|
|
1937
|
+
DescribeHttpDDoSIntelligentRateLimitRulesResponse,
|
|
1904
1938
|
DescribeKvAccountStatusResponseBody,
|
|
1905
1939
|
DescribeKvAccountStatusResponse,
|
|
1906
1940
|
DescribePreloadTasksRequest,
|
|
@@ -2324,6 +2358,9 @@ __all__ = [
|
|
|
2324
2358
|
ListSiteDeliveryTasksRequest,
|
|
2325
2359
|
ListSiteDeliveryTasksResponseBody,
|
|
2326
2360
|
ListSiteDeliveryTasksResponse,
|
|
2361
|
+
ListSiteOriginClientCertificatesRequest,
|
|
2362
|
+
ListSiteOriginClientCertificatesResponseBody,
|
|
2363
|
+
ListSiteOriginClientCertificatesResponse,
|
|
2327
2364
|
ListSiteRoutesRequest,
|
|
2328
2365
|
ListSiteRoutesResponseBody,
|
|
2329
2366
|
ListSiteRoutesResponse,
|
|
@@ -2440,6 +2477,9 @@ __all__ = [
|
|
|
2440
2477
|
SetClientCertificateHostnamesShrinkRequest,
|
|
2441
2478
|
SetClientCertificateHostnamesResponseBody,
|
|
2442
2479
|
SetClientCertificateHostnamesResponse,
|
|
2480
|
+
SetDdosMaxBurstGbpsRequest,
|
|
2481
|
+
SetDdosMaxBurstGbpsResponseBody,
|
|
2482
|
+
SetDdosMaxBurstGbpsResponse,
|
|
2443
2483
|
SetHttpDDoSAttackIntelligentProtectionRequest,
|
|
2444
2484
|
SetHttpDDoSAttackIntelligentProtectionResponseBody,
|
|
2445
2485
|
SetHttpDDoSAttackIntelligentProtectionResponse,
|
|
@@ -2757,6 +2797,9 @@ __all__ = [
|
|
|
2757
2797
|
DescribeDDoSBpsListResponseBodyDataModule,
|
|
2758
2798
|
DescribeDDoSL7QpsListResponseBodyDataModule,
|
|
2759
2799
|
DescribeEdgeContainerAppStatsResponseBodyPoints,
|
|
2800
|
+
DescribeHttpDDoSAttackRulesResponseBodyRuleInfos,
|
|
2801
|
+
DescribeHttpDDoSIntelligentAclRulesResponseBodyRuleInfos,
|
|
2802
|
+
DescribeHttpDDoSIntelligentRateLimitRulesResponseBodyRuleInfos,
|
|
2760
2803
|
DescribePreloadTasksResponseBodyTasks,
|
|
2761
2804
|
DescribePurgeTasksResponseBodyTasks,
|
|
2762
2805
|
DescribeSiteLogsResponseBodySiteLogDetailsLogInfos,
|
|
@@ -2926,6 +2969,7 @@ __all__ = [
|
|
|
2926
2969
|
ListScheduledPreloadExecutionsResponseBodyExecutions,
|
|
2927
2970
|
ListScheduledPreloadJobsResponseBodyJobs,
|
|
2928
2971
|
ListSiteDeliveryTasksResponseBodyTasks,
|
|
2972
|
+
ListSiteOriginClientCertificatesResponseBodyResult,
|
|
2929
2973
|
ListSiteRoutesResponseBodyConfigs,
|
|
2930
2974
|
ListSitesRequestTagFilter,
|
|
2931
2975
|
ListSitesResponseBodySites,
|
|
@@ -12,12 +12,20 @@ class CreateEdgeContainerAppImageSecretRequest(DaraModel):
|
|
|
12
12
|
registry: str = None,
|
|
13
13
|
username: str = None,
|
|
14
14
|
):
|
|
15
|
+
# Application ID, which can be obtained using the [ListEdgeContainerApps](~~ListEdgeContainerApps~~) interface.
|
|
16
|
+
#
|
|
15
17
|
# This parameter is required.
|
|
16
18
|
self.app_id = app_id
|
|
19
|
+
# Image repository password.
|
|
20
|
+
#
|
|
17
21
|
# This parameter is required.
|
|
18
22
|
self.password = password
|
|
23
|
+
# Image repository address.
|
|
24
|
+
#
|
|
19
25
|
# This parameter is required.
|
|
20
26
|
self.registry = registry
|
|
27
|
+
# Image repository username.
|
|
28
|
+
#
|
|
21
29
|
# This parameter is required.
|
|
22
30
|
self.username = username
|
|
23
31
|
|
|
@@ -10,8 +10,12 @@ class DeleteEdgeContainerAppImageSecretRequest(DaraModel):
|
|
|
10
10
|
app_id: str = None,
|
|
11
11
|
name: str = None,
|
|
12
12
|
):
|
|
13
|
+
# Application ID, which can be obtained using the [ListEdgeContainerApps](~~ListEdgeContainerApps~~) API.
|
|
14
|
+
#
|
|
13
15
|
# This parameter is required.
|
|
14
16
|
self.app_id = app_id
|
|
17
|
+
# Name of the image secret.
|
|
18
|
+
#
|
|
15
19
|
# This parameter is required.
|
|
16
20
|
self.name = name
|
|
17
21
|
|
|
@@ -11,10 +11,16 @@ class DeleteHttpDDoSIntelligentRuleRequest(DaraModel):
|
|
|
11
11
|
rule_id: int = None,
|
|
12
12
|
site_id: int = None,
|
|
13
13
|
):
|
|
14
|
+
# Record name.
|
|
15
|
+
#
|
|
14
16
|
# This parameter is required.
|
|
15
17
|
self.record_name = record_name
|
|
18
|
+
# Rule ID.
|
|
19
|
+
#
|
|
16
20
|
# This parameter is required.
|
|
17
21
|
self.rule_id = rule_id
|
|
22
|
+
# Site ID, which can be obtained by calling the [ListSites](~~ListSites~~) interface.
|
|
23
|
+
#
|
|
18
24
|
# This parameter is required.
|
|
19
25
|
self.site_id = site_id
|
|
20
26
|
|