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__ = ['ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureArgs', 'ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature']
18
+
19
+ @pulumi.input_type
20
+ class ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureArgs:
21
+ def __init__(__self__, *,
22
+ feature_profile_id: pulumi.Input[str],
23
+ service_lan_vpn_feature_id: pulumi.Input[str],
24
+ service_lan_vpn_interface_ethernet_feature_id: pulumi.Input[str],
25
+ service_tracker_feature_id: pulumi.Input[str]):
26
+ """
27
+ The set of arguments for constructing a ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature resource.
28
+ :param pulumi.Input[str] feature_profile_id: Feature Profile ID
29
+ :param pulumi.Input[str] service_lan_vpn_feature_id: Service LAN VPN Feature ID
30
+ :param pulumi.Input[str] service_lan_vpn_interface_ethernet_feature_id: Service LAN VPN Interface Ethernet Feature ID
31
+ :param pulumi.Input[str] service_tracker_feature_id: Service Tracker Feature ID
32
+ """
33
+ pulumi.set(__self__, "feature_profile_id", feature_profile_id)
34
+ pulumi.set(__self__, "service_lan_vpn_feature_id", service_lan_vpn_feature_id)
35
+ pulumi.set(__self__, "service_lan_vpn_interface_ethernet_feature_id", service_lan_vpn_interface_ethernet_feature_id)
36
+ pulumi.set(__self__, "service_tracker_feature_id", service_tracker_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="serviceLanVpnFeatureId")
52
+ def service_lan_vpn_feature_id(self) -> pulumi.Input[str]:
53
+ """
54
+ Service LAN VPN Feature ID
55
+ """
56
+ return pulumi.get(self, "service_lan_vpn_feature_id")
57
+
58
+ @service_lan_vpn_feature_id.setter
59
+ def service_lan_vpn_feature_id(self, value: pulumi.Input[str]):
60
+ pulumi.set(self, "service_lan_vpn_feature_id", value)
61
+
62
+ @property
63
+ @pulumi.getter(name="serviceLanVpnInterfaceEthernetFeatureId")
64
+ def service_lan_vpn_interface_ethernet_feature_id(self) -> pulumi.Input[str]:
65
+ """
66
+ Service LAN VPN Interface Ethernet Feature ID
67
+ """
68
+ return pulumi.get(self, "service_lan_vpn_interface_ethernet_feature_id")
69
+
70
+ @service_lan_vpn_interface_ethernet_feature_id.setter
71
+ def service_lan_vpn_interface_ethernet_feature_id(self, value: pulumi.Input[str]):
72
+ pulumi.set(self, "service_lan_vpn_interface_ethernet_feature_id", value)
73
+
74
+ @property
75
+ @pulumi.getter(name="serviceTrackerFeatureId")
76
+ def service_tracker_feature_id(self) -> pulumi.Input[str]:
77
+ """
78
+ Service Tracker Feature ID
79
+ """
80
+ return pulumi.get(self, "service_tracker_feature_id")
81
+
82
+ @service_tracker_feature_id.setter
83
+ def service_tracker_feature_id(self, value: pulumi.Input[str]):
84
+ pulumi.set(self, "service_tracker_feature_id", value)
85
+
86
+
87
+ @pulumi.input_type
88
+ class _ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureState:
89
+ def __init__(__self__, *,
90
+ feature_profile_id: Optional[pulumi.Input[str]] = None,
91
+ service_lan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
92
+ service_lan_vpn_interface_ethernet_feature_id: Optional[pulumi.Input[str]] = None,
93
+ service_tracker_feature_id: Optional[pulumi.Input[str]] = None):
94
+ """
95
+ Input properties used for looking up and filtering ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature resources.
96
+ :param pulumi.Input[str] feature_profile_id: Feature Profile ID
97
+ :param pulumi.Input[str] service_lan_vpn_feature_id: Service LAN VPN Feature ID
98
+ :param pulumi.Input[str] service_lan_vpn_interface_ethernet_feature_id: Service LAN VPN Interface Ethernet Feature ID
99
+ :param pulumi.Input[str] service_tracker_feature_id: Service Tracker Feature ID
100
+ """
101
+ if feature_profile_id is not None:
102
+ pulumi.set(__self__, "feature_profile_id", feature_profile_id)
103
+ if service_lan_vpn_feature_id is not None:
104
+ pulumi.set(__self__, "service_lan_vpn_feature_id", service_lan_vpn_feature_id)
105
+ if service_lan_vpn_interface_ethernet_feature_id is not None:
106
+ pulumi.set(__self__, "service_lan_vpn_interface_ethernet_feature_id", service_lan_vpn_interface_ethernet_feature_id)
107
+ if service_tracker_feature_id is not None:
108
+ pulumi.set(__self__, "service_tracker_feature_id", service_tracker_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="serviceLanVpnFeatureId")
124
+ def service_lan_vpn_feature_id(self) -> Optional[pulumi.Input[str]]:
125
+ """
126
+ Service LAN VPN Feature ID
127
+ """
128
+ return pulumi.get(self, "service_lan_vpn_feature_id")
129
+
130
+ @service_lan_vpn_feature_id.setter
131
+ def service_lan_vpn_feature_id(self, value: Optional[pulumi.Input[str]]):
132
+ pulumi.set(self, "service_lan_vpn_feature_id", value)
133
+
134
+ @property
135
+ @pulumi.getter(name="serviceLanVpnInterfaceEthernetFeatureId")
136
+ def service_lan_vpn_interface_ethernet_feature_id(self) -> Optional[pulumi.Input[str]]:
137
+ """
138
+ Service LAN VPN Interface Ethernet Feature ID
139
+ """
140
+ return pulumi.get(self, "service_lan_vpn_interface_ethernet_feature_id")
141
+
142
+ @service_lan_vpn_interface_ethernet_feature_id.setter
143
+ def service_lan_vpn_interface_ethernet_feature_id(self, value: Optional[pulumi.Input[str]]):
144
+ pulumi.set(self, "service_lan_vpn_interface_ethernet_feature_id", value)
145
+
146
+ @property
147
+ @pulumi.getter(name="serviceTrackerFeatureId")
148
+ def service_tracker_feature_id(self) -> Optional[pulumi.Input[str]]:
149
+ """
150
+ Service Tracker Feature ID
151
+ """
152
+ return pulumi.get(self, "service_tracker_feature_id")
153
+
154
+ @service_tracker_feature_id.setter
155
+ def service_tracker_feature_id(self, value: Optional[pulumi.Input[str]]):
156
+ pulumi.set(self, "service_tracker_feature_id", value)
157
+
158
+
159
+ class ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature(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
+ service_lan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
166
+ service_lan_vpn_interface_ethernet_feature_id: Optional[pulumi.Input[str]] = None,
167
+ service_tracker_feature_id: Optional[pulumi.Input[str]] = None,
168
+ __props__=None):
169
+ """
170
+ This resource can manage a Service LAN VPN Interface Ethernet 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.ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature("example",
180
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
181
+ service_lan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
182
+ service_lan_vpn_interface_ethernet_feature_id="140331f6-5418-4755-a059-13c77eb96037",
183
+ service_tracker_feature_id="140331f6-5418-4755-a059-13c77eb96037")
184
+ ```
185
+
186
+ ## Import
187
+
188
+ ```sh
189
+ $ pulumi import sdwan:index/serviceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature:ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature 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] service_lan_vpn_feature_id: Service LAN VPN Feature ID
196
+ :param pulumi.Input[str] service_lan_vpn_interface_ethernet_feature_id: Service LAN VPN Interface Ethernet Feature ID
197
+ :param pulumi.Input[str] service_tracker_feature_id: Service Tracker Feature ID
198
+ """
199
+ ...
200
+ @overload
201
+ def __init__(__self__,
202
+ resource_name: str,
203
+ args: ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureArgs,
204
+ opts: Optional[pulumi.ResourceOptions] = None):
205
+ """
206
+ This resource can manage a Service LAN VPN Interface Ethernet 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.ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature("example",
216
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
217
+ service_lan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
218
+ service_lan_vpn_interface_ethernet_feature_id="140331f6-5418-4755-a059-13c77eb96037",
219
+ service_tracker_feature_id="140331f6-5418-4755-a059-13c77eb96037")
220
+ ```
221
+
222
+ ## Import
223
+
224
+ ```sh
225
+ $ pulumi import sdwan:index/serviceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature:ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
226
+ ```
227
+
228
+ :param str resource_name: The name of the resource.
229
+ :param ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureArgs 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(ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureArgs, 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
+ service_lan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
245
+ service_lan_vpn_interface_ethernet_feature_id: Optional[pulumi.Input[str]] = None,
246
+ service_tracker_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__ = ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureArgs.__new__(ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureArgs)
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 service_lan_vpn_feature_id is None and not opts.urn:
260
+ raise TypeError("Missing required property 'service_lan_vpn_feature_id'")
261
+ __props__.__dict__["service_lan_vpn_feature_id"] = service_lan_vpn_feature_id
262
+ if service_lan_vpn_interface_ethernet_feature_id is None and not opts.urn:
263
+ raise TypeError("Missing required property 'service_lan_vpn_interface_ethernet_feature_id'")
264
+ __props__.__dict__["service_lan_vpn_interface_ethernet_feature_id"] = service_lan_vpn_interface_ethernet_feature_id
265
+ if service_tracker_feature_id is None and not opts.urn:
266
+ raise TypeError("Missing required property 'service_tracker_feature_id'")
267
+ __props__.__dict__["service_tracker_feature_id"] = service_tracker_feature_id
268
+ super(ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature, __self__).__init__(
269
+ 'sdwan:index/serviceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature:ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature',
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
+ service_lan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
280
+ service_lan_vpn_interface_ethernet_feature_id: Optional[pulumi.Input[str]] = None,
281
+ service_tracker_feature_id: Optional[pulumi.Input[str]] = None) -> 'ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature':
282
+ """
283
+ Get an existing ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature 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] service_lan_vpn_feature_id: Service LAN VPN Feature ID
291
+ :param pulumi.Input[str] service_lan_vpn_interface_ethernet_feature_id: Service LAN VPN Interface Ethernet Feature ID
292
+ :param pulumi.Input[str] service_tracker_feature_id: Service Tracker Feature ID
293
+ """
294
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
295
+
296
+ __props__ = _ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureState.__new__(_ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureState)
297
+
298
+ __props__.__dict__["feature_profile_id"] = feature_profile_id
299
+ __props__.__dict__["service_lan_vpn_feature_id"] = service_lan_vpn_feature_id
300
+ __props__.__dict__["service_lan_vpn_interface_ethernet_feature_id"] = service_lan_vpn_interface_ethernet_feature_id
301
+ __props__.__dict__["service_tracker_feature_id"] = service_tracker_feature_id
302
+ return ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature(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="serviceLanVpnFeatureId")
314
+ def service_lan_vpn_feature_id(self) -> pulumi.Output[str]:
315
+ """
316
+ Service LAN VPN Feature ID
317
+ """
318
+ return pulumi.get(self, "service_lan_vpn_feature_id")
319
+
320
+ @property
321
+ @pulumi.getter(name="serviceLanVpnInterfaceEthernetFeatureId")
322
+ def service_lan_vpn_interface_ethernet_feature_id(self) -> pulumi.Output[str]:
323
+ """
324
+ Service LAN VPN Interface Ethernet Feature ID
325
+ """
326
+ return pulumi.get(self, "service_lan_vpn_interface_ethernet_feature_id")
327
+
328
+ @property
329
+ @pulumi.getter(name="serviceTrackerFeatureId")
330
+ def service_tracker_feature_id(self) -> pulumi.Output[str]:
331
+ """
332
+ Service Tracker Feature ID
333
+ """
334
+ return pulumi.get(self, "service_tracker_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__ = ['ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeatureArgs', 'ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature']
18
+
19
+ @pulumi.input_type
20
+ class ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeatureArgs:
21
+ def __init__(__self__, *,
22
+ feature_profile_id: pulumi.Input[str],
23
+ service_lan_vpn_feature_id: pulumi.Input[str],
24
+ service_lan_vpn_interface_ethernet_feature_id: pulumi.Input[str],
25
+ service_tracker_group_feature_id: pulumi.Input[str]):
26
+ """
27
+ The set of arguments for constructing a ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature resource.
28
+ :param pulumi.Input[str] feature_profile_id: Feature Profile ID
29
+ :param pulumi.Input[str] service_lan_vpn_feature_id: Service LAN VPN Feature ID
30
+ :param pulumi.Input[str] service_lan_vpn_interface_ethernet_feature_id: Service LAN VPN Interface Ethernet Feature ID
31
+ :param pulumi.Input[str] service_tracker_group_feature_id: Service Tracker Group Feature ID
32
+ """
33
+ pulumi.set(__self__, "feature_profile_id", feature_profile_id)
34
+ pulumi.set(__self__, "service_lan_vpn_feature_id", service_lan_vpn_feature_id)
35
+ pulumi.set(__self__, "service_lan_vpn_interface_ethernet_feature_id", service_lan_vpn_interface_ethernet_feature_id)
36
+ pulumi.set(__self__, "service_tracker_group_feature_id", service_tracker_group_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="serviceLanVpnFeatureId")
52
+ def service_lan_vpn_feature_id(self) -> pulumi.Input[str]:
53
+ """
54
+ Service LAN VPN Feature ID
55
+ """
56
+ return pulumi.get(self, "service_lan_vpn_feature_id")
57
+
58
+ @service_lan_vpn_feature_id.setter
59
+ def service_lan_vpn_feature_id(self, value: pulumi.Input[str]):
60
+ pulumi.set(self, "service_lan_vpn_feature_id", value)
61
+
62
+ @property
63
+ @pulumi.getter(name="serviceLanVpnInterfaceEthernetFeatureId")
64
+ def service_lan_vpn_interface_ethernet_feature_id(self) -> pulumi.Input[str]:
65
+ """
66
+ Service LAN VPN Interface Ethernet Feature ID
67
+ """
68
+ return pulumi.get(self, "service_lan_vpn_interface_ethernet_feature_id")
69
+
70
+ @service_lan_vpn_interface_ethernet_feature_id.setter
71
+ def service_lan_vpn_interface_ethernet_feature_id(self, value: pulumi.Input[str]):
72
+ pulumi.set(self, "service_lan_vpn_interface_ethernet_feature_id", value)
73
+
74
+ @property
75
+ @pulumi.getter(name="serviceTrackerGroupFeatureId")
76
+ def service_tracker_group_feature_id(self) -> pulumi.Input[str]:
77
+ """
78
+ Service Tracker Group Feature ID
79
+ """
80
+ return pulumi.get(self, "service_tracker_group_feature_id")
81
+
82
+ @service_tracker_group_feature_id.setter
83
+ def service_tracker_group_feature_id(self, value: pulumi.Input[str]):
84
+ pulumi.set(self, "service_tracker_group_feature_id", value)
85
+
86
+
87
+ @pulumi.input_type
88
+ class _ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeatureState:
89
+ def __init__(__self__, *,
90
+ feature_profile_id: Optional[pulumi.Input[str]] = None,
91
+ service_lan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
92
+ service_lan_vpn_interface_ethernet_feature_id: Optional[pulumi.Input[str]] = None,
93
+ service_tracker_group_feature_id: Optional[pulumi.Input[str]] = None):
94
+ """
95
+ Input properties used for looking up and filtering ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature resources.
96
+ :param pulumi.Input[str] feature_profile_id: Feature Profile ID
97
+ :param pulumi.Input[str] service_lan_vpn_feature_id: Service LAN VPN Feature ID
98
+ :param pulumi.Input[str] service_lan_vpn_interface_ethernet_feature_id: Service LAN VPN Interface Ethernet Feature ID
99
+ :param pulumi.Input[str] service_tracker_group_feature_id: Service Tracker Group Feature ID
100
+ """
101
+ if feature_profile_id is not None:
102
+ pulumi.set(__self__, "feature_profile_id", feature_profile_id)
103
+ if service_lan_vpn_feature_id is not None:
104
+ pulumi.set(__self__, "service_lan_vpn_feature_id", service_lan_vpn_feature_id)
105
+ if service_lan_vpn_interface_ethernet_feature_id is not None:
106
+ pulumi.set(__self__, "service_lan_vpn_interface_ethernet_feature_id", service_lan_vpn_interface_ethernet_feature_id)
107
+ if service_tracker_group_feature_id is not None:
108
+ pulumi.set(__self__, "service_tracker_group_feature_id", service_tracker_group_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="serviceLanVpnFeatureId")
124
+ def service_lan_vpn_feature_id(self) -> Optional[pulumi.Input[str]]:
125
+ """
126
+ Service LAN VPN Feature ID
127
+ """
128
+ return pulumi.get(self, "service_lan_vpn_feature_id")
129
+
130
+ @service_lan_vpn_feature_id.setter
131
+ def service_lan_vpn_feature_id(self, value: Optional[pulumi.Input[str]]):
132
+ pulumi.set(self, "service_lan_vpn_feature_id", value)
133
+
134
+ @property
135
+ @pulumi.getter(name="serviceLanVpnInterfaceEthernetFeatureId")
136
+ def service_lan_vpn_interface_ethernet_feature_id(self) -> Optional[pulumi.Input[str]]:
137
+ """
138
+ Service LAN VPN Interface Ethernet Feature ID
139
+ """
140
+ return pulumi.get(self, "service_lan_vpn_interface_ethernet_feature_id")
141
+
142
+ @service_lan_vpn_interface_ethernet_feature_id.setter
143
+ def service_lan_vpn_interface_ethernet_feature_id(self, value: Optional[pulumi.Input[str]]):
144
+ pulumi.set(self, "service_lan_vpn_interface_ethernet_feature_id", value)
145
+
146
+ @property
147
+ @pulumi.getter(name="serviceTrackerGroupFeatureId")
148
+ def service_tracker_group_feature_id(self) -> Optional[pulumi.Input[str]]:
149
+ """
150
+ Service Tracker Group Feature ID
151
+ """
152
+ return pulumi.get(self, "service_tracker_group_feature_id")
153
+
154
+ @service_tracker_group_feature_id.setter
155
+ def service_tracker_group_feature_id(self, value: Optional[pulumi.Input[str]]):
156
+ pulumi.set(self, "service_tracker_group_feature_id", value)
157
+
158
+
159
+ class ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature(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
+ service_lan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
166
+ service_lan_vpn_interface_ethernet_feature_id: Optional[pulumi.Input[str]] = None,
167
+ service_tracker_group_feature_id: Optional[pulumi.Input[str]] = None,
168
+ __props__=None):
169
+ """
170
+ This resource can manage a Service LAN VPN Interface Ethernet 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.ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature("example",
180
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
181
+ service_lan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
182
+ service_lan_vpn_interface_ethernet_feature_id="140331f6-5418-4755-a059-13c77eb96037",
183
+ service_tracker_group_feature_id="140331f6-5418-4755-a059-13c77eb96037")
184
+ ```
185
+
186
+ ## Import
187
+
188
+ ```sh
189
+ $ pulumi import sdwan:index/serviceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature:ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature 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] service_lan_vpn_feature_id: Service LAN VPN Feature ID
196
+ :param pulumi.Input[str] service_lan_vpn_interface_ethernet_feature_id: Service LAN VPN Interface Ethernet Feature ID
197
+ :param pulumi.Input[str] service_tracker_group_feature_id: Service Tracker Group Feature ID
198
+ """
199
+ ...
200
+ @overload
201
+ def __init__(__self__,
202
+ resource_name: str,
203
+ args: ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeatureArgs,
204
+ opts: Optional[pulumi.ResourceOptions] = None):
205
+ """
206
+ This resource can manage a Service LAN VPN Interface Ethernet 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.ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature("example",
216
+ feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
217
+ service_lan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
218
+ service_lan_vpn_interface_ethernet_feature_id="140331f6-5418-4755-a059-13c77eb96037",
219
+ service_tracker_group_feature_id="140331f6-5418-4755-a059-13c77eb96037")
220
+ ```
221
+
222
+ ## Import
223
+
224
+ ```sh
225
+ $ pulumi import sdwan:index/serviceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature:ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
226
+ ```
227
+
228
+ :param str resource_name: The name of the resource.
229
+ :param ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeatureArgs 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(ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeatureArgs, 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
+ service_lan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
245
+ service_lan_vpn_interface_ethernet_feature_id: Optional[pulumi.Input[str]] = None,
246
+ service_tracker_group_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__ = ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeatureArgs.__new__(ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeatureArgs)
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 service_lan_vpn_feature_id is None and not opts.urn:
260
+ raise TypeError("Missing required property 'service_lan_vpn_feature_id'")
261
+ __props__.__dict__["service_lan_vpn_feature_id"] = service_lan_vpn_feature_id
262
+ if service_lan_vpn_interface_ethernet_feature_id is None and not opts.urn:
263
+ raise TypeError("Missing required property 'service_lan_vpn_interface_ethernet_feature_id'")
264
+ __props__.__dict__["service_lan_vpn_interface_ethernet_feature_id"] = service_lan_vpn_interface_ethernet_feature_id
265
+ if service_tracker_group_feature_id is None and not opts.urn:
266
+ raise TypeError("Missing required property 'service_tracker_group_feature_id'")
267
+ __props__.__dict__["service_tracker_group_feature_id"] = service_tracker_group_feature_id
268
+ super(ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature, __self__).__init__(
269
+ 'sdwan:index/serviceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature:ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature',
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
+ service_lan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
280
+ service_lan_vpn_interface_ethernet_feature_id: Optional[pulumi.Input[str]] = None,
281
+ service_tracker_group_feature_id: Optional[pulumi.Input[str]] = None) -> 'ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature':
282
+ """
283
+ Get an existing ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature 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] service_lan_vpn_feature_id: Service LAN VPN Feature ID
291
+ :param pulumi.Input[str] service_lan_vpn_interface_ethernet_feature_id: Service LAN VPN Interface Ethernet Feature ID
292
+ :param pulumi.Input[str] service_tracker_group_feature_id: Service Tracker Group Feature ID
293
+ """
294
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
295
+
296
+ __props__ = _ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeatureState.__new__(_ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeatureState)
297
+
298
+ __props__.__dict__["feature_profile_id"] = feature_profile_id
299
+ __props__.__dict__["service_lan_vpn_feature_id"] = service_lan_vpn_feature_id
300
+ __props__.__dict__["service_lan_vpn_interface_ethernet_feature_id"] = service_lan_vpn_interface_ethernet_feature_id
301
+ __props__.__dict__["service_tracker_group_feature_id"] = service_tracker_group_feature_id
302
+ return ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature(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="serviceLanVpnFeatureId")
314
+ def service_lan_vpn_feature_id(self) -> pulumi.Output[str]:
315
+ """
316
+ Service LAN VPN Feature ID
317
+ """
318
+ return pulumi.get(self, "service_lan_vpn_feature_id")
319
+
320
+ @property
321
+ @pulumi.getter(name="serviceLanVpnInterfaceEthernetFeatureId")
322
+ def service_lan_vpn_interface_ethernet_feature_id(self) -> pulumi.Output[str]:
323
+ """
324
+ Service LAN VPN Interface Ethernet Feature ID
325
+ """
326
+ return pulumi.get(self, "service_lan_vpn_interface_ethernet_feature_id")
327
+
328
+ @property
329
+ @pulumi.getter(name="serviceTrackerGroupFeatureId")
330
+ def service_tracker_group_feature_id(self) -> pulumi.Output[str]:
331
+ """
332
+ Service Tracker Group Feature ID
333
+ """
334
+ return pulumi.get(self, "service_tracker_group_feature_id")
335
+