@@ -64,6 +64,7 @@ def create(
6464 name : str ,
6565 automatic_return_routing : bool | Omit = omit ,
6666 bgp : ipsec_tunnel_create_params .BGP | Omit = omit ,
67+ custom_remote_identities : ipsec_tunnel_create_params .CustomRemoteIdentities | Omit = omit ,
6768 customer_endpoint : str | Omit = omit ,
6869 description : str | Omit = omit ,
6970 health_check : ipsec_tunnel_create_params .HealthCheck | Omit = omit ,
@@ -142,6 +143,7 @@ def create(
142143 "name" : name ,
143144 "automatic_return_routing" : automatic_return_routing ,
144145 "bgp" : bgp ,
146+ "custom_remote_identities" : custom_remote_identities ,
145147 "customer_endpoint" : customer_endpoint ,
146148 "description" : description ,
147149 "health_check" : health_check ,
@@ -171,6 +173,7 @@ def update(
171173 name : str ,
172174 automatic_return_routing : bool | Omit = omit ,
173175 bgp : ipsec_tunnel_update_params .BGP | Omit = omit ,
176+ custom_remote_identities : ipsec_tunnel_update_params .CustomRemoteIdentities | Omit = omit ,
174177 customer_endpoint : str | Omit = omit ,
175178 description : str | Omit = omit ,
176179 health_check : ipsec_tunnel_update_params .HealthCheck | Omit = omit ,
@@ -253,6 +256,7 @@ def update(
253256 "name" : name ,
254257 "automatic_return_routing" : automatic_return_routing ,
255258 "bgp" : bgp ,
259+ "custom_remote_identities" : custom_remote_identities ,
256260 "customer_endpoint" : customer_endpoint ,
257261 "description" : description ,
258262 "health_check" : health_check ,
@@ -569,6 +573,7 @@ async def create(
569573 name : str ,
570574 automatic_return_routing : bool | Omit = omit ,
571575 bgp : ipsec_tunnel_create_params .BGP | Omit = omit ,
576+ custom_remote_identities : ipsec_tunnel_create_params .CustomRemoteIdentities | Omit = omit ,
572577 customer_endpoint : str | Omit = omit ,
573578 description : str | Omit = omit ,
574579 health_check : ipsec_tunnel_create_params .HealthCheck | Omit = omit ,
@@ -647,6 +652,7 @@ async def create(
647652 "name" : name ,
648653 "automatic_return_routing" : automatic_return_routing ,
649654 "bgp" : bgp ,
655+ "custom_remote_identities" : custom_remote_identities ,
650656 "customer_endpoint" : customer_endpoint ,
651657 "description" : description ,
652658 "health_check" : health_check ,
@@ -676,6 +682,7 @@ async def update(
676682 name : str ,
677683 automatic_return_routing : bool | Omit = omit ,
678684 bgp : ipsec_tunnel_update_params .BGP | Omit = omit ,
685+ custom_remote_identities : ipsec_tunnel_update_params .CustomRemoteIdentities | Omit = omit ,
679686 customer_endpoint : str | Omit = omit ,
680687 description : str | Omit = omit ,
681688 health_check : ipsec_tunnel_update_params .HealthCheck | Omit = omit ,
@@ -758,6 +765,7 @@ async def update(
758765 "name" : name ,
759766 "automatic_return_routing" : automatic_return_routing ,
760767 "bgp" : bgp ,
768+ "custom_remote_identities" : custom_remote_identities ,
761769 "customer_endpoint" : customer_endpoint ,
762770 "description" : description ,
763771 "health_check" : health_check ,
0 commit comments