pulumi-oci 2.12.0a1728593306__py3-none-any.whl → 2.12.0a1728642710__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.
Files changed (170) hide show
  1. pulumi_oci/__init__.py +145 -0
  2. pulumi_oci/analytics/analytics_instance.py +54 -5
  3. pulumi_oci/analytics/get_analytics_instance.py +18 -4
  4. pulumi_oci/analytics/outputs.py +12 -1
  5. pulumi_oci/core/_inputs.py +648 -159
  6. pulumi_oci/core/cluster_network.py +7 -7
  7. pulumi_oci/core/get_instance.py +29 -1
  8. pulumi_oci/core/get_vcn.py +15 -1
  9. pulumi_oci/core/get_vnic.py +15 -1
  10. pulumi_oci/core/instance.py +87 -0
  11. pulumi_oci/core/instance_configuration.py +12 -0
  12. pulumi_oci/core/ipsec.py +183 -23
  13. pulumi_oci/core/network_security_group_security_rule.py +2 -2
  14. pulumi_oci/core/outputs.py +709 -107
  15. pulumi_oci/core/service_gateway.py +13 -7
  16. pulumi_oci/core/vcn.py +65 -23
  17. pulumi_oci/core/virtual_network.py +35 -1
  18. pulumi_oci/core/vnic_attachment.py +2 -0
  19. pulumi_oci/database/_inputs.py +905 -27
  20. pulumi_oci/database/autonomous_database.py +48 -28
  21. pulumi_oci/database/autonomous_database_backup.py +12 -12
  22. pulumi_oci/database/autonomous_exadata_infrastructure.py +2 -0
  23. pulumi_oci/database/autonomous_vm_cluster.py +2 -0
  24. pulumi_oci/database/backup.py +12 -12
  25. pulumi_oci/database/cloud_autonomous_vm_cluster.py +2 -0
  26. pulumi_oci/database/cloud_exadata_infrastructure.py +2 -0
  27. pulumi_oci/database/cloud_vm_cluster.py +71 -0
  28. pulumi_oci/database/database.py +15 -15
  29. pulumi_oci/database/database_upgrade.py +12 -12
  30. pulumi_oci/database/db_system.py +9 -9
  31. pulumi_oci/database/exadata_infrastructure.py +2 -0
  32. pulumi_oci/database/get_autonomous_container_database.py +1 -1
  33. pulumi_oci/database/get_autonomous_database.py +18 -4
  34. pulumi_oci/database/get_autonomous_database_backup.py +3 -3
  35. pulumi_oci/database/get_autonomous_databases.py +88 -5
  36. pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
  37. pulumi_oci/database/get_database.py +3 -3
  38. pulumi_oci/database/get_pluggable_database.py +12 -1
  39. pulumi_oci/database/get_vm_cluster.py +15 -1
  40. pulumi_oci/database/outputs.py +1431 -74
  41. pulumi_oci/database/pluggable_database.py +34 -0
  42. pulumi_oci/database/vm_cluster.py +71 -0
  43. pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
  44. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
  45. pulumi_oci/datasafe/__init__.py +12 -0
  46. pulumi_oci/datasafe/_inputs.py +441 -0
  47. pulumi_oci/datasafe/get_reports.py +23 -1
  48. pulumi_oci/datasafe/get_sql_collection.py +392 -0
  49. pulumi_oci/datasafe/get_sql_collection_analytics.py +309 -0
  50. pulumi_oci/datasafe/get_sql_collection_log_insights.py +207 -0
  51. pulumi_oci/datasafe/get_sql_collections.py +364 -0
  52. pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +337 -0
  53. pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +250 -0
  54. pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +234 -0
  55. pulumi_oci/datasafe/get_sql_firewall_policies.py +386 -0
  56. pulumi_oci/datasafe/get_sql_firewall_policy.py +393 -0
  57. pulumi_oci/datasafe/get_sql_firewall_policy_analytics.py +305 -0
  58. pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +306 -0
  59. pulumi_oci/datasafe/get_sql_firewall_violations.py +208 -0
  60. pulumi_oci/datasafe/outputs.py +1808 -2
  61. pulumi_oci/desktops/_inputs.py +223 -7
  62. pulumi_oci/desktops/desktop_pool.py +186 -21
  63. pulumi_oci/desktops/get_desktop_pool.py +47 -5
  64. pulumi_oci/desktops/outputs.py +480 -19
  65. pulumi_oci/fleetappsmanagement/__init__.py +43 -0
  66. pulumi_oci/fleetappsmanagement/_inputs.py +2057 -0
  67. pulumi_oci/fleetappsmanagement/fleet.py +955 -0
  68. pulumi_oci/fleetappsmanagement/fleet_credential.py +615 -0
  69. pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
  70. pulumi_oci/fleetappsmanagement/fleet_resource.py +851 -0
  71. pulumi_oci/fleetappsmanagement/get_announcements.py +166 -0
  72. pulumi_oci/fleetappsmanagement/get_fleet.py +394 -0
  73. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +164 -0
  74. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +273 -0
  75. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +240 -0
  76. pulumi_oci/fleetappsmanagement/get_fleet_products.py +232 -0
  77. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +218 -0
  78. pulumi_oci/fleetappsmanagement/get_fleet_property.py +286 -0
  79. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +398 -0
  80. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +237 -0
  81. pulumi_oci/fleetappsmanagement/get_fleet_targets.py +232 -0
  82. pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
  83. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +311 -0
  84. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +365 -0
  85. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +199 -0
  86. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +123 -0
  87. pulumi_oci/fleetappsmanagement/get_onboardings.py +177 -0
  88. pulumi_oci/fleetappsmanagement/get_properties.py +221 -0
  89. pulumi_oci/fleetappsmanagement/get_property.py +323 -0
  90. pulumi_oci/fleetappsmanagement/get_runbook.py +377 -0
  91. pulumi_oci/fleetappsmanagement/get_runbooks.py +284 -0
  92. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +436 -0
  93. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +185 -0
  94. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +262 -0
  95. pulumi_oci/fleetappsmanagement/get_task_record.py +307 -0
  96. pulumi_oci/fleetappsmanagement/get_task_records.py +240 -0
  97. pulumi_oci/fleetappsmanagement/maintenance_window.py +935 -0
  98. pulumi_oci/fleetappsmanagement/onboarding.py +477 -0
  99. pulumi_oci/fleetappsmanagement/outputs.py +8128 -0
  100. pulumi_oci/fleetappsmanagement/property.py +697 -0
  101. pulumi_oci/fleetappsmanagement/scheduler_definition.py +1035 -0
  102. pulumi_oci/functions/get_fusion_environment_refresh_activity.py +15 -1
  103. pulumi_oci/functions/outputs.py +11 -0
  104. pulumi_oci/fusionapps/_inputs.py +21 -20
  105. pulumi_oci/fusionapps/fusion_environment.py +2 -2
  106. pulumi_oci/fusionapps/fusion_environment_admin_user.py +21 -22
  107. pulumi_oci/fusionapps/fusion_environment_refresh_activity.py +48 -51
  108. pulumi_oci/fusionapps/outputs.py +11 -10
  109. pulumi_oci/integration/__init__.py +1 -0
  110. pulumi_oci/integration/_inputs.py +289 -2
  111. pulumi_oci/integration/get_integration_instance.py +65 -1
  112. pulumi_oci/integration/integration_instance.py +172 -0
  113. pulumi_oci/integration/oracle_managed_custom_endpoint.py +307 -0
  114. pulumi_oci/integration/outputs.py +587 -19
  115. pulumi_oci/loadbalancer/_inputs.py +20 -0
  116. pulumi_oci/loadbalancer/listener.py +4 -2
  117. pulumi_oci/loadbalancer/outputs.py +16 -2
  118. pulumi_oci/monitoring/_inputs.py +137 -16
  119. pulumi_oci/monitoring/alarm_suppression.py +164 -35
  120. pulumi_oci/monitoring/get_alarm_statuses.py +5 -3
  121. pulumi_oci/monitoring/get_alarm_suppression.py +33 -3
  122. pulumi_oci/monitoring/get_alarm_suppressions.py +137 -14
  123. pulumi_oci/monitoring/outputs.py +291 -18
  124. pulumi_oci/mysql/mysql_db_system.py +7 -7
  125. pulumi_oci/objectstorage/__init__.py +3 -0
  126. pulumi_oci/objectstorage/_inputs.py +97 -0
  127. pulumi_oci/objectstorage/get_object_versions.py +6 -6
  128. pulumi_oci/objectstorage/get_objects.py +6 -6
  129. pulumi_oci/objectstorage/get_private_endpoint.py +263 -0
  130. pulumi_oci/objectstorage/get_private_endpoint_summaries.py +128 -0
  131. pulumi_oci/objectstorage/outputs.py +258 -0
  132. pulumi_oci/objectstorage/private_endpoint.py +630 -0
  133. pulumi_oci/objectstorage/storage_object.py +7 -7
  134. pulumi_oci/opsi/_inputs.py +268 -114
  135. pulumi_oci/opsi/database_insight.py +162 -21
  136. pulumi_oci/opsi/exadata_insight.py +44 -0
  137. pulumi_oci/opsi/get_database_insight.py +40 -1
  138. pulumi_oci/opsi/get_host_insights.py +2 -2
  139. pulumi_oci/opsi/host_insight.py +0 -48
  140. pulumi_oci/opsi/outputs.py +405 -109
  141. pulumi_oci/pulumi-plugin.json +1 -1
  142. pulumi_oci/securityattribute/__init__.py +15 -0
  143. pulumi_oci/securityattribute/_inputs.py +209 -0
  144. pulumi_oci/securityattribute/get_security_attribute.py +262 -0
  145. pulumi_oci/securityattribute/get_security_attribute_namespace.py +253 -0
  146. pulumi_oci/securityattribute/get_security_attribute_namespaces.py +210 -0
  147. pulumi_oci/securityattribute/get_security_attributes.py +169 -0
  148. pulumi_oci/securityattribute/outputs.py +466 -0
  149. pulumi_oci/securityattribute/security_attribute.py +588 -0
  150. pulumi_oci/securityattribute/security_attribute_namespace.py +609 -0
  151. pulumi_oci/stackmonitoring/__init__.py +5 -0
  152. pulumi_oci/stackmonitoring/_inputs.py +330 -0
  153. pulumi_oci/stackmonitoring/get_maintenance_window.py +254 -0
  154. pulumi_oci/stackmonitoring/get_maintenance_windows.py +210 -0
  155. pulumi_oci/stackmonitoring/maintenance_window.py +551 -0
  156. pulumi_oci/stackmonitoring/maintenance_windows_retry_failed_operation.py +217 -0
  157. pulumi_oci/stackmonitoring/maintenance_windows_stop.py +217 -0
  158. pulumi_oci/stackmonitoring/outputs.py +603 -0
  159. pulumi_oci/zpr/__init__.py +14 -0
  160. pulumi_oci/zpr/_inputs.py +79 -0
  161. pulumi_oci/zpr/configuration.py +516 -0
  162. pulumi_oci/zpr/get_configuration.py +230 -0
  163. pulumi_oci/zpr/get_zpr_policies.py +191 -0
  164. pulumi_oci/zpr/get_zpr_policy.py +264 -0
  165. pulumi_oci/zpr/outputs.py +203 -0
  166. pulumi_oci/zpr/zpr_policy.py +614 -0
  167. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/METADATA +1 -1
  168. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/RECORD +170 -95
  169. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/WHEEL +0 -0
  170. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/top_level.txt +0 -0
