pulumi-oci 2.3.0a1721242122__py3-none-any.whl → 2.4.0__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 (89) hide show
  1. pulumi_oci/__init__.py +19 -11
  2. pulumi_oci/apmsynthetics/_inputs.py +457 -1
  3. pulumi_oci/apmsynthetics/config.py +172 -7
  4. pulumi_oci/apmsynthetics/get_monitor.py +42 -3
  5. pulumi_oci/apmsynthetics/get_monitors.py +2 -2
  6. pulumi_oci/apmsynthetics/outputs.py +1129 -9
  7. pulumi_oci/core/_inputs.py +8 -8
  8. pulumi_oci/core/outputs.py +24 -8
  9. pulumi_oci/database/_inputs.py +16 -0
  10. pulumi_oci/database/autonomous_database.py +83 -9
  11. pulumi_oci/database/cloud_autonomous_vm_cluster.py +7 -25
  12. pulumi_oci/database/cloud_exadata_infrastructure.py +66 -17
  13. pulumi_oci/database/cloud_vm_cluster.py +49 -0
  14. pulumi_oci/database/database.py +0 -96
  15. pulumi_oci/database/get_autonomous_database.py +25 -1
  16. pulumi_oci/database/get_cloud_exadata_infrastructure.py +14 -1
  17. pulumi_oci/database/get_cloud_vm_cluster.py +14 -1
  18. pulumi_oci/database/get_key_store.py +11 -1
  19. pulumi_oci/database/key_store.py +34 -0
  20. pulumi_oci/database/outputs.py +93 -0
  21. pulumi_oci/datasafe/__init__.py +1 -0
  22. pulumi_oci/datasafe/_inputs.py +130 -0
  23. pulumi_oci/datasafe/discovery_mod.py +67 -38
  24. pulumi_oci/datasafe/get_audit_events.py +2 -2
  25. pulumi_oci/datasafe/get_discovery_job.py +15 -1
  26. pulumi_oci/datasafe/get_report.py +1 -1
  27. pulumi_oci/datasafe/get_report_definition.py +1 -1
  28. pulumi_oci/datasafe/get_reports.py +43 -1
  29. pulumi_oci/datasafe/get_security_assessment.py +14 -1
  30. pulumi_oci/datasafe/get_security_assessment_finding.py +16 -3
  31. pulumi_oci/datasafe/get_security_assessment_findings.py +21 -3
  32. pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
  33. pulumi_oci/datasafe/get_sensitive_data_model_sensitive_types.py +153 -0
  34. pulumi_oci/datasafe/get_user_assessment.py +14 -1
  35. pulumi_oci/datasafe/outputs.py +530 -6
  36. pulumi_oci/datasafe/report.py +4 -4
  37. pulumi_oci/datasafe/report_definition.py +4 -4
  38. pulumi_oci/datasafe/security_assessment.py +49 -0
  39. pulumi_oci/datasafe/sensitive_data_model.py +60 -3
  40. pulumi_oci/datasafe/unset_security_assessment_baseline.py +69 -16
  41. pulumi_oci/datasafe/unset_user_assessment_baseline.py +58 -5
  42. pulumi_oci/datasafe/user_assessment.py +49 -0
  43. pulumi_oci/{emwarehouse → globallydistributeddatabase}/__init__.py +6 -6
  44. pulumi_oci/globallydistributeddatabase/_inputs.py +1003 -0
  45. pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +300 -0
  46. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +176 -0
  47. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +610 -0
  48. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +176 -0
  49. pulumi_oci/globallydistributeddatabase/outputs.py +2058 -0
  50. pulumi_oci/{emwarehouse/em_warehouse.py → globallydistributeddatabase/private_endpoint.py} +288 -267
  51. pulumi_oci/globallydistributeddatabase/sharded_database.py +1816 -0
  52. pulumi_oci/integration/_inputs.py +0 -2
  53. pulumi_oci/integration/get_integration_instance.py +0 -1
  54. pulumi_oci/integration/integration_instance.py +0 -27
  55. pulumi_oci/integration/outputs.py +4 -12
  56. pulumi_oci/opsi/_inputs.py +8 -8
  57. pulumi_oci/opsi/database_insight.py +71 -15
  58. pulumi_oci/opsi/get_database_insight.py +29 -3
  59. pulumi_oci/opsi/get_database_insights.py +1 -1
  60. pulumi_oci/opsi/get_enterprise_manager_bridges.py +2 -2
  61. pulumi_oci/opsi/get_host_insight.py +1 -4
  62. pulumi_oci/opsi/get_host_insights.py +3 -3
  63. pulumi_oci/opsi/get_news_report.py +1 -1
  64. pulumi_oci/opsi/get_news_reports.py +3 -3
  65. pulumi_oci/opsi/get_operations_insights_private_endpoint.py +1 -1
  66. pulumi_oci/opsi/get_operations_insights_private_endpoints.py +1 -1
  67. pulumi_oci/opsi/get_operations_insights_warehouse.py +7 -7
  68. pulumi_oci/opsi/get_operations_insights_warehouse_user.py +2 -2
  69. pulumi_oci/opsi/get_operations_insights_warehouses.py +5 -5
  70. pulumi_oci/opsi/host_insight.py +6 -14
  71. pulumi_oci/opsi/news_report.py +2 -2
  72. pulumi_oci/opsi/operations_insights_private_endpoint.py +9 -9
  73. pulumi_oci/opsi/operations_insights_warehouse.py +17 -17
  74. pulumi_oci/opsi/operations_insights_warehouse_download_warehouse_wallet.py +14 -14
  75. pulumi_oci/opsi/operations_insights_warehouse_rotate_warehouse_wallet.py +7 -7
  76. pulumi_oci/opsi/operations_insights_warehouse_user.py +14 -14
  77. pulumi_oci/opsi/outputs.py +46 -24
  78. pulumi_oci/pulumi-plugin.json +1 -1
  79. {pulumi_oci-2.3.0a1721242122.dist-info → pulumi_oci-2.4.0.dist-info}/METADATA +1 -1
  80. {pulumi_oci-2.3.0a1721242122.dist-info → pulumi_oci-2.4.0.dist-info}/RECORD +82 -81
  81. {pulumi_oci-2.3.0a1721242122.dist-info → pulumi_oci-2.4.0.dist-info}/WHEEL +1 -1
  82. pulumi_oci/emwarehouse/_inputs.py +0 -94
  83. pulumi_oci/emwarehouse/get_em_warehouse.py +0 -300
  84. pulumi_oci/emwarehouse/get_em_warehouses.py +0 -203
  85. pulumi_oci/emwarehouse/get_etl_run.py +0 -159
  86. pulumi_oci/emwarehouse/get_etl_runs.py +0 -173
  87. pulumi_oci/emwarehouse/get_resource_usage.py +0 -171
  88. pulumi_oci/emwarehouse/outputs.py +0 -616
  89. {pulumi_oci-2.3.0a1721242122.dist-info → pulumi_oci-2.4.0.dist-info}/top_level.txt +0 -0
