pulumi-oci 2.8.0a1724316519__py3-none-any.whl → 2.9.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 (119) 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 +32 -0
  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 +163 -42
  19. pulumi_oci/databasemanagement/__init__.py +1 -0
  20. pulumi_oci/databasemanagement/_inputs.py +873 -10
  21. pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py +275 -0
  22. pulumi_oci/databasemanagement/database_dbm_features_management.py +37 -3
  23. pulumi_oci/databasemanagement/db_management_private_endpoint.py +49 -0
  24. pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
  25. pulumi_oci/databasemanagement/get_db_management_private_endpoints.py +21 -1
  26. pulumi_oci/databasemanagement/get_managed_database.py +47 -3
  27. pulumi_oci/databasemanagement/managed_database.py +56 -0
  28. pulumi_oci/databasemanagement/outputs.py +3331 -1397
  29. pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +35 -1
  30. pulumi_oci/datasafe/__init__.py +6 -0
  31. pulumi_oci/datasafe/_inputs.py +18 -0
  32. pulumi_oci/datasafe/database_security_config_management.py +244 -2
  33. pulumi_oci/datasafe/masking_policy_health_report_management.py +453 -0
  34. pulumi_oci/datasafe/masking_report_management.py +693 -0
  35. pulumi_oci/datasafe/outputs.py +18 -0
  36. pulumi_oci/datasafe/security_policy_deployment_management.py +180 -2
  37. pulumi_oci/datasafe/security_policy_management.py +172 -2
  38. pulumi_oci/datasafe/set_security_assessment_baseline_management.py +304 -0
  39. pulumi_oci/datasafe/set_user_assessment_baseline_management.py +304 -0
  40. pulumi_oci/datasafe/sql_firewall_policy_management.py +354 -2
  41. pulumi_oci/datasafe/unset_security_assessment_baseline_management.py +264 -0
  42. pulumi_oci/datasafe/unset_user_assessment_baseline_management.py +264 -0
  43. pulumi_oci/delegateaccesscontrol/__init__.py +24 -0
  44. pulumi_oci/delegateaccesscontrol/_inputs.py +306 -0
  45. pulumi_oci/delegateaccesscontrol/delegation_control.py +1082 -0
  46. pulumi_oci/{globallydistributeddatabase/private_endpoint.py → delegateaccesscontrol/delegation_subscription.py} +162 -267
  47. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request.py +535 -0
  48. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_audit_log_report.py +174 -0
  49. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_histories.py +133 -0
  50. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_requests.py +250 -0
  51. pulumi_oci/delegateaccesscontrol/get_delegation_control.py +378 -0
  52. pulumi_oci/delegateaccesscontrol/get_delegation_control_resources.py +133 -0
  53. pulumi_oci/delegateaccesscontrol/get_delegation_controls.py +213 -0
  54. pulumi_oci/{globallydistributeddatabase/get_private_endpoint.py → delegateaccesscontrol/get_delegation_subscription.py} +66 -105
  55. pulumi_oci/delegateaccesscontrol/get_delegation_subscriptions.py +176 -0
  56. pulumi_oci/delegateaccesscontrol/get_service_provider.py +274 -0
  57. pulumi_oci/delegateaccesscontrol/get_service_provider_action.py +210 -0
  58. pulumi_oci/delegateaccesscontrol/get_service_provider_actions.py +210 -0
  59. pulumi_oci/delegateaccesscontrol/get_service_providers.py +213 -0
  60. pulumi_oci/delegateaccesscontrol/outputs.py +1679 -0
  61. pulumi_oci/{fleetsoftwareupdate → desktops}/__init__.py +7 -6
  62. pulumi_oci/desktops/_inputs.py +483 -0
  63. pulumi_oci/desktops/desktop_pool.py +1348 -0
  64. pulumi_oci/desktops/get_desktop.py +223 -0
  65. pulumi_oci/desktops/get_desktop_pool.py +418 -0
  66. pulumi_oci/desktops/get_desktop_pool_desktops.py +208 -0
  67. pulumi_oci/desktops/get_desktop_pool_volumes.py +214 -0
  68. pulumi_oci/desktops/get_desktop_pools.py +203 -0
  69. pulumi_oci/desktops/get_desktops.py +214 -0
  70. pulumi_oci/desktops/outputs.py +1738 -0
  71. pulumi_oci/filestorage/mount_target.py +143 -38
  72. pulumi_oci/filestorage/outputs.py +44 -0
  73. pulumi_oci/identity/domains_group.py +34 -0
  74. pulumi_oci/identity/domains_user.py +34 -0
  75. pulumi_oci/identity/get_domains_group.py +11 -1
  76. pulumi_oci/identity/get_domains_user.py +11 -1
  77. pulumi_oci/identity/outputs.py +14 -0
  78. pulumi_oci/kms/_inputs.py +10 -10
  79. pulumi_oci/kms/get_vault.py +14 -1
  80. pulumi_oci/kms/outputs.py +41 -30
  81. pulumi_oci/kms/vault.py +28 -0
  82. pulumi_oci/loadbalancer/load_balancer.py +224 -0
  83. pulumi_oci/loadbalancer/outputs.py +22 -0
  84. pulumi_oci/mysql/_inputs.py +23 -0
  85. pulumi_oci/mysql/get_mysql_db_system.py +15 -2
  86. pulumi_oci/mysql/mysql_db_system.py +53 -0
  87. pulumi_oci/mysql/outputs.py +74 -6
  88. pulumi_oci/ocvp/get_cluster.py +2 -2
  89. pulumi_oci/ocvp/get_exsi_hosts.py +2 -2
  90. pulumi_oci/ocvp/get_supported_vmware_software_versions.py +22 -5
  91. pulumi_oci/ocvp/outputs.py +2 -2
  92. pulumi_oci/pulumi-plugin.json +1 -1
  93. pulumi_oci/recoverymod/_inputs.py +0 -8
  94. pulumi_oci/recoverymod/get_protected_database.py +14 -1
  95. pulumi_oci/recoverymod/get_protection_policy.py +14 -1
  96. pulumi_oci/recoverymod/outputs.py +22 -8
  97. pulumi_oci/recoverymod/protected_database.py +80 -3
  98. pulumi_oci/recoverymod/protection_policy.py +49 -0
  99. pulumi_oci/waf/_inputs.py +29 -16
  100. pulumi_oci/waf/outputs.py +33 -10
  101. {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/METADATA +1 -1
  102. {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/RECORD +104 -86
  103. {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/WHEEL +1 -1
  104. pulumi_oci/fleetsoftwareupdate/_inputs.py +0 -553
  105. pulumi_oci/fleetsoftwareupdate/fsu_collection.py +0 -514
  106. pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +0 -812
  107. pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +0 -225
  108. pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +0 -141
  109. pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +0 -325
  110. pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +0 -167
  111. pulumi_oci/fleetsoftwareupdate/outputs.py +0 -1481
  112. pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
  113. pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1003
  114. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -176
  115. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -610
  116. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -176
  117. pulumi_oci/globallydistributeddatabase/outputs.py +0 -2058
  118. pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1816
  119. {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,453 @@
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__ = ['MaskingPolicyHealthReportManagementArgs', 'MaskingPolicyHealthReportManagement']
13
+
14
+ @pulumi.input_type
15
+ class MaskingPolicyHealthReportManagementArgs:
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 MaskingPolicyHealthReportManagement 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 _MaskingPolicyHealthReportManagementState:
72
+ def __init__(__self__, *,
73
+ compartment_id: Optional[pulumi.Input[str]] = None,
74
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
75
+ description: Optional[pulumi.Input[str]] = None,
76
+ display_name: Optional[pulumi.Input[str]] = None,
77
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
78
+ masking_policy_id: Optional[pulumi.Input[str]] = None,
79
+ state: Optional[pulumi.Input[str]] = None,
80
+ target_id: Optional[pulumi.Input[str]] = None,
81
+ time_created: Optional[pulumi.Input[str]] = None,
82
+ time_updated: Optional[pulumi.Input[str]] = None):
83
+ """
84
+ Input properties used for looking up and filtering MaskingPolicyHealthReportManagement resources.
85
+ :param pulumi.Input[str] compartment_id: The OCID of the compartment that contains the masking report.
86
+ :param pulumi.Input[str] description: Description for the pre-masking report,
87
+ :param pulumi.Input[str] display_name: The display name of the pre-masking report,
88
+ :param pulumi.Input[str] masking_policy_id: The OCID of the masking policy.
89
+ :param pulumi.Input[str] state: The current state of the pre-masking report.
90
+ :param pulumi.Input[str] target_id: The OCID of the target database masked.
91
+ :param pulumi.Input[str] time_created: The date and time the pre-masking report was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339),
92
+ :param pulumi.Input[str] time_updated: The date and time the pre-masking report was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339),
93
+ """
94
+ if compartment_id is not None:
95
+ pulumi.set(__self__, "compartment_id", compartment_id)
96
+ if defined_tags is not None:
97
+ pulumi.set(__self__, "defined_tags", defined_tags)
98
+ if description is not None:
99
+ pulumi.set(__self__, "description", description)
100
+ if display_name is not None:
101
+ pulumi.set(__self__, "display_name", display_name)
102
+ if freeform_tags is not None:
103
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
104
+ if masking_policy_id is not None:
105
+ pulumi.set(__self__, "masking_policy_id", masking_policy_id)
106
+ if state is not None:
107
+ pulumi.set(__self__, "state", state)
108
+ if target_id is not None:
109
+ pulumi.set(__self__, "target_id", target_id)
110
+ if time_created is not None:
111
+ pulumi.set(__self__, "time_created", time_created)
112
+ if time_updated is not None:
113
+ pulumi.set(__self__, "time_updated", time_updated)
114
+
115
+ @property
116
+ @pulumi.getter(name="compartmentId")
117
+ def compartment_id(self) -> Optional[pulumi.Input[str]]:
118
+ """
119
+ The OCID of the compartment that contains the masking report.
120
+ """
121
+ return pulumi.get(self, "compartment_id")
122
+
123
+ @compartment_id.setter
124
+ def compartment_id(self, value: Optional[pulumi.Input[str]]):
125
+ pulumi.set(self, "compartment_id", value)
126
+
127
+ @property
128
+ @pulumi.getter(name="definedTags")
129
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
130
+ return pulumi.get(self, "defined_tags")
131
+
132
+ @defined_tags.setter
133
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
134
+ pulumi.set(self, "defined_tags", value)
135
+
136
+ @property
137
+ @pulumi.getter
138
+ def description(self) -> Optional[pulumi.Input[str]]:
139
+ """
140
+ Description for the pre-masking report,
141
+ """
142
+ return pulumi.get(self, "description")
143
+
144
+ @description.setter
145
+ def description(self, value: Optional[pulumi.Input[str]]):
146
+ pulumi.set(self, "description", value)
147
+
148
+ @property
149
+ @pulumi.getter(name="displayName")
150
+ def display_name(self) -> Optional[pulumi.Input[str]]:
151
+ """
152
+ The display name of the pre-masking report,
153
+ """
154
+ return pulumi.get(self, "display_name")
155
+
156
+ @display_name.setter
157
+ def display_name(self, value: Optional[pulumi.Input[str]]):
158
+ pulumi.set(self, "display_name", value)
159
+
160
+ @property
161
+ @pulumi.getter(name="freeformTags")
162
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
163
+ return pulumi.get(self, "freeform_tags")
164
+
165
+ @freeform_tags.setter
166
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
167
+ pulumi.set(self, "freeform_tags", value)
168
+
169
+ @property
170
+ @pulumi.getter(name="maskingPolicyId")
171
+ def masking_policy_id(self) -> Optional[pulumi.Input[str]]:
172
+ """
173
+ The OCID of the masking policy.
174
+ """
175
+ return pulumi.get(self, "masking_policy_id")
176
+
177
+ @masking_policy_id.setter
178
+ def masking_policy_id(self, value: Optional[pulumi.Input[str]]):
179
+ pulumi.set(self, "masking_policy_id", value)
180
+
181
+ @property
182
+ @pulumi.getter
183
+ def state(self) -> Optional[pulumi.Input[str]]:
184
+ """
185
+ The current state of the pre-masking report.
186
+ """
187
+ return pulumi.get(self, "state")
188
+
189
+ @state.setter
190
+ def state(self, value: Optional[pulumi.Input[str]]):
191
+ pulumi.set(self, "state", value)
192
+
193
+ @property
194
+ @pulumi.getter(name="targetId")
195
+ def target_id(self) -> Optional[pulumi.Input[str]]:
196
+ """
197
+ The OCID of the target database masked.
198
+ """
199
+ return pulumi.get(self, "target_id")
200
+
201
+ @target_id.setter
202
+ def target_id(self, value: Optional[pulumi.Input[str]]):
203
+ pulumi.set(self, "target_id", value)
204
+
205
+ @property
206
+ @pulumi.getter(name="timeCreated")
207
+ def time_created(self) -> Optional[pulumi.Input[str]]:
208
+ """
209
+ The date and time the pre-masking report was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339),
210
+ """
211
+ return pulumi.get(self, "time_created")
212
+
213
+ @time_created.setter
214
+ def time_created(self, value: Optional[pulumi.Input[str]]):
215
+ pulumi.set(self, "time_created", value)
216
+
217
+ @property
218
+ @pulumi.getter(name="timeUpdated")
219
+ def time_updated(self) -> Optional[pulumi.Input[str]]:
220
+ """
221
+ The date and time the pre-masking report was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339),
222
+ """
223
+ return pulumi.get(self, "time_updated")
224
+
225
+ @time_updated.setter
226
+ def time_updated(self, value: Optional[pulumi.Input[str]]):
227
+ pulumi.set(self, "time_updated", value)
228
+
229
+
230
+ class MaskingPolicyHealthReportManagement(pulumi.CustomResource):
231
+ @overload
232
+ def __init__(__self__,
233
+ resource_name: str,
234
+ opts: Optional[pulumi.ResourceOptions] = None,
235
+ compartment_id: Optional[pulumi.Input[str]] = None,
236
+ masking_policy_id: Optional[pulumi.Input[str]] = None,
237
+ target_id: Optional[pulumi.Input[str]] = None,
238
+ __props__=None):
239
+ """
240
+ This resource provides Pre-masking Report Management resource in Oracle Cloud Infrastructure Data Safe service.
241
+
242
+ Gets the details of the specified pre-masking health report.
243
+
244
+ ## Example Usage
245
+
246
+ ```python
247
+ import pulumi
248
+ import pulumi_oci as oci
249
+
250
+ test_pre_masking_report_management = oci.data_safe.MaskingPolicyHealthReportManagement("test_pre_masking_report_management",
251
+ target_id=test_target_database["id"],
252
+ masking_policy_id=test_masking_policy["id"])
253
+ ```
254
+
255
+ ## Import
256
+
257
+ Import is not supported for this resource.
258
+
259
+ :param str resource_name: The name of the resource.
260
+ :param pulumi.ResourceOptions opts: Options for the resource.
261
+ :param pulumi.Input[str] compartment_id: The OCID of the compartment that contains the masking report.
262
+ :param pulumi.Input[str] masking_policy_id: The OCID of the masking policy.
263
+ :param pulumi.Input[str] target_id: The OCID of the target database masked.
264
+ """
265
+ ...
266
+ @overload
267
+ def __init__(__self__,
268
+ resource_name: str,
269
+ args: Optional[MaskingPolicyHealthReportManagementArgs] = None,
270
+ opts: Optional[pulumi.ResourceOptions] = None):
271
+ """
272
+ This resource provides Pre-masking Report Management resource in Oracle Cloud Infrastructure Data Safe service.
273
+
274
+ Gets the details of the specified pre-masking health report.
275
+
276
+ ## Example Usage
277
+
278
+ ```python
279
+ import pulumi
280
+ import pulumi_oci as oci
281
+
282
+ test_pre_masking_report_management = oci.data_safe.MaskingPolicyHealthReportManagement("test_pre_masking_report_management",
283
+ target_id=test_target_database["id"],
284
+ masking_policy_id=test_masking_policy["id"])
285
+ ```
286
+
287
+ ## Import
288
+
289
+ Import is not supported for this resource.
290
+
291
+ :param str resource_name: The name of the resource.
292
+ :param MaskingPolicyHealthReportManagementArgs args: The arguments to use to populate this resource's properties.
293
+ :param pulumi.ResourceOptions opts: Options for the resource.
294
+ """
295
+ ...
296
+ def __init__(__self__, resource_name: str, *args, **kwargs):
297
+ resource_args, opts = _utilities.get_resource_args_opts(MaskingPolicyHealthReportManagementArgs, pulumi.ResourceOptions, *args, **kwargs)
298
+ if resource_args is not None:
299
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
300
+ else:
301
+ __self__._internal_init(resource_name, *args, **kwargs)
302
+
303
+ def _internal_init(__self__,
304
+ resource_name: str,
305
+ opts: Optional[pulumi.ResourceOptions] = None,
306
+ compartment_id: Optional[pulumi.Input[str]] = None,
307
+ masking_policy_id: Optional[pulumi.Input[str]] = None,
308
+ target_id: Optional[pulumi.Input[str]] = None,
309
+ __props__=None):
310
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
311
+ if not isinstance(opts, pulumi.ResourceOptions):
312
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
313
+ if opts.id is None:
314
+ if __props__ is not None:
315
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
316
+ __props__ = MaskingPolicyHealthReportManagementArgs.__new__(MaskingPolicyHealthReportManagementArgs)
317
+
318
+ __props__.__dict__["compartment_id"] = compartment_id
319
+ __props__.__dict__["masking_policy_id"] = masking_policy_id
320
+ __props__.__dict__["target_id"] = target_id
321
+ __props__.__dict__["defined_tags"] = None
322
+ __props__.__dict__["description"] = None
323
+ __props__.__dict__["display_name"] = None
324
+ __props__.__dict__["freeform_tags"] = None
325
+ __props__.__dict__["state"] = None
326
+ __props__.__dict__["time_created"] = None
327
+ __props__.__dict__["time_updated"] = None
328
+ super(MaskingPolicyHealthReportManagement, __self__).__init__(
329
+ 'oci:DataSafe/maskingPolicyHealthReportManagement:MaskingPolicyHealthReportManagement',
330
+ resource_name,
331
+ __props__,
332
+ opts)
333
+
334
+ @staticmethod
335
+ def get(resource_name: str,
336
+ id: pulumi.Input[str],
337
+ opts: Optional[pulumi.ResourceOptions] = None,
338
+ compartment_id: Optional[pulumi.Input[str]] = None,
339
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
340
+ description: Optional[pulumi.Input[str]] = None,
341
+ display_name: Optional[pulumi.Input[str]] = None,
342
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
343
+ masking_policy_id: Optional[pulumi.Input[str]] = None,
344
+ state: Optional[pulumi.Input[str]] = None,
345
+ target_id: Optional[pulumi.Input[str]] = None,
346
+ time_created: Optional[pulumi.Input[str]] = None,
347
+ time_updated: Optional[pulumi.Input[str]] = None) -> 'MaskingPolicyHealthReportManagement':
348
+ """
349
+ Get an existing MaskingPolicyHealthReportManagement resource's state with the given name, id, and optional extra
350
+ properties used to qualify the lookup.
351
+
352
+ :param str resource_name: The unique name of the resulting resource.
353
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
354
+ :param pulumi.ResourceOptions opts: Options for the resource.
355
+ :param pulumi.Input[str] compartment_id: The OCID of the compartment that contains the masking report.
356
+ :param pulumi.Input[str] description: Description for the pre-masking report,
357
+ :param pulumi.Input[str] display_name: The display name of the pre-masking report,
358
+ :param pulumi.Input[str] masking_policy_id: The OCID of the masking policy.
359
+ :param pulumi.Input[str] state: The current state of the pre-masking report.
360
+ :param pulumi.Input[str] target_id: The OCID of the target database masked.
361
+ :param pulumi.Input[str] time_created: The date and time the pre-masking report was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339),
362
+ :param pulumi.Input[str] time_updated: The date and time the pre-masking report was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339),
363
+ """
364
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
365
+
366
+ __props__ = _MaskingPolicyHealthReportManagementState.__new__(_MaskingPolicyHealthReportManagementState)
367
+
368
+ __props__.__dict__["compartment_id"] = compartment_id
369
+ __props__.__dict__["defined_tags"] = defined_tags
370
+ __props__.__dict__["description"] = description
371
+ __props__.__dict__["display_name"] = display_name
372
+ __props__.__dict__["freeform_tags"] = freeform_tags
373
+ __props__.__dict__["masking_policy_id"] = masking_policy_id
374
+ __props__.__dict__["state"] = state
375
+ __props__.__dict__["target_id"] = target_id
376
+ __props__.__dict__["time_created"] = time_created
377
+ __props__.__dict__["time_updated"] = time_updated
378
+ return MaskingPolicyHealthReportManagement(resource_name, opts=opts, __props__=__props__)
379
+
380
+ @property
381
+ @pulumi.getter(name="compartmentId")
382
+ def compartment_id(self) -> pulumi.Output[str]:
383
+ """
384
+ The OCID of the compartment that contains the masking report.
385
+ """
386
+ return pulumi.get(self, "compartment_id")
387
+
388
+ @property
389
+ @pulumi.getter(name="definedTags")
390
+ def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
391
+ return pulumi.get(self, "defined_tags")
392
+
393
+ @property
394
+ @pulumi.getter
395
+ def description(self) -> pulumi.Output[str]:
396
+ """
397
+ Description for the pre-masking report,
398
+ """
399
+ return pulumi.get(self, "description")
400
+
401
+ @property
402
+ @pulumi.getter(name="displayName")
403
+ def display_name(self) -> pulumi.Output[str]:
404
+ """
405
+ The display name of the pre-masking report,
406
+ """
407
+ return pulumi.get(self, "display_name")
408
+
409
+ @property
410
+ @pulumi.getter(name="freeformTags")
411
+ def freeform_tags(self) -> pulumi.Output[Mapping[str, str]]:
412
+ return pulumi.get(self, "freeform_tags")
413
+
414
+ @property
415
+ @pulumi.getter(name="maskingPolicyId")
416
+ def masking_policy_id(self) -> pulumi.Output[str]:
417
+ """
418
+ The OCID of the masking policy.
419
+ """
420
+ return pulumi.get(self, "masking_policy_id")
421
+
422
+ @property
423
+ @pulumi.getter
424
+ def state(self) -> pulumi.Output[str]:
425
+ """
426
+ The current state of the pre-masking report.
427
+ """
428
+ return pulumi.get(self, "state")
429
+
430
+ @property
431
+ @pulumi.getter(name="targetId")
432
+ def target_id(self) -> pulumi.Output[str]:
433
+ """
434
+ The OCID of the target database masked.
435
+ """
436
+ return pulumi.get(self, "target_id")
437
+
438
+ @property
439
+ @pulumi.getter(name="timeCreated")
440
+ def time_created(self) -> pulumi.Output[str]:
441
+ """
442
+ The date and time the pre-masking report was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339),
443
+ """
444
+ return pulumi.get(self, "time_created")
445
+
446
+ @property
447
+ @pulumi.getter(name="timeUpdated")
448
+ def time_updated(self) -> pulumi.Output[str]:
449
+ """
450
+ The date and time the pre-masking report was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339),
451
+ """
452
+ return pulumi.get(self, "time_updated")
453
+