pulumi_oci/core/ipsec.py CHANGED
@@ -13,6 +13,8 @@ if sys.version_info >= (3, 11):
13
13
  else:
14
14
  from typing_extensions import NotRequired, TypedDict, TypeAlias
15
15
  from .. import _utilities
16
+ from . import outputs
17
+ from ._inputs import *
16
18
 
17
19
  __all__ = ['IpsecArgs', 'Ipsec']
18
20
 
@@ -27,7 +29,8 @@ class IpsecArgs:
27
29
  cpe_local_identifier_type: Optional[pulumi.Input[str]] = None,
28
30
  defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
29
31
  display_name: Optional[pulumi.Input[str]] = None,
30
- freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
32
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
33
+ tunnel_configurations: Optional[pulumi.Input[Sequence[pulumi.Input['IpsecTunnelConfigurationArgs']]]] = None):
31
34
  """
32
35
  The set of arguments for constructing a Ipsec resource.
33
36
  :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to contain the IPSec connection.
@@ -38,10 +41,6 @@ class IpsecArgs:
38
41
  Used for routing a given IPSec tunnel's traffic only if the tunnel is using static routing. If you configure at least one tunnel to use static routing, then you must provide at least one valid static route. If you configure both tunnels to use BGP dynamic routing, you can provide an empty list for the static routes on update. For more information, see the important note in [IPSecConnection](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/IPSecConnection/).
39
42
 
40
43
  Example: `10.0.1.0/24`
41
-
42
-
43
- ** IMPORTANT **
44
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
45
44
  :param pulumi.Input[str] cpe_local_identifier: (Updatable) Your identifier for your CPE device. Can be either an IP address or a hostname (specifically, the fully qualified domain name (FQDN)). The type of identifier you provide here must correspond to the value for `cpeLocalIdentifierType`.
46
45
 
47
46
  If you don't provide a value, the `ipAddress` attribute for the [Cpe](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Cpe/) object specified by `cpeId` is used as the `cpeLocalIdentifier`.
@@ -55,6 +54,18 @@ class IpsecArgs:
55
54
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
56
55
  :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
57
56
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
57
+ :param pulumi.Input[Sequence[pulumi.Input['IpsecTunnelConfigurationArgs']]] tunnel_configurations: (Non-updatable) Tunnel configuration for private ipsec connection over fastconnect.
58
+
59
+ Example: `
60
+ tunnel_configuration {
61
+ oracle_tunnel_ip = "10.1.5.5"
62
+ associated_virtual_circuits = [oci_core_virtual_circuit.test_ipsec_over_fc_virtual_circuit.id]
63
+ drg_route_table_id = oci_core_drg_route_table.test_drg_ipsec_over_fc_route_table.id
64
+ }`
65
+
66
+
67
+ ** IMPORTANT **
68
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
58
69
  """
