pulumi-oci 2.12.0a1728593306__py3-none-any.whl → 2.13.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 (220) hide show
  1. pulumi_oci/__init__.py +169 -19
  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/containerengine/_inputs.py +341 -0
  6. pulumi_oci/containerengine/cluster.py +64 -0
  7. pulumi_oci/containerengine/get_cluster.py +12 -1
  8. pulumi_oci/containerengine/outputs.py +582 -0
  9. pulumi_oci/core/_inputs.py +947 -196
  10. pulumi_oci/core/boot_volume.py +90 -5
  11. pulumi_oci/core/cluster_network.py +7 -7
  12. pulumi_oci/core/get_block_volume_replica.py +15 -1
  13. pulumi_oci/core/get_boot_volume.py +15 -4
  14. pulumi_oci/core/get_boot_volume_replica.py +15 -1
  15. pulumi_oci/core/get_instance.py +29 -1
  16. pulumi_oci/core/get_vcn.py +15 -1
  17. pulumi_oci/core/get_vnic.py +15 -1
  18. pulumi_oci/core/get_volume.py +18 -4
  19. pulumi_oci/core/instance.py +87 -0
  20. pulumi_oci/core/instance_configuration.py +16 -0
  21. pulumi_oci/core/ipsec.py +183 -23
  22. pulumi_oci/core/network_security_group_security_rule.py +2 -2
  23. pulumi_oci/core/outputs.py +1282 -153
  24. pulumi_oci/core/service_gateway.py +13 -7
  25. pulumi_oci/core/vcn.py +65 -23
  26. pulumi_oci/core/virtual_network.py +35 -1
  27. pulumi_oci/core/vnic_attachment.py +2 -0
  28. pulumi_oci/core/volume.py +110 -12
  29. pulumi_oci/core/volume_backup_policy_assignment.py +68 -19
  30. pulumi_oci/core/volume_group.py +56 -5
  31. pulumi_oci/database/_inputs.py +905 -27
  32. pulumi_oci/database/autonomous_database.py +48 -28
  33. pulumi_oci/database/autonomous_database_backup.py +12 -12
  34. pulumi_oci/database/autonomous_exadata_infrastructure.py +2 -0
  35. pulumi_oci/database/autonomous_vm_cluster.py +2 -0
  36. pulumi_oci/database/backup.py +12 -12
  37. pulumi_oci/database/cloud_autonomous_vm_cluster.py +2 -0
  38. pulumi_oci/database/cloud_exadata_infrastructure.py +2 -0
  39. pulumi_oci/database/cloud_vm_cluster.py +71 -0
  40. pulumi_oci/database/database.py +15 -15
  41. pulumi_oci/database/database_upgrade.py +12 -12
  42. pulumi_oci/database/db_system.py +9 -9
  43. pulumi_oci/database/exadata_infrastructure.py +2 -0
  44. pulumi_oci/database/get_autonomous_container_database.py +1 -1
  45. pulumi_oci/database/get_autonomous_database.py +18 -4
  46. pulumi_oci/database/get_autonomous_database_backup.py +3 -3
  47. pulumi_oci/database/get_autonomous_databases.py +88 -5
  48. pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
  49. pulumi_oci/database/get_database.py +3 -3
  50. pulumi_oci/database/get_pluggable_database.py +12 -1
  51. pulumi_oci/database/get_vm_cluster.py +15 -1
  52. pulumi_oci/database/outputs.py +1431 -74
  53. pulumi_oci/database/pluggable_database.py +34 -0
  54. pulumi_oci/database/vm_cluster.py +71 -0
  55. pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
  56. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
  57. pulumi_oci/datasafe/__init__.py +13 -0
  58. pulumi_oci/datasafe/_inputs.py +441 -0
  59. pulumi_oci/datasafe/generate_on_prem_connector_configuration.py +271 -0
  60. pulumi_oci/datasafe/get_reports.py +23 -1
  61. pulumi_oci/datasafe/get_sql_collection.py +392 -0
  62. pulumi_oci/datasafe/get_sql_collection_analytics.py +309 -0
  63. pulumi_oci/datasafe/get_sql_collection_log_insights.py +207 -0
  64. pulumi_oci/datasafe/get_sql_collections.py +364 -0
  65. pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +337 -0
  66. pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +250 -0
  67. pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +234 -0
  68. pulumi_oci/datasafe/get_sql_firewall_policies.py +386 -0
  69. pulumi_oci/datasafe/get_sql_firewall_policy.py +393 -0
  70. pulumi_oci/datasafe/get_sql_firewall_policy_analytics.py +305 -0
  71. pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +306 -0
  72. pulumi_oci/datasafe/get_sql_firewall_violations.py +208 -0
  73. pulumi_oci/datasafe/outputs.py +1808 -2
  74. pulumi_oci/desktops/_inputs.py +395 -17
  75. pulumi_oci/desktops/desktop_pool.py +253 -21
  76. pulumi_oci/desktops/get_desktop_pool.py +62 -5
  77. pulumi_oci/desktops/outputs.py +807 -25
  78. pulumi_oci/dns/__init__.py +2 -0
  79. pulumi_oci/dns/_inputs.py +1157 -12
  80. pulumi_oci/dns/action_create_zone_from_zone_file.py +42 -2
  81. pulumi_oci/dns/get_records.py +45 -13
  82. pulumi_oci/dns/get_resolver.py +8 -6
  83. pulumi_oci/dns/get_resolver_endpoint.py +8 -6
  84. pulumi_oci/dns/get_resolver_endpoints.py +2 -2
  85. pulumi_oci/dns/get_resolvers.py +12 -12
  86. pulumi_oci/dns/get_rrset.py +16 -16
  87. pulumi_oci/dns/get_rrsets.py +12 -10
  88. pulumi_oci/dns/get_view.py +8 -4
  89. pulumi_oci/dns/get_views.py +12 -12
  90. pulumi_oci/dns/get_zones.py +33 -13
  91. pulumi_oci/dns/outputs.py +1388 -79
  92. pulumi_oci/dns/record.py +12 -12
  93. pulumi_oci/dns/resolver.py +7 -7
  94. pulumi_oci/dns/resolver_endpoint.py +2 -2
  95. pulumi_oci/dns/rrset.py +50 -41
  96. pulumi_oci/dns/zone.py +176 -17
  97. pulumi_oci/dns/zone_promote_dnssec_key_version.py +328 -0
  98. pulumi_oci/dns/zone_stage_dnssec_key_version.py +318 -0
  99. pulumi_oci/fleetappsmanagement/__init__.py +43 -0
  100. pulumi_oci/fleetappsmanagement/_inputs.py +2057 -0
  101. pulumi_oci/fleetappsmanagement/fleet.py +955 -0
  102. pulumi_oci/fleetappsmanagement/fleet_credential.py +615 -0
  103. pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
  104. pulumi_oci/fleetappsmanagement/fleet_resource.py +851 -0
  105. pulumi_oci/fleetappsmanagement/get_announcements.py +166 -0
  106. pulumi_oci/fleetappsmanagement/get_fleet.py +394 -0
  107. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +164 -0
  108. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +273 -0
  109. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +240 -0
  110. pulumi_oci/fleetappsmanagement/get_fleet_products.py +232 -0
  111. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +218 -0
  112. pulumi_oci/fleetappsmanagement/get_fleet_property.py +286 -0
  113. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +398 -0
  114. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +237 -0
  115. pulumi_oci/fleetappsmanagement/get_fleet_targets.py +232 -0
  116. pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
  117. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +311 -0
  118. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +365 -0
  119. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +199 -0
  120. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +123 -0
  121. pulumi_oci/fleetappsmanagement/get_onboardings.py +177 -0
  122. pulumi_oci/fleetappsmanagement/get_properties.py +221 -0
  123. pulumi_oci/fleetappsmanagement/get_property.py +323 -0
  124. pulumi_oci/fleetappsmanagement/get_runbook.py +377 -0
  125. pulumi_oci/fleetappsmanagement/get_runbooks.py +284 -0
  126. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +436 -0
  127. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +185 -0
  128. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +262 -0
  129. pulumi_oci/fleetappsmanagement/get_task_record.py +307 -0
  130. pulumi_oci/fleetappsmanagement/get_task_records.py +240 -0
  131. pulumi_oci/fleetappsmanagement/maintenance_window.py +935 -0
  132. pulumi_oci/fleetappsmanagement/onboarding.py +477 -0
  133. pulumi_oci/fleetappsmanagement/outputs.py +8128 -0
  134. pulumi_oci/fleetappsmanagement/property.py +697 -0
  135. pulumi_oci/fleetappsmanagement/scheduler_definition.py +1035 -0
  136. pulumi_oci/functions/get_fusion_environment_refresh_activity.py +15 -1
  137. pulumi_oci/functions/outputs.py +11 -0
  138. pulumi_oci/fusionapps/_inputs.py +21 -20
  139. pulumi_oci/fusionapps/fusion_environment.py +2 -2
  140. pulumi_oci/fusionapps/fusion_environment_admin_user.py +21 -22
  141. pulumi_oci/fusionapps/fusion_environment_refresh_activity.py +48 -51
  142. pulumi_oci/fusionapps/outputs.py +11 -10
  143. pulumi_oci/goldengate/__init__.py +1 -0
  144. pulumi_oci/goldengate/_inputs.py +165 -0
  145. pulumi_oci/goldengate/connection.py +49 -35
  146. pulumi_oci/goldengate/database_registration.py +7 -7
  147. pulumi_oci/goldengate/deployment.py +79 -4
  148. pulumi_oci/goldengate/get_deployment.py +30 -2
  149. pulumi_oci/goldengate/get_deployment_environments.py +144 -0
  150. pulumi_oci/goldengate/outputs.py +409 -2
  151. pulumi_oci/integration/__init__.py +1 -0
  152. pulumi_oci/integration/_inputs.py +289 -2
  153. pulumi_oci/integration/get_integration_instance.py +65 -1
  154. pulumi_oci/integration/integration_instance.py +172 -0
  155. pulumi_oci/integration/oracle_managed_custom_endpoint.py +307 -0
  156. pulumi_oci/integration/outputs.py +587 -19
  157. pulumi_oci/loadbalancer/_inputs.py +20 -0
  158. pulumi_oci/loadbalancer/listener.py +4 -2
  159. pulumi_oci/loadbalancer/outputs.py +16 -2
  160. pulumi_oci/monitoring/_inputs.py +137 -16
  161. pulumi_oci/monitoring/alarm_suppression.py +164 -35
  162. pulumi_oci/monitoring/get_alarm_statuses.py +5 -3
  163. pulumi_oci/monitoring/get_alarm_suppression.py +33 -3
  164. pulumi_oci/monitoring/get_alarm_suppressions.py +137 -14
  165. pulumi_oci/monitoring/outputs.py +291 -18
  166. pulumi_oci/mysql/mysql_db_system.py +7 -7
  167. pulumi_oci/objectstorage/__init__.py +3 -0
  168. pulumi_oci/objectstorage/_inputs.py +97 -0
  169. pulumi_oci/objectstorage/get_object_versions.py +6 -6
  170. pulumi_oci/objectstorage/get_objects.py +6 -6
  171. pulumi_oci/objectstorage/get_private_endpoint.py +263 -0
  172. pulumi_oci/objectstorage/get_private_endpoint_summaries.py +128 -0
  173. pulumi_oci/objectstorage/outputs.py +258 -0
  174. pulumi_oci/objectstorage/private_endpoint.py +630 -0
  175. pulumi_oci/objectstorage/storage_object.py +7 -7
  176. pulumi_oci/opsi/_inputs.py +268 -114
  177. pulumi_oci/opsi/database_insight.py +162 -21
  178. pulumi_oci/opsi/exadata_insight.py +44 -0
  179. pulumi_oci/opsi/get_database_insight.py +40 -1
  180. pulumi_oci/opsi/get_host_insights.py +2 -2
  181. pulumi_oci/opsi/host_insight.py +0 -48
  182. pulumi_oci/opsi/outputs.py +405 -109
  183. pulumi_oci/pulumi-plugin.json +1 -1
  184. pulumi_oci/securityattribute/__init__.py +15 -0
  185. pulumi_oci/securityattribute/_inputs.py +209 -0
  186. pulumi_oci/securityattribute/get_security_attribute.py +262 -0
  187. pulumi_oci/securityattribute/get_security_attribute_namespace.py +253 -0
  188. pulumi_oci/securityattribute/get_security_attribute_namespaces.py +210 -0
  189. pulumi_oci/securityattribute/get_security_attributes.py +169 -0
  190. pulumi_oci/securityattribute/outputs.py +466 -0
  191. pulumi_oci/securityattribute/security_attribute.py +588 -0
  192. pulumi_oci/securityattribute/security_attribute_namespace.py +609 -0
  193. pulumi_oci/stackmonitoring/__init__.py +5 -0
  194. pulumi_oci/stackmonitoring/_inputs.py +330 -0
  195. pulumi_oci/stackmonitoring/get_maintenance_window.py +254 -0
  196. pulumi_oci/stackmonitoring/get_maintenance_windows.py +210 -0
  197. pulumi_oci/stackmonitoring/maintenance_window.py +551 -0
  198. pulumi_oci/stackmonitoring/maintenance_windows_retry_failed_operation.py +217 -0
  199. pulumi_oci/stackmonitoring/maintenance_windows_stop.py +217 -0
  200. pulumi_oci/stackmonitoring/outputs.py +603 -0
  201. pulumi_oci/{globallydistributeddatabase → zpr}/__init__.py +5 -6
  202. pulumi_oci/zpr/_inputs.py +79 -0
  203. pulumi_oci/zpr/configuration.py +516 -0
  204. pulumi_oci/zpr/get_configuration.py +230 -0
  205. pulumi_oci/zpr/get_zpr_policies.py +191 -0
  206. pulumi_oci/zpr/get_zpr_policy.py +264 -0
  207. pulumi_oci/zpr/outputs.py +203 -0
  208. pulumi_oci/zpr/zpr_policy.py +614 -0
  209. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/METADATA +1 -1
  210. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/RECORD +212 -142
  211. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/WHEEL +1 -1
  212. pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1289
  213. pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +0 -323
  214. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -191
  215. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -660
  216. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -191
  217. pulumi_oci/globallydistributeddatabase/outputs.py +0 -2063
  218. pulumi_oci/globallydistributeddatabase/private_endpoint.py +0 -747
  219. pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1821
  220. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/top_level.txt +0 -0