@@ -352,7 +352,6 @@ class IntegrationInstanceNetworkEndpointDetailsArgs:
352
352
  :param pulumi.Input[Sequence[pulumi.Input[str]]] allowlisted_http_ips: Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
353
353
  :param pulumi.Input[Sequence[pulumi.Input['IntegrationInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgs']]] allowlisted_http_vcns: Virtual Cloud Networks allowed to access this network endpoint.
354
354
  :param pulumi.Input[bool] is_integration_vcn_allowlisted: The Integration service's VCN is allow-listed to allow integrations to call back into other integrations
355
- <<<<<<< HEAD
356
355
  """
357
356
  pulumi.set(__self__, "network_endpoint_type", network_endpoint_type)
358
357
  if allowlisted_http_ips is not None:
@@ -403,7 +402,6 @@ class IntegrationInstanceNetworkEndpointDetailsArgs:
403
402
  def is_integration_vcn_allowlisted(self) -> Optional[pulumi.Input[bool]]:
404
403
  """
405
404
  The Integration service's VCN is allow-listed to allow integrations to call back into other integrations
406
- <<<<<<< HEAD
407
405
  """
408
406
  return pulumi.get(self, "is_integration_vcn_allowlisted")
409
407
 
@@ -274,7 +274,6 @@ class GetIntegrationInstanceResult:
274
274
  def shape(self) -> str:
275
275
  """
276
276
  Shape
277
- >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
278
277
  """
279
278
  return pulumi.get(self, "shape")
280
279
 
@@ -46,15 +46,12 @@ class IntegrationInstanceArgs:
46
46
  :param pulumi.Input['IntegrationInstanceCustomEndpointArgs'] custom_endpoint: (Updatable) Details for a custom endpoint for the integration instance (update).
47
47
  :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"foo-namespace.bar-key": "value"}`
48
48
  :param pulumi.Input[str] domain_id: The OCID of the identity domain, that will be used to determine the corresponding Idcs Stripe and create an Idcs application within the stripe. This parameter is mutually exclusive with parameter: idcsAt, i.e only one of two parameters should be specified.
49
- :param pulumi.Input[int] enable_process_automation_trigger: (Updatable) An optional property when incremented triggers Enable Process Automation. Could be set to any integer value.
50
- ||||||| parent of c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
51
49
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
52
50
  :param pulumi.Input[str] idcs_at: (Updatable) IDCS Authentication token. This is required for all realms with IDCS. Its optional as its not required for non IDCS realms.
53
51
  :param pulumi.Input[bool] is_file_server_enabled: (Updatable) The file server is enabled or not.
54
52
  :param pulumi.Input[bool] is_visual_builder_enabled: (Updatable) Visual Builder is enabled or not.
55
53
  :param pulumi.Input['IntegrationInstanceNetworkEndpointDetailsArgs'] network_endpoint_details: Base representation of a network endpoint.
56
54
  :param pulumi.Input[str] shape: Shape
57
- >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
58
55
  :param pulumi.Input[str] state: (Updatable) The target state for the instance. Could be set to ACTIVE or INACTIVE
59
56
 
60
57
 
@@ -216,10 +213,6 @@ class IntegrationInstanceArgs:
216
213
  @property
217
214
  @pulumi.getter(name="enableProcessAutomationTrigger")
218
215
  def enable_process_automation_trigger(self) -> Optional[pulumi.Input[int]]:
219
- """
220
- (Updatable) An optional property when incremented triggers Enable Process Automation. Could be set to any integer value.
221
- ||||||| parent of c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
222
- """
223
216
  return pulumi.get(self, "enable_process_automation_trigger")
224
217
 
225
218
  @enable_process_automation_trigger.setter
@@ -291,7 +284,6 @@ class IntegrationInstanceArgs:
291
284
  def shape(self) -> Optional[pulumi.Input[str]]:
292
285
  """
293
286
  Shape
294
- >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
295
287
  """
296
288
  return pulumi.get(self, "shape")
297
289
 
@@ -354,8 +346,6 @@ class _IntegrationInstanceState:
354
346
  :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"foo-namespace.bar-key": "value"}`
355
347
  :param pulumi.Input[str] display_name: (Updatable) Integration Instance Identifier.
356
348
  :param pulumi.Input[str] domain_id: The OCID of the identity domain, that will be used to determine the corresponding Idcs Stripe and create an Idcs application within the stripe. This parameter is mutually exclusive with parameter: idcsAt, i.e only one of two parameters should be specified.
357
- :param pulumi.Input[int] enable_process_automation_trigger: (Updatable) An optional property when incremented triggers Enable Process Automation. Could be set to any integer value.
358
- ||||||| parent of c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
359
349
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
360
350
  :param pulumi.Input[str] idcs_at: (Updatable) IDCS Authentication token. This is required for all realms with IDCS. Its optional as its not required for non IDCS realms.
361
351
  :param pulumi.Input[Sequence[pulumi.Input['IntegrationInstanceIdcsInfoArgs']]] idcs_infos: Information for IDCS access
@@ -368,7 +358,6 @@ class _IntegrationInstanceState:
368
358
  :param pulumi.Input['IntegrationInstanceNetworkEndpointDetailsArgs'] network_endpoint_details: Base representation of a network endpoint.
369
359
  :param pulumi.Input[Sequence[pulumi.Input['IntegrationInstancePrivateEndpointOutboundConnectionArgs']]] private_endpoint_outbound_connections: Base representation for Outbound Connection (Reverse Connection).
370
360
  :param pulumi.Input[str] shape: Shape
371
- >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
372
361
  :param pulumi.Input[str] state: (Updatable) The target state for the instance. Could be set to ACTIVE or INACTIVE
373
362
 
374
363
 
@@ -528,10 +517,6 @@ class _IntegrationInstanceState:
528
517
  @property
529
518
  @pulumi.getter(name="enableProcessAutomationTrigger")
530
519
  def enable_process_automation_trigger(self) -> Optional[pulumi.Input[int]]:
531
- """
532
- (Updatable) An optional property when incremented triggers Enable Process Automation. Could be set to any integer value.
533
- ||||||| parent of c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
534
- """
535
520
  return pulumi.get(self, "enable_process_automation_trigger")
536
521
 
537
522
  @enable_process_automation_trigger.setter
@@ -675,7 +660,6 @@ class _IntegrationInstanceState:
675
660
  def shape(self) -> Optional[pulumi.Input[str]]:
676
661
  """
