pulumi-sdwan 0.3.0a1736835519__py3-none-any.whl → 0.3.0a1737094531__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.

Files changed (18) hide show
  1. pulumi_sdwan/__init__.py +60 -0
  2. pulumi_sdwan/get_service_lan_vpn_interface_ethernet_feature_associate_tracker_feature.py +178 -0
  3. pulumi_sdwan/get_service_lan_vpn_interface_ethernet_feature_associate_tracker_group_feature.py +178 -0
  4. pulumi_sdwan/get_transport_wan_vpn_interface_cellular_feature_associate_tracker_feature.py +178 -0
  5. pulumi_sdwan/get_transport_wan_vpn_interface_cellular_feature_associate_tracker_group_feature.py +178 -0
  6. pulumi_sdwan/get_transport_wan_vpn_interface_gre_feature_associate_tracker_feature.py +178 -0
  7. pulumi_sdwan/get_transport_wan_vpn_interface_ipsec_feature_associate_tracker_feature.py +178 -0
  8. pulumi_sdwan/pulumi-plugin.json +1 -1
  9. pulumi_sdwan/service_lan_vpn_interface_ethernet_feature_associate_tracker_feature.py +335 -0
  10. pulumi_sdwan/service_lan_vpn_interface_ethernet_feature_associate_tracker_group_feature.py +335 -0
  11. pulumi_sdwan/transport_wan_vpn_interface_cellular_feature_associate_tracker_feature.py +335 -0
  12. pulumi_sdwan/transport_wan_vpn_interface_cellular_feature_associate_tracker_group_feature.py +335 -0
  13. pulumi_sdwan/transport_wan_vpn_interface_gre_feature_associate_tracker_feature.py +335 -0
  14. pulumi_sdwan/transport_wan_vpn_interface_ipsec_feature_associate_tracker_feature.py +335 -0
  15. {pulumi_sdwan-0.3.0a1736835519.dist-info → pulumi_sdwan-0.3.0a1737094531.dist-info}/METADATA +1 -1
  16. {pulumi_sdwan-0.3.0a1736835519.dist-info → pulumi_sdwan-0.3.0a1737094531.dist-info}/RECORD +18 -6
  17. {pulumi_sdwan-0.3.0a1736835519.dist-info → pulumi_sdwan-0.3.0a1737094531.dist-info}/WHEEL +0 -0
  18. {pulumi_sdwan-0.3.0a1736835519.dist-info → pulumi_sdwan-0.3.0a1737094531.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,335 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from . import _utilities
16
+
17
+ __all__ = ['TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureArgs', 'TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature']
18
+
19
+ @pulumi.input_type
20
+ class TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureArgs:
21
+ def __init__(__self__, *,
22
+ feature_profile_id: pulumi.Input[str],
23
+ transport_tracker_feature_id: pulumi.Input[str],
24
+ transport_wan_vpn_feature_id: pulumi.Input[str],
25
+ transport_wan_vpn_interface_cellular_feature_id: pulumi.Input[str]):
26
+ """
27
+ The set of arguments for constructing a TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature resource.
28
+ :param pulumi.Input[str] feature_profile_id: Feature Profile ID
29
+ :param pulumi.Input[str] transport_tracker_feature_id: Transport Tracker Feature ID
30
+ :param pulumi.Input[str] transport_wan_vpn_feature_id: Transport WAN VPN Feature ID
31
+ :param pulumi.Input[str] transport_wan_vpn_interface_cellular_feature_id: Transport WAN VPN Interface Cellular Feature ID
32
+ """
33
+ pulumi.set(__self__, "feature_profile_id", feature_profile_id)
34
+ pulumi.set(__self__, "transport_tracker_feature_id", transport_tracker_feature_id)
35
+ pulumi.set(__self__, "transport_wan_vpn_feature_id", transport_wan_vpn_feature_id)
36
+ pulumi.set(__self__, "transport_wan_vpn_interface_cellular_feature_id", transport_wan_vpn_interface_cellular_feature_id)
37
+
38
+ @property
39
+ @pulumi.getter(name="featureProfileId")
40
+ def feature_profile_id(self) -> pulumi.Input[str]:
41
+ """
42
+ Feature Profile ID
43
+ """
44
+ return pulumi.get(self, "feature_profile_id")
45
+
46
+ @feature_profile_id.setter
47
+ def feature_profile_id(self, value: pulumi.Input[str]):
48
+ pulumi.set(self, "feature_profile_id", value)
49
+
50
+ @property
51
+ @pulumi.getter(name="transportTrackerFeatureId")
52
+ def transport_tracker_feature_id(self) -> pulumi.Input[str]:
53
+ """
54
+ Transport Tracker Feature ID
55
+ """
56
+ return pulumi.get(self, "transport_tracker_feature_id")
57
+
58
+ @transport_tracker_feature_id.setter
59
+ def transport_tracker_feature_id(self, value: pulumi.Input[str]):
60
+ pulumi.set(self, "transport_tracker_feature_id", value)
61
+
62
+ @property
63
+ @pulumi.getter(name="transportWanVpnFeatureId")
64
+ def transport_wan_vpn_feature_id(self) -> pulumi.Input[str]:
65
+ """
66
+ Transport WAN VPN Feature ID
67
+ """
68
+ return pulumi.get(self, "transport_wan_vpn_feature_id")
69
+
70
+ @transport_wan_vpn_feature_id.setter
71
+ def transport_wan_vpn_feature_id(self, value: pulumi.Input[str]):
72
+ pulumi.set(self, "transport_wan_vpn_feature_id", value)
73
+
74
+ @property
75
+ @pulumi.getter(name="transportWanVpnInterfaceCellularFeatureId")
76
+ def transport_wan_vpn_interface_cellular_feature_id(self) -> pulumi.Input[str]:
77
+ """
78
+ Transport WAN VPN Interface Cellular Feature ID
79
+ """
80
+ return pulumi.get(self, "transport_wan_vpn_interface_cellular_feature_id")
81
+
82
+ @transport_wan_vpn_interface_cellular_feature_id.setter
83
+ def transport_wan_vpn_interface_cellular_feature_id(self, value: pulumi.Input[str]):
84
+ pulumi.set(self, "transport_wan_vpn_interface_cellular_feature_id", value)
85
+
86
+
87
+ @pulumi.input_type
88
+ class _TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureState:
89
+ def __init__(__self__, *,
90
+ feature_profile_id: Optional[pulumi.Input[str]] = None,
91
+ transport_tracker_feature_id: Optional[pulumi.Input[str]] = None,
92
+ transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
93
+ transport_wan_vpn_interface_cellular_feature_id: Optional[pulumi.Input[str]] = None):
94
+ """
95
+ Input properties used for looking up and filtering TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature resources.
96
+ :param pulumi.Input[str] feature_profile_id: Feature Profile ID
97
+ :param pulumi.Input[str] transport_tracker_feature_id: Transport Tracker Feature ID
98
+ :param pulumi.Input[str] transport_wan_vpn_feature_id: Transport WAN VPN Feature ID
99
+ :param pulumi.Input[str] transport_wan_vpn_interface_cellular_feature_id: Transport WAN VPN Interface Cellular Feature ID
100
+ """
101
+ if feature_profile_id is not None:
102
+ pulumi.set(__self__, "feature_profile_id", feature_profile_id)
103
+ if transport_tracker_feature_id is not None:
104
+ pulumi.set(__self__, "transport_tracker_feature_id", transport_tracker_feature_id)
105
+ if transport_wan_vpn_feature_id is not None:
106
+ pulumi.set(__self__, "transport_wan_vpn_feature_id", transport_wan_vpn_feature_id)
107
+ if transport_wan_vpn_interface_cellular_feature_id is not None:
108
+ pulumi.set(__self__, "transport_wan_vpn_interface_cellular_feature_id", transport_wan_vpn_interface_cellular_feature_id)
109
+
110
+ @property
111
+ @pulumi.getter(name="featureProfileId")
112
+ def feature_profile_id(self) -> Optional[pulumi.Input[str]]:
113
+ """
114
+ Feature Profile ID
115
+ """
116
+ return pulumi.get(self, "feature_profile_id")
117
+
118
+ @feature_profile_id.setter
119
+ def feature_profile_id(self, value: Optional[pulumi.Input[str]]):
120
+ pulumi.set(self, "feature_profile_id", value)
121
+
122
+ @property
123
+ @pulumi.getter(name="transportTrackerFeatureId")
124
+ def transport_tracker_feature_id(self) -> Optional[pulumi.Input[str]]:
125
+ """
126
+ Transport Tracker Feature ID
127
+ """
128
+ return pulumi.get(self, "transport_tracker_feature_id")
129
+
130
+ @transport_tracker_feature_id.setter
131
+ def transport_tracker_feature_id(self, value: Optional[pulumi.Input[str]]):
132
+ pulumi.set(self, "transport_tracker_feature_id", value)
133
+
134
+ @property
135
+ @pulumi.getter(name="transportWanVpnFeatureId")
136
+ def transport_wan_vpn_feature_id(self) -> Optional[pulumi.Input[str]]:
137
+ """
138
+ Transport WAN VPN Feature ID
139
+ """
140
+ return pulumi.get(self, "transport_wan_vpn_feature_id")
141
+
142
+ @transport_wan_vpn_feature_id.setter
143
+ def transport_wan_vpn_feature_id(self, value: Optional[pulumi.Input[str]]):
144
+ pulumi.set(self, "transport_wan_vpn_feature_id", value)
145
+
146
+ @property
147
+ @pulumi.getter(name="transportWanVpnInterfaceCellularFeatureId")
148
+ def transport_wan_vpn_interface_cellular_feature_id(self) -> Optional[pulumi.Input[str]]:
149
+ """
150
+ Transport WAN VPN Interface Cellular Feature ID
151
+ """
152
+ return pulumi.get(self, "transport_wan_vpn_interface_cellular_feature_id")
153
+
154
+ @transport_wan_vpn_interface_cellular_feature_id.setter
155
+ def transport_wan_vpn_interface_cellular_feature_id(self, value: Optional[pulumi.Input[str]]):
156
+ pulumi.set(self, "transport_wan_vpn_interface_cellular_feature_id", value)
157
+
158
+
159
+ class TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature(pulumi.CustomResource):
160
+ @overload
161
+ def __init__(__self__,
162
+ resource_name: str,
163
+ opts: Optional[pulumi.ResourceOptions] = None,
164
+ feature_profile_id: Optional[pulumi.Input[str]] = None,
165
+ transport_tracker_feature_id: Optional[pulumi.Input[str]] = None,
166
+ transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
167
+ transport_wan_vpn_interface_cellular_feature_id: Optional[pulumi.Input[str]] = None,
168
+ __props__=None):
169
+ """
170
+ This resource can manage a Transport WAN VPN Interface Cellular Feature Associate Tracker Feature .
171
+ - Minimum SD-WAN Manager version: `20.12.0`
172
+
173
+ ## Example Usage
174
+
175
+ ```python
176
+ import pulumi
177
+ import pulumi_sdwan as sdwan
178
+
179
+ example = sdwan.TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature("example",
180
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
181
+ transport_wan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
182
+ transport_wan_vpn_interface_cellular_feature_id="140331f6-5418-4755-a059-13c77eb96037",
183
+ transport_tracker_feature_id="140331f6-5418-4755-a059-13c77eb96037")
184
+ ```
185
+
186
+ ## Import
187
+
188
+ ```sh
189
+ $ pulumi import sdwan:index/transportWanVpnInterfaceCellularFeatureAssociateTrackerFeature:TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
190
+ ```
191
+
192
+ :param str resource_name: The name of the resource.
193
+ :param pulumi.ResourceOptions opts: Options for the resource.
194
+ :param pulumi.Input[str] feature_profile_id: Feature Profile ID
195
+ :param pulumi.Input[str] transport_tracker_feature_id: Transport Tracker Feature ID
196
+ :param pulumi.Input[str] transport_wan_vpn_feature_id: Transport WAN VPN Feature ID
197
+ :param pulumi.Input[str] transport_wan_vpn_interface_cellular_feature_id: Transport WAN VPN Interface Cellular Feature ID
198
+ """
199
+ ...
200
+ @overload
201
+ def __init__(__self__,
202
+ resource_name: str,
203
+ args: TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureArgs,
204
+ opts: Optional[pulumi.ResourceOptions] = None):
205
+ """
206
+ This resource can manage a Transport WAN VPN Interface Cellular Feature Associate Tracker Feature .
207
+ - Minimum SD-WAN Manager version: `20.12.0`
208
+
209
+ ## Example Usage
210
+
211
+ ```python
212
+ import pulumi
213
+ import pulumi_sdwan as sdwan
214
+
215
+ example = sdwan.TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature("example",
216
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
217
+ transport_wan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
218
+ transport_wan_vpn_interface_cellular_feature_id="140331f6-5418-4755-a059-13c77eb96037",
219
+ transport_tracker_feature_id="140331f6-5418-4755-a059-13c77eb96037")
220
+ ```
221
+
222
+ ## Import
223
+
224
+ ```sh
225
+ $ pulumi import sdwan:index/transportWanVpnInterfaceCellularFeatureAssociateTrackerFeature:TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
226
+ ```
227
+
228
+ :param str resource_name: The name of the resource.
229
+ :param TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureArgs args: The arguments to use to populate this resource's properties.
230
+ :param pulumi.ResourceOptions opts: Options for the resource.
231
+ """
232
+ ...
233
+ def __init__(__self__, resource_name: str, *args, **kwargs):
234
+ resource_args, opts = _utilities.get_resource_args_opts(TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureArgs, pulumi.ResourceOptions, *args, **kwargs)
235
+ if resource_args is not None:
236
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
237
+ else:
238
+ __self__._internal_init(resource_name, *args, **kwargs)
239
+
240
+ def _internal_init(__self__,
241
+ resource_name: str,
242
+ opts: Optional[pulumi.ResourceOptions] = None,
243
+ feature_profile_id: Optional[pulumi.Input[str]] = None,
244
+ transport_tracker_feature_id: Optional[pulumi.Input[str]] = None,
245
+ transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
246
+ transport_wan_vpn_interface_cellular_feature_id: Optional[pulumi.Input[str]] = None,
247
+ __props__=None):
248
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
249
+ if not isinstance(opts, pulumi.ResourceOptions):
250
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
251
+ if opts.id is None:
252
+ if __props__ is not None:
253
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
254
+ __props__ = TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureArgs.__new__(TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureArgs)
255
+
256
+ if feature_profile_id is None and not opts.urn:
257
+ raise TypeError("Missing required property 'feature_profile_id'")
258
+ __props__.__dict__["feature_profile_id"] = feature_profile_id
259
+ if transport_tracker_feature_id is None and not opts.urn:
260
+ raise TypeError("Missing required property 'transport_tracker_feature_id'")
261
+ __props__.__dict__["transport_tracker_feature_id"] = transport_tracker_feature_id
262
+ if transport_wan_vpn_feature_id is None and not opts.urn:
263
+ raise TypeError("Missing required property 'transport_wan_vpn_feature_id'")
264
+ __props__.__dict__["transport_wan_vpn_feature_id"] = transport_wan_vpn_feature_id
265
+ if transport_wan_vpn_interface_cellular_feature_id is None and not opts.urn:
266
+ raise TypeError("Missing required property 'transport_wan_vpn_interface_cellular_feature_id'")
267
+ __props__.__dict__["transport_wan_vpn_interface_cellular_feature_id"] = transport_wan_vpn_interface_cellular_feature_id
268
+ super(TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature, __self__).__init__(
269
+ 'sdwan:index/transportWanVpnInterfaceCellularFeatureAssociateTrackerFeature:TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature',
270
+ resource_name,
271
+ __props__,
272
+ opts)
273
+
274
+ @staticmethod
275
+ def get(resource_name: str,
276
+ id: pulumi.Input[str],
277
+ opts: Optional[pulumi.ResourceOptions] = None,
278
+ feature_profile_id: Optional[pulumi.Input[str]] = None,
279
+ transport_tracker_feature_id: Optional[pulumi.Input[str]] = None,
280
+ transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
281
+ transport_wan_vpn_interface_cellular_feature_id: Optional[pulumi.Input[str]] = None) -> 'TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature':
282
+ """
283
+ Get an existing TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature resource's state with the given name, id, and optional extra
284
+ properties used to qualify the lookup.
285
+
286
+ :param str resource_name: The unique name of the resulting resource.
287
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
288
+ :param pulumi.ResourceOptions opts: Options for the resource.
289
+ :param pulumi.Input[str] feature_profile_id: Feature Profile ID
290
+ :param pulumi.Input[str] transport_tracker_feature_id: Transport Tracker Feature ID
291
+ :param pulumi.Input[str] transport_wan_vpn_feature_id: Transport WAN VPN Feature ID
292
+ :param pulumi.Input[str] transport_wan_vpn_interface_cellular_feature_id: Transport WAN VPN Interface Cellular Feature ID
293
+ """
294
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
295
+
296
+ __props__ = _TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureState.__new__(_TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureState)
297
+
298
+ __props__.__dict__["feature_profile_id"] = feature_profile_id
299
+ __props__.__dict__["transport_tracker_feature_id"] = transport_tracker_feature_id
300
+ __props__.__dict__["transport_wan_vpn_feature_id"] = transport_wan_vpn_feature_id
301
+ __props__.__dict__["transport_wan_vpn_interface_cellular_feature_id"] = transport_wan_vpn_interface_cellular_feature_id
302
+ return TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature(resource_name, opts=opts, __props__=__props__)
303
+
304
+ @property
305
+ @pulumi.getter(name="featureProfileId")
306
+ def feature_profile_id(self) -> pulumi.Output[str]:
307
+ """
308
+ Feature Profile ID
309
+ """
310
+ return pulumi.get(self, "feature_profile_id")
311
+
312
+ @property
313
+ @pulumi.getter(name="transportTrackerFeatureId")
314
+ def transport_tracker_feature_id(self) -> pulumi.Output[str]:
315
+ """
316
+ Transport Tracker Feature ID
317
+ """
318
+ return pulumi.get(self, "transport_tracker_feature_id")
319
+
320
+ @property
321
+ @pulumi.getter(name="transportWanVpnFeatureId")
322
+ def transport_wan_vpn_feature_id(self) -> pulumi.Output[str]:
323
+ """
324
+ Transport WAN VPN Feature ID
325
+ """
326
+ return pulumi.get(self, "transport_wan_vpn_feature_id")
327
+
328
+ @property
329
+ @pulumi.getter(name="transportWanVpnInterfaceCellularFeatureId")
330
+ def transport_wan_vpn_interface_cellular_feature_id(self) -> pulumi.Output[str]:
331
+ """
332
+ Transport WAN VPN Interface Cellular Feature ID
333
+ """
334
+ return pulumi.get(self, "transport_wan_vpn_interface_cellular_feature_id")
335
+
@@ -0,0 +1,335 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from . import _utilities
16
+
17
+ __all__ = ['TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureArgs', 'TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature']
18
+
19
+ @pulumi.input_type
20
+ class TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureArgs:
21
+ def __init__(__self__, *,
22
+ feature_profile_id: pulumi.Input[str],
23
+ transport_tracker_group_feature_id: pulumi.Input[str],
24
+ transport_wan_vpn_feature_id: pulumi.Input[str],
25
+ transport_wan_vpn_interface_cellular_feature_id: pulumi.Input[str]):
26
+ """
27
+ The set of arguments for constructing a TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature resource.
28
+ :param pulumi.Input[str] feature_profile_id: Feature Profile ID
29
+ :param pulumi.Input[str] transport_tracker_group_feature_id: Transport Tracker Group Feature ID
30
+ :param pulumi.Input[str] transport_wan_vpn_feature_id: Transport WAN VPN Feature ID
31
+ :param pulumi.Input[str] transport_wan_vpn_interface_cellular_feature_id: Transport WAN VPN Interface Cellular Feature ID
32
+ """
33
+ pulumi.set(__self__, "feature_profile_id", feature_profile_id)
34
+ pulumi.set(__self__, "transport_tracker_group_feature_id", transport_tracker_group_feature_id)
35
+ pulumi.set(__self__, "transport_wan_vpn_feature_id", transport_wan_vpn_feature_id)
36
+ pulumi.set(__self__, "transport_wan_vpn_interface_cellular_feature_id", transport_wan_vpn_interface_cellular_feature_id)
37
+
38
+ @property
39
+ @pulumi.getter(name="featureProfileId")
40
+ def feature_profile_id(self) -> pulumi.Input[str]:
41
+ """
42
+ Feature Profile ID
43
+ """
44
+ return pulumi.get(self, "feature_profile_id")
45
+
46
+ @feature_profile_id.setter
47
+ def feature_profile_id(self, value: pulumi.Input[str]):
48
+ pulumi.set(self, "feature_profile_id", value)
49
+
50
+ @property
51
+ @pulumi.getter(name="transportTrackerGroupFeatureId")
52
+ def transport_tracker_group_feature_id(self) -> pulumi.Input[str]:
53
+ """
54
+ Transport Tracker Group Feature ID
55
+ """
56
+ return pulumi.get(self, "transport_tracker_group_feature_id")
57
+
58
+ @transport_tracker_group_feature_id.setter
59
+ def transport_tracker_group_feature_id(self, value: pulumi.Input[str]):
60
+ pulumi.set(self, "transport_tracker_group_feature_id", value)
61
+
62
+ @property
63
+ @pulumi.getter(name="transportWanVpnFeatureId")
64
+ def transport_wan_vpn_feature_id(self) -> pulumi.Input[str]:
65
+ """
66
+ Transport WAN VPN Feature ID
67
+ """
68
+ return pulumi.get(self, "transport_wan_vpn_feature_id")
69
+
70
+ @transport_wan_vpn_feature_id.setter
71
+ def transport_wan_vpn_feature_id(self, value: pulumi.Input[str]):
72
+ pulumi.set(self, "transport_wan_vpn_feature_id", value)
73
+
74
+ @property
75
+ @pulumi.getter(name="transportWanVpnInterfaceCellularFeatureId")
76
+ def transport_wan_vpn_interface_cellular_feature_id(self) -> pulumi.Input[str]:
77
+ """
78
+ Transport WAN VPN Interface Cellular Feature ID
79
+ """
80
+ return pulumi.get(self, "transport_wan_vpn_interface_cellular_feature_id")
81
+
82
+ @transport_wan_vpn_interface_cellular_feature_id.setter
83
+ def transport_wan_vpn_interface_cellular_feature_id(self, value: pulumi.Input[str]):
84
+ pulumi.set(self, "transport_wan_vpn_interface_cellular_feature_id", value)
85
+
86
+
87
+ @pulumi.input_type
88
+ class _TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureState:
89
+ def __init__(__self__, *,
90
+ feature_profile_id: Optional[pulumi.Input[str]] = None,
91
+ transport_tracker_group_feature_id: Optional[pulumi.Input[str]] = None,
92
+ transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
93
+ transport_wan_vpn_interface_cellular_feature_id: Optional[pulumi.Input[str]] = None):
94
+ """
95
+ Input properties used for looking up and filtering TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature resources.
96
+ :param pulumi.Input[str] feature_profile_id: Feature Profile ID
97
+ :param pulumi.Input[str] transport_tracker_group_feature_id: Transport Tracker Group Feature ID
98
+ :param pulumi.Input[str] transport_wan_vpn_feature_id: Transport WAN VPN Feature ID
99
+ :param pulumi.Input[str] transport_wan_vpn_interface_cellular_feature_id: Transport WAN VPN Interface Cellular Feature ID
100
+ """
101
+ if feature_profile_id is not None:
102
+ pulumi.set(__self__, "feature_profile_id", feature_profile_id)
103
+ if transport_tracker_group_feature_id is not None:
104
+ pulumi.set(__self__, "transport_tracker_group_feature_id", transport_tracker_group_feature_id)
105
+ if transport_wan_vpn_feature_id is not None:
106
+ pulumi.set(__self__, "transport_wan_vpn_feature_id", transport_wan_vpn_feature_id)
107
+ if transport_wan_vpn_interface_cellular_feature_id is not None:
108
+ pulumi.set(__self__, "transport_wan_vpn_interface_cellular_feature_id", transport_wan_vpn_interface_cellular_feature_id)
109
+
110
+ @property
111
+ @pulumi.getter(name="featureProfileId")
112
+ def feature_profile_id(self) -> Optional[pulumi.Input[str]]:
113
+ """
114
+ Feature Profile ID
115
+ """
116
+ return pulumi.get(self, "feature_profile_id")
117
+
118
+ @feature_profile_id.setter
119
+ def feature_profile_id(self, value: Optional[pulumi.Input[str]]):
120
+ pulumi.set(self, "feature_profile_id", value)
121
+
122
+ @property
123
+ @pulumi.getter(name="transportTrackerGroupFeatureId")
124
+ def transport_tracker_group_feature_id(self) -> Optional[pulumi.Input[str]]:
125
+ """
126
+ Transport Tracker Group Feature ID
127
+ """
128
+ return pulumi.get(self, "transport_tracker_group_feature_id")
129
+
130
+ @transport_tracker_group_feature_id.setter
131
+ def transport_tracker_group_feature_id(self, value: Optional[pulumi.Input[str]]):
132
+ pulumi.set(self, "transport_tracker_group_feature_id", value)
133
+
134
+ @property
135
+ @pulumi.getter(name="transportWanVpnFeatureId")
136
+ def transport_wan_vpn_feature_id(self) -> Optional[pulumi.Input[str]]:
137
+ """
138
+ Transport WAN VPN Feature ID
139
+ """
140
+ return pulumi.get(self, "transport_wan_vpn_feature_id")
141
+
142
+ @transport_wan_vpn_feature_id.setter
143
+ def transport_wan_vpn_feature_id(self, value: Optional[pulumi.Input[str]]):
144
+ pulumi.set(self, "transport_wan_vpn_feature_id", value)
145
+
146
+ @property
147
+ @pulumi.getter(name="transportWanVpnInterfaceCellularFeatureId")
148
+ def transport_wan_vpn_interface_cellular_feature_id(self) -> Optional[pulumi.Input[str]]:
149
+ """
150
+ Transport WAN VPN Interface Cellular Feature ID
151
+ """
152
+ return pulumi.get(self, "transport_wan_vpn_interface_cellular_feature_id")
153
+
154
+ @transport_wan_vpn_interface_cellular_feature_id.setter
155
+ def transport_wan_vpn_interface_cellular_feature_id(self, value: Optional[pulumi.Input[str]]):
156
+ pulumi.set(self, "transport_wan_vpn_interface_cellular_feature_id", value)
157
+
158
+
159
+ class TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature(pulumi.CustomResource):
160
+ @overload
161
+ def __init__(__self__,
162
+ resource_name: str,
163
+ opts: Optional[pulumi.ResourceOptions] = None,
164
+ feature_profile_id: Optional[pulumi.Input[str]] = None,
165
+ transport_tracker_group_feature_id: Optional[pulumi.Input[str]] = None,
166
+ transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
167
+ transport_wan_vpn_interface_cellular_feature_id: Optional[pulumi.Input[str]] = None,
168
+ __props__=None):
169
+ """
170
+ This resource can manage a Transport WAN VPN Interface Cellular Feature Associate Tracker Group Feature .
171
+ - Minimum SD-WAN Manager version: `20.12.0`
172
+
173
+ ## Example Usage
174
+
175
+ ```python
176
+ import pulumi
177
+ import pulumi_sdwan as sdwan
178
+
179
+ example = sdwan.TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature("example",
180
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
181
+ transport_wan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
182
+ transport_wan_vpn_interface_cellular_feature_id="140331f6-5418-4755-a059-13c77eb96037",
183
+ transport_tracker_group_feature_id="140331f6-5418-4755-a059-13c77eb96037")
184
+ ```
185
+
186
+ ## Import
187
+
188
+ ```sh
189
+ $ pulumi import sdwan:index/transportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature:TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
190
+ ```
191
+
192
+ :param str resource_name: The name of the resource.
193
+ :param pulumi.ResourceOptions opts: Options for the resource.
194
+ :param pulumi.Input[str] feature_profile_id: Feature Profile ID
195
+ :param pulumi.Input[str] transport_tracker_group_feature_id: Transport Tracker Group Feature ID
196
+ :param pulumi.Input[str] transport_wan_vpn_feature_id: Transport WAN VPN Feature ID
197
+ :param pulumi.Input[str] transport_wan_vpn_interface_cellular_feature_id: Transport WAN VPN Interface Cellular Feature ID
198
+ """
199
+ ...
200
+ @overload
201
+ def __init__(__self__,
202
+ resource_name: str,
203
+ args: TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureArgs,
204
+ opts: Optional[pulumi.ResourceOptions] = None):
205
+ """
206
+ This resource can manage a Transport WAN VPN Interface Cellular Feature Associate Tracker Group Feature .
207
+ - Minimum SD-WAN Manager version: `20.12.0`
208
+
209
+ ## Example Usage
210
+
211
+ ```python
212
+ import pulumi
213
+ import pulumi_sdwan as sdwan
214
+
215
+ example = sdwan.TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature("example",
216
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
217
+ transport_wan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
218
+ transport_wan_vpn_interface_cellular_feature_id="140331f6-5418-4755-a059-13c77eb96037",
219
+ transport_tracker_group_feature_id="140331f6-5418-4755-a059-13c77eb96037")
220
+ ```
221
+
222
+ ## Import
223
+
224
+ ```sh
225
+ $ pulumi import sdwan:index/transportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature:TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
226
+ ```
227
+
228
+ :param str resource_name: The name of the resource.
229
+ :param TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureArgs args: The arguments to use to populate this resource's properties.
230
+ :param pulumi.ResourceOptions opts: Options for the resource.
231
+ """
232
+ ...
233
+ def __init__(__self__, resource_name: str, *args, **kwargs):
234
+ resource_args, opts = _utilities.get_resource_args_opts(TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureArgs, pulumi.ResourceOptions, *args, **kwargs)
235
+ if resource_args is not None:
236
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
237
+ else:
238
+ __self__._internal_init(resource_name, *args, **kwargs)
239
+
240
+ def _internal_init(__self__,
241
+ resource_name: str,
242
+ opts: Optional[pulumi.ResourceOptions] = None,
243
+ feature_profile_id: Optional[pulumi.Input[str]] = None,
244
+ transport_tracker_group_feature_id: Optional[pulumi.Input[str]] = None,
245
+ transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
246
+ transport_wan_vpn_interface_cellular_feature_id: Optional[pulumi.Input[str]] = None,
247
+ __props__=None):
248
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
249
+ if not isinstance(opts, pulumi.ResourceOptions):
250
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
251
+ if opts.id is None:
252
+ if __props__ is not None:
253
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
254
+ __props__ = TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureArgs.__new__(TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureArgs)
255
+
256
+ if feature_profile_id is None and not opts.urn:
257
+ raise TypeError("Missing required property 'feature_profile_id'")
258
+ __props__.__dict__["feature_profile_id"] = feature_profile_id
259
+ if transport_tracker_group_feature_id is None and not opts.urn:
260
+ raise TypeError("Missing required property 'transport_tracker_group_feature_id'")
261
+ __props__.__dict__["transport_tracker_group_feature_id"] = transport_tracker_group_feature_id
262
+ if transport_wan_vpn_feature_id is None and not opts.urn:
263
+ raise TypeError("Missing required property 'transport_wan_vpn_feature_id'")
264
+ __props__.__dict__["transport_wan_vpn_feature_id"] = transport_wan_vpn_feature_id
265
+ if transport_wan_vpn_interface_cellular_feature_id is None and not opts.urn:
266
+ raise TypeError("Missing required property 'transport_wan_vpn_interface_cellular_feature_id'")
267
+ __props__.__dict__["transport_wan_vpn_interface_cellular_feature_id"] = transport_wan_vpn_interface_cellular_feature_id
268
+ super(TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature, __self__).__init__(
269
+ 'sdwan:index/transportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature:TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature',
270
+ resource_name,
271
+ __props__,
272
+ opts)
273
+
274
+ @staticmethod
275
+ def get(resource_name: str,
276
+ id: pulumi.Input[str],
277
+ opts: Optional[pulumi.ResourceOptions] = None,
278
+ feature_profile_id: Optional[pulumi.Input[str]] = None,
279
+ transport_tracker_group_feature_id: Optional[pulumi.Input[str]] = None,
280
+ transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
281
+ transport_wan_vpn_interface_cellular_feature_id: Optional[pulumi.Input[str]] = None) -> 'TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature':
282
+ """
283
+ Get an existing TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature resource's state with the given name, id, and optional extra
284
+ properties used to qualify the lookup.
285
+
286
+ :param str resource_name: The unique name of the resulting resource.
287
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
288
+ :param pulumi.ResourceOptions opts: Options for the resource.
289
+ :param pulumi.Input[str] feature_profile_id: Feature Profile ID
290
+ :param pulumi.Input[str] transport_tracker_group_feature_id: Transport Tracker Group Feature ID
291
+ :param pulumi.Input[str] transport_wan_vpn_feature_id: Transport WAN VPN Feature ID
292
+ :param pulumi.Input[str] transport_wan_vpn_interface_cellular_feature_id: Transport WAN VPN Interface Cellular Feature ID
293
+ """
294
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
295
+
296
+ __props__ = _TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureState.__new__(_TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureState)
297
+
298
+ __props__.__dict__["feature_profile_id"] = feature_profile_id
299
+ __props__.__dict__["transport_tracker_group_feature_id"] = transport_tracker_group_feature_id
300
+ __props__.__dict__["transport_wan_vpn_feature_id"] = transport_wan_vpn_feature_id
301
+ __props__.__dict__["transport_wan_vpn_interface_cellular_feature_id"] = transport_wan_vpn_interface_cellular_feature_id
302
+ return TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature(resource_name, opts=opts, __props__=__props__)
303
+
304
+ @property
305
+ @pulumi.getter(name="featureProfileId")
306
+ def feature_profile_id(self) -> pulumi.Output[str]:
307
+ """
308
+ Feature Profile ID
309
+ """
310
+ return pulumi.get(self, "feature_profile_id")
311
+
312
+ @property
313
+ @pulumi.getter(name="transportTrackerGroupFeatureId")
314
+ def transport_tracker_group_feature_id(self) -> pulumi.Output[str]:
315
+ """
316
+ Transport Tracker Group Feature ID
317
+ """
318
+ return pulumi.get(self, "transport_tracker_group_feature_id")
319
+
320
+ @property
321
+ @pulumi.getter(name="transportWanVpnFeatureId")
322
+ def transport_wan_vpn_feature_id(self) -> pulumi.Output[str]:
323
+ """
324
+ Transport WAN VPN Feature ID
325
+ """
326
+ return pulumi.get(self, "transport_wan_vpn_feature_id")
327
+
328
+ @property
329
+ @pulumi.getter(name="transportWanVpnInterfaceCellularFeatureId")
330
+ def transport_wan_vpn_interface_cellular_feature_id(self) -> pulumi.Output[str]:
331
+ """
332
+ Transport WAN VPN Interface Cellular Feature ID
333
+ """
334
+ return pulumi.get(self, "transport_wan_vpn_interface_cellular_feature_id")
335
+