pulumi-oci 1.19.0a1705693078__py3-none-any.whl → 1.20.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 (111) hide show
  1. pulumi_oci/__init__.py +59 -0
  2. pulumi_oci/adm/_inputs.py +99 -18
  3. pulumi_oci/adm/get_remediation_run_application_dependency_recommendations.py +23 -3
  4. pulumi_oci/adm/get_vulnerability_audit.py +31 -5
  5. pulumi_oci/adm/get_vulnerability_audit_application_dependency_vulnerabilities.py +43 -6
  6. pulumi_oci/adm/get_vulnerability_audit_application_dependency_vulnerability.py +27 -1
  7. pulumi_oci/adm/get_vulnerability_audits.py +54 -3
  8. pulumi_oci/adm/outputs.py +296 -31
  9. pulumi_oci/adm/remediation_recipe.py +2 -0
  10. pulumi_oci/adm/vulnerability_audit.py +96 -37
  11. pulumi_oci/database/__init__.py +1 -0
  12. pulumi_oci/database/_inputs.py +40 -0
  13. pulumi_oci/database/cloud_vm_cluster.py +22 -1
  14. pulumi_oci/database/get_system_versions.py +173 -0
  15. pulumi_oci/database/outputs.py +88 -0
  16. pulumi_oci/database/vm_cluster.py +22 -1
  17. pulumi_oci/datasafe/__init__.py +22 -0
  18. pulumi_oci/datasafe/_inputs.py +1826 -161
  19. pulumi_oci/datasafe/audit_trail.py +140 -0
  20. pulumi_oci/datasafe/discovery_mod.py +7 -7
  21. pulumi_oci/datasafe/get_audit_trail.py +66 -1
  22. pulumi_oci/datasafe/get_discovery_job.py +1 -1
  23. pulumi_oci/datasafe/get_discovery_jobs_result.py +1 -1
  24. pulumi_oci/datasafe/get_discovery_jobs_results.py +1 -1
  25. pulumi_oci/datasafe/get_masking_policies_masking_column.py +1 -1
  26. pulumi_oci/datasafe/get_masking_policies_masking_columns.py +1 -1
  27. pulumi_oci/datasafe/get_masking_policy.py +1 -1
  28. pulumi_oci/datasafe/get_report.py +1 -1
  29. pulumi_oci/datasafe/get_security_assessment.py +3 -3
  30. pulumi_oci/datasafe/get_security_assessment_comparison.py +5 -5
  31. pulumi_oci/datasafe/get_security_assessment_finding.py +29 -3
  32. pulumi_oci/datasafe/get_security_assessment_finding_analytics.py +276 -0
  33. pulumi_oci/datasafe/get_security_assessment_findings.py +43 -7
  34. pulumi_oci/datasafe/get_security_assessment_findings_change_audit_logs.py +309 -0
  35. pulumi_oci/datasafe/get_security_assessment_security_feature_analytics.py +198 -0
  36. pulumi_oci/datasafe/get_security_assessment_security_features.py +377 -0
  37. pulumi_oci/datasafe/get_security_assessments.py +2 -2
  38. pulumi_oci/datasafe/get_security_policies.py +253 -0
  39. pulumi_oci/datasafe/get_security_policy.py +235 -0
  40. pulumi_oci/datasafe/get_security_policy_deployment.py +261 -0
  41. pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_state.py +165 -0
  42. pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_states.py +180 -0
  43. pulumi_oci/datasafe/get_security_policy_deployments.py +293 -0
  44. pulumi_oci/datasafe/get_security_policy_report.py +248 -0
  45. pulumi_oci/datasafe/get_security_policy_report_database_table_access_entries.py +158 -0
  46. pulumi_oci/datasafe/get_security_policy_report_database_table_access_entry.py +408 -0
  47. pulumi_oci/datasafe/get_security_policy_report_database_view_access_entries.py +178 -0
  48. pulumi_oci/datasafe/get_security_policy_report_database_view_access_entry.py +382 -0
  49. pulumi_oci/datasafe/get_security_policy_report_role_grant_paths.py +177 -0
  50. pulumi_oci/datasafe/get_security_policy_reports.py +273 -0
  51. pulumi_oci/datasafe/get_sensitive_data_model.py +1 -1
  52. pulumi_oci/datasafe/get_target_database.py +27 -4
  53. pulumi_oci/datasafe/get_target_database_peer_target_database.py +263 -0
  54. pulumi_oci/datasafe/get_target_database_peer_target_databases.py +133 -0
  55. pulumi_oci/datasafe/get_target_databases.py +1 -1
  56. pulumi_oci/datasafe/get_user_assessment.py +5 -5
  57. pulumi_oci/datasafe/get_user_assessment_comparison.py +2 -2
  58. pulumi_oci/datasafe/get_user_assessment_user_access_analytics.py +133 -0
  59. pulumi_oci/datasafe/get_user_assessment_user_analytics.py +2 -2
  60. pulumi_oci/datasafe/get_user_assessment_users.py +42 -2
  61. pulumi_oci/datasafe/get_user_assessments.py +2 -2
  62. pulumi_oci/datasafe/masking_policies_masking_column.py +7 -7
  63. pulumi_oci/datasafe/masking_policy.py +9 -9
  64. pulumi_oci/datasafe/outputs.py +16686 -9777
  65. pulumi_oci/datasafe/report.py +559 -0
  66. pulumi_oci/datasafe/security_assessment.py +12 -12
  67. pulumi_oci/datasafe/sensitive_data_model.py +7 -7
  68. pulumi_oci/datasafe/set_security_assessment_baseline.py +7 -7
  69. pulumi_oci/datasafe/set_user_assessment_baseline.py +7 -7
  70. pulumi_oci/datasafe/target_database.py +146 -25
  71. pulumi_oci/datasafe/target_database_peer_target_database.py +634 -0
  72. pulumi_oci/datasafe/user_assessment.py +20 -20
  73. pulumi_oci/generativeai/__init__.py +18 -0
  74. pulumi_oci/generativeai/_inputs.py +534 -0
  75. pulumi_oci/generativeai/dedicated_ai_cluster.py +808 -0
  76. pulumi_oci/generativeai/endpoint.py +717 -0
  77. pulumi_oci/generativeai/get_dedicated_ai_cluster.py +288 -0
  78. pulumi_oci/generativeai/get_dedicated_ai_clusters.py +183 -0
  79. pulumi_oci/generativeai/get_endpoint.py +275 -0
  80. pulumi_oci/generativeai/get_endpoints.py +183 -0
  81. pulumi_oci/generativeai/get_model.py +353 -0
  82. pulumi_oci/generativeai/get_models.py +220 -0
  83. pulumi_oci/generativeai/model.py +858 -0
  84. pulumi_oci/generativeai/outputs.py +1721 -0
  85. pulumi_oci/marketplace/get_publication.py +14 -1
  86. pulumi_oci/marketplace/outputs.py +11 -0
  87. pulumi_oci/marketplace/publication.py +28 -0
  88. pulumi_oci/monitoring/__init__.py +3 -0
  89. pulumi_oci/monitoring/_inputs.py +82 -4
  90. pulumi_oci/monitoring/alarm.py +15 -15
  91. pulumi_oci/monitoring/alarm_suppression.py +745 -0
  92. pulumi_oci/monitoring/get_alarm.py +5 -5
  93. pulumi_oci/monitoring/get_alarm_history_collection.py +4 -4
  94. pulumi_oci/monitoring/get_alarm_statuses.py +3 -1
  95. pulumi_oci/monitoring/get_alarm_suppression.py +276 -0
  96. pulumi_oci/monitoring/get_alarm_suppressions.py +192 -0
  97. pulumi_oci/monitoring/get_metric_data.py +12 -8
  98. pulumi_oci/monitoring/get_metrics.py +2 -2
  99. pulumi_oci/monitoring/outputs.py +355 -50
  100. pulumi_oci/networkfirewall/_inputs.py +25 -20
  101. pulumi_oci/networkfirewall/outputs.py +40 -30
  102. pulumi_oci/stackmonitoring/__init__.py +3 -0
  103. pulumi_oci/stackmonitoring/_inputs.py +143 -0
  104. pulumi_oci/stackmonitoring/get_process_set.py +236 -0
  105. pulumi_oci/stackmonitoring/get_process_sets.py +156 -0
  106. pulumi_oci/stackmonitoring/outputs.py +422 -0
  107. pulumi_oci/stackmonitoring/process_set.py +548 -0
  108. {pulumi_oci-1.19.0a1705693078.dist-info → pulumi_oci-1.20.0.dist-info}/METADATA +1 -1
  109. {pulumi_oci-1.19.0a1705693078.dist-info → pulumi_oci-1.20.0.dist-info}/RECORD +111 -70
  110. {pulumi_oci-1.19.0a1705693078.dist-info → pulumi_oci-1.20.0.dist-info}/WHEEL +0 -0
  111. {pulumi_oci-1.19.0a1705693078.dist-info → pulumi_oci-1.20.0.dist-info}/top_level.txt +0 -0