677
662
  Shape
678
- >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
679
663
  """
680
664
  return pulumi.get(self, "shape")
681
665
 
@@ -826,8 +810,6 @@ class IntegrationInstance(pulumi.CustomResource):
826
810
  :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"foo-namespace.bar-key": "value"}`
827
811
  :param pulumi.Input[str] display_name: (Updatable) Integration Instance Identifier.
828
812
  :param pulumi.Input[str] domain_id: The OCID of the identity domain, that will be used to determine the corresponding Idcs Stripe and create an Idcs application within the stripe. This parameter is mutually exclusive with parameter: idcsAt, i.e only one of two parameters should be specified.
829
- :param pulumi.Input[int] enable_process_automation_trigger: (Updatable) An optional property when incremented triggers Enable Process Automation. Could be set to any integer value.
830
- ||||||| parent of c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
831
813
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
832
814
  :param pulumi.Input[str] idcs_at: (Updatable) IDCS Authentication token. This is required for all realms with IDCS. Its optional as its not required for non IDCS realms.
833
815
  :param pulumi.Input[str] integration_instance_type: (Updatable) Standard or Enterprise type, Oracle Integration Generation 2 uses ENTERPRISE and STANDARD, Oracle Integration 3 uses ENTERPRISEX and STANDARDX
@@ -837,7 +819,6 @@ class IntegrationInstance(pulumi.CustomResource):
837
819
  :param pulumi.Input[int] message_packs: (Updatable) The number of configured message packs
838
820
  :param pulumi.Input[pulumi.InputType['IntegrationInstanceNetworkEndpointDetailsArgs']] network_endpoint_details: Base representation of a network endpoint.
839
821
  :param pulumi.Input[str] shape: Shape
840
- >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
841
822
  :param pulumi.Input[str] state: (Updatable) The target state for the instance. Could be set to ACTIVE or INACTIVE
842
823
 
843
824
 
@@ -1036,8 +1017,6 @@ class IntegrationInstance(pulumi.CustomResource):
1036
1017
  :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"foo-namespace.bar-key": "value"}`
1037
1018
  :param pulumi.Input[str] display_name: (Updatable) Integration Instance Identifier.
1038
1019
  :param pulumi.Input[str] domain_id: The OCID of the identity domain, that will be used to determine the corresponding Idcs Stripe and create an Idcs application within the stripe. This parameter is mutually exclusive with parameter: idcsAt, i.e only one of two parameters should be specified.
1039
- :param pulumi.Input[int] enable_process_automation_trigger: (Updatable) An optional property when incremented triggers Enable Process Automation. Could be set to any integer value.
1040
- ||||||| parent of c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
1041
1020
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
1042
1021
  :param pulumi.Input[str] idcs_at: (Updatable) IDCS Authentication token. This is required for all realms with IDCS. Its optional as its not required for non IDCS realms.
1043
1022
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['IntegrationInstanceIdcsInfoArgs']]]] idcs_infos: Information for IDCS access
@@ -1050,7 +1029,6 @@ class IntegrationInstance(pulumi.CustomResource):
1050
1029
  :param pulumi.Input[pulumi.InputType['IntegrationInstanceNetworkEndpointDetailsArgs']] network_endpoint_details: Base representation of a network endpoint.
1051
1030
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['IntegrationInstancePrivateEndpointOutboundConnectionArgs']]]] private_endpoint_outbound_connections: Base representation for Outbound Connection (Reverse Connection).
1052
1031
  :param pulumi.Input[str] shape: Shape
1053
- >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
1054
1032
  :param pulumi.Input[str] state: (Updatable) The target state for the instance. Could be set to ACTIVE or INACTIVE
1055
1033
 
1056
1034
 
@@ -1158,10 +1136,6 @@ class IntegrationInstance(pulumi.CustomResource):
1158
1136
  @property
1159
1137
  @pulumi.getter(name="enableProcessAutomationTrigger")
1160
1138
  def enable_process_automation_trigger(self) -> pulumi.Output[Optional[int]]:
1161
- """
1162
- (Updatable) An optional property when incremented triggers Enable Process Automation. Could be set to any integer value.
1163
- ||||||| parent of c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
1164
- """
1165
1139
  return pulumi.get(self, "enable_process_automation_trigger")
1166
1140
 
1167
1141
  @property
@@ -1257,7 +1231,6 @@ class IntegrationInstance(pulumi.CustomResource):
1257
1231
  def shape(self) -> pulumi.Output[str]:
1258
1232
  """
1259
1233
  Shape
1260
- >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
1261
1234
  """
1262
1235
  return pulumi.get(self, "shape")
1263
1236
 
@@ -407,7 +407,6 @@ class IntegrationInstanceNetworkEndpointDetails(dict):
407
407
  :param Sequence[str] allowlisted_http_ips: Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
408
408
  :param Sequence['IntegrationInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgs'] allowlisted_http_vcns: Virtual Cloud Networks allowed to access this network endpoint.
409
409
  :param bool is_integration_vcn_allowlisted: The Integration service's VCN is allow-listed to allow integrations to call back into other integrations
410
- <<<<<<< HEAD
411
410
  """
412
411
  pulumi.set(__self__, "network_endpoint_type", network_endpoint_type)
413
412
  if allowlisted_http_ips is not None:
@@ -446,7 +445,6 @@ class IntegrationInstanceNetworkEndpointDetails(dict):
446
445
  def is_integration_vcn_allowlisted(self) -> Optional[bool]:
447
446
  """
448
447
  The Integration service's VCN is allow-listed to allow integrations to call back into other integrations
449
- <<<<<<< HEAD
450
448
  """
451
449
  return pulumi.get(self, "is_integration_vcn_allowlisted")
452
450
 
@@ -805,8 +803,7 @@ class GetIntegrationInstanceNetworkEndpointDetailResult(dict):
805
803
  :param Sequence[str] allowlisted_http_ips: Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
806
804
  :param Sequence['GetIntegrationInstanceNetworkEndpointDetailAllowlistedHttpVcnArgs'] allowlisted_http_vcns: Virtual Cloud Networks allowed to access this network endpoint.
807
805
  :param bool is_integration_vcn_allowlisted: The Integration service's VCN is allow-listed to allow integrations to call back into other integrations
