@@ -104,6 +104,7 @@ def create(
104
104
lan_allow_minutes : float | NotGiven = NOT_GIVEN ,
105
105
lan_allow_subnet_size : float | NotGiven = NOT_GIVEN ,
106
106
register_interface_ip_with_dns : bool | NotGiven = NOT_GIVEN ,
107
+ sccm_vpn_boundary_support : bool | NotGiven = NOT_GIVEN ,
107
108
service_mode_v2 : custom_create_params .ServiceModeV2 | NotGiven = NOT_GIVEN ,
108
109
support_url : str | NotGiven = NOT_GIVEN ,
109
110
switch_locked : bool | NotGiven = NOT_GIVEN ,
@@ -168,6 +169,9 @@ def create(
168
169
register_interface_ip_with_dns: Determines if the operating system will register WARP's local interface IP with
169
170
your on-premises DNS server.
170
171
172
+ sccm_vpn_boundary_support: Determines whether the WARP client indicates to SCCM that it is inside a VPN
173
+ boundary. (Windows only).
174
+
171
175
support_url: The URL to launch when the Send Feedback button is clicked.
172
176
173
177
switch_locked: Whether to allow the user to turn off the WARP switch and disconnect the client.
@@ -205,6 +209,7 @@ def create(
205
209
"lan_allow_minutes" : lan_allow_minutes ,
206
210
"lan_allow_subnet_size" : lan_allow_subnet_size ,
207
211
"register_interface_ip_with_dns" : register_interface_ip_with_dns ,
212
+ "sccm_vpn_boundary_support" : sccm_vpn_boundary_support ,
208
213
"service_mode_v2" : service_mode_v2 ,
209
214
"support_url" : support_url ,
210
215
"switch_locked" : switch_locked ,
@@ -317,6 +322,7 @@ def edit(
317
322
name : str | NotGiven = NOT_GIVEN ,
318
323
precedence : float | NotGiven = NOT_GIVEN ,
319
324
register_interface_ip_with_dns : bool | NotGiven = NOT_GIVEN ,
325
+ sccm_vpn_boundary_support : bool | NotGiven = NOT_GIVEN ,
320
326
service_mode_v2 : custom_edit_params .ServiceModeV2 | NotGiven = NOT_GIVEN ,
321
327
support_url : str | NotGiven = NOT_GIVEN ,
322
328
switch_locked : bool | NotGiven = NOT_GIVEN ,
@@ -380,6 +386,9 @@ def edit(
380
386
register_interface_ip_with_dns: Determines if the operating system will register WARP's local interface IP with
381
387
your on-premises DNS server.
382
388
389
+ sccm_vpn_boundary_support: Determines whether the WARP client indicates to SCCM that it is inside a VPN
390
+ boundary. (Windows only).
391
+
383
392
support_url: The URL to launch when the Send Feedback button is clicked.
384
393
385
394
switch_locked: Whether to allow the user to turn off the WARP switch and disconnect the client.
@@ -419,6 +428,7 @@ def edit(
419
428
"name" : name ,
420
429
"precedence" : precedence ,
421
430
"register_interface_ip_with_dns" : register_interface_ip_with_dns ,
431
+ "sccm_vpn_boundary_support" : sccm_vpn_boundary_support ,
422
432
"service_mode_v2" : service_mode_v2 ,
423
433
"support_url" : support_url ,
424
434
"switch_locked" : switch_locked ,
@@ -530,6 +540,7 @@ async def create(
530
540
lan_allow_minutes : float | NotGiven = NOT_GIVEN ,
531
541
lan_allow_subnet_size : float | NotGiven = NOT_GIVEN ,
532
542
register_interface_ip_with_dns : bool | NotGiven = NOT_GIVEN ,
543
+ sccm_vpn_boundary_support : bool | NotGiven = NOT_GIVEN ,
533
544
service_mode_v2 : custom_create_params .ServiceModeV2 | NotGiven = NOT_GIVEN ,
534
545
support_url : str | NotGiven = NOT_GIVEN ,
535
546
switch_locked : bool | NotGiven = NOT_GIVEN ,
@@ -594,6 +605,9 @@ async def create(
594
605
register_interface_ip_with_dns: Determines if the operating system will register WARP's local interface IP with
595
606
your on-premises DNS server.
596
607
608
+ sccm_vpn_boundary_support: Determines whether the WARP client indicates to SCCM that it is inside a VPN
609
+ boundary. (Windows only).
610
+
597
611
support_url: The URL to launch when the Send Feedback button is clicked.
598
612
599
613
switch_locked: Whether to allow the user to turn off the WARP switch and disconnect the client.
@@ -631,6 +645,7 @@ async def create(
631
645
"lan_allow_minutes" : lan_allow_minutes ,
632
646
"lan_allow_subnet_size" : lan_allow_subnet_size ,
633
647
"register_interface_ip_with_dns" : register_interface_ip_with_dns ,
648
+ "sccm_vpn_boundary_support" : sccm_vpn_boundary_support ,
634
649
"service_mode_v2" : service_mode_v2 ,
635
650
"support_url" : support_url ,
636
651
"switch_locked" : switch_locked ,
@@ -743,6 +758,7 @@ async def edit(
743
758
name : str | NotGiven = NOT_GIVEN ,
744
759
precedence : float | NotGiven = NOT_GIVEN ,
745
760
register_interface_ip_with_dns : bool | NotGiven = NOT_GIVEN ,
761
+ sccm_vpn_boundary_support : bool | NotGiven = NOT_GIVEN ,
746
762
service_mode_v2 : custom_edit_params .ServiceModeV2 | NotGiven = NOT_GIVEN ,
747
763
support_url : str | NotGiven = NOT_GIVEN ,
748
764
switch_locked : bool | NotGiven = NOT_GIVEN ,
@@ -806,6 +822,9 @@ async def edit(
806
822
register_interface_ip_with_dns: Determines if the operating system will register WARP's local interface IP with
807
823
your on-premises DNS server.
808
824
825
+ sccm_vpn_boundary_support: Determines whether the WARP client indicates to SCCM that it is inside a VPN
826
+ boundary. (Windows only).
827
+
809
828
support_url: The URL to launch when the Send Feedback button is clicked.
810
829
811
830
switch_locked: Whether to allow the user to turn off the WARP switch and disconnect the client.
@@ -845,6 +864,7 @@ async def edit(
845
864
"name" : name ,
846
865
"precedence" : precedence ,
847
866
"register_interface_ip_with_dns" : register_interface_ip_with_dns ,
867
+ "sccm_vpn_boundary_support" : sccm_vpn_boundary_support ,
848
868
"service_mode_v2" : service_mode_v2 ,
849
869
"support_url" : support_url ,
850
870
"switch_locked" : switch_locked ,
0 commit comments