@@ -619,6 +619,7 @@ def stream(
619619 self ,
620620 customer_name : Union [str , object ] = values .unset ,
621621 friendly_name : Union [str , object ] = values .unset ,
622+ emergency_enabled : Union [bool , object ] = values .unset ,
622623 iso_country : Union [str , object ] = values .unset ,
623624 limit : Optional [int ] = None ,
624625 page_size : Optional [int ] = None ,
@@ -631,6 +632,7 @@ def stream(
631632
632633 :param str customer_name: The `customer_name` of the Address resources to read.
633634 :param str friendly_name: The string that identifies the Address resources to read.
635+ :param bool emergency_enabled: Whether the address can be associated to a number for emergency calling.
634636 :param str iso_country: The ISO country code of the Address resources to read.
635637 :param limit: Upper limit for the number of records to return. stream()
636638 guarantees to never return more than limit. Default is no limit
@@ -645,6 +647,7 @@ def stream(
645647 page = self .page (
646648 customer_name = customer_name ,
647649 friendly_name = friendly_name ,
650+ emergency_enabled = emergency_enabled ,
648651 iso_country = iso_country ,
649652 page_size = limits ["page_size" ],
650653 )
@@ -655,6 +658,7 @@ async def stream_async(
655658 self ,
656659 customer_name : Union [str , object ] = values .unset ,
657660 friendly_name : Union [str , object ] = values .unset ,
661+ emergency_enabled : Union [bool , object ] = values .unset ,
658662 iso_country : Union [str , object ] = values .unset ,
659663 limit : Optional [int ] = None ,
660664 page_size : Optional [int ] = None ,
@@ -667,6 +671,7 @@ async def stream_async(
667671
668672 :param str customer_name: The `customer_name` of the Address resources to read.
669673 :param str friendly_name: The string that identifies the Address resources to read.
674+ :param bool emergency_enabled: Whether the address can be associated to a number for emergency calling.
670675 :param str iso_country: The ISO country code of the Address resources to read.
671676 :param limit: Upper limit for the number of records to return. stream()
672677 guarantees to never return more than limit. Default is no limit
@@ -681,6 +686,7 @@ async def stream_async(
681686 page = await self .page_async (
682687 customer_name = customer_name ,
683688 friendly_name = friendly_name ,
689+ emergency_enabled = emergency_enabled ,
684690 iso_country = iso_country ,
685691 page_size = limits ["page_size" ],
686692 )
@@ -691,6 +697,7 @@ def list(
691697 self ,
692698 customer_name : Union [str , object ] = values .unset ,
693699 friendly_name : Union [str , object ] = values .unset ,
700+ emergency_enabled : Union [bool , object ] = values .unset ,
694701 iso_country : Union [str , object ] = values .unset ,
695702 limit : Optional [int ] = None ,
696703 page_size : Optional [int ] = None ,
@@ -702,6 +709,7 @@ def list(
702709
703710 :param str customer_name: The `customer_name` of the Address resources to read.
704711 :param str friendly_name: The string that identifies the Address resources to read.
712+ :param bool emergency_enabled: Whether the address can be associated to a number for emergency calling.
705713 :param str iso_country: The ISO country code of the Address resources to read.
706714 :param limit: Upper limit for the number of records to return. list() guarantees
707715 never to return more than limit. Default is no limit
@@ -716,6 +724,7 @@ def list(
716724 self .stream (
717725 customer_name = customer_name ,
718726 friendly_name = friendly_name ,
727+ emergency_enabled = emergency_enabled ,
719728 iso_country = iso_country ,
720729 limit = limit ,
721730 page_size = page_size ,
@@ -726,6 +735,7 @@ async def list_async(
726735 self ,
727736 customer_name : Union [str , object ] = values .unset ,
728737 friendly_name : Union [str , object ] = values .unset ,
738+ emergency_enabled : Union [bool , object ] = values .unset ,
729739 iso_country : Union [str , object ] = values .unset ,
730740 limit : Optional [int ] = None ,
731741 page_size : Optional [int ] = None ,
@@ -737,6 +747,7 @@ async def list_async(
737747
738748 :param str customer_name: The `customer_name` of the Address resources to read.
739749 :param str friendly_name: The string that identifies the Address resources to read.
750+ :param bool emergency_enabled: Whether the address can be associated to a number for emergency calling.
740751 :param str iso_country: The ISO country code of the Address resources to read.
741752 :param limit: Upper limit for the number of records to return. list() guarantees
742753 never to return more than limit. Default is no limit
@@ -752,6 +763,7 @@ async def list_async(
752763 async for record in await self .stream_async (
753764 customer_name = customer_name ,
754765 friendly_name = friendly_name ,
766+ emergency_enabled = emergency_enabled ,
755767 iso_country = iso_country ,
756768 limit = limit ,
757769 page_size = page_size ,
@@ -762,6 +774,7 @@ def page(
762774 self ,
763775 customer_name : Union [str , object ] = values .unset ,
764776 friendly_name : Union [str , object ] = values .unset ,
777+ emergency_enabled : Union [bool , object ] = values .unset ,
765778 iso_country : Union [str , object ] = values .unset ,
766779 page_token : Union [str , object ] = values .unset ,
767780 page_number : Union [int , object ] = values .unset ,
@@ -773,6 +786,7 @@ def page(
773786
774787 :param customer_name: The `customer_name` of the Address resources to read.
775788 :param friendly_name: The string that identifies the Address resources to read.
789+ :param emergency_enabled: Whether the address can be associated to a number for emergency calling.
776790 :param iso_country: The ISO country code of the Address resources to read.
777791 :param page_token: PageToken provided by the API
778792 :param page_number: Page Number, this value is simply for client state
@@ -784,6 +798,7 @@ def page(
784798 {
785799 "CustomerName" : customer_name ,
786800 "FriendlyName" : friendly_name ,
801+ "EmergencyEnabled" : serialize .boolean_to_string (emergency_enabled ),
787802 "IsoCountry" : iso_country ,
788803 "PageToken" : page_token ,
789804 "Page" : page_number ,
@@ -804,6 +819,7 @@ async def page_async(
804819 self ,
805820 customer_name : Union [str , object ] = values .unset ,
806821 friendly_name : Union [str , object ] = values .unset ,
822+ emergency_enabled : Union [bool , object ] = values .unset ,
807823 iso_country : Union [str , object ] = values .unset ,
808824 page_token : Union [str , object ] = values .unset ,
809825 page_number : Union [int , object ] = values .unset ,
@@ -815,6 +831,7 @@ async def page_async(
815831
816832 :param customer_name: The `customer_name` of the Address resources to read.
817833 :param friendly_name: The string that identifies the Address resources to read.
834+ :param emergency_enabled: Whether the address can be associated to a number for emergency calling.
818835 :param iso_country: The ISO country code of the Address resources to read.
819836 :param page_token: PageToken provided by the API
820837 :param page_number: Page Number, this value is simply for client state
@@ -826,6 +843,7 @@ async def page_async(
826843 {
827844 "CustomerName" : customer_name ,
828845 "FriendlyName" : friendly_name ,
846+ "EmergencyEnabled" : serialize .boolean_to_string (emergency_enabled ),
829847 "IsoCountry" : iso_country ,
830848 "PageToken" : page_token ,
831849 "Page" : page_number ,
0 commit comments