pulumi-oci 1.34.0a1714565502__py3-none-any.whl → 1.34.0a1714766740__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 (74) hide show
  1. pulumi_oci/__init__.py +40 -0
  2. pulumi_oci/config/__init__.pyi +2 -2
  3. pulumi_oci/config/vars.py +2 -2
  4. pulumi_oci/database/db_home.py +47 -0
  5. pulumi_oci/database/get_db_home.py +14 -1
  6. pulumi_oci/database/outputs.py +11 -0
  7. pulumi_oci/databasemanagement/__init__.py +5 -0
  8. pulumi_oci/databasemanagement/_inputs.py +1207 -2
  9. pulumi_oci/databasemanagement/database_dbm_features_management.py +275 -0
  10. pulumi_oci/databasemanagement/db_management_private_endpoint.py +28 -0
  11. pulumi_oci/databasemanagement/external_asm.py +28 -0
  12. pulumi_oci/databasemanagement/external_asm_instance.py +28 -0
  13. pulumi_oci/databasemanagement/external_cluster.py +28 -0
  14. pulumi_oci/databasemanagement/external_cluster_instance.py +28 -0
  15. pulumi_oci/databasemanagement/external_db_home.py +28 -0
  16. pulumi_oci/databasemanagement/external_db_node.py +28 -0
  17. pulumi_oci/databasemanagement/external_db_system.py +28 -0
  18. pulumi_oci/databasemanagement/external_db_system_connector.py +28 -0
  19. pulumi_oci/databasemanagement/external_db_system_discovery.py +28 -0
  20. pulumi_oci/databasemanagement/external_exadata_infrastructure.py +28 -0
  21. pulumi_oci/databasemanagement/external_exadata_storage_connector.py +28 -0
  22. pulumi_oci/databasemanagement/external_exadata_storage_grid.py +28 -0
  23. pulumi_oci/databasemanagement/external_exadata_storage_server.py +28 -0
  24. pulumi_oci/databasemanagement/external_listener.py +28 -0
  25. pulumi_oci/databasemanagement/externalcontainerdatabase_external_container_dbm_features_management.py +275 -0
  26. pulumi_oci/databasemanagement/externalnoncontainerdatabase_external_non_container_dbm_features_management.py +275 -0
  27. pulumi_oci/databasemanagement/externalpluggabledatabase_external_pluggable_dbm_features_management.py +275 -0
  28. pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
  29. pulumi_oci/databasemanagement/get_external_asm.py +14 -1
  30. pulumi_oci/databasemanagement/get_external_asm_instance.py +14 -1
  31. pulumi_oci/databasemanagement/get_external_cluster.py +14 -1
  32. pulumi_oci/databasemanagement/get_external_cluster_instance.py +14 -1
  33. pulumi_oci/databasemanagement/get_external_databases.py +18 -1
  34. pulumi_oci/databasemanagement/get_external_db_home.py +14 -1
  35. pulumi_oci/databasemanagement/get_external_db_node.py +14 -1
  36. pulumi_oci/databasemanagement/get_external_db_system.py +14 -1
  37. pulumi_oci/databasemanagement/get_external_db_system_connector.py +14 -1
  38. pulumi_oci/databasemanagement/get_external_db_system_discovery.py +14 -1
  39. pulumi_oci/databasemanagement/get_external_exadata_infrastructure.py +14 -1
  40. pulumi_oci/databasemanagement/get_external_exadata_storage_connector.py +14 -1
  41. pulumi_oci/databasemanagement/get_external_exadata_storage_grid.py +14 -1
  42. pulumi_oci/databasemanagement/get_external_exadata_storage_server.py +14 -1
  43. pulumi_oci/databasemanagement/get_external_listener.py +14 -1
  44. pulumi_oci/databasemanagement/get_managed_database_group.py +14 -1
  45. pulumi_oci/databasemanagement/get_managed_my_sql_database.py +6 -6
  46. pulumi_oci/databasemanagement/get_named_credential.py +14 -1
  47. pulumi_oci/databasemanagement/managed_database.py +28 -0
  48. pulumi_oci/databasemanagement/managed_database_group.py +28 -0
  49. pulumi_oci/databasemanagement/named_credential.py +28 -0
  50. pulumi_oci/databasemanagement/outputs.py +1723 -214
  51. pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +275 -0
  52. pulumi_oci/datasafe/__init__.py +3 -0
  53. pulumi_oci/datasafe/_inputs.py +80 -0
  54. pulumi_oci/datasafe/get_masking_policy.py +11 -1
  55. pulumi_oci/datasafe/get_masking_policy_health_report.py +235 -0
  56. pulumi_oci/datasafe/get_masking_policy_health_report_logs.py +153 -0
  57. pulumi_oci/datasafe/get_masking_policy_health_reports.py +267 -0
  58. pulumi_oci/datasafe/masking_policy.py +75 -28
  59. pulumi_oci/datasafe/outputs.py +287 -0
  60. pulumi_oci/provider.py +8 -8
  61. pulumi_oci/recoverymod/_inputs.py +16 -0
  62. pulumi_oci/recoverymod/get_protected_database.py +25 -5
  63. pulumi_oci/recoverymod/get_protection_policies.py +1 -7
  64. pulumi_oci/recoverymod/get_protection_policy.py +15 -8
  65. pulumi_oci/recoverymod/get_recovery_service_subnet.py +32 -9
  66. pulumi_oci/recoverymod/get_recovery_service_subnets.py +3 -21
  67. pulumi_oci/recoverymod/outputs.py +96 -24
  68. pulumi_oci/recoverymod/protected_database.py +95 -16
  69. pulumi_oci/recoverymod/protection_policy.py +121 -54
  70. pulumi_oci/recoverymod/recovery_service_subnet.py +143 -55
  71. {pulumi_oci-1.34.0a1714565502.dist-info → pulumi_oci-1.34.0a1714766740.dist-info}/METADATA +1 -1
  72. {pulumi_oci-1.34.0a1714565502.dist-info → pulumi_oci-1.34.0a1714766740.dist-info}/RECORD +74 -66
  73. {pulumi_oci-1.34.0a1714565502.dist-info → pulumi_oci-1.34.0a1714766740.dist-info}/WHEEL +0 -0
  74. {pulumi_oci-1.34.0a1714565502.dist-info → pulumi_oci-1.34.0a1714766740.dist-info}/top_level.txt +0 -0