@@ -40,10 +40,12 @@ class ExadataInsightArgs:
40
40
  :param pulumi.Input[str] enterprise_manager_bridge_id: OPSI Enterprise Manager Bridge OCID
41
41
  :param pulumi.Input[str] enterprise_manager_entity_identifier: Enterprise Manager Entity Unique Identifier
42
42
  :param pulumi.Input[str] enterprise_manager_identifier: Enterprise Manager Unique Identifier
43
+ :param pulumi.Input[str] exadata_infra_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Infrastructure.
43
44
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] 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"}`
44
45
  :param pulumi.Input[bool] is_auto_sync_enabled: (Updatable) Set to true to enable automatic enablement and disablement of related targets from Enterprise Manager. New resources (e.g. Database Insights) will be placed in the same compartment as the related Exadata Insight.
45
46
  :param pulumi.Input[str] status: (Updatable) Status of the resource. Example: "ENABLED", "DISABLED". Resource can be either enabled or disabled by updating the value of status field to either "ENABLED" or "DISABLED"
46
47
 
48
+
47
49
  ** IMPORTANT **
48
50
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
49
51
  """
@@ -143,6 +145,9 @@ class ExadataInsightArgs:
143
145
  @property
144
146
  @pulumi.getter(name="exadataInfraId")
145
147
  def exadata_infra_id(self) -> Optional[pulumi.Input[str]]:
148
+ """
149
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Infrastructure.
150
+ """
146
151
  return pulumi.get(self, "exadata_infra_id")
147
152
 
148
153
  @exadata_infra_id.setter
@@ -188,6 +193,7 @@ class ExadataInsightArgs:
188
193
  """
