pulumi-sdwan 0.3.0a1742970533__py3-none-any.whl → 0.3.0a1743132889__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 (69) hide show
  1. pulumi_sdwan/__init__.py +20 -0
  2. pulumi_sdwan/_inputs.py +890 -649
  3. pulumi_sdwan/cli_config_feature.py +6 -2
  4. pulumi_sdwan/configuration_group.py +35 -39
  5. pulumi_sdwan/dns_security_policy.py +701 -0
  6. pulumi_sdwan/get_configuration_group.py +11 -11
  7. pulumi_sdwan/get_dns_security_policy.py +272 -0
  8. pulumi_sdwan/get_intrusion_prevention_policy_definition.py +27 -1
  9. pulumi_sdwan/get_security_policy.py +99 -1
  10. pulumi_sdwan/get_service_lan_vpn_feature_associate_multicast_feature.py +18 -4
  11. pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_bgp_feature.py +18 -4
  12. pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_eigrp_feature.py +18 -4
  13. pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_ospf_feature.py +18 -4
  14. pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_ospfv3_ipv4_feature.py +18 -4
  15. pulumi_sdwan/get_service_lan_vpn_feature_associate_routing_ospfv3_ipv6_feature.py +18 -4
  16. pulumi_sdwan/get_service_lan_vpn_interface_ethernet_feature_associate_dhcp_server_feature.py +18 -4
  17. pulumi_sdwan/get_service_lan_vpn_interface_ethernet_feature_associate_tracker_feature.py +18 -4
  18. pulumi_sdwan/get_service_lan_vpn_interface_ethernet_feature_associate_tracker_group_feature.py +18 -4
  19. pulumi_sdwan/get_service_lan_vpn_interface_ipsec_feature_associate_dhcp_server_feature.py +18 -4
  20. pulumi_sdwan/get_service_lan_vpn_interface_svi_feature_associate_dhcp_server_feature.py +18 -4
  21. pulumi_sdwan/get_tag.py +140 -0
  22. pulumi_sdwan/get_transport_wan_vpn_feature_associate_routing_bgp_feature.py +18 -4
  23. pulumi_sdwan/get_transport_wan_vpn_feature_associate_routing_ospf_feature.py +18 -4
  24. pulumi_sdwan/get_transport_wan_vpn_feature_associate_routing_ospfv3_ipv4_feature.py +18 -4
  25. pulumi_sdwan/get_transport_wan_vpn_feature_associate_routing_ospfv3_ipv6_feature.py +18 -4
  26. pulumi_sdwan/get_transport_wan_vpn_interface_cellular_feature_associate_tracker_feature.py +18 -4
  27. pulumi_sdwan/get_transport_wan_vpn_interface_cellular_feature_associate_tracker_group_feature.py +18 -4
  28. pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_feature.py +18 -4
  29. pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_group_feature.py +18 -4
  30. pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature_associate_tracker_feature.py +18 -4
  31. pulumi_sdwan/get_transport_wan_vpn_interface_ethernet_feature_associate_tracker_group_feature.py +18 -4
  32. pulumi_sdwan/get_transport_wan_vpn_interface_gre_feature_associate_tracker_feature.py +18 -4
  33. pulumi_sdwan/get_transport_wan_vpn_interface_ipsec_feature_associate_tracker_feature.py +18 -4
  34. pulumi_sdwan/get_url_filtering_policy_definition.py +13 -1
  35. pulumi_sdwan/intrusion_prevention_policy_definition.py +83 -32
  36. pulumi_sdwan/outputs.py +806 -449
  37. pulumi_sdwan/pulumi-plugin.json +1 -1
  38. pulumi_sdwan/security_policy.py +329 -0
  39. pulumi_sdwan/service_lan_vpn_feature_associate_multicast_feature.py +36 -4
  40. pulumi_sdwan/service_lan_vpn_feature_associate_routing_bgp_feature.py +36 -4
  41. pulumi_sdwan/service_lan_vpn_feature_associate_routing_eigrp_feature.py +36 -4
  42. pulumi_sdwan/service_lan_vpn_feature_associate_routing_ospf_feature.py +36 -4
  43. pulumi_sdwan/service_lan_vpn_feature_associate_routing_ospfv3_ipv4_feature.py +36 -4
  44. pulumi_sdwan/service_lan_vpn_feature_associate_routing_ospfv3_ipv6_feature.py +36 -4
  45. pulumi_sdwan/service_lan_vpn_interface_ethernet_feature_associate_dhcp_server_feature.py +36 -4
  46. pulumi_sdwan/service_lan_vpn_interface_ethernet_feature_associate_tracker_feature.py +36 -4
  47. pulumi_sdwan/service_lan_vpn_interface_ethernet_feature_associate_tracker_group_feature.py +36 -4
  48. pulumi_sdwan/service_lan_vpn_interface_ipsec_feature_associate_dhcp_server_feature.py +36 -4
  49. pulumi_sdwan/service_lan_vpn_interface_svi_feature_associate_dhcp_server_feature.py +36 -4
  50. pulumi_sdwan/tag.py +283 -0
  51. pulumi_sdwan/transport_cellular_profile_feature.py +29 -31
  52. pulumi_sdwan/transport_wan_vpn_feature_associate_routing_bgp_feature.py +36 -4
  53. pulumi_sdwan/transport_wan_vpn_feature_associate_routing_ospf_feature.py +36 -4
  54. pulumi_sdwan/transport_wan_vpn_feature_associate_routing_ospfv3_ipv4_feature.py +36 -4
  55. pulumi_sdwan/transport_wan_vpn_feature_associate_routing_ospfv3_ipv6_feature.py +36 -4
  56. pulumi_sdwan/transport_wan_vpn_interface_cellular_feature_associate_tracker_feature.py +36 -4
  57. pulumi_sdwan/transport_wan_vpn_interface_cellular_feature_associate_tracker_group_feature.py +36 -4
  58. pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_feature.py +36 -4
  59. pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature_associate_ipv6_tracker_group_feature.py +36 -4
  60. pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature_associate_tracker_feature.py +36 -4
  61. pulumi_sdwan/transport_wan_vpn_interface_ethernet_feature_associate_tracker_group_feature.py +36 -4
  62. pulumi_sdwan/transport_wan_vpn_interface_gre_feature_associate_tracker_feature.py +36 -4
  63. pulumi_sdwan/transport_wan_vpn_interface_ipsec_feature_associate_tracker_feature.py +36 -4
  64. pulumi_sdwan/url_filtering_policy_definition.py +36 -38
  65. pulumi_sdwan/zone_based_firewall_policy_definition.py +26 -14
  66. {pulumi_sdwan-0.3.0a1742970533.dist-info → pulumi_sdwan-0.3.0a1743132889.dist-info}/METADATA +1 -1
  67. {pulumi_sdwan-0.3.0a1742970533.dist-info → pulumi_sdwan-0.3.0a1743132889.dist-info}/RECORD +69 -65
  68. {pulumi_sdwan-0.3.0a1742970533.dist-info → pulumi_sdwan-0.3.0a1743132889.dist-info}/WHEEL +0 -0
  69. {pulumi_sdwan-0.3.0a1742970533.dist-info → pulumi_sdwan-0.3.0a1743132889.dist-info}/top_level.txt +0 -0