808
- :param str network_endpoint_type: The type of network endpoint.
809
- <<<<<<< HEAD
806
+ :param str network_endpoint_type: The type of network endpoint.
810
807
  """
811
808
  pulumi.set(__self__, "allowlisted_http_ips", allowlisted_http_ips)
812
809
  pulumi.set(__self__, "allowlisted_http_vcns", allowlisted_http_vcns)
@@ -841,8 +838,7 @@ class GetIntegrationInstanceNetworkEndpointDetailResult(dict):
841
838
  @pulumi.getter(name="networkEndpointType")
842
839
  def network_endpoint_type(self) -> str:
843
840
  """
844
- The type of network endpoint.
845
- <<<<<<< HEAD
841
+ The type of network endpoint.
846
842
  """
847
843
  return pulumi.get(self, "network_endpoint_type")
848
844
 
@@ -992,7 +988,6 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
992
988
  :param Sequence['GetIntegrationInstancesIntegrationInstanceNetworkEndpointDetailArgs'] network_endpoint_details: Base representation of a network endpoint.
993
989
  :param Sequence['GetIntegrationInstancesIntegrationInstancePrivateEndpointOutboundConnectionArgs'] private_endpoint_outbound_connections: Base representation for Outbound Connection (Reverse Connection).
994
990
  :param str shape: Shape
995
- >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
996
991
  :param str state: Life cycle state to query on.
997
992
  :param str state_message: An message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
998
993
  :param str time_created: The time the the Integration Instance was created. An RFC3339 formatted datetime string.
@@ -1189,7 +1184,6 @@ class GetIntegrationInstancesIntegrationInstanceResult(dict):
1189
1184
  def shape(self) -> str:
1190
1185
  """
1191
1186
  Shape
1192
- >>>>>>> c689349fc7 (Added - Support for Enabling outbound private access using PE RCE for OIC Gen3 customers)
1193
1187
  """
1194
1188
  return pulumi.get(self, "shape")
1195
1189
 
@@ -1469,8 +1463,7 @@ class GetIntegrationInstancesIntegrationInstanceNetworkEndpointDetailResult(dict
1469
1463
  :param Sequence[str] allowlisted_http_ips: Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
1470
1464
  :param Sequence['GetIntegrationInstancesIntegrationInstanceNetworkEndpointDetailAllowlistedHttpVcnArgs'] allowlisted_http_vcns: Virtual Cloud Networks allowed to access this network endpoint.
1471
1465
  :param bool is_integration_vcn_allowlisted: The Integration service's VCN is allow-listed to allow integrations to call back into other integrations
1472
- :param str network_endpoint_type: The type of network endpoint.
1473
- <<<<<<< HEAD
1466
+ :param str network_endpoint_type: The type of network endpoint.
1474
1467
  """
1475
1468
  pulumi.set(__self__, "allowlisted_http_ips", allowlisted_http_ips)
1476
1469
  pulumi.set(__self__, "allowlisted_http_vcns", allowlisted_http_vcns)
@@ -1505,8 +1498,7 @@ class GetIntegrationInstancesIntegrationInstanceNetworkEndpointDetailResult(dict
1505
1498
  @pulumi.getter(name="networkEndpointType")
1506
1499
  def network_endpoint_type(self) -> str:
1507
1500
  """
1508
- The type of network endpoint.
1509
- <<<<<<< HEAD
1501
+ The type of network endpoint.
1510
1502
  """
1511
1503
  return pulumi.get(self, "network_endpoint_type")
1512
1504
 
@@ -53,7 +53,7 @@ class DatabaseInsightConnectionCredentialDetailsArgs:
53
53
  :param pulumi.Input[str] password_secret_id: The secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) mapping to the database credentials.
54
54
  :param pulumi.Input[str] role: database user role.
55
55
  :param pulumi.Input[str] user_name: database user name.
56
- :param pulumi.Input[str] wallet_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database keystore contents are stored.
56
+ :param pulumi.Input[str] wallet_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database keystore contents are stored. This is used for TCPS support in BM/VM/ExaCS cases.
57
57
  """
58
58
  if credential_source_name is not None:
59
59
  pulumi.set(__self__, "credential_source_name", credential_source_name)
@@ -132,7 +132,7 @@ class DatabaseInsightConnectionCredentialDetailsArgs:
132
132
  @pulumi.getter(name="walletSecretId")
133
133
  def wallet_secret_id(self) -> Optional[pulumi.Input[str]]:
134
134
  """
135
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database keystore contents are stored.
135
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database keystore contents are stored. This is used for TCPS support in BM/VM/ExaCS cases.
136
136
  """
137
137
  return pulumi.get(self, "wallet_secret_id")
138
138
 
@@ -282,7 +282,7 @@ class DatabaseInsightCredentialDetailsArgs:
282
282
  :param pulumi.Input[str] password_secret_id: The secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) mapping to the database credentials.
283
283
  :param pulumi.Input[str] role: database user role.
284
284
  :param pulumi.Input[str] user_name: database user name.
285
- :param pulumi.Input[str] wallet_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database keystore contents are stored.
285
+ :param pulumi.Input[str] wallet_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database keystore contents are stored. This is used for TCPS support in BM/VM/ExaCS cases.
286
286
  """
287
287
  pulumi.set(__self__, "credential_type", credential_type)
288
288
  if credential_source_name is not None:
@@ -360,7 +360,7 @@ class DatabaseInsightCredentialDetailsArgs:
360
360
  @pulumi.getter(name="walletSecretId")
361
361
  def wallet_secret_id(self) -> Optional[pulumi.Input[str]]:
362
362
  """
363
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database keystore contents are stored.
363
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database keystore contents are stored. This is used for TCPS support in BM/VM/ExaCS cases.
364
364
  """
365
365
  return pulumi.get(self, "wallet_secret_id")
366
366
 
@@ -475,7 +475,7 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailArgs:
475
475
  """
476
476
  :param pulumi.Input[str] compartment_id: (Updatable) Compartment Identifier of database
477
477
  :param pulumi.Input['ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailsArgs'] connection_details: Connection details of the private endpoints.
478
- :param pulumi.Input['ExadataInsightMemberVmClusterDetailMemberDatabaseDetailCredentialDetailsArgs'] credential_details: User credential details to connect to the database. This is supplied via the External Database Service.
478
+ :param pulumi.Input['ExadataInsightMemberVmClusterDetailMemberDatabaseDetailCredentialDetailsArgs'] credential_details: User credential details to connect to the database.
479
479
  :param pulumi.Input[str] database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database.
480
480
  :param pulumi.Input[str] database_resource_type: Oracle Cloud Infrastructure database resource type
481
481
  :param pulumi.Input[str] dbm_private_endpoint_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Management private endpoint
@@ -542,7 +542,7 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailArgs:
542
542
  @pulumi.getter(name="credentialDetails")
543
543
  def credential_details(self) -> Optional[pulumi.Input['ExadataInsightMemberVmClusterDetailMemberDatabaseDetailCredentialDetailsArgs']]:
544
544
  """