189
194
  (Updatable) Status of the resource. Example: "ENABLED", "DISABLED". Resource can be either enabled or disabled by updating the value of status field to either "ENABLED" or "DISABLED"
190
195
 
196
+
191
197
  ** IMPORTANT **
192
198
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
193
199
  """
@@ -239,6 +245,7 @@ class _ExadataInsightState:
239
245
  :param pulumi.Input[str] enterprise_manager_identifier: Enterprise Manager Unique Identifier
240
246
  :param pulumi.Input[str] entity_source: (Updatable) Source of the Exadata system.
241
247
  :param pulumi.Input[str] exadata_display_name: The user-friendly name for the Exadata system. The name does not have to be unique.
248
+ :param pulumi.Input[str] exadata_infra_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Infrastructure.
242
249
  :param pulumi.Input[str] exadata_name: The Exadata system name. If the Exadata systems managed by Enterprise Manager, the name is unique amongst the Exadata systems managed by the same Enterprise Manager.
243
250
  :param pulumi.Input[str] exadata_rack_type: Exadata rack type.
244
251
  :param pulumi.Input[str] exadata_type: Operations Insights internal representation of the the Exadata system type.
@@ -249,6 +256,7 @@ class _ExadataInsightState:
249
256
  :param pulumi.Input[str] state: The current state of the Exadata insight.
250
257
  :param pulumi.Input[str] status: (Updatable) Status of the resource. Example: "ENABLED", "DISABLED". Resource can be either enabled or disabled by updating the value of status field to either "ENABLED" or "DISABLED"
251
258
 
259
+
252
260
  ** IMPORTANT **
253
261
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
254
262
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
@@ -431,6 +439,9 @@ class _ExadataInsightState:
431
439
  @property
432
440
  @pulumi.getter(name="exadataInfraId")
433
441
  def exadata_infra_id(self) -> Optional[pulumi.Input[str]]:
442
+ """
443
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Infrastructure.
444
+ """
434
445
  return pulumi.get(self, "exadata_infra_id")
435
446
 
436
447
  @exadata_infra_id.setter
@@ -566,6 +577,7 @@ class _ExadataInsightState:
566
577
  """