@@ -74,12 +74,14 @@ class _TransportWanVpnFeatureAssociateRoutingOspfFeatureState:
74
74
  def __init__(__self__, *,
75
75
  feature_profile_id: Optional[pulumi.Input[str]] = None,
76
76
  transport_routing_ospf_feature_id: Optional[pulumi.Input[str]] = None,
77
- transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None):
77
+ transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
78
+ version: Optional[pulumi.Input[int]] = None):
78
79
  """
79
80
  Input properties used for looking up and filtering TransportWanVpnFeatureAssociateRoutingOspfFeature resources.
80
81
  :param pulumi.Input[str] feature_profile_id: Feature Profile ID
81
82
  :param pulumi.Input[str] transport_routing_ospf_feature_id: Transport Routing OSPF Feature ID
82
83
  :param pulumi.Input[str] transport_wan_vpn_feature_id: Transport WAN VPN Feature ID
84
+ :param pulumi.Input[int] version: The version of the object
83
85
  """
84
86
  if feature_profile_id is not None:
85
87
  pulumi.set(__self__, "feature_profile_id", feature_profile_id)
@@ -87,6 +89,8 @@ class _TransportWanVpnFeatureAssociateRoutingOspfFeatureState:
87
89
  pulumi.set(__self__, "transport_routing_ospf_feature_id", transport_routing_ospf_feature_id)
88
90
  if transport_wan_vpn_feature_id is not None:
89
91
  pulumi.set(__self__, "transport_wan_vpn_feature_id", transport_wan_vpn_feature_id)
92
+ if version is not None:
93
+ pulumi.set(__self__, "version", version)
90
94
 
91
95
  @property
92
96
  @pulumi.getter(name="featureProfileId")
@@ -124,6 +128,18 @@ class _TransportWanVpnFeatureAssociateRoutingOspfFeatureState:
124
128
  def transport_wan_vpn_feature_id(self, value: Optional[pulumi.Input[str]]):
125
129
  pulumi.set(self, "transport_wan_vpn_feature_id", value)
126
130
 
131
+ @property
132
+ @pulumi.getter
133
+ def version(self) -> Optional[pulumi.Input[int]]:
134
+ """
135
+ The version of the object
136
+ """
137
+ return pulumi.get(self, "version")
138
+
139
+ @version.setter
140
+ def version(self, value: Optional[pulumi.Input[int]]):
141
+ pulumi.set(self, "version", value)
142
+
127
143
 
128
144
  class TransportWanVpnFeatureAssociateRoutingOspfFeature(pulumi.CustomResource):
129
145
  @overload
@@ -152,8 +168,10 @@ class TransportWanVpnFeatureAssociateRoutingOspfFeature(pulumi.CustomResource):
152
168
 
153
169
  ## Import
154
170
 
171
+ Expected import identifier with the format: "transport_wan_vpn_feature_associate_routing_ospf_feature_id,feature_profile_id,transport_wan_vpn_feature_id"
172
+
155
173
  ```sh
156
- $ pulumi import sdwan:index/transportWanVpnFeatureAssociateRoutingOspfFeature:TransportWanVpnFeatureAssociateRoutingOspfFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
174
+ $ pulumi import sdwan:index/transportWanVpnFeatureAssociateRoutingOspfFeature:TransportWanVpnFeatureAssociateRoutingOspfFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac,140331f6-5418-4755-a059-13c77eb96037"
157
175
  ```
158
176
 
159
177
  :param str resource_name: The name of the resource.
@@ -186,8 +204,10 @@ class TransportWanVpnFeatureAssociateRoutingOspfFeature(pulumi.CustomResource):
186
204
 
187
205
  ## Import
188
206
 
207
+ Expected import identifier with the format: "transport_wan_vpn_feature_associate_routing_ospf_feature_id,feature_profile_id,transport_wan_vpn_feature_id"
208
+
189
209
  ```sh
190
- $ pulumi import sdwan:index/transportWanVpnFeatureAssociateRoutingOspfFeature:TransportWanVpnFeatureAssociateRoutingOspfFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
210
+ $ pulumi import sdwan:index/transportWanVpnFeatureAssociateRoutingOspfFeature:TransportWanVpnFeatureAssociateRoutingOspfFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac,140331f6-5418-4755-a059-13c77eb96037"
191
211
  ```
