@@ -47,7 +47,10 @@ def test_method_create_with_all_params(self, client: Cloudflare) -> None:
4747 identity = 'any(identity.groups.name[*] in {"finance"})' ,
4848 precedence = 0 ,
4949 rule_settings = {
50- "add_headers" : {"foo" : "string" },
50+ "add_headers" : {
51+ "My-Next-Header" : ["foo" , "bar" ],
52+ "X-Custom-Header-Name" : ["somecustomvalue" ],
53+ },
5154 "allow_child_bypass" : False ,
5255 "audit_ssh" : {"command_logging" : False },
5356 "biso_admin_controls" : {
@@ -207,7 +210,10 @@ def test_method_update_with_all_params(self, client: Cloudflare) -> None:
207210 identity = 'any(identity.groups.name[*] in {"finance"})' ,
208211 precedence = 0 ,
209212 rule_settings = {
210- "add_headers" : {"foo" : "string" },
213+ "add_headers" : {
214+ "My-Next-Header" : ["foo" , "bar" ],
215+ "X-Custom-Header-Name" : ["somecustomvalue" ],
216+ },
211217 "allow_child_bypass" : False ,
212218 "audit_ssh" : {"command_logging" : False },
213219 "biso_admin_controls" : {
@@ -564,7 +570,10 @@ async def test_method_create_with_all_params(self, async_client: AsyncCloudflare
564570 identity = 'any(identity.groups.name[*] in {"finance"})' ,
565571 precedence = 0 ,
566572 rule_settings = {
567- "add_headers" : {"foo" : "string" },
573+ "add_headers" : {
574+ "My-Next-Header" : ["foo" , "bar" ],
575+ "X-Custom-Header-Name" : ["somecustomvalue" ],
576+ },
568577 "allow_child_bypass" : False ,
569578 "audit_ssh" : {"command_logging" : False },
570579 "biso_admin_controls" : {
@@ -724,7 +733,10 @@ async def test_method_update_with_all_params(self, async_client: AsyncCloudflare
724733 identity = 'any(identity.groups.name[*] in {"finance"})' ,
725734 precedence = 0 ,
726735 rule_settings = {
727- "add_headers" : {"foo" : "string" },
736+ "add_headers" : {
737+ "My-Next-Header" : ["foo" , "bar" ],
738+ "X-Custom-Header-Name" : ["somecustomvalue" ],
739+ },
728740 "allow_child_bypass" : False ,
729741 "audit_ssh" : {"command_logging" : False },
730742 "biso_admin_controls" : {
0 commit comments