59
70
  pulumi.set(__self__, "compartment_id", compartment_id)
60
71
  pulumi.set(__self__, "cpe_id", cpe_id)
@@ -70,6 +81,8 @@ class IpsecArgs:
70
81
  pulumi.set(__self__, "display_name", display_name)
71
82
  if freeform_tags is not None:
72
83
  pulumi.set(__self__, "freeform_tags", freeform_tags)
84
+ if tunnel_configurations is not None:
85
+ pulumi.set(__self__, "tunnel_configurations", tunnel_configurations)
73
86
 
74
87
  @property
75
88
  @pulumi.getter(name="compartmentId")
@@ -116,10 +129,6 @@ class IpsecArgs:
116
129
  Used for routing a given IPSec tunnel's traffic only if the tunnel is using static routing. If you configure at least one tunnel to use static routing, then you must provide at least one valid static route. If you configure both tunnels to use BGP dynamic routing, you can provide an empty list for the static routes on update. For more information, see the important note in [IPSecConnection](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/IPSecConnection/).
117
130
 
118
131
  Example: `10.0.1.0/24`
119
-
120
-
121
- ** IMPORTANT **
122
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
123
132
  """
124
133
  return pulumi.get(self, "static_routes")
125
134
 
@@ -195,6 +204,29 @@ class IpsecArgs:
195
204
  def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
196
205
  pulumi.set(self, "freeform_tags", value)
197
206
 
207
+ @property
208
+ @pulumi.getter(name="tunnelConfigurations")
209
+ def tunnel_configurations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['IpsecTunnelConfigurationArgs']]]]:
210
+ """
211
+ (Non-updatable) Tunnel configuration for private ipsec connection over fastconnect.
212
+
213
+ Example: `
214
+ tunnel_configuration {
215
+ oracle_tunnel_ip = "10.1.5.5"
216
+ associated_virtual_circuits = [oci_core_virtual_circuit.test_ipsec_over_fc_virtual_circuit.id]
217
+ drg_route_table_id = oci_core_drg_route_table.test_drg_ipsec_over_fc_route_table.id
218
+ }`
219
+
220
+
221
+ ** IMPORTANT **
222
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
223
+ """
224
+ return pulumi.get(self, "tunnel_configurations")
225
+
226
+ @tunnel_configurations.setter
227
+ def tunnel_configurations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['IpsecTunnelConfigurationArgs']]]]):
228
+ pulumi.set(self, "tunnel_configurations", value)
229
+
198
230
 
199
231
  @pulumi.input_type
200
232
  class _IpsecState:
@@ -210,7 +242,8 @@ class _IpsecState:
210
242
  state: Optional[pulumi.Input[str]] = None,
211
243
  static_routes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
212
244
  time_created: Optional[pulumi.Input[str]] = None,
213
- transport_type: Optional[pulumi.Input[str]] = None):
245
+ transport_type: Optional[pulumi.Input[str]] = None,
246
+ tunnel_configurations: Optional[pulumi.Input[Sequence[pulumi.Input['IpsecTunnelConfigurationArgs']]]] = None):
214
247
  """