192
212
 
193
213
  :param str resource_name: The name of the resource.
@@ -226,6 +246,7 @@ class TransportWanVpnFeatureAssociateRoutingOspfFeature(pulumi.CustomResource):
226
246
  if transport_wan_vpn_feature_id is None and not opts.urn:
227
247
  raise TypeError("Missing required property 'transport_wan_vpn_feature_id'")
228
248
  __props__.__dict__["transport_wan_vpn_feature_id"] = transport_wan_vpn_feature_id
249
+ __props__.__dict__["version"] = None
229
250
  super(TransportWanVpnFeatureAssociateRoutingOspfFeature, __self__).__init__(
230
251
  'sdwan:index/transportWanVpnFeatureAssociateRoutingOspfFeature:TransportWanVpnFeatureAssociateRoutingOspfFeature',
231
252
  resource_name,
@@ -238,7 +259,8 @@ class TransportWanVpnFeatureAssociateRoutingOspfFeature(pulumi.CustomResource):
238
259
  opts: Optional[pulumi.ResourceOptions] = None,
239
260
  feature_profile_id: Optional[pulumi.Input[str]] = None,
240
261
  transport_routing_ospf_feature_id: Optional[pulumi.Input[str]] = None,
241
- transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None) -> 'TransportWanVpnFeatureAssociateRoutingOspfFeature':
262
+ transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
263
+ version: Optional[pulumi.Input[int]] = None) -> 'TransportWanVpnFeatureAssociateRoutingOspfFeature':
242
264
  """
243
265
  Get an existing TransportWanVpnFeatureAssociateRoutingOspfFeature resource's state with the given name, id, and optional extra
244
266
  properties used to qualify the lookup.
@@ -249,6 +271,7 @@ class TransportWanVpnFeatureAssociateRoutingOspfFeature(pulumi.CustomResource):
249
271
  :param pulumi.Input[str] feature_profile_id: Feature Profile ID
250
272
  :param pulumi.Input[str] transport_routing_ospf_feature_id: Transport Routing OSPF Feature ID
251
273
  :param pulumi.Input[str] transport_wan_vpn_feature_id: Transport WAN VPN Feature ID
274
+ :param pulumi.Input[int] version: The version of the object
252
275
  """
253
276
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
254
277
 
@@ -257,6 +280,7 @@ class TransportWanVpnFeatureAssociateRoutingOspfFeature(pulumi.CustomResource):
257
280
  __props__.__dict__["feature_profile_id"] = feature_profile_id
258
281
  __props__.__dict__["transport_routing_ospf_feature_id"] = transport_routing_ospf_feature_id
259
282
  __props__.__dict__["transport_wan_vpn_feature_id"] = transport_wan_vpn_feature_id
283
+ __props__.__dict__["version"] = version
260
284
  return TransportWanVpnFeatureAssociateRoutingOspfFeature(resource_name, opts=opts, __props__=__props__)
261
285
 
262
286
  @property
@@ -283,3 +307,11 @@ class TransportWanVpnFeatureAssociateRoutingOspfFeature(pulumi.CustomResource):
283
307
  """
284
308
  return pulumi.get(self, "transport_wan_vpn_feature_id")
285
309
 
310
+ @property
311
+ @pulumi.getter
312
+ def version(self) -> pulumi.Output[int]:
313
+ """
314
+ The version of the object
315
+ """
316
+ return pulumi.get(self, "version")
317
+
@@ -74,12 +74,14 @@ class _TransportWanVpnFeatureAssociateRoutingOspfv3Ipv4FeatureState:
74
74
  def __init__(__self__, *,
75
75
  feature_profile_id: Optional[pulumi.Input[str]] = None,
76
76
  transport_routing_ospfv3_ipv4_feature_id: Optional[pulumi.Input[str]] = None,
77
- transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None):
77
+ transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
78
+ version: Optional[pulumi.Input[int]] = None):
78
79
  """
79
80
  Input properties used for looking up and filtering TransportWanVpnFeatureAssociateRoutingOspfv3Ipv4Feature resources.
80
81
  :param pulumi.Input[str] feature_profile_id: Feature Profile ID
81
82
  :param pulumi.Input[str] transport_routing_ospfv3_ipv4_feature_id: Transport Routing OSPFv4 IPv4 Feature ID
82
83
  :param pulumi.Input[str] transport_wan_vpn_feature_id: Transport WAN VPN Feature ID