545
- User credential details to connect to the database. This is supplied via the External Database Service.
545
+ User credential details to connect to the database.
546
546
  """
547
547
  return pulumi.get(self, "credential_details")
548
548
 
@@ -1671,7 +1671,7 @@ class GetOperationsInsightsWarehouseUsersFilterArgs:
1671
1671
  values: Sequence[str],
1672
1672
  regex: Optional[bool] = None):
1673
1673
  """
1674
- :param str name: Username for schema which would have access to AWR Data, Enterprise Manager Data and Operations Insights OPSI Hub.
1674
+ :param str name: Username for schema which would have access to AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
1675
1675
  """
1676
1676
  pulumi.set(__self__, "name", name)
1677
1677
  pulumi.set(__self__, "values", values)
@@ -1682,7 +1682,7 @@ class GetOperationsInsightsWarehouseUsersFilterArgs:
1682
1682
  @pulumi.getter
1683
1683
  def name(self) -> str:
1684
1684
  """
1685
- Username for schema which would have access to AWR Data, Enterprise Manager Data and Operations Insights OPSI Hub.
1685
+ Username for schema which would have access to AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
1686
1686
  """
1687
1687
  return pulumi.get(self, "name")
1688
1688
 
@@ -41,7 +41,7 @@ class DatabaseInsightArgs:
41
41
  :param pulumi.Input[str] entity_source: (Updatable) Source of the database entity.
42
42
  :param pulumi.Input['DatabaseInsightConnectionCredentialDetailsArgs'] connection_credential_details: User credential details to connect to the database. This is supplied via the External Database Service.
43
43
  :param pulumi.Input['DatabaseInsightConnectionDetailsArgs'] connection_details: Connection details of the private endpoints.
44
- :param pulumi.Input['DatabaseInsightCredentialDetailsArgs'] credential_details: User credential details to connect to the database. This is supplied via the External Database Service.
44
+ :param pulumi.Input['DatabaseInsightCredentialDetailsArgs'] credential_details: User credential details to connect to the database.
45
45
  :param pulumi.Input[str] database_connection_status_details: A message describing the status of the database connection of this resource. For example, it can be used to provide actionable information about the permission and content validity of the database connection.
46
46
  :param pulumi.Input[str] database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database.
47
47
  :param pulumi.Input[str] database_resource_type: Oracle Cloud Infrastructure database resource type
@@ -149,7 +149,7 @@ class DatabaseInsightArgs:
149
149
  @pulumi.getter(name="credentialDetails")
150
150
  def credential_details(self) -> Optional[pulumi.Input['DatabaseInsightCredentialDetailsArgs']]:
151
151
  """
152
- User credential details to connect to the database. This is supplied via the External Database Service.
152
+ User credential details to connect to the database.
153
153
  """
154
154
  return pulumi.get(self, "credential_details")
155
155
 
@@ -355,6 +355,8 @@ class _DatabaseInsightState:
355
355
  entity_source: Optional[pulumi.Input[str]] = None,
356
356
  exadata_insight_id: Optional[pulumi.Input[str]] = None,
357
357
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
358
+ is_heat_wave_cluster_attached: Optional[pulumi.Input[bool]] = None,
359
+ is_highly_available: Optional[pulumi.Input[bool]] = None,
358
360
  lifecycle_details: Optional[pulumi.Input[str]] = None,
359
361
  opsi_private_endpoint_id: Optional[pulumi.Input[str]] = None,
360
362
  parent_id: Optional[pulumi.Input[str]] = None,
@@ -371,13 +373,13 @@ class _DatabaseInsightState:
371
373
  :param pulumi.Input[str] compartment_id: (Updatable) Compartment Identifier of database
372
374
  :param pulumi.Input['DatabaseInsightConnectionCredentialDetailsArgs'] connection_credential_details: User credential details to connect to the database. This is supplied via the External Database Service.
373
375
  :param pulumi.Input['DatabaseInsightConnectionDetailsArgs'] connection_details: Connection details of the private endpoints.
374
- :param pulumi.Input['DatabaseInsightCredentialDetailsArgs'] credential_details: User credential details to connect to the database. This is supplied via the External Database Service.
376
+ :param pulumi.Input['DatabaseInsightCredentialDetailsArgs'] credential_details: User credential details to connect to the database.
375
377
  :param pulumi.Input[str] database_connection_status_details: A message describing the status of the database connection of this resource. For example, it can be used to provide actionable information about the permission and content validity of the database connection.
376
378
  :param pulumi.Input[str] database_display_name: Display name of database
377
379
  :param pulumi.Input[str] database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database.
378
380
  :param pulumi.Input[str] database_name: Name of database
379
381
  :param pulumi.Input[str] database_resource_type: Oracle Cloud Infrastructure database resource type
380
- :param pulumi.Input[str] database_type: Operations Insights internal representation of the database type.
382
+ :param pulumi.Input[str] database_type: Ops Insights internal representation of the database type.
381
383
  :param pulumi.Input[str] database_version: The version of the database.
382
384
  :param pulumi.Input[str] dbm_private_endpoint_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Management private endpoint. This field and opsi_private_endpoint_id are mutually exclusive. If DBM private endpoint ID is provided, a new OPSI private endpoint ID will be created.
383
385
  :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
@@ -391,6 +393,8 @@ class _DatabaseInsightState:
391
393
  :param pulumi.Input[str] entity_source: (Updatable) Source of the database entity.
392
394
  :param pulumi.Input[str] exadata_insight_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata insight.
393
395
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
396
+ :param pulumi.Input[bool] is_heat_wave_cluster_attached: Specifies if MYSQL DB System has heatwave cluster attached.
397
+ :param pulumi.Input[bool] is_highly_available: Specifies if MYSQL DB System is highly available.
394
398
  :param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
395
399
  :param pulumi.Input[str] opsi_private_endpoint_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the OPSI private endpoint
396
400
  :param pulumi.Input[str] parent_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM Cluster or DB System ID, depending on which configuration the resource belongs to.
@@ -403,7 +407,7 @@ class _DatabaseInsightState:
403
407
  ** IMPORTANT **
404
408
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values. The resource destruction here is basically a soft delete. User cannot create resource using the same EM managed bridge OCID. If resource is in enabled state during destruction, the resource will be disabled automatically before performing delete operation.
405
409
  :param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
406
- :param pulumi.Input[str] time_created: The time the the database insight was first enabled. An RFC3339 formatted datetime string
410
+ :param pulumi.Input[str] time_created: The time the database insight was first enabled. An RFC3339 formatted datetime string
407
411
  :param pulumi.Input[str] time_updated: The time the database insight was updated. An RFC3339 formatted datetime string
408
412
  """
