alibabacloud-esa20240910 2.37.0__py3-none-any.whl → 2.38.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.
Files changed (23) hide show
  1. alibabacloud_esa20240910/__init__.py +1 -1
  2. alibabacloud_esa20240910/client.py +438 -0
  3. alibabacloud_esa20240910/models/__init__.py +32 -0
  4. alibabacloud_esa20240910/models/_create_custom_response_code_rule_request.py +105 -0
  5. alibabacloud_esa20240910/models/_create_custom_response_code_rule_response.py +54 -0
  6. alibabacloud_esa20240910/models/_create_custom_response_code_rule_response_body.py +43 -0
  7. alibabacloud_esa20240910/models/_delete_custom_response_code_rule_request.py +47 -0
  8. alibabacloud_esa20240910/models/_delete_custom_response_code_rule_response.py +54 -0
  9. alibabacloud_esa20240910/models/_delete_custom_response_code_rule_response_body.py +34 -0
  10. alibabacloud_esa20240910/models/_get_custom_response_code_rule_request.py +43 -0
  11. alibabacloud_esa20240910/models/_get_custom_response_code_rule_response.py +54 -0
  12. alibabacloud_esa20240910/models/_get_custom_response_code_rule_response_body.py +105 -0
  13. alibabacloud_esa20240910/models/_list_custom_response_code_rules_request.py +93 -0
  14. alibabacloud_esa20240910/models/_list_custom_response_code_rules_response.py +54 -0
  15. alibabacloud_esa20240910/models/_list_custom_response_code_rules_response_body.py +199 -0
  16. alibabacloud_esa20240910/models/_update_custom_response_code_rule_request.py +107 -0
  17. alibabacloud_esa20240910/models/_update_custom_response_code_rule_response.py +54 -0
  18. alibabacloud_esa20240910/models/_update_custom_response_code_rule_response_body.py +34 -0
  19. {alibabacloud_esa20240910-2.37.0.dist-info → alibabacloud_esa20240910-2.38.0.dist-info}/METADATA +1 -1
  20. {alibabacloud_esa20240910-2.37.0.dist-info → alibabacloud_esa20240910-2.38.0.dist-info}/RECORD +23 -8
  21. {alibabacloud_esa20240910-2.37.0.dist-info → alibabacloud_esa20240910-2.38.0.dist-info}/LICENSE +0 -0
  22. {alibabacloud_esa20240910-2.37.0.dist-info → alibabacloud_esa20240910-2.38.0.dist-info}/WHEEL +0 -0
  23. {alibabacloud_esa20240910-2.37.0.dist-info → alibabacloud_esa20240910-2.38.0.dist-info}/top_level.txt +0 -0
@@ -1 +1 @@
1
- __version__ = '2.37.0'
1
+ __version__ = '2.38.0'
@@ -2417,6 +2417,104 @@ class Client(OpenApiClient):
2417
2417
  runtime = RuntimeOptions()
2418
2418
  return await self.create_custom_hostname_with_options_async(request, runtime)
2419
2419
 
