pulumi-oci 2.23.0a1738304451__py3-none-any.whl → 2.24.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 (163) hide show
  1. pulumi_oci/__init__.py +96 -0
  2. pulumi_oci/apmsynthetics/config.py +2 -2
  3. pulumi_oci/apmsynthetics/dedicated_vantage_point.py +2 -2
  4. pulumi_oci/apmsynthetics/get_dedicated_vantage_point.py +2 -2
  5. pulumi_oci/apmsynthetics/get_dedicated_vantage_points.py +2 -2
  6. pulumi_oci/apmsynthetics/get_monitor.py +2 -2
  7. pulumi_oci/apmsynthetics/get_monitors.py +2 -2
  8. pulumi_oci/apmsynthetics/get_on_premise_vantage_point.py +2 -2
  9. pulumi_oci/apmsynthetics/get_on_premise_vantage_point_worker.py +2 -2
  10. pulumi_oci/apmsynthetics/get_on_premise_vantage_point_workers.py +2 -2
  11. pulumi_oci/apmsynthetics/get_on_premise_vantage_points.py +2 -2
  12. pulumi_oci/apmsynthetics/get_result.py +2 -2
  13. pulumi_oci/apmsynthetics/get_script.py +2 -2
  14. pulumi_oci/apmsynthetics/get_scripts.py +2 -2
  15. pulumi_oci/apmsynthetics/get_vantage_point.py +2 -2
  16. pulumi_oci/apmsynthetics/get_vantage_points.py +2 -2
  17. pulumi_oci/apmsynthetics/on_premise_vantage_point.py +2 -2
  18. pulumi_oci/apmsynthetics/on_premise_vantage_point_worker.py +2 -2
  19. pulumi_oci/apmsynthetics/script.py +2 -2
  20. pulumi_oci/database/__init__.py +20 -0
  21. pulumi_oci/database/_inputs.py +2242 -1118
  22. pulumi_oci/database/backup.py +30 -0
  23. pulumi_oci/database/cloud_exadata_infrastructure.py +28 -0
  24. pulumi_oci/database/exadata_infrastructure.py +28 -0
  25. pulumi_oci/database/execution_action.py +812 -0
  26. pulumi_oci/database/execution_window.py +856 -0
  27. pulumi_oci/database/get_cloud_exadata_infrastructure.py +15 -1
  28. pulumi_oci/database/get_database_maintenance_run_history.py +29 -1
  29. pulumi_oci/database/get_exadata_infrastructure.py +15 -1
  30. pulumi_oci/database/get_execution_action.py +352 -0
  31. pulumi_oci/database/get_execution_actions.py +213 -0
  32. pulumi_oci/database/get_execution_window.py +379 -0
  33. pulumi_oci/database/get_execution_windows.py +213 -0
  34. pulumi_oci/database/get_maintenance_run.py +32 -4
  35. pulumi_oci/database/get_scheduled_action.py +324 -0
  36. pulumi_oci/database/get_scheduled_action_params.py +144 -0
  37. pulumi_oci/database/get_scheduled_actions.py +240 -0
  38. pulumi_oci/database/get_scheduling_plan.py +323 -0
  39. pulumi_oci/database/get_scheduling_plans.py +243 -0
  40. pulumi_oci/database/get_scheduling_policies.py +191 -0
  41. pulumi_oci/database/get_scheduling_policy.py +268 -0
  42. pulumi_oci/database/get_scheduling_policy_recommended_scheduled_actions.py +182 -0
  43. pulumi_oci/database/get_scheduling_policy_scheduling_window.py +276 -0
  44. pulumi_oci/database/get_scheduling_policy_scheduling_windows.py +213 -0
  45. pulumi_oci/database/maintenance_run.py +58 -2
  46. pulumi_oci/database/outputs.py +11946 -7866
  47. pulumi_oci/database/scheduled_action.py +775 -0
  48. pulumi_oci/database/scheduling_plan.py +744 -0
  49. pulumi_oci/database/scheduling_policy.py +616 -0
  50. pulumi_oci/database/scheduling_policy_scheduling_window.py +584 -0
  51. pulumi_oci/databasemanagement/__init__.py +7 -0
  52. pulumi_oci/databasemanagement/_inputs.py +282 -0
  53. pulumi_oci/databasemanagement/external_my_sql_database.py +297 -0
  54. pulumi_oci/databasemanagement/external_my_sql_database_connector.py +890 -0
  55. pulumi_oci/databasemanagement/external_my_sql_database_external_mysql_databases_management.py +302 -0
  56. pulumi_oci/databasemanagement/get_external_my_sql_database.py +152 -0
  57. pulumi_oci/databasemanagement/get_external_my_sql_database_connector.py +413 -0
  58. pulumi_oci/databasemanagement/get_external_my_sql_database_connectors.py +169 -0
  59. pulumi_oci/databasemanagement/get_external_my_sql_databases.py +166 -0
  60. pulumi_oci/databasemanagement/get_managed_my_sql_database.py +60 -4
  61. pulumi_oci/databasemanagement/get_managed_my_sql_databases.py +22 -3
  62. pulumi_oci/databasemanagement/outputs.py +767 -1
  63. pulumi_oci/datasafe/__init__.py +8 -0
  64. pulumi_oci/datasafe/_inputs.py +466 -12
  65. pulumi_oci/datasafe/alert.py +7 -7
  66. pulumi_oci/datasafe/alert_policy.py +7 -7
  67. pulumi_oci/datasafe/audit_archive_retrieval.py +7 -7
  68. pulumi_oci/datasafe/audit_policy.py +7 -7
  69. pulumi_oci/datasafe/audit_policy_management.py +21 -21
  70. pulumi_oci/datasafe/audit_profile.py +18 -18
  71. pulumi_oci/datasafe/audit_profile_management.py +21 -21
  72. pulumi_oci/datasafe/audit_trail.py +14 -14
  73. pulumi_oci/datasafe/audit_trail_management.py +14 -14
  74. pulumi_oci/datasafe/data_safe_configuration.py +4 -4
  75. pulumi_oci/datasafe/data_safe_private_endpoint.py +7 -7
  76. pulumi_oci/datasafe/database_security_config.py +7 -7
  77. pulumi_oci/datasafe/database_security_config_management.py +7 -7
  78. pulumi_oci/datasafe/discovery_mod.py +7 -7
  79. pulumi_oci/datasafe/get_alert.py +1 -1
  80. pulumi_oci/datasafe/get_alert_policy.py +1 -1
  81. pulumi_oci/datasafe/get_audit_archive_retrieval.py +1 -1
  82. pulumi_oci/datasafe/get_audit_events.py +2 -2
  83. pulumi_oci/datasafe/get_audit_policy.py +1 -1
  84. pulumi_oci/datasafe/get_audit_profile.py +2 -2
  85. pulumi_oci/datasafe/get_audit_trail.py +1 -1
  86. pulumi_oci/datasafe/get_data_safe_configuration.py +1 -1
  87. pulumi_oci/datasafe/get_data_safe_private_endpoint.py +1 -1
  88. pulumi_oci/datasafe/get_database_security_config.py +1 -1
  89. pulumi_oci/datasafe/get_discovery_job.py +1 -1
  90. pulumi_oci/datasafe/get_library_masking_format.py +1 -1
  91. pulumi_oci/datasafe/get_masking_policy.py +1 -1
  92. pulumi_oci/datasafe/get_masking_policy_health_report.py +33 -5
  93. pulumi_oci/datasafe/get_masking_policy_referential_relations.py +232 -0
  94. pulumi_oci/datasafe/get_onprem_connector.py +1 -1
  95. pulumi_oci/datasafe/get_report.py +1 -1
  96. pulumi_oci/datasafe/get_report_definition.py +1 -1
  97. pulumi_oci/datasafe/get_sdm_masking_policy_difference.py +1 -1
  98. pulumi_oci/datasafe/get_security_assessment.py +1 -1
  99. pulumi_oci/datasafe/get_security_policy.py +1 -1
  100. pulumi_oci/datasafe/get_security_policy_deployment.py +1 -1
  101. pulumi_oci/datasafe/get_sensitive_data_model.py +1 -1
  102. pulumi_oci/datasafe/get_sensitive_data_model_referential_relation.py +186 -0
  103. pulumi_oci/datasafe/get_sensitive_data_model_referential_relations.py +254 -0
  104. pulumi_oci/datasafe/get_sensitive_type.py +1 -1
  105. pulumi_oci/datasafe/get_sensitive_types_export.py +267 -0
  106. pulumi_oci/datasafe/get_sensitive_types_exports.py +296 -0
  107. pulumi_oci/datasafe/get_sql_collection.py +1 -1
  108. pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +1 -1
  109. pulumi_oci/datasafe/get_sql_firewall_policy.py +1 -1
  110. pulumi_oci/datasafe/get_target_alert_policy_association.py +1 -1
  111. pulumi_oci/datasafe/get_target_database.py +1 -1
  112. pulumi_oci/datasafe/get_user_assessment.py +1 -1
  113. pulumi_oci/datasafe/get_user_assessment_password_expiry_date_analytics.py +240 -0
  114. pulumi_oci/datasafe/get_user_assessment_user_analytics.py +41 -3
  115. pulumi_oci/datasafe/get_user_assessment_users.py +39 -1
  116. pulumi_oci/datasafe/library_masing_format.py +7 -7
  117. pulumi_oci/datasafe/masking_policy.py +7 -7
  118. pulumi_oci/datasafe/on_prem_connector.py +7 -7
  119. pulumi_oci/datasafe/outputs.py +1266 -151
  120. pulumi_oci/datasafe/report.py +7 -7
  121. pulumi_oci/datasafe/report_definition.py +7 -7
  122. pulumi_oci/datasafe/sdm_masking_policy_difference.py +7 -7
  123. pulumi_oci/datasafe/security_assessment.py +36 -37
  124. pulumi_oci/datasafe/security_policy.py +7 -7
  125. pulumi_oci/datasafe/security_policy_deployment.py +7 -7
  126. pulumi_oci/datasafe/security_policy_deployment_management.py +7 -7
  127. pulumi_oci/datasafe/security_policy_management.py +7 -7
  128. pulumi_oci/datasafe/sensitive_data_model.py +7 -7
  129. pulumi_oci/datasafe/sensitive_data_model_referential_relation.py +504 -0
  130. pulumi_oci/datasafe/sensitive_type.py +7 -7
  131. pulumi_oci/datasafe/sensitive_types_export.py +637 -0
  132. pulumi_oci/datasafe/sql_collection.py +7 -7
  133. pulumi_oci/datasafe/sql_firewall_policy.py +7 -7
  134. pulumi_oci/datasafe/sql_firewall_policy_management.py +56 -56
  135. pulumi_oci/datasafe/target_alert_policy_association.py +7 -7
  136. pulumi_oci/datasafe/target_database.py +7 -7
  137. pulumi_oci/datasafe/user_assessment.py +7 -7
  138. pulumi_oci/datascience/__init__.py +4 -0
  139. pulumi_oci/datascience/_inputs.py +1811 -0
  140. pulumi_oci/datascience/get_containers.py +270 -0
  141. pulumi_oci/datascience/get_schedule.py +366 -0
  142. pulumi_oci/datascience/get_schedules.py +221 -0
  143. pulumi_oci/datascience/outputs.py +8697 -4890
  144. pulumi_oci/datascience/schedule.py +1045 -0
  145. pulumi_oci/disasterrecovery/_inputs.py +720 -0
  146. pulumi_oci/disasterrecovery/dr_protection_group.py +0 -188
  147. pulumi_oci/disasterrecovery/get_dr_protection_group.py +1 -1
  148. pulumi_oci/disasterrecovery/outputs.py +1328 -48
  149. pulumi_oci/mysql/_inputs.py +229 -9
  150. pulumi_oci/mysql/get_mysql_db_system.py +47 -1
  151. pulumi_oci/mysql/mysql_db_system.py +185 -0
  152. pulumi_oci/mysql/outputs.py +477 -26
  153. pulumi_oci/opsi/_inputs.py +20 -0
  154. pulumi_oci/opsi/database_insight.py +47 -0
  155. pulumi_oci/opsi/get_database_insight.py +15 -1
  156. pulumi_oci/opsi/get_news_report.py +29 -1
  157. pulumi_oci/opsi/news_report.py +117 -17
  158. pulumi_oci/opsi/outputs.py +70 -1
  159. pulumi_oci/pulumi-plugin.json +1 -1
  160. {pulumi_oci-2.23.0a1738304451.dist-info → pulumi_oci-2.24.0.dist-info}/METADATA +1 -1
  161. {pulumi_oci-2.23.0a1738304451.dist-info → pulumi_oci-2.24.0.dist-info}/RECORD +163 -124
  162. {pulumi_oci-2.23.0a1738304451.dist-info → pulumi_oci-2.24.0.dist-info}/WHEEL +0 -0
  163. {pulumi_oci-2.23.0a1738304451.dist-info → pulumi_oci-2.24.0.dist-info}/top_level.txt +0 -0