215
248
  Input properties used for looking up and filtering Ipsec resources.
216
249
  :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to contain the IPSec connection.
@@ -235,12 +268,20 @@ class _IpsecState:
235
268
  Used for routing a given IPSec tunnel's traffic only if the tunnel is using static routing. If you configure at least one tunnel to use static routing, then you must provide at least one valid static route. If you configure both tunnels to use BGP dynamic routing, you can provide an empty list for the static routes on update. For more information, see the important note in [IPSecConnection](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/IPSecConnection/).
236
269
 
237
270
  Example: `10.0.1.0/24`
271
+ :param pulumi.Input[str] time_created: The date and time the IPSec connection was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
272
+ :param pulumi.Input[str] transport_type: The transport type used for the IPSec connection.
273
+ :param pulumi.Input[Sequence[pulumi.Input['IpsecTunnelConfigurationArgs']]] tunnel_configurations: (Non-updatable) Tunnel configuration for private ipsec connection over fastconnect.
274
+
275
+ Example: `
276
+ tunnel_configuration {
277
+ oracle_tunnel_ip = "10.1.5.5"
278
+ associated_virtual_circuits = [oci_core_virtual_circuit.test_ipsec_over_fc_virtual_circuit.id]
279
+ drg_route_table_id = oci_core_drg_route_table.test_drg_ipsec_over_fc_route_table.id
280
+ }`
238
281
 