567
578
  (Updatable) Status of the resource. Example: "ENABLED", "DISABLED". Resource can be either enabled or disabled by updating the value of status field to either "ENABLED" or "DISABLED"
568
579
 
580
+
569
581
  ** IMPORTANT **
570
582
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
571
583
  """
@@ -658,11 +670,21 @@ class ExadataInsight(pulumi.CustomResource):
658
670
  "dbm_private_endpoint_id": test_private_endpoint["id"],
659
671
  "member_database_details": [{
660
672
  "compartment_id": compartment_id,
673
+ "connection_credential_details": {
674
+ "credential_type": exadata_insight_member_vm_cluster_details_member_database_details_connection_credential_details_credential_type,
675
+ "credential_source_name": exadata_insight_member_vm_cluster_details_member_database_details_connection_credential_details_credential_source_name,
676
+ "password_secret_id": test_secret["id"],
677
+ "role": exadata_insight_member_vm_cluster_details_member_database_details_connection_credential_details_role,
678
+ "user_name": test_user["name"],
679
+ "wallet_secret_id": test_secret["id"],
680
+ },
661
681
  "connection_details": {
682
+ "host_name": exadata_insight_member_vm_cluster_details_member_database_details_connection_details_host_name,
662
683
  "hosts": [{
663
684
  "host_ip": exadata_insight_member_vm_cluster_details_member_database_details_connection_details_hosts_host_ip,
664
685
  "port": exadata_insight_member_vm_cluster_details_member_database_details_connection_details_hosts_port,
665
686
  }],
687
+ "port": exadata_insight_member_vm_cluster_details_member_database_details_connection_details_port,
666
688
  "protocol": exadata_insight_member_vm_cluster_details_member_database_details_connection_details_protocol,
667
689
  "service_name": test_service["name"],
668
690
  },
@@ -681,11 +703,13 @@ class ExadataInsight(pulumi.CustomResource):
681
703
  "deployment_type": exadata_insight_member_vm_cluster_details_member_database_details_deployment_type,
682
704
  "entity_source": exadata_insight_member_vm_cluster_details_member_database_details_entity_source,
683
705
  "freeform_tags": exadata_insight_member_vm_cluster_details_member_database_details_freeform_tags,
706
+ "management_agent_id": test_management_agent["id"],
684
707
  "opsi_private_endpoint_id": test_private_endpoint["id"],
685
708
  "service_name": test_service["name"],
686
709
  "system_tags": exadata_insight_member_vm_cluster_details_member_database_details_system_tags,
687
710
  }],
688
711
  "opsi_private_endpoint_id": test_private_endpoint["id"],
712
+ "vm_cluster_type": exadata_insight_member_vm_cluster_details_vm_cluster_type,
689
713
  "vmcluster_id": test_vmcluster["id"],
690
714
  }])
691
715
  ```
@@ -706,10 +730,12 @@ class ExadataInsight(pulumi.CustomResource):
706
730
  :param pulumi.Input[str] enterprise_manager_entity_identifier: Enterprise Manager Entity Unique Identifier
707
731
  :param pulumi.Input[str] enterprise_manager_identifier: Enterprise Manager Unique Identifier
708
732
  :param pulumi.Input[str] entity_source: (Updatable) Source of the Exadata system.
733
+ :param pulumi.Input[str] exadata_infra_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Infrastructure.
709
734
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] 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"}`
710
735
  :param pulumi.Input[bool] is_auto_sync_enabled: (Updatable) Set to true to enable automatic enablement and disablement of related targets from Enterprise Manager. New resources (e.g. Database Insights) will be placed in the same compartment as the related Exadata Insight.
711
736
  :param pulumi.Input[str] status: (Updatable) Status of the resource. Example: "ENABLED", "DISABLED". Resource can be either enabled or disabled by updating the value of status field to either "ENABLED" or "DISABLED"
712
737
 
738
+
713
739
  ** IMPORTANT **
714
740
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
715
741
  """