409
413
  if compartment_id is not None:
@@ -452,6 +456,10 @@ class _DatabaseInsightState:
452
456
  pulumi.set(__self__, "exadata_insight_id", exadata_insight_id)
453
457
  if freeform_tags is not None:
454
458
  pulumi.set(__self__, "freeform_tags", freeform_tags)
459
+ if is_heat_wave_cluster_attached is not None:
460
+ pulumi.set(__self__, "is_heat_wave_cluster_attached", is_heat_wave_cluster_attached)
461
+ if is_highly_available is not None:
462
+ pulumi.set(__self__, "is_highly_available", is_highly_available)
455
463
  if lifecycle_details is not None:
456
464
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
457
465
  if opsi_private_endpoint_id is not None:
@@ -515,7 +523,7 @@ class _DatabaseInsightState:
515
523
  @pulumi.getter(name="credentialDetails")
516
524
  def credential_details(self) -> Optional[pulumi.Input['DatabaseInsightCredentialDetailsArgs']]:
517
525
  """
518
- User credential details to connect to the database. This is supplied via the External Database Service.
526
+ User credential details to connect to the database.
519
527
  """
520
528
  return pulumi.get(self, "credential_details")
521
529
 
@@ -587,7 +595,7 @@ class _DatabaseInsightState:
587
595
  @pulumi.getter(name="databaseType")
588
596
  def database_type(self) -> Optional[pulumi.Input[str]]:
589
597
  """
590
- Operations Insights internal representation of the database type.
598
+ Ops Insights internal representation of the database type.
591
599
  """
592
600
  return pulumi.get(self, "database_type")
593
601
 
@@ -751,6 +759,30 @@ class _DatabaseInsightState:
751
759
  def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
752
760
  pulumi.set(self, "freeform_tags", value)
753
761
 
762
+ @property
763
+ @pulumi.getter(name="isHeatWaveClusterAttached")
764
+ def is_heat_wave_cluster_attached(self) -> Optional[pulumi.Input[bool]]:
765
+ """
766
+ Specifies if MYSQL DB System has heatwave cluster attached.
767
+ """
768
+ return pulumi.get(self, "is_heat_wave_cluster_attached")
769
+
770
+ @is_heat_wave_cluster_attached.setter
771
+ def is_heat_wave_cluster_attached(self, value: Optional[pulumi.Input[bool]]):
772
+ pulumi.set(self, "is_heat_wave_cluster_attached", value)
773
+
774
+ @property
775
+ @pulumi.getter(name="isHighlyAvailable")
776
+ def is_highly_available(self) -> Optional[pulumi.Input[bool]]:
777
+ """
778
+ Specifies if MYSQL DB System is highly available.
779
+ """
780
+ return pulumi.get(self, "is_highly_available")
781
+
782
+ @is_highly_available.setter
783
+ def is_highly_available(self, value: Optional[pulumi.Input[bool]]):
784
+ pulumi.set(self, "is_highly_available", value)
785
+
754
786
  @property
755
787
  @pulumi.getter(name="lifecycleDetails")
756
788
  def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
@@ -866,7 +898,7 @@ class _DatabaseInsightState:
866
898
  @pulumi.getter(name="timeCreated")
867
899
  def time_created(self) -> Optional[pulumi.Input[str]]:
868
900
  """
869
- The time the the database insight was first enabled. An RFC3339 formatted datetime string
901
+ The time the database insight was first enabled. An RFC3339 formatted datetime string
870
902
  """
871
903
  return pulumi.get(self, "time_created")
872
904
 
@@ -928,7 +960,7 @@ class DatabaseInsight(pulumi.CustomResource):
928
960
  :param pulumi.Input[str] compartment_id: (Updatable) Compartment Identifier of database
929
961
  :param pulumi.Input[pulumi.InputType['DatabaseInsightConnectionCredentialDetailsArgs']] connection_credential_details: User credential details to connect to the database. This is supplied via the External Database Service.
930
962
  :param pulumi.Input[pulumi.InputType['DatabaseInsightConnectionDetailsArgs']] connection_details: Connection details of the private endpoints.
931
- :param pulumi.Input[pulumi.InputType['DatabaseInsightCredentialDetailsArgs']] credential_details: User credential details to connect to the database. This is supplied via the External Database Service.
963
+ :param pulumi.Input[pulumi.InputType['DatabaseInsightCredentialDetailsArgs']] credential_details: User credential details to connect to the database.
932
964
  :param pulumi.Input[str] database_connection_status_details: A message describing the status of the database connection of this resource. For example, it can be used to provide actionable information about the permission and content validity of the database connection.
933
965
  :param pulumi.Input[str] database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database.
934
966
  :param pulumi.Input[str] database_resource_type: Oracle Cloud Infrastructure database resource type
@@ -1038,6 +1070,8 @@ class DatabaseInsight(pulumi.CustomResource):
1038
1070
  __props__.__dict__["enterprise_manager_entity_display_name"] = None
1039
1071
  __props__.__dict__["enterprise_manager_entity_name"] = None
1040
1072
  __props__.__dict__["enterprise_manager_entity_type"] = None
1073
+ __props__.__dict__["is_heat_wave_cluster_attached"] = None
1074
+ __props__.__dict__["is_highly_available"] = None
1041
1075
  __props__.__dict__["lifecycle_details"] = None
1042
1076
  __props__.__dict__["parent_id"] = None
1043
1077
  __props__.__dict__["processor_count"] = None
@@ -1079,6 +1113,8 @@ class DatabaseInsight(pulumi.CustomResource):
1079
1113
  entity_source: Optional[pulumi.Input[str]] = None,
1080
1114
  exadata_insight_id: Optional[pulumi.Input[str]] = None,
1081
1115
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
1116
+ is_heat_wave_cluster_attached: Optional[pulumi.Input[bool]] = None,
1117
+ is_highly_available: Optional[pulumi.Input[bool]] = None,
1082
1118
  lifecycle_details: Optional[pulumi.Input[str]] = None,
1083
1119
  opsi_private_endpoint_id: Optional[pulumi.Input[str]] = None,