@@ -33,10 +33,10 @@ class AuditProfileManagementArgs:
33
33
  """
34
34
  The set of arguments for constructing a AuditProfileManagement resource.
35
35
  :param pulumi.Input[bool] change_retention_trigger: (Updatable) An optional property when set to true triggers Change Retention.
36
- :param pulumi.Input[str] compartment_id: The OCID of the compartment that contains the target.
37
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
36
+ :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment that contains the audit.
37
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
38
38
  :param pulumi.Input[str] description: (Updatable) The description of the audit profile.
39
- :param pulumi.Input[str] display_name: (Updatable) The display name of the audit profile. The name does not have to be unique, and it's changeable.
39
+ :param pulumi.Input[str] display_name: (Updatable) The display name of the audit profile. The name does not have to be unique, and it's updatable.
40
40
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
41
41
  :param pulumi.Input[bool] is_override_global_retention_setting: Indicates whether audit retention settings like online and offline months is set at the target level overriding the global audit retention settings.
42
42
  :param pulumi.Input[bool] is_paid_usage_enabled: (Updatable) Indicates if you want to continue collecting audit records beyond the free limit of one million audit records per month per target database, potentially incurring additional charges. The default value is inherited from the global settings. You can change at the global level or at the target level.
@@ -86,7 +86,7 @@ class AuditProfileManagementArgs:
86
86
  @pulumi.getter(name="compartmentId")
87
87
  def compartment_id(self) -> Optional[pulumi.Input[str]]:
88
88
  """