@@ -41,7 +41,7 @@ class SensitiveDataModelArgs:
41
41
  :param pulumi.Input[str] display_name: (Updatable) The display name of the sensitive data model. The name does not have to be unique, and it's changeable.
42
42
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
43
43
  :param pulumi.Input[bool] is_app_defined_relation_discovery_enabled: (Updatable) Indicates if data discovery jobs should identify potential application-level (non-dictionary) referential relationships between columns. Note that data discovery automatically identifies and adds database-level (dictionary-defined) relationships. This option helps identify application-level relationships that are not defined in the database dictionary, which in turn, helps identify additional sensitive columns and preserve referential integrity during data masking. It's disabled by default and should be used only if there is a need to identify application-level relationships.
44
- :param pulumi.Input[bool] is_include_all_schemas: Indicates if all the schemas in the associated target database should be scanned by data discovery jobs. If it's set to true, the schemasForDiscovery attribute is ignored and all schemas are used for data discovery.
44
+ :param pulumi.Input[bool] is_include_all_schemas: Indicates if all the schemas in the associated target database should be scanned by data discovery jobs. If it is set to true, sensitive data is discovered in all schemas (except for schemas maintained by Oracle).
45
45
  :param pulumi.Input[bool] is_include_all_sensitive_types: Indicates if all the existing sensitive types should be used by data discovery jobs. If it's set to true, the sensitiveTypeIdsForDiscovery attribute is ignored and all sensitive types are used for data discovery.
46
46
  :param pulumi.Input[bool] is_sample_data_collection_enabled: (Updatable) Indicates if data discovery jobs should collect and store sample data values for the discovered columns. Sample data helps review the discovered columns and ensure that they actually contain sensitive data. As it collects original data from the target database, it's disabled by default and should be used only if it's acceptable to store sample data in Data Safe's repository in Oracle Cloud. Note that sample data values are not collected for columns with the following data types: LONG, LOB, RAW, XMLTYPE and BFILE.
47
47
  :param pulumi.Input[Sequence[pulumi.Input[str]]] schemas_for_discoveries: (Updatable) The schemas to be scanned by data discovery jobs.
@@ -176,7 +176,7 @@ class SensitiveDataModelArgs:
176
176
  @pulumi.getter(name="isIncludeAllSchemas")
177
177
  def is_include_all_schemas(self) -> Optional[pulumi.Input[bool]]:
178
178
  """
179
- Indicates if all the schemas in the associated target database should be scanned by data discovery jobs. If it's set to true, the schemasForDiscovery attribute is ignored and all schemas are used for data discovery.
179
+ Indicates if all the schemas in the associated target database should be scanned by data discovery jobs. If it is set to true, sensitive data is discovered in all schemas (except for schemas maintained by Oracle).
180
180
  """
181
181
  return pulumi.get(self, "is_include_all_schemas")
182
182
 
@@ -262,7 +262,7 @@ class _SensitiveDataModelState:
262
262
  :param pulumi.Input[str] display_name: (Updatable) The display name of the sensitive data model. The name does not have to be unique, and it's changeable.
263
263
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
264
264
  :param pulumi.Input[bool] is_app_defined_relation_discovery_enabled: (Updatable) Indicates if data discovery jobs should identify potential application-level (non-dictionary) referential relationships between columns. Note that data discovery automatically identifies and adds database-level (dictionary-defined) relationships. This option helps identify application-level relationships that are not defined in the database dictionary, which in turn, helps identify additional sensitive columns and preserve referential integrity during data masking. It's disabled by default and should be used only if there is a need to identify application-level relationships.
265
- :param pulumi.Input[bool] is_include_all_schemas: Indicates if all the schemas in the associated target database should be scanned by data discovery jobs. If it's set to true, the schemasForDiscovery attribute is ignored and all schemas are used for data discovery.
265
+ :param pulumi.Input[bool] is_include_all_schemas: Indicates if all the schemas in the associated target database should be scanned by data discovery jobs. If it is set to true, sensitive data is discovered in all schemas (except for schemas maintained by Oracle).
266
266
  :param pulumi.Input[bool] is_include_all_sensitive_types: Indicates if all the existing sensitive types should be used by data discovery jobs. If it's set to true, the sensitiveTypeIdsForDiscovery attribute is ignored and all sensitive types are used for data discovery.
