pulumi-sdwan 0.4.0a1745476565__py3-none-any.whl → 0.4.0a1745555260__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-sdwan might be problematic. Click here for more details.
- pulumi_sdwan/_inputs.py +30 -30
- pulumi_sdwan/get_transport_cellular_profile_feature.py +15 -15
- pulumi_sdwan/outputs.py +20 -20
- pulumi_sdwan/pulumi-plugin.json +1 -1
- pulumi_sdwan/service_routing_eigrp_feature.py +7 -7
- pulumi_sdwan/system_remote_access_feature.py +84 -84
- pulumi_sdwan/transport_cellular_profile_feature.py +99 -90
- pulumi_sdwan/transport_management_vpn_interface_ethernet_feature.py +28 -28
- pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature.py +28 -28
- {pulumi_sdwan-0.4.0a1745476565.dist-info → pulumi_sdwan-0.4.0a1745555260.dist-info}/METADATA +1 -1
- {pulumi_sdwan-0.4.0a1745476565.dist-info → pulumi_sdwan-0.4.0a1745555260.dist-info}/RECORD +13 -13
- {pulumi_sdwan-0.4.0a1745476565.dist-info → pulumi_sdwan-0.4.0a1745555260.dist-info}/WHEEL +0 -0
- {pulumi_sdwan-0.4.0a1745476565.dist-info → pulumi_sdwan-0.4.0a1745555260.dist-info}/top_level.txt +0 -0
|
@@ -27,7 +27,6 @@ class TransportCellularProfileFeatureArgs:
|
|
|
27
27
|
authentication_type_variable: Optional[pulumi.Input[builtins.str]] = None,
|
|
28
28
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
|
29
29
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
|
30
|
-
no_authentication: Optional[pulumi.Input[builtins.str]] = None,
|
|
31
30
|
no_overwrite: Optional[pulumi.Input[builtins.bool]] = None,
|
|
32
31
|
no_overwrite_variable: Optional[pulumi.Input[builtins.str]] = None,
|
|
33
32
|
packet_data_network_type: Optional[pulumi.Input[builtins.str]] = None,
|
|
@@ -37,27 +36,29 @@ class TransportCellularProfileFeatureArgs:
|
|
|
37
36
|
profile_password: Optional[pulumi.Input[builtins.str]] = None,
|
|
38
37
|
profile_password_variable: Optional[pulumi.Input[builtins.str]] = None,
|
|
39
38
|
profile_username: Optional[pulumi.Input[builtins.str]] = None,
|
|
40
|
-
profile_username_variable: Optional[pulumi.Input[builtins.str]] = None
|
|
39
|
+
profile_username_variable: Optional[pulumi.Input[builtins.str]] = None,
|
|
40
|
+
requires_authentication: Optional[pulumi.Input[builtins.bool]] = None):
|
|
41
41
|
"""
|
|
42
42
|
The set of arguments for constructing a TransportCellularProfileFeature resource.
|
|
43
43
|
:param pulumi.Input[builtins.str] feature_profile_id: Feature Profile ID
|
|
44
44
|
:param pulumi.Input[builtins.str] access_point_name: Set access point name
|
|
45
45
|
:param pulumi.Input[builtins.str] access_point_name_variable: Variable name
|
|
46
|
-
:param pulumi.Input[builtins.str] authentication_type: Set authentication type - Choices: `pap`,
|
|
47
|
-
|
|
46
|
+
:param pulumi.Input[builtins.str] authentication_type: Set authentication type, Attribute conditional on `requires_authentication` being equal to `true` - Choices: `pap`,
|
|
47
|
+
`chap`, `pap_chap`
|
|
48
|
+
:param pulumi.Input[builtins.str] authentication_type_variable: Variable name, Attribute conditional on `requires_authentication` being equal to `true`
|
|
48
49
|
:param pulumi.Input[builtins.str] description: The description of the Feature
|
|
49
50
|
:param pulumi.Input[builtins.str] name: The name of the Feature
|
|
50
|
-
:param pulumi.Input[builtins.str] no_authentication: No Authentication
|
|
51
51
|
:param pulumi.Input[builtins.bool] no_overwrite: No Overwrite
|
|
52
52
|
:param pulumi.Input[builtins.str] no_overwrite_variable: Variable name
|
|
53
53
|
:param pulumi.Input[builtins.str] packet_data_network_type: Set packet data network type - Choices: `ipv4`, `ipv4v6`, `ipv6` - Default value: `ipv4`
|
|
54
54
|
:param pulumi.Input[builtins.str] packet_data_network_type_variable: Variable name
|
|
55
55
|
:param pulumi.Input[builtins.int] profile_id: Set Profile ID - Range: `1`-`16`
|
|
56
56
|
:param pulumi.Input[builtins.str] profile_id_variable: Variable name
|
|
57
|
-
:param pulumi.Input[builtins.str] profile_password: Set the profile password
|
|
58
|
-
:param pulumi.Input[builtins.str] profile_password_variable: Variable name
|
|
59
|
-
:param pulumi.Input[builtins.str] profile_username: Set the profile username
|
|
60
|
-
:param pulumi.Input[builtins.str] profile_username_variable: Variable name
|
|
57
|
+
:param pulumi.Input[builtins.str] profile_password: Set the profile password, Attribute conditional on `requires_authentication` being equal to `true`
|
|
58
|
+
:param pulumi.Input[builtins.str] profile_password_variable: Variable name, Attribute conditional on `requires_authentication` being equal to `true`
|
|
59
|
+
:param pulumi.Input[builtins.str] profile_username: Set the profile username, Attribute conditional on `requires_authentication` being equal to `true`
|
|
60
|
+
:param pulumi.Input[builtins.str] profile_username_variable: Variable name, Attribute conditional on `requires_authentication` being equal to `true`
|
|
61
|
+
:param pulumi.Input[builtins.bool] requires_authentication: Require authentication type - Default value: `false`
|
|
61
62
|
"""
|
|
62
63
|
pulumi.set(__self__, "feature_profile_id", feature_profile_id)
|
|
63
64
|
if access_point_name is not None:
|
|
@@ -72,8 +73,6 @@ class TransportCellularProfileFeatureArgs:
|
|
|
72
73
|
pulumi.set(__self__, "description", description)
|
|
73
74
|
if name is not None:
|
|
74
75
|
pulumi.set(__self__, "name", name)
|
|
75
|
-
if no_authentication is not None:
|
|
76
|
-
pulumi.set(__self__, "no_authentication", no_authentication)
|
|
77
76
|
if no_overwrite is not None:
|
|
78
77
|
pulumi.set(__self__, "no_overwrite", no_overwrite)
|
|
79
78
|
if no_overwrite_variable is not None:
|
|
@@ -94,6 +93,8 @@ class TransportCellularProfileFeatureArgs:
|
|
|
94
93
|
pulumi.set(__self__, "profile_username", profile_username)
|
|
95
94
|
if profile_username_variable is not None:
|
|
96
95
|
pulumi.set(__self__, "profile_username_variable", profile_username_variable)
|
|
96
|
+
if requires_authentication is not None:
|
|
97
|
+
pulumi.set(__self__, "requires_authentication", requires_authentication)
|
|
97
98
|
|
|
98
99
|
@property
|
|
99
100
|
@pulumi.getter(name="featureProfileId")
|
|
@@ -135,7 +136,8 @@ class TransportCellularProfileFeatureArgs:
|
|
|
135
136
|
@pulumi.getter(name="authenticationType")
|
|
136
137
|
def authentication_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
137
138
|
"""
|
|
138
|
-
Set authentication type - Choices: `pap`,
|
|
139
|
+
Set authentication type, Attribute conditional on `requires_authentication` being equal to `true` - Choices: `pap`,
|
|
140
|
+
`chap`, `pap_chap`
|
|
139
141
|
"""
|
|
140
142
|
return pulumi.get(self, "authentication_type")
|
|
141
143
|
|
|
@@ -147,7 +149,7 @@ class TransportCellularProfileFeatureArgs:
|
|
|
147
149
|
@pulumi.getter(name="authenticationTypeVariable")
|
|
148
150
|
def authentication_type_variable(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
149
151
|
"""
|
|
150
|
-
Variable name
|
|
152
|
+
Variable name, Attribute conditional on `requires_authentication` being equal to `true`
|
|
151
153
|
"""
|
|
152
154
|
return pulumi.get(self, "authentication_type_variable")
|
|
153
155
|
|
|
@@ -179,18 +181,6 @@ class TransportCellularProfileFeatureArgs:
|
|
|
179
181
|
def name(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
180
182
|
pulumi.set(self, "name", value)
|
|
181
183
|
|
|
182
|
-
@property
|
|
183
|
-
@pulumi.getter(name="noAuthentication")
|
|
184
|
-
def no_authentication(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
185
|
-
"""
|
|
186
|
-
No Authentication
|
|
187
|
-
"""
|
|
188
|
-
return pulumi.get(self, "no_authentication")
|
|
189
|
-
|
|
190
|
-
@no_authentication.setter
|
|
191
|
-
def no_authentication(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
192
|
-
pulumi.set(self, "no_authentication", value)
|
|
193
|
-
|
|
194
184
|
@property
|
|
195
185
|
@pulumi.getter(name="noOverwrite")
|
|
196
186
|
def no_overwrite(self) -> Optional[pulumi.Input[builtins.bool]]:
|
|
@@ -267,7 +257,7 @@ class TransportCellularProfileFeatureArgs:
|
|
|
267
257
|
@pulumi.getter(name="profilePassword")
|
|
268
258
|
def profile_password(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
269
259
|
"""
|
|
270
|
-
Set the profile password
|
|
260
|
+
Set the profile password, Attribute conditional on `requires_authentication` being equal to `true`
|
|
271
261
|
"""
|
|
272
262
|
return pulumi.get(self, "profile_password")
|
|
273
263
|
|
|
@@ -279,7 +269,7 @@ class TransportCellularProfileFeatureArgs:
|
|
|
279
269
|
@pulumi.getter(name="profilePasswordVariable")
|
|
280
270
|
def profile_password_variable(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
281
271
|
"""
|
|
282
|
-
Variable name
|
|
272
|
+
Variable name, Attribute conditional on `requires_authentication` being equal to `true`
|
|
283
273
|
"""
|
|
284
274
|
return pulumi.get(self, "profile_password_variable")
|
|
285
275
|
|
|
@@ -291,7 +281,7 @@ class TransportCellularProfileFeatureArgs:
|
|
|
291
281
|
@pulumi.getter(name="profileUsername")
|
|
292
282
|
def profile_username(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
293
283
|
"""
|
|
294
|
-
Set the profile username
|
|
284
|
+
Set the profile username, Attribute conditional on `requires_authentication` being equal to `true`
|
|
295
285
|
"""
|
|
296
286
|
return pulumi.get(self, "profile_username")
|
|
297
287
|
|
|
@@ -303,7 +293,7 @@ class TransportCellularProfileFeatureArgs:
|
|
|
303
293
|
@pulumi.getter(name="profileUsernameVariable")
|
|
304
294
|
def profile_username_variable(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
305
295
|
"""
|
|
306
|
-
Variable name
|
|
296
|
+
Variable name, Attribute conditional on `requires_authentication` being equal to `true`
|
|
307
297
|
"""
|
|
308
298
|
return pulumi.get(self, "profile_username_variable")
|
|
309
299
|
|
|
@@ -311,6 +301,18 @@ class TransportCellularProfileFeatureArgs:
|
|
|
311
301
|
def profile_username_variable(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
312
302
|
pulumi.set(self, "profile_username_variable", value)
|
|
313
303
|
|
|
304
|
+
@property
|
|
305
|
+
@pulumi.getter(name="requiresAuthentication")
|
|
306
|
+
def requires_authentication(self) -> Optional[pulumi.Input[builtins.bool]]:
|
|
307
|
+
"""
|
|
308
|
+
Require authentication type - Default value: `false`
|
|
309
|
+
"""
|
|
310
|
+
return pulumi.get(self, "requires_authentication")
|
|
311
|
+
|
|
312
|
+
@requires_authentication.setter
|
|
313
|
+
def requires_authentication(self, value: Optional[pulumi.Input[builtins.bool]]):
|
|
314
|
+
pulumi.set(self, "requires_authentication", value)
|
|
315
|
+
|
|
314
316
|
|
|
315
317
|
@pulumi.input_type
|
|
316
318
|
class _TransportCellularProfileFeatureState:
|
|
@@ -322,7 +324,6 @@ class _TransportCellularProfileFeatureState:
|
|
|
322
324
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
|
323
325
|
feature_profile_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
324
326
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
|
325
|
-
no_authentication: Optional[pulumi.Input[builtins.str]] = None,
|
|
326
327
|
no_overwrite: Optional[pulumi.Input[builtins.bool]] = None,
|
|
327
328
|
no_overwrite_variable: Optional[pulumi.Input[builtins.str]] = None,
|
|
328
329
|
packet_data_network_type: Optional[pulumi.Input[builtins.str]] = None,
|
|
@@ -333,27 +334,29 @@ class _TransportCellularProfileFeatureState:
|
|
|
333
334
|
profile_password_variable: Optional[pulumi.Input[builtins.str]] = None,
|
|
334
335
|
profile_username: Optional[pulumi.Input[builtins.str]] = None,
|
|
335
336
|
profile_username_variable: Optional[pulumi.Input[builtins.str]] = None,
|
|
337
|
+
requires_authentication: Optional[pulumi.Input[builtins.bool]] = None,
|
|
336
338
|
version: Optional[pulumi.Input[builtins.int]] = None):
|
|
337
339
|
"""
|
|
338
340
|
Input properties used for looking up and filtering TransportCellularProfileFeature resources.
|
|
339
341
|
:param pulumi.Input[builtins.str] access_point_name: Set access point name
|
|
340
342
|
:param pulumi.Input[builtins.str] access_point_name_variable: Variable name
|
|
341
|
-
:param pulumi.Input[builtins.str] authentication_type: Set authentication type - Choices: `pap`,
|
|
342
|
-
|
|
343
|
+
:param pulumi.Input[builtins.str] authentication_type: Set authentication type, Attribute conditional on `requires_authentication` being equal to `true` - Choices: `pap`,
|
|
344
|
+
`chap`, `pap_chap`
|
|
345
|
+
:param pulumi.Input[builtins.str] authentication_type_variable: Variable name, Attribute conditional on `requires_authentication` being equal to `true`
|
|
343
346
|
:param pulumi.Input[builtins.str] description: The description of the Feature
|
|
344
347
|
:param pulumi.Input[builtins.str] feature_profile_id: Feature Profile ID
|
|
345
348
|
:param pulumi.Input[builtins.str] name: The name of the Feature
|
|
346
|
-
:param pulumi.Input[builtins.str] no_authentication: No Authentication
|
|
347
349
|
:param pulumi.Input[builtins.bool] no_overwrite: No Overwrite
|
|
348
350
|
:param pulumi.Input[builtins.str] no_overwrite_variable: Variable name
|
|
349
351
|
:param pulumi.Input[builtins.str] packet_data_network_type: Set packet data network type - Choices: `ipv4`, `ipv4v6`, `ipv6` - Default value: `ipv4`
|
|
350
352
|
:param pulumi.Input[builtins.str] packet_data_network_type_variable: Variable name
|
|
351
353
|
:param pulumi.Input[builtins.int] profile_id: Set Profile ID - Range: `1`-`16`
|
|
352
354
|
:param pulumi.Input[builtins.str] profile_id_variable: Variable name
|
|
353
|
-
:param pulumi.Input[builtins.str] profile_password: Set the profile password
|
|
354
|
-
:param pulumi.Input[builtins.str] profile_password_variable: Variable name
|
|
355
|
-
:param pulumi.Input[builtins.str] profile_username: Set the profile username
|
|
356
|
-
:param pulumi.Input[builtins.str] profile_username_variable: Variable name
|
|
355
|
+
:param pulumi.Input[builtins.str] profile_password: Set the profile password, Attribute conditional on `requires_authentication` being equal to `true`
|
|
356
|
+
:param pulumi.Input[builtins.str] profile_password_variable: Variable name, Attribute conditional on `requires_authentication` being equal to `true`
|
|
357
|
+
:param pulumi.Input[builtins.str] profile_username: Set the profile username, Attribute conditional on `requires_authentication` being equal to `true`
|
|
358
|
+
:param pulumi.Input[builtins.str] profile_username_variable: Variable name, Attribute conditional on `requires_authentication` being equal to `true`
|
|
359
|
+
:param pulumi.Input[builtins.bool] requires_authentication: Require authentication type - Default value: `false`
|
|
357
360
|
:param pulumi.Input[builtins.int] version: The version of the Feature
|
|
358
361
|
"""
|
|
359
362
|
if access_point_name is not None:
|
|
@@ -370,8 +373,6 @@ class _TransportCellularProfileFeatureState:
|
|
|
370
373
|
pulumi.set(__self__, "feature_profile_id", feature_profile_id)
|
|
371
374
|
if name is not None:
|
|
372
375
|
pulumi.set(__self__, "name", name)
|
|
373
|
-
if no_authentication is not None:
|
|
374
|
-
pulumi.set(__self__, "no_authentication", no_authentication)
|
|
375
376
|
if no_overwrite is not None:
|
|
376
377
|
pulumi.set(__self__, "no_overwrite", no_overwrite)
|
|
377
378
|
if no_overwrite_variable is not None:
|
|
@@ -392,6 +393,8 @@ class _TransportCellularProfileFeatureState:
|
|
|
392
393
|
pulumi.set(__self__, "profile_username", profile_username)
|
|
393
394
|
if profile_username_variable is not None:
|
|
394
395
|
pulumi.set(__self__, "profile_username_variable", profile_username_variable)
|
|
396
|
+
if requires_authentication is not None:
|
|
397
|
+
pulumi.set(__self__, "requires_authentication", requires_authentication)
|
|
395
398
|
if version is not None:
|
|
396
399
|
pulumi.set(__self__, "version", version)
|
|
397
400
|
|
|
@@ -423,7 +426,8 @@ class _TransportCellularProfileFeatureState:
|
|
|
423
426
|
@pulumi.getter(name="authenticationType")
|
|
424
427
|
def authentication_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
425
428
|
"""
|
|
426
|
-
Set authentication type - Choices: `pap`,
|
|
429
|
+
Set authentication type, Attribute conditional on `requires_authentication` being equal to `true` - Choices: `pap`,
|
|
430
|
+
`chap`, `pap_chap`
|
|
427
431
|
"""
|
|
428
432
|
return pulumi.get(self, "authentication_type")
|
|
429
433
|
|
|
@@ -435,7 +439,7 @@ class _TransportCellularProfileFeatureState:
|
|
|
435
439
|
@pulumi.getter(name="authenticationTypeVariable")
|
|
436
440
|
def authentication_type_variable(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
437
441
|
"""
|
|
438
|
-
Variable name
|
|
442
|
+
Variable name, Attribute conditional on `requires_authentication` being equal to `true`
|
|
439
443
|
"""
|
|
440
444
|
return pulumi.get(self, "authentication_type_variable")
|
|
441
445
|
|
|
@@ -479,18 +483,6 @@ class _TransportCellularProfileFeatureState:
|
|
|
479
483
|
def name(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
480
484
|
pulumi.set(self, "name", value)
|
|
481
485
|
|
|
482
|
-
@property
|
|
483
|
-
@pulumi.getter(name="noAuthentication")
|
|
484
|
-
def no_authentication(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
485
|
-
"""
|
|
486
|
-
No Authentication
|
|
487
|
-
"""
|
|
488
|
-
return pulumi.get(self, "no_authentication")
|
|
489
|
-
|
|
490
|
-
@no_authentication.setter
|
|
491
|
-
def no_authentication(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
492
|
-
pulumi.set(self, "no_authentication", value)
|
|
493
|
-
|
|
494
486
|
@property
|
|
495
487
|
@pulumi.getter(name="noOverwrite")
|
|
496
488
|
def no_overwrite(self) -> Optional[pulumi.Input[builtins.bool]]:
|
|
@@ -567,7 +559,7 @@ class _TransportCellularProfileFeatureState:
|
|
|
567
559
|
@pulumi.getter(name="profilePassword")
|
|
568
560
|
def profile_password(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
569
561
|
"""
|
|
570
|
-
Set the profile password
|
|
562
|
+
Set the profile password, Attribute conditional on `requires_authentication` being equal to `true`
|
|
571
563
|
"""
|
|
572
564
|
return pulumi.get(self, "profile_password")
|
|
573
565
|
|
|
@@ -579,7 +571,7 @@ class _TransportCellularProfileFeatureState:
|
|
|
579
571
|
@pulumi.getter(name="profilePasswordVariable")
|
|
580
572
|
def profile_password_variable(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
581
573
|
"""
|
|
582
|
-
Variable name
|
|
574
|
+
Variable name, Attribute conditional on `requires_authentication` being equal to `true`
|
|
583
575
|
"""
|
|
584
576
|
return pulumi.get(self, "profile_password_variable")
|
|
585
577
|
|
|
@@ -591,7 +583,7 @@ class _TransportCellularProfileFeatureState:
|
|
|
591
583
|
@pulumi.getter(name="profileUsername")
|
|
592
584
|
def profile_username(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
593
585
|
"""
|
|
594
|
-
Set the profile username
|
|
586
|
+
Set the profile username, Attribute conditional on `requires_authentication` being equal to `true`
|
|
595
587
|
"""
|
|
596
588
|
return pulumi.get(self, "profile_username")
|
|
597
589
|
|
|
@@ -603,7 +595,7 @@ class _TransportCellularProfileFeatureState:
|
|
|
603
595
|
@pulumi.getter(name="profileUsernameVariable")
|
|
604
596
|
def profile_username_variable(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
605
597
|
"""
|
|
606
|
-
Variable name
|
|
598
|
+
Variable name, Attribute conditional on `requires_authentication` being equal to `true`
|
|
607
599
|
"""
|
|
608
600
|
return pulumi.get(self, "profile_username_variable")
|
|
609
601
|
|
|
@@ -611,6 +603,18 @@ class _TransportCellularProfileFeatureState:
|
|
|
611
603
|
def profile_username_variable(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
612
604
|
pulumi.set(self, "profile_username_variable", value)
|
|
613
605
|
|
|
606
|
+
@property
|
|
607
|
+
@pulumi.getter(name="requiresAuthentication")
|
|
608
|
+
def requires_authentication(self) -> Optional[pulumi.Input[builtins.bool]]:
|
|
609
|
+
"""
|
|
610
|
+
Require authentication type - Default value: `false`
|
|
611
|
+
"""
|
|
612
|
+
return pulumi.get(self, "requires_authentication")
|
|
613
|
+
|
|
614
|
+
@requires_authentication.setter
|
|
615
|
+
def requires_authentication(self, value: Optional[pulumi.Input[builtins.bool]]):
|
|
616
|
+
pulumi.set(self, "requires_authentication", value)
|
|
617
|
+
|
|
614
618
|
@property
|
|
615
619
|
@pulumi.getter
|
|
616
620
|
def version(self) -> Optional[pulumi.Input[builtins.int]]:
|
|
@@ -636,7 +640,6 @@ class TransportCellularProfileFeature(pulumi.CustomResource):
|
|
|
636
640
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
|
637
641
|
feature_profile_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
638
642
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
|
639
|
-
no_authentication: Optional[pulumi.Input[builtins.str]] = None,
|
|
640
643
|
no_overwrite: Optional[pulumi.Input[builtins.bool]] = None,
|
|
641
644
|
no_overwrite_variable: Optional[pulumi.Input[builtins.str]] = None,
|
|
642
645
|
packet_data_network_type: Optional[pulumi.Input[builtins.str]] = None,
|
|
@@ -647,6 +650,7 @@ class TransportCellularProfileFeature(pulumi.CustomResource):
|
|
|
647
650
|
profile_password_variable: Optional[pulumi.Input[builtins.str]] = None,
|
|
648
651
|
profile_username: Optional[pulumi.Input[builtins.str]] = None,
|
|
649
652
|
profile_username_variable: Optional[pulumi.Input[builtins.str]] = None,
|
|
653
|
+
requires_authentication: Optional[pulumi.Input[builtins.bool]] = None,
|
|
650
654
|
__props__=None):
|
|
651
655
|
"""
|
|
652
656
|
This resource can manage a Transport Cellular Profile Feature.
|
|
@@ -664,6 +668,7 @@ class TransportCellularProfileFeature(pulumi.CustomResource):
|
|
|
664
668
|
feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
665
669
|
profile_id=1,
|
|
666
670
|
access_point_name="apn1",
|
|
671
|
+
requires_authentication=True,
|
|
667
672
|
authentication_type="pap",
|
|
668
673
|
profile_username="example",
|
|
669
674
|
profile_password="example123!",
|
|
@@ -683,22 +688,23 @@ class TransportCellularProfileFeature(pulumi.CustomResource):
|
|
|
683
688
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
684
689
|
:param pulumi.Input[builtins.str] access_point_name: Set access point name
|
|
685
690
|
:param pulumi.Input[builtins.str] access_point_name_variable: Variable name
|
|
686
|
-
:param pulumi.Input[builtins.str] authentication_type: Set authentication type - Choices: `pap`,
|
|
687
|
-
|
|
691
|
+
:param pulumi.Input[builtins.str] authentication_type: Set authentication type, Attribute conditional on `requires_authentication` being equal to `true` - Choices: `pap`,
|
|
692
|
+
`chap`, `pap_chap`
|
|
693
|
+
:param pulumi.Input[builtins.str] authentication_type_variable: Variable name, Attribute conditional on `requires_authentication` being equal to `true`
|
|
688
694
|
:param pulumi.Input[builtins.str] description: The description of the Feature
|
|
689
695
|
:param pulumi.Input[builtins.str] feature_profile_id: Feature Profile ID
|
|
690
696
|
:param pulumi.Input[builtins.str] name: The name of the Feature
|
|
691
|
-
:param pulumi.Input[builtins.str] no_authentication: No Authentication
|
|
692
697
|
:param pulumi.Input[builtins.bool] no_overwrite: No Overwrite
|
|
693
698
|
:param pulumi.Input[builtins.str] no_overwrite_variable: Variable name
|
|
694
699
|
:param pulumi.Input[builtins.str] packet_data_network_type: Set packet data network type - Choices: `ipv4`, `ipv4v6`, `ipv6` - Default value: `ipv4`
|
|
695
700
|
:param pulumi.Input[builtins.str] packet_data_network_type_variable: Variable name
|
|
696
701
|
:param pulumi.Input[builtins.int] profile_id: Set Profile ID - Range: `1`-`16`
|
|
697
702
|
:param pulumi.Input[builtins.str] profile_id_variable: Variable name
|
|
698
|
-
:param pulumi.Input[builtins.str] profile_password: Set the profile password
|
|
699
|
-
:param pulumi.Input[builtins.str] profile_password_variable: Variable name
|
|
700
|
-
:param pulumi.Input[builtins.str] profile_username: Set the profile username
|
|
701
|
-
:param pulumi.Input[builtins.str] profile_username_variable: Variable name
|
|
703
|
+
:param pulumi.Input[builtins.str] profile_password: Set the profile password, Attribute conditional on `requires_authentication` being equal to `true`
|
|
704
|
+
:param pulumi.Input[builtins.str] profile_password_variable: Variable name, Attribute conditional on `requires_authentication` being equal to `true`
|
|
705
|
+
:param pulumi.Input[builtins.str] profile_username: Set the profile username, Attribute conditional on `requires_authentication` being equal to `true`
|
|
706
|
+
:param pulumi.Input[builtins.str] profile_username_variable: Variable name, Attribute conditional on `requires_authentication` being equal to `true`
|
|
707
|
+
:param pulumi.Input[builtins.bool] requires_authentication: Require authentication type - Default value: `false`
|
|
702
708
|
"""
|
|
703
709
|
...
|
|
704
710
|
@overload
|
|
@@ -722,6 +728,7 @@ class TransportCellularProfileFeature(pulumi.CustomResource):
|
|
|
722
728
|
feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
723
729
|
profile_id=1,
|
|
724
730
|
access_point_name="apn1",
|
|
731
|
+
requires_authentication=True,
|
|
725
732
|
authentication_type="pap",
|
|
726
733
|
profile_username="example",
|
|
727
734
|
profile_password="example123!",
|
|
@@ -759,7 +766,6 @@ class TransportCellularProfileFeature(pulumi.CustomResource):
|
|
|
759
766
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
|
760
767
|
feature_profile_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
761
768
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
|
762
|
-
no_authentication: Optional[pulumi.Input[builtins.str]] = None,
|
|
763
769
|
no_overwrite: Optional[pulumi.Input[builtins.bool]] = None,
|
|
764
770
|
no_overwrite_variable: Optional[pulumi.Input[builtins.str]] = None,
|
|
765
771
|
packet_data_network_type: Optional[pulumi.Input[builtins.str]] = None,
|
|
@@ -770,6 +776,7 @@ class TransportCellularProfileFeature(pulumi.CustomResource):
|
|
|
770
776
|
profile_password_variable: Optional[pulumi.Input[builtins.str]] = None,
|
|
771
777
|
profile_username: Optional[pulumi.Input[builtins.str]] = None,
|
|
772
778
|
profile_username_variable: Optional[pulumi.Input[builtins.str]] = None,
|
|
779
|
+
requires_authentication: Optional[pulumi.Input[builtins.bool]] = None,
|
|
773
780
|
__props__=None):
|
|
774
781
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
775
782
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -788,7 +795,6 @@ class TransportCellularProfileFeature(pulumi.CustomResource):
|
|
|
788
795
|
raise TypeError("Missing required property 'feature_profile_id'")
|
|
789
796
|
__props__.__dict__["feature_profile_id"] = feature_profile_id
|
|
790
797
|
__props__.__dict__["name"] = name
|
|
791
|
-
__props__.__dict__["no_authentication"] = no_authentication
|
|
792
798
|
__props__.__dict__["no_overwrite"] = no_overwrite
|
|
793
799
|
__props__.__dict__["no_overwrite_variable"] = no_overwrite_variable
|
|
794
800
|
__props__.__dict__["packet_data_network_type"] = packet_data_network_type
|
|
@@ -799,6 +805,7 @@ class TransportCellularProfileFeature(pulumi.CustomResource):
|
|
|
799
805
|
__props__.__dict__["profile_password_variable"] = profile_password_variable
|
|
800
806
|
__props__.__dict__["profile_username"] = profile_username
|
|
801
807
|
__props__.__dict__["profile_username_variable"] = profile_username_variable
|
|
808
|
+
__props__.__dict__["requires_authentication"] = requires_authentication
|
|
802
809
|
__props__.__dict__["version"] = None
|
|
803
810
|
super(TransportCellularProfileFeature, __self__).__init__(
|
|
804
811
|
'sdwan:index/transportCellularProfileFeature:TransportCellularProfileFeature',
|
|
@@ -817,7 +824,6 @@ class TransportCellularProfileFeature(pulumi.CustomResource):
|
|
|
817
824
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
|
818
825
|
feature_profile_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
819
826
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
|
820
|
-
no_authentication: Optional[pulumi.Input[builtins.str]] = None,
|
|
821
827
|
no_overwrite: Optional[pulumi.Input[builtins.bool]] = None,
|
|
822
828
|
no_overwrite_variable: Optional[pulumi.Input[builtins.str]] = None,
|
|
823
829
|
packet_data_network_type: Optional[pulumi.Input[builtins.str]] = None,
|
|
@@ -828,6 +834,7 @@ class TransportCellularProfileFeature(pulumi.CustomResource):
|
|
|
828
834
|
profile_password_variable: Optional[pulumi.Input[builtins.str]] = None,
|
|
829
835
|
profile_username: Optional[pulumi.Input[builtins.str]] = None,
|
|
830
836
|
profile_username_variable: Optional[pulumi.Input[builtins.str]] = None,
|
|
837
|
+
requires_authentication: Optional[pulumi.Input[builtins.bool]] = None,
|
|
831
838
|
version: Optional[pulumi.Input[builtins.int]] = None) -> 'TransportCellularProfileFeature':
|
|
832
839
|
"""
|
|
833
840
|
Get an existing TransportCellularProfileFeature resource's state with the given name, id, and optional extra
|
|
@@ -838,22 +845,23 @@ class TransportCellularProfileFeature(pulumi.CustomResource):
|
|
|
838
845
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
839
846
|
:param pulumi.Input[builtins.str] access_point_name: Set access point name
|
|
840
847
|
:param pulumi.Input[builtins.str] access_point_name_variable: Variable name
|
|
841
|
-
:param pulumi.Input[builtins.str] authentication_type: Set authentication type - Choices: `pap`,
|
|
842
|
-
|
|
848
|
+
:param pulumi.Input[builtins.str] authentication_type: Set authentication type, Attribute conditional on `requires_authentication` being equal to `true` - Choices: `pap`,
|
|
849
|
+
`chap`, `pap_chap`
|
|
850
|
+
:param pulumi.Input[builtins.str] authentication_type_variable: Variable name, Attribute conditional on `requires_authentication` being equal to `true`
|
|
843
851
|
:param pulumi.Input[builtins.str] description: The description of the Feature
|
|
844
852
|
:param pulumi.Input[builtins.str] feature_profile_id: Feature Profile ID
|
|
845
853
|
:param pulumi.Input[builtins.str] name: The name of the Feature
|
|
846
|
-
:param pulumi.Input[builtins.str] no_authentication: No Authentication
|
|
847
854
|
:param pulumi.Input[builtins.bool] no_overwrite: No Overwrite
|
|
848
855
|
:param pulumi.Input[builtins.str] no_overwrite_variable: Variable name
|
|
849
856
|
:param pulumi.Input[builtins.str] packet_data_network_type: Set packet data network type - Choices: `ipv4`, `ipv4v6`, `ipv6` - Default value: `ipv4`
|
|
850
857
|
:param pulumi.Input[builtins.str] packet_data_network_type_variable: Variable name
|
|
851
858
|
:param pulumi.Input[builtins.int] profile_id: Set Profile ID - Range: `1`-`16`
|
|
852
859
|
:param pulumi.Input[builtins.str] profile_id_variable: Variable name
|
|
853
|
-
:param pulumi.Input[builtins.str] profile_password: Set the profile password
|
|
854
|
-
:param pulumi.Input[builtins.str] profile_password_variable: Variable name
|
|
855
|
-
:param pulumi.Input[builtins.str] profile_username: Set the profile username
|
|
856
|
-
:param pulumi.Input[builtins.str] profile_username_variable: Variable name
|
|
860
|
+
:param pulumi.Input[builtins.str] profile_password: Set the profile password, Attribute conditional on `requires_authentication` being equal to `true`
|
|
861
|
+
:param pulumi.Input[builtins.str] profile_password_variable: Variable name, Attribute conditional on `requires_authentication` being equal to `true`
|
|
862
|
+
:param pulumi.Input[builtins.str] profile_username: Set the profile username, Attribute conditional on `requires_authentication` being equal to `true`
|
|
863
|
+
:param pulumi.Input[builtins.str] profile_username_variable: Variable name, Attribute conditional on `requires_authentication` being equal to `true`
|
|
864
|
+
:param pulumi.Input[builtins.bool] requires_authentication: Require authentication type - Default value: `false`
|
|
857
865
|
:param pulumi.Input[builtins.int] version: The version of the Feature
|
|
858
866
|
"""
|
|
859
867
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -867,7 +875,6 @@ class TransportCellularProfileFeature(pulumi.CustomResource):
|
|
|
867
875
|
__props__.__dict__["description"] = description
|
|
868
876
|
__props__.__dict__["feature_profile_id"] = feature_profile_id
|
|
869
877
|
__props__.__dict__["name"] = name
|
|
870
|
-
__props__.__dict__["no_authentication"] = no_authentication
|
|
871
878
|
__props__.__dict__["no_overwrite"] = no_overwrite
|
|
872
879
|
__props__.__dict__["no_overwrite_variable"] = no_overwrite_variable
|
|
873
880
|
__props__.__dict__["packet_data_network_type"] = packet_data_network_type
|
|
@@ -878,6 +885,7 @@ class TransportCellularProfileFeature(pulumi.CustomResource):
|
|
|
878
885
|
__props__.__dict__["profile_password_variable"] = profile_password_variable
|
|
879
886
|
__props__.__dict__["profile_username"] = profile_username
|
|
880
887
|
__props__.__dict__["profile_username_variable"] = profile_username_variable
|
|
888
|
+
__props__.__dict__["requires_authentication"] = requires_authentication
|
|
881
889
|
__props__.__dict__["version"] = version
|
|
882
890
|
return TransportCellularProfileFeature(resource_name, opts=opts, __props__=__props__)
|
|
883
891
|
|
|
@@ -901,7 +909,8 @@ class TransportCellularProfileFeature(pulumi.CustomResource):
|
|
|
901
909
|
@pulumi.getter(name="authenticationType")
|
|
902
910
|
def authentication_type(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
903
911
|
"""
|
|
904
|
-
Set authentication type - Choices: `pap`,
|
|
912
|
+
Set authentication type, Attribute conditional on `requires_authentication` being equal to `true` - Choices: `pap`,
|
|
913
|
+
`chap`, `pap_chap`
|
|
905
914
|
"""
|
|
906
915
|
return pulumi.get(self, "authentication_type")
|
|
907
916
|
|
|
@@ -909,7 +918,7 @@ class TransportCellularProfileFeature(pulumi.CustomResource):
|
|
|
909
918
|
@pulumi.getter(name="authenticationTypeVariable")
|
|
910
919
|
def authentication_type_variable(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
911
920
|
"""
|
|
912
|
-
Variable name
|
|
921
|
+
Variable name, Attribute conditional on `requires_authentication` being equal to `true`
|
|
913
922
|
"""
|
|
914
923
|
return pulumi.get(self, "authentication_type_variable")
|
|
915
924
|
|
|
@@ -937,14 +946,6 @@ class TransportCellularProfileFeature(pulumi.CustomResource):
|
|
|
937
946
|
"""
|
|
938
947
|
return pulumi.get(self, "name")
|
|
939
948
|
|
|
940
|
-
@property
|
|
941
|
-
@pulumi.getter(name="noAuthentication")
|
|
942
|
-
def no_authentication(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
943
|
-
"""
|
|
944
|
-
No Authentication
|
|
945
|
-
"""
|
|
946
|
-
return pulumi.get(self, "no_authentication")
|
|
947
|
-
|
|
948
949
|
@property
|
|
949
950
|
@pulumi.getter(name="noOverwrite")
|
|
950
951
|
def no_overwrite(self) -> pulumi.Output[Optional[builtins.bool]]:
|
|
@@ -997,7 +998,7 @@ class TransportCellularProfileFeature(pulumi.CustomResource):
|
|
|
997
998
|
@pulumi.getter(name="profilePassword")
|
|
998
999
|
def profile_password(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
999
1000
|
"""
|
|
1000
|
-
Set the profile password
|
|
1001
|
+
Set the profile password, Attribute conditional on `requires_authentication` being equal to `true`
|
|
1001
1002
|
"""
|
|
1002
1003
|
return pulumi.get(self, "profile_password")
|
|
1003
1004
|
|
|
@@ -1005,7 +1006,7 @@ class TransportCellularProfileFeature(pulumi.CustomResource):
|
|
|
1005
1006
|
@pulumi.getter(name="profilePasswordVariable")
|
|
1006
1007
|
def profile_password_variable(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1007
1008
|
"""
|
|
1008
|
-
Variable name
|
|
1009
|
+
Variable name, Attribute conditional on `requires_authentication` being equal to `true`
|
|
1009
1010
|
"""
|
|
1010
1011
|
return pulumi.get(self, "profile_password_variable")
|
|
1011
1012
|
|
|
@@ -1013,7 +1014,7 @@ class TransportCellularProfileFeature(pulumi.CustomResource):
|
|
|
1013
1014
|
@pulumi.getter(name="profileUsername")
|
|
1014
1015
|
def profile_username(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1015
1016
|
"""
|
|
1016
|
-
Set the profile username
|
|
1017
|
+
Set the profile username, Attribute conditional on `requires_authentication` being equal to `true`
|
|
1017
1018
|
"""
|
|
1018
1019
|
return pulumi.get(self, "profile_username")
|
|
1019
1020
|
|
|
@@ -1021,10 +1022,18 @@ class TransportCellularProfileFeature(pulumi.CustomResource):
|
|
|
1021
1022
|
@pulumi.getter(name="profileUsernameVariable")
|
|
1022
1023
|
def profile_username_variable(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1023
1024
|
"""
|
|
1024
|
-
Variable name
|
|
1025
|
+
Variable name, Attribute conditional on `requires_authentication` being equal to `true`
|
|
1025
1026
|
"""
|
|
1026
1027
|
return pulumi.get(self, "profile_username_variable")
|
|
1027
1028
|
|
|
1029
|
+
@property
|
|
1030
|
+
@pulumi.getter(name="requiresAuthentication")
|
|
1031
|
+
def requires_authentication(self) -> pulumi.Output[Optional[builtins.bool]]:
|
|
1032
|
+
"""
|
|
1033
|
+
Require authentication type - Default value: `false`
|
|
1034
|
+
"""
|
|
1035
|
+
return pulumi.get(self, "requires_authentication")
|
|
1036
|
+
|
|
1028
1037
|
@property
|
|
1029
1038
|
@pulumi.getter
|
|
1030
1039
|
def version(self) -> pulumi.Output[builtins.int]:
|