89
- The OCID of the compartment that contains the target.
89
+ (Updatable) The OCID of the compartment that contains the audit.
90
90
  """
91
91
  return pulumi.get(self, "compartment_id")
92
92
 
@@ -98,7 +98,7 @@ class AuditProfileManagementArgs:
98
98
  @pulumi.getter(name="definedTags")
99
99
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
100
100
  """
101
- (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"}`
101
+ (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"}`
102
102
  """
103
103
  return pulumi.get(self, "defined_tags")
104
104
 
@@ -122,7 +122,7 @@ class AuditProfileManagementArgs:
122
122
  @pulumi.getter(name="displayName")
123
123
  def display_name(self) -> Optional[pulumi.Input[str]]:
124
124
  """
125
- (Updatable) The display name of the audit profile. The name does not have to be unique, and it's changeable.
125
+ (Updatable) The display name of the audit profile. The name does not have to be unique, and it's updatable.
126
126
  """
127
127
  return pulumi.get(self, "display_name")
128
128
 
@@ -229,10 +229,10 @@ class _AuditProfileManagementState:
229
229
  Input properties used for looking up and filtering AuditProfileManagement resources.
230
230
  :param pulumi.Input[str] audit_collected_volume: Indicates number of audit records collected by Data Safe in the current calendar month. Audit records for the Data Safe service account are excluded and are not counted towards your monthly free limit.
231
231
  :param pulumi.Input[bool] change_retention_trigger: (Updatable) An optional property when set to true triggers Change Retention.
232
- :param pulumi.Input[str] compartment_id: The OCID of the compartment that contains the target.
233
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
232
+ :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment that contains the audit.
233
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
234
234
  :param pulumi.Input[str] description: (Updatable) The description of the audit profile.
235
- :param pulumi.Input[str] display_name: (Updatable) The display name of the audit profile. The name does not have to be unique, and it's changeable.
235
+ :param pulumi.Input[str] display_name: (Updatable) The display name of the audit profile. The name does not have to be unique, and it's updatable.
236
236
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
237
237
  :param pulumi.Input[bool] is_override_global_retention_setting: Indicates whether audit retention settings like online and offline months is set at the target level overriding the global audit retention settings.
238
238
  :param pulumi.Input[bool] is_paid_usage_enabled: (Updatable) Indicates if you want to continue collecting audit records beyond the free limit of one million audit records per month per target database, potentially incurring additional charges. The default value is inherited from the global settings. You can change at the global level or at the target level.
@@ -308,7 +308,7 @@ class _AuditProfileManagementState:
308
308
  @pulumi.getter(name="compartmentId")
309
309
  def compartment_id(self) -> Optional[pulumi.Input[str]]:
310
310
  """
311
- The OCID of the compartment that contains the target.
311
+ (Updatable) The OCID of the compartment that contains the audit.
312
312
  """
313
313
  return pulumi.get(self, "compartment_id")
314
314
 
@@ -320,7 +320,7 @@ class _AuditProfileManagementState:
320
320
  @pulumi.getter(name="definedTags")
321
321
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
322
322
  """
323
- (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"}`
323
+ (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"}`
324
324
  """
325
325
  return pulumi.get(self, "defined_tags")
326
326
 
@@ -344,7 +344,7 @@ class _AuditProfileManagementState:
344
344
  @pulumi.getter(name="displayName")
345
345
  def display_name(self) -> Optional[pulumi.Input[str]]:
346
346
  """
347
- (Updatable) The display name of the audit profile. The name does not have to be unique, and it's changeable.
347
+ (Updatable) The display name of the audit profile. The name does not have to be unique, and it's updatable.
348
348
  """
349
349
  return pulumi.get(self, "display_name")
350
350
 
@@ -528,10 +528,10 @@ class AuditProfileManagement(pulumi.CustomResource):
528
528
  :param str resource_name: The name of the resource.
529
529
  :param pulumi.ResourceOptions opts: Options for the resource.
530
530
  :param pulumi.Input[bool] change_retention_trigger: (Updatable) An optional property when set to true triggers Change Retention.
531
- :param pulumi.Input[str] compartment_id: The OCID of the compartment that contains the target.
532
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
531
+ :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment that contains the audit.
532
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
533
533
  :param pulumi.Input[str] description: (Updatable) The description of the audit profile.
534
- :param pulumi.Input[str] display_name: (Updatable) The display name of the audit profile. The name does not have to be unique, and it's changeable.
534
+ :param pulumi.Input[str] display_name: (Updatable) The display name of the audit profile. The name does not have to be unique, and it's updatable.
535
535
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
536
536
  :param pulumi.Input[bool] is_override_global_retention_setting: Indicates whether audit retention settings like online and offline months is set at the target level overriding the global audit retention settings.
537
537
  :param pulumi.Input[bool] is_paid_usage_enabled: (Updatable) Indicates if you want to continue collecting audit records beyond the free limit of one million audit records per month per target database, potentially incurring additional charges. The default value is inherited from the global settings. You can change at the global level or at the target level.
@@ -666,10 +666,10 @@ class AuditProfileManagement(pulumi.CustomResource):
666
666
  :param pulumi.ResourceOptions opts: Options for the resource.
667
667
  :param pulumi.Input[str] audit_collected_volume: Indicates number of audit records collected by Data Safe in the current calendar month. Audit records for the Data Safe service account are excluded and are not counted towards your monthly free limit.
668
668
  :param pulumi.Input[bool] change_retention_trigger: (Updatable) An optional property when set to true triggers Change Retention.
669
- :param pulumi.Input[str] compartment_id: The OCID of the compartment that contains the target.
670
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
669
+ :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment that contains the audit.
670
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
671
671
  :param pulumi.Input[str] description: (Updatable) The description of the audit profile.
672
- :param pulumi.Input[str] display_name: (Updatable) The display name of the audit profile. The name does not have to be unique, and it's changeable.
672
+ :param pulumi.Input[str] display_name: (Updatable) The display name of the audit profile. The name does not have to be unique, and it's updatable.
673
673
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
674
674
  :param pulumi.Input[bool] is_override_global_retention_setting: Indicates whether audit retention settings like online and offline months is set at the target level overriding the global audit retention settings.
675
675
  :param pulumi.Input[bool] is_paid_usage_enabled: (Updatable) Indicates if you want to continue collecting audit records beyond the free limit of one million audit records per month per target database, potentially incurring additional charges. The default value is inherited from the global settings. You can change at the global level or at the target level.
@@ -726,7 +726,7 @@ class AuditProfileManagement(pulumi.CustomResource):
726
726
  @pulumi.getter(name="compartmentId")
727
727
  def compartment_id(self) -> pulumi.Output[str]:
728
728
  """
729
- The OCID of the compartment that contains the target.
729
+ (Updatable) The OCID of the compartment that contains the audit.
730
730
  """
731
731
  return pulumi.get(self, "compartment_id")
732
732
 
@@ -734,7 +734,7 @@ class AuditProfileManagement(pulumi.CustomResource):
734
734
  @pulumi.getter(name="definedTags")
735
735
  def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
736
736
  """
737
- (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"}`
737
+ (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"}`
738
738
  """
739
739
  return pulumi.get(self, "defined_tags")
740
740
 
@@ -750,7 +750,7 @@ class AuditProfileManagement(pulumi.CustomResource):
750
750
  @pulumi.getter(name="displayName")
751
751
  def display_name(self) -> pulumi.Output[str]:
752
752
  """
753
- (Updatable) The display name of the audit profile. The name does not have to be unique, and it's changeable.
753
+ (Updatable) The display name of the audit profile. The name does not have to be unique, and it's updatable.
754
754
  """
755
755
  return pulumi.get(self, "display_name")
756
756
 
@@ -30,9 +30,9 @@ class AuditTrailArgs:
30
30
  """
31
31
  The set of arguments for constructing a AuditTrail resource.
32
32
  :param pulumi.Input[str] audit_trail_id: The OCID of the audit trail.
33
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
33
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
34
34
  :param pulumi.Input[str] description: (Updatable) The description of the audit trail.
35
- :param pulumi.Input[str] display_name: (Updatable) The display name of the audit trail. The name does not have to be unique, and it's changeable.
35
+ :param pulumi.Input[str] display_name: (Updatable) The display name of the audit trail. The name does not have to be unique, and it's updatable.
36
36
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
37
37
  :param pulumi.Input[bool] is_auto_purge_enabled: (Updatable) Indicates if auto purge is enabled on the target database, which helps delete audit data in the target database every seven days so that the database's audit trail does not become too large.
38
38
  :param pulumi.Input[int] resume_trigger: (Updatable) An optional property when incremented triggers Resume. Could be set to any integer value.
@@ -74,7 +74,7 @@ class AuditTrailArgs:
74
74
  @pulumi.getter(name="definedTags")
75
75
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
76
76
  """
77
- (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"}`
77
+ (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"}`
78
78
  """
79
79
  return pulumi.get(self, "defined_tags")
80
80
 
@@ -98,7 +98,7 @@ class AuditTrailArgs:
98
98
  @pulumi.getter(name="displayName")
99
99
  def display_name(self) -> Optional[pulumi.Input[str]]:
100
100
  """
101
- (Updatable) The display name of the audit trail. The name does not have to be unique, and it's changeable.
101
+ (Updatable) The display name of the audit trail. The name does not have to be unique, and it's updatable.
102
102
  """
103
103
  return pulumi.get(self, "display_name")
104
104
 
@@ -193,9 +193,9 @@ class _AuditTrailState:
193
193
  :param pulumi.Input[str] audit_profile_id: The OCID of the parent audit.
194
194
  :param pulumi.Input[str] audit_trail_id: The OCID of the audit trail.
195
195
  :param pulumi.Input[str] compartment_id: The OCID of the compartment that contains the audit trail and is the same as the compartment of the audit profile resource.
196
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
196
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
197
197
  :param pulumi.Input[str] description: (Updatable) The description of the audit trail.
198
- :param pulumi.Input[str] display_name: (Updatable) The display name of the audit trail. The name does not have to be unique, and it's changeable.
198
+ :param pulumi.Input[str] display_name: (Updatable) The display name of the audit trail. The name does not have to be unique, and it's updatable.
199
199
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
200
200
  :param pulumi.Input[bool] is_auto_purge_enabled: (Updatable) Indicates if auto purge is enabled on the target database, which helps delete audit data in the target database every seven days so that the database's audit trail does not become too large.
201
201
  :param pulumi.Input[str] lifecycle_details: Details about the current state of the audit trail in Data Safe.
@@ -322,7 +322,7 @@ class _AuditTrailState:
322
322
  @pulumi.getter(name="definedTags")
323
323
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
324
324
  """
325
- (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"}`
325
+ (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"}`
326
326
  """
327
327
  return pulumi.get(self, "defined_tags")
328
328
 
@@ -346,7 +346,7 @@ class _AuditTrailState:
346
346
  @pulumi.getter(name="displayName")
347
347
  def display_name(self) -> Optional[pulumi.Input[str]]:
348
348
  """
349
- (Updatable) The display name of the audit trail. The name does not have to be unique, and it's changeable.
349
+ (Updatable) The display name of the audit trail. The name does not have to be unique, and it's updatable.
350
350
  """
351
351
  return pulumi.get(self, "display_name")
352
352
 
@@ -605,9 +605,9 @@ class AuditTrail(pulumi.CustomResource):
605
605
  :param str resource_name: The name of the resource.
606
606
  :param pulumi.ResourceOptions opts: Options for the resource.
607
607
  :param pulumi.Input[str] audit_trail_id: The OCID of the audit trail.
608
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
608
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
609
609
  :param pulumi.Input[str] description: (Updatable) The description of the audit trail.
610
- :param pulumi.Input[str] display_name: (Updatable) The display name of the audit trail. The name does not have to be unique, and it's changeable.
610
+ :param pulumi.Input[str] display_name: (Updatable) The display name of the audit trail. The name does not have to be unique, and it's updatable.
611
611
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
612
612
  :param pulumi.Input[bool] is_auto_purge_enabled: (Updatable) Indicates if auto purge is enabled on the target database, which helps delete audit data in the target database every seven days so that the database's audit trail does not become too large.
613
613
  :param pulumi.Input[int] resume_trigger: (Updatable) An optional property when incremented triggers Resume. Could be set to any integer value.
@@ -741,9 +741,9 @@ class AuditTrail(pulumi.CustomResource):
741
741
  :param pulumi.Input[str] audit_profile_id: The OCID of the parent audit.
742
742
  :param pulumi.Input[str] audit_trail_id: The OCID of the audit trail.
743
743
  :param pulumi.Input[str] compartment_id: The OCID of the compartment that contains the audit trail and is the same as the compartment of the audit profile resource.
744
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
744
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
745
745
  :param pulumi.Input[str] description: (Updatable) The description of the audit trail.
746
- :param pulumi.Input[str] display_name: (Updatable) The display name of the audit trail. The name does not have to be unique, and it's changeable.
746
+ :param pulumi.Input[str] display_name: (Updatable) The display name of the audit trail. The name does not have to be unique, and it's updatable.
747
747
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
748
748
  :param pulumi.Input[bool] is_auto_purge_enabled: (Updatable) Indicates if auto purge is enabled on the target database, which helps delete audit data in the target database every seven days so that the database's audit trail does not become too large.
749
749
  :param pulumi.Input[str] lifecycle_details: Details about the current state of the audit trail in Data Safe.
@@ -834,7 +834,7 @@ class AuditTrail(pulumi.CustomResource):
834
834
  @pulumi.getter(name="definedTags")
835
835
  def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
836
836
  """
837
- (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"}`
837
+ (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"}`
838
838
  """
839
839
  return pulumi.get(self, "defined_tags")
840
840
 
@@ -850,7 +850,7 @@ class AuditTrail(pulumi.CustomResource):
850
850
  @pulumi.getter(name="displayName")
851
851
  def display_name(self) -> pulumi.Output[str]:
852
852
  """
853
- (Updatable) The display name of the audit trail. The name does not have to be unique, and it's changeable.
853
+ (Updatable) The display name of the audit trail. The name does not have to be unique, and it's updatable.
854
854
  """
855
855
  return pulumi.get(self, "display_name")
856
856
 
@@ -40,9 +40,9 @@ class AuditTrailManagementArgs:
40
40
  ** IMPORTANT **
41
41
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
42
42
  :param pulumi.Input[str] compartment_id: The OCID of the compartment that contains the target.
43
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
43
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
44
44
  :param pulumi.Input[str] description: (Updatable) The description of the audit trail.
45
- :param pulumi.Input[str] display_name: (Updatable) The display name of the audit trail. The name does not have to be unique, and it's changeable.
45
+ :param pulumi.Input[str] display_name: (Updatable) The display name of the audit trail. The name does not have to be unique, and it's updatable.
46
46
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
47
47
  :param pulumi.Input[bool] is_auto_purge_enabled: (Updatable) Indicates if auto purge is enabled on the target database, which helps delete audit data in the target database every seven days so that the database's audit trail does not become too large.
48
48
  :param pulumi.Input[bool] resume_trigger: (Updatable) An optional property when set to true triggers Resume.
@@ -111,7 +111,7 @@ class AuditTrailManagementArgs:
111
111
  @pulumi.getter(name="definedTags")
112
112
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
113
113
  """
114
- (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"}`
114
+ (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"}`
115
115
  """
116
116
  return pulumi.get(self, "defined_tags")
117
117
 
@@ -135,7 +135,7 @@ class AuditTrailManagementArgs:
135
135
  @pulumi.getter(name="displayName")
136
136
  def display_name(self) -> Optional[pulumi.Input[str]]:
137
137
  """
138
- (Updatable) The display name of the audit trail. The name does not have to be unique, and it's changeable.
138
+ (Updatable) The display name of the audit trail. The name does not have to be unique, and it's updatable.
139
139
  """
140
140
  return pulumi.get(self, "display_name")
141
141
 
@@ -273,9 +273,9 @@ class _AuditTrailManagementState:
273
273
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
274
274
  :param pulumi.Input[str] audit_profile_id: The OCID of the parent audit.
275
275
  :param pulumi.Input[str] compartment_id: The OCID of the compartment that contains the target.
276
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
276
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
277
277
  :param pulumi.Input[str] description: (Updatable) The description of the audit trail.
278
- :param pulumi.Input[str] display_name: (Updatable) The display name of the audit trail. The name does not have to be unique, and it's changeable.
278
+ :param pulumi.Input[str] display_name: (Updatable) The display name of the audit trail. The name does not have to be unique, and it's updatable.
279
279
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
280
280
  :param pulumi.Input[bool] is_auto_purge_enabled: (Updatable) Indicates if auto purge is enabled on the target database, which helps delete audit data in the target database every seven days so that the database's audit trail does not become too large.
281
281
  :param pulumi.Input[str] lifecycle_details: Details about the current state of the audit trail in Data Safe.
@@ -379,7 +379,7 @@ class _AuditTrailManagementState:
379
379
  @pulumi.getter(name="definedTags")
380
380
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
381
381
  """
382
- (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"}`
382
+ (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"}`
383
383
  """
384
384
  return pulumi.get(self, "defined_tags")
385
385
 
@@ -403,7 +403,7 @@ class _AuditTrailManagementState:
403
403
  @pulumi.getter(name="displayName")
404
404
  def display_name(self) -> Optional[pulumi.Input[str]]:
405
405
  """
406
- (Updatable) The display name of the audit trail. The name does not have to be unique, and it's changeable.
406
+ (Updatable) The display name of the audit trail. The name does not have to be unique, and it's updatable.
407
407
  """
408
408
  return pulumi.get(self, "display_name")
409
409
 
@@ -648,9 +648,9 @@ class AuditTrailManagement(pulumi.CustomResource):
648
648
  ** IMPORTANT **
649
649
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
650
650
  :param pulumi.Input[str] compartment_id: The OCID of the compartment that contains the target.
651
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
651
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
652
652
  :param pulumi.Input[str] description: (Updatable) The description of the audit trail.
653
- :param pulumi.Input[str] display_name: (Updatable) The display name of the audit trail. The name does not have to be unique, and it's changeable.
653
+ :param pulumi.Input[str] display_name: (Updatable) The display name of the audit trail. The name does not have to be unique, and it's updatable.
654
654
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
655
655
  :param pulumi.Input[bool] is_auto_purge_enabled: (Updatable) Indicates if auto purge is enabled on the target database, which helps delete audit data in the target database every seven days so that the database's audit trail does not become too large.
656
656
  :param pulumi.Input[bool] resume_trigger: (Updatable) An optional property when set to true triggers Resume.
@@ -798,9 +798,9 @@ class AuditTrailManagement(pulumi.CustomResource):
798
798
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
799
799
  :param pulumi.Input[str] audit_profile_id: The OCID of the parent audit.
800
800
  :param pulumi.Input[str] compartment_id: The OCID of the compartment that contains the target.
801
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
801
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
802
802
  :param pulumi.Input[str] description: (Updatable) The description of the audit trail.
803
- :param pulumi.Input[str] display_name: (Updatable) The display name of the audit trail. The name does not have to be unique, and it's changeable.
803
+ :param pulumi.Input[str] display_name: (Updatable) The display name of the audit trail. The name does not have to be unique, and it's updatable.
804
804
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
805
805
  :param pulumi.Input[bool] is_auto_purge_enabled: (Updatable) Indicates if auto purge is enabled on the target database, which helps delete audit data in the target database every seven days so that the database's audit trail does not become too large.
806
806
  :param pulumi.Input[str] lifecycle_details: Details about the current state of the audit trail in Data Safe.
@@ -876,7 +876,7 @@ class AuditTrailManagement(pulumi.CustomResource):
876
876
  @pulumi.getter(name="definedTags")
877
877
  def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
878
878
  """
879
- (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"}`
879
+ (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"}`
880
880
  """
881
881
  return pulumi.get(self, "defined_tags")
882
882
 
@@ -892,7 +892,7 @@ class AuditTrailManagement(pulumi.CustomResource):
892
892
  @pulumi.getter(name="displayName")
893
893
  def display_name(self) -> pulumi.Output[str]:
894
894
  """
895
- (Updatable) The display name of the audit trail. The name does not have to be unique, and it's changeable.
895
+ (Updatable) The display name of the audit trail. The name does not have to be unique, and it's updatable.
896
896
  """
897
897
  return pulumi.get(self, "display_name")
898
898
 
@@ -81,7 +81,7 @@ class _DataSafeConfigurationState:
81
81
  Input properties used for looking up and filtering DataSafeConfiguration resources.
82
82
  :param pulumi.Input[str] compartment_id: (Updatable) A filter to return only resources that match the specified compartment OCID.
83
83
  :param pulumi.Input[str] data_safe_nat_gateway_ip_address: The Oracle Data Safe's NAT Gateway IP Address.
84
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: 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"}`
84
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: 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"}`
85
85
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: 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"}`
86
86
  :param pulumi.Input[Sequence[pulumi.Input['DataSafeConfigurationGlobalSettingArgs']]] global_settings: Details of the tenancy level global settings in Data Safe.
87
87
  :param pulumi.Input[bool] is_enabled: (Updatable) Indicates if Data Safe is enabled.
@@ -140,7 +140,7 @@ class _DataSafeConfigurationState:
140
140
  @pulumi.getter(name="definedTags")
141
141
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
142
142
  """
143
- 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"}`
143
+ 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"}`
144
144
  """
145
145
  return pulumi.get(self, "defined_tags")
146
146
 
@@ -353,7 +353,7 @@ class DataSafeConfiguration(pulumi.CustomResource):
353
353
  :param pulumi.ResourceOptions opts: Options for the resource.
354
354
  :param pulumi.Input[str] compartment_id: (Updatable) A filter to return only resources that match the specified compartment OCID.
355
355
  :param pulumi.Input[str] data_safe_nat_gateway_ip_address: The Oracle Data Safe's NAT Gateway IP Address.
356
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: 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"}`
356
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: 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"}`
357
357
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: 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"}`
358
358
  :param pulumi.Input[Sequence[pulumi.Input[Union['DataSafeConfigurationGlobalSettingArgs', 'DataSafeConfigurationGlobalSettingArgsDict']]]] global_settings: Details of the tenancy level global settings in Data Safe.
359
359
  :param pulumi.Input[bool] is_enabled: (Updatable) Indicates if Data Safe is enabled.
@@ -400,7 +400,7 @@ class DataSafeConfiguration(pulumi.CustomResource):
400
400
  @pulumi.getter(name="definedTags")
401
401
  def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
402
402
  """
403
- 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"}`
403
+ 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"}`
404
404
  """
405
405
  return pulumi.get(self, "defined_tags")
406
406
 
@@ -38,7 +38,7 @@ class DataSafePrivateEndpointArgs:
38
38
 
39
39
  ** IMPORTANT **
40
40
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
41
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
41
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
42
42
  :param pulumi.Input[str] description: (Updatable) The description of the private endpoint.
43
43
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
44
44
  :param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) The OCIDs of the network security groups that the private endpoint belongs to.
@@ -115,7 +115,7 @@ class DataSafePrivateEndpointArgs:
115
115
  @pulumi.getter(name="definedTags")
116
116
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
117
117
  """
118
- (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"}`
118
+ (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"}`
119
119
  """
120
120
  return pulumi.get(self, "defined_tags")
121
121
 
@@ -192,7 +192,7 @@ class _DataSafePrivateEndpointState:
192
192
  """
193
193
  Input properties used for looking up and filtering DataSafePrivateEndpoint resources.
194
194
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment.
195
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
195
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
196
196
  :param pulumi.Input[str] description: (Updatable) The description of the private endpoint.
197
197
  :param pulumi.Input[str] display_name: (Updatable) The display name for the private endpoint. The name does not have to be unique, and it's changeable.
198
198
  :param pulumi.Input[str] endpoint_fqdn: The three-label fully qualified domain name (FQDN) of the private endpoint. The customer VCN's DNS records are updated with this FQDN.
@@ -255,7 +255,7 @@ class _DataSafePrivateEndpointState:
255
255
  @pulumi.getter(name="definedTags")
256
256
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
257
257
  """
258
- (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"}`
258
+ (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"}`
259
259
  """
260
260
  return pulumi.get(self, "defined_tags")
261
261
 
@@ -465,7 +465,7 @@ class DataSafePrivateEndpoint(pulumi.CustomResource):
465
465
  :param str resource_name: The name of the resource.
466
466
  :param pulumi.ResourceOptions opts: Options for the resource.
467
467
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment.
468
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
468
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
469
469
  :param pulumi.Input[str] description: (Updatable) The description of the private endpoint.
470
470
  :param pulumi.Input[str] display_name: (Updatable) The display name for the private endpoint. The name does not have to be unique, and it's changeable.
471
471
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
@@ -606,7 +606,7 @@ class DataSafePrivateEndpoint(pulumi.CustomResource):
606
606
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
607
607
  :param pulumi.ResourceOptions opts: Options for the resource.
608
608
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment.
609
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
609
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
610
610
  :param pulumi.Input[str] description: (Updatable) The description of the private endpoint.
611
611
  :param pulumi.Input[str] display_name: (Updatable) The display name for the private endpoint. The name does not have to be unique, and it's changeable.
612
612
  :param pulumi.Input[str] endpoint_fqdn: The three-label fully qualified domain name (FQDN) of the private endpoint. The customer VCN's DNS records are updated with this FQDN.
@@ -656,7 +656,7 @@ class DataSafePrivateEndpoint(pulumi.CustomResource):
656
656
  @pulumi.getter(name="definedTags")
657
657
  def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
658
658
  """
659
- (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"}`
659
+ (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"}`
660
660
  """
661
661
  return pulumi.get(self, "defined_tags")
662
662
 
@@ -33,7 +33,7 @@ class DatabaseSecurityConfigArgs:
33
33
  The set of arguments for constructing a DatabaseSecurityConfig resource.
34
34
  :param pulumi.Input[str] database_security_config_id: The OCID of the database security configuration resource.
35
35
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the database security config.
36
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
36
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
37
37
  :param pulumi.Input[str] description: (Updatable) The description of the security policy.
38
38
  :param pulumi.Input[str] display_name: (Updatable) The display name of the database security config. The name does not have to be unique, and it is changeable.
39
39
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
@@ -88,7 +88,7 @@ class DatabaseSecurityConfigArgs:
88
88
  @pulumi.getter(name="definedTags")
89
89
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
90
90
  """
91
- (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"}`
91
+ (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"}`
92
92
  """
93
93
  return pulumi.get(self, "defined_tags")
94
94
 
@@ -183,7 +183,7 @@ class _DatabaseSecurityConfigState:
183
183
  Input properties used for looking up and filtering DatabaseSecurityConfig resources.
184
184
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the database security config.
185
185
  :param pulumi.Input[str] database_security_config_id: The OCID of the database security configuration resource.
186
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
186
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
187
187
  :param pulumi.Input[str] description: (Updatable) The description of the security policy.
188
188
  :param pulumi.Input[str] display_name: (Updatable) The display name of the database security config. The name does not have to be unique, and it is changeable.
189
189
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
@@ -260,7 +260,7 @@ class _DatabaseSecurityConfigState:
260
260
  @pulumi.getter(name="definedTags")
261
261
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
262
262
  """
263
- (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"}`
263
+ (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"}`
264
264
  """
265
265
  return pulumi.get(self, "defined_tags")
266
266
 
@@ -448,7 +448,7 @@ class DatabaseSecurityConfig(pulumi.CustomResource):
448
448
  :param pulumi.ResourceOptions opts: Options for the resource.
449
449
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the database security config.
450
450
  :param pulumi.Input[str] database_security_config_id: The OCID of the database security configuration resource.
451
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
451
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
452
452
  :param pulumi.Input[str] description: (Updatable) The description of the security policy.
453
453
  :param pulumi.Input[str] display_name: (Updatable) The display name of the database security config. The name does not have to be unique, and it is changeable.
454
454
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
@@ -561,7 +561,7 @@ class DatabaseSecurityConfig(pulumi.CustomResource):
561
561
  :param pulumi.ResourceOptions opts: Options for the resource.
562
562
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the database security config.
563
563
  :param pulumi.Input[str] database_security_config_id: The OCID of the database security configuration resource.
564
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
564
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
565
565
  :param pulumi.Input[str] description: (Updatable) The description of the security policy.
566
566
  :param pulumi.Input[str] display_name: (Updatable) The display name of the database security config. The name does not have to be unique, and it is changeable.
567
567
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
@@ -620,7 +620,7 @@ class DatabaseSecurityConfig(pulumi.CustomResource):
620
620
  @pulumi.getter(name="definedTags")
621
621
  def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
622
622
  """
623
- (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"}`
623
+ (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"}`
624
624
  """
625
625
  return pulumi.get(self, "defined_tags")
626
626