267
267
  :param pulumi.Input[bool] is_sample_data_collection_enabled: (Updatable) Indicates if data discovery jobs should collect and store sample data values for the discovered columns. Sample data helps review the discovered columns and ensure that they actually contain sensitive data. As it collects original data from the target database, it's disabled by default and should be used only if it's acceptable to store sample data in Data Safe's repository in Oracle Cloud. Note that sample data values are not collected for columns with the following data types: LONG, LOB, RAW, XMLTYPE and BFILE.
268
268
  :param pulumi.Input[Sequence[pulumi.Input[str]]] schemas_for_discoveries: (Updatable) The schemas to be scanned by data discovery jobs.
@@ -400,7 +400,7 @@ class _SensitiveDataModelState:
400
400
  @pulumi.getter(name="isIncludeAllSchemas")
401
401
  def is_include_all_schemas(self) -> Optional[pulumi.Input[bool]]:
402
402
  """
403
- Indicates if all the schemas in the associated target database should be scanned by data discovery jobs. If it's set to true, the schemasForDiscovery attribute is ignored and all schemas are used for data discovery.
403
+ Indicates if all the schemas in the associated target database should be scanned by data discovery jobs. If it is set to true, sensitive data is discovered in all schemas (except for schemas maintained by Oracle).
404
404
  """
405
405
  return pulumi.get(self, "is_include_all_schemas")
406
406
 
@@ -590,7 +590,7 @@ class SensitiveDataModel(pulumi.CustomResource):
590
590
  :param pulumi.Input[str] display_name: (Updatable) The display name of the sensitive data model. The name does not have to be unique, and it's changeable.
591
591
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
592
592
  :param pulumi.Input[bool] is_app_defined_relation_discovery_enabled: (Updatable) Indicates if data discovery jobs should identify potential application-level (non-dictionary) referential relationships between columns. Note that data discovery automatically identifies and adds database-level (dictionary-defined) relationships. This option helps identify application-level relationships that are not defined in the database dictionary, which in turn, helps identify additional sensitive columns and preserve referential integrity during data masking. It's disabled by default and should be used only if there is a need to identify application-level relationships.
593
- :param pulumi.Input[bool] is_include_all_schemas: Indicates if all the schemas in the associated target database should be scanned by data discovery jobs. If it's set to true, the schemasForDiscovery attribute is ignored and all schemas are used for data discovery.
593
+ :param pulumi.Input[bool] is_include_all_schemas: Indicates if all the schemas in the associated target database should be scanned by data discovery jobs. If it is set to true, sensitive data is discovered in all schemas (except for schemas maintained by Oracle).
594
594
  :param pulumi.Input[bool] is_include_all_sensitive_types: Indicates if all the existing sensitive types should be used by data discovery jobs. If it's set to true, the sensitiveTypeIdsForDiscovery attribute is ignored and all sensitive types are used for data discovery.
595
595
  :param pulumi.Input[bool] is_sample_data_collection_enabled: (Updatable) Indicates if data discovery jobs should collect and store sample data values for the discovered columns. Sample data helps review the discovered columns and ensure that they actually contain sensitive data. As it collects original data from the target database, it's disabled by default and should be used only if it's acceptable to store sample data in Data Safe's repository in Oracle Cloud. Note that sample data values are not collected for columns with the following data types: LONG, LOB, RAW, XMLTYPE and BFILE.
596
596
  :param pulumi.Input[Sequence[pulumi.Input[str]]] schemas_for_discoveries: (Updatable) The schemas to be scanned by data discovery jobs.
@@ -747,7 +747,7 @@ class SensitiveDataModel(pulumi.CustomResource):
747
747
  :param pulumi.Input[str] display_name: (Updatable) The display name of the sensitive data model. The name does not have to be unique, and it's changeable.
748
748
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
749
749
  :param pulumi.Input[bool] is_app_defined_relation_discovery_enabled: (Updatable) Indicates if data discovery jobs should identify potential application-level (non-dictionary) referential relationships between columns. Note that data discovery automatically identifies and adds database-level (dictionary-defined) relationships. This option helps identify application-level relationships that are not defined in the database dictionary, which in turn, helps identify additional sensitive columns and preserve referential integrity during data masking. It's disabled by default and should be used only if there is a need to identify application-level relationships.
750
- :param pulumi.Input[bool] is_include_all_schemas: Indicates if all the schemas in the associated target database should be scanned by data discovery jobs. If it's set to true, the schemasForDiscovery attribute is ignored and all schemas are used for data discovery.
750
+ :param pulumi.Input[bool] is_include_all_schemas: Indicates if all the schemas in the associated target database should be scanned by data discovery jobs. If it is set to true, sensitive data is discovered in all schemas (except for schemas maintained by Oracle).
751
751
  :param pulumi.Input[bool] is_include_all_sensitive_types: Indicates if all the existing sensitive types should be used by data discovery jobs. If it's set to true, the sensitiveTypeIdsForDiscovery attribute is ignored and all sensitive types are used for data discovery.
752
752
  :param pulumi.Input[bool] is_sample_data_collection_enabled: (Updatable) Indicates if data discovery jobs should collect and store sample data values for the discovered columns. Sample data helps review the discovered columns and ensure that they actually contain sensitive data. As it collects original data from the target database, it's disabled by default and should be used only if it's acceptable to store sample data in Data Safe's repository in Oracle Cloud. Note that sample data values are not collected for columns with the following data types: LONG, LOB, RAW, XMLTYPE and BFILE.
753
753
  :param pulumi.Input[Sequence[pulumi.Input[str]]] schemas_for_discoveries: (Updatable) The schemas to be scanned by data discovery jobs.
@@ -845,7 +845,7 @@ class SensitiveDataModel(pulumi.CustomResource):
845
845
  @pulumi.getter(name="isIncludeAllSchemas")
846
846
  def is_include_all_schemas(self) -> pulumi.Output[bool]:
847
847
  """
848
- Indicates if all the schemas in the associated target database should be scanned by data discovery jobs. If it's set to true, the schemasForDiscovery attribute is ignored and all schemas are used for data discovery.
848
+ Indicates if all the schemas in the associated target database should be scanned by data discovery jobs. If it is set to true, sensitive data is discovered in all schemas (except for schemas maintained by Oracle).
849
849
  """
850
850
  return pulumi.get(self, "is_include_all_schemas")
851
851
 
@@ -23,7 +23,7 @@ class SetSecurityAssessmentBaselineArgs:
23
23
 
24
24
  ** IMPORTANT **