@@ -23,6 +23,7 @@ class MaskingPolicyArgs:
23
23
  description: Optional[pulumi.Input[str]] = None,
24
24
  display_name: Optional[pulumi.Input[str]] = None,
25
25
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
26
+ generate_health_report_trigger: Optional[pulumi.Input[int]] = None,
26
27
  is_drop_temp_tables_enabled: Optional[pulumi.Input[bool]] = None,
27
28
  is_redo_logging_enabled: Optional[pulumi.Input[bool]] = None,
28
29
  is_refresh_stats_enabled: Optional[pulumi.Input[bool]] = None,
@@ -35,14 +36,15 @@ class MaskingPolicyArgs:
35
36
  :param pulumi.Input[Sequence[pulumi.Input['MaskingPolicyColumnSourceArgs']]] column_sources: (Updatable) The source of masking columns.
36
37
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment where the masking policy should be created.
37
38
  :param pulumi.Input[int] add_masking_columns_from_sdm_trigger: (Updatable) An optional property when incremented triggers Add Masking Columns From Sdm. Could be set to any integer value.
38
-
39
-
40
- ** IMPORTANT **
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
39
  :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"}`
43
40
  :param pulumi.Input[str] description: (Updatable) The description of the masking policy.
44
41
  :param pulumi.Input[str] display_name: (Updatable) The display name of the masking policy. The name does not have to be unique, and it's changeable.
45
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
+ :param pulumi.Input[int] generate_health_report_trigger: (Updatable) An optional property when incremented triggers Generate Health Report. Could be set to any integer value.
44
+
45
+
46
+ ** IMPORTANT **
47
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
46
48
  :param pulumi.Input[bool] is_drop_temp_tables_enabled: (Updatable) Indicates if the temporary tables created during a masking operation should be dropped after masking. It's enabled by default. Set this attribute to false to preserve the temporary tables. Masking creates temporary tables that map the original sensitive data values to mask values. By default, these temporary tables are dropped after masking. But, in some cases, you may want to preserve this information to track how masking changed your data. Note that doing so compromises security. These tables must be dropped before the database is available for unprivileged users.
47
49
  :param pulumi.Input[bool] is_redo_logging_enabled: (Updatable) Indicates if redo logging is enabled during a masking operation. It's disabled by default. Set this attribute to true to enable redo logging. By default, masking disables redo logging and flashback logging to purge any original unmasked data from logs. However, in certain circumstances when you only want to test masking, rollback changes, and retry masking, you could enable logging and use a flashback database to retrieve the original unmasked data after it has been masked.
48
50
  :param pulumi.Input[bool] is_refresh_stats_enabled: (Updatable) Indicates if statistics gathering is enabled. It's enabled by default. Set this attribute to false to disable statistics gathering. The masking process gathers statistics on masked database tables after masking completes.
@@ -63,6 +65,8 @@ class MaskingPolicyArgs:
63
65
  pulumi.set(__self__, "display_name", display_name)
64
66
  if freeform_tags is not None:
65
67
  pulumi.set(__self__, "freeform_tags", freeform_tags)
68
+ if generate_health_report_trigger is not None:
69
+ pulumi.set(__self__, "generate_health_report_trigger", generate_health_report_trigger)
66
70
  if is_drop_temp_tables_enabled is not None:
67
71
  pulumi.set(__self__, "is_drop_temp_tables_enabled", is_drop_temp_tables_enabled)
68
72
  if is_redo_logging_enabled is not None:
@@ -107,10 +111,6 @@ class MaskingPolicyArgs:
107
111
  def add_masking_columns_from_sdm_trigger(self) -> Optional[pulumi.Input[int]]:
108
112
  """
109
113
  (Updatable) An optional property when incremented triggers Add Masking Columns From Sdm. Could be set to any integer value.
110
-
111
-
112
- ** IMPORTANT **
113
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
114
114
  """
115
115
  return pulumi.get(self, "add_masking_columns_from_sdm_trigger")
116
116
 
@@ -166,6 +166,22 @@ class MaskingPolicyArgs:
166
166
  def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
167
167
  pulumi.set(self, "freeform_tags", value)
168
168
 
