@@ -619,6 +619,7 @@ def stream(
619
619
self ,
620
620
customer_name : Union [str , object ] <
9E12
span class=pl-c1>= values .unset ,
621
621
friendly_name : Union [str , object ] = values .unset ,
622
+ emergency_enabled : Union [bool , object ] = values .unset ,
622
623
iso_country : Union [str , object ] = values .unset ,
623
624
limit : Optional [int ] = None ,
624
625
page_size : Optional [int ] = None ,
@@ -631,6 +632,7 @@ def stream(
631
632
632
633
:param str customer_name: The `customer_name` of the Address resources to read.
633
634
: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.
634
636
:param str iso_country: The ISO country code of the Address resources to read.
635
637
:param limit: Upper limit for the number of records to return. stream()
636
638
guarantees to never return more than limit. Default is no limit
@@ -645,6 +647,7 @@ def stream(
645
647
page = self .page (
646
648
customer_name = customer_name ,
647
649
friendly_name = friendly_name ,
650
+ emergency_enabled = emergency_enabled ,
648
651
iso_country = iso_country ,
649
652
page_size = limits ["page_size" ],
650
653
)
@@ -655,6 +658,7 @@ async def stream_async(
655
658
self ,
656
659
customer_name : Union [str , object ] = values .unset ,
657
660
friendly_name : Union [str , object ] = values .unset ,
661
+ emergency_enabled : Union [bool , object ] = values .unset ,
658
662
iso_country : Union [str , object ] = values .unset ,
659
663
limit : Optional [int ] = None ,
660
664
page_size : Optional [int ] = None ,
@@ -667,6 +671,7 @@ async def stream_async(
667
671
668
672
:param str customer_name: The `customer_name` of the Address resources to read.
669
673
: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.
670
675
:param str iso_country: The ISO country code of the Address resources to read.
671
676
:param limit: Upper limit for the number of records to return. stream()
672
677
guarantees to never return more than limit. Default is no limit
@@ -681,6 +686,7 @@ async def stream_async(
681
686
page = await self .page_async (
682
687
customer_name = customer_name ,
683
688
friendly_name = friendly_name ,
689
+ emergency_enabled = emergency_enabled ,
684
690
iso_country = iso_country ,
685
691
page_size = limits ["page_size" ],
686
692
)
@@ -691,6 +697,7 @@ def list(
691
697
self ,
692
698
customer_name : Union [str , object ] = values .unset ,
693
699
friendly_name : Union [str , object ] = values .unset ,
700
+ emergency_enabled : Union [bool , object ] = values .unset ,
694
701
iso_country : Union [str , object ] = values .unset ,
695
702
limit : Optional [int ] = None ,
696
703
page_size : Optional [int ] = None ,
@@ -702,6 +709,7 @@ def list(
702
709
703
710
:param str customer_name: The `customer_name` of the Address resources to read.
704
711
: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.
705
713
:param str iso_country: The ISO country code of the Address resources to read.
706
714
:param limit: Upper limit for the number of records to return. list() guarantees
707
715
never to return more than limit. Default is no limit
@@ -716,6 +724,7 @@ def list(
716
724
self .stream (
717
725
customer_name = customer_name ,
718
726
friendly_name = friendly_name ,
727
+ emergency_enabled = emergency_enabled ,
719
728
iso_country = iso_country ,
720
729
limit = limit ,
721
730
page_size = page_size ,
@@ -726,6 +735,7 @@ async def list_async(
726
735
self ,
727
736
customer_name : Union [str , object ] = values .unset ,
728
737
friendly_name : Union [str , object ] = values .unset ,
738
+ emergency_enabled : Union [bool , object ] = values .unset ,
729
739
iso_country : Union [str , object ] = values .unset ,
730
740
limit : Optional [int ] = None ,
731
741
page_size : Optional [int ] = None ,
@@ -737,6 +747,7 @@ async def list_async(
737
747
738
748
:param str customer_name: The `customer_name` of the Address resources to read.
739
749
: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.
740
751
:param str iso_country: The ISO country code of the Address resources to read.
741
752
:param limit: Upper limit for the number of records to return. list() guarantees
742
753
never to return more than limit. Default is no limit
@@ -752,6 +763,7 @@ async def list_async(
752
763
async for record in await self .stream_async (
753
764
customer_name = customer_name ,
754
765
friendly_name = friendly_name ,
766
+ emergency_enabled = emergency_enabled ,
755
767
iso_country = iso_country ,
756
768
limit = limit ,
757
769
page_size = page_size ,
@@ -762,6 +774,7 @@ def page(
762
774
self ,
763
775
customer_name : Union [str , object ] = values .unset ,
764
776
friendly_name : Union [str , object ] = values .unset ,
777
+ emergency_enabled : Union [bool , object ] = values .unset ,
765
778
iso_country : Union [str , object ] = values .unset ,
766
779
page_token : Union [str , object ] = values .unset ,
767
780
page_number : Union [int , object ] = values .unset ,
@@ -773,6 +786,7 @@ def page(
773
786
774
787
:param customer_name: The `customer_name` of the Address resources to read.
775
788
: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.
776
790
:param iso_country: The ISO country code of the Address resources to read.
777
791
:param page_token: PageToken provided by the API
778
792
:param page_number: Page Number, this value is simply for client state
@@ -784,6 +798,7 @@ def page(
784
798
{
785
799
"CustomerName" : customer_name ,
786
800
"FriendlyName" : friendly_name ,
801
+ "EmergencyEnabled" : serialize .boolean_to_string (emergency_enabled ),
787
802
"IsoCountry" : iso_country ,
788
803
"PageToken" : page_token ,
789
804
"Page" : page_number ,
@@ -804,6 +819,7 @@ async def page_async(
804
819
self ,
805
820
customer_name : Union [str , object ] = values .unset ,
806
821
friendly_name : Union [str , object ] = values .unset ,
822
+ emergency_enabled : Union [bool , object ] = values .unset ,
807
823
iso_country : Union [str , object ] = values .unset ,
808
824
page_token : Union [str , object ] = values .unset ,
809
825
page_number : Union [int , object ] = values .unset ,
@@ -815,6 +831,7 @@ async def page_async(
815
831
816
832
:param customer_name: The `customer_name` of the Address resources to read.
817
833
: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.
818
835
:param iso_country: The ISO country code of the Address resources to read.
819
836
:param page_token: PageToken provided by the API
820
837
:param page_number: Page Number, this value is simply for client state
@@ -826,6 +843,7 @@ async def page_async(
826
843
{
827
844
"CustomerName" : customer_name ,
828
845
"FriendlyName" : friendly_name ,
846
+ "EmergencyEnabled" : serialize .boolean_to_string (emergency_enabled ),
829
847
"IsoCountry" : iso_country ,
830
848
"PageToken" : page_token ,
831
849
"Page" : page_number ,
0 commit comments