239
282
 
240
283
  ** IMPORTANT **
241
284
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
242
- :param pulumi.Input[str] time_created: The date and time the IPSec connection was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
243
- :param pulumi.Input[str] transport_type: The transport type used for the IPSec connection.
244
285
  """
245
286
  if compartment_id is not None:
246
287
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -266,6 +307,8 @@ class _IpsecState:
266
307
  pulumi.set(__self__, "time_created", time_created)
267
308
  if transport_type is not None:
268
309
  pulumi.set(__self__, "transport_type", transport_type)
310
+ if tunnel_configurations is not None:
311
+ pulumi.set(__self__, "tunnel_configurations", tunnel_configurations)
269
312
 
270
313
  @property
271
314
  @pulumi.getter(name="compartmentId")
@@ -392,10 +435,6 @@ class _IpsecState:
392
435
  Used for routing a given IPSec tunnel's traffic only if the tunnel is using static routing. If you configure at least one tunnel to use static routing, then you must provide at least one valid static route. If you configure both tunnels to use BGP dynamic routing, you can provide an empty list for the static routes on update. For more information, see the important note in [IPSecConnection](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/IPSecConnection/).
393
436
 
394
437
  Example: `10.0.1.0/24`
395
-
396
-
397
- ** IMPORTANT **
398
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
399
438
  """
400
439
  return pulumi.get(self, "static_routes")
401
440
 
@@ -427,6 +466,29 @@ class _IpsecState:
427
466
  def transport_type(self, value: Optional[pulumi.Input[str]]):
428
467
  pulumi.set(self, "transport_type", value)
429
468
 
469
+ @property
470
+ @pulumi.getter(name="tunnelConfigurations")
471
+ def tunnel_configurations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['IpsecTunnelConfigurationArgs']]]]:
472
+ """
473
+ (Non-updatable) Tunnel configuration for private ipsec connection over fastconnect.
474
+
475
+ Example: `
476
+ tunnel_configuration {
477
+ oracle_tunnel_ip = "10.1.5.5"
478
+ associated_virtual_circuits = [oci_core_virtual_circuit.test_ipsec_over_fc_virtual_circuit.id]
479
+ drg_route_table_id = oci_core_drg_route_table.test_drg_ipsec_over_fc_route_table.id
480
+ }`
481
+
482
+
483
+ ** IMPORTANT **
484
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
485
+ """
486
+ return pulumi.get(self, "tunnel_configurations")
487
+
488
+ @tunnel_configurations.setter
489
+ def tunnel_configurations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['IpsecTunnelConfigurationArgs']]]]):
490
+ pulumi.set(self, "tunnel_configurations", value)
491
+
430
492
 