1084
1120
  parent_id: Optional[pulumi.Input[str]] = None,
@@ -1100,13 +1136,13 @@ class DatabaseInsight(pulumi.CustomResource):
1100
1136
  :param pulumi.Input[str] compartment_id: (Updatable) Compartment Identifier of database
1101
1137
  :param pulumi.Input[pulumi.InputType['DatabaseInsightConnectionCredentialDetailsArgs']] connection_credential_details: User credential details to connect to the database. This is supplied via the External Database Service.
1102
1138
  :param pulumi.Input[pulumi.InputType['DatabaseInsightConnectionDetailsArgs']] connection_details: Connection details of the private endpoints.
1103
- :param pulumi.Input[pulumi.InputType['DatabaseInsightCredentialDetailsArgs']] credential_details: User credential details to connect to the database. This is supplied via the External Database Service.
1139
+ :param pulumi.Input[pulumi.InputType['DatabaseInsightCredentialDetailsArgs']] credential_details: User credential details to connect to the database.
1104
1140
  :param pulumi.Input[str] database_connection_status_details: A message describing the status of the database connection of this resource. For example, it can be used to provide actionable information about the permission and content validity of the database connection.
1105
1141
  :param pulumi.Input[str] database_display_name: Display name of database
1106
1142
  :param pulumi.Input[str] database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database.
1107
1143
  :param pulumi.Input[str] database_name: Name of database
1108
1144
  :param pulumi.Input[str] database_resource_type: Oracle Cloud Infrastructure database resource type
1109
- :param pulumi.Input[str] database_type: Operations Insights internal representation of the database type.
1145
+ :param pulumi.Input[str] database_type: Ops Insights internal representation of the database type.
1110
1146
  :param pulumi.Input[str] database_version: The version of the database.
1111
1147
  :param pulumi.Input[str] dbm_private_endpoint_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Management private endpoint. This field and opsi_private_endpoint_id are mutually exclusive. If DBM private endpoint ID is provided, a new OPSI private endpoint ID will be created.
1112
1148
  :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
@@ -1120,6 +1156,8 @@ class DatabaseInsight(pulumi.CustomResource):
1120
1156
  :param pulumi.Input[str] entity_source: (Updatable) Source of the database entity.
1121
1157
  :param pulumi.Input[str] exadata_insight_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata insight.
1122
1158
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
1159
+ :param pulumi.Input[bool] is_heat_wave_cluster_attached: Specifies if MYSQL DB System has heatwave cluster attached.
1160
+ :param pulumi.Input[bool] is_highly_available: Specifies if MYSQL DB System is highly available.
1123
1161
  :param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
1124
1162
  :param pulumi.Input[str] opsi_private_endpoint_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the OPSI private endpoint
1125
1163
  :param pulumi.Input[str] parent_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM Cluster or DB System ID, depending on which configuration the resource belongs to.
@@ -1132,7 +1170,7 @@ class DatabaseInsight(pulumi.CustomResource):
1132
1170
  ** IMPORTANT **
1133
1171
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values. The resource destruction here is basically a soft delete. User cannot create resource using the same EM managed bridge OCID. If resource is in enabled state during destruction, the resource will be disabled automatically before performing delete operation.
1134
1172
  :param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
1135
- :param pulumi.Input[str] time_created: The time the the database insight was first enabled. An RFC3339 formatted datetime string
1173
+ :param pulumi.Input[str] time_created: The time the database insight was first enabled. An RFC3339 formatted datetime string
1136
1174
  :param pulumi.Input[str] time_updated: The time the database insight was updated. An RFC3339 formatted datetime string
1137
1175
  """
1138
1176
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -1162,6 +1200,8 @@ class DatabaseInsight(pulumi.CustomResource):
1162
1200
  __props__.__dict__["entity_source"] = entity_source
1163
1201
  __props__.__dict__["exadata_insight_id"] = exadata_insight_id
1164
1202
  __props__.__dict__["freeform_tags"] = freeform_tags
1203
+ __props__.__dict__["is_heat_wave_cluster_attached"] = is_heat_wave_cluster_attached
1204
+ __props__.__dict__["is_highly_available"] = is_highly_available
1165
1205
  __props__.__dict__["lifecycle_details"] = lifecycle_details
1166
1206
  __props__.__dict__["opsi_private_endpoint_id"] = opsi_private_endpoint_id
1167
1207
  __props__.__dict__["parent_id"] = parent_id
@@ -1203,7 +1243,7 @@ class DatabaseInsight(pulumi.CustomResource):
1203
1243
  @pulumi.getter(name="credentialDetails")
1204
1244
  def credential_details(self) -> pulumi.Output[Optional['outputs.DatabaseInsightCredentialDetails']]:
1205
1245
  """
1206
- User credential details to connect to the database. This is supplied via the External Database Service.
1246
+ User credential details to connect to the database.
1207
1247
  """
1208
1248
  return pulumi.get(self, "credential_details")
1209
1249
 
@@ -1251,7 +1291,7 @@ class DatabaseInsight(pulumi.CustomResource):
1251
1291
  @pulumi.getter(name="databaseType")
1252
1292
  def database_type(self) -> pulumi.Output[str]:
1253
1293
  """
1254
- Operations Insights internal representation of the database type.
1294
+ Ops Insights internal representation of the database type.
1255
1295
  """
1256
1296
  return pulumi.get(self, "database_type")
1257
1297
 
@@ -1359,6 +1399,22 @@ class DatabaseInsight(pulumi.CustomResource):
1359
1399
  """
1360
1400
  return pulumi.get(self, "freeform_tags")
1361
1401
 
1402
+ @property
1403
+ @pulumi.getter(name="isHeatWaveClusterAttached")
1404
+ def is_heat_wave_cluster_attached(self) -> pulumi.Output[bool]:
1405
+ """
1406
+ Specifies if MYSQL DB System has heatwave cluster attached.
1407
+ """
1408
+ return pulumi.get(self, "is_heat_wave_cluster_attached")
1409
+
1410
+ @property
1411
+ @pulumi.getter(name="isHighlyAvailable")
1412
+ def is_highly_available(self) -> pulumi.Output[bool]:
1413
+ """
1414
+ Specifies if MYSQL DB System is highly available.
1415
+ """
1416
+ return pulumi.get(self, "is_highly_available")
1417
+
1362
1418
  @property
1363
1419
  @pulumi.getter(name="lifecycleDetails")
1364
1420
  def lifecycle_details(self) -> pulumi.Output[str]:
@@ -1438,7 +1494,7 @@ class DatabaseInsight(pulumi.CustomResource):
1438
1494
  @pulumi.getter(name="timeCreated")