84
+ :param pulumi.Input[int] version: The version of the object
83
85
  """
84
86
  if feature_profile_id is not None:
85
87
  pulumi.set(__self__, "feature_profile_id", feature_profile_id)
@@ -87,6 +89,8 @@ class _TransportWanVpnFeatureAssociateRoutingOspfv3Ipv4FeatureState:
87
89
  pulumi.set(__self__, "transport_routing_ospfv3_ipv4_feature_id", transport_routing_ospfv3_ipv4_feature_id)
88
90
  if transport_wan_vpn_feature_id is not None:
89
91
  pulumi.set(__self__, "transport_wan_vpn_feature_id", transport_wan_vpn_feature_id)
92
+ if version is not None:
93
+ pulumi.set(__self__, "version", version)
90
94
 
91
95
  @property
92
96
  @pulumi.getter(name="featureProfileId")
@@ -124,6 +128,18 @@ class _TransportWanVpnFeatureAssociateRoutingOspfv3Ipv4FeatureState:
124
128
  def transport_wan_vpn_feature_id(self, value: Optional[pulumi.Input[str]]):
125
129
  pulumi.set(self, "transport_wan_vpn_feature_id", value)
126
130
 
131
+ @property
132
+ @pulumi.getter
133
+ def version(self) -> Optional[pulumi.Input[int]]:
134
+ """
135
+ The version of the object
136
+ """
137
+ return pulumi.get(self, "version")
138
+
139
+ @version.setter
140
+ def version(self, value: Optional[pulumi.Input[int]]):
141
+ pulumi.set(self, "version", value)
142
+
127
143
 
128
144
  class TransportWanVpnFeatureAssociateRoutingOspfv3Ipv4Feature(pulumi.CustomResource):
129
145
  @overload
@@ -152,8 +168,10 @@ class TransportWanVpnFeatureAssociateRoutingOspfv3Ipv4Feature(pulumi.CustomResou
152
168
 
153
169
  ## Import
154
170
 
171
+ Expected import identifier with the format: "transport_wan_vpn_feature_associate_routing_ospfv3_ipv4_feature_id,feature_profile_id,transport_wan_vpn_feature_id"
172
+
155
173
  ```sh
156
- $ pulumi import sdwan:index/transportWanVpnFeatureAssociateRoutingOspfv3Ipv4Feature:TransportWanVpnFeatureAssociateRoutingOspfv3Ipv4Feature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
174
+ $ pulumi import sdwan:index/transportWanVpnFeatureAssociateRoutingOspfv3Ipv4Feature:TransportWanVpnFeatureAssociateRoutingOspfv3Ipv4Feature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac,140331f6-5418-4755-a059-13c77eb96037"
157
175
  ```
158
176
 
159
177
  :param str resource_name: The name of the resource.
@@ -186,8 +204,10 @@ class TransportWanVpnFeatureAssociateRoutingOspfv3Ipv4Feature(pulumi.CustomResou
186
204
 
187
205
  ## Import
188
206
 
207
+ Expected import identifier with the format: "transport_wan_vpn_feature_associate_routing_ospfv3_ipv4_feature_id,feature_profile_id,transport_wan_vpn_feature_id"
208
+
189
209
  ```sh
190
- $ pulumi import sdwan:index/transportWanVpnFeatureAssociateRoutingOspfv3Ipv4Feature:TransportWanVpnFeatureAssociateRoutingOspfv3Ipv4Feature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
210
+ $ pulumi import sdwan:index/transportWanVpnFeatureAssociateRoutingOspfv3Ipv4Feature:TransportWanVpnFeatureAssociateRoutingOspfv3Ipv4Feature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac,140331f6-5418-4755-a059-13c77eb96037"
191
211
  ```
192
212
 
193
213
  :param str resource_name: The name of the resource.
@@ -226,6 +246,7 @@ class TransportWanVpnFeatureAssociateRoutingOspfv3Ipv4Feature(pulumi.CustomResou
226
246
  if transport_wan_vpn_feature_id is None and not opts.urn:
227
247
  raise TypeError("Missing required property 'transport_wan_vpn_feature_id'")
228
248
  __props__.__dict__["transport_wan_vpn_feature_id"] = transport_wan_vpn_feature_id
249
+ __props__.__dict__["version"] = None
229
250
  super(TransportWanVpnFeatureAssociateRoutingOspfv3Ipv4Feature, __self__).__init__(
230
251
  'sdwan:index/transportWanVpnFeatureAssociateRoutingOspfv3Ipv4Feature:TransportWanVpnFeatureAssociateRoutingOspfv3Ipv4Feature',
231
252
  resource_name,
@@ -238,7 +259,8 @@ class TransportWanVpnFeatureAssociateRoutingOspfv3Ipv4Feature(pulumi.CustomResou
238
259
  opts: Optional[pulumi.ResourceOptions] = None,
239
260
  feature_profile_id: Optional[pulumi.Input[str]] = None,
240
261
  transport_routing_ospfv3_ipv4_feature_id: Optional[pulumi.Input[str]] = None,
241
- transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None) -> 'TransportWanVpnFeatureAssociateRoutingOspfv3Ipv4Feature':
262
+ transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
263
+ version: Optional[pulumi.Input[int]] = None) -> 'TransportWanVpnFeatureAssociateRoutingOspfv3Ipv4Feature':
242
264
  """
243
265
  Get an existing TransportWanVpnFeatureAssociateRoutingOspfv3Ipv4Feature resource's state with the given name, id, and optional extra
244
266
  properties used to qualify the lookup.
@@ -249,6 +271,7 @@ class TransportWanVpnFeatureAssociateRoutingOspfv3Ipv4Feature(pulumi.CustomResou
249
271
  :param pulumi.Input[str] feature_profile_id: Feature Profile ID
250
272
  :param pulumi.Input[str] transport_routing_ospfv3_ipv4_feature_id: Transport Routing OSPFv4 IPv4 Feature ID
251
273
  :param pulumi.Input[str] transport_wan_vpn_feature_id: Transport WAN VPN Feature ID
274
+ :param pulumi.Input[int] version: The version of the object
252
275
  """
253
276
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
254
277
 
@@ -257,6 +280,7 @@ class TransportWanVpnFeatureAssociateRoutingOspfv3Ipv4Feature(pulumi.CustomResou
257
280
  __props__.__dict__["feature_profile_id"] = feature_profile_id
258
281
  __props__.__dict__["transport_routing_ospfv3_ipv4_feature_id"] = transport_routing_ospfv3_ipv4_feature_id
259
282
  __props__.__dict__["transport_wan_vpn_feature_id"] = transport_wan_vpn_feature_id
283
+ __props__.__dict__["version"] = version
260
284
  return TransportWanVpnFeatureAssociateRoutingOspfv3Ipv4Feature(resource_name, opts=opts, __props__=__props__)
261
285
 
262
286
  @property
@@ -283,3 +307,11 @@ class TransportWanVpnFeatureAssociateRoutingOspfv3Ipv4Feature(pulumi.CustomResou
283
307
  """
284
308
  return pulumi.get(self, "transport_wan_vpn_feature_id")
285
309
 
310
+ @property
311
+ @pulumi.getter
312
+ def version(self) -> pulumi.Output[int]:
313
+ """
314
+ The version of the object
315
+ """
316
+ return pulumi.get(self, "version")
317
+
@@ -74,12 +74,14 @@ class _TransportWanVpnFeatureAssociateRoutingOspfv3Ipv6FeatureState:
74
74
  def __init__(__self__, *,
75
75
  feature_profile_id: Optional[pulumi.Input[str]] = None,
76
76
  transport_routing_ospfv3_ipv6_feature_id: Optional[pulumi.Input[str]] = None,
77
- transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None):
77
+ transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
78
+ version: Optional[pulumi.Input[int]] = None):
78
79
  """
79
80
  Input properties used for looking up and filtering TransportWanVpnFeatureAssociateRoutingOspfv3Ipv6Feature resources.
80
81
  :param pulumi.Input[str] feature_profile_id: Feature Profile ID
81
82
  :param pulumi.Input[str] transport_routing_ospfv3_ipv6_feature_id: Transport Routing OSPFv4 IPv6 Feature ID
82
83
  :param pulumi.Input[str] transport_wan_vpn_feature_id: Transport WAN VPN Feature ID
84
+ :param pulumi.Input[int] version: The version of the object
83
85
  """