431
493
  class Ipsec(pulumi.CustomResource):
432
494
  @overload
@@ -442,6 +504,7 @@ class Ipsec(pulumi.CustomResource):
442
504
  drg_id: Optional[pulumi.Input[str]] = None,
443
505
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
444
506
  static_routes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
507
+ tunnel_configurations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['IpsecTunnelConfigurationArgs', 'IpsecTunnelConfigurationArgsDict']]]]] = None,
445
508
  __props__=None):
446
509
  """
447
510
  This resource provides the Ip Sec Connection resource in Oracle Cloud Infrastructure Core service.
@@ -476,6 +539,11 @@ class Ipsec(pulumi.CustomResource):
476
539
  (that is, the pre-shared key). For more information, see
477
540
  [CPE Configuration](https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/configuringCPE.htm).
478
541
 
542
+ To configure tunnel-specific information for private ipsec connection over fastconnect, use attribute `tunnel_configuration`.
543
+ You can provide configuration for maximum of 2 tunnels. You can configure each tunnel with `oracle_tunnel_ip`,
544
+ `associated_virtual_circuits` and `drg_route_table_id` at time of creation. These attributes cannot be updated using IPSec
545
+ connection APIs. To update drg route table id, use `Core.DrgAttachmentManagement` resource to update.
546
+
479
547
  ## Example Usage
480
548
 
481
549
  ```python
@@ -496,6 +564,32 @@ class Ipsec(pulumi.CustomResource):
496
564
  freeform_tags={
497
565
  "Department": "Finance",
498
566
  })
567
+ test_ip_sec_connection_over_fc = oci.core.Ipsec("test_ip_sec_connection_over_fc",
568
+ compartment_id=compartment_id,
569
+ cpe_id=test_cpe["id"],
570
+ drg_id=test_drg["id"],
571
+ static_routes=ip_sec_connection_static_routes,
572
+ cpe_local_identifier=ip_sec_connection_cpe_local_identifier,
573
+ cpe_local_identifier_type=ip_sec_connection_cpe_local_identifier_type,
574
+ defined_tags={
575
+ "Operations.CostCenter": "42",
576
+ },
577
+ display_name=ip_sec_connection_display_name,
578
+ freeform_tags={
579
+ "Department": "Finance",
580
+ },
581
+ tunnel_configurations=[
582
+ {
583
+ "oracle_tunnel_ip": "10.1.5.5",
584
+ "associated_virtual_circuits": [test_ipsec_over_fc_virtual_circuit["id"]],
585
+ "drg_route_table_id": test_drg_ipsec_over_fc_route_table["id"],
586
+ },
587
+ {
588
+ "oracle_tunnel_ip": "10.1.7.7",
589
+ "associated_virtual_circuits": [test_ipsec_over_fc_virtual_circuit["id"]],
590
+ "drg_route_table_id": test_drg_ipsec_over_fc_route_table["id"],
591
+ },
592
+ ])
499
593
  ```
500
594
 
501
595
  ## Import
@@ -529,6 +623,14 @@ class Ipsec(pulumi.CustomResource):
529
623
  Used for routing a given IPSec tunnel's traffic only if the tunnel is using static routing. If you configure at least one tunnel to use static routing, then you must provide at least one valid static route. If you configure both tunnels to use BGP dynamic routing, you can provide an empty list for the static routes on update. For more information, see the important note in [IPSecConnection](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/IPSecConnection/).
530
624
 
531
625
  Example: `10.0.1.0/24`
626
+ :param pulumi.Input[Sequence[pulumi.Input[Union['IpsecTunnelConfigurationArgs', 'IpsecTunnelConfigurationArgsDict']]]] tunnel_configurations: (Non-updatable) Tunnel configuration for private ipsec connection over fastconnect.
627
+
628
+ Example: `
629
+ tunnel_configuration {
630
+ oracle_tunnel_ip = "10.1.5.5"
631
+ associated_virtual_circuits = [oci_core_virtual_circuit.test_ipsec_over_fc_virtual_circuit.id]
632
+ drg_route_table_id = oci_core_drg_route_table.test_drg_ipsec_over_fc_route_table.id
633
+ }`
532
634
 
533
635
 
534
636
  ** IMPORTANT **
@@ -573,6 +675,11 @@ class Ipsec(pulumi.CustomResource):
573
675
  (that is, the pre-shared key). For more information, see
574
676
  [CPE Configuration](https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/configuringCPE.htm).
575
677
 
678
+ To configure tunnel-specific information for private ipsec connection over fastconnect, use attribute `tunnel_configuration`.
679
+ You can provide configuration for maximum of 2 tunnels. You can configure each tunnel with `oracle_tunnel_ip`,
680
+ `associated_virtual_circuits` and `drg_route_table_id` at time of creation. These attributes cannot be updated using IPSec
681
+ connection APIs. To update drg route table id, use `Core.DrgAttachmentManagement` resource to update.
682
+
576
683
  ## Example Usage
577
684
 
578
685
  ```python
@@ -593,6 +700,32 @@ class Ipsec(pulumi.CustomResource):
593
700
  freeform_tags={
594
701
  "Department": "Finance",
595
702
  })
703
+ test_ip_sec_connection_over_fc = oci.core.Ipsec("test_ip_sec_connection_over_fc",
704
+ compartment_id=compartment_id,
705
+ cpe_id=test_cpe["id"],
706
+ drg_id=test_drg["id"],
707
+ static_routes=ip_sec_connection_static_routes,
708
+ cpe_local_identifier=ip_sec_connection_cpe_local_identifier,
709
+ cpe_local_identifier_type=ip_sec_connection_cpe_local_identifier_type,
710
+ defined_tags={
711
+ "Operations.CostCenter": "42",
712
+ },
713
+ display_name=ip_sec_connection_display_name,
714
+ freeform_tags={
715
+ "Department": "Finance",
716
+ },
717
+ tunnel_configurations=[
718
+ {
719
+ "oracle_tunnel_ip": "10.1.5.5",
720
+ "associated_virtual_circuits": [test_ipsec_over_fc_virtual_circuit["id"]],
721
+ "drg_route_table_id": test_drg_ipsec_over_fc_route_table["id"],
722
+ },
723
+ {
724
+ "oracle_tunnel_ip": "10.1.7.7",
725
+ "associated_virtual_circuits": [test_ipsec_over_fc_virtual_circuit["id"]],
726
+ "drg_route_table_id": test_drg_ipsec_over_fc_route_table["id"],
727
+ },
728
+ ])
596
729
  ```
597
730
 
598
731
  ## Import
@@ -627,6 +760,7 @@ class Ipsec(pulumi.CustomResource):
627
760
  drg_id: Optional[pulumi.Input[str]] = None,
628
761
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
629
762
  static_routes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
763
+ tunnel_configurations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['IpsecTunnelConfigurationArgs', 'IpsecTunnelConfigurationArgsDict']]]]] = None,
630
764
  __props__=None):
631
765
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
632
766
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -653,6 +787,7 @@ class Ipsec(pulumi.CustomResource):
653
787
  if static_routes is None and not opts.urn:
654
788
  raise TypeError("Missing required property 'static_routes'")
655
789
  __props__.__dict__["static_routes"] = static_routes
790
+ __props__.__dict__["tunnel_configurations"] = tunnel_configurations
656
791
  __props__.__dict__["state"] = None
657
792
  __props__.__dict__["time_created"] = None
658
793
  __props__.__dict__["transport_type"] = None
@@ -677,7 +812,8 @@ class Ipsec(pulumi.CustomResource):
677
812
  state: Optional[pulumi.Input[str]] = None,
678
813
  static_routes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
679
814
  time_created: Optional[pulumi.Input[str]] = None,
680
- transport_type: Optional[pulumi.Input[str]] = None) -> 'Ipsec':
815
+ transport_type: Optional[pulumi.Input[str]] = None,
816
+ tunnel_configurations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['IpsecTunnelConfigurationArgs', 'IpsecTunnelConfigurationArgsDict']]]]] = None) -> 'Ipsec':
681
817
  """