25
25
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
26
- :param pulumi.Input[Sequence[pulumi.Input[str]]] assessment_ids: List of security assessment OCIDs that need to be updated while setting the baseline.
26
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] assessment_ids: The list of OCIDs for the security assessments that need to be updated while setting the baseline.
27
27
  """
28
28
  pulumi.set(__self__, "security_assessment_id", security_assessment_id)
29
29
  if assessment_ids is not None:
@@ -49,7 +49,7 @@ class SetSecurityAssessmentBaselineArgs:
49
49
  @pulumi.getter(name="assessmentIds")
50
50
  def assessment_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
51
51
  """
52
- List of security assessment OCIDs that need to be updated while setting the baseline.
52
+ The list of OCIDs for the security assessments that need to be updated while setting the baseline.
53
53
  """
54
54
  return pulumi.get(self, "assessment_ids")
55
55
 
@@ -65,7 +65,7 @@ class _SetSecurityAssessmentBaselineState:
65
65
  security_assessment_id: Optional[pulumi.Input[str]] = None):
66
66
  """
67
67
  Input properties used for looking up and filtering SetSecurityAssessmentBaseline resources.
68
- :param pulumi.Input[Sequence[pulumi.Input[str]]] assessment_ids: List of security assessment OCIDs that need to be updated while setting the baseline.
68
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] assessment_ids: The list of OCIDs for the security assessments that need to be updated while setting the baseline.
69
69
  :param pulumi.Input[str] security_assessment_id: The OCID of the security assessment.
70
70
 
71
71
 
@@ -81,7 +81,7 @@ class _SetSecurityAssessmentBaselineState:
81
81
  @pulumi.getter(name="assessmentIds")
82
82
  def assessment_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
83
83
  """
84
- List of security assessment OCIDs that need to be updated while setting the baseline.
84
+ The list of OCIDs for the security assessments that need to be updated while setting the baseline.
85
85
  """
86
86
  return pulumi.get(self, "assessment_ids")
87
87
 
@@ -140,7 +140,7 @@ class SetSecurityAssessmentBaseline(pulumi.CustomResource):
140
140
 
141
141
  :param str resource_name: The name of the resource.
142
142
  :param pulumi.ResourceOptions opts: Options for the resource.
143
- :param pulumi.Input[Sequence[pulumi.Input[str]]] assessment_ids: List of security assessment OCIDs that need to be updated while setting the baseline.
143
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] assessment_ids: The list of OCIDs for the security assessments that need to be updated while setting the baseline.
144
144
  :param pulumi.Input[str] security_assessment_id: The OCID of the security assessment.
145
145
 
146
146
 
@@ -226,7 +226,7 @@ class SetSecurityAssessmentBaseline(pulumi.CustomResource):
226
226
  :param str resource_name: The unique name of the resulting resource.
227
227
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
228
228
  :param pulumi.ResourceOptions opts: Options for the resource.
229
- :param pulumi.Input[Sequence[pulumi.Input[str]]] assessment_ids: List of security assessment OCIDs that need to be updated while setting the baseline.
229
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] assessment_ids: The list of OCIDs for the security assessments that need to be updated while setting the baseline.
230
230
  :param pulumi.Input[str] security_assessment_id: The OCID of the security assessment.
231
231
 
232
232
 
@@ -245,7 +245,7 @@ class SetSecurityAssessmentBaseline(pulumi.CustomResource):
245
245
  @pulumi.getter(name="assessmentIds")
246
246
  def assessment_ids(self) -> pulumi.Output[Sequence[str]]:
247
247
  """
248
- List of security assessment OCIDs that need to be updated while setting the baseline.
248
+ The list of OCIDs for the security assessments that need to be updated while setting the baseline.
249
249
  """
250
250
  return pulumi.get(self, "assessment_ids")
251
251
 
@@ -23,7 +23,7 @@ class SetUserAssessmentBaselineArgs:
23
23
 
24
24
  ** IMPORTANT **
25
25
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
26
- :param pulumi.Input[Sequence[pulumi.Input[str]]] assessment_ids: The list of user assessment OCIDs that need to be updated while setting the baseline.
26
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] assessment_ids: The list of OCIDs for the user assessments that need to be updated while setting the baseline.
27
27
  """
28
28
  pulumi.set(__self__, "user_assessment_id", user_assessment_id)
29
29
  if assessment_ids is not None:
@@ -49,7 +49,7 @@ class SetUserAssessmentBaselineArgs:
49
49
  @pulumi.getter(name="assessmentIds")
50
50
  def assessment_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
51
51
  """
52
- The list of user assessment OCIDs that need to be updated while setting the baseline.
52
+ The list of OCIDs for the user assessments that need to be updated while setting the baseline.
53
53
  """
54
54
  return pulumi.get(self, "assessment_ids")
55
55
 
@@ -65,7 +65,7 @@ class _SetUserAssessmentBaselineState:
65
65
  user_assessment_id: Optional[pulumi.Input[str]] = None):
66
66
  """
67
67
  Input properties used for looking up and filtering SetUserAssessmentBaseline resources.
68
- :param pulumi.Input[Sequence[pulumi.Input[str]]] assessment_ids: The list of user assessment OCIDs that need to be updated while setting the baseline.
68
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] assessment_ids: The list of OCIDs for the user assessments that need to be updated while setting the baseline.
69
69
  :param pulumi.Input[str] user_assessment_id: The OCID of the user assessment.
70
70
 
71
71
 
@@ -81,7 +81,7 @@ class _SetUserAssessmentBaselineState:
81
81
  @pulumi.getter(name="assessmentIds")
82
82
  def assessment_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
83
83
  """
84
- The list of user assessment OCIDs that need to be updated while setting the baseline.
84
+ The list of OCIDs for the user assessments that need to be updated while setting the baseline.
85
85
  """
86
86
  return pulumi.get(self, "assessment_ids")
87
87
 
@@ -140,7 +140,7 @@ class SetUserAssessmentBaseline(pulumi.CustomResource):
140
140
 
141
141
  :param str resource_name: The name of the resource.
142
142
  :param pulumi.ResourceOptions opts: Options for the resource.
143
- :param pulumi.Input[Sequence[pulumi.Input[str]]] assessment_ids: The list of user assessment OCIDs that need to be updated while setting the baseline.
143
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] assessment_ids: The list of OCIDs for the user assessments that need to be updated while setting the baseline.
144
144
  :param pulumi.Input[str] user_assessment_id: The OCID of the user assessment.
145
145
 
146
146
 
@@ -226,7 +226,7 @@ class SetUserAssessmentBaseline(pulumi.CustomResource):
226
226
  :param str resource_name: The unique name of the resulting resource.
227
227
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
228
228
  :param pulumi.ResourceOptions opts: Options for the resource.