2420
+ def create_custom_response_code_rule_with_options(
2421
+ self,
2422
+ request: main_models.CreateCustomResponseCodeRuleRequest,
2423
+ runtime: RuntimeOptions,
2424
+ ) -> main_models.CreateCustomResponseCodeRuleResponse:
2425
+ request.validate()
2426
+ query = {}
2427
+ if not DaraCore.is_null(request.page_id):
2428
+ query['PageId'] = request.page_id
2429
+ if not DaraCore.is_null(request.return_code):
2430
+ query['ReturnCode'] = request.return_code
2431
+ if not DaraCore.is_null(request.rule):
2432
+ query['Rule'] = request.rule
2433
+ if not DaraCore.is_null(request.rule_enable):
2434
+ query['RuleEnable'] = request.rule_enable
2435
+ if not DaraCore.is_null(request.rule_name):
2436
+ query['RuleName'] = request.rule_name
2437
+ if not DaraCore.is_null(request.sequence):
2438
+ query['Sequence'] = request.sequence
2439
+ if not DaraCore.is_null(request.site_id):
2440
+ query['SiteId'] = request.site_id
2441
+ if not DaraCore.is_null(request.site_version):
2442
+ query['SiteVersion'] = request.site_version
2443
+ req = open_api_util_models.OpenApiRequest(
2444
+ query = Utils.query(query)
2445
+ )
2446
+ params = open_api_util_models.Params(
2447
+ action = 'CreateCustomResponseCodeRule',
2448
+ version = '2024-09-10',
2449
+ protocol = 'HTTPS',
2450
+ pathname = '/',
2451
+ method = 'POST',
2452
+ auth_type = 'AK',
2453
+ style = 'RPC',
2454
+ req_body_type = 'formData',
2455
+ body_type = 'json'
2456
+ )
2457
+ return DaraCore.from_map(
2458
+ main_models.CreateCustomResponseCodeRuleResponse(),
2459
+ self.call_api(params, req, runtime)
2460
+ )
2461
+
2462
+ async def create_custom_response_code_rule_with_options_async(
2463
+ self,
2464
+ request: main_models.CreateCustomResponseCodeRuleRequest,
2465
+ runtime: RuntimeOptions,
2466
+ ) -> main_models.CreateCustomResponseCodeRuleResponse:
2467
+ request.validate()
2468
+ query = {}
2469
+ if not DaraCore.is_null(request.page_id):
2470
+ query['PageId'] = request.page_id
2471
+ if not DaraCore.is_null(request.return_code):
2472
+ query['ReturnCode'] = request.return_code
2473
+ if not DaraCore.is_null(request.rule):
2474
+ query['Rule'] = request.rule
2475
+ if not DaraCore.is_null(request.rule_enable):
2476
+ query['RuleEnable'] = request.rule_enable
2477
+ if not DaraCore.is_null(request.rule_name):
2478
+ query['RuleName'] = request.rule_name
2479
+ if not DaraCore.is_null(request.sequence):
2480
+ query['Sequence'] = request.sequence
2481
+ if not DaraCore.is_null(request.site_id):
2482
+ query['SiteId'] = request.site_id
2483
+ if not DaraCore.is_null(request.site_version):
2484
+ query['SiteVersion'] = request.site_version
2485
+ req = open_api_util_models.OpenApiRequest(
2486
+ query = Utils.query(query)
2487
+ )
2488
+ params = open_api_util_models.Params(
2489
+ action = 'CreateCustomResponseCodeRule',
2490
+ version = '2024-09-10',
2491
+ protocol = 'HTTPS',
2492
+ pathname = '/',
2493
+ method = 'POST',
2494
+ auth_type = 'AK',
2495
+ style = 'RPC',
2496
+ req_body_type = 'formData',
2497
+ body_type = 'json'
2498
+ )
2499
+ return DaraCore.from_map(
2500
+ main_models.CreateCustomResponseCodeRuleResponse(),
2501
+ await self.call_api_async(params, req, runtime)
2502
+ )
2503
+
2504
+ def create_custom_response_code_rule(
2505
+ self,
2506
+ request: main_models.CreateCustomResponseCodeRuleRequest,
2507
+ ) -> main_models.CreateCustomResponseCodeRuleResponse:
2508
+ runtime = RuntimeOptions()
2509
+ return self.create_custom_response_code_rule_with_options(request, runtime)
2510
+
2511
+ async def create_custom_response_code_rule_async(
2512
+ self,
2513
+ request: main_models.CreateCustomResponseCodeRuleRequest,
2514
+ ) -> main_models.CreateCustomResponseCodeRuleResponse:
2515
+ runtime = RuntimeOptions()
2516
+ return await self.create_custom_response_code_rule_with_options_async(request, runtime)
2517
+
2420
2518
  def create_custom_scene_policy_with_options(
2421
2519
  self,
2422
2520
  request: main_models.CreateCustomScenePolicyRequest,
@@ -7387,6 +7485,80 @@ class Client(OpenApiClient):
7387
7485
  runtime = RuntimeOptions()
7388
7486
  return await self.delete_custom_hostname_with_options_async(request, runtime)
7389
7487
 
7488
+ def delete_custom_response_code_rule_with_options(
7489
+ self,
7490
+ request: main_models.DeleteCustomResponseCodeRuleRequest,
7491
+ runtime: RuntimeOptions,
7492
+ ) -> main_models.DeleteCustomResponseCodeRuleResponse:
7493
+ request.validate()
7494
+ query = {}
7495
+ if not DaraCore.is_null(request.config_id):
7496
+ query['ConfigId'] = request.config_id
7497
+ if not DaraCore.is_null(request.site_id):
7498
+ query['SiteId'] = request.site_id
7499
+ req = open_api_util_models.OpenApiRequest(
7500
+ query = Utils.query(query)
7501
+ )
7502
+ params = open_api_util_models.Params(
7503
+ action = 'DeleteCustomResponseCodeRule',
7504
+ version = '2024-09-10',
7505
+ protocol = 'HTTPS',
7506
+ pathname = '/',
7507
+ method = 'POST',
7508
+ auth_type = 'AK',
7509
+ style = 'RPC',
7510
+ req_body_type = 'formData',
7511
+ body_type = 'json'
7512
+ )
7513
+ return DaraCore.from_map(
7514
+ main_models.DeleteCustomResponseCodeRuleResponse(),
7515
+ self.call_api(params, req, runtime)
7516
+ )
7517
+
7518
+ async def delete_custom_response_code_rule_with_options_async(
7519
+ self,
7520
+ request: main_models.DeleteCustomResponseCodeRuleRequest,
7521
+ runtime: RuntimeOptions,
7522
+ ) -> main_models.DeleteCustomResponseCodeRuleResponse:
7523
+ request.validate()
7524
+ query = {}
7525
+ if not DaraCore.is_null(request.config_id):
7526
+ query['ConfigId'] = request.config_id
7527
+ if not DaraCore.is_null(request.site_id):
7528
+ query['SiteId'] = request.site_id
7529
+ req = open_api_util_models.OpenApiRequest(
7530
+ query = Utils.query(query)
7531
+ )
7532
+ params = open_api_util_models.Params(
7533
+ action = 'DeleteCustomResponseCodeRule',
7534
+ version = '2024-09-10',
7535
+ protocol = 'HTTPS',
7536
+ pathname = '/',
7537
+ method = 'POST',
7538
+ auth_type = 'AK',
7539
+ style = 'RPC',
7540
+ req_body_type = 'formData',
7541
+ body_type = 'json'
7542
+ )
7543
+ return DaraCore.from_map(
7544
+ main_models.DeleteCustomResponseCodeRuleResponse(),
7545
+ await self.call_api_async(params, req, runtime)
7546
+ )
7547
+
7548
+ def delete_custom_response_code_rule(
7549
+ self,
7550
+ request: main_models.DeleteCustomResponseCodeRuleRequest,
7551
+ ) -> main_models.DeleteCustomResponseCodeRuleResponse:
7552
+ runtime = RuntimeOptions()
7553
+ return self.delete_custom_response_code_rule_with_options(request, runtime)
7554
+
7555
+ async def delete_custom_response_code_rule_async(
7556
+ self,
7557
+ request: main_models.DeleteCustomResponseCodeRuleRequest,
7558
+ ) -> main_models.DeleteCustomResponseCodeRuleResponse:
7559
+ runtime = RuntimeOptions()
7560
+ return await self.delete_custom_response_code_rule_with_options_async(request, runtime)
7561
+
7390
7562
  def delete_custom_scene_policy_with_options(
7391
7563
  self,
7392
7564
  request: main_models.DeleteCustomScenePolicyRequest,
@@ -13375,6 +13547,80 @@ class Client(OpenApiClient):
13375
13547
  runtime = RuntimeOptions()
13376
13548
  return await self.get_custom_hostname_with_options_async(request, runtime)
13377
13549
 
13550
+ def get_custom_response_code_rule_with_options(
13551
+ self,
13552
+ request: main_models.GetCustomResponseCodeRuleRequest,
13553
+ runtime: RuntimeOptions,
13554
+ ) -> main_models.GetCustomResponseCodeRuleResponse:
13555
+ request.validate()
13556
+ query = {}
13557
+ if not DaraCore.is_null(request.config_id):
13558
+ query['ConfigId'] = request.config_id
13559
+ if not DaraCore.is_null(request.site_id):
13560
+ query['SiteId'] = request.site_id
13561
+ req = open_api_util_models.OpenApiRequest(
13562
+ query = Utils.query(query)
13563
+ )
13564
+ params = open_api_util_models.Params(
13565
+ action = 'GetCustomResponseCodeRule',
13566
+ version = '2024-09-10',
13567
+ protocol = 'HTTPS',
13568
+ pathname = '/',
13569
+ method = 'POST',
13570
+ auth_type = 'AK',
13571
+ style = 'RPC',
13572
+ req_body_type = 'formData',
13573
+ body_type = 'json'
13574
+ )
13575
+ return DaraCore.from_map(
13576
+ main_models.GetCustomResponseCodeRuleResponse(),
13577
+ self.call_api(params, req, runtime)
13578
+ )
13579
+
13580
+ async def get_custom_response_code_rule_with_options_async(
13581
+ self,
13582
+ request: main_models.GetCustomResponseCodeRuleRequest,
13583
+ runtime: RuntimeOptions,
13584
+ ) -> main_models.GetCustomResponseCodeRuleResponse:
13585
+ request.validate()
13586
+ query = {}
13587
+ if not DaraCore.is_null(request.config_id):
13588
+ query['ConfigId'] = request.config_id
13589
+ if not DaraCore.is_null(request.site_id):
13590
+ query['SiteId'] = request.site_id
13591
+ req = open_api_util_models.OpenApiRequest(
13592
+ query = Utils.query(query)
13593
+ )
13594
+ params = open_api_util_models.Params(
13595
+ action = 'GetCustomResponseCodeRule',
13596
+ version = '2024-09-10',
13597
+ protocol = 'HTTPS',
13598
+ pathname = '/',
13599
+ method = 'POST',
13600
+ auth_type = 'AK',
13601
+ style = 'RPC',
13602
+ req_body_type = 'formData',
13603
+ body_type = 'json'
13604
+ )
13605
+ return DaraCore.from_map(
13606
+ main_models.GetCustomResponseCodeRuleResponse(),
13607
+ await self.call_api_async(params, req, runtime)
13608
+ )
13609
+
13610
+ def get_custom_response_code_rule(
13611
+ self,
13612
+ request: main_models.GetCustomResponseCodeRuleRequest,
13613
+ ) -> main_models.GetCustomResponseCodeRuleResponse:
13614
+ runtime = RuntimeOptions()
13615
+ return self.get_custom_response_code_rule_with_options(request, runtime)
13616
+
13617
+ async def get_custom_response_code_rule_async(
13618
+ self,
13619
+ request: main_models.GetCustomResponseCodeRuleRequest,
13620
+ ) -> main_models.GetCustomResponseCodeRuleResponse:
13621
+ runtime = RuntimeOptions()
13622
+ return await self.get_custom_response_code_rule_with_options_async(request, runtime)
13623
+
13378
13624
  def get_development_mode_with_options(
13379
13625
  self,
13380
13626
  request: main_models.GetDevelopmentModeRequest,
@@ -18799,6 +19045,100 @@ class Client(OpenApiClient):
18799
19045
  runtime = RuntimeOptions()
18800
19046
  return await self.list_custom_hostnames_with_options_async(request, runtime)
18801
19047
 
19048
+ def list_custom_response_code_rules_with_options(
19049
+ self,
19050
+ request: main_models.ListCustomResponseCodeRulesRequest,
19051
+ runtime: RuntimeOptions,
19052
+ ) -> main_models.ListCustomResponseCodeRulesResponse:
19053
+ request.validate()
19054
+ query = {}
19055
+ if not DaraCore.is_null(request.config_id):
19056
+ query['ConfigId'] = request.config_id
19057
+ if not DaraCore.is_null(request.config_type):
19058
+ query['ConfigType'] = request.config_type
19059
+ if not DaraCore.is_null(request.page_number):
19060
+ query['PageNumber'] = request.page_number
19061
+ if not DaraCore.is_null(request.page_size):
19062
+ query['PageSize'] = request.page_size
19063
+ if not DaraCore.is_null(request.rule_name):
19064
+ query['RuleName'] = request.rule_name
19065
+ if not DaraCore.is_null(request.site_id):
19066
+ query['SiteId'] = request.site_id
19067
+ if not DaraCore.is_null(request.site_version):
19068
+ query['SiteVersion'] = request.site_version
19069
+ req = open_api_util_models.OpenApiRequest(
19070
+ query = Utils.query(query)
19071
+ )
19072
+ params = open_api_util_models.Params(
19073
+ action = 'ListCustomResponseCodeRules',
19074
+ version = '2024-09-10',
19075
+ protocol = 'HTTPS',
19076
+ pathname = '/',
19077
+ method = 'POST',
19078
+ auth_type = 'AK',
19079
+ style = 'RPC',
19080
+ req_body_type = 'formData',
19081
+ body_type = 'json'
19082
+ )
19083
+ return DaraCore.from_map(
19084
+ main_models.ListCustomResponseCodeRulesResponse(),
19085
+ self.call_api(params, req, runtime)
19086
+ )
19087
+
19088
+ async def list_custom_response_code_rules_with_options_async(
19089
+ self,
19090
+ request: main_models.ListCustomResponseCodeRulesRequest,
19091
+ runtime: RuntimeOptions,
19092
+ ) -> main_models.ListCustomResponseCodeRulesResponse:
19093
+ request.validate()
19094
+ query = {}
19095
+ if not DaraCore.is_null(request.config_id):
19096
+ query['ConfigId'] = request.config_id
19097
+ if not DaraCore.is_null(request.config_type):
19098
+ query['ConfigType'] = request.config_type
19099
+ if not DaraCore.is_null(request.page_number):
19100
+ query['PageNumber'] = request.page_number
19101
+ if not DaraCore.is_null(request.page_size):
19102
+ query['PageSize'] = request.page_size
19103
+ if not DaraCore.is_null(request.rule_name):
19104
+ query['RuleName'] = request.rule_name
19105
+ if not DaraCore.is_null(request.site_id):
19106
+ query['SiteId'] = request.site_id
19107
+ if not DaraCore.is_null(request.site_version):
19108
+ query['SiteVersion'] = request.site_version
19109
+ req = open_api_util_models.OpenApiRequest(
19110
+ query = Utils.query(query)
19111
+ )
19112
+ params = open_api_util_models.Params(
19113
+ action = 'ListCustomResponseCodeRules',
19114
+ version = '2024-09-10',
19115
+ protocol = 'HTTPS',
19116
+ pathname = '/',
19117
+ method = 'POST',
19118
+ auth_type = 'AK',
19119
+ style = 'RPC',
19120
+ req_body_type = 'formData',
19121
+ body_type = 'json'
19122
+ )
19123
+ return DaraCore.from_map(
19124
+ main_models.ListCustomResponseCodeRulesResponse(),
19125
+ await self.call_api_async(params, req, runtime)
19126
+ )
19127
+
19128
+ def list_custom_response_code_rules(
19129
+ self,
19130
+ request: main_models.ListCustomResponseCodeRulesRequest,
19131
+ ) -> main_models.ListCustomResponseCodeRulesResponse:
19132
+ runtime = RuntimeOptions()
19133
+ return self.list_custom_response_code_rules_with_options(request, runtime)
19134
+
19135
+ async def list_custom_response_code_rules_async(
19136
+ self,
19137
+ request: main_models.ListCustomResponseCodeRulesRequest,
19138
+ ) -> main_models.ListCustomResponseCodeRulesResponse:
19139
+ runtime = RuntimeOptions()
19140
+ return await self.list_custom_response_code_rules_with_options_async(request, runtime)
19141
+
18802
19142
  def list_esaipinfo_with_options(
18803
19143
  self,
18804
19144
  request: main_models.ListESAIPInfoRequest,
@@ -26129,6 +26469,104 @@ class Client(OpenApiClient):
26129
26469
  runtime = RuntimeOptions()
26130
26470
  return await self.update_custom_hostname_with_options_async(request, runtime)
26131
26471
 
26472
+ def update_custom_response_code_rule_with_options(
26473
+ self,
26474
+ request: main_models.UpdateCustomResponseCodeRuleRequest,
26475
+ runtime: RuntimeOptions,
26476
+ ) -> main_models.UpdateCustomResponseCodeRuleResponse:
26477
+ request.validate()
26478
+ query = {}
26479
+ if not DaraCore.is_null(request.config_id):
26480
+ query['ConfigId'] = request.config_id
26481
+ if not DaraCore.is_null(request.page_id):
26482
+ query['PageId'] = request.page_id
26483
+ if not DaraCore.is_null(request.return_code):
26484
+ query['ReturnCode'] = request.return_code
26485
+ if not DaraCore.is_null(request.rule):
26486
+ query['Rule'] = request.rule
26487
+ if not DaraCore.is_null(request.rule_enable):
26488
+ query['RuleEnable'] = request.rule_enable
26489
+ if not DaraCore.is_null(request.rule_name):
26490
+ query['RuleName'] = request.rule_name
26491
+ if not DaraCore.is_null(request.sequence):
26492
+ query['Sequence'] = request.sequence
26493
+ if not DaraCore.is_null(request.site_id):
26494
+ query['SiteId'] = request.site_id
26495
+ req = open_api_util_models.OpenApiRequest(
26496
+ query = Utils.query(query)
26497
+ )
26498
+ params = open_api_util_models.Params(
26499
+ action = 'UpdateCustomResponseCodeRule',
26500
+ version = '2024-09-10',
26501
+ protocol = 'HTTPS',
26502
+ pathname = '/',
26503
+ method = 'POST',
26504
+ auth_type = 'AK',
26505
+ style = 'RPC',
26506
+ req_body_type = 'formData',
26507
+ body_type = 'json'
26508
+ )
26509
+ return DaraCore.from_map(
26510
+ main_models.UpdateCustomResponseCodeRuleResponse(),
26511
+ self.call_api(params, req, runtime)
26512
+ )
26513
+
26514
+ async def update_custom_response_code_rule_with_options_async(
26515
+ self,
26516
+ request: main_models.UpdateCustomResponseCodeRuleRequest,
26517
+ runtime: RuntimeOptions,
26518
+ ) -> main_models.UpdateCustomResponseCodeRuleResponse:
26519
+ request.validate()
26520
+ query = {}
26521
+ if not DaraCore.is_null(request.config_id):
26522
+ query['ConfigId'] = request.config_id
26523
+ if not DaraCore.is_null(request.page_id):
26524
+ query['PageId'] = request.page_id
26525
+ if not DaraCore.is_null(request.return_code):
26526
+ query['ReturnCode'] = request.return_code
26527
+ if not DaraCore.is_null(request.rule):
26528
+ query['Rule'] = request.rule
26529
+ if not DaraCore.is_null(request.rule_enable):
26530
+ query['RuleEnable'] = request.rule_enable
26531
+ if not DaraCore.is_null(request.rule_name):
26532
+ query['RuleName'] = request.rule_name
26533
+ if not DaraCore.is_null(request.sequence):
26534
+ query['Sequence'] = request.sequence
26535
+ if not DaraCore.is_null(request.site_id):
26536
+ query['SiteId'] = request.site_id
26537
+ req = open_api_util_models.OpenApiRequest(
26538
+ query = Utils.query(query)
26539
+ )
26540
+ params = open_api_util_models.Params(
26541
+ action = 'UpdateCustomResponseCodeRule',
26542
+ version = '2024-09-10',
26543
+ protocol = 'HTTPS',
26544
+ pathname = '/',
26545
+ method = 'POST',
26546
+ auth_type = 'AK',
26547
+ style = 'RPC',
26548
+ req_body_type = 'formData',
26549
+ body_type = 'json'
26550
+ )
26551
+ return DaraCore.from_map(
26552
+ main_models.UpdateCustomResponseCodeRuleResponse(),
26553
+ await self.call_api_async(params, req, runtime)
26554
+ )
26555
+
26556
+ def update_custom_response_code_rule(
26557
+ self,
26558
+ request: main_models.UpdateCustomResponseCodeRuleRequest,
26559
+ ) -> main_models.UpdateCustomResponseCodeRuleResponse:
26560
+ runtime = RuntimeOptions()
26561
+ return self.update_custom_response_code_rule_with_options(request, runtime)
26562
+
26563
+ async def update_custom_response_code_rule_async(
26564
+ self,
26565
+ request: main_models.UpdateCustomResponseCodeRuleRequest,
26566
+ ) -> main_models.UpdateCustomResponseCodeRuleResponse:
26567
+ runtime = RuntimeOptions()
26568
+ return await self.update_custom_response_code_rule_with_options_async(request, runtime)
26569
+
26132
26570
  def update_custom_scene_policy_with_options(
26133
26571
  self,
26134
26572
  request: main_models.UpdateCustomScenePolicyRequest,
@@ -90,6 +90,9 @@ from ._create_compression_rule_response import CreateCompressionRuleResponse
90
90
  from ._create_custom_hostname_request import CreateCustomHostnameRequest
91
91
  from ._create_custom_hostname_response_body import CreateCustomHostnameResponseBody
92
92
  from ._create_custom_hostname_response import CreateCustomHostnameResponse
93
+ from ._create_custom_response_code_rule_request import CreateCustomResponseCodeRuleRequest
94
+ from ._create_custom_response_code_rule_response_body import CreateCustomResponseCodeRuleResponseBody
95
+ from ._create_custom_response_code_rule_response import CreateCustomResponseCodeRuleResponse
93
96
  from ._create_custom_scene_policy_request import CreateCustomScenePolicyRequest
94
97
  from ._create_custom_scene_policy_response_body import CreateCustomScenePolicyResponseBody
95
98
  from ._create_custom_scene_policy_response import CreateCustomScenePolicyResponse
@@ -261,6 +264,9 @@ from ._delete_compression_rule_response import DeleteCompressionRuleResponse
261
264
  from ._delete_custom_hostname_request import DeleteCustomHostnameRequest
262
265
  from ._delete_custom_hostname_response_body import DeleteCustomHostnameResponseBody
263
266
  from ._delete_custom_hostname_response import DeleteCustomHostnameResponse
267
+ from ._delete_custom_response_code_rule_request import DeleteCustomResponseCodeRuleRequest
268
+ from ._delete_custom_response_code_rule_response_body import DeleteCustomResponseCodeRuleResponseBody
269
+ from ._delete_custom_response_code_rule_response import DeleteCustomResponseCodeRuleResponse
264
270
  from ._delete_custom_scene_policy_request import DeleteCustomScenePolicyRequest
265
271
  from ._delete_custom_scene_policy_response_body import DeleteCustomScenePolicyResponseBody
266
272
  from ._delete_custom_scene_policy_response import DeleteCustomScenePolicyResponse
@@ -508,6 +514,9 @@ from ._get_cross_border_optimization_response import GetCrossBorderOptimizationR
508
514
  from ._get_custom_hostname_request import GetCustomHostnameRequest
509
515
  from ._get_custom_hostname_response_body import GetCustomHostnameResponseBody
510
516
  from ._get_custom_hostname_response import GetCustomHostnameResponse
517
+ from ._get_custom_response_code_rule_request import GetCustomResponseCodeRuleRequest
518
+ from ._get_custom_response_code_rule_response_body import GetCustomResponseCodeRuleResponseBody
519
+ from ._get_custom_response_code_rule_response import GetCustomResponseCodeRuleResponse
511
520
  from ._get_development_mode_request import GetDevelopmentModeRequest
512
521
  from ._get_development_mode_response_body import GetDevelopmentModeResponseBody
513
522
  from ._get_development_mode_response import GetDevelopmentModeResponse
@@ -744,6 +753,9 @@ from ._list_compression_rules_response import ListCompressionRulesResponse
744
753
  from ._list_custom_hostnames_request import ListCustomHostnamesRequest
745
754
  from ._list_custom_hostnames_response_body import ListCustomHostnamesResponseBody
746
755
  from ._list_custom_hostnames_response import ListCustomHostnamesResponse
756
+ from ._list_custom_response_code_rules_request import ListCustomResponseCodeRulesRequest
757
+ from ._list_custom_response_code_rules_response_body import ListCustomResponseCodeRulesResponseBody
758
+ from ._list_custom_response_code_rules_response import ListCustomResponseCodeRulesResponse
747
759
  from ._list_esaipinfo_request import ListESAIPInfoRequest
748
760
  from ._list_esaipinfo_response_body import ListESAIPInfoResponseBody
749
761
  from ._list_esaipinfo_response import ListESAIPInfoResponse
@@ -1032,6 +1044,9 @@ from ._update_cross_border_optimization_response import UpdateCrossBorderOptimiz
1032
1044
  from ._update_custom_hostname_request import UpdateCustomHostnameRequest
1033
1045
  from ._update_custom_hostname_response_body import UpdateCustomHostnameResponseBody
1034
1046
  from ._update_custom_hostname_response import UpdateCustomHostnameResponse
1047
+ from ._update_custom_response_code_rule_request import UpdateCustomResponseCodeRuleRequest
1048
+ from ._update_custom_response_code_rule_response_body import UpdateCustomResponseCodeRuleResponseBody
1049
+ from ._update_custom_response_code_rule_response import UpdateCustomResponseCodeRuleResponse
1035
1050
  from ._update_custom_scene_policy_request import UpdateCustomScenePolicyRequest
1036
1051
  from ._update_custom_scene_policy_response_body import UpdateCustomScenePolicyResponseBody
1037
1052
  from ._update_custom_scene_policy_response import UpdateCustomScenePolicyResponse
@@ -1417,6 +1432,7 @@ from ._list_client_ca_certificates_response_body import ListClientCaCertificates
1417
1432
  from ._list_client_certificates_response_body import ListClientCertificatesResponseBodyResult
1418
1433
  from ._list_compression_rules_response_body import ListCompressionRulesResponseBodyConfigs
1419
1434
  from ._list_custom_hostnames_response_body import ListCustomHostnamesResponseBodyHostnames
1435
+ from ._list_custom_response_code_rules_response_body import ListCustomResponseCodeRulesResponseBodyConfigs
1420
1436
  from ._list_esaipinfo_response_body import ListESAIPInfoResponseBodyContent
1421
1437
  from ._list_edge_container_app_image_secrets_response_body import ListEdgeContainerAppImageSecretsResponseBodyImageSecretList
1422
1438
  from ._list_edge_container_app_records_response_body import ListEdgeContainerAppRecordsResponseBodyRecords
@@ -1625,6 +1641,9 @@ __all__ = [
1625
1641
  CreateCustomHostnameRequest,
1626
1642
  CreateCustomHostnameResponseBody,
1627
1643
  CreateCustomHostnameResponse,
1644
+ CreateCustomResponseCodeRuleRequest,
1645
+ CreateCustomResponseCodeRuleResponseBody,
1646
+ CreateCustomResponseCodeRuleResponse,
1628
1647
  CreateCustomScenePolicyRequest,
1629
1648
  CreateCustomScenePolicyResponseBody,
1630
1649
  CreateCustomScenePolicyResponse,
@@ -1796,6 +1815,9 @@ __all__ = [
1796
1815
  DeleteCustomHostnameRequest,
1797
1816
  DeleteCustomHostnameResponseBody,
1798
1817
  DeleteCustomHostnameResponse,
1818
+ DeleteCustomResponseCodeRuleRequest,
1819
+ DeleteCustomResponseCodeRuleResponseBody,
1820
+ DeleteCustomResponseCodeRuleResponse,
1799
1821
  DeleteCustomScenePolicyRequest,
1800
1822
  DeleteCustomScenePolicyResponseBody,
1801
1823
  DeleteCustomScenePolicyResponse,
@@ -2043,6 +2065,9 @@ __all__ = [
2043
2065
  GetCustomHostnameRequest,
2044
2066
  GetCustomHostnameResponseBody,
2045
2067
  GetCustomHostnameResponse,
2068
+ GetCustomResponseCodeRuleRequest,
2069
+ GetCustomResponseCodeRuleResponseBody,
2070
+ GetCustomResponseCodeRuleResponse,
2046
2071
  GetDevelopmentModeRequest,
2047
2072
  GetDevelopmentModeResponseBody,
2048
2073
  GetDevelopmentModeResponse,
@@ -2279,6 +2304,9 @@ __all__ = [
2279
2304
  ListCustomHostnamesRequest,
2280
2305
  ListCustomHostnamesResponseBody,
2281
2306
  ListCustomHostnamesResponse,
2307
+ ListCustomResponseCodeRulesRequest,
2308
+ ListCustomResponseCodeRulesResponseBody,
2309
+ ListCustomResponseCodeRulesResponse,
2282
2310
  ListESAIPInfoRequest,
2283
2311
  ListESAIPInfoResponseBody,
2284
2312
  ListESAIPInfoResponse,
@@ -2567,6 +2595,9 @@ __all__ = [
2567
2595
  UpdateCustomHostnameRequest,
2568
2596
  UpdateCustomHostnameResponseBody,
2569
2597
  UpdateCustomHostnameResponse,
2598
+ UpdateCustomResponseCodeRuleRequest,
2599
+ UpdateCustomResponseCodeRuleResponseBody,
2600
+ UpdateCustomResponseCodeRuleResponse,
2570
2601
  UpdateCustomScenePolicyRequest,
2571
2602
  UpdateCustomScenePolicyResponseBody,
2572
2603
  UpdateCustomScenePolicyResponse,
@@ -2952,6 +2983,7 @@ __all__ = [
2952
2983
  ListClientCertificatesResponseBodyResult,
2953
2984
  ListCompressionRulesResponseBodyConfigs,
2954
2985
  ListCustomHostnamesResponseBodyHostnames,
2986
+ ListCustomResponseCodeRulesResponseBodyConfigs,
2955
2987
  ListESAIPInfoResponseBodyContent,
2956
2988
  ListEdgeContainerAppImageSecretsResponseBodyImageSecretList,
2957
2989
  ListEdgeContainerAppRecordsResponseBodyRecords,