169
+ @property
170
+ @pulumi.getter(name="generateHealthReportTrigger")
171
+ def generate_health_report_trigger(self) -> Optional[pulumi.Input[int]]:
172
+ """
173
+ (Updatable) An optional property when incremented triggers Generate Health Report. Could be set to any integer value.
174
+
175
+
176
+ ** IMPORTANT **
177
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
178
+ """
179
+ return pulumi.get(self, "generate_health_report_trigger")
180
+
181
+ @generate_health_report_trigger.setter
182
+ def generate_health_report_trigger(self, value: Optional[pulumi.Input[int]]):
183
+ pulumi.set(self, "generate_health_report_trigger", value)
184
+
169
185
  @property
170
186
  @pulumi.getter(name="isDropTempTablesEnabled")
171
187
  def is_drop_temp_tables_enabled(self) -> Optional[pulumi.Input[bool]]:
@@ -261,6 +277,7 @@ class _MaskingPolicyState:
261
277
  description: Optional[pulumi.Input[str]] = None,
262
278
  display_name: Optional[pulumi.Input[str]] = None,
263
279
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
280
+ generate_health_report_trigger: Optional[pulumi.Input[int]] = None,
264
281
  is_drop_temp_tables_enabled: Optional[pulumi.Input[bool]] = None,
265
282
  is_redo_logging_enabled: Optional[pulumi.Input[bool]] = None,
266
283
  is_refresh_stats_enabled: Optional[pulumi.Input[bool]] = None,
@@ -274,16 +291,17 @@ class _MaskingPolicyState:
274
291
  """
275
292
  Input properties used for looking up and filtering MaskingPolicy resources.
276
293
  :param pulumi.Input[int] add_masking_columns_from_sdm_trigger: (Updatable) An optional property when incremented triggers Add Masking Columns From Sdm. Could be set to any integer value.
277
-
278
-
279
- ** IMPORTANT **
280
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
281
294
  :param pulumi.Input[Sequence[pulumi.Input['MaskingPolicyColumnSourceArgs']]] column_sources: (Updatable) The source of masking columns.
282
295
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment where the masking policy should be created.
283
296
  :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"}`
284
297
  :param pulumi.Input[str] description: (Updatable) The description of the masking policy.
285
298
  :param pulumi.Input[str] display_name: (Updatable) The display name of the masking policy. The name does not have to be unique, and it's changeable.
286
299
  :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"}`
300
+ :param pulumi.Input[int] generate_health_report_trigger: (Updatable) An optional property when incremented triggers Generate Health Report. Could be set to any integer value.
301
+
302
+
303
+ ** IMPORTANT **
304
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
287
305
  :param pulumi.Input[bool] is_drop_temp_tables_enabled: (Updatable) Indicates if the temporary tables created during a masking operation should be dropped after masking. It's enabled by default. Set this attribute to false to preserve the temporary tables. Masking creates temporary tables that map the original sensitive data values to mask values. By default, these temporary tables are dropped after masking. But, in some cases, you may want to preserve this information to track how masking changed your data. Note that doing so compromises security. These tables must be dropped before the database is available for unprivileged users.
288
306
  :param pulumi.Input[bool] is_redo_logging_enabled: (Updatable) Indicates if redo logging is enabled during a masking operation. It's disabled by default. Set this attribute to true to enable redo logging. By default, masking disables redo logging and flashback logging to purge any original unmasked data from logs. However, in certain circumstances when you only want to test masking, rollback changes, and retry masking, you could enable logging and use a flashback database to retrieve the original unmasked data after it has been masked.
289
307
  :param pulumi.Input[bool] is_refresh_stats_enabled: (Updatable) Indicates if statistics gathering is enabled. It's enabled by default. Set this attribute to false to disable statistics gathering. The masking process gathers statistics on masked database tables after masking completes.
@@ -309,6 +327,8 @@ class _MaskingPolicyState:
309
327
  pulumi.set(__self__, "display_name", display_name)
310
328
  if freeform_tags is not None:
311
329
  pulumi.set(__self__, "freeform_tags", freeform_tags)
330
+ if generate_health_report_trigger is not None:
331
+ pulumi.set(__self__, "generate_health_report_trigger", generate_health_report_trigger)
312
332
  if is_drop_temp_tables_enabled is not None:
313
333
  pulumi.set(__self__, "is_drop_temp_tables_enabled", is_drop_temp_tables_enabled)
314
334
  if is_redo_logging_enabled is not None:
@@ -335,10 +355,6 @@ class _MaskingPolicyState:
335
355
  def add_masking_columns_from_sdm_trigger(self) -> Optional[pulumi.Input[int]]:
336
356
  """
337
357
  (Updatable) An optional property when incremented triggers Add Masking Columns From Sdm. Could be set to any integer value.