229
- :param pulumi.Input[Sequence[pulumi.Input[str]]] assessment_ids: The list of user assessment OCIDs that need to be updated while setting the baseline.
229
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] assessment_ids: The list of OCIDs for the user assessments that need to be updated while setting the baseline.
230
230
  :param pulumi.Input[str] user_assessment_id: The OCID of the user assessment.
231
231
 
232
232
 
@@ -245,7 +245,7 @@ class SetUserAssessmentBaseline(pulumi.CustomResource):
245
245
  @pulumi.getter(name="assessmentIds")
246
246
  def assessment_ids(self) -> pulumi.Output[Sequence[str]]:
247
247
  """
248
- The list of user assessment OCIDs that need to be updated while setting the baseline.
248
+ The list of OCIDs for the user assessments that need to be updated while setting the baseline.
249
249
  """
250
250
  return pulumi.get(self, "assessment_ids")
251
251
 
@@ -24,17 +24,19 @@ class TargetDatabaseArgs:
24
24
  description: Optional[pulumi.Input[str]] = None,
25
25
  display_name: Optional[pulumi.Input[str]] = None,
26
26
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
27
+ peer_target_database_details: Optional[pulumi.Input[Sequence[pulumi.Input['TargetDatabasePeerTargetDatabaseDetailArgs']]]] = None,
27
28
  tls_config: Optional[pulumi.Input['TargetDatabaseTlsConfigArgs']] = None):
28
29
  """
29
30
  The set of arguments for constructing a TargetDatabase resource.
30
31
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment in which to create the Data Safe target database.
31
- :param pulumi.Input['TargetDatabaseDatabaseDetailsArgs'] database_details: (Updatable) Details of the database for the registration in Data Safe.
32
+ :param pulumi.Input['TargetDatabaseDatabaseDetailsArgs'] database_details: Details of the database for the registration in Data Safe.
32
33
  :param pulumi.Input['TargetDatabaseConnectionOptionArgs'] connection_option: (Updatable) Types of connection supported by Data Safe.
33
34
  :param pulumi.Input['TargetDatabaseCredentialsArgs'] credentials: (Updatable) The database credentials required for Data Safe to connect to the database.
34
35
  :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
35
- :param pulumi.Input[str] description: (Updatable) The description of the target database in Data Safe.
36
- :param pulumi.Input[str] display_name: (Updatable) The display name of the target database in Data Safe. The name is modifiable and does not need to be unique.
36
+ :param pulumi.Input[str] description: The description of the peer target database in Data Safe.
37
+ :param pulumi.Input[str] display_name: The display name of the peer target database in Data Safe. The name is modifiable and does not need to be unique.
37
38
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
39
+ :param pulumi.Input[Sequence[pulumi.Input['TargetDatabasePeerTargetDatabaseDetailArgs']]] peer_target_database_details: The details of the database to be registered as a peer target database.
38
40
  :param pulumi.Input['TargetDatabaseTlsConfigArgs'] tls_config: (Updatable) The details required to establish a TLS enabled connection.
39
41
  """
40
42
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -51,6 +53,8 @@ class TargetDatabaseArgs:
51
53
  pulumi.set(__self__, "display_name", display_name)
52
54
  if freeform_tags is not None:
53
55
  pulumi.set(__self__, "freeform_tags", freeform_tags)
56
+ if peer_target_database_details is not None:
57
+ pulumi.set(__self__, "peer_target_database_details", peer_target_database_details)
54
58
  if tls_config is not None:
55
59
  pulumi.set(__self__, "tls_config", tls_config)
56
60
 
@@ -70,7 +74,7 @@ class TargetDatabaseArgs:
70
74
  @pulumi.getter(name="databaseDetails")
71
75
  def database_details(self) -> pulumi.Input['TargetDatabaseDatabaseDetailsArgs']:
72
76
  """
73
- (Updatable) Details of the database for the registration in Data Safe.
77
+ Details of the database for the registration in Data Safe.
74
78
  """
75
79
  return pulumi.get(self, "database_details")
76
80
 
@@ -118,7 +122,7 @@ class TargetDatabaseArgs:
118
122
  @pulumi.getter
119
123
  def description(self) -> Optional[pulumi.Input[str]]:
120
124
  """
121
- (Updatable) The description of the target database in Data Safe.
125
+ The description of the peer target database in Data Safe.
122
126
  """
123
127
  return pulumi.get(self, "description")
124
128
 
@@ -130,7 +134,7 @@ class TargetDatabaseArgs:
130
134
  @pulumi.getter(name="displayName")
131
135
  def display_name(self) -> Optional[pulumi.Input[str]]:
132
136
  """
133
- (Updatable) The display name of the target database in Data Safe. The name is modifiable and does not need to be unique.
137
+ The display name of the peer target database in Data Safe. The name is modifiable and does not need to be unique.
134
138
  """
135
139
  return pulumi.get(self, "display_name")
136
140
 
@@ -150,6 +154,18 @@ class TargetDatabaseArgs:
150
154
  def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
151
155
  pulumi.set(self, "freeform_tags", value)
152
156
 
157
+ @property
158
+ @pulumi.getter(name="peerTargetDatabaseDetails")
159
+ def peer_target_database_details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['TargetDatabasePeerTargetDatabaseDetailArgs']]]]:
160
+ """
161
+ The details of the database to be registered as a peer target database.
162
+ """
163
+ return pulumi.get(self, "peer_target_database_details")
164
+
165
+ @peer_target_database_details.setter
166
+ def peer_target_database_details(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['TargetDatabasePeerTargetDatabaseDetailArgs']]]]):
167
+ pulumi.set(self, "peer_target_database_details", value)
168
+
153
169
  @property
154
170
  @pulumi.getter(name="tlsConfig")
155
171
  def tls_config(self) -> Optional[pulumi.Input['TargetDatabaseTlsConfigArgs']]:
@@ -176,6 +192,8 @@ class _TargetDatabaseState:
176
192
  display_name: Optional[pulumi.Input[str]] = None,
177
193
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
178
194
  lifecycle_details: Optional[pulumi.Input[str]] = None,
195
+ peer_target_database_details: Optional[pulumi.Input[Sequence[pulumi.Input['TargetDatabasePeerTargetDatabaseDetailArgs']]]] = None,
196
+ peer_target_databases: Optional[pulumi.Input[Sequence[pulumi.Input['TargetDatabasePeerTargetDatabaseArgs']]]] = None,
179
197
  state: Optional[pulumi.Input[str]] = None,
180
198
  system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
181
199
  time_created: Optional[pulumi.Input[str]] = None,
