pulumi-oci 2.12.0a1728593306__py3-none-any.whl → 2.12.0a1728642710__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (170) hide show
  1. pulumi_oci/__init__.py +145 -0
  2. pulumi_oci/analytics/analytics_instance.py +54 -5
  3. pulumi_oci/analytics/get_analytics_instance.py +18 -4
  4. pulumi_oci/analytics/outputs.py +12 -1
  5. pulumi_oci/core/_inputs.py +648 -159
  6. pulumi_oci/core/cluster_network.py +7 -7
  7. pulumi_oci/core/get_instance.py +29 -1
  8. pulumi_oci/core/get_vcn.py +15 -1
  9. pulumi_oci/core/get_vnic.py +15 -1
  10. pulumi_oci/core/instance.py +87 -0
  11. pulumi_oci/core/instance_configuration.py +12 -0
  12. pulumi_oci/core/ipsec.py +183 -23
  13. pulumi_oci/core/network_security_group_security_rule.py +2 -2
  14. pulumi_oci/core/outputs.py +709 -107
  15. pulumi_oci/core/service_gateway.py +13 -7
  16. pulumi_oci/core/vcn.py +65 -23
  17. pulumi_oci/core/virtual_network.py +35 -1
  18. pulumi_oci/core/vnic_attachment.py +2 -0
  19. pulumi_oci/database/_inputs.py +905 -27
  20. pulumi_oci/database/autonomous_database.py +48 -28
  21. pulumi_oci/database/autonomous_database_backup.py +12 -12
  22. pulumi_oci/database/autonomous_exadata_infrastructure.py +2 -0
  23. pulumi_oci/database/autonomous_vm_cluster.py +2 -0
  24. pulumi_oci/database/backup.py +12 -12
  25. pulumi_oci/database/cloud_autonomous_vm_cluster.py +2 -0
  26. pulumi_oci/database/cloud_exadata_infrastructure.py +2 -0
  27. pulumi_oci/database/cloud_vm_cluster.py +71 -0
  28. pulumi_oci/database/database.py +15 -15
  29. pulumi_oci/database/database_upgrade.py +12 -12
  30. pulumi_oci/database/db_system.py +9 -9
  31. pulumi_oci/database/exadata_infrastructure.py +2 -0
  32. pulumi_oci/database/get_autonomous_container_database.py +1 -1
  33. pulumi_oci/database/get_autonomous_database.py +18 -4
  34. pulumi_oci/database/get_autonomous_database_backup.py +3 -3
  35. pulumi_oci/database/get_autonomous_databases.py +88 -5
  36. pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
  37. pulumi_oci/database/get_database.py +3 -3
  38. pulumi_oci/database/get_pluggable_database.py +12 -1
  39. pulumi_oci/database/get_vm_cluster.py +15 -1
  40. pulumi_oci/database/outputs.py +1431 -74
  41. pulumi_oci/database/pluggable_database.py +34 -0
  42. pulumi_oci/database/vm_cluster.py +71 -0
  43. pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
  44. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
  45. pulumi_oci/datasafe/__init__.py +12 -0
  46. pulumi_oci/datasafe/_inputs.py +441 -0
  47. pulumi_oci/datasafe/get_reports.py +23 -1
  48. pulumi_oci/datasafe/get_sql_collection.py +392 -0
  49. pulumi_oci/datasafe/get_sql_collection_analytics.py +309 -0
  50. pulumi_oci/datasafe/get_sql_collection_log_insights.py +207 -0
  51. pulumi_oci/datasafe/get_sql_collections.py +364 -0
  52. pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +337 -0
  53. pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +250 -0
  54. pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +234 -0
  55. pulumi_oci/datasafe/get_sql_firewall_policies.py +386 -0
  56. pulumi_oci/datasafe/get_sql_firewall_policy.py +393 -0
  57. pulumi_oci/datasafe/get_sql_firewall_policy_analytics.py +305 -0
  58. pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +306 -0
  59. pulumi_oci/datasafe/get_sql_firewall_violations.py +208 -0
  60. pulumi_oci/datasafe/outputs.py +1808 -2
  61. pulumi_oci/desktops/_inputs.py +223 -7
  62. pulumi_oci/desktops/desktop_pool.py +186 -21
  63. pulumi_oci/desktops/get_desktop_pool.py +47 -5
  64. pulumi_oci/desktops/outputs.py +480 -19
  65. pulumi_oci/fleetappsmanagement/__init__.py +43 -0
  66. pulumi_oci/fleetappsmanagement/_inputs.py +2057 -0
  67. pulumi_oci/fleetappsmanagement/fleet.py +955 -0
  68. pulumi_oci/fleetappsmanagement/fleet_credential.py +615 -0
  69. pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
  70. pulumi_oci/fleetappsmanagement/fleet_resource.py +851 -0
  71. pulumi_oci/fleetappsmanagement/get_announcements.py +166 -0
  72. pulumi_oci/fleetappsmanagement/get_fleet.py +394 -0
  73. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +164 -0
  74. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +273 -0
  75. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +240 -0
  76. pulumi_oci/fleetappsmanagement/get_fleet_products.py +232 -0
  77. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +218 -0
  78. pulumi_oci/fleetappsmanagement/get_fleet_property.py +286 -0
  79. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +398 -0
  80. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +237 -0
  81. pulumi_oci/fleetappsmanagement/get_fleet_targets.py +232 -0
  82. pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
  83. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +311 -0
  84. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +365 -0
  85. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +199 -0
  86. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +123 -0
  87. pulumi_oci/fleetappsmanagement/get_onboardings.py +177 -0
  88. pulumi_oci/fleetappsmanagement/get_properties.py +221 -0
  89. pulumi_oci/fleetappsmanagement/get_property.py +323 -0
  90. pulumi_oci/fleetappsmanagement/get_runbook.py +377 -0
  91. pulumi_oci/fleetappsmanagement/get_runbooks.py +284 -0
  92. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +436 -0
  93. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +185 -0
  94. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +262 -0
  95. pulumi_oci/fleetappsmanagement/get_task_record.py +307 -0
  96. pulumi_oci/fleetappsmanagement/get_task_records.py +240 -0
  97. pulumi_oci/fleetappsmanagement/maintenance_window.py +935 -0
  98. pulumi_oci/fleetappsmanagement/onboarding.py +477 -0
  99. pulumi_oci/fleetappsmanagement/outputs.py +8128 -0
  100. pulumi_oci/fleetappsmanagement/property.py +697 -0
  101. pulumi_oci/fleetappsmanagement/scheduler_definition.py +1035 -0
  102. pulumi_oci/functions/get_fusion_environment_refresh_activity.py +15 -1
  103. pulumi_oci/functions/outputs.py +11 -0
  104. pulumi_oci/fusionapps/_inputs.py +21 -20
  105. pulumi_oci/fusionapps/fusion_environment.py +2 -2
  106. pulumi_oci/fusionapps/fusion_environment_admin_user.py +21 -22
  107. pulumi_oci/fusionapps/fusion_environment_refresh_activity.py +48 -51
  108. pulumi_oci/fusionapps/outputs.py +11 -10
  109. pulumi_oci/integration/__init__.py +1 -0
  110. pulumi_oci/integration/_inputs.py +289 -2
  111. pulumi_oci/integration/get_integration_instance.py +65 -1
  112. pulumi_oci/integration/integration_instance.py +172 -0
  113. pulumi_oci/integration/oracle_managed_custom_endpoint.py +307 -0
  114. pulumi_oci/integration/outputs.py +587 -19
  115. pulumi_oci/loadbalancer/_inputs.py +20 -0
  116. pulumi_oci/loadbalancer/listener.py +4 -2
  117. pulumi_oci/loadbalancer/outputs.py +16 -2
  118. pulumi_oci/monitoring/_inputs.py +137 -16
  119. pulumi_oci/monitoring/alarm_suppression.py +164 -35
  120. pulumi_oci/monitoring/get_alarm_statuses.py +5 -3
  121. pulumi_oci/monitoring/get_alarm_suppression.py +33 -3
  122. pulumi_oci/monitoring/get_alarm_suppressions.py +137 -14
  123. pulumi_oci/monitoring/outputs.py +291 -18
  124. pulumi_oci/mysql/mysql_db_system.py +7 -7
  125. pulumi_oci/objectstorage/__init__.py +3 -0
  126. pulumi_oci/objectstorage/_inputs.py +97 -0
  127. pulumi_oci/objectstorage/get_object_versions.py +6 -6
  128. pulumi_oci/objectstorage/get_objects.py +6 -6
  129. pulumi_oci/objectstorage/get_private_endpoint.py +263 -0
  130. pulumi_oci/objectstorage/get_private_endpoint_summaries.py +128 -0
  131. pulumi_oci/objectstorage/outputs.py +258 -0
  132. pulumi_oci/objectstorage/private_endpoint.py +630 -0
  133. pulumi_oci/objectstorage/storage_object.py +7 -7
  134. pulumi_oci/opsi/_inputs.py +268 -114
  135. pulumi_oci/opsi/database_insight.py +162 -21
  136. pulumi_oci/opsi/exadata_insight.py +44 -0
  137. pulumi_oci/opsi/get_database_insight.py +40 -1
  138. pulumi_oci/opsi/get_host_insights.py +2 -2
  139. pulumi_oci/opsi/host_insight.py +0 -48
  140. pulumi_oci/opsi/outputs.py +405 -109
  141. pulumi_oci/pulumi-plugin.json +1 -1
  142. pulumi_oci/securityattribute/__init__.py +15 -0
  143. pulumi_oci/securityattribute/_inputs.py +209 -0
  144. pulumi_oci/securityattribute/get_security_attribute.py +262 -0
  145. pulumi_oci/securityattribute/get_security_attribute_namespace.py +253 -0
  146. pulumi_oci/securityattribute/get_security_attribute_namespaces.py +210 -0
  147. pulumi_oci/securityattribute/get_security_attributes.py +169 -0
  148. pulumi_oci/securityattribute/outputs.py +466 -0
  149. pulumi_oci/securityattribute/security_attribute.py +588 -0
  150. pulumi_oci/securityattribute/security_attribute_namespace.py +609 -0
  151. pulumi_oci/stackmonitoring/__init__.py +5 -0
  152. pulumi_oci/stackmonitoring/_inputs.py +330 -0
  153. pulumi_oci/stackmonitoring/get_maintenance_window.py +254 -0
  154. pulumi_oci/stackmonitoring/get_maintenance_windows.py +210 -0
  155. pulumi_oci/stackmonitoring/maintenance_window.py +551 -0
  156. pulumi_oci/stackmonitoring/maintenance_windows_retry_failed_operation.py +217 -0
  157. pulumi_oci/stackmonitoring/maintenance_windows_stop.py +217 -0
  158. pulumi_oci/stackmonitoring/outputs.py +603 -0
  159. pulumi_oci/zpr/__init__.py +14 -0
  160. pulumi_oci/zpr/_inputs.py +79 -0
  161. pulumi_oci/zpr/configuration.py +516 -0
  162. pulumi_oci/zpr/get_configuration.py +230 -0
  163. pulumi_oci/zpr/get_zpr_policies.py +191 -0
  164. pulumi_oci/zpr/get_zpr_policy.py +264 -0
  165. pulumi_oci/zpr/outputs.py +203 -0
  166. pulumi_oci/zpr/zpr_policy.py +614 -0
  167. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/METADATA +1 -1
  168. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/RECORD +170 -95
  169. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/WHEEL +0 -0
  170. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/top_level.txt +0 -0
@@ -22,6 +22,7 @@ __all__ = [
22
22
  'DatabaseInsightCredentialDetails',
23
23
  'ExadataInsightMemberVmClusterDetail',
24
24
  'ExadataInsightMemberVmClusterDetailMemberDatabaseDetail',
25
+ 'ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionCredentialDetails',
25
26
  'ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetails',
26
27
  'ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailsHost',
27
28
  'ExadataInsightMemberVmClusterDetailMemberDatabaseDetailCredentialDetails',
@@ -58,6 +59,7 @@ __all__ = [
58
59
  'GetEnterpriseManagerBridgesFilterResult',
59
60
  'GetExadataInsightMemberVmClusterDetailResult',
60
61
  'GetExadataInsightMemberVmClusterDetailMemberDatabaseDetailResult',
62
+ 'GetExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionCredentialDetailResult',
61
63
  'GetExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailResult',
62
64
  'GetExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailHostResult',
63
65
  'GetExadataInsightMemberVmClusterDetailMemberDatabaseDetailCredentialDetailResult',
@@ -65,6 +67,7 @@ __all__ = [
65
67
  'GetExadataInsightsExadataInsightSummaryCollectionItemResult',
66
68
  'GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetailResult',
67
69
  'GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetailMemberDatabaseDetailResult',
70
+ 'GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetailMemberDatabaseDetailConnectionCredentialDetailResult',
68
71
  'GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetailMemberDatabaseDetailConnectionDetailResult',
69
72
  'GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetailMemberDatabaseDetailConnectionDetailHostResult',
70
73
  'GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetailMemberDatabaseDetailCredentialDetailResult',
@@ -112,16 +115,14 @@ class DatabaseInsightConnectionCredentialDetails(dict):
112
115
  @staticmethod
113
116
  def __key_warning(key: str):
114
117
  suggest = None
115
- if key == "credentialSourceName":
116
- suggest = "credential_source_name"
117
- elif key == "credentialType":
118
+ if key == "credentialType":
118
119
  suggest = "credential_type"
120
+ elif key == "credentialSourceName":
121
+ suggest = "credential_source_name"
119
122
  elif key == "passwordSecretId":
120
123
  suggest = "password_secret_id"
121
124
  elif key == "userName":
122
125
  suggest = "user_name"
123
- elif key == "walletSecretId":
124
- suggest = "wallet_secret_id"
125
126
 
126
127
  if suggest:
127
128
  pulumi.log.warn(f"Key '{key}' not found in DatabaseInsightConnectionCredentialDetails. Access the value via the '{suggest}' property getter instead.")
@@ -135,48 +136,43 @@ class DatabaseInsightConnectionCredentialDetails(dict):
135
136
  return super().get(key, default)
136
137
 
137
138
  def __init__(__self__, *,
139
+ credential_type: str,
138
140
  credential_source_name: Optional[str] = None,
139
- credential_type: Optional[str] = None,
140
141
  password_secret_id: Optional[str] = None,
141
142
  role: Optional[str] = None,
142
- user_name: Optional[str] = None,
143
- wallet_secret_id: Optional[str] = None):
143
+ user_name: Optional[str] = None):
144
144
  """
145
- :param str credential_source_name: Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
146
145
  :param str credential_type: Credential type.
146
+ :param str credential_source_name: Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
147
147
  :param str password_secret_id: The secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) mapping to the database credentials.
148
148
  :param str role: database user role.
149
149
  :param str user_name: database user name.
150
- :param 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.
151
150
  """
151
+ pulumi.set(__self__, "credential_type", credential_type)
152
152
  if credential_source_name is not None:
153
153
  pulumi.set(__self__, "credential_source_name", credential_source_name)
154
- if credential_type is not None:
155
- pulumi.set(__self__, "credential_type", credential_type)
156
154
  if password_secret_id is not None:
157
155
  pulumi.set(__self__, "password_secret_id", password_secret_id)
158
156
  if role is not None:
159
157
  pulumi.set(__self__, "role", role)
160
158
  if user_name is not None:
161
159
  pulumi.set(__self__, "user_name", user_name)
162
- if wallet_secret_id is not None:
163
- pulumi.set(__self__, "wallet_secret_id", wallet_secret_id)
164
160
 
165
161
  @property
166
- @pulumi.getter(name="credentialSourceName")
167
- def credential_source_name(self) -> Optional[str]:
162
+ @pulumi.getter(name="credentialType")
163
+ def credential_type(self) -> str:
168
164
  """
169
- Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
165
+ Credential type.
170
166
  """
171
- return pulumi.get(self, "credential_source_name")
167
+ return pulumi.get(self, "credential_type")
172
168
 
173
169
  @property
174
- @pulumi.getter(name="credentialType")
175
- def credential_type(self) -> Optional[str]:
170
+ @pulumi.getter(name="credentialSourceName")
171
+ def credential_source_name(self) -> Optional[str]:
176
172
  """
177
- Credential type.
173
+ Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
178
174
  """
179
- return pulumi.get(self, "credential_type")
175
+ return pulumi.get(self, "credential_source_name")
180
176
 
181
177
  @property
182
178
  @pulumi.getter(name="passwordSecretId")
@@ -202,14 +198,6 @@ class DatabaseInsightConnectionCredentialDetails(dict):
202
198
  """
203
199
  return pulumi.get(self, "user_name")
204
200
 
205
- @property
206
- @pulumi.getter(name="walletSecretId")
207
- def wallet_secret_id(self) -> Optional[str]:
208
- """
209
- 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.
210
- """
211
- return pulumi.get(self, "wallet_secret_id")
212
-
213
201
 
214
202
  @pulumi.output_type
215
203
  class DatabaseInsightConnectionDetails(dict):
@@ -461,6 +449,8 @@ class ExadataInsightMemberVmClusterDetail(dict):
461
449
  suggest = "member_database_details"
462
450
  elif key == "opsiPrivateEndpointId":
463
451
  suggest = "opsi_private_endpoint_id"
452
+ elif key == "vmClusterType":
453
+ suggest = "vm_cluster_type"
464
454
  elif key == "vmclusterId":
465
455
  suggest = "vmcluster_id"
466
456
 
@@ -480,12 +470,14 @@ class ExadataInsightMemberVmClusterDetail(dict):
480
470
  dbm_private_endpoint_id: Optional[str] = None,
481
471
  member_database_details: Optional[Sequence['outputs.ExadataInsightMemberVmClusterDetailMemberDatabaseDetail']] = None,
482
472
  opsi_private_endpoint_id: Optional[str] = None,
473
+ vm_cluster_type: Optional[str] = None,
483
474
  vmcluster_id: Optional[str] = None):
484
475
  """
485
476
  :param str compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
486
477
  :param str dbm_private_endpoint_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Management private endpoint
487
478
  :param Sequence['ExadataInsightMemberVmClusterDetailMemberDatabaseDetailArgs'] member_database_details: The databases that belong to the VM Cluster
488
479
  :param str opsi_private_endpoint_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the OPSI private endpoint
480
+ :param str vm_cluster_type: Exadata VMCluster type
489
481
  :param str vmcluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM Cluster.
490
482
  """
491
483
  if compartment_id is not None:
@@ -496,6 +488,8 @@ class ExadataInsightMemberVmClusterDetail(dict):
496
488
  pulumi.set(__self__, "member_database_details", member_database_details)
497
489
  if opsi_private_endpoint_id is not None:
498
490
  pulumi.set(__self__, "opsi_private_endpoint_id", opsi_private_endpoint_id)
491
+ if vm_cluster_type is not None:
492
+ pulumi.set(__self__, "vm_cluster_type", vm_cluster_type)
499
493
  if vmcluster_id is not None:
500
494
  pulumi.set(__self__, "vmcluster_id", vmcluster_id)
501
495
 
@@ -531,6 +525,14 @@ class ExadataInsightMemberVmClusterDetail(dict):
531
525
  """
532
526
  return pulumi.get(self, "opsi_private_endpoint_id")
533
527
 
528
+ @property
529
+ @pulumi.getter(name="vmClusterType")
530
+ def vm_cluster_type(self) -> Optional[str]:
531
+ """
532
+ Exadata VMCluster type
533
+ """
534
+ return pulumi.get(self, "vm_cluster_type")
535
+
534
536
  @property
535
537
  @pulumi.getter(name="vmclusterId")
536
538
  def vmcluster_id(self) -> Optional[str]:
@@ -547,6 +549,8 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetail(dict):
547
549
  suggest = None
548
550
  if key == "compartmentId":
549
551
  suggest = "compartment_id"
552
+ elif key == "connectionCredentialDetails":
553
+ suggest = "connection_credential_details"
550
554
  elif key == "connectionDetails":
551
555
  suggest = "connection_details"
552
556
  elif key == "credentialDetails":
@@ -565,6 +569,8 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetail(dict):
565
569
  suggest = "entity_source"
566
570
  elif key == "freeformTags":
567
571
  suggest = "freeform_tags"
572
+ elif key == "managementAgentId":
573
+ suggest = "management_agent_id"
568
574
  elif key == "opsiPrivateEndpointId":
569
575
  suggest = "opsi_private_endpoint_id"
570
576
  elif key == "serviceName":
@@ -585,6 +591,7 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetail(dict):
585
591
 
586
592
  def __init__(__self__, *,
587
593
  compartment_id: Optional[str] = None,
594
+ connection_credential_details: Optional['outputs.ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionCredentialDetails'] = None,
588
595
  connection_details: Optional['outputs.ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetails'] = None,
589
596
  credential_details: Optional['outputs.ExadataInsightMemberVmClusterDetailMemberDatabaseDetailCredentialDetails'] = None,
590
597
  database_id: Optional[str] = None,
@@ -594,26 +601,29 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetail(dict):
594
601
  deployment_type: Optional[str] = None,
595
602
  entity_source: Optional[str] = None,
596
603
  freeform_tags: Optional[Mapping[str, str]] = None,
604
+ management_agent_id: Optional[str] = None,
597
605
  opsi_private_endpoint_id: Optional[str] = None,
598
606
  service_name: Optional[str] = None,
599
607
  system_tags: Optional[Mapping[str, str]] = None):
600
608
  """
601
609
  :param str compartment_id: (Updatable) Compartment Identifier of database
602
- :param 'ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailsArgs' connection_details: Connection details of the private endpoints.
610
+ :param 'ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionCredentialDetailsArgs' connection_credential_details: User credential details to connect to the database.
611
+ :param 'ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailsArgs' connection_details: Connection details to connect to the database. HostName, protocol, and port should be specified.
603
612
  :param 'ExadataInsightMemberVmClusterDetailMemberDatabaseDetailCredentialDetailsArgs' credential_details: User credential details to connect to the database.
604
613
  :param str database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database.
605
614
  :param str database_resource_type: Oracle Cloud Infrastructure database resource type
606
- :param str dbm_private_endpoint_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Management private endpoint
607
- :param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
608
- :param str deployment_type: Database Deployment Type
609
- :param str entity_source: Source of the database entity.
610
- :param Mapping[str, str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
615
+ :param Mapping[str, str] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
616
+ :param str deployment_type: Database Deployment Type (EXACS will be supported in the future)
617
+ :param str entity_source: (Updatable) Source of the Exadata system.
618
+ :param Mapping[str, 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"}`
619
+ :param str management_agent_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Management Agent
611
620
  :param str opsi_private_endpoint_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the OPSI private endpoint
612
- :param str service_name: Database service name used for connection requests.
613
621
  :param Mapping[str, str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
614
622
  """
615
623
  if compartment_id is not None:
616
624
  pulumi.set(__self__, "compartment_id", compartment_id)
625
+ if connection_credential_details is not None:
626
+ pulumi.set(__self__, "connection_credential_details", connection_credential_details)
617
627
  if connection_details is not None:
618
628
  pulumi.set(__self__, "connection_details", connection_details)
619
629
  if credential_details is not None:
@@ -632,6 +642,8 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetail(dict):
632
642
  pulumi.set(__self__, "entity_source", entity_source)
633
643
  if freeform_tags is not None:
634
644
  pulumi.set(__self__, "freeform_tags", freeform_tags)
645
+ if management_agent_id is not None:
646
+ pulumi.set(__self__, "management_agent_id", management_agent_id)
635
647
  if opsi_private_endpoint_id is not None:
636
648
  pulumi.set(__self__, "opsi_private_endpoint_id", opsi_private_endpoint_id)
637
649
  if service_name is not None:
@@ -647,11 +659,19 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetail(dict):
647
659
  """
648
660
  return pulumi.get(self, "compartment_id")
649
661
 
662
+ @property
663
+ @pulumi.getter(name="connectionCredentialDetails")
664
+ def connection_credential_details(self) -> Optional['outputs.ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionCredentialDetails']:
665
+ """
666
+ User credential details to connect to the database.
667
+ """
668
+ return pulumi.get(self, "connection_credential_details")
669
+
650
670
  @property
651
671
  @pulumi.getter(name="connectionDetails")
652
672
  def connection_details(self) -> Optional['outputs.ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetails']:
653
673
  """
654
- Connection details of the private endpoints.
674
+ Connection details to connect to the database. HostName, protocol, and port should be specified.
655
675
  """
656
676
  return pulumi.get(self, "connection_details")
657
677
 
@@ -682,16 +702,13 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetail(dict):
682
702
  @property
683
703
  @pulumi.getter(name="dbmPrivateEndpointId")
684
704
  def dbm_private_endpoint_id(self) -> Optional[str]:
685
- """
686
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Management private endpoint
687
- """
688
705
  return pulumi.get(self, "dbm_private_endpoint_id")
689
706
 
690
707
  @property
691
708
  @pulumi.getter(name="definedTags")
692
709
  def defined_tags(self) -> Optional[Mapping[str, str]]:
693
710
  """
694
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
711
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
695
712
  """
696
713
  return pulumi.get(self, "defined_tags")
697
714
 
@@ -699,7 +716,7 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetail(dict):
699
716
  @pulumi.getter(name="deploymentType")
700
717
  def deployment_type(self) -> Optional[str]:
701
718
  """
702
- Database Deployment Type
719
+ Database Deployment Type (EXACS will be supported in the future)
703
720
  """
704
721
  return pulumi.get(self, "deployment_type")
705
722
 
@@ -707,7 +724,7 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetail(dict):
707
724
  @pulumi.getter(name="entitySource")
708
725
  def entity_source(self) -> Optional[str]:
709
726
  """
710
- Source of the database entity.
727
+ (Updatable) Source of the Exadata system.
711
728
  """
712
729
  return pulumi.get(self, "entity_source")
713
730
 
@@ -715,10 +732,18 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetail(dict):
715
732
  @pulumi.getter(name="freeformTags")
716
733
  def freeform_tags(self) -> Optional[Mapping[str, str]]:
717
734
  """
718
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
735
+ (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
719
736
  """
720
737
  return pulumi.get(self, "freeform_tags")
721
738
 
739
+ @property
740
+ @pulumi.getter(name="managementAgentId")
741
+ def management_agent_id(self) -> Optional[str]:
742
+ """
743
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Management Agent
744
+ """
745
+ return pulumi.get(self, "management_agent_id")
746
+
722
747
  @property
723
748
  @pulumi.getter(name="opsiPrivateEndpointId")
724
749
  def opsi_private_endpoint_id(self) -> Optional[str]:
@@ -730,9 +755,6 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetail(dict):
730
755
  @property
731
756
  @pulumi.getter(name="serviceName")
732
757
  def service_name(self) -> Optional[str]:
733
- """
734
- Database service name used for connection requests.
735
- """
736
758
  return pulumi.get(self, "service_name")
737
759
 
738
760
  @property
@@ -744,12 +766,117 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetail(dict):
744
766
  return pulumi.get(self, "system_tags")
745
767
 
746
768
 
769
+ @pulumi.output_type
770
+ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionCredentialDetails(dict):
771
+ @staticmethod
772
+ def __key_warning(key: str):
773
+ suggest = None
774
+ if key == "credentialType":
775
+ suggest = "credential_type"
776
+ elif key == "credentialSourceName":
777
+ suggest = "credential_source_name"
778
+ elif key == "passwordSecretId":
779
+ suggest = "password_secret_id"
780
+ elif key == "userName":
781
+ suggest = "user_name"
782
+ elif key == "walletSecretId":
783
+ suggest = "wallet_secret_id"
784
+
785
+ if suggest:
786
+ pulumi.log.warn(f"Key '{key}' not found in ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionCredentialDetails. Access the value via the '{suggest}' property getter instead.")
787
+
788
+ def __getitem__(self, key: str) -> Any:
789
+ ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionCredentialDetails.__key_warning(key)
790
+ return super().__getitem__(key)
791
+
792
+ def get(self, key: str, default = None) -> Any:
793
+ ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionCredentialDetails.__key_warning(key)
794
+ return super().get(key, default)
795
+
796
+ def __init__(__self__, *,
797
+ credential_type: str,
798
+ credential_source_name: Optional[str] = None,
799
+ password_secret_id: Optional[str] = None,
800
+ role: Optional[str] = None,
801
+ user_name: Optional[str] = None,
802
+ wallet_secret_id: Optional[str] = None):
803
+ """
804
+ :param str credential_type: Credential type.
805
+ :param str credential_source_name: Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
806
+ :param str password_secret_id: The secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) mapping to the database credentials.
807
+ :param str role: database user role.
808
+ :param str user_name: database user name.
809
+ :param 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.
810
+ """
811
+ pulumi.set(__self__, "credential_type", credential_type)
812
+ if credential_source_name is not None:
813
+ pulumi.set(__self__, "credential_source_name", credential_source_name)
814
+ if password_secret_id is not None:
815
+ pulumi.set(__self__, "password_secret_id", password_secret_id)
816
+ if role is not None:
817
+ pulumi.set(__self__, "role", role)
818
+ if user_name is not None:
819
+ pulumi.set(__self__, "user_name", user_name)
820
+ if wallet_secret_id is not None:
821
+ pulumi.set(__self__, "wallet_secret_id", wallet_secret_id)
822
+
823
+ @property
824
+ @pulumi.getter(name="credentialType")
825
+ def credential_type(self) -> str:
826
+ """
827
+ Credential type.
828
+ """
829
+ return pulumi.get(self, "credential_type")
830
+
831
+ @property
832
+ @pulumi.getter(name="credentialSourceName")
833
+ def credential_source_name(self) -> Optional[str]:
834
+ """
835
+ Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
836
+ """
837
+ return pulumi.get(self, "credential_source_name")
838
+
839
+ @property
840
+ @pulumi.getter(name="passwordSecretId")
841
+ def password_secret_id(self) -> Optional[str]:
842
+ """
843
+ The secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) mapping to the database credentials.
844
+ """
845
+ return pulumi.get(self, "password_secret_id")
846
+
847
+ @property
848
+ @pulumi.getter
849
+ def role(self) -> Optional[str]:
850
+ """
851
+ database user role.
852
+ """
853
+ return pulumi.get(self, "role")
854
+
855
+ @property
856
+ @pulumi.getter(name="userName")
857
+ def user_name(self) -> Optional[str]:
858
+ """
859
+ database user name.
860
+ """
861
+ return pulumi.get(self, "user_name")
862
+
863
+ @property
864
+ @pulumi.getter(name="walletSecretId")
865
+ def wallet_secret_id(self) -> Optional[str]:
866
+ """
867
+ 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.
868
+ """
869
+ return pulumi.get(self, "wallet_secret_id")
870
+
871
+
747
872
  @pulumi.output_type
748
873
  class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetails(dict):
749
874
  @staticmethod
750
875
  def __key_warning(key: str):
751
876
  suggest = None
752
- if key == "serviceName":
877
+ if key == "hostName":
878
+ suggest = "host_name"
879
+ elif key == "serviceName":
753
880
  suggest = "service_name"
754
881
 
755
882
  if suggest:
@@ -764,21 +891,37 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetails(d
764
891
  return super().get(key, default)
765
892
 
766
893
  def __init__(__self__, *,
894
+ host_name: Optional[str] = None,
767
895
  hosts: Optional[Sequence['outputs.ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailsHost']] = None,
896
+ port: Optional[int] = None,
768
897
  protocol: Optional[str] = None,
769
898
  service_name: Optional[str] = None):
770
899
  """
900
+ :param str host_name: Name of the listener host that will be used to create the connect string to the database.
771
901
  :param Sequence['ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailsHostArgs'] hosts: List of hosts and port for private endpoint accessed database resource.
902
+ :param int port: Listener port number used for connection requests.
772
903
  :param str protocol: Protocol used for connection requests for private endpoint accssed database resource.
773
904
  :param str service_name: Database service name used for connection requests.
774
905
  """
906
+ if host_name is not None:
907
+ pulumi.set(__self__, "host_name", host_name)
775
908
  if hosts is not None:
776
909
  pulumi.set(__self__, "hosts", hosts)
910
+ if port is not None:
911
+ pulumi.set(__self__, "port", port)
777
912
  if protocol is not None:
778
913
  pulumi.set(__self__, "protocol", protocol)
779
914
  if service_name is not None:
780
915
  pulumi.set(__self__, "service_name", service_name)
781
916
 
917
+ @property
918
+ @pulumi.getter(name="hostName")
919
+ def host_name(self) -> Optional[str]:
920
+ """
921
+ Name of the listener host that will be used to create the connect string to the database.
922
+ """
923
+ return pulumi.get(self, "host_name")
924
+
782
925
  @property
783
926
  @pulumi.getter
784
927
  def hosts(self) -> Optional[Sequence['outputs.ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailsHost']]:
@@ -787,6 +930,14 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetails(d
787
930
  """
788
931
  return pulumi.get(self, "hosts")
789
932
 
933
+ @property
934
+ @pulumi.getter
935
+ def port(self) -> Optional[int]:
936
+ """
937
+ Listener port number used for connection requests.
938
+ """
939
+ return pulumi.get(self, "port")
940
+
790
941
  @property
791
942
  @pulumi.getter
792
943
  def protocol(self) -> Optional[str]:
@@ -886,14 +1037,6 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailCredentialDetails(d
886
1037
  role: Optional[str] = None,
887
1038
  user_name: Optional[str] = None,
888
1039
  wallet_secret_id: Optional[str] = None):
889
- """
890
- :param str credential_type: Credential type.
891
- :param str credential_source_name: Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
892
- :param str password_secret_id: The secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) mapping to the database credentials.
893
- :param str role: database user role.
894
- :param str user_name: database user name.
895
- :param 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.
896
- """
897
1040
  pulumi.set(__self__, "credential_type", credential_type)
898
1041
  if credential_source_name is not None:
899
1042
  pulumi.set(__self__, "credential_source_name", credential_source_name)
@@ -909,49 +1052,31 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetailCredentialDetails(d
909
1052
  @property
910
1053
  @pulumi.getter(name="credentialType")
911
1054
  def credential_type(self) -> str:
912
- """
913
- Credential type.
914
- """
915
1055
  return pulumi.get(self, "credential_type")
916
1056
 
917
1057
  @property
918
1058
  @pulumi.getter(name="credentialSourceName")
919
1059
  def credential_source_name(self) -> Optional[str]:
920
- """
921
- Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
922
- """
923
1060
  return pulumi.get(self, "credential_source_name")
924
1061
 
925
1062
  @property
926
1063
  @pulumi.getter(name="passwordSecretId")
927
1064
  def password_secret_id(self) -> Optional[str]:
928
- """
929
- The secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) mapping to the database credentials.
930
- """
931
1065
  return pulumi.get(self, "password_secret_id")
932
1066
 
933
1067
  @property
934
1068
  @pulumi.getter
935
1069
  def role(self) -> Optional[str]:
936
- """
937
- database user role.
938
- """
939
1070
  return pulumi.get(self, "role")
940
1071
 
941
1072
  @property
942
1073
  @pulumi.getter(name="userName")
943
1074
  def user_name(self) -> Optional[str]:
944
- """
945
- database user name.
946
- """
947
1075
  return pulumi.get(self, "user_name")
948
1076
 
949
1077
  @property
950
1078
  @pulumi.getter(name="walletSecretId")
951
1079
  def wallet_secret_id(self) -> Optional[str]:
952
- """
953
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database keystore contents are stored.
954
- """
955
1080
  return pulumi.get(self, "wallet_secret_id")
956
1081
 
957
1082
 
@@ -2253,22 +2378,19 @@ class GetDatabaseInsightConnectionCredentialDetailResult(dict):
2253
2378
  credential_type: str,
2254
2379
  password_secret_id: str,
2255
2380
  role: str,
2256
- user_name: str,
2257
- wallet_secret_id: str):
2381
+ user_name: str):
2258
2382
  """
2259
2383
  :param str credential_source_name: Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
2260
- :param str credential_type: Credential type.
2384
+ :param str credential_type: CREDENTIALS_BY_SOURCE is supplied via the External Database Service. CREDENTIALS_BY_VAULT is supplied by secret service to connection PE_COMANAGED_DATABASE and ADB as well. CREDENTIALS_BY_IAM is used db-token to connect only for Autonomous Database.
2261
2385
  :param str password_secret_id: The secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) mapping to the database credentials.
2262
2386
  :param str role: database user role.
2263
2387
  :param str user_name: database user name.
2264
- :param 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.
2265
2388
  """
2266
2389
  pulumi.set(__self__, "credential_source_name", credential_source_name)
2267
2390
  pulumi.set(__self__, "credential_type", credential_type)
2268
2391
  pulumi.set(__self__, "password_secret_id", password_secret_id)
2269
2392
  pulumi.set(__self__, "role", role)
2270
2393
  pulumi.set(__self__, "user_name", user_name)
2271
- pulumi.set(__self__, "wallet_secret_id", wallet_secret_id)
2272
2394
 
2273
2395
  @property
2274
2396
  @pulumi.getter(name="credentialSourceName")
@@ -2282,7 +2404,7 @@ class GetDatabaseInsightConnectionCredentialDetailResult(dict):
2282
2404
  @pulumi.getter(name="credentialType")
2283
2405
  def credential_type(self) -> str:
2284
2406
  """
2285
- Credential type.
2407
+ CREDENTIALS_BY_SOURCE is supplied via the External Database Service. CREDENTIALS_BY_VAULT is supplied by secret service to connection PE_COMANAGED_DATABASE and ADB as well. CREDENTIALS_BY_IAM is used db-token to connect only for Autonomous Database.
2286
2408
  """
2287
2409
  return pulumi.get(self, "credential_type")
2288
2410
 
@@ -2310,14 +2432,6 @@ class GetDatabaseInsightConnectionCredentialDetailResult(dict):
2310
2432
  """
2311
2433
  return pulumi.get(self, "user_name")
2312
2434
 
2313
- @property
2314
- @pulumi.getter(name="walletSecretId")
2315
- def wallet_secret_id(self) -> str:
2316
- """
2317
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database keystore contents are stored.
2318
- """
2319
- return pulumi.get(self, "wallet_secret_id")
2320
-
2321
2435
 
2322
2436
  @pulumi.output_type
2323
2437
  class GetDatabaseInsightConnectionDetailResult(dict):
@@ -2421,7 +2535,7 @@ class GetDatabaseInsightCredentialDetailResult(dict):
2421
2535
  wallet_secret_id: str):
2422
2536
  """
2423
2537
  :param str credential_source_name: Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
2424
- :param str credential_type: Credential type.
2538
+ :param str credential_type: CREDENTIALS_BY_SOURCE is supplied via the External Database Service. CREDENTIALS_BY_VAULT is supplied by secret service to connection PE_COMANAGED_DATABASE and ADB as well. CREDENTIALS_BY_IAM is used db-token to connect only for Autonomous Database.
2425
2539
  :param str password_secret_id: The secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) mapping to the database credentials.
2426
2540
  :param str role: database user role.
2427
2541
  :param str user_name: database user name.
@@ -2446,7 +2560,7 @@ class GetDatabaseInsightCredentialDetailResult(dict):
2446
2560
  @pulumi.getter(name="credentialType")
2447
2561
  def credential_type(self) -> str:
2448
2562
  """
2449
- Credential type.
2563
+ CREDENTIALS_BY_SOURCE is supplied via the External Database Service. CREDENTIALS_BY_VAULT is supplied by secret service to connection PE_COMANAGED_DATABASE and ADB as well. CREDENTIALS_BY_IAM is used db-token to connect only for Autonomous Database.
2450
2564
  """
2451
2565
  return pulumi.get(self, "credential_type")
2452
2566
 
@@ -2501,6 +2615,7 @@ class GetDatabaseInsightsDatabaseInsightsCollectionItemResult(dict):
2501
2615
  compartment_id: str,
2502
2616
  connection_credential_details: Sequence['outputs.GetDatabaseInsightsDatabaseInsightsCollectionItemConnectionCredentialDetailResult'],
2503
2617
  connection_details: Sequence['outputs.GetDatabaseInsightsDatabaseInsightsCollectionItemConnectionDetailResult'],
2618
+ connector_id: str,
2504
2619
  credential_details: Sequence['outputs.GetDatabaseInsightsDatabaseInsightsCollectionItemCredentialDetailResult'],
2505
2620
  database_connection_status_details: str,
2506
2621
  database_display_name: str,
@@ -2522,9 +2637,11 @@ class GetDatabaseInsightsDatabaseInsightsCollectionItemResult(dict):
2522
2637
  exadata_insight_id: str,
2523
2638
  freeform_tags: Mapping[str, str],
2524
2639
  id: str,
2640
+ is_advanced_features_enabled: bool,
2525
2641
  is_heat_wave_cluster_attached: bool,
2526
2642
  is_highly_available: bool,
2527
2643
  lifecycle_details: str,
2644
+ management_agent_id: str,
2528
2645
  opsi_private_endpoint_id: str,
2529
2646
  parent_id: str,
2530
2647
  processor_count: int,
@@ -2539,6 +2656,7 @@ class GetDatabaseInsightsDatabaseInsightsCollectionItemResult(dict):
2539
2656
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
2540
2657
  :param Sequence['GetDatabaseInsightsDatabaseInsightsCollectionItemConnectionCredentialDetailArgs'] connection_credential_details: User credential details to connect to the database.
2541
2658
  :param Sequence['GetDatabaseInsightsDatabaseInsightsCollectionItemConnectionDetailArgs'] connection_details: Connection details to connect to the database. HostName, protocol, and port should be specified.
2659
+ :param str connector_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of External Database Connector
2542
2660
  :param Sequence['GetDatabaseInsightsDatabaseInsightsCollectionItemCredentialDetailArgs'] credential_details: User credential details to connect to the database.
2543
2661
  :param 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.
2544
2662
  :param str database_display_name: Display name of database
@@ -2558,6 +2676,7 @@ class GetDatabaseInsightsDatabaseInsightsCollectionItemResult(dict):
2558
2676
  :param str exadata_insight_id: [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of exadata insight resource.
2559
2677
  :param Mapping[str, str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
2560
2678
  :param str id: Optional list of database insight resource [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
2679
+ :param bool is_advanced_features_enabled: Flag is to identify if advanced features for autonomous database is enabled or not
2561
2680
  :param bool is_heat_wave_cluster_attached: Specifies if MYSQL DB System has heatwave cluster attached.
2562
2681
  :param bool is_highly_available: Specifies if MYSQL DB System is highly available.
2563
2682
  :param 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.
@@ -2575,6 +2694,7 @@ class GetDatabaseInsightsDatabaseInsightsCollectionItemResult(dict):
2575
2694
  pulumi.set(__self__, "compartment_id", compartment_id)
2576
2695
  pulumi.set(__self__, "connection_credential_details", connection_credential_details)
2577
2696
  pulumi.set(__self__, "connection_details", connection_details)
2697
+ pulumi.set(__self__, "connector_id", connector_id)
2578
2698
  pulumi.set(__self__, "credential_details", credential_details)
2579
2699
  pulumi.set(__self__, "database_connection_status_details", database_connection_status_details)
2580
2700
  pulumi.set(__self__, "database_display_name", database_display_name)
@@ -2596,9 +2716,11 @@ class GetDatabaseInsightsDatabaseInsightsCollectionItemResult(dict):
2596
2716
  pulumi.set(__self__, "exadata_insight_id", exadata_insight_id)
2597
2717
  pulumi.set(__self__, "freeform_tags", freeform_tags)
2598
2718
  pulumi.set(__self__, "id", id)
2719
+ pulumi.set(__self__, "is_advanced_features_enabled", is_advanced_features_enabled)
2599
2720
  pulumi.set(__self__, "is_heat_wave_cluster_attached", is_heat_wave_cluster_attached)
2600
2721
  pulumi.set(__self__, "is_highly_available", is_highly_available)
2601
2722
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
2723
+ pulumi.set(__self__, "management_agent_id", management_agent_id)
2602
2724
  pulumi.set(__self__, "opsi_private_endpoint_id", opsi_private_endpoint_id)
2603
2725
  pulumi.set(__self__, "parent_id", parent_id)
2604
2726
  pulumi.set(__self__, "processor_count", processor_count)
@@ -2634,6 +2756,14 @@ class GetDatabaseInsightsDatabaseInsightsCollectionItemResult(dict):
2634
2756
  """
2635
2757
  return pulumi.get(self, "connection_details")
2636
2758
 
2759
+ @property
2760
+ @pulumi.getter(name="connectorId")
2761
+ def connector_id(self) -> str:
2762
+ """
2763
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of External Database Connector
2764
+ """
2765
+ return pulumi.get(self, "connector_id")
2766
+
2637
2767
  @property
2638
2768
  @pulumi.getter(name="credentialDetails")
2639
2769
  def credential_details(self) -> Sequence['outputs.GetDatabaseInsightsDatabaseInsightsCollectionItemCredentialDetailResult']:
@@ -2796,6 +2926,14 @@ class GetDatabaseInsightsDatabaseInsightsCollectionItemResult(dict):
2796
2926
  """
2797
2927
  return pulumi.get(self, "id")
2798
2928
 
2929
+ @property
2930
+ @pulumi.getter(name="isAdvancedFeaturesEnabled")
2931
+ def is_advanced_features_enabled(self) -> bool:
2932
+ """
2933
+ Flag is to identify if advanced features for autonomous database is enabled or not
2934
+ """
2935
+ return pulumi.get(self, "is_advanced_features_enabled")
2936
+
2799
2937
  @property
2800
2938
  @pulumi.getter(name="isHeatWaveClusterAttached")
2801
2939
  def is_heat_wave_cluster_attached(self) -> bool:
@@ -2820,6 +2958,11 @@ class GetDatabaseInsightsDatabaseInsightsCollectionItemResult(dict):
2820
2958
  """
2821
2959
  return pulumi.get(self, "lifecycle_details")
2822
2960
 
2961
+ @property
2962
+ @pulumi.getter(name="managementAgentId")
2963
+ def management_agent_id(self) -> str:
2964
+ return pulumi.get(self, "management_agent_id")
2965
+
2823
2966
  @property
2824
2967
  @pulumi.getter(name="opsiPrivateEndpointId")
2825
2968
  def opsi_private_endpoint_id(self) -> str:
@@ -2908,22 +3051,19 @@ class GetDatabaseInsightsDatabaseInsightsCollectionItemConnectionCredentialDetai
2908
3051
  credential_type: str,
2909
3052
  password_secret_id: str,
2910
3053
  role: str,
2911
- user_name: str,
2912
- wallet_secret_id: str):
3054
+ user_name: str):
2913
3055
  """
2914
3056
  :param str credential_source_name: Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
2915
- :param str credential_type: Credential type.
3057
+ :param str credential_type: CREDENTIALS_BY_SOURCE is supplied via the External Database Service. CREDENTIALS_BY_VAULT is supplied by secret service to connection PE_COMANAGED_DATABASE and ADB as well. CREDENTIALS_BY_IAM is used db-token to connect only for Autonomous Database.
2916
3058
  :param str password_secret_id: The secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) mapping to the database credentials.
2917
3059
  :param str role: database user role.
2918
3060
  :param str user_name: database user name.
2919
- :param 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.
2920
3061
  """
2921
3062
  pulumi.set(__self__, "credential_source_name", credential_source_name)
2922
3063
  pulumi.set(__self__, "credential_type", credential_type)
2923
3064
  pulumi.set(__self__, "password_secret_id", password_secret_id)
2924
3065
  pulumi.set(__self__, "role", role)
2925
3066
  pulumi.set(__self__, "user_name", user_name)
2926
- pulumi.set(__self__, "wallet_secret_id", wallet_secret_id)
2927
3067
 
2928
3068
  @property
2929
3069
  @pulumi.getter(name="credentialSourceName")
@@ -2937,7 +3077,7 @@ class GetDatabaseInsightsDatabaseInsightsCollectionItemConnectionCredentialDetai
2937
3077
  @pulumi.getter(name="credentialType")
2938
3078
  def credential_type(self) -> str:
2939
3079
  """
2940
- Credential type.
3080
+ CREDENTIALS_BY_SOURCE is supplied via the External Database Service. CREDENTIALS_BY_VAULT is supplied by secret service to connection PE_COMANAGED_DATABASE and ADB as well. CREDENTIALS_BY_IAM is used db-token to connect only for Autonomous Database.
2941
3081
  """
2942
3082
  return pulumi.get(self, "credential_type")
2943
3083
 
@@ -2965,14 +3105,6 @@ class GetDatabaseInsightsDatabaseInsightsCollectionItemConnectionCredentialDetai
2965
3105
  """
2966
3106
  return pulumi.get(self, "user_name")
2967
3107
 
2968
- @property
2969
- @pulumi.getter(name="walletSecretId")
2970
- def wallet_secret_id(self) -> str:
2971
- """
2972
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database keystore contents are stored.
2973
- """
2974
- return pulumi.get(self, "wallet_secret_id")
2975
-
2976
3108
 
2977
3109
  @pulumi.output_type
2978
3110
  class GetDatabaseInsightsDatabaseInsightsCollectionItemConnectionDetailResult(dict):
@@ -3076,7 +3208,7 @@ class GetDatabaseInsightsDatabaseInsightsCollectionItemCredentialDetailResult(di
3076
3208
  wallet_secret_id: str):
3077
3209
  """
3078
3210
  :param str credential_source_name: Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
3079
- :param str credential_type: Credential type.
3211
+ :param str credential_type: CREDENTIALS_BY_SOURCE is supplied via the External Database Service. CREDENTIALS_BY_VAULT is supplied by secret service to connection PE_COMANAGED_DATABASE and ADB as well. CREDENTIALS_BY_IAM is used db-token to connect only for Autonomous Database.
3080
3212
  :param str password_secret_id: The secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) mapping to the database credentials.
3081
3213
  :param str role: database user role.
3082
3214
  :param str user_name: database user name.
@@ -3101,7 +3233,7 @@ class GetDatabaseInsightsDatabaseInsightsCollectionItemCredentialDetailResult(di
3101
3233
  @pulumi.getter(name="credentialType")
3102
3234
  def credential_type(self) -> str:
3103
3235
  """
3104
- Credential type.
3236
+ CREDENTIALS_BY_SOURCE is supplied via the External Database Service. CREDENTIALS_BY_VAULT is supplied by secret service to connection PE_COMANAGED_DATABASE and ADB as well. CREDENTIALS_BY_IAM is used db-token to connect only for Autonomous Database.
3105
3237
  """
3106
3238
  return pulumi.get(self, "credential_type")
3107
3239
 
@@ -3372,6 +3504,7 @@ class GetExadataInsightMemberVmClusterDetailResult(dict):
3372
3504
  dbm_private_endpoint_id: str,
3373
3505
  member_database_details: Sequence['outputs.GetExadataInsightMemberVmClusterDetailMemberDatabaseDetailResult'],
3374
3506
  opsi_private_endpoint_id: str,
3507
+ vm_cluster_type: str,
3375
3508
  vmcluster_id: str):
3376
3509
  """
3377
3510
  :param str compartment_id: Compartment identifier of the Exadata insight resource
@@ -3380,6 +3513,7 @@ class GetExadataInsightMemberVmClusterDetailResult(dict):
3380
3513
  pulumi.set(__self__, "dbm_private_endpoint_id", dbm_private_endpoint_id)
3381
3514
  pulumi.set(__self__, "member_database_details", member_database_details)
3382
3515
  pulumi.set(__self__, "opsi_private_endpoint_id", opsi_private_endpoint_id)
3516
+ pulumi.set(__self__, "vm_cluster_type", vm_cluster_type)
3383
3517
  pulumi.set(__self__, "vmcluster_id", vmcluster_id)
3384
3518
 
3385
3519
  @property
@@ -3405,6 +3539,11 @@ class GetExadataInsightMemberVmClusterDetailResult(dict):
3405
3539
  def opsi_private_endpoint_id(self) -> str:
3406
3540
  return pulumi.get(self, "opsi_private_endpoint_id")
3407
3541
 
3542
+ @property
3543
+ @pulumi.getter(name="vmClusterType")
3544
+ def vm_cluster_type(self) -> str:
3545
+ return pulumi.get(self, "vm_cluster_type")
3546
+
3408
3547
  @property
3409
3548
  @pulumi.getter(name="vmclusterId")
3410
3549
  def vmcluster_id(self) -> str:
@@ -3415,6 +3554,7 @@ class GetExadataInsightMemberVmClusterDetailResult(dict):
3415
3554
  class GetExadataInsightMemberVmClusterDetailMemberDatabaseDetailResult(dict):
3416
3555
  def __init__(__self__, *,
3417
3556
  compartment_id: str,
3557
+ connection_credential_details: Sequence['outputs.GetExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionCredentialDetailResult'],
3418
3558
  connection_details: Sequence['outputs.GetExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailResult'],
3419
3559
  credential_details: Sequence['outputs.GetExadataInsightMemberVmClusterDetailMemberDatabaseDetailCredentialDetailResult'],
3420
3560
  database_id: str,
@@ -3424,6 +3564,7 @@ class GetExadataInsightMemberVmClusterDetailMemberDatabaseDetailResult(dict):
3424
3564
  deployment_type: str,
3425
3565
  entity_source: str,
3426
3566
  freeform_tags: Mapping[str, str],
3567
+ management_agent_id: str,
3427
3568
  opsi_private_endpoint_id: str,
3428
3569
  service_name: str,
3429
3570
  system_tags: Mapping[str, str]):
@@ -3435,6 +3576,7 @@ class GetExadataInsightMemberVmClusterDetailMemberDatabaseDetailResult(dict):
3435
3576
  :param Mapping[str, str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
3436
3577
  """
3437
3578
  pulumi.set(__self__, "compartment_id", compartment_id)
3579
+ pulumi.set(__self__, "connection_credential_details", connection_credential_details)
3438
3580
  pulumi.set(__self__, "connection_details", connection_details)
3439
3581
  pulumi.set(__self__, "credential_details", credential_details)
3440
3582
  pulumi.set(__self__, "database_id", database_id)
@@ -3444,6 +3586,7 @@ class GetExadataInsightMemberVmClusterDetailMemberDatabaseDetailResult(dict):
3444
3586
  pulumi.set(__self__, "deployment_type", deployment_type)
3445
3587
  pulumi.set(__self__, "entity_source", entity_source)
3446
3588
  pulumi.set(__self__, "freeform_tags", freeform_tags)
3589
+ pulumi.set(__self__, "management_agent_id", management_agent_id)
3447
3590
  pulumi.set(__self__, "opsi_private_endpoint_id", opsi_private_endpoint_id)
3448
3591
  pulumi.set(__self__, "service_name", service_name)
3449
3592
  pulumi.set(__self__, "system_tags", system_tags)
@@ -3456,6 +3599,11 @@ class GetExadataInsightMemberVmClusterDetailMemberDatabaseDetailResult(dict):
3456
3599
  """
3457
3600
  return pulumi.get(self, "compartment_id")
3458
3601
 
3602
+ @property
3603
+ @pulumi.getter(name="connectionCredentialDetails")
3604
+ def connection_credential_details(self) -> Sequence['outputs.GetExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionCredentialDetailResult']:
3605
+ return pulumi.get(self, "connection_credential_details")
3606
+
3459
3607
  @property
3460
3608
  @pulumi.getter(name="connectionDetails")
3461
3609
  def connection_details(self) -> Sequence['outputs.GetExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailResult']:
@@ -3510,6 +3658,11 @@ class GetExadataInsightMemberVmClusterDetailMemberDatabaseDetailResult(dict):
3510
3658
  """
3511
3659
  return pulumi.get(self, "freeform_tags")
3512
3660
 
3661
+ @property
3662
+ @pulumi.getter(name="managementAgentId")
3663
+ def management_agent_id(self) -> str:
3664
+ return pulumi.get(self, "management_agent_id")
3665
+
3513
3666
  @property
3514
3667
  @pulumi.getter(name="opsiPrivateEndpointId")
3515
3668
  def opsi_private_endpoint_id(self) -> str:
@@ -3529,21 +3682,82 @@ class GetExadataInsightMemberVmClusterDetailMemberDatabaseDetailResult(dict):
3529
3682
  return pulumi.get(self, "system_tags")
3530
3683
 
3531
3684
 
3685
+ @pulumi.output_type
3686
+ class GetExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionCredentialDetailResult(dict):
3687
+ def __init__(__self__, *,
3688
+ credential_source_name: str,
3689
+ credential_type: str,
3690
+ password_secret_id: str,
3691
+ role: str,
3692
+ user_name: str,
3693
+ wallet_secret_id: str):
3694
+ pulumi.set(__self__, "credential_source_name", credential_source_name)
3695
+ pulumi.set(__self__, "credential_type", credential_type)
3696
+ pulumi.set(__self__, "password_secret_id", password_secret_id)
3697
+ pulumi.set(__self__, "role", role)
3698
+ pulumi.set(__self__, "user_name", user_name)
3699
+ pulumi.set(__self__, "wallet_secret_id", wallet_secret_id)
3700
+
3701
+ @property
3702
+ @pulumi.getter(name="credentialSourceName")
3703
+ def credential_source_name(self) -> str:
3704
+ return pulumi.get(self, "credential_source_name")
3705
+
3706
+ @property
3707
+ @pulumi.getter(name="credentialType")
3708
+ def credential_type(self) -> str:
3709
+ return pulumi.get(self, "credential_type")
3710
+
3711
+ @property
3712
+ @pulumi.getter(name="passwordSecretId")
3713
+ def password_secret_id(self) -> str:
3714
+ return pulumi.get(self, "password_secret_id")
3715
+
3716
+ @property
3717
+ @pulumi.getter
3718
+ def role(self) -> str:
3719
+ return pulumi.get(self, "role")
3720
+
3721
+ @property
3722
+ @pulumi.getter(name="userName")
3723
+ def user_name(self) -> str:
3724
+ return pulumi.get(self, "user_name")
3725
+
3726
+ @property
3727
+ @pulumi.getter(name="walletSecretId")
3728
+ def wallet_secret_id(self) -> str:
3729
+ return pulumi.get(self, "wallet_secret_id")
3730
+
3731
+
3532
3732
  @pulumi.output_type
3533
3733
  class GetExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailResult(dict):
3534
3734
  def __init__(__self__, *,
3735
+ host_name: str,
3535
3736
  hosts: Sequence['outputs.GetExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailHostResult'],
3737
+ port: int,
3536
3738
  protocol: str,
3537
3739
  service_name: str):
3740
+ pulumi.set(__self__, "host_name", host_name)
3538
3741
  pulumi.set(__self__, "hosts", hosts)
3742
+ pulumi.set(__self__, "port", port)
3539
3743
  pulumi.set(__self__, "protocol", protocol)
3540
3744
  pulumi.set(__self__, "service_name", service_name)
3541
3745
 
3746
+ @property
3747
+ @pulumi.getter(name="hostName")
3748
+ def host_name(self) -> str:
3749
+ return pulumi.get(self, "host_name")
3750
+
3542
3751
  @property
3543
3752
  @pulumi.getter
3544
3753
  def hosts(self) -> Sequence['outputs.GetExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailHostResult']:
3545
3754
  return pulumi.get(self, "hosts")
3546
3755
 
3756
+ @property
3757
+ @pulumi.getter
3758
+ def port(self) -> int:
3759
+ return pulumi.get(self, "port")
3760
+
3547
3761
  @property
3548
3762
  @pulumi.getter
3549
3763
  def protocol(self) -> str:
@@ -3936,6 +4150,7 @@ class GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetail
3936
4150
  dbm_private_endpoint_id: str,
3937
4151
  member_database_details: Sequence['outputs.GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetailMemberDatabaseDetailResult'],
3938
4152
  opsi_private_endpoint_id: str,
4153
+ vm_cluster_type: str,
3939
4154
  vmcluster_id: str):
3940
4155
  """
3941
4156
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
@@ -3944,6 +4159,7 @@ class GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetail
3944
4159
  pulumi.set(__self__, "dbm_private_endpoint_id", dbm_private_endpoint_id)
3945
4160
  pulumi.set(__self__, "member_database_details", member_database_details)
3946
4161
  pulumi.set(__self__, "opsi_private_endpoint_id", opsi_private_endpoint_id)
4162
+ pulumi.set(__self__, "vm_cluster_type", vm_cluster_type)
3947
4163
  pulumi.set(__self__, "vmcluster_id", vmcluster_id)
3948
4164
 
3949
4165
  @property
@@ -3969,6 +4185,11 @@ class GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetail
3969
4185
  def opsi_private_endpoint_id(self) -> str:
3970
4186
  return pulumi.get(self, "opsi_private_endpoint_id")
3971
4187
 
4188
+ @property
4189
+ @pulumi.getter(name="vmClusterType")
4190
+ def vm_cluster_type(self) -> str:
4191
+ return pulumi.get(self, "vm_cluster_type")
4192
+
3972
4193
  @property
3973
4194
  @pulumi.getter(name="vmclusterId")
3974
4195
  def vmcluster_id(self) -> str:
@@ -3979,6 +4200,7 @@ class GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetail
3979
4200
  class GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetailMemberDatabaseDetailResult(dict):
3980
4201
  def __init__(__self__, *,
3981
4202
  compartment_id: str,
4203
+ connection_credential_details: Sequence['outputs.GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetailMemberDatabaseDetailConnectionCredentialDetailResult'],
3982
4204
  connection_details: Sequence['outputs.GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetailMemberDatabaseDetailConnectionDetailResult'],
3983
4205
  credential_details: Sequence['outputs.GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetailMemberDatabaseDetailCredentialDetailResult'],
3984
4206
  database_id: str,
@@ -3988,6 +4210,7 @@ class GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetail
3988
4210
  deployment_type: str,
3989
4211
  entity_source: str,
3990
4212
  freeform_tags: Mapping[str, str],
4213
+ management_agent_id: str,
3991
4214
  opsi_private_endpoint_id: str,
3992
4215
  service_name: str,
3993
4216
  system_tags: Mapping[str, str]):
@@ -3999,6 +4222,7 @@ class GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetail
3999
4222
  :param Mapping[str, str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
4000
4223
  """
4001
4224
  pulumi.set(__self__, "compartment_id", compartment_id)
4225
+ pulumi.set(__self__, "connection_credential_details", connection_credential_details)
4002
4226
  pulumi.set(__self__, "connection_details", connection_details)
4003
4227
  pulumi.set(__self__, "credential_details", credential_details)
4004
4228
  pulumi.set(__self__, "database_id", database_id)
@@ -4008,6 +4232,7 @@ class GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetail
4008
4232
  pulumi.set(__self__, "deployment_type", deployment_type)
4009
4233
  pulumi.set(__self__, "entity_source", entity_source)
4010
4234
  pulumi.set(__self__, "freeform_tags", freeform_tags)
4235
+ pulumi.set(__self__, "management_agent_id", management_agent_id)
4011
4236
  pulumi.set(__self__, "opsi_private_endpoint_id", opsi_private_endpoint_id)
4012
4237
  pulumi.set(__self__, "service_name", service_name)
4013
4238
  pulumi.set(__self__, "system_tags", system_tags)
@@ -4020,6 +4245,11 @@ class GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetail
4020
4245
  """
4021
4246
  return pulumi.get(self, "compartment_id")
4022
4247
 
4248
+ @property
4249
+ @pulumi.getter(name="connectionCredentialDetails")
4250
+ def connection_credential_details(self) -> Sequence['outputs.GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetailMemberDatabaseDetailConnectionCredentialDetailResult']:
4251
+ return pulumi.get(self, "connection_credential_details")
4252
+
4023
4253
  @property
4024
4254
  @pulumi.getter(name="connectionDetails")
4025
4255
  def connection_details(self) -> Sequence['outputs.GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetailMemberDatabaseDetailConnectionDetailResult']:
@@ -4074,6 +4304,11 @@ class GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetail
4074
4304
  """
4075
4305
  return pulumi.get(self, "freeform_tags")
4076
4306
 
4307
+ @property
4308
+ @pulumi.getter(name="managementAgentId")
4309
+ def management_agent_id(self) -> str:
4310
+ return pulumi.get(self, "management_agent_id")
4311
+
4077
4312
  @property
4078
4313
  @pulumi.getter(name="opsiPrivateEndpointId")
4079
4314
  def opsi_private_endpoint_id(self) -> str:
@@ -4093,21 +4328,82 @@ class GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetail
4093
4328
  return pulumi.get(self, "system_tags")
4094
4329
 
4095
4330
 
4331
+ @pulumi.output_type
4332
+ class GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetailMemberDatabaseDetailConnectionCredentialDetailResult(dict):
4333
+ def __init__(__self__, *,
4334
+ credential_source_name: str,
4335
+ credential_type: str,
4336
+ password_secret_id: str,
4337
+ role: str,
4338
+ user_name: str,
4339
+ wallet_secret_id: str):
4340
+ pulumi.set(__self__, "credential_source_name", credential_source_name)
4341
+ pulumi.set(__self__, "credential_type", credential_type)
4342
+ pulumi.set(__self__, "password_secret_id", password_secret_id)
4343
+ pulumi.set(__self__, "role", role)
4344
+ pulumi.set(__self__, "user_name", user_name)
4345
+ pulumi.set(__self__, "wallet_secret_id", wallet_secret_id)
4346
+
4347
+ @property
4348
+ @pulumi.getter(name="credentialSourceName")
4349
+ def credential_source_name(self) -> str:
4350
+ return pulumi.get(self, "credential_source_name")
4351
+
4352
+ @property
4353
+ @pulumi.getter(name="credentialType")
4354
+ def credential_type(self) -> str:
4355
+ return pulumi.get(self, "credential_type")
4356
+
4357
+ @property
4358
+ @pulumi.getter(name="passwordSecretId")
4359
+ def password_secret_id(self) -> str:
4360
+ return pulumi.get(self, "password_secret_id")
4361
+
4362
+ @property
4363
+ @pulumi.getter
4364
+ def role(self) -> str:
4365
+ return pulumi.get(self, "role")
4366
+
4367
+ @property
4368
+ @pulumi.getter(name="userName")
4369
+ def user_name(self) -> str:
4370
+ return pulumi.get(self, "user_name")
4371
+
4372
+ @property
4373
+ @pulumi.getter(name="walletSecretId")
4374
+ def wallet_secret_id(self) -> str:
4375
+ return pulumi.get(self, "wallet_secret_id")
4376
+
4377
+
4096
4378
  @pulumi.output_type
4097
4379
  class GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetailMemberDatabaseDetailConnectionDetailResult(dict):
4098
4380
  def __init__(__self__, *,
4381
+ host_name: str,
4099
4382
  hosts: Sequence['outputs.GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetailMemberDatabaseDetailConnectionDetailHostResult'],
4383
+ port: int,
4100
4384
  protocol: str,
4101
4385
  service_name: str):
4386
+ pulumi.set(__self__, "host_name", host_name)
4102
4387
  pulumi.set(__self__, "hosts", hosts)
4388
+ pulumi.set(__self__, "port", port)
4103
4389
  pulumi.set(__self__, "protocol", protocol)
4104
4390
  pulumi.set(__self__, "service_name", service_name)
4105
4391
 
4392
+ @property
4393
+ @pulumi.getter(name="hostName")
4394
+ def host_name(self) -> str:
4395
+ return pulumi.get(self, "host_name")
4396
+
4106
4397
  @property
4107
4398
  @pulumi.getter
4108
4399
  def hosts(self) -> Sequence['outputs.GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetailMemberDatabaseDetailConnectionDetailHostResult']:
4109
4400
  return pulumi.get(self, "hosts")
4110
4401
 
4402
+ @property
4403
+ @pulumi.getter
4404
+ def port(self) -> int:
4405
+ return pulumi.get(self, "port")
4406
+
4111
4407
  @property
4112
4408
  @pulumi.getter
4113
4409
  def protocol(self) -> str:
@@ -4296,7 +4592,7 @@ class GetHostInsightsHostInsightSummaryCollectionItemResult(dict):
4296
4592
  :param Mapping[str, str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
4297
4593
  :param str host_display_name: The user-friendly name for the host. The name does not have to be unique.
4298
4594
  :param str host_name: The host name. The host name is unique amongst the hosts managed by the same management agent.
4299
- :param str host_type: Filter by one or more host types. Possible values are CLOUD-HOST, EXTERNAL-HOST, COMANAGED-VM-HOST, COMANAGED-BM-HOST, COMANAGED-EXACS-HOST
4595
+ :param str host_type: 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
4300
4596
  :param str id: Optional list of host insight resource [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
4301
4597
  :param 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.
4302
4598
  :param str management_agent_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Management Agent
@@ -4454,7 +4750,7 @@ class GetHostInsightsHostInsightSummaryCollectionItemResult(dict):
4454
4750
  @pulumi.getter(name="hostType")
4455
4751
  def host_type(self) -> str:
4456
4752
  """
4457
- Filter by one or more host types. Possible values are CLOUD-HOST, EXTERNAL-HOST, COMANAGED-VM-HOST, COMANAGED-BM-HOST, COMANAGED-EXACS-HOST
4753
+ 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
4458
4754
  """
4459
4755
  return pulumi.get(self, "host_type")
4460
4756