338
-
339
-
340
- ** IMPORTANT **
341
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
342
358
  """
343
359
  return pulumi.get(self, "add_masking_columns_from_sdm_trigger")
344
360
 
@@ -418,6 +434,22 @@ class _MaskingPolicyState:
418
434
  def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
419
435
  pulumi.set(self, "freeform_tags", value)
420
436
 
437
+ @property
438
+ @pulumi.getter(name="generateHealthReportTrigger")
439
+ def generate_health_report_trigger(self) -> Optional[pulumi.Input[int]]:
440
+ """
441
+ (Updatable) An optional property when incremented triggers Generate Health Report. Could be set to any integer value.
442
+
443
+
444
+ ** IMPORTANT **
445
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
446
+ """
447
+ return pulumi.get(self, "generate_health_report_trigger")
448
+
449
+ @generate_health_report_trigger.setter
450
+ def generate_health_report_trigger(self, value: Optional[pulumi.Input[int]]):
451
+ pulumi.set(self, "generate_health_report_trigger", value)
452
+
421
453
  @property
422
454
  @pulumi.getter(name="isDropTempTablesEnabled")
423
455
  def is_drop_temp_tables_enabled(self) -> Optional[pulumi.Input[bool]]:
@@ -551,6 +583,7 @@ class MaskingPolicy(pulumi.CustomResource):
551
583
  description: Optional[pulumi.Input[str]] = None,
552
584
  display_name: Optional[pulumi.Input[str]] = None,
553
585
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
586
+ generate_health_report_trigger: Optional[pulumi.Input[int]] = None,
554
587
  is_drop_temp_tables_enabled: Optional[pulumi.Input[bool]] = None,
555
588
  is_redo_logging_enabled: Optional[pulumi.Input[bool]] = None,
556
589
  is_refresh_stats_enabled: Optional[pulumi.Input[bool]] = None,
@@ -621,16 +654,17 @@ class MaskingPolicy(pulumi.CustomResource):
621
654
  :param str resource_name: The name of the resource.
622
655
  :param pulumi.ResourceOptions opts: Options for the resource.
623
656
  :param pulumi.Input[int] add_masking_columns_from_sdm_trigger: (Updatable) An optional property when incremented triggers Add Masking Columns From Sdm. Could be set to any integer value.
624
-
625
-
626
- ** IMPORTANT **
627
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
628
657
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MaskingPolicyColumnSourceArgs']]]] column_sources: (Updatable) The source of masking columns.
629
658
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment where the masking policy should be created.
630
659
  :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"}`
631
660
  :param pulumi.Input[str] description: (Updatable) The description of the masking policy.
632
661
  :param pulumi.Input[str] display_name: (Updatable) The display name of the masking policy. The name does not have to be unique, and it's changeable.
633
662
  :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"}`
663
+ :param pulumi.Input[int] generate_health_report_trigger: (Updatable) An optional property when incremented triggers Generate Health Report. Could be set to any integer value.
664
+
665
+
666
+ ** IMPORTANT **
667
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
634
668
  :param pulumi.Input[bool] is_drop_temp_tables_enabled: (Updatable) Indicates if the temporary tables created during a masking operation should be dropped after masking. It's enabled by default. Set this attribute to false to preserve the temporary tables. Masking creates temporary tables that map the original sensitive data values to mask values. By default, these temporary tables are dropped after masking. But, in some cases, you may want to preserve this information to track how masking changed your data. Note that doing so compromises security. These tables must be dropped before the database is available for unprivileged users.
635
669
  :param pulumi.Input[bool] is_redo_logging_enabled: (Updatable) Indicates if redo logging is enabled during a masking operation. It's disabled by default. Set this attribute to true to enable redo logging. By default, masking disables redo logging and flashback logging to purge any original unmasked data from logs. However, in certain circumstances when you only want to test masking, rollback changes, and retry masking, you could enable logging and use a flashback database to retrieve the original unmasked data after it has been masked.
636
670
  :param pulumi.Input[bool] is_refresh_stats_enabled: (Updatable) Indicates if statistics gathering is enabled. It's enabled by default. Set this attribute to false to disable statistics gathering. The masking process gathers statistics on masked database tables after masking completes.
@@ -726,6 +760,7 @@ class MaskingPolicy(pulumi.CustomResource):
726
760
  description: Optional[pulumi.Input[str]] = None,
727
761
  display_name: Optional[pulumi.Input[str]] = None,
728
762
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
763
+ generate_health_report_trigger: Optional[pulumi.Input[int]] = None,
729
764
  is_drop_temp_tables_enabled: Optional[pulumi.Input[bool]] = None,
730
765
  is_redo_logging_enabled: Optional[pulumi.Input[bool]] = None,
731
766
  is_refresh_stats_enabled: Optional[pulumi.Input[bool]] = None,
@@ -753,6 +788,7 @@ class MaskingPolicy(pulumi.CustomResource):
753
788
  __props__.__dict__["description"] = description
754
789
  __props__.__dict__["display_name"] = display_name
755
790
  __props__.__dict__["freeform_tags"] = freeform_tags
791
+ __props__.__dict__["generate_health_report_trigger"] = generate_health_report_trigger
756
792
  __props__.__dict__["is_drop_temp_tables_enabled"] = is_drop_temp_tables_enabled
757
793
  __props__.__dict__["is_redo_logging_enabled"] = is_redo_logging_enabled
758
794
  __props__.__dict__["is_refresh_stats_enabled"] = is_refresh_stats_enabled
@@ -780,6 +816,7 @@ class MaskingPolicy(pulumi.CustomResource):
780
816
  description: Optional[pulumi.Input[str]] = None,
781
817
  display_name: Optional[pulumi.Input[str]] = None,
782
818
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
819
+ generate_health_report_trigger: Optional[pulumi.Input[int]] = None,
783
820
  is_drop_temp_tables_enabled: Optional[pulumi.Input[bool]] = None,
784
821
  is_redo_logging_enabled: Optional[pulumi.Input[bool]] = None,
785
822
  is_refresh_stats_enabled: Optional[pulumi.Input[bool]] = None,
@@ -798,16 +835,17 @@ class MaskingPolicy(pulumi.CustomResource):
798
835
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
799
836
  :param pulumi.ResourceOptions opts: Options for the resource.
800
837
  :param pulumi.Input[int] add_masking_columns_from_sdm_trigger: (Updatable) An optional property when incremented triggers Add Masking Columns From Sdm. Could be set to any integer value.
801
-
802
-
803
- ** IMPORTANT **
804
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
805
838
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MaskingPolicyColumnSourceArgs']]]] column_sources: (Updatable) The source of masking columns.
806
839
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment where the masking policy should be created.
807
840
  :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"}`
808
841
  :param pulumi.Input[str] description: (Updatable) The description of the masking policy.
809
842
  :param pulumi.Input[str] display_name: (Updatable) The display name of the masking policy. The name does not have to be unique, and it's changeable.
810
843
  :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"}`
844
+ :param pulumi.Input[int] generate_health_report_trigger: (Updatable) An optional property when incremented triggers Generate Health Report. Could be set to any integer value.
845
+
846
+
847
+ ** IMPORTANT **
848
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
811
849
  :param pulumi.Input[bool] is_drop_temp_tables_enabled: (Updatable) Indicates if the temporary tables created during a masking operation should be dropped after masking. It's enabled by default. Set this attribute to false to preserve the temporary tables. Masking creates temporary tables that map the original sensitive data values to mask values. By default, these temporary tables are dropped after masking. But, in some cases, you may want to preserve this information to track how masking changed your data. Note that doing so compromises security. These tables must be dropped before the database is available for unprivileged users.
812
850
  :param pulumi.Input[bool] is_redo_logging_enabled: (Updatable) Indicates if redo logging is enabled during a masking operation. It's disabled by default. Set this attribute to true to enable redo logging. By default, masking disables redo logging and flashback logging to purge any original unmasked data from logs. However, in certain circumstances when you only want to test masking, rollback changes, and retry masking, you could enable logging and use a flashback database to retrieve the original unmasked data after it has been masked.
813
851
  :param pulumi.Input[bool] is_refresh_stats_enabled: (Updatable) Indicates if statistics gathering is enabled. It's enabled by default. Set this attribute to false to disable statistics gathering. The masking process gathers statistics on masked database tables after masking completes.
@@ -830,6 +868,7 @@ class MaskingPolicy(pulumi.CustomResource):
830
868
  __props__.__dict__["description"] = description
831
869
  __props__.__dict__["display_name"] = display_name
832
870
  __props__.__dict__["freeform_tags"] = freeform_tags
871
+ __props__.__dict__["generate_health_report_trigger"] = generate_health_report_trigger
833
872
  __props__.__dict__["is_drop_temp_tables_enabled"] = is_drop_temp_tables_enabled
834
873
  __props__.__dict__["is_redo_logging_enabled"] = is_redo_logging_enabled
835
874
  __props__.__dict__["is_refresh_stats_enabled"] = is_refresh_stats_enabled
@@ -847,10 +886,6 @@ class MaskingPolicy(pulumi.CustomResource):
847
886
  def add_masking_columns_from_sdm_trigger(self) -> pulumi.Output[Optional[int]]:
848
887
  """
