pulumi-oci 2.9.0a1724479778__py3-none-any.whl → 2.10.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 (123) hide show
  1. pulumi_oci/__init__.py +86 -38
  2. pulumi_oci/announcementsservice/__init__.py +1 -0
  3. pulumi_oci/announcementsservice/_inputs.py +46 -6
  4. pulumi_oci/announcementsservice/announcement_subscription.py +14 -14
  5. pulumi_oci/announcementsservice/get_announcement_subscription.py +2 -2
  6. pulumi_oci/announcementsservice/get_services.py +173 -0
  7. pulumi_oci/announcementsservice/outputs.py +195 -18
  8. pulumi_oci/bigdataservice/_inputs.py +1 -49
  9. pulumi_oci/bigdataservice/bds_instance.py +0 -128
  10. pulumi_oci/bigdataservice/get_bds_instance.py +1 -31
  11. pulumi_oci/bigdataservice/outputs.py +3 -132
  12. pulumi_oci/database/_inputs.py +64 -24
  13. pulumi_oci/database/autonomous_database.py +28 -0
  14. pulumi_oci/database/data_guard_association.py +49 -0
  15. pulumi_oci/database/get_autonomous_database.py +14 -1
  16. pulumi_oci/database/get_autonomous_databases.py +32 -95
  17. pulumi_oci/database/get_data_guard_association.py +11 -1
  18. pulumi_oci/database/outputs.py +195 -66
  19. pulumi_oci/database/vm_cluster_network.py +7 -20
  20. pulumi_oci/databasemanagement/__init__.py +1 -0
  21. pulumi_oci/databasemanagement/_inputs.py +873 -10
  22. pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py +275 -0
  23. pulumi_oci/databasemanagement/database_dbm_features_management.py +37 -3
  24. pulumi_oci/databasemanagement/db_management_private_endpoint.py +49 -0
  25. pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
  26. pulumi_oci/databasemanagement/get_db_management_private_endpoints.py +21 -1
  27. pulumi_oci/databasemanagement/get_managed_database.py +47 -3
  28. pulumi_oci/databasemanagement/managed_database.py +56 -0
  29. pulumi_oci/databasemanagement/outputs.py +3331 -1397
  30. pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +35 -1
  31. pulumi_oci/datasafe/__init__.py +6 -0
  32. pulumi_oci/datasafe/_inputs.py +18 -0
  33. pulumi_oci/datasafe/database_security_config_management.py +244 -2
  34. pulumi_oci/datasafe/masking_policy_health_report_management.py +453 -0
  35. pulumi_oci/datasafe/masking_report_management.py +693 -0
  36. pulumi_oci/datasafe/outputs.py +18 -0
  37. pulumi_oci/datasafe/security_policy_deployment_management.py +180 -2
  38. pulumi_oci/datasafe/security_policy_management.py +172 -2
  39. pulumi_oci/datasafe/set_security_assessment_baseline_management.py +304 -0
  40. pulumi_oci/datasafe/set_user_assessment_baseline_management.py +304 -0
  41. pulumi_oci/datasafe/sql_firewall_policy_management.py +354 -2
  42. pulumi_oci/datasafe/unset_security_assessment_baseline_management.py +264 -0
  43. pulumi_oci/datasafe/unset_user_assessment_baseline_management.py +264 -0
  44. pulumi_oci/delegateaccesscontrol/__init__.py +24 -0
  45. pulumi_oci/delegateaccesscontrol/_inputs.py +306 -0
  46. pulumi_oci/delegateaccesscontrol/delegation_control.py +1082 -0
  47. pulumi_oci/{globallydistributeddatabase/private_endpoint.py → delegateaccesscontrol/delegation_subscription.py} +162 -267
  48. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request.py +535 -0
  49. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_audit_log_report.py +174 -0
  50. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_histories.py +133 -0
  51. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_requests.py +250 -0
  52. pulumi_oci/delegateaccesscontrol/get_delegation_control.py +378 -0
  53. pulumi_oci/delegateaccesscontrol/get_delegation_control_resources.py +133 -0
  54. pulumi_oci/delegateaccesscontrol/get_delegation_controls.py +213 -0
  55. pulumi_oci/{globallydistributeddatabase/get_private_endpoint.py → delegateaccesscontrol/get_delegation_subscription.py} +66 -105
  56. pulumi_oci/delegateaccesscontrol/get_delegation_subscriptions.py +176 -0
  57. pulumi_oci/delegateaccesscontrol/get_service_provider.py +274 -0
  58. pulumi_oci/delegateaccesscontrol/get_service_provider_action.py +210 -0
  59. pulumi_oci/delegateaccesscontrol/get_service_provider_actions.py +210 -0
  60. pulumi_oci/delegateaccesscontrol/get_service_providers.py +213 -0
  61. pulumi_oci/delegateaccesscontrol/outputs.py +1679 -0
  62. pulumi_oci/{fleetsoftwareupdate → desktops}/__init__.py +7 -6
  63. pulumi_oci/desktops/_inputs.py +483 -0
  64. pulumi_oci/desktops/desktop_pool.py +1348 -0
  65. pulumi_oci/desktops/get_desktop.py +223 -0
  66. pulumi_oci/desktops/get_desktop_pool.py +418 -0
  67. pulumi_oci/desktops/get_desktop_pool_desktops.py +208 -0
  68. pulumi_oci/desktops/get_desktop_pool_volumes.py +214 -0
  69. pulumi_oci/desktops/get_desktop_pools.py +203 -0
  70. pulumi_oci/desktops/get_desktops.py +214 -0
  71. pulumi_oci/desktops/outputs.py +1738 -0
  72. pulumi_oci/filestorage/mount_target.py +143 -38
  73. pulumi_oci/filestorage/outputs.py +44 -0
  74. pulumi_oci/identity/domains_group.py +34 -0
  75. pulumi_oci/identity/domains_user.py +34 -0
  76. pulumi_oci/identity/get_domains_group.py +11 -1
  77. pulumi_oci/identity/get_domains_user.py +11 -1
  78. pulumi_oci/identity/outputs.py +14 -0
  79. pulumi_oci/kms/_inputs.py +10 -10
  80. pulumi_oci/kms/get_vault.py +14 -1
  81. pulumi_oci/kms/outputs.py +41 -30
  82. pulumi_oci/kms/vault.py +28 -0
  83. pulumi_oci/loadbalancer/load_balancer.py +224 -0
  84. pulumi_oci/loadbalancer/outputs.py +22 -0
  85. pulumi_oci/managementagent/_inputs.py +44 -0
  86. pulumi_oci/managementagent/management_agent.py +45 -21
  87. pulumi_oci/managementagent/outputs.py +44 -0
  88. pulumi_oci/mysql/_inputs.py +23 -0
  89. pulumi_oci/mysql/get_mysql_db_system.py +15 -2
  90. pulumi_oci/mysql/mysql_db_system.py +53 -0
  91. pulumi_oci/mysql/outputs.py +74 -6
  92. pulumi_oci/ocvp/get_cluster.py +2 -2
  93. pulumi_oci/ocvp/get_exsi_hosts.py +2 -2
  94. pulumi_oci/ocvp/get_supported_vmware_software_versions.py +22 -5
  95. pulumi_oci/ocvp/outputs.py +2 -2
  96. pulumi_oci/pulumi-plugin.json +1 -1
  97. pulumi_oci/recoverymod/_inputs.py +0 -8
  98. pulumi_oci/recoverymod/get_protected_database.py +14 -1
  99. pulumi_oci/recoverymod/get_protection_policy.py +14 -1
  100. pulumi_oci/recoverymod/outputs.py +22 -8
  101. pulumi_oci/recoverymod/protected_database.py +80 -3
  102. pulumi_oci/recoverymod/protection_policy.py +49 -0
  103. pulumi_oci/waf/_inputs.py +29 -16
  104. pulumi_oci/waf/outputs.py +33 -10
  105. {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/METADATA +1 -1
  106. {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/RECORD +108 -90
  107. {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/WHEEL +1 -1
  108. pulumi_oci/fleetsoftwareupdate/_inputs.py +0 -553
  109. pulumi_oci/fleetsoftwareupdate/fsu_collection.py +0 -514
  110. pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +0 -812
  111. pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +0 -225
  112. pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +0 -141
  113. pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +0 -325
  114. pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +0 -167
  115. pulumi_oci/fleetsoftwareupdate/outputs.py +0 -1481
  116. pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
  117. pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1003
  118. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -176
  119. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -610
  120. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -176
  121. pulumi_oci/globallydistributeddatabase/outputs.py +0 -2058
  122. pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1816
  123. {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,693 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from .. import _utilities
11
+
12
+ __all__ = ['MaskingReportManagementArgs', 'MaskingReportManagement']
13
+
14
+ @pulumi.input_type
15
+ class MaskingReportManagementArgs:
16
+ def __init__(__self__, *,
17
+ compartment_id: Optional[pulumi.Input[str]] = None,
18
+ masking_policy_id: Optional[pulumi.Input[str]] = None,
19
+ target_id: Optional[pulumi.Input[str]] = None):
20
+ """
21
+ The set of arguments for constructing a MaskingReportManagement resource.
22
+ :param pulumi.Input[str] compartment_id: The OCID of the compartment that contains the masking report.
23
+ :param pulumi.Input[str] masking_policy_id: The OCID of the masking policy.
24
+ :param pulumi.Input[str] target_id: The OCID of the target database masked.
25
+ """
26
+ if compartment_id is not None:
27
+ pulumi.set(__self__, "compartment_id", compartment_id)
28
+ if masking_policy_id is not None:
29
+ pulumi.set(__self__, "masking_policy_id", masking_policy_id)
30
+ if target_id is not None:
31
+ pulumi.set(__self__, "target_id", target_id)
32
+
33
+ @property
34
+ @pulumi.getter(name="compartmentId")
35
+ def compartment_id(self) -> Optional[pulumi.Input[str]]:
36
+ """
37
+ The OCID of the compartment that contains the masking report.
38
+ """
39
+ return pulumi.get(self, "compartment_id")
40
+
41
+ @compartment_id.setter
42
+ def compartment_id(self, value: Optional[pulumi.Input[str]]):
43
+ pulumi.set(self, "compartment_id", value)
44
+
45
+ @property
46
+ @pulumi.getter(name="maskingPolicyId")
47
+ def masking_policy_id(self) -> Optional[pulumi.Input[str]]:
48
+ """
49
+ The OCID of the masking policy.
50
+ """
51
+ return pulumi.get(self, "masking_policy_id")
52
+
53
+ @masking_policy_id.setter
54
+ def masking_policy_id(self, value: Optional[pulumi.Input[str]]):
55
+ pulumi.set(self, "masking_policy_id", value)
56
+
57
+ @property
58
+ @pulumi.getter(name="targetId")
59
+ def target_id(self) -> Optional[pulumi.Input[str]]:
60
+ """
61
+ The OCID of the target database masked.
62
+ """
63
+ return pulumi.get(self, "target_id")
64
+
65
+ @target_id.setter
66
+ def target_id(self, value: Optional[pulumi.Input[str]]):
67
+ pulumi.set(self, "target_id", value)
68
+
69
+
70
+ @pulumi.input_type
71
+ class _MaskingReportManagementState:
72
+ def __init__(__self__, *,
73
+ compartment_id: Optional[pulumi.Input[str]] = None,
74
+ is_drop_temp_tables_enabled: Optional[pulumi.Input[bool]] = None,
75
+ is_redo_logging_enabled: Optional[pulumi.Input[bool]] = None,
76
+ is_refresh_stats_enabled: Optional[pulumi.Input[bool]] = None,
77
+ masking_policy_id: Optional[pulumi.Input[str]] = None,
78
+ masking_work_request_id: Optional[pulumi.Input[str]] = None,
79
+ parallel_degree: Optional[pulumi.Input[str]] = None,
80
+ recompile: Optional[pulumi.Input[str]] = None,
81
+ state: Optional[pulumi.Input[str]] = None,
82
+ target_id: Optional[pulumi.Input[str]] = None,
83
+ time_created: Optional[pulumi.Input[str]] = None,
84
+ time_masking_finished: Optional[pulumi.Input[str]] = None,
85
+ time_masking_started: Optional[pulumi.Input[str]] = None,
86
+ total_masked_columns: Optional[pulumi.Input[str]] = None,
87
+ total_masked_objects: Optional[pulumi.Input[str]] = None,
88
+ total_masked_schemas: Optional[pulumi.Input[str]] = None,
89
+ total_masked_sensitive_types: Optional[pulumi.Input[str]] = None,
90
+ total_masked_values: Optional[pulumi.Input[str]] = None):
91
+ """
92
+ Input properties used for looking up and filtering MaskingReportManagement resources.
93
+ :param pulumi.Input[str] compartment_id: The OCID of the compartment that contains the masking report.
94
+ :param pulumi.Input[bool] is_drop_temp_tables_enabled: Indicates if the temporary tables created during the masking operation were dropped after masking.
95
+ :param pulumi.Input[bool] is_redo_logging_enabled: Indicates if redo logging was enabled during the masking operation.
96
+ :param pulumi.Input[bool] is_refresh_stats_enabled: Indicates if statistics gathering was enabled during the masking operation.
97
+ :param pulumi.Input[str] masking_policy_id: The OCID of the masking policy.
98
+ :param pulumi.Input[str] masking_work_request_id: The OCID of the masking work request that resulted in this masking report.
99
+ :param pulumi.Input[str] parallel_degree: Indicates if parallel execution was enabled during the masking operation.
100
+ :param pulumi.Input[str] recompile: Indicates how invalid objects were recompiled post the masking operation.
101
+ :param pulumi.Input[str] state: The current state of the masking report.
102
+ :param pulumi.Input[str] target_id: The OCID of the target database masked.
103
+ :param pulumi.Input[str] time_created: The date and time the masking report was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
104
+ :param pulumi.Input[str] time_masking_finished: The date and time data masking finished, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339)
105
+ :param pulumi.Input[str] time_masking_started: The date and time data masking started, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339)
106
+ :param pulumi.Input[str] total_masked_columns: The total number of masked columns.
107
+ :param pulumi.Input[str] total_masked_objects: The total number of unique objects (tables and editioning views) that contain the masked columns.
108
+ :param pulumi.Input[str] total_masked_schemas: The total number of unique schemas that contain the masked columns.
109
+ :param pulumi.Input[str] total_masked_sensitive_types: The total number of unique sensitive types associated with the masked columns.
110
+ :param pulumi.Input[str] total_masked_values: The total number of masked values.
111
+ """
112
+ if compartment_id is not None:
113
+ pulumi.set(__self__, "compartment_id", compartment_id)
114
+ if is_drop_temp_tables_enabled is not None:
115
+ pulumi.set(__self__, "is_drop_temp_tables_enabled", is_drop_temp_tables_enabled)
116
+ if is_redo_logging_enabled is not None:
117
+ pulumi.set(__self__, "is_redo_logging_enabled", is_redo_logging_enabled)
118
+ if is_refresh_stats_enabled is not None:
119
+ pulumi.set(__self__, "is_refresh_stats_enabled", is_refresh_stats_enabled)
120
+ if masking_policy_id is not None:
121
+ pulumi.set(__self__, "masking_policy_id", masking_policy_id)
122
+ if masking_work_request_id is not None:
123
+ pulumi.set(__self__, "masking_work_request_id", masking_work_request_id)
124
+ if parallel_degree is not None:
125
+ pulumi.set(__self__, "parallel_degree", parallel_degree)
126
+ if recompile is not None:
127
+ pulumi.set(__self__, "recompile", recompile)
128
+ if state is not None:
129
+ pulumi.set(__self__, "state", state)
130
+ if target_id is not None:
131
+ pulumi.set(__self__, "target_id", target_id)
132
+ if time_created is not None:
133
+ pulumi.set(__self__, "time_created", time_created)
134
+ if time_masking_finished is not None:
135
+ pulumi.set(__self__, "time_masking_finished", time_masking_finished)
136
+ if time_masking_started is not None:
137
+ pulumi.set(__self__, "time_masking_started", time_masking_started)
138
+ if total_masked_columns is not None:
139
+ pulumi.set(__self__, "total_masked_columns", total_masked_columns)
140
+ if total_masked_objects is not None:
141
+ pulumi.set(__self__, "total_masked_objects", total_masked_objects)
142
+ if total_masked_schemas is not None:
143
+ pulumi.set(__self__, "total_masked_schemas", total_masked_schemas)
144
+ if total_masked_sensitive_types is not None:
145
+ pulumi.set(__self__, "total_masked_sensitive_types", total_masked_sensitive_types)
146
+ if total_masked_values is not None:
147
+ pulumi.set(__self__, "total_masked_values", total_masked_values)
148
+
149
+ @property
150
+ @pulumi.getter(name="compartmentId")
151
+ def compartment_id(self) -> Optional[pulumi.Input[str]]:
152
+ """
153
+ The OCID of the compartment that contains the masking report.
154
+ """
155
+ return pulumi.get(self, "compartment_id")
156
+
157
+ @compartment_id.setter
158
+ def compartment_id(self, value: Optional[pulumi.Input[str]]):
159
+ pulumi.set(self, "compartment_id", value)
160
+
161
+ @property
162
+ @pulumi.getter(name="isDropTempTablesEnabled")
163
+ def is_drop_temp_tables_enabled(self) -> Optional[pulumi.Input[bool]]:
164
+ """
165
+ Indicates if the temporary tables created during the masking operation were dropped after masking.
166
+ """
167
+ return pulumi.get(self, "is_drop_temp_tables_enabled")
168
+
169
+ @is_drop_temp_tables_enabled.setter
170
+ def is_drop_temp_tables_enabled(self, value: Optional[pulumi.Input[bool]]):
171
+ pulumi.set(self, "is_drop_temp_tables_enabled", value)
172
+
173
+ @property
174
+ @pulumi.getter(name="isRedoLoggingEnabled")
175
+ def is_redo_logging_enabled(self) -> Optional[pulumi.Input[bool]]:
176
+ """
177
+ Indicates if redo logging was enabled during the masking operation.
178
+ """
179
+ return pulumi.get(self, "is_redo_logging_enabled")
180
+
181
+ @is_redo_logging_enabled.setter
182
+ def is_redo_logging_enabled(self, value: Optional[pulumi.Input[bool]]):
183
+ pulumi.set(self, "is_redo_logging_enabled", value)
184
+
185
+ @property
186
+ @pulumi.getter(name="isRefreshStatsEnabled")
187
+ def is_refresh_stats_enabled(self) -> Optional[pulumi.Input[bool]]:
188
+ """
189
+ Indicates if statistics gathering was enabled during the masking operation.
190
+ """
191
+ return pulumi.get(self, "is_refresh_stats_enabled")
192
+
193
+ @is_refresh_stats_enabled.setter
194
+ def is_refresh_stats_enabled(self, value: Optional[pulumi.Input[bool]]):
195
+ pulumi.set(self, "is_refresh_stats_enabled", value)
196
+
197
+ @property
198
+ @pulumi.getter(name="maskingPolicyId")
199
+ def masking_policy_id(self) -> Optional[pulumi.Input[str]]:
200
+ """
201
+ The OCID of the masking policy.
202
+ """
203
+ return pulumi.get(self, "masking_policy_id")
204
+
205
+ @masking_policy_id.setter
206
+ def masking_policy_id(self, value: Optional[pulumi.Input[str]]):
207
+ pulumi.set(self, "masking_policy_id", value)
208
+
209
+ @property
210
+ @pulumi.getter(name="maskingWorkRequestId")
211
+ def masking_work_request_id(self) -> Optional[pulumi.Input[str]]:
212
+ """
213
+ The OCID of the masking work request that resulted in this masking report.
214
+ """
215
+ return pulumi.get(self, "masking_work_request_id")
216
+
217
+ @masking_work_request_id.setter
218
+ def masking_work_request_id(self, value: Optional[pulumi.Input[str]]):
219
+ pulumi.set(self, "masking_work_request_id", value)
220
+
221
+ @property
222
+ @pulumi.getter(name="parallelDegree")
223
+ def parallel_degree(self) -> Optional[pulumi.Input[str]]:
224
+ """
225
+ Indicates if parallel execution was enabled during the masking operation.
226
+ """
227
+ return pulumi.get(self, "parallel_degree")
228
+
229
+ @parallel_degree.setter
230
+ def parallel_degree(self, value: Optional[pulumi.Input[str]]):
231
+ pulumi.set(self, "parallel_degree", value)
232
+
233
+ @property
234
+ @pulumi.getter
235
+ def recompile(self) -> Optional[pulumi.Input[str]]:
236
+ """
237
+ Indicates how invalid objects were recompiled post the masking operation.
238
+ """
239
+ return pulumi.get(self, "recompile")
240
+
241
+ @recompile.setter
242
+ def recompile(self, value: Optional[pulumi.Input[str]]):
243
+ pulumi.set(self, "recompile", value)
244
+
245
+ @property
246
+ @pulumi.getter
247
+ def state(self) -> Optional[pulumi.Input[str]]:
248
+ """
249
+ The current state of the masking report.
250
+ """
251
+ return pulumi.get(self, "state")
252
+
253
+ @state.setter
254
+ def state(self, value: Optional[pulumi.Input[str]]):
255
+ pulumi.set(self, "state", value)
256
+
257
+ @property
258
+ @pulumi.getter(name="targetId")
259
+ def target_id(self) -> Optional[pulumi.Input[str]]:
260
+ """
261
+ The OCID of the target database masked.
262
+ """
263
+ return pulumi.get(self, "target_id")
264
+
265
+ @target_id.setter
266
+ def target_id(self, value: Optional[pulumi.Input[str]]):
267
+ pulumi.set(self, "target_id", value)
268
+
269
+ @property
270
+ @pulumi.getter(name="timeCreated")
271
+ def time_created(self) -> Optional[pulumi.Input[str]]:
272
+ """
273
+ The date and time the masking report was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
274
+ """
275
+ return pulumi.get(self, "time_created")
276
+
277
+ @time_created.setter
278
+ def time_created(self, value: Optional[pulumi.Input[str]]):
279
+ pulumi.set(self, "time_created", value)
280
+
281
+ @property
282
+ @pulumi.getter(name="timeMaskingFinished")
283
+ def time_masking_finished(self) -> Optional[pulumi.Input[str]]:
284
+ """
285
+ The date and time data masking finished, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339)
286
+ """
287
+ return pulumi.get(self, "time_masking_finished")
288
+
289
+ @time_masking_finished.setter
290
+ def time_masking_finished(self, value: Optional[pulumi.Input[str]]):
291
+ pulumi.set(self, "time_masking_finished", value)
292
+
293
+ @property
294
+ @pulumi.getter(name="timeMaskingStarted")
295
+ def time_masking_started(self) -> Optional[pulumi.Input[str]]:
296
+ """
297
+ The date and time data masking started, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339)
298
+ """
299
+ return pulumi.get(self, "time_masking_started")
300
+
301
+ @time_masking_started.setter
302
+ def time_masking_started(self, value: Optional[pulumi.Input[str]]):
303
+ pulumi.set(self, "time_masking_started", value)
304
+
305
+ @property
306
+ @pulumi.getter(name="totalMaskedColumns")
307
+ def total_masked_columns(self) -> Optional[pulumi.Input[str]]:
308
+ """
309
+ The total number of masked columns.
310
+ """
311
+ return pulumi.get(self, "total_masked_columns")
312
+
313
+ @total_masked_columns.setter
314
+ def total_masked_columns(self, value: Optional[pulumi.Input[str]]):
315
+ pulumi.set(self, "total_masked_columns", value)
316
+
317
+ @property
318
+ @pulumi.getter(name="totalMaskedObjects")
319
+ def total_masked_objects(self) -> Optional[pulumi.Input[str]]:
320
+ """
321
+ The total number of unique objects (tables and editioning views) that contain the masked columns.
322
+ """
323
+ return pulumi.get(self, "total_masked_objects")
324
+
325
+ @total_masked_objects.setter
326
+ def total_masked_objects(self, value: Optional[pulumi.Input[str]]):
327
+ pulumi.set(self, "total_masked_objects", value)
328
+
329
+ @property
330
+ @pulumi.getter(name="totalMaskedSchemas")
331
+ def total_masked_schemas(self) -> Optional[pulumi.Input[str]]:
332
+ """
333
+ The total number of unique schemas that contain the masked columns.
334
+ """
335
+ return pulumi.get(self, "total_masked_schemas")
336
+
337
+ @total_masked_schemas.setter
338
+ def total_masked_schemas(self, value: Optional[pulumi.Input[str]]):
339
+ pulumi.set(self, "total_masked_schemas", value)
340
+
341
+ @property
342
+ @pulumi.getter(name="totalMaskedSensitiveTypes")
343
+ def total_masked_sensitive_types(self) -> Optional[pulumi.Input[str]]:
344
+ """
345
+ The total number of unique sensitive types associated with the masked columns.
346
+ """
347
+ return pulumi.get(self, "total_masked_sensitive_types")
348
+
349
+ @total_masked_sensitive_types.setter
350
+ def total_masked_sensitive_types(self, value: Optional[pulumi.Input[str]]):
351
+ pulumi.set(self, "total_masked_sensitive_types", value)
352
+
353
+ @property
354
+ @pulumi.getter(name="totalMaskedValues")
355
+ def total_masked_values(self) -> Optional[pulumi.Input[str]]:
356
+ """
357
+ The total number of masked values.
358
+ """
359
+ return pulumi.get(self, "total_masked_values")
360
+
361
+ @total_masked_values.setter
362
+ def total_masked_values(self, value: Optional[pulumi.Input[str]]):
363
+ pulumi.set(self, "total_masked_values", value)
364
+
365
+
366
+ class MaskingReportManagement(pulumi.CustomResource):
367
+ @overload
368
+ def __init__(__self__,
369
+ resource_name: str,
370
+ opts: Optional[pulumi.ResourceOptions] = None,
371
+ compartment_id: Optional[pulumi.Input[str]] = None,
372
+ masking_policy_id: Optional[pulumi.Input[str]] = None,
373
+ target_id: Optional[pulumi.Input[str]] = None,
374
+ __props__=None):
375
+ """
376
+ This resource provides Masking Report Management resource in Oracle Cloud Infrastructure Data Safe service.
377
+
378
+ Gets the details of the specified masking report.
379
+
380
+ ## Example Usage
381
+
382
+ ```python
383
+ import pulumi
384
+ import pulumi_oci as oci
385
+
386
+ test_masking_report_management = oci.data_safe.MaskingReportManagement("test_masking_report_management",
387
+ target_id=test_target_database["id"],
388
+ masking_policy_id=test_masking_policy["id"])
389
+ ```
390
+
391
+ ## Import
392
+
393
+ Import is not supported for this resource.
394
+
395
+ :param str resource_name: The name of the resource.
396
+ :param pulumi.ResourceOptions opts: Options for the resource.
397
+ :param pulumi.Input[str] compartment_id: The OCID of the compartment that contains the masking report.
398
+ :param pulumi.Input[str] masking_policy_id: The OCID of the masking policy.
399
+ :param pulumi.Input[str] target_id: The OCID of the target database masked.
400
+ """
401
+ ...
402
+ @overload
403
+ def __init__(__self__,
404
+ resource_name: str,
405
+ args: Optional[MaskingReportManagementArgs] = None,
406
+ opts: Optional[pulumi.ResourceOptions] = None):
407
+ """
408
+ This resource provides Masking Report Management resource in Oracle Cloud Infrastructure Data Safe service.
409
+
410
+ Gets the details of the specified masking report.
411
+
412
+ ## Example Usage
413
+
414
+ ```python
415
+ import pulumi
416
+ import pulumi_oci as oci
417
+
418
+ test_masking_report_management = oci.data_safe.MaskingReportManagement("test_masking_report_management",
419
+ target_id=test_target_database["id"],
420
+ masking_policy_id=test_masking_policy["id"])
421
+ ```
422
+
423
+ ## Import
424
+
425
+ Import is not supported for this resource.
426
+
427
+ :param str resource_name: The name of the resource.
428
+ :param MaskingReportManagementArgs args: The arguments to use to populate this resource's properties.
429
+ :param pulumi.ResourceOptions opts: Options for the resource.
430
+ """
431
+ ...
432
+ def __init__(__self__, resource_name: str, *args, **kwargs):
433
+ resource_args, opts = _utilities.get_resource_args_opts(MaskingReportManagementArgs, pulumi.ResourceOptions, *args, **kwargs)
434
+ if resource_args is not None:
435
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
436
+ else:
437
+ __self__._internal_init(resource_name, *args, **kwargs)
438
+
439
+ def _internal_init(__self__,
440
+ resource_name: str,
441
+ opts: Optional[pulumi.ResourceOptions] = None,
442
+ compartment_id: Optional[pulumi.Input[str]] = None,
443
+ masking_policy_id: Optional[pulumi.Input[str]] = None,
444
+ target_id: Optional[pulumi.Input[str]] = None,
445
+ __props__=None):
446
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
447
+ if not isinstance(opts, pulumi.ResourceOptions):
448
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
449
+ if opts.id is None:
450
+ if __props__ is not None:
451
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
452
+ __props__ = MaskingReportManagementArgs.__new__(MaskingReportManagementArgs)
453
+
454
+ __props__.__dict__["compartment_id"] = compartment_id
455
+ __props__.__dict__["masking_policy_id"] = masking_policy_id
456
+ __props__.__dict__["target_id"] = target_id
457
+ __props__.__dict__["is_drop_temp_tables_enabled"] = None
458
+ __props__.__dict__["is_redo_logging_enabled"] = None
459
+ __props__.__dict__["is_refresh_stats_enabled"] = None
460
+ __props__.__dict__["masking_work_request_id"] = None
461
+ __props__.__dict__["parallel_degree"] = None
462
+ __props__.__dict__["recompile"] = None
463
+ __props__.__dict__["state"] = None
464
+ __props__.__dict__["time_created"] = None
465
+ __props__.__dict__["time_masking_finished"] = None
466
+ __props__.__dict__["time_masking_started"] = None
467
+ __props__.__dict__["total_masked_columns"] = None
468
+ __props__.__dict__["total_masked_objects"] = None
469
+ __props__.__dict__["total_masked_schemas"] = None
470
+ __props__.__dict__["total_masked_sensitive_types"] = None
471
+ __props__.__dict__["total_masked_values"] = None
472
+ super(MaskingReportManagement, __self__).__init__(
473
+ 'oci:DataSafe/maskingReportManagement:MaskingReportManagement',
474
+ resource_name,
475
+ __props__,
476
+ opts)
477
+
478
+ @staticmethod
479
+ def get(resource_name: str,
480
+ id: pulumi.Input[str],
481
+ opts: Optional[pulumi.ResourceOptions] = None,
482
+ compartment_id: Optional[pulumi.Input[str]] = None,
483
+ is_drop_temp_tables_enabled: Optional[pulumi.Input[bool]] = None,
484
+ is_redo_logging_enabled: Optional[pulumi.Input[bool]] = None,
485
+ is_refresh_stats_enabled: Optional[pulumi.Input[bool]] = None,
486
+ masking_policy_id: Optional[pulumi.Input[str]] = None,
487
+ masking_work_request_id: Optional[pulumi.Input[str]] = None,
488
+ parallel_degree: Optional[pulumi.Input[str]] = None,
489
+ recompile: Optional[pulumi.Input[str]] = None,
490
+ state: Optional[pulumi.Input[str]] = None,
491
+ target_id: Optional[pulumi.Input[str]] = None,
492
+ time_created: Optional[pulumi.Input[str]] = None,
493
+ time_masking_finished: Optional[pulumi.Input[str]] = None,
494
+ time_masking_started: Optional[pulumi.Input[str]] = None,
495
+ total_masked_columns: Optional[pulumi.Input[str]] = None,
496
+ total_masked_objects: Optional[pulumi.Input[str]] = None,
497
+ total_masked_schemas: Optional[pulumi.Input[str]] = None,
498
+ total_masked_sensitive_types: Optional[pulumi.Input[str]] = None,
499
+ total_masked_values: Optional[pulumi.Input[str]] = None) -> 'MaskingReportManagement':
500
+ """
501
+ Get an existing MaskingReportManagement resource's state with the given name, id, and optional extra
502
+ properties used to qualify the lookup.
503
+
504
+ :param str resource_name: The unique name of the resulting resource.
505
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
506
+ :param pulumi.ResourceOptions opts: Options for the resource.
507
+ :param pulumi.Input[str] compartment_id: The OCID of the compartment that contains the masking report.
508
+ :param pulumi.Input[bool] is_drop_temp_tables_enabled: Indicates if the temporary tables created during the masking operation were dropped after masking.
509
+ :param pulumi.Input[bool] is_redo_logging_enabled: Indicates if redo logging was enabled during the masking operation.
510
+ :param pulumi.Input[bool] is_refresh_stats_enabled: Indicates if statistics gathering was enabled during the masking operation.
511
+ :param pulumi.Input[str] masking_policy_id: The OCID of the masking policy.
512
+ :param pulumi.Input[str] masking_work_request_id: The OCID of the masking work request that resulted in this masking report.
513
+ :param pulumi.Input[str] parallel_degree: Indicates if parallel execution was enabled during the masking operation.
514
+ :param pulumi.Input[str] recompile: Indicates how invalid objects were recompiled post the masking operation.
515
+ :param pulumi.Input[str] state: The current state of the masking report.
516
+ :param pulumi.Input[str] target_id: The OCID of the target database masked.
517
+ :param pulumi.Input[str] time_created: The date and time the masking report was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
518
+ :param pulumi.Input[str] time_masking_finished: The date and time data masking finished, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339)
519
+ :param pulumi.Input[str] time_masking_started: The date and time data masking started, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339)
520
+ :param pulumi.Input[str] total_masked_columns: The total number of masked columns.
521
+ :param pulumi.Input[str] total_masked_objects: The total number of unique objects (tables and editioning views) that contain the masked columns.
522
+ :param pulumi.Input[str] total_masked_schemas: The total number of unique schemas that contain the masked columns.
523
+ :param pulumi.Input[str] total_masked_sensitive_types: The total number of unique sensitive types associated with the masked columns.
524
+ :param pulumi.Input[str] total_masked_values: The total number of masked values.
525
+ """
526
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
527
+
528
+ __props__ = _MaskingReportManagementState.__new__(_MaskingReportManagementState)
529
+
530
+ __props__.__dict__["compartment_id"] = compartment_id
531
+ __props__.__dict__["is_drop_temp_tables_enabled"] = is_drop_temp_tables_enabled
532
+ __props__.__dict__["is_redo_logging_enabled"] = is_redo_logging_enabled
533
+ __props__.__dict__["is_refresh_stats_enabled"] = is_refresh_stats_enabled
534
+ __props__.__dict__["masking_policy_id"] = masking_policy_id
535
+ __props__.__dict__["masking_work_request_id"] = masking_work_request_id
536
+ __props__.__dict__["parallel_degree"] = parallel_degree
537
+ __props__.__dict__["recompile"] = recompile
538
+ __props__.__dict__["state"] = state
539
+ __props__.__dict__["target_id"] = target_id
540
+ __props__.__dict__["time_created"] = time_created
541
+ __props__.__dict__["time_masking_finished"] = time_masking_finished
542
+ __props__.__dict__["time_masking_started"] = time_masking_started
543
+ __props__.__dict__["total_masked_columns"] = total_masked_columns
544
+ __props__.__dict__["total_masked_objects"] = total_masked_objects
545
+ __props__.__dict__["total_masked_schemas"] = total_masked_schemas
546
+ __props__.__dict__["total_masked_sensitive_types"] = total_masked_sensitive_types
547
+ __props__.__dict__["total_masked_values"] = total_masked_values
548
+ return MaskingReportManagement(resource_name, opts=opts, __props__=__props__)
549
+
550
+ @property
551
+ @pulumi.getter(name="compartmentId")
552
+ def compartment_id(self) -> pulumi.Output[str]:
553
+ """
554
+ The OCID of the compartment that contains the masking report.
555
+ """
556
+ return pulumi.get(self, "compartment_id")
557
+
558
+ @property
559
+ @pulumi.getter(name="isDropTempTablesEnabled")
560
+ def is_drop_temp_tables_enabled(self) -> pulumi.Output[bool]:
561
+ """
562
+ Indicates if the temporary tables created during the masking operation were dropped after masking.
563
+ """
564
+ return pulumi.get(self, "is_drop_temp_tables_enabled")
565
+
566
+ @property
567
+ @pulumi.getter(name="isRedoLoggingEnabled")
568
+ def is_redo_logging_enabled(self) -> pulumi.Output[bool]:
569
+ """
570
+ Indicates if redo logging was enabled during the masking operation.
571
+ """
572
+ return pulumi.get(self, "is_redo_logging_enabled")
573
+
574
+ @property
575
+ @pulumi.getter(name="isRefreshStatsEnabled")
576
+ def is_refresh_stats_enabled(self) -> pulumi.Output[bool]:
577
+ """
578
+ Indicates if statistics gathering was enabled during the masking operation.
579
+ """
580
+ return pulumi.get(self, "is_refresh_stats_enabled")
581
+
582
+ @property
583
+ @pulumi.getter(name="maskingPolicyId")
584
+ def masking_policy_id(self) -> pulumi.Output[str]:
585
+ """
586
+ The OCID of the masking policy.
587
+ """
588
+ return pulumi.get(self, "masking_policy_id")
589
+
590
+ @property
591
+ @pulumi.getter(name="maskingWorkRequestId")
592
+ def masking_work_request_id(self) -> pulumi.Output[str]:
593
+ """
594
+ The OCID of the masking work request that resulted in this masking report.
595
+ """
596
+ return pulumi.get(self, "masking_work_request_id")
597
+
598
+ @property
599
+ @pulumi.getter(name="parallelDegree")
600
+ def parallel_degree(self) -> pulumi.Output[str]:
601
+ """
602
+ Indicates if parallel execution was enabled during the masking operation.
603
+ """
604
+ return pulumi.get(self, "parallel_degree")
605
+
606
+ @property
607
+ @pulumi.getter
608
+ def recompile(self) -> pulumi.Output[str]:
609
+ """
610
+ Indicates how invalid objects were recompiled post the masking operation.
611
+ """
612
+ return pulumi.get(self, "recompile")
613
+
614
+ @property
615
+ @pulumi.getter
616
+ def state(self) -> pulumi.Output[str]:
617
+ """
618
+ The current state of the masking report.
619
+ """
620
+ return pulumi.get(self, "state")
621
+
622
+ @property
623
+ @pulumi.getter(name="targetId")
624
+ def target_id(self) -> pulumi.Output[str]:
625
+ """
626
+ The OCID of the target database masked.
627
+ """
628
+ return pulumi.get(self, "target_id")
629
+
630
+ @property
631
+ @pulumi.getter(name="timeCreated")
632
+ def time_created(self) -> pulumi.Output[str]:
633
+ """
634
+ The date and time the masking report was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
635
+ """
636
+ return pulumi.get(self, "time_created")
637
+
638
+ @property
639
+ @pulumi.getter(name="timeMaskingFinished")
640
+ def time_masking_finished(self) -> pulumi.Output[str]:
641
+ """
642
+ The date and time data masking finished, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339)
643
+ """
644
+ return pulumi.get(self, "time_masking_finished")
645
+
646
+ @property
647
+ @pulumi.getter(name="timeMaskingStarted")
648
+ def time_masking_started(self) -> pulumi.Output[str]:
649
+ """
650
+ The date and time data masking started, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339)
651
+ """
652
+ return pulumi.get(self, "time_masking_started")
653
+
654
+ @property
655
+ @pulumi.getter(name="totalMaskedColumns")
656
+ def total_masked_columns(self) -> pulumi.Output[str]:
657
+ """
658
+ The total number of masked columns.
659
+ """
660
+ return pulumi.get(self, "total_masked_columns")
661
+
662
+ @property
663
+ @pulumi.getter(name="totalMaskedObjects")
664
+ def total_masked_objects(self) -> pulumi.Output[str]:
665
+ """
666
+ The total number of unique objects (tables and editioning views) that contain the masked columns.
667
+ """
668
+ return pulumi.get(self, "total_masked_objects")
669
+
670
+ @property
671
+ @pulumi.getter(name="totalMaskedSchemas")
672
+ def total_masked_schemas(self) -> pulumi.Output[str]:
673
+ """
674
+ The total number of unique schemas that contain the masked columns.
675
+ """
676
+ return pulumi.get(self, "total_masked_schemas")
677
+
678
+ @property
679
+ @pulumi.getter(name="totalMaskedSensitiveTypes")
680
+ def total_masked_sensitive_types(self) -> pulumi.Output[str]:
681
+ """
682
+ The total number of unique sensitive types associated with the masked columns.
683
+ """
684
+ return pulumi.get(self, "total_masked_sensitive_types")
685
+
686
+ @property
687
+ @pulumi.getter(name="totalMaskedValues")
688
+ def total_masked_values(self) -> pulumi.Output[str]:
689
+ """
690
+ The total number of masked values.
691
+ """
692
+ return pulumi.get(self, "total_masked_values")
693
+