pulumi-sdwan 0.3.0a1743057086__py3-none-any.whl → 0.4.0a1743489278__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.0a1743057086.dist-info → pulumi_sdwan-0.4.0a1743489278.dist-info}/METADATA +1 -1
  67. {pulumi_sdwan-0.3.0a1743057086.dist-info → pulumi_sdwan-0.4.0a1743489278.dist-info}/RECORD +69 -65
  68. {pulumi_sdwan-0.3.0a1743057086.dist-info → pulumi_sdwan-0.4.0a1743489278.dist-info}/WHEEL +0 -0
  69. {pulumi_sdwan-0.3.0a1743057086.dist-info → pulumi_sdwan-0.4.0a1743489278.dist-info}/top_level.txt +0 -0
@@ -74,12 +74,14 @@ class _ServiceLanVpnFeatureAssociateMulticastFeatureState:
74
74
  def __init__(__self__, *,
75
75
  feature_profile_id: Optional[pulumi.Input[str]] = None,
76
76
  service_lan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
77
- service_multicast_feature_id: Optional[pulumi.Input[str]] = None):
77
+ service_multicast_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 ServiceLanVpnFeatureAssociateMulticastFeature resources.
80
81
  :param pulumi.Input[str] feature_profile_id: Feature Profile ID
81
82
  :param pulumi.Input[str] service_lan_vpn_feature_id: Service LAN VPN Feature ID
82
83
  :param pulumi.Input[str] service_multicast_feature_id: Service Multicast 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 _ServiceLanVpnFeatureAssociateMulticastFeatureState:
87
89
  pulumi.set(__self__, "service_lan_vpn_feature_id", service_lan_vpn_feature_id)
88
90
  if service_multicast_feature_id is not None:
89
91
  pulumi.set(__self__, "service_multicast_feature_id", service_multicast_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 _ServiceLanVpnFeatureAssociateMulticastFeatureState:
124
128
  def service_multicast_feature_id(self, value: Optional[pulumi.Input[str]]):
125
129
  pulumi.set(self, "service_multicast_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 ServiceLanVpnFeatureAssociateMulticastFeature(pulumi.CustomResource):
129
145
  @overload
@@ -152,8 +168,10 @@ class ServiceLanVpnFeatureAssociateMulticastFeature(pulumi.CustomResource):
152
168
 
153
169
  ## Import
154
170
 
171
+ Expected import identifier with the format: "service_lan_vpn_feature_associate_multicast_feature_id,feature_profile_id,service_lan_vpn_feature_id"
172
+
155
173
  ```sh
156
- $ pulumi import sdwan:index/serviceLanVpnFeatureAssociateMulticastFeature:ServiceLanVpnFeatureAssociateMulticastFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
174
+ $ pulumi import sdwan:index/serviceLanVpnFeatureAssociateMulticastFeature:ServiceLanVpnFeatureAssociateMulticastFeature 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 ServiceLanVpnFeatureAssociateMulticastFeature(pulumi.CustomResource):
186
204
 
187
205
  ## Import
188
206
 
207
+ Expected import identifier with the format: "service_lan_vpn_feature_associate_multicast_feature_id,feature_profile_id,service_lan_vpn_feature_id"
208
+
189
209
  ```sh
190
- $ pulumi import sdwan:index/serviceLanVpnFeatureAssociateMulticastFeature:ServiceLanVpnFeatureAssociateMulticastFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
210
+ $ pulumi import sdwan:index/serviceLanVpnFeatureAssociateMulticastFeature:ServiceLanVpnFeatureAssociateMulticastFeature 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 ServiceLanVpnFeatureAssociateMulticastFeature(pulumi.CustomResource):
226
246
  if service_multicast_feature_id is None and not opts.urn:
227
247
  raise TypeError("Missing required property 'service_multicast_feature_id'")
228
248
  __props__.__dict__["service_multicast_feature_id"] = service_multicast_feature_id
249
+ __props__.__dict__["version"] = None
229
250
  super(ServiceLanVpnFeatureAssociateMulticastFeature, __self__).__init__(
230
251
  'sdwan:index/serviceLanVpnFeatureAssociateMulticastFeature:ServiceLanVpnFeatureAssociateMulticastFeature',
231
252
  resource_name,
@@ -238,7 +259,8 @@ class ServiceLanVpnFeatureAssociateMulticastFeature(pulumi.CustomResource):
238
259
  opts: Optional[pulumi.ResourceOptions] = None,
239
260
  feature_profile_id: Optional[pulumi.Input[str]] = None,
240
261
  service_lan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
241
- service_multicast_feature_id: Optional[pulumi.Input[str]] = None) -> 'ServiceLanVpnFeatureAssociateMulticastFeature':
262
+ service_multicast_feature_id: Optional[pulumi.Input[str]] = None,
263
+ version: Optional[pulumi.Input[int]] = None) -> 'ServiceLanVpnFeatureAssociateMulticastFeature':
242
264
  """
243
265
  Get an existing ServiceLanVpnFeatureAssociateMulticastFeature resource's state with the given name, id, and optional extra
244
266
  properties used to qualify the lookup.
@@ -249,6 +271,7 @@ class ServiceLanVpnFeatureAssociateMulticastFeature(pulumi.CustomResource):
249
271
  :param pulumi.Input[str] feature_profile_id: Feature Profile ID
250
272
  :param pulumi.Input[str] service_lan_vpn_feature_id: Service LAN VPN Feature ID
251
273
  :param pulumi.Input[str] service_multicast_feature_id: Service Multicast 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 ServiceLanVpnFeatureAssociateMulticastFeature(pulumi.CustomResource):
257
280
  __props__.__dict__["feature_profile_id"] = feature_profile_id
258
281
  __props__.__dict__["service_lan_vpn_feature_id"] = service_lan_vpn_feature_id
259
282
  __props__.__dict__["service_multicast_feature_id"] = service_multicast_feature_id
283
+ __props__.__dict__["version"] = version
260
284
  return ServiceLanVpnFeatureAssociateMulticastFeature(resource_name, opts=opts, __props__=__props__)
261
285
 
262
286
  @property
@@ -283,3 +307,11 @@ class ServiceLanVpnFeatureAssociateMulticastFeature(pulumi.CustomResource):
283
307
  """
284
308
  return pulumi.get(self, "service_multicast_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 _ServiceLanVpnFeatureAssociateRoutingBgpFeatureState:
74
74
  def __init__(__self__, *,
75
75
  feature_profile_id: Optional[pulumi.Input[str]] = None,
76
76
  service_lan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
77
- service_routing_bgp_feature_id: Optional[pulumi.Input[str]] = None):
77
+ service_routing_bgp_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 ServiceLanVpnFeatureAssociateRoutingBgpFeature resources.
80
81
  :param pulumi.Input[str] feature_profile_id: Feature Profile ID
81
82
  :param pulumi.Input[str] service_lan_vpn_feature_id: Service LAN VPN Feature ID
82
83
  :param pulumi.Input[str] service_routing_bgp_feature_id: Service Routing BGP 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 _ServiceLanVpnFeatureAssociateRoutingBgpFeatureState:
87
89
  pulumi.set(__self__, "service_lan_vpn_feature_id", service_lan_vpn_feature_id)
88
90
  if service_routing_bgp_feature_id is not None:
89
91
  pulumi.set(__self__, "service_routing_bgp_feature_id", service_routing_bgp_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 _ServiceLanVpnFeatureAssociateRoutingBgpFeatureState:
124
128
  def service_routing_bgp_feature_id(self, value: Optional[pulumi.Input[str]]):
125
129
  pulumi.set(self, "service_routing_bgp_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 ServiceLanVpnFeatureAssociateRoutingBgpFeature(pulumi.CustomResource):
129
145
  @overload
@@ -152,8 +168,10 @@ class ServiceLanVpnFeatureAssociateRoutingBgpFeature(pulumi.CustomResource):
152
168
 
153
169
  ## Import
154
170
 
171
+ Expected import identifier with the format: "service_lan_vpn_feature_associate_routing_bgp_feature_id,feature_profile_id,service_lan_vpn_feature_id"
172
+
155
173
  ```sh
156
- $ pulumi import sdwan:index/serviceLanVpnFeatureAssociateRoutingBgpFeature:ServiceLanVpnFeatureAssociateRoutingBgpFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
174
+ $ pulumi import sdwan:index/serviceLanVpnFeatureAssociateRoutingBgpFeature:ServiceLanVpnFeatureAssociateRoutingBgpFeature 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 ServiceLanVpnFeatureAssociateRoutingBgpFeature(pulumi.CustomResource):
186
204
 
187
205
  ## Import
188
206
 
207
+ Expected import identifier with the format: "service_lan_vpn_feature_associate_routing_bgp_feature_id,feature_profile_id,service_lan_vpn_feature_id"
208
+
189
209
  ```sh
190
- $ pulumi import sdwan:index/serviceLanVpnFeatureAssociateRoutingBgpFeature:ServiceLanVpnFeatureAssociateRoutingBgpFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
210
+ $ pulumi import sdwan:index/serviceLanVpnFeatureAssociateRoutingBgpFeature:ServiceLanVpnFeatureAssociateRoutingBgpFeature 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 ServiceLanVpnFeatureAssociateRoutingBgpFeature(pulumi.CustomResource):
226
246
  if service_routing_bgp_feature_id is None and not opts.urn:
227
247
  raise TypeError("Missing required property 'service_routing_bgp_feature_id'")
228
248
  __props__.__dict__["service_routing_bgp_feature_id"] = service_routing_bgp_feature_id
249
+ __props__.__dict__["version"] = None
229
250
  super(ServiceLanVpnFeatureAssociateRoutingBgpFeature, __self__).__init__(
230
251
  'sdwan:index/serviceLanVpnFeatureAssociateRoutingBgpFeature:ServiceLanVpnFeatureAssociateRoutingBgpFeature',
231
252
  resource_name,
@@ -238,7 +259,8 @@ class ServiceLanVpnFeatureAssociateRoutingBgpFeature(pulumi.CustomResource):
238
259
  opts: Optional[pulumi.ResourceOptions] = None,
239
260
  feature_profile_id: Optional[pulumi.Input[str]] = None,
240
261
  service_lan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
241
- service_routing_bgp_feature_id: Optional[pulumi.Input[str]] = None) -> 'ServiceLanVpnFeatureAssociateRoutingBgpFeature':
262
+ service_routing_bgp_feature_id: Optional[pulumi.Input[str]] = None,
263
+ version: Optional[pulumi.Input[int]] = None) -> 'ServiceLanVpnFeatureAssociateRoutingBgpFeature':
242
264
  """
243
265
  Get an existing ServiceLanVpnFeatureAssociateRoutingBgpFeature resource's state with the given name, id, and optional extra
244
266
  properties used to qualify the lookup.
@@ -249,6 +271,7 @@ class ServiceLanVpnFeatureAssociateRoutingBgpFeature(pulumi.CustomResource):
249
271
  :param pulumi.Input[str] feature_profile_id: Feature Profile ID
250
272
  :param pulumi.Input[str] service_lan_vpn_feature_id: Service LAN VPN Feature ID
251
273
  :param pulumi.Input[str] service_routing_bgp_feature_id: Service Routing BGP 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 ServiceLanVpnFeatureAssociateRoutingBgpFeature(pulumi.CustomResource):
257
280
  __props__.__dict__["feature_profile_id"] = feature_profile_id
258
281
  __props__.__dict__["service_lan_vpn_feature_id"] = service_lan_vpn_feature_id
259
282
  __props__.__dict__["service_routing_bgp_feature_id"] = service_routing_bgp_feature_id
283
+ __props__.__dict__["version"] = version
260
284
  return ServiceLanVpnFeatureAssociateRoutingBgpFeature(resource_name, opts=opts, __props__=__props__)
261
285
 
262
286
  @property
@@ -283,3 +307,11 @@ class ServiceLanVpnFeatureAssociateRoutingBgpFeature(pulumi.CustomResource):
283
307
  """
284
308
  return pulumi.get(self, "service_routing_bgp_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 _ServiceLanVpnFeatureAssociateRoutingEigrpFeatureState:
74
74
  def __init__(__self__, *,
75
75
  feature_profile_id: Optional[pulumi.Input[str]] = None,
76
76
  service_lan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
77
- service_routing_eigrp_feature_id: Optional[pulumi.Input[str]] = None):
77
+ service_routing_eigrp_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 ServiceLanVpnFeatureAssociateRoutingEigrpFeature resources.
80
81
  :param pulumi.Input[str] feature_profile_id: Feature Profile ID
81
82
  :param pulumi.Input[str] service_lan_vpn_feature_id: Service LAN VPN Feature ID
82
83
  :param pulumi.Input[str] service_routing_eigrp_feature_id: Service Routing EIGRP 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 _ServiceLanVpnFeatureAssociateRoutingEigrpFeatureState:
87
89
  pulumi.set(__self__, "service_lan_vpn_feature_id", service_lan_vpn_feature_id)
88
90
  if service_routing_eigrp_feature_id is not None:
89
91
  pulumi.set(__self__, "service_routing_eigrp_feature_id", service_routing_eigrp_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 _ServiceLanVpnFeatureAssociateRoutingEigrpFeatureState:
124
128
  def service_routing_eigrp_feature_id(self, value: Optional[pulumi.Input[str]]):
125
129
  pulumi.set(self, "service_routing_eigrp_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 ServiceLanVpnFeatureAssociateRoutingEigrpFeature(pulumi.CustomResource):
129
145
  @overload
@@ -152,8 +168,10 @@ class ServiceLanVpnFeatureAssociateRoutingEigrpFeature(pulumi.CustomResource):
152
168
 
153
169
  ## Import
154
170
 
171
+ Expected import identifier with the format: "service_lan_vpn_feature_associate_routing_eigrp_feature_id,feature_profile_id,service_lan_vpn_feature_id"
172
+
155
173
  ```sh
156
- $ pulumi import sdwan:index/serviceLanVpnFeatureAssociateRoutingEigrpFeature:ServiceLanVpnFeatureAssociateRoutingEigrpFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
174
+ $ pulumi import sdwan:index/serviceLanVpnFeatureAssociateRoutingEigrpFeature:ServiceLanVpnFeatureAssociateRoutingEigrpFeature 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 ServiceLanVpnFeatureAssociateRoutingEigrpFeature(pulumi.CustomResource):
186
204
 
187
205
  ## Import
188
206
 
207
+ Expected import identifier with the format: "service_lan_vpn_feature_associate_routing_eigrp_feature_id,feature_profile_id,service_lan_vpn_feature_id"
208
+
189
209
  ```sh
190
- $ pulumi import sdwan:index/serviceLanVpnFeatureAssociateRoutingEigrpFeature:ServiceLanVpnFeatureAssociateRoutingEigrpFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
210
+ $ pulumi import sdwan:index/serviceLanVpnFeatureAssociateRoutingEigrpFeature:ServiceLanVpnFeatureAssociateRoutingEigrpFeature 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 ServiceLanVpnFeatureAssociateRoutingEigrpFeature(pulumi.CustomResource):
226
246
  if service_routing_eigrp_feature_id is None and not opts.urn:
227
247
  raise TypeError("Missing required property 'service_routing_eigrp_feature_id'")
228
248
  __props__.__dict__["service_routing_eigrp_feature_id"] = service_routing_eigrp_feature_id
249
+ __props__.__dict__["version"] = None
229
250
  super(ServiceLanVpnFeatureAssociateRoutingEigrpFeature, __self__).__init__(
230
251
  'sdwan:index/serviceLanVpnFeatureAssociateRoutingEigrpFeature:ServiceLanVpnFeatureAssociateRoutingEigrpFeature',
231
252
  resource_name,
@@ -238,7 +259,8 @@ class ServiceLanVpnFeatureAssociateRoutingEigrpFeature(pulumi.CustomResource):
238
259
  opts: Optional[pulumi.ResourceOptions] = None,
239
260
  feature_profile_id: Optional[pulumi.Input[str]] = None,
240
261
  service_lan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
241
- service_routing_eigrp_feature_id: Optional[pulumi.Input[str]] = None) -> 'ServiceLanVpnFeatureAssociateRoutingEigrpFeature':
262
+ service_routing_eigrp_feature_id: Optional[pulumi.Input[str]] = None,
263
+ version: Optional[pulumi.Input[int]] = None) -> 'ServiceLanVpnFeatureAssociateRoutingEigrpFeature':
242
264
  """
243
265
  Get an existing ServiceLanVpnFeatureAssociateRoutingEigrpFeature resource's state with the given name, id, and optional extra
244
266
  properties used to qualify the lookup.
@@ -249,6 +271,7 @@ class ServiceLanVpnFeatureAssociateRoutingEigrpFeature(pulumi.CustomResource):
249
271
  :param pulumi.Input[str] feature_profile_id: Feature Profile ID
250
272
  :param pulumi.Input[str] service_lan_vpn_feature_id: Service LAN VPN Feature ID
251
273
  :param pulumi.Input[str] service_routing_eigrp_feature_id: Service Routing EIGRP 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 ServiceLanVpnFeatureAssociateRoutingEigrpFeature(pulumi.CustomResource):
257
280
  __props__.__dict__["feature_profile_id"] = feature_profile_id
258
281
  __props__.__dict__["service_lan_vpn_feature_id"] = service_lan_vpn_feature_id
259
282
  __props__.__dict__["service_routing_eigrp_feature_id"] = service_routing_eigrp_feature_id
283
+ __props__.__dict__["version"] = version
260
284
  return ServiceLanVpnFeatureAssociateRoutingEigrpFeature(resource_name, opts=opts, __props__=__props__)
261
285
 
262
286
  @property
@@ -283,3 +307,11 @@ class ServiceLanVpnFeatureAssociateRoutingEigrpFeature(pulumi.CustomResource):
283
307
  """
284
308
  return pulumi.get(self, "service_routing_eigrp_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 _ServiceLanVpnFeatureAssociateRoutingOspfFeatureState:
74
74
  def __init__(__self__, *,
75
75
  feature_profile_id: Optional[pulumi.Input[str]] = None,
76
76
  service_lan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
77
- service_routing_ospf_feature_id: Optional[pulumi.Input[str]] = None):
77
+ service_routing_ospf_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 ServiceLanVpnFeatureAssociateRoutingOspfFeature resources.
80
81
  :param pulumi.Input[str] feature_profile_id: Feature Profile ID
81
82
  :param pulumi.Input[str] service_lan_vpn_feature_id: Service LAN VPN Feature ID
82
83
  :param pulumi.Input[str] service_routing_ospf_feature_id: Service Routing OSPF 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 _ServiceLanVpnFeatureAssociateRoutingOspfFeatureState:
87
89
  pulumi.set(__self__, "service_lan_vpn_feature_id", service_lan_vpn_feature_id)
88
90
  if service_routing_ospf_feature_id is not None:
89
91
  pulumi.set(__self__, "service_routing_ospf_feature_id", service_routing_ospf_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 _ServiceLanVpnFeatureAssociateRoutingOspfFeatureState:
124
128
  def service_routing_ospf_feature_id(self, value: Optional[pulumi.Input[str]]):
125
129
  pulumi.set(self, "service_routing_ospf_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 ServiceLanVpnFeatureAssociateRoutingOspfFeature(pulumi.CustomResource):
129
145
  @overload
@@ -152,8 +168,10 @@ class ServiceLanVpnFeatureAssociateRoutingOspfFeature(pulumi.CustomResource):
152
168
 
153
169
  ## Import
154
170
 
171
+ Expected import identifier with the format: "service_lan_vpn_feature_associate_routing_ospf_feature_id,feature_profile_id,service_lan_vpn_feature_id"
172
+
155
173
  ```sh
156
- $ pulumi import sdwan:index/serviceLanVpnFeatureAssociateRoutingOspfFeature:ServiceLanVpnFeatureAssociateRoutingOspfFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
174
+ $ pulumi import sdwan:index/serviceLanVpnFeatureAssociateRoutingOspfFeature:ServiceLanVpnFeatureAssociateRoutingOspfFeature 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 ServiceLanVpnFeatureAssociateRoutingOspfFeature(pulumi.CustomResource):
186
204
 
187
205
  ## Import
188
206
 
207
+ Expected import identifier with the format: "service_lan_vpn_feature_associate_routing_ospf_feature_id,feature_profile_id,service_lan_vpn_feature_id"
208
+
189
209
  ```sh
190
- $ pulumi import sdwan:index/serviceLanVpnFeatureAssociateRoutingOspfFeature:ServiceLanVpnFeatureAssociateRoutingOspfFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
210
+ $ pulumi import sdwan:index/serviceLanVpnFeatureAssociateRoutingOspfFeature:ServiceLanVpnFeatureAssociateRoutingOspfFeature 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 ServiceLanVpnFeatureAssociateRoutingOspfFeature(pulumi.CustomResource):
226
246
  if service_routing_ospf_feature_id is None and not opts.urn:
227
247
  raise TypeError("Missing required property 'service_routing_ospf_feature_id'")
228
248
  __props__.__dict__["service_routing_ospf_feature_id"] = service_routing_ospf_feature_id
249
+ __props__.__dict__["version"] = None
229
250
  super(ServiceLanVpnFeatureAssociateRoutingOspfFeature, __self__).__init__(
230
251
  'sdwan:index/serviceLanVpnFeatureAssociateRoutingOspfFeature:ServiceLanVpnFeatureAssociateRoutingOspfFeature',
231
252
  resource_name,
@@ -238,7 +259,8 @@ class ServiceLanVpnFeatureAssociateRoutingOspfFeature(pulumi.CustomResource):
238
259
  opts: Optional[pulumi.ResourceOptions] = None,
239
260
  feature_profile_id: Optional[pulumi.Input[str]] = None,
240
261
  service_lan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
241
- service_routing_ospf_feature_id: Optional[pulumi.Input[str]] = None) -> 'ServiceLanVpnFeatureAssociateRoutingOspfFeature':
262
+ service_routing_ospf_feature_id: Optional[pulumi.Input[str]] = None,
263
+ version: Optional[pulumi.Input[int]] = None) -> 'ServiceLanVpnFeatureAssociateRoutingOspfFeature':
242
264
  """
243
265
  Get an existing ServiceLanVpnFeatureAssociateRoutingOspfFeature resource's state with the given name, id, and optional extra
244
266
  properties used to qualify the lookup.
@@ -249,6 +271,7 @@ class ServiceLanVpnFeatureAssociateRoutingOspfFeature(pulumi.CustomResource):
249
271
  :param pulumi.Input[str] feature_profile_id: Feature Profile ID
250
272
  :param pulumi.Input[str] service_lan_vpn_feature_id: Service LAN VPN Feature ID
251
273
  :param pulumi.Input[str] service_routing_ospf_feature_id: Service Routing OSPF 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 ServiceLanVpnFeatureAssociateRoutingOspfFeature(pulumi.CustomResource):
257
280
  __props__.__dict__["feature_profile_id"] = feature_profile_id
258
281
  __props__.__dict__["service_lan_vpn_feature_id"] = service_lan_vpn_feature_id
259
282
  __props__.__dict__["service_routing_ospf_feature_id"] = service_routing_ospf_feature_id
283
+ __props__.__dict__["version"] = version
260
284
  return ServiceLanVpnFeatureAssociateRoutingOspfFeature(resource_name, opts=opts, __props__=__props__)
261
285
 
262
286
  @property
@@ -283,3 +307,11 @@ class ServiceLanVpnFeatureAssociateRoutingOspfFeature(pulumi.CustomResource):
283
307
  """
284
308
  return pulumi.get(self, "service_routing_ospf_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 _ServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4FeatureState:
74
74
  def __init__(__self__, *,
75
75
  feature_profile_id: Optional[pulumi.Input[str]] = None,
76
76
  service_lan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
77
- service_routing_ospfv3_ipv4_feature_id: Optional[pulumi.Input[str]] = None):
77
+ service_routing_ospfv3_ipv4_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 ServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature resources.
80
81
  :param pulumi.Input[str] feature_profile_id: Feature Profile ID
81
82
  :param pulumi.Input[str] service_lan_vpn_feature_id: Service LAN VPN Feature ID
82
83
  :param pulumi.Input[str] service_routing_ospfv3_ipv4_feature_id: Service Routing OSPFv3 IPv4 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 _ServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4FeatureState:
87
89
  pulumi.set(__self__, "service_lan_vpn_feature_id", service_lan_vpn_feature_id)
88
90
  if service_routing_ospfv3_ipv4_feature_id is not None:
89
91
  pulumi.set(__self__, "service_routing_ospfv3_ipv4_feature_id", service_routing_ospfv3_ipv4_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 _ServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4FeatureState:
124
128
  def service_routing_ospfv3_ipv4_feature_id(self, value: Optional[pulumi.Input[str]]):
125
129
  pulumi.set(self, "service_routing_ospfv3_ipv4_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 ServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature(pulumi.CustomResource):
129
145
  @overload
@@ -152,8 +168,10 @@ class ServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature(pulumi.CustomResourc
152
168
 
153
169
  ## Import
154
170
 
171
+ Expected import identifier with the format: "service_lan_vpn_feature_associate_routing_ospfv3_ipv4_feature_id,feature_profile_id,service_lan_vpn_feature_id"
172
+
155
173
  ```sh
156
- $ pulumi import sdwan:index/serviceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature:ServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
174
+ $ pulumi import sdwan:index/serviceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature:ServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature 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 ServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature(pulumi.CustomResourc
186
204
 
187
205
  ## Import
188
206
 
207
+ Expected import identifier with the format: "service_lan_vpn_feature_associate_routing_ospfv3_ipv4_feature_id,feature_profile_id,service_lan_vpn_feature_id"
208
+
189
209
  ```sh
190
- $ pulumi import sdwan:index/serviceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature:ServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
210
+ $ pulumi import sdwan:index/serviceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature:ServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature 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 ServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature(pulumi.CustomResourc
226
246
  if service_routing_ospfv3_ipv4_feature_id is None and not opts.urn:
227
247
  raise TypeError("Missing required property 'service_routing_ospfv3_ipv4_feature_id'")
228
248
  __props__.__dict__["service_routing_ospfv3_ipv4_feature_id"] = service_routing_ospfv3_ipv4_feature_id
249
+ __props__.__dict__["version"] = None
229
250
  super(ServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature, __self__).__init__(
230
251
  'sdwan:index/serviceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature:ServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature',
231
252
  resource_name,
@@ -238,7 +259,8 @@ class ServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature(pulumi.CustomResourc
238
259
  opts: Optional[pulumi.ResourceOptions] = None,
239
260
  feature_profile_id: Optional[pulumi.Input[str]] = None,
240
261
  service_lan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
241
- service_routing_ospfv3_ipv4_feature_id: Optional[pulumi.Input[str]] = None) -> 'ServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature':
262
+ service_routing_ospfv3_ipv4_feature_id: Optional[pulumi.Input[str]] = None,
263
+ version: Optional[pulumi.Input[int]] = None) -> 'ServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature':
242
264
  """
243
265
  Get an existing ServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature resource's state with the given name, id, and optional extra
244
266
  properties used to qualify the lookup.
@@ -249,6 +271,7 @@ class ServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature(pulumi.CustomResourc
249
271
  :param pulumi.Input[str] feature_profile_id: Feature Profile ID
250
272
  :param pulumi.Input[str] service_lan_vpn_feature_id: Service LAN VPN Feature ID
251
273
  :param pulumi.Input[str] service_routing_ospfv3_ipv4_feature_id: Service Routing OSPFv3 IPv4 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 ServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature(pulumi.CustomResourc
257
280
  __props__.__dict__["feature_profile_id"] = feature_profile_id
258
281
  __props__.__dict__["service_lan_vpn_feature_id"] = service_lan_vpn_feature_id
259
282
  __props__.__dict__["service_routing_ospfv3_ipv4_feature_id"] = service_routing_ospfv3_ipv4_feature_id
283
+ __props__.__dict__["version"] = version
260
284
  return ServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature(resource_name, opts=opts, __props__=__props__)
261
285
 
262
286
  @property
@@ -283,3 +307,11 @@ class ServiceLanVpnFeatureAssociateRoutingOspfv3Ipv4Feature(pulumi.CustomResourc
283
307
  """
284
308
  return pulumi.get(self, "service_routing_ospfv3_ipv4_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
+