@@ -748,11 +774,21 @@ class ExadataInsight(pulumi.CustomResource):
748
774
  "dbm_private_endpoint_id": test_private_endpoint["id"],
749
775
  "member_database_details": [{
750
776
  "compartment_id": compartment_id,
777
+ "connection_credential_details": {
778
+ "credential_type": exadata_insight_member_vm_cluster_details_member_database_details_connection_credential_details_credential_type,
779
+ "credential_source_name": exadata_insight_member_vm_cluster_details_member_database_details_connection_credential_details_credential_source_name,
780
+ "password_secret_id": test_secret["id"],
781
+ "role": exadata_insight_member_vm_cluster_details_member_database_details_connection_credential_details_role,
782
+ "user_name": test_user["name"],
783
+ "wallet_secret_id": test_secret["id"],
784
+ },
751
785
  "connection_details": {
786
+ "host_name": exadata_insight_member_vm_cluster_details_member_database_details_connection_details_host_name,
752
787
  "hosts": [{
753
788
  "host_ip": exadata_insight_member_vm_cluster_details_member_database_details_connection_details_hosts_host_ip,
754
789
  "port": exadata_insight_member_vm_cluster_details_member_database_details_connection_details_hosts_port,
755
790
  }],
791
+ "port": exadata_insight_member_vm_cluster_details_member_database_details_connection_details_port,
756
792
  "protocol": exadata_insight_member_vm_cluster_details_member_database_details_connection_details_protocol,
757
793
  "service_name": test_service["name"],
758
794
  },
@@ -771,11 +807,13 @@ class ExadataInsight(pulumi.CustomResource):
771
807
  "deployment_type": exadata_insight_member_vm_cluster_details_member_database_details_deployment_type,
772
808
  "entity_source": exadata_insight_member_vm_cluster_details_member_database_details_entity_source,
773
809
  "freeform_tags": exadata_insight_member_vm_cluster_details_member_database_details_freeform_tags,
810
+ "management_agent_id": test_management_agent["id"],
774
811
  "opsi_private_endpoint_id": test_private_endpoint["id"],
775
812
  "service_name": test_service["name"],
776
813
  "system_tags": exadata_insight_member_vm_cluster_details_member_database_details_system_tags,
777
814
  }],
778
815
  "opsi_private_endpoint_id": test_private_endpoint["id"],
816
+ "vm_cluster_type": exadata_insight_member_vm_cluster_details_vm_cluster_type,
779
817
  "vmcluster_id": test_vmcluster["id"],
780
818
  }])