682
818
  Get an existing Ipsec resource's state with the given name, id, and optional extra
683
819
  properties used to qualify the lookup.
@@ -707,12 +843,20 @@ class Ipsec(pulumi.CustomResource):
707
843
  Used for routing a given IPSec tunnel's traffic only if the tunnel is using static routing. If you configure at least one tunnel to use static routing, then you must provide at least one valid static route. If you configure both tunnels to use BGP dynamic routing, you can provide an empty list for the static routes on update. For more information, see the important note in [IPSecConnection](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/IPSecConnection/).
708
844
 
709
845
  Example: `10.0.1.0/24`
846
+ :param pulumi.Input[str] time_created: The date and time the IPSec connection was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
847
+ :param pulumi.Input[str] transport_type: The transport type used for the IPSec connection.
848
+ :param pulumi.Input[Sequence[pulumi.Input[Union['IpsecTunnelConfigurationArgs', 'IpsecTunnelConfigurationArgsDict']]]] tunnel_configurations: (Non-updatable) Tunnel configuration for private ipsec connection over fastconnect.
849
+
850
+ Example: `
851
+ tunnel_configuration {
852
+ oracle_tunnel_ip = "10.1.5.5"
853
+ associated_virtual_circuits = [oci_core_virtual_circuit.test_ipsec_over_fc_virtual_circuit.id]
854
+ drg_route_table_id = oci_core_drg_route_table.test_drg_ipsec_over_fc_route_table.id
855
+ }`
710
856
 