84
86
  if feature_profile_id is not None:
85
87
  pulumi.set(__self__, "feature_profile_id", feature_profile_id)
@@ -87,6 +89,8 @@ class _TransportWanVpnFeatureAssociateRoutingOspfv3Ipv6FeatureState:
87
89
  pulumi.set(__self__, "transport_routing_ospfv3_ipv6_feature_id", transport_routing_ospfv3_ipv6_feature_id)
88
90
  if transport_wan_vpn_feature_id is not None:
89
91
  pulumi.set(__self__, "transport_wan_vpn_feature_id", transport_wan_vpn_feature_id)
92
+ if version is not None:
93
+ pulumi.set(__self__, "version", version)
90
94
 
91
95
  @property
92
96
  @pulumi.getter(name="featureProfileId")
@@ -124,6 +128,18 @@ class _TransportWanVpnFeatureAssociateRoutingOspfv3Ipv6FeatureState:
124
128
  def transport_wan_vpn_feature_id(self, value: Optional[pulumi.Input[str]]):
125
129
  pulumi.set(self, "transport_wan_vpn_feature_id", value)
126
130
 
131
+ @property
132
+ @pulumi.getter
133
+ def version(self) -> Optional[pulumi.Input[int]]:
134
+ """
135
+ The version of the object
136
+ """
137
+ return pulumi.get(self, "version")
138
+
139
+ @version.setter
140
+ def version(self, value: Optional[pulumi.Input[int]]):
141
+ pulumi.set(self, "version", value)
142
+
127
143
 
128
144
  class TransportWanVpnFeatureAssociateRoutingOspfv3Ipv6Feature(pulumi.CustomResource):
129
145
  @overload