849
888
  (Updatable) An optional property when incremented triggers Add Masking Columns From Sdm. Could be set to any integer value.
850
-
851
-
852
- ** IMPORTANT **
853
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
854
889
  """
855
890
  return pulumi.get(self, "add_masking_columns_from_sdm_trigger")
856
891
 
@@ -902,6 +937,18 @@ class MaskingPolicy(pulumi.CustomResource):
902
937
  """
903
938
  return pulumi.get(self, "freeform_tags")
904
939
 
940
+ @property
941
+ @pulumi.getter(name="generateHealthReportTrigger")
942
+ def generate_health_report_trigger(self) -> pulumi.Output[Optional[int]]:
943
+ """
944
+ (Updatable) An optional property when incremented triggers Generate Health Report. Could be set to any integer value.
945
+
946
+
947
+ ** IMPORTANT **
948
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
949
+ """
950
+ return pulumi.get(self, "generate_health_report_trigger")
951
+
905
952
  @property
906
953
  @pulumi.getter(name="isDropTempTablesEnabled")
907
954
  def is_drop_temp_tables_enabled(self) -> pulumi.Output[bool]:
@@ -145,6 +145,12 @@ __all__ = [
145
145
  'GetMaskingPoliciesMaskingPolicyCollectionItemResult',
146
146
  'GetMaskingPoliciesMaskingPolicyCollectionItemColumnSourceResult',
147
147
  'GetMaskingPolicyColumnSourceResult',
148
+ 'GetMaskingPolicyHealthReportLogsFilterResult',
149
+ 'GetMaskingPolicyHealthReportLogsMaskingPolicyHealthReportLogCollectionResult',
150
+ 'GetMaskingPolicyHealthReportLogsMaskingPolicyHealthReportLogCollectionItemResult',
151
+ 'GetMaskingPolicyHealthReportsFilterResult',
152
+ 'GetMaskingPolicyHealthReportsMaskingPolicyHealthReportCollectionResult',
153
+ 'GetMaskingPolicyHealthReportsMaskingPolicyHealthReportCollectionItemResult',
148
154
  'GetMaskingPolicyMaskingObjectsFilterResult',
149
155
  'GetMaskingPolicyMaskingObjectsMaskingObjectCollectionResult',
150
156
  'GetMaskingPolicyMaskingObjectsMaskingObjectCollectionItemResult',
@@ -12280,6 +12286,7 @@ class GetMaskingPoliciesMaskingPolicyCollectionItemResult(dict):
12280
12286
  description: str,
12281
12287
  display_name: str,
12282
12288
  freeform_tags: Mapping[str, Any],
12289
+ generate_health_report_trigger: int,
12283
12290
  id: str,
12284
12291
  is_drop_temp_tables_enabled: bool,
12285
12292
  is_redo_logging_enabled: bool,
@@ -12317,6 +12324,7 @@ class GetMaskingPoliciesMaskingPolicyCollectionItemResult(dict):
12317
12324
  pulumi.set(__self__, "description", description)
12318
12325
  pulumi.set(__self__, "display_name", display_name)
12319
12326
  pulumi.set(__self__, "freeform_tags", freeform_tags)
12327
+ pulumi.set(__self__, "generate_health_report_trigger", generate_health_report_trigger)
12320
12328
  pulumi.set(__self__, "id", id)
12321
12329
  pulumi.set(__self__, "is_drop_temp_tables_enabled", is_drop_temp_tables_enabled)
12322
12330
  pulumi.set(__self__, "is_redo_logging_enabled", is_redo_logging_enabled)
@@ -12382,6 +12390,11 @@ class GetMaskingPoliciesMaskingPolicyCollectionItemResult(dict):
12382
12390
  """
12383
12391
  return pulumi.get(self, "freeform_tags")
12384
12392
 
12393
+ @property
12394
+ @pulumi.getter(name="generateHealthReportTrigger")
12395
+ def generate_health_report_trigger(self) -> int:
12396
+ return pulumi.get(self, "generate_health_report_trigger")
12397
+
12385
12398
  @property
12386
12399
  @pulumi.getter
12387
12400
  def id(self) -> str:
@@ -12551,6 +12564,280 @@ class GetMaskingPolicyColumnSourceResult(dict):
12551
12564
  return pulumi.get(self, "target_id")
12552
12565
 
12553
12566
 
12567
+ @pulumi.output_type
12568
+ class GetMaskingPolicyHealthReportLogsFilterResult(dict):
12569
+ def __init__(__self__, *,
12570
+ name: str,
12571
+ values: Sequence[str],
12572
+ regex: Optional[bool] = None):
12573
+ pulumi.set(__self__, "name", name)
12574
+ pulumi.set(__self__, "values", values)
12575
+ if regex is not None:
12576
+ pulumi.set(__self__, "regex", regex)
12577
+
12578
+ @property
12579
+ @pulumi.getter
12580
+ def name(self) -> str:
12581
+ return pulumi.get(self, "name")
12582
+
12583
+ @property
12584
+ @pulumi.getter
12585
+ def values(self) -> Sequence[str]:
12586
+ return pulumi.get(self, "values")
12587
+
12588
+ @property
12589
+ @pulumi.getter
12590
+ def regex(self) -> Optional[bool]:
12591
+ return pulumi.get(self, "regex")
12592
+
12593
+
12594
+ @pulumi.output_type
12595
+ class GetMaskingPolicyHealthReportLogsMaskingPolicyHealthReportLogCollectionResult(dict):
12596
+ def __init__(__self__, *,
12597
+ items: Sequence['outputs.GetMaskingPolicyHealthReportLogsMaskingPolicyHealthReportLogCollectionItemResult']):
12598
+ """
12599
+ :param Sequence['GetMaskingPolicyHealthReportLogsMaskingPolicyHealthReportLogCollectionItemArgs'] items: An array of masking policy health report objects.
12600
+ """
12601
+ pulumi.set(__self__, "items", items)
12602
+
12603
+ @property
12604
+ @pulumi.getter
12605
+ def items(self) -> Sequence['outputs.GetMaskingPolicyHealthReportLogsMaskingPolicyHealthReportLogCollectionItemResult']:
12606
+ """
12607
+ An array of masking policy health report objects.
12608
+ """
12609
+ return pulumi.get(self, "items")
12610
+
12611
+
12612
+ @pulumi.output_type
12613
+ class GetMaskingPolicyHealthReportLogsMaskingPolicyHealthReportLogCollectionItemResult(dict):
12614
+ def __init__(__self__, *,
12615
+ description: str,
12616
+ message: str,
12617
+ message_type: str,
12618
+ remediation: str,
12619
+ timestamp: str):
12620
+ """
12621
+ :param str description: A human-readable description for the log entry.
12622
+ :param str message: A human-readable log entry.
12623
+ :param str message_type: A filter to return only the resources that match the specified log message type.
12624
+ :param str remediation: A human-readable log entry to remedy any error or warnings in the masking policy.
12625
+ :param str timestamp: The date and time the log entry was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
12626
+ """
12627
+ pulumi.set(__self__, "description", description)
12628
+ pulumi.set(__self__, "message", message)
12629
+ pulumi.set(__self__, "message_type", message_type)
12630
+ pulumi.set(__self__, "remediation", remediation)
12631
+ pulumi.set(__self__, "timestamp", timestamp)
12632
+
12633
+ @property
12634
+ @pulumi.getter
12635
+ def description(self) -> str:
12636
+ """
12637
+ A human-readable description for the log entry.
12638
+ """
12639
+ return pulumi.get(self, "description")
12640
+
12641
+ @property
12642
+ @pulumi.getter
12643
+ def message(self) -> str:
12644
+ """
12645
+ A human-readable log entry.
12646
+ """
12647
+ return pulumi.get(self, "message")
12648
+
12649
+ @property
12650
+ @pulumi.getter(name="messageType")
12651
+ def message_type(self) -> str:
12652
+ """
12653
+ A filter to return only the resources that match the specified log message type.
12654
+ """
12655
+ return pulumi.get(self, "message_type")
12656
+
12657
+ @property
12658
+ @pulumi.getter
12659
+ def remediation(self) -> str:
12660
+ """
12661
+ A human-readable log entry to remedy any error or warnings in the masking policy.
12662
+ """
12663
+ return pulumi.get(self, "remediation")
12664
+
12665
+ @property
12666
+ @pulumi.getter
12667
+ def timestamp(self) -> str:
12668
+ """
12669
+ The date and time the log entry was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
12670
+ """
12671
+ return pulumi.get(self, "timestamp")
12672
+
12673
+
12674
+ @pulumi.output_type
12675
+ class GetMaskingPolicyHealthReportsFilterResult(dict):
12676
+ def __init__(__self__, *,
12677
+ name: str,
12678
+ values: Sequence[str],
12679
+ regex: Optional[bool] = None):
12680
+ pulumi.set(__self__, "name", name)
12681
+ pulumi.set(__self__, "values", values)
12682
+ if regex is not None:
12683
+ pulumi.set(__self__, "regex", regex)
12684
+
12685
+ @property
12686
+ @pulumi.getter
12687
+ def name(self) -> str:
12688
+ return pulumi.get(self, "name")
12689
+
12690
+ @property
12691
+ @pulumi.getter
12692
+ def values(self) -> Sequence[str]:
12693
+ return pulumi.get(self, "values")
12694
+
12695
+ @property
12696
+ @pulumi.getter
12697
+ def regex(self) -> Optional[bool]:
12698
+ return pulumi.get(self, "regex")
12699
+
12700
+
12701
+ @pulumi.output_type
12702
+ class GetMaskingPolicyHealthReportsMaskingPolicyHealthReportCollectionResult(dict):
12703
+ def __init__(__self__, *,
12704
+ items: Sequence['outputs.GetMaskingPolicyHealthReportsMaskingPolicyHealthReportCollectionItemResult']):
12705
+ pulumi.set(__self__, "items", items)
12706
+
12707
+ @property
12708
+ @pulumi.getter
12709
+ def items(self) -> Sequence['outputs.GetMaskingPolicyHealthReportsMaskingPolicyHealthReportCollectionItemResult']:
12710
+ return pulumi.get(self, "items")
12711
+
12712
+
12713
+ @pulumi.output_type
12714
+ class GetMaskingPolicyHealthReportsMaskingPolicyHealthReportCollectionItemResult(dict):
12715
+ def __init__(__self__, *,
12716
+ compartment_id: str,
12717
+ defined_tags: Mapping[str, Any],
12718
+ description: str,
12719
+ display_name: str,
12720
+ freeform_tags: Mapping[str, Any],
12721
+ id: str,
12722
+ masking_policy_id: str,
12723
+ state: str,
12724
+ target_id: str,
12725
+ time_created: str,
12726
+ time_updated: str):
12727
+ """
12728
+ :param str compartment_id: A filter to return only resources that match the specified compartment OCID.
12729
+ :param Mapping[str, Any] 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"}`
12730
+ :param str description: The description of the masking health report.
12731
+ :param str display_name: A filter to return only resources that match the specified display name.
12732
+ :param Mapping[str, Any] 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"}`
12733
+ :param str id: The OCID of the health report.
12734
+ :param str masking_policy_id: A filter to return only the resources that match the specified masking policy OCID.
12735
+ :param str state: A filter to return only the resources that match the specified lifecycle states.
12736
+ :param str target_id: A filter to return only items related to a specific target OCID.
12737
+ :param str time_created: The date and time the report was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
12738
+ :param str time_updated: The date and time the report was last updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339)
12739
+ """
12740
+ pulumi.set(__self__, "compartment_id", compartment_id)
12741
+ pulumi.set(__self__, "defined_tags", defined_tags)
12742
+ pulumi.set(__self__, "description", description)
12743
+ pulumi.set(__self__, "display_name", display_name)
12744
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
12745
+ pulumi.set(__self__, "id", id)
12746
+ pulumi.set(__self__, "masking_policy_id", masking_policy_id)
12747
+ pulumi.set(__self__, "state", state)
12748
+ pulumi.set(__self__, "target_id", target_id)
12749
+ pulumi.set(__self__, "time_created", time_created)
12750
+ pulumi.set(__self__, "time_updated", time_updated)
12751
+
12752
+ @property
12753
+ @pulumi.getter(name="compartmentId")
12754
+ def compartment_id(self) -> str:
12755
+ """
12756
+ A filter to return only resources that match the specified compartment OCID.
12757
+ """
12758
+ return pulumi.get(self, "compartment_id")
12759
+
12760
+ @property
12761
+ @pulumi.getter(name="definedTags")
12762
+ def defined_tags(self) -> Mapping[str, Any]:
12763
+ """
12764
+ 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"}`
12765
+ """
12766
+ return pulumi.get(self, "defined_tags")
12767
+
12768
+ @property
12769
+ @pulumi.getter
12770
+ def description(self) -> str:
12771
+ """
12772
+ The description of the masking health report.
12773
+ """
12774
+ return pulumi.get(self, "description")
12775
+
12776
+ @property
12777
+ @pulumi.getter(name="displayName")
12778
+ def display_name(self) -> str:
12779
+ """
12780
+ A filter to return only resources that match the specified display name.
12781
+ """
12782
+ return pulumi.get(self, "display_name")
12783
+
12784
+ @property
12785
+ @pulumi.getter(name="freeformTags")
12786
+ def freeform_tags(self) -> Mapping[str, Any]:
12787
+ """
12788
+ 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"}`
12789
+ """
12790
+ return pulumi.get(self, "freeform_tags")
12791
+
12792
+ @property
12793
+ @pulumi.getter
12794
+ def id(self) -> str:
12795
+ """
12796
+ The OCID of the health report.
12797
+ """
12798
+ return pulumi.get(self, "id")
12799
+
12800
+ @property
12801
+ @pulumi.getter(name="maskingPolicyId")
12802
+ def masking_policy_id(self) -> str:
12803
+ """
12804
+ A filter to return only the resources that match the specified masking policy OCID.
12805
+ """
12806
+ return pulumi.get(self, "masking_policy_id")
12807
+
12808
+ @property
12809
+ @pulumi.getter
12810
+ def state(self) -> str:
12811
+ """
12812
+ A filter to return only the resources that match the specified lifecycle states.
12813
+ """
12814
+ return pulumi.get(self, "state")
12815
+
12816
+ @property
12817
+ @pulumi.getter(name="targetId")
12818
+ def target_id(self) -> str:
12819
+ """
12820
+ A filter to return only items related to a specific target OCID.
12821
+ """
12822
+ return pulumi.get(self, "target_id")
12823
+
12824
+ @property
12825
+ @pulumi.getter(name="timeCreated")
12826
+ def time_created(self) -> str:
12827
+ """
12828
+ The date and time the report was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
12829
+ """
12830
+ return pulumi.get(self, "time_created")
12831
+
12832
+ @property
12833
+ @pulumi.getter(name="timeUpdated")
12834
+ def time_updated(self) -> str:
12835
+ """
12836
+ The date and time the report was last updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339)
12837
+ """
12838
+ return pulumi.get(self, "time_updated")
12839
+
12840
+
12554
12841
  @pulumi.output_type
12555
12842
  class GetMaskingPolicyMaskingObjectsFilterResult(dict):
12556
12843
  def __init__(__self__, *,
pulumi_oci/provider.py CHANGED
@@ -29,8 +29,8 @@ class ProviderArgs:
29
29
  user_ocid: Optional[pulumi.Input[str]] = None):
30
30
  """