@@ -187,12 +205,14 @@ class _TargetDatabaseState:
187
205
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment in which to create the Data Safe target database.
188
206
  :param pulumi.Input['TargetDatabaseConnectionOptionArgs'] connection_option: (Updatable) Types of connection supported by Data Safe.
189
207
  :param pulumi.Input['TargetDatabaseCredentialsArgs'] credentials: (Updatable) The database credentials required for Data Safe to connect to the database.
190
- :param pulumi.Input['TargetDatabaseDatabaseDetailsArgs'] database_details: (Updatable) Details of the database for the registration in Data Safe.
208
+ :param pulumi.Input['TargetDatabaseDatabaseDetailsArgs'] database_details: Details of the database for the registration in Data Safe.
191
209
  :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
192
- :param pulumi.Input[str] description: (Updatable) The description of the target database in Data Safe.
193
- :param pulumi.Input[str] display_name: (Updatable) The display name of the target database in Data Safe. The name is modifiable and does not need to be unique.
210
+ :param pulumi.Input[str] description: The description of the peer target database in Data Safe.
211
+ :param pulumi.Input[str] display_name: The display name of the peer target database in Data Safe. The name is modifiable and does not need to be unique.
194
212
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
195
- :param pulumi.Input[str] lifecycle_details: Details about the current state of the target database in Data Safe.
213
+ :param pulumi.Input[str] lifecycle_details: Details about the current state of the peer target database in Data Safe.
214
+ :param pulumi.Input[Sequence[pulumi.Input['TargetDatabasePeerTargetDatabaseDetailArgs']]] peer_target_database_details: The details of the database to be registered as a peer target database.
215
+ :param pulumi.Input[Sequence[pulumi.Input['TargetDatabasePeerTargetDatabaseArgs']]] peer_target_databases: The OCIDs of associated resources like Database, Data Safe private endpoint etc.
196
216
  :param pulumi.Input[str] state: The current state of the target database in Data Safe.
197
217
  :param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
198
218
  :param pulumi.Input[str] time_created: The date and time the database was registered in Data Safe and created as a target database in Data Safe.
@@ -219,6 +239,10 @@ class _TargetDatabaseState:
219
239
  pulumi.set(__self__, "freeform_tags", freeform_tags)
220
240
  if lifecycle_details is not None:
221
241
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
242
+ if peer_target_database_details is not None:
243
+ pulumi.set(__self__, "peer_target_database_details", peer_target_database_details)
244
+ if peer_target_databases is not None:
245
+ pulumi.set(__self__, "peer_target_databases", peer_target_databases)
222
246
  if state is not None:
223
247
  pulumi.set(__self__, "state", state)
224
248
  if system_tags is not None:
@@ -282,7 +306,7 @@ class _TargetDatabaseState:
282
306
  @pulumi.getter(name="databaseDetails")
283
307
  def database_details(self) -> Optional[pulumi.Input['TargetDatabaseDatabaseDetailsArgs']]:
284
308
  """
285
- (Updatable) Details of the database for the registration in Data Safe.
309
+ Details of the database for the registration in Data Safe.
286
310
  """
287
311
  return pulumi.get(self, "database_details")
288
312
 
@@ -306,7 +330,7 @@ class _TargetDatabaseState:
306
330
  @pulumi.getter
307
331
  def description(self) -> Optional[pulumi.Input[str]]:
308
332
  """
309
- (Updatable) The description of the target database in Data Safe.
333
+ The description of the peer target database in Data Safe.
310
334
  """
311
335
  return pulumi.get(self, "description")
312
336
 
@@ -318,7 +342,7 @@ class _TargetDatabaseState:
318
342
  @pulumi.getter(name="displayName")
319
343
  def display_name(self) -> Optional[pulumi.Input[str]]:
320
344
  """
321
- (Updatable) The display name of the target database in Data Safe. The name is modifiable and does not need to be unique.
345
+ The display name of the peer target database in Data Safe. The name is modifiable and does not need to be unique.
322
346
  """
323
347
  return pulumi.get(self, "display_name")
324
348
 
@@ -342,7 +366,7 @@ class _TargetDatabaseState:
342
366
  @pulumi.getter(name="lifecycleDetails")
343
367
  def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
344
368
  """
345
- Details about the current state of the target database in Data Safe.
369
+ Details about the current state of the peer target database in Data Safe.
346
370
  """
347
371
  return pulumi.get(self, "lifecycle_details")
348
372
 
@@ -350,6 +374,30 @@ class _TargetDatabaseState:
350
374
  def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
351
375
  pulumi.set(self, "lifecycle_details", value)
352
376
 
377
+ @property
378
+ @pulumi.getter(name="peerTargetDatabaseDetails")
379
+ def peer_target_database_details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['TargetDatabasePeerTargetDatabaseDetailArgs']]]]:
380
+ """
381
+ The details of the database to be registered as a peer target database.
382
+ """
383
+ return pulumi.get(self, "peer_target_database_details")
384
+
385
+ @peer_target_database_details.setter
386
+ def peer_target_database_details(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['TargetDatabasePeerTargetDatabaseDetailArgs']]]]):
387
+ pulumi.set(self, "peer_target_database_details", value)
388
+
389
+ @property
390
+ @pulumi.getter(name="peerTargetDatabases")
391
+ def peer_target_databases(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['TargetDatabasePeerTargetDatabaseArgs']]]]:
392
+ """
393
+ The OCIDs of associated resources like Database, Data Safe private endpoint etc.
394
+ """
395
+ return pulumi.get(self, "peer_target_databases")
396
+
397
+ @peer_target_databases.setter
398
+ def peer_target_databases(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['TargetDatabasePeerTargetDatabaseArgs']]]]):
399
+ pulumi.set(self, "peer_target_databases", value)
400
+
353
401
  @property
354
402
  @pulumi.getter
355
403
  def state(self) -> Optional[pulumi.Input[str]]:
@@ -424,6 +472,7 @@ class TargetDatabase(pulumi.CustomResource):
424
472
  description: Optional[pulumi.Input[str]] = None,
425
473
  display_name: Optional[pulumi.Input[str]] = None,
426
474
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
475
+ peer_target_database_details: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['TargetDatabasePeerTargetDatabaseDetailArgs']]]]] = None,
427
476
  tls_config: Optional[pulumi.Input[pulumi.InputType['TargetDatabaseTlsConfigArgs']]] = None,
428
477
  __props__=None):