@@ -152,8 +168,10 @@ class TransportWanVpnFeatureAssociateRoutingOspfv3Ipv6Feature(pulumi.CustomResou
152
168
 
153
169
  ## Import
154
170
 
171
+ Expected import identifier with the format: "transport_wan_vpn_feature_associate_routing_ospfv3_ipv6_feature_id,feature_profile_id,transport_wan_vpn_feature_id"
172
+
155
173
  ```sh
156
- $ pulumi import sdwan:index/transportWanVpnFeatureAssociateRoutingOspfv3Ipv6Feature:TransportWanVpnFeatureAssociateRoutingOspfv3Ipv6Feature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
174
+ $ pulumi import sdwan:index/transportWanVpnFeatureAssociateRoutingOspfv3Ipv6Feature:TransportWanVpnFeatureAssociateRoutingOspfv3Ipv6Feature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac,140331f6-5418-4755-a059-13c77eb96037"
157
175
  ```
158
176
 
159
177
  :param str resource_name: The name of the resource.
@@ -186,8 +204,10 @@ class TransportWanVpnFeatureAssociateRoutingOspfv3Ipv6Feature(pulumi.CustomResou
186
204
 
187
205
  ## Import
188
206
 
207
+ Expected import identifier with the format: "transport_wan_vpn_feature_associate_routing_ospfv3_ipv6_feature_id,feature_profile_id,transport_wan_vpn_feature_id"
208
+
189
209
  ```sh
190
- $ pulumi import sdwan:index/transportWanVpnFeatureAssociateRoutingOspfv3Ipv6Feature:TransportWanVpnFeatureAssociateRoutingOspfv3Ipv6Feature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
210
+ $ pulumi import sdwan:index/transportWanVpnFeatureAssociateRoutingOspfv3Ipv6Feature:TransportWanVpnFeatureAssociateRoutingOspfv3Ipv6Feature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac,140331f6-5418-4755-a059-13c77eb96037"
191
211
  ```
192
212
 
193
213
  :param str resource_name: The name of the resource.
@@ -226,6 +246,7 @@ class TransportWanVpnFeatureAssociateRoutingOspfv3Ipv6Feature(pulumi.CustomResou
226
246
  if transport_wan_vpn_feature_id is None and not opts.urn:
227
247
  raise TypeError("Missing required property 'transport_wan_vpn_feature_id'")
228
248
  __props__.__dict__["transport_wan_vpn_feature_id"] = transport_wan_vpn_feature_id
249
+ __props__.__dict__["version"] = None
229
250
  super(TransportWanVpnFeatureAssociateRoutingOspfv3Ipv6Feature, __self__).__init__(
230
251
  'sdwan:index/transportWanVpnFeatureAssociateRoutingOspfv3Ipv6Feature:TransportWanVpnFeatureAssociateRoutingOspfv3Ipv6Feature',
231
252
  resource_name,
@@ -238,7 +259,8 @@ class TransportWanVpnFeatureAssociateRoutingOspfv3Ipv6Feature(pulumi.CustomResou
238
259
  opts: Optional[pulumi.ResourceOptions] = None,
239
260
  feature_profile_id: Optional[pulumi.Input[str]] = None,
240
261
  transport_routing_ospfv3_ipv6_feature_id: Optional[pulumi.Input[str]] = None,
241
- transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None) -> 'TransportWanVpnFeatureAssociateRoutingOspfv3Ipv6Feature':
262
+ transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
263
+ version: Optional[pulumi.Input[int]] = None) -> 'TransportWanVpnFeatureAssociateRoutingOspfv3Ipv6Feature':
242
264
  """
243
265
  Get an existing TransportWanVpnFeatureAssociateRoutingOspfv3Ipv6Feature resource's state with the given name, id, and optional extra
244
266
  properties used to qualify the lookup.
@@ -249,6 +271,7 @@ class TransportWanVpnFeatureAssociateRoutingOspfv3Ipv6Feature(pulumi.CustomResou
249
271
  :param pulumi.Input[str] feature_profile_id: Feature Profile ID
250
272
  :param pulumi.Input[str] transport_routing_ospfv3_ipv6_feature_id: Transport Routing OSPFv4 IPv6 Feature ID
251
273
  :param pulumi.Input[str] transport_wan_vpn_feature_id: Transport WAN VPN Feature ID
274
+ :param pulumi.Input[int] version: The version of the object
252
275
  """
253
276
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
254
277
 
@@ -257,6 +280,7 @@ class TransportWanVpnFeatureAssociateRoutingOspfv3Ipv6Feature(pulumi.CustomResou
257
280
  __props__.__dict__["feature_profile_id"] = feature_profile_id
258
281
  __props__.__dict__["transport_routing_ospfv3_ipv6_feature_id"] = transport_routing_ospfv3_ipv6_feature_id
259
282
  __props__.__dict__["transport_wan_vpn_feature_id"] = transport_wan_vpn_feature_id
283
+ __props__.__dict__["version"] = version
260
284
  return TransportWanVpnFeatureAssociateRoutingOspfv3Ipv6Feature(resource_name, opts=opts, __props__=__props__)
261
285
 
262
286
  @property
@@ -283,3 +307,11 @@ class TransportWanVpnFeatureAssociateRoutingOspfv3Ipv6Feature(pulumi.CustomResou
283
307
  """
284
308
  return pulumi.get(self, "transport_wan_vpn_feature_id")
285
309
 
310
+ @property
311
+ @pulumi.getter
312
+ def version(self) -> pulumi.Output[int]:
313
+ """
314
+ The version of the object
315
+ """
316
+ return pulumi.get(self, "version")
317
+
@@ -90,13 +90,15 @@ class _TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureState:
90
90
  feature_profile_id: Optional[pulumi.Input[str]] = None,
91
91
  transport_tracker_feature_id: Optional[pulumi.Input[str]] = None,
92
92
  transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
93
- transport_wan_vpn_interface_cellular_feature_id: Optional[pulumi.Input[str]] = None):
93
+ transport_wan_vpn_interface_cellular_feature_id: Optional[pulumi.Input[str]] = None,
94
+ version: Optional[pulumi.Input[int]] = None):
94
95
  """
95
96
  Input properties used for looking up and filtering TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature resources.
96
97
  :param pulumi.Input[str] feature_profile_id: Feature Profile ID
97
98
  :param pulumi.Input[str] transport_tracker_feature_id: Transport Tracker Feature ID
98
99
  :param pulumi.Input[str] transport_wan_vpn_feature_id: Transport WAN VPN Feature ID
99
100
  :param pulumi.Input[str] transport_wan_vpn_interface_cellular_feature_id: Transport WAN VPN Interface Cellular Feature ID
101
+ :param pulumi.Input[int] version: The version of the object
100
102
  """
101
103
  if feature_profile_id is not None:
102
104
  pulumi.set(__self__, "feature_profile_id", feature_profile_id)
@@ -106,6 +108,8 @@ class _TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureState:
106
108
  pulumi.set(__self__, "transport_wan_vpn_feature_id", transport_wan_vpn_feature_id)
107
109
  if transport_wan_vpn_interface_cellular_feature_id is not None:
108
110
  pulumi.set(__self__, "transport_wan_vpn_interface_cellular_feature_id", transport_wan_vpn_interface_cellular_feature_id)
111
+ if version is not None:
112
+ pulumi.set(__self__, "version", version)
109
113
 
110
114
  @property
111
115
  @pulumi.getter(name="featureProfileId")
@@ -155,6 +159,18 @@ class _TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureState:
155
159
  def transport_wan_vpn_interface_cellular_feature_id(self, value: Optional[pulumi.Input[str]]):
156
160
  pulumi.set(self, "transport_wan_vpn_interface_cellular_feature_id", value)
157
161
 
162
+ @property
163
+ @pulumi.getter
164
+ def version(self) -> Optional[pulumi.Input[int]]:
165
+ """
166
+ The version of the object
167
+ """
168
+ return pulumi.get(self, "version")
169
+
170
+ @version.setter
171
+ def version(self, value: Optional[pulumi.Input[int]]):
172
+ pulumi.set(self, "version", value)
173
+
158
174
 
159
175
  class TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature(pulumi.CustomResource):
160
176
  @overload
@@ -185,8 +201,10 @@ class TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature(pulumi.Cust
185
201
 
186
202
  ## Import
187
203
 
204
+ Expected import identifier with the format: "transport_wan_vpn_interface_cellular_feature_associate_tracker_feature_id,feature_profile_id,transport_wan_vpn_feature_id,transport_wan_vpn_interface_cellular_feature_id"
205
+
188
206
  ```sh
189
- $ pulumi import sdwan:index/transportWanVpnInterfaceCellularFeatureAssociateTrackerFeature:TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
207
+ $ pulumi import sdwan:index/transportWanVpnInterfaceCellularFeatureAssociateTrackerFeature:TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac,140331f6-5418-4755-a059-13c77eb96037,140331f6-5418-4755-a059-13c77eb96037"
190
208
  ```
191
209
 
192
210
  :param str resource_name: The name of the resource.
@@ -221,8 +239,10 @@ class TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature(pulumi.Cust
221
239
 
222
240
  ## Import
223
241
 
242
+ Expected import identifier with the format: "transport_wan_vpn_interface_cellular_feature_associate_tracker_feature_id,feature_profile_id,transport_wan_vpn_feature_id,transport_wan_vpn_interface_cellular_feature_id"
243
+
224
244
  ```sh
225
- $ pulumi import sdwan:index/transportWanVpnInterfaceCellularFeatureAssociateTrackerFeature:TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
245
+ $ pulumi import sdwan:index/transportWanVpnInterfaceCellularFeatureAssociateTrackerFeature:TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac,140331f6-5418-4755-a059-13c77eb96037,140331f6-5418-4755-a059-13c77eb96037"
226
246
  ```
227
247
 
228
248
  :param str resource_name: The name of the resource.
@@ -265,6 +285,7 @@ class TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature(pulumi.Cust
265
285
  if transport_wan_vpn_interface_cellular_feature_id is None and not opts.urn:
266
286
  raise TypeError("Missing required property 'transport_wan_vpn_interface_cellular_feature_id'")
267
287
  __props__.__dict__["transport_wan_vpn_interface_cellular_feature_id"] = transport_wan_vpn_interface_cellular_feature_id
288
+ __props__.__dict__["version"] = None
268
289
  super(TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature, __self__).__init__(
269
290
  'sdwan:index/transportWanVpnInterfaceCellularFeatureAssociateTrackerFeature:TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature',
270
291
  resource_name,
@@ -278,7 +299,8 @@ class TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature(pulumi.Cust
278
299
  feature_profile_id: Optional[pulumi.Input[str]] = None,
279
300
  transport_tracker_feature_id: Optional[pulumi.Input[str]] = None,
280
301
  transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
281
- transport_wan_vpn_interface_cellular_feature_id: Optional[pulumi.Input[str]] = None) -> 'TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature':
302
+ transport_wan_vpn_interface_cellular_feature_id: Optional[pulumi.Input[str]] = None,
303
+ version: Optional[pulumi.Input[int]] = None) -> 'TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature':
282
304
  """
283
305
  Get an existing TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature resource's state with the given name, id, and optional extra
284
306
  properties used to qualify the lookup.
@@ -290,6 +312,7 @@ class TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature(pulumi.Cust
290
312
  :param pulumi.Input[str] transport_tracker_feature_id: Transport Tracker Feature ID
291
313
  :param pulumi.Input[str] transport_wan_vpn_feature_id: Transport WAN VPN Feature ID
292
314
  :param pulumi.Input[str] transport_wan_vpn_interface_cellular_feature_id: Transport WAN VPN Interface Cellular Feature ID
315
+ :param pulumi.Input[int] version: The version of the object
293
316
  """
294
317
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
295
318
 
@@ -299,6 +322,7 @@ class TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature(pulumi.Cust
299
322
  __props__.__dict__["transport_tracker_feature_id"] = transport_tracker_feature_id
300
323
  __props__.__dict__["transport_wan_vpn_feature_id"] = transport_wan_vpn_feature_id
301
324
  __props__.__dict__["transport_wan_vpn_interface_cellular_feature_id"] = transport_wan_vpn_interface_cellular_feature_id
325
+ __props__.__dict__["version"] = version
302
326
  return TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature(resource_name, opts=opts, __props__=__props__)
303
327
 
304
328
  @property
@@ -333,3 +357,11 @@ class TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature(pulumi.Cust
333
357
  """
334
358
  return pulumi.get(self, "transport_wan_vpn_interface_cellular_feature_id")
335
359
 
360
+ @property
361
+ @pulumi.getter
362
+ def version(self) -> pulumi.Output[int]:
363
+ """
364
+ The version of the object
365
+ """
366
+ return pulumi.get(self, "version")
367
+
@@ -90,13 +90,15 @@ class _TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureState:
90
90
  feature_profile_id: Optional[pulumi.Input[str]] = None,
91
91
  transport_tracker_group_feature_id: Optional[pulumi.Input[str]] = None,
92
92
  transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
93
- transport_wan_vpn_interface_cellular_feature_id: Optional[pulumi.Input[str]] = None):
93
+ transport_wan_vpn_interface_cellular_feature_id: Optional[pulumi.Input[str]] = None,
94
+ version: Optional[pulumi.Input[int]] = None):
94
95
  """
95
96
  Input properties used for looking up and filtering TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature resources.
96
97
  :param pulumi.Input[str] feature_profile_id: Feature Profile ID
97
98
  :param pulumi.Input[str] transport_tracker_group_feature_id: Transport Tracker Group Feature ID
98
99
  :param pulumi.Input[str] transport_wan_vpn_feature_id: Transport WAN VPN Feature ID
99
100
  :param pulumi.Input[str] transport_wan_vpn_interface_cellular_feature_id: Transport WAN VPN Interface Cellular Feature ID
101
+ :param pulumi.Input[int] version: The version of the object
100
102
  """
101
103
  if feature_profile_id is not None:
102
104
  pulumi.set(__self__, "feature_profile_id", feature_profile_id)
@@ -106,6 +108,8 @@ class _TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureState:
106
108
  pulumi.set(__self__, "transport_wan_vpn_feature_id", transport_wan_vpn_feature_id)
107
109
  if transport_wan_vpn_interface_cellular_feature_id is not None:
108
110
  pulumi.set(__self__, "transport_wan_vpn_interface_cellular_feature_id", transport_wan_vpn_interface_cellular_feature_id)
111
+ if version is not None:
112
+ pulumi.set(__self__, "version", version)
109
113
 
110
114
  @property
111
115
  @pulumi.getter(name="featureProfileId")
@@ -155,6 +159,18 @@ class _TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureState:
155
159
  def transport_wan_vpn_interface_cellular_feature_id(self, value: Optional[pulumi.Input[str]]):
156
160
  pulumi.set(self, "transport_wan_vpn_interface_cellular_feature_id", value)
157
161
 
162
+ @property
163
+ @pulumi.getter
164
+ def version(self) -> Optional[pulumi.Input[int]]:
165
+ """
166
+ The version of the object
167
+ """
168
+ return pulumi.get(self, "version")
169
+
170
+ @version.setter
171
+ def version(self, value: Optional[pulumi.Input[int]]):
172
+ pulumi.set(self, "version", value)
173
+
158
174
 
159
175
  class TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature(pulumi.CustomResource):
160
176
  @overload
@@ -185,8 +201,10 @@ class TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature(pulumi
185
201
 
186
202
  ## Import
187
203
 
204
+ Expected import identifier with the format: "transport_wan_vpn_interface_cellular_feature_associate_tracker_group_feature_id,feature_profile_id,transport_wan_vpn_feature_id,transport_wan_vpn_interface_cellular_feature_id"
205
+
188
206
  ```sh
189
- $ pulumi import sdwan:index/transportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature:TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
207
+ $ pulumi import sdwan:index/transportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature:TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac,140331f6-5418-4755-a059-13c77eb96037,140331f6-5418-4755-a059-13c77eb96037"
190
208
  ```
191
209
 
192
210
  :param str resource_name: The name of the resource.
@@ -221,8 +239,10 @@ class TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature(pulumi
221
239
 
222
240
  ## Import
223
241
 
242
+ Expected import identifier with the format: "transport_wan_vpn_interface_cellular_feature_associate_tracker_group_feature_id,feature_profile_id,transport_wan_vpn_feature_id,transport_wan_vpn_interface_cellular_feature_id"
243
+
224
244
  ```sh
225
- $ pulumi import sdwan:index/transportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature:TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
245
+ $ pulumi import sdwan:index/transportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature:TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac,140331f6-5418-4755-a059-13c77eb96037,140331f6-5418-4755-a059-13c77eb96037"
226
246
  ```
227
247
 
228
248
  :param str resource_name: The name of the resource.
@@ -265,6 +285,7 @@ class TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature(pulumi
265
285
  if transport_wan_vpn_interface_cellular_feature_id is None and not opts.urn:
266
286
  raise TypeError("Missing required property 'transport_wan_vpn_interface_cellular_feature_id'")
267
287
  __props__.__dict__["transport_wan_vpn_interface_cellular_feature_id"] = transport_wan_vpn_interface_cellular_feature_id
288
+ __props__.__dict__["version"] = None
268
289
  super(TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature, __self__).__init__(
269
290
  'sdwan:index/transportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature:TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature',
270
291
  resource_name,
@@ -278,7 +299,8 @@ class TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature(pulumi
278
299
  feature_profile_id: Optional[pulumi.Input[str]] = None,
279
300
  transport_tracker_group_feature_id: Optional[pulumi.Input[str]] = None,
280
301
  transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
281
- transport_wan_vpn_interface_cellular_feature_id: Optional[pulumi.Input[str]] = None) -> 'TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature':
302
+ transport_wan_vpn_interface_cellular_feature_id: Optional[pulumi.Input[str]] = None,
303
+ version: Optional[pulumi.Input[int]] = None) -> 'TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature':
282
304
  """
283
305
  Get an existing TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature resource's state with the given name, id, and optional extra
284
306
  properties used to qualify the lookup.
@@ -290,6 +312,7 @@ class TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature(pulumi
290
312
  :param pulumi.Input[str] transport_tracker_group_feature_id: Transport Tracker Group Feature ID
291
313
  :param pulumi.Input[str] transport_wan_vpn_feature_id: Transport WAN VPN Feature ID
292
314
  :param pulumi.Input[str] transport_wan_vpn_interface_cellular_feature_id: Transport WAN VPN Interface Cellular Feature ID
315
+ :param pulumi.Input[int] version: The version of the object
293
316
  """
294
317
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
295
318
 
@@ -299,6 +322,7 @@ class TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature(pulumi
299
322
  __props__.__dict__["transport_tracker_group_feature_id"] = transport_tracker_group_feature_id
300
323
  __props__.__dict__["transport_wan_vpn_feature_id"] = transport_wan_vpn_feature_id
301
324
  __props__.__dict__["transport_wan_vpn_interface_cellular_feature_id"] = transport_wan_vpn_interface_cellular_feature_id
325
+ __props__.__dict__["version"] = version
302
326
  return TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature(resource_name, opts=opts, __props__=__props__)
303
327
 
304
328
  @property
@@ -333,3 +357,11 @@ class TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature(pulumi
333
357
  """
334
358
  return pulumi.get(self, "transport_wan_vpn_interface_cellular_feature_id")
335
359
 
360
+ @property
361
+ @pulumi.getter
362
+ def version(self) -> pulumi.Output[int]:
363
+ """
364
+ The version of the object
365
+ """
366
+ return pulumi.get(self, "version")
367
+