781
819
  ```
@@ -906,6 +944,7 @@ class ExadataInsight(pulumi.CustomResource):
906
944
  :param pulumi.Input[str] enterprise_manager_identifier: Enterprise Manager Unique Identifier
907
945
  :param pulumi.Input[str] entity_source: (Updatable) Source of the Exadata system.
908
946
  :param pulumi.Input[str] exadata_display_name: The user-friendly name for the Exadata system. The name does not have to be unique.
947
+ :param pulumi.Input[str] exadata_infra_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Infrastructure.
909
948
  :param pulumi.Input[str] exadata_name: The Exadata system name. If the Exadata systems managed by Enterprise Manager, the name is unique amongst the Exadata systems managed by the same Enterprise Manager.
910
949
  :param pulumi.Input[str] exadata_rack_type: Exadata rack type.
911
950
  :param pulumi.Input[str] exadata_type: Operations Insights internal representation of the the Exadata system type.
@@ -916,6 +955,7 @@ class ExadataInsight(pulumi.CustomResource):
916
955
  :param pulumi.Input[str] state: The current state of the Exadata insight.
917
956
  :param pulumi.Input[str] status: (Updatable) Status of the resource. Example: "ENABLED", "DISABLED". Resource can be either enabled or disabled by updating the value of status field to either "ENABLED" or "DISABLED"
918
957
 
958
+
919
959
  ** IMPORTANT **
920
960
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
921
961
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
@@ -1037,6 +1077,9 @@ class ExadataInsight(pulumi.CustomResource):
1037
1077
  @property
1038
1078
  @pulumi.getter(name="exadataInfraId")
1039
1079
  def exadata_infra_id(self) -> pulumi.Output[str]:
1080
+ """
1081
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Infrastructure.
1082
+ """
1040
1083
  return pulumi.get(self, "exadata_infra_id")
1041
1084
 
1042
1085
  @property
@@ -1124,6 +1167,7 @@ class ExadataInsight(pulumi.CustomResource):
1124
1167
  """
1125
1168
  (Updatable) Status of the resource. Example: "ENABLED", "DISABLED". Resource can be either enabled or disabled by updating the value of status field to either "ENABLED" or "DISABLED"
1126
1169
 
1170
+
1127
1171
  ** IMPORTANT **
1128
1172
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1129
1173
  """
@@ -27,7 +27,7 @@ class GetDatabaseInsightResult:
27
27
  """
28
28
  A collection of values returned by getDatabaseInsight.
29
29
  """
30
- 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):
30
+ def __init__(__self__, compartment_id=None, connection_credential_details=None, connection_details=None, connector_id=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_advanced_features_enabled=None, is_heat_wave_cluster_attached=None, is_highly_available=None, lifecycle_details=None, management_agent_id=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):
31
31
  if compartment_id and not isinstance(compartment_id, str):
32
32
  raise TypeError("Expected argument 'compartment_id' to be a str")
33
33
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -37,6 +37,9 @@ class GetDatabaseInsightResult:
37
37
  if connection_details and not isinstance(connection_details, list):
38
38
  raise TypeError("Expected argument 'connection_details' to be a list")
39
39
  pulumi.set(__self__, "connection_details", connection_details)
40
+ if connector_id and not isinstance(connector_id, str):
41
+ raise TypeError("Expected argument 'connector_id' to be a str")
42
+ pulumi.set(__self__, "connector_id", connector_id)
40
43
  if credential_details and not isinstance(credential_details, list):
41
44
  raise TypeError("Expected argument 'credential_details' to be a list")
42
45
  pulumi.set(__self__, "credential_details", credential_details)
@@ -103,6 +106,9 @@ class GetDatabaseInsightResult:
103
106
  if id and not isinstance(id, str):
104
107
  raise TypeError("Expected argument 'id' to be a str")
105
108
  pulumi.set(__self__, "id", id)
109
+ if is_advanced_features_enabled and not isinstance(is_advanced_features_enabled, bool):
110
+ raise TypeError("Expected argument 'is_advanced_features_enabled' to be a bool")
111
+ pulumi.set(__self__, "is_advanced_features_enabled", is_advanced_features_enabled)
106
112
  if is_heat_wave_cluster_attached and not isinstance(is_heat_wave_cluster_attached, bool):
107
113
  raise TypeError("Expected argument 'is_heat_wave_cluster_attached' to be a bool")
108
114
  pulumi.set(__self__, "is_heat_wave_cluster_attached", is_heat_wave_cluster_attached)
@@ -112,6 +118,9 @@ class GetDatabaseInsightResult:
112
118
  if lifecycle_details and not isinstance(lifecycle_details, str):
113
119
  raise TypeError("Expected argument 'lifecycle_details' to be a str")
114
120
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
121
+ if management_agent_id and not isinstance(management_agent_id, str):
122
+ raise TypeError("Expected argument 'management_agent_id' to be a str")
123
+ pulumi.set(__self__, "management_agent_id", management_agent_id)
115
124
  if opsi_private_endpoint_id and not isinstance(opsi_private_endpoint_id, str):
116
125
  raise TypeError("Expected argument 'opsi_private_endpoint_id' to be a str")
117
126
  pulumi.set(__self__, "opsi_private_endpoint_id", opsi_private_endpoint_id)
@@ -167,6 +176,14 @@ class GetDatabaseInsightResult:
167
176
  """
168
177
  return pulumi.get(self, "connection_details")
169
178
 
179
+ @property
180
+ @pulumi.getter(name="connectorId")
181
+ def connector_id(self) -> str:
182
+ """
183
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of External Database Connector
184
+ """
185
+ return pulumi.get(self, "connector_id")
186
+
170
187
  @property
171
188
  @pulumi.getter(name="credentialDetails")
172
189
  def credential_details(self) -> Sequence['outputs.GetDatabaseInsightCredentialDetailResult']:
@@ -334,6 +351,14 @@ class GetDatabaseInsightResult:
334
351
  """
335
352
  return pulumi.get(self, "id")
336
353
 
354
+ @property
355
+ @pulumi.getter(name="isAdvancedFeaturesEnabled")
356
+ def is_advanced_features_enabled(self) -> bool:
357
+ """
358
+ Flag is to identify if advanced features for autonomous database is enabled or not
359
+ """
360
+ return pulumi.get(self, "is_advanced_features_enabled")
361
+
337
362
  @property
338
363
  @pulumi.getter(name="isHeatWaveClusterAttached")
339
364
  def is_heat_wave_cluster_attached(self) -> bool:
@@ -358,6 +383,11 @@ class GetDatabaseInsightResult:
358
383
  """
359
384
  return pulumi.get(self, "lifecycle_details")
360
385
 
386
+ @property
387
+ @pulumi.getter(name="managementAgentId")
388
+ def management_agent_id(self) -> str:
389
+ return pulumi.get(self, "management_agent_id")
390
+
361
391
  @property
362
392
  @pulumi.getter(name="opsiPrivateEndpointId")
363
393
  def opsi_private_endpoint_id(self) -> str:
@@ -448,6 +478,7 @@ class AwaitableGetDatabaseInsightResult(GetDatabaseInsightResult):
448
478
  compartment_id=self.compartment_id,
449
479
  connection_credential_details=self.connection_credential_details,
450
480
  connection_details=self.connection_details,
481
+ connector_id=self.connector_id,
451
482
  credential_details=self.credential_details,
452
483
  database_connection_status_details=self.database_connection_status_details,
453
484
  database_display_name=self.database_display_name,
@@ -470,9 +501,11 @@ class AwaitableGetDatabaseInsightResult(GetDatabaseInsightResult):
470
501
  exadata_insight_id=self.exadata_insight_id,
471
502
  freeform_tags=self.freeform_tags,
472
503
  id=self.id,
504
+ is_advanced_features_enabled=self.is_advanced_features_enabled,
473
505
  is_heat_wave_cluster_attached=self.is_heat_wave_cluster_attached,
474
506
  is_highly_available=self.is_highly_available,
475
507
  lifecycle_details=self.lifecycle_details,
508
+ management_agent_id=self.management_agent_id,
476
509
  opsi_private_endpoint_id=self.opsi_private_endpoint_id,
477
510
  parent_id=self.parent_id,
478
511
  processor_count=self.processor_count,
@@ -513,6 +546,7 @@ def get_database_insight(database_insight_id: Optional[str] = None,
513
546
  compartment_id=pulumi.get(__ret__, 'compartment_id'),
514
547
  connection_credential_details=pulumi.get(__ret__, 'connection_credential_details'),
515
548
  connection_details=pulumi.get(__ret__, 'connection_details'),
549
+ connector_id=pulumi.get(__ret__, 'connector_id'),
516
550
  credential_details=pulumi.get(__ret__, 'credential_details'),
517
551
  database_connection_status_details=pulumi.get(__ret__, 'database_connection_status_details'),
518
552
  database_display_name=pulumi.get(__ret__, 'database_display_name'),
@@ -535,9 +569,11 @@ def get_database_insight(database_insight_id: Optional[str] = None,
535
569
  exadata_insight_id=pulumi.get(__ret__, 'exadata_insight_id'),
536
570
  freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
537
571
  id=pulumi.get(__ret__, 'id'),
572
+ is_advanced_features_enabled=pulumi.get(__ret__, 'is_advanced_features_enabled'),
538
573
  is_heat_wave_cluster_attached=pulumi.get(__ret__, 'is_heat_wave_cluster_attached'),
539
574
  is_highly_available=pulumi.get(__ret__, 'is_highly_available'),
540
575
  lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
576
+ management_agent_id=pulumi.get(__ret__, 'management_agent_id'),
541
577
  opsi_private_endpoint_id=pulumi.get(__ret__, 'opsi_private_endpoint_id'),
542
578
  parent_id=pulumi.get(__ret__, 'parent_id'),
543
579
  processor_count=pulumi.get(__ret__, 'processor_count'),
@@ -575,6 +611,7 @@ def get_database_insight_output(database_insight_id: Optional[pulumi.Input[str]]
575
611
  compartment_id=pulumi.get(__response__, 'compartment_id'),
576
612
  connection_credential_details=pulumi.get(__response__, 'connection_credential_details'),
577
613
  connection_details=pulumi.get(__response__, 'connection_details'),
614
+ connector_id=pulumi.get(__response__, 'connector_id'),
578
615
  credential_details=pulumi.get(__response__, 'credential_details'),
579
616
  database_connection_status_details=pulumi.get(__response__, 'database_connection_status_details'),
580
617
  database_display_name=pulumi.get(__response__, 'database_display_name'),
@@ -597,9 +634,11 @@ def get_database_insight_output(database_insight_id: Optional[pulumi.Input[str]]
597
634
  exadata_insight_id=pulumi.get(__response__, 'exadata_insight_id'),
598
635
  freeform_tags=pulumi.get(__response__, 'freeform_tags'),
599
636
  id=pulumi.get(__response__, 'id'),
637
+ is_advanced_features_enabled=pulumi.get(__response__, 'is_advanced_features_enabled'),
600
638
  is_heat_wave_cluster_attached=pulumi.get(__response__, 'is_heat_wave_cluster_attached'),
601
639
  is_highly_available=pulumi.get(__response__, 'is_highly_available'),
602
640
  lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
641
+ management_agent_id=pulumi.get(__response__, 'management_agent_id'),
603
642
  opsi_private_endpoint_id=pulumi.get(__response__, 'opsi_private_endpoint_id'),
604
643
  parent_id=pulumi.get(__response__, 'parent_id'),
605
644
  processor_count=pulumi.get(__response__, 'processor_count'),
@@ -190,7 +190,7 @@ def get_host_insights(compartment_id: Optional[str] = None,
190
190
  :param bool compartment_id_in_subtree: A flag to search all resources within a given compartment and all sub-compartments.
191
191
  :param str enterprise_manager_bridge_id: Unique Enterprise Manager bridge identifier
192
192
  :param str exadata_insight_id: [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of exadata insight resource.
193
- :param Sequence[str] host_types: Filter by one or more host types. Possible values are CLOUD-HOST, EXTERNAL-HOST, COMANAGED-VM-HOST, COMANAGED-BM-HOST, COMANAGED-EXACS-HOST
193
+ :param Sequence[str] host_types: Filter by one or more host types. Possible values are CLOUD-HOST, EXTERNAL-HOST, COMANAGED-VM-HOST, COMANAGED-BM-HOST, COMANAGED-EXACS-HOST, COMANAGED-EXACC-HOST
194
194
  :param str id: Optional list of host insight resource [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
195
195
  :param Sequence[str] states: Lifecycle states
196
196
  :param Sequence[str] statuses: Resource Status
@@ -256,7 +256,7 @@ def get_host_insights_output(compartment_id: Optional[pulumi.Input[Optional[str]
256
256
  :param bool compartment_id_in_subtree: A flag to search all resources within a given compartment and all sub-compartments.
257
257
  :param str enterprise_manager_bridge_id: Unique Enterprise Manager bridge identifier
258
258
  :param str exadata_insight_id: [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of exadata insight resource.
259
- :param Sequence[str] host_types: Filter by one or more host types. Possible values are CLOUD-HOST, EXTERNAL-HOST, COMANAGED-VM-HOST, COMANAGED-BM-HOST, COMANAGED-EXACS-HOST
259
+ :param Sequence[str] host_types: Filter by one or more host types. Possible values are CLOUD-HOST, EXTERNAL-HOST, COMANAGED-VM-HOST, COMANAGED-BM-HOST, COMANAGED-EXACS-HOST, COMANAGED-EXACC-HOST
260
260
  :param str id: Optional list of host insight resource [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
261
261
  :param Sequence[str] states: Lifecycle states
262
262
  :param Sequence[str] statuses: Resource Status
@@ -656,30 +656,6 @@ class HostInsight(pulumi.CustomResource):
656
656
 
657
657
  Create a Host Insight resource for a host in Ops Insights. The host will be enabled in Ops Insights. Host metric collection and analysis will be started.
658
658
 
659
- ## Example Usage
660
-
661
- ```python
662
- import pulumi
663
- import pulumi_oci as oci
664
-
665
- test_host_insight = oci.opsi.HostInsight("test_host_insight",
666
- compartment_id=compartment_id,
667
- entity_source=host_insight_entity_source,
668
- compute_id=test_compute["id"],
669
- defined_tags={
670
- "foo-namespace.bar-key": "value",
671
- },
672
- enterprise_manager_bridge_id=test_enterprise_manager_bridge["id"],
673
- enterprise_manager_entity_identifier=host_insight_enterprise_manager_entity_identifier,
674
- enterprise_manager_identifier=host_insight_enterprise_manager_identifier,
675
- exadata_insight_id=test_exadata_insight["id"],
676
- freeform_tags={
677
- "bar-key": "value",
678
- },
679
- management_agent_id=test_management_agent["id"],
680
- status="DISABLED")
681
- ```
682
-
683
659
  ## Import
684
660
 
685
661
  HostInsights can be imported using the `id`, e.g.
@@ -717,30 +693,6 @@ class HostInsight(pulumi.CustomResource):
717
693
 
718
694
  Create a Host Insight resource for a host in Ops Insights. The host will be enabled in Ops Insights. Host metric collection and analysis will be started.
719
695
 
720
- ## Example Usage
721
-
722
- ```python
723
- import pulumi
724
- import pulumi_oci as oci
725
-
726
- test_host_insight = oci.opsi.HostInsight("test_host_insight",
727
- compartment_id=compartment_id,
728
- entity_source=host_insight_entity_source,
729
- compute_id=test_compute["id"],
730
- defined_tags={
731
- "foo-namespace.bar-key": "value",
732
- },
733
- enterprise_manager_bridge_id=test_enterprise_manager_bridge["id"],
734
- enterprise_manager_entity_identifier=host_insight_enterprise_manager_entity_identifier,
735
- enterprise_manager_identifier=host_insight_enterprise_manager_identifier,
736
- exadata_insight_id=test_exadata_insight["id"],
737
- freeform_tags={
738
- "bar-key": "value",
739
- },
740
- management_agent_id=test_management_agent["id"],
741
- status="DISABLED")
742
- ```
743
-
744
696
  ## Import
745
697
 
746
698
  HostInsights can be imported using the `id`, e.g.