711
857
 
712
858
  ** IMPORTANT **
713
859
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
714
- :param pulumi.Input[str] time_created: The date and time the IPSec connection was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
715
- :param pulumi.Input[str] transport_type: The transport type used for the IPSec connection.
716
860
  """
717
861
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
718
862
 
@@ -730,6 +874,7 @@ class Ipsec(pulumi.CustomResource):
730
874
  __props__.__dict__["static_routes"] = static_routes
731
875
  __props__.__dict__["time_created"] = time_created
732
876
  __props__.__dict__["transport_type"] = transport_type
877
+ __props__.__dict__["tunnel_configurations"] = tunnel_configurations
733
878
  return Ipsec(resource_name, opts=opts, __props__=__props__)
734
879
 
735
880
  @property
@@ -821,10 +966,6 @@ class Ipsec(pulumi.CustomResource):
821
966
  Used for routing a given IPSec tunnel's traffic only if the tunnel is using static routing. If you configure at least one tunnel to use static routing, then you must provide at least one valid static route. If you configure both tunnels to use BGP dynamic routing, you can provide an empty list for the static routes on update. For more information, see the important note in [IPSecConnection](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/IPSecConnection/).
822
967
 
823
968
  Example: `10.0.1.0/24`
824
-
825
-
826
- ** IMPORTANT **
827
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
828
969
  """
829
970
  return pulumi.get(self, "static_routes")
830
971
 
@@ -844,3 +985,22 @@ class Ipsec(pulumi.CustomResource):
844
985
  """
845
986
  return pulumi.get(self, "transport_type")
846
987
 
988
+ @property
989
+ @pulumi.getter(name="tunnelConfigurations")
990
+ def tunnel_configurations(self) -> pulumi.Output[Sequence['outputs.IpsecTunnelConfiguration']]:
991
+ """
992
+ (Non-updatable) Tunnel configuration for private ipsec connection over fastconnect.
993
+
994
+ Example: `
995
+ tunnel_configuration {
996
+ oracle_tunnel_ip = "10.1.5.5"
997
+ associated_virtual_circuits = [oci_core_virtual_circuit.test_ipsec_over_fc_virtual_circuit.id]
998
+ drg_route_table_id = oci_core_drg_route_table.test_drg_ipsec_over_fc_route_table.id
999
+ }`
1000
+
1001
+
1002
+ ** IMPORTANT **
1003
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1004
+ """
1005
+ return pulumi.get(self, "tunnel_configurations")
1006
+
@@ -488,7 +488,7 @@ class NetworkSecurityGroupSecurityRule(pulumi.CustomResource):
488
488
  """
489
489
  This resource provides the Network Security Group Security Rule resource in Oracle Cloud Infrastructure Core service.
490
490
 
491
- Adds a security rule to the specified network security group.
491
+ Adds up to 25 security rules to the specified network security group. Adding more than 25 rules requires multiple operations.
492
492
 
493
493
  ## Example Usage
494
494
 
@@ -569,7 +569,7 @@ class NetworkSecurityGroupSecurityRule(pulumi.CustomResource):
569
569
  """
570
570
  This resource provides the Network Security Group Security Rule resource in Oracle Cloud Infrastructure Core service.
571
571
 
572
- Adds a security rule to the specified network security group.
572
+ Adds up to 25 security rules to the specified network security group. Adding more than 25 rules requires multiple operations.
573
573
 
574
574
  ## Example Usage
575
575