31
31
  The set of arguments for constructing a Provider resource.
32
- :param pulumi.Input[str] auth: (Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken' and 'InstancePrincipal' and
33
- 'ResourcePrincipal'. By default, 'ApiKey' will be used.
32
+ :param pulumi.Input[str] auth: (Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken', 'InstancePrincipal', 'ResourcePrincipal' and
33
+ 'OKEWorkloadIdentity'. By default, 'ApiKey' will be used.
34
34
  :param pulumi.Input[str] config_file_profile: (Optional) The profile name to be used from config file, if not set it will be DEFAULT.
35
35
  :param pulumi.Input[bool] disable_auto_retries: (Optional) Disable automatic retries for retriable errors. Automatic retries were introduced to solve some eventual
36
36
  consistency problems but it also introduced performance issues on destroy operations.
@@ -84,8 +84,8 @@ class ProviderArgs:
84
84
  @pulumi.getter
85
85
  def auth(self) -> Optional[pulumi.Input[str]]:
86
86
  """
87
- (Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken' and 'InstancePrincipal' and
88
- 'ResourcePrincipal'. By default, 'ApiKey' will be used.
87
+ (Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken', 'InstancePrincipal', 'ResourcePrincipal' and
88
+ 'OKEWorkloadIdentity'. By default, 'ApiKey' will be used.
89
89
  """
90
90
  return pulumi.get(self, "auth")
91
91
 
@@ -274,8 +274,8 @@ class Provider(pulumi.ProviderResource):
274
274
 
275
275
  :param str resource_name: The name of the resource.
276
276
  :param pulumi.ResourceOptions opts: Options for the resource.
277
- :param pulumi.Input[str] auth: (Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken' and 'InstancePrincipal' and
278
- 'ResourcePrincipal'. By default, 'ApiKey' will be used.
277
+ :param pulumi.Input[str] auth: (Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken', 'InstancePrincipal', 'ResourcePrincipal' and
278
+ 'OKEWorkloadIdentity'. By default, 'ApiKey' will be used.
279
279
  :param pulumi.Input[str] config_file_profile: (Optional) The profile name to be used from config file, if not set it will be DEFAULT.
280
280
  :param pulumi.Input[bool] disable_auto_retries: (Optional) Disable automatic retries for retriable errors. Automatic retries were introduced to solve some eventual
281
281
  consistency problems but it also introduced performance issues on destroy operations.
@@ -372,8 +372,8 @@ class Provider(pulumi.ProviderResource):
372
372
  @pulumi.getter
373
373
  def auth(self) -> pulumi.Output[Optional[str]]:
374
374
  """
375
- (Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken' and 'InstancePrincipal' and
376
- 'ResourcePrincipal'. By default, 'ApiKey' will be used.
375
+ (Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken', 'InstancePrincipal', 'ResourcePrincipal' and
376
+ 'OKEWorkloadIdentity'. By default, 'ApiKey' will be used.
377
377
  """
378
378
  return pulumi.get(self, "auth")
379
379