429
478
  """
@@ -467,6 +516,29 @@ class TargetDatabase(pulumi.CustomResource):
467
516
  freeform_tags={
468
517
  "Department": "Finance",
469
518
  },
519
+ peer_target_database_details=[oci.data_safe.TargetDatabasePeerTargetDatabaseDetailArgs(
520
+ database_details=oci.data_safe.TargetDatabasePeerTargetDatabaseDetailDatabaseDetailsArgs(
521
+ database_type=var["target_database_peer_target_database_details_database_details_database_type"],
522
+ infrastructure_type=var["target_database_peer_target_database_details_database_details_infrastructure_type"],
523
+ autonomous_database_id=oci_database_autonomous_database["test_autonomous_database"]["id"],
524
+ db_system_id=oci_database_db_system["test_db_system"]["id"],
525
+ instance_id=oci_core_instance["test_instance"]["id"],
526
+ ip_addresses=var["target_database_peer_target_database_details_database_details_ip_addresses"],
527
+ listener_port=var["target_database_peer_target_database_details_database_details_listener_port"],
528
+ service_name=oci_core_service["test_service"]["name"],
529
+ vm_cluster_id=oci_database_vm_cluster["test_vm_cluster"]["id"],
530
+ ),
531
+ dataguard_association_id=oci_certificates_management_association["test_association"]["id"],
532
+ description=var["target_database_peer_target_database_details_description"],
533
+ display_name=var["target_database_peer_target_database_details_display_name"],
534
+ tls_config=oci.data_safe.TargetDatabasePeerTargetDatabaseDetailTlsConfigArgs(
535
+ status=var["target_database_peer_target_database_details_tls_config_status"],
536
+ certificate_store_type=var["target_database_peer_target_database_details_tls_config_certificate_store_type"],
537
+ key_store_content=var["target_database_peer_target_database_details_tls_config_key_store_content"],
538
+ store_password=var["target_database_peer_target_database_details_tls_config_store_password"],
539
+ trust_store_content=var["target_database_peer_target_database_details_tls_config_trust_store_content"],
540
+ ),
541
+ )],
470
542
  tls_config=oci.data_safe.TargetDatabaseTlsConfigArgs(
471
543
  status=var["target_database_tls_config_status"],
472
544
  certificate_store_type=var["target_database_tls_config_certificate_store_type"],
@@ -489,11 +561,12 @@ class TargetDatabase(pulumi.CustomResource):
489
561
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment in which to create the Data Safe target database.
490
562
  :param pulumi.Input[pulumi.InputType['TargetDatabaseConnectionOptionArgs']] connection_option: (Updatable) Types of connection supported by Data Safe.
491
563
  :param pulumi.Input[pulumi.InputType['TargetDatabaseCredentialsArgs']] credentials: (Updatable) The database credentials required for Data Safe to connect to the database.
492
- :param pulumi.Input[pulumi.InputType['TargetDatabaseDatabaseDetailsArgs']] database_details: (Updatable) Details of the database for the registration in Data Safe.
564
+ :param pulumi.Input[pulumi.InputType['TargetDatabaseDatabaseDetailsArgs']] database_details: Details of the database for the registration in Data Safe.
493
565
  :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
494
- :param pulumi.Input[str] description: (Updatable) The description of the target database in Data Safe.
495
- :param pulumi.Input[str] display_name: (Updatable) The display name of the target database in Data Safe. The name is modifiable and does not need to be unique.
566
+ :param pulumi.Input[str] description: The description of the peer target database in Data Safe.
567
+ :param pulumi.Input[str] display_name: The display name of the peer target database in Data Safe. The name is modifiable and does not need to be unique.
496
568
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
569
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['TargetDatabasePeerTargetDatabaseDetailArgs']]]] peer_target_database_details: The details of the database to be registered as a peer target database.
497
570
  :param pulumi.Input[pulumi.InputType['TargetDatabaseTlsConfigArgs']] tls_config: (Updatable) The details required to establish a TLS enabled connection.
498
571
  """
499
572
  ...
@@ -543,6 +616,29 @@ class TargetDatabase(pulumi.CustomResource):
543
616
  freeform_tags={
544
617
  "Department": "Finance",
545
618
  },
619
+ peer_target_database_details=[oci.data_safe.TargetDatabasePeerTargetDatabaseDetailArgs(
620
+ database_details=oci.data_safe.TargetDatabasePeerTargetDatabaseDetailDatabaseDetailsArgs(
621
+ database_type=var["target_database_peer_target_database_details_database_details_database_type"],
622
+ infrastructure_type=var["target_database_peer_target_database_details_database_details_infrastructure_type"],
623
+ autonomous_database_id=oci_database_autonomous_database["test_autonomous_database"]["id"],
624
+ db_system_id=oci_database_db_system["test_db_system"]["id"],
625
+ instance_id=oci_core_instance["test_instance"]["id"],
626
+ ip_addresses=var["target_database_peer_target_database_details_database_details_ip_addresses"],
627
+ listener_port=var["target_database_peer_target_database_details_database_details_listener_port"],
628
+ service_name=oci_core_service["test_service"]["name"],
629
+ vm_cluster_id=oci_database_vm_cluster["test_vm_cluster"]["id"],
630
+ ),
631
+ dataguard_association_id=oci_certificates_management_association["test_association"]["id"],
632
+ description=var["target_database_peer_target_database_details_description"],
633
+ display_name=var["target_database_peer_target_database_details_display_name"],
634
+ tls_config=oci.data_safe.TargetDatabasePeerTargetDatabaseDetailTlsConfigArgs(
635
+ status=var["target_database_peer_target_database_details_tls_config_status"],
636
+ certificate_store_type=var["target_database_peer_target_database_details_tls_config_certificate_store_type"],
637
+ key_store_content=var["target_database_peer_target_database_details_tls_config_key_store_content"],
638
+ store_password=var["target_database_peer_target_database_details_tls_config_store_password"],
639
+ trust_store_content=var["target_database_peer_target_database_details_tls_config_trust_store_content"],
640
+ ),
641
+ )],
546
642
  tls_config=oci.data_safe.TargetDatabaseTlsConfigArgs(
547
643
  status=var["target_database_tls_config_status"],
548
644
  certificate_store_type=var["target_database_tls_config_certificate_store_type"],
@@ -583,6 +679,7 @@ class TargetDatabase(pulumi.CustomResource):
583
679
  description: Optional[pulumi.Input[str]] = None,
584
680
  display_name: Optional[pulumi.Input[str]] = None,
585
681
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
682
+ peer_target_database_details: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['TargetDatabasePeerTargetDatabaseDetailArgs']]]]] = None,
586
683
  tls_config: Optional[pulumi.Input[pulumi.InputType['TargetDatabaseTlsConfigArgs']]] = None,
587
684
  __props__=None):
588
685
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -605,9 +702,11 @@ class TargetDatabase(pulumi.CustomResource):
605
702
  __props__.__dict__["description"] = description
606
703
  __props__.__dict__["display_name"] = display_name