1439
1495
  def time_created(self) -> pulumi.Output[str]:
1440
1496
  """
1441
- The time the the database insight was first enabled. An RFC3339 formatted datetime string
1497
+ The time the database insight was first enabled. An RFC3339 formatted datetime string
1442
1498
  """
1443
1499
  return pulumi.get(self, "time_created")
1444
1500
 
@@ -22,7 +22,7 @@ class GetDatabaseInsightResult:
22
22
  """
23
23
  A collection of values returned by getDatabaseInsight.
24
24
  """
25
- def __init__(__self__, compartment_id=None, connection_credential_details=None, connection_details=None, credential_details=None, database_connection_status_details=None, database_display_name=None, database_id=None, database_insight_id=None, database_name=None, database_resource_type=None, database_type=None, database_version=None, dbm_private_endpoint_id=None, defined_tags=None, deployment_type=None, enterprise_manager_bridge_id=None, enterprise_manager_entity_display_name=None, enterprise_manager_entity_identifier=None, enterprise_manager_entity_name=None, enterprise_manager_entity_type=None, enterprise_manager_identifier=None, entity_source=None, exadata_insight_id=None, freeform_tags=None, id=None, lifecycle_details=None, opsi_private_endpoint_id=None, parent_id=None, processor_count=None, root_id=None, service_name=None, state=None, status=None, system_tags=None, time_created=None, time_updated=None):
25
+ def __init__(__self__, compartment_id=None, connection_credential_details=None, connection_details=None, credential_details=None, database_connection_status_details=None, database_display_name=None, database_id=None, database_insight_id=None, database_name=None, database_resource_type=None, database_type=None, database_version=None, dbm_private_endpoint_id=None, defined_tags=None, deployment_type=None, enterprise_manager_bridge_id=None, enterprise_manager_entity_display_name=None, enterprise_manager_entity_identifier=None, enterprise_manager_entity_name=None, enterprise_manager_entity_type=None, enterprise_manager_identifier=None, entity_source=None, exadata_insight_id=None, freeform_tags=None, id=None, is_heat_wave_cluster_attached=None, is_highly_available=None, lifecycle_details=None, opsi_private_endpoint_id=None, parent_id=None, processor_count=None, root_id=None, service_name=None, state=None, status=None, system_tags=None, time_created=None, time_updated=None):
26
26
  if compartment_id and not isinstance(compartment_id, str):
27
27
  raise TypeError("Expected argument 'compartment_id' to be a str")
28
28
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -98,6 +98,12 @@ class GetDatabaseInsightResult:
98
98
  if id and not isinstance(id, str):
99
99
  raise TypeError("Expected argument 'id' to be a str")
100
100
  pulumi.set(__self__, "id", id)
101
+ if is_heat_wave_cluster_attached and not isinstance(is_heat_wave_cluster_attached, bool):
102
+ raise TypeError("Expected argument 'is_heat_wave_cluster_attached' to be a bool")
103
+ pulumi.set(__self__, "is_heat_wave_cluster_attached", is_heat_wave_cluster_attached)
104
+ if is_highly_available and not isinstance(is_highly_available, bool):
105
+ raise TypeError("Expected argument 'is_highly_available' to be a bool")
106
+ pulumi.set(__self__, "is_highly_available", is_highly_available)
101
107
  if lifecycle_details and not isinstance(lifecycle_details, str):
102
108
  raise TypeError("Expected argument 'lifecycle_details' to be a str")
103
109
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
@@ -144,7 +150,7 @@ class GetDatabaseInsightResult:
144
150
  @pulumi.getter(name="connectionCredentialDetails")
145
151
  def connection_credential_details(self) -> Sequence['outputs.GetDatabaseInsightConnectionCredentialDetailResult']:
146
152
  """
147
- User credential details to connect to the database. This is supplied via the External Database Service.
153
+ User credential details to connect to the database.
148
154
  """
149
155
  return pulumi.get(self, "connection_credential_details")
150
156
 
@@ -213,7 +219,7 @@ class GetDatabaseInsightResult:
213
219
  @pulumi.getter(name="databaseType")
214
220
  def database_type(self) -> str:
215
221
  """
216
- Operations Insights internal representation of the database type.
222
+ Ops Insights internal representation of the database type.
217
223
  """
218
224
  return pulumi.get(self, "database_type")
219
225
 
@@ -323,6 +329,22 @@ class GetDatabaseInsightResult:
323
329
  """
324
330
  return pulumi.get(self, "id")
325
331
 
332
+ @property
333
+ @pulumi.getter(name="isHeatWaveClusterAttached")
334
+ def is_heat_wave_cluster_attached(self) -> bool:
335
+ """
336
+ Specifies if MYSQL DB System has heatwave cluster attached.
337
+ """
338
+ return pulumi.get(self, "is_heat_wave_cluster_attached")
339
+
340
+ @property
341
+ @pulumi.getter(name="isHighlyAvailable")
342
+ def is_highly_available(self) -> bool:
343
+ """
344
+ Specifies if MYSQL DB System is highly available.
345
+ """
346
+ return pulumi.get(self, "is_highly_available")
347
+
326
348
  @property
327
349
  @pulumi.getter(name="lifecycleDetails")
328
350
  def lifecycle_details(self) -> str:
@@ -443,6 +465,8 @@ class AwaitableGetDatabaseInsightResult(GetDatabaseInsightResult):
443
465
  exadata_insight_id=self.exadata_insight_id,
444
466
  freeform_tags=self.freeform_tags,
445
467
  id=self.id,
468
+ is_heat_wave_cluster_attached=self.is_heat_wave_cluster_attached,
469
+ is_highly_available=self.is_highly_available,
446
470
  lifecycle_details=self.lifecycle_details,
447
471
  opsi_private_endpoint_id=self.opsi_private_endpoint_id,
448
472
  parent_id=self.parent_id,
@@ -506,6 +530,8 @@ def get_database_insight(database_insight_id: Optional[str] = None,
506
530
  exadata_insight_id=pulumi.get(__ret__, 'exadata_insight_id'),
507
531
  freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
508
532
  id=pulumi.get(__ret__, 'id'),
533
+ is_heat_wave_cluster_attached=pulumi.get(__ret__, 'is_heat_wave_cluster_attached'),
534
+ is_highly_available=pulumi.get(__ret__, 'is_highly_available'),
509
535
  lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
510
536
  opsi_private_endpoint_id=pulumi.get(__ret__, 'opsi_private_endpoint_id'),
511
537
  parent_id=pulumi.get(__ret__, 'parent_id'),