607
704
  __props__.__dict__["freeform_tags"] = freeform_tags
705
+ __props__.__dict__["peer_target_database_details"] = peer_target_database_details
608
706
  __props__.__dict__["tls_config"] = tls_config
609
707
  __props__.__dict__["associated_resource_ids"] = None
610
708
  __props__.__dict__["lifecycle_details"] = None
709
+ __props__.__dict__["peer_target_databases"] = None
611
710
  __props__.__dict__["state"] = None
612
711
  __props__.__dict__["system_tags"] = None
613
712
  __props__.__dict__["time_created"] = None
@@ -632,6 +731,8 @@ class TargetDatabase(pulumi.CustomResource):
632
731
  display_name: Optional[pulumi.Input[str]] = None,
633
732
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
634
733
  lifecycle_details: Optional[pulumi.Input[str]] = None,
734
+ peer_target_database_details: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['TargetDatabasePeerTargetDatabaseDetailArgs']]]]] = None,
735
+ peer_target_databases: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['TargetDatabasePeerTargetDatabaseArgs']]]]] = None,
635
736
  state: Optional[pulumi.Input[str]] = None,
636
737
  system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
637
738
  time_created: Optional[pulumi.Input[str]] = None,
@@ -648,12 +749,14 @@ class TargetDatabase(pulumi.CustomResource):
648
749
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment in which to create the Data Safe target database.
649
750
  :param pulumi.Input[pulumi.InputType['TargetDatabaseConnectionOptionArgs']] connection_option: (Updatable) Types of connection supported by Data Safe.
650
751
  :param pulumi.Input[pulumi.InputType['TargetDatabaseCredentialsArgs']] credentials: (Updatable) The database credentials required for Data Safe to connect to the database.
651
- :param pulumi.Input[pulumi.InputType['TargetDatabaseDatabaseDetailsArgs']] database_details: (Updatable) Details of the database for the registration in Data Safe.
752
+ :param pulumi.Input[pulumi.InputType['TargetDatabaseDatabaseDetailsArgs']] database_details: Details of the database for the registration in Data Safe.
652
753
  :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
653
- :param pulumi.Input[str] description: (Updatable) The description of the target database in Data Safe.
654
- :param pulumi.Input[str] display_name: (Updatable) The display name of the target database in Data Safe. The name is modifiable and does not need to be unique.
754
+ :param pulumi.Input[str] description: The description of the peer target database in Data Safe.
755
+ :param pulumi.Input[str] display_name: The display name of the peer target database in Data Safe. The name is modifiable and does not need to be unique.
655
756
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
656
- :param pulumi.Input[str] lifecycle_details: Details about the current state of the target database in Data Safe.
757
+ :param pulumi.Input[str] lifecycle_details: Details about the current state of the peer target database in Data Safe.
758
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['TargetDatabasePeerTargetDatabaseDetailArgs']]]] peer_target_database_details: The details of the database to be registered as a peer target database.
759
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['TargetDatabasePeerTargetDatabaseArgs']]]] peer_target_databases: The OCIDs of associated resources like Database, Data Safe private endpoint etc.
657
760
  :param pulumi.Input[str] state: The current state of the target database in Data Safe.
658
761
  :param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
659
762
  :param pulumi.Input[str] time_created: The date and time the database was registered in Data Safe and created as a target database in Data Safe.
@@ -674,6 +777,8 @@ class TargetDatabase(pulumi.CustomResource):
674
777
  __props__.__dict__["display_name"] = display_name
675
778
  __props__.__dict__["freeform_tags"] = freeform_tags
676
779
  __props__.__dict__["lifecycle_details"] = lifecycle_details
780
+ __props__.__dict__["peer_target_database_details"] = peer_target_database_details
781
+ __props__.__dict__["peer_target_databases"] = peer_target_databases
677
782
  __props__.__dict__["state"] = state
678
783
  __props__.__dict__["system_tags"] = system_tags
679
784
  __props__.__dict__["time_created"] = time_created
@@ -717,7 +822,7 @@ class TargetDatabase(pulumi.CustomResource):
717
822
  @pulumi.getter(name="databaseDetails")
718
823
  def database_details(self) -> pulumi.Output['outputs.TargetDatabaseDatabaseDetails']:
719
824
  """
720
- (Updatable) Details of the database for the registration in Data Safe.
825
+ Details of the database for the registration in Data Safe.
721
826
  """
722
827
  return pulumi.get(self, "database_details")
723
828
 
@@ -733,7 +838,7 @@ class TargetDatabase(pulumi.CustomResource):
733
838
  @pulumi.getter
734
839
  def description(self) -> pulumi.Output[str]:
735
840
  """
736
- (Updatable) The description of the target database in Data Safe.
841
+ The description of the peer target database in Data Safe.
737
842
  """
738
843
  return pulumi.get(self, "description")
739
844
 
@@ -741,7 +846,7 @@ class TargetDatabase(pulumi.CustomResource):
741
846
  @pulumi.getter(name="displayName")
742
847
  def display_name(self) -> pulumi.Output[str]:
743
848
  """
744
- (Updatable) The display name of the target database in Data Safe. The name is modifiable and does not need to be unique.
849
+ The display name of the peer target database in Data Safe. The name is modifiable and does not need to be unique.
745
850
  """
746
851
  return pulumi.get(self, "display_name")
747
852
 
@@ -757,10 +862,26 @@ class TargetDatabase(pulumi.CustomResource):
757
862
  @pulumi.getter(name="lifecycleDetails")
758
863
  def lifecycle_details(self) -> pulumi.Output[str]:
759
864
  """
760
- Details about the current state of the target database in Data Safe.
865
+ Details about the current state of the peer target database in Data Safe.
761
866
  """
762
867
  return pulumi.get(self, "lifecycle_details")
763
868
 
869
+ @property
870
+ @pulumi.getter(name="peerTargetDatabaseDetails")
871
+ def peer_target_database_details(self) -> pulumi.Output[Sequence['outputs.TargetDatabasePeerTargetDatabaseDetail']]:
872
+ """
873
+ The details of the database to be registered as a peer target database.
874
+ """
875
+ return pulumi.get(self, "peer_target_database_details")
876
+
877
+ @property
878
+ @pulumi.getter(name="peerTargetDatabases")
879
+ def peer_target_databases(self) -> pulumi.Output[Sequence['outputs.TargetDatabasePeerTargetDatabase']]:
880
+ """
881
+ The OCIDs of associated resources like Database, Data Safe private endpoint etc.
882
+ """
883
+ return pulumi.get(self, "peer_target_databases")
884
+
764
885
  @property
765
886
  @pulumi.getter
766
887
  def state(self) -> pulumi.Output[str]: