pulumi-oci 1.19.0a1705693078__py3-none-any.whl → 1.20.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +59 -0
- pulumi_oci/adm/_inputs.py +99 -18
- pulumi_oci/adm/get_remediation_run_application_dependency_recommendations.py +23 -3
- pulumi_oci/adm/get_vulnerability_audit.py +31 -5
- pulumi_oci/adm/get_vulnerability_audit_application_dependency_vulnerabilities.py +43 -6
- pulumi_oci/adm/get_vulnerability_audit_application_dependency_vulnerability.py +27 -1
- pulumi_oci/adm/get_vulnerability_audits.py +54 -3
- pulumi_oci/adm/outputs.py +296 -31
- pulumi_oci/adm/remediation_recipe.py +2 -0
- pulumi_oci/adm/vulnerability_audit.py +96 -37
- pulumi_oci/database/__init__.py +1 -0
- pulumi_oci/database/_inputs.py +40 -0
- pulumi_oci/database/cloud_vm_cluster.py +22 -1
- pulumi_oci/database/get_system_versions.py +173 -0
- pulumi_oci/database/outputs.py +88 -0
- pulumi_oci/database/vm_cluster.py +22 -1
- pulumi_oci/datasafe/__init__.py +22 -0
- pulumi_oci/datasafe/_inputs.py +1826 -161
- pulumi_oci/datasafe/audit_trail.py +140 -0
- pulumi_oci/datasafe/discovery_mod.py +7 -7
- pulumi_oci/datasafe/get_audit_trail.py +66 -1
- pulumi_oci/datasafe/get_discovery_job.py +1 -1
- pulumi_oci/datasafe/get_discovery_jobs_result.py +1 -1
- pulumi_oci/datasafe/get_discovery_jobs_results.py +1 -1
- pulumi_oci/datasafe/get_masking_policies_masking_column.py +1 -1
- pulumi_oci/datasafe/get_masking_policies_masking_columns.py +1 -1
- pulumi_oci/datasafe/get_masking_policy.py +1 -1
- pulumi_oci/datasafe/get_report.py +1 -1
- pulumi_oci/datasafe/get_security_assessment.py +3 -3
- pulumi_oci/datasafe/get_security_assessment_comparison.py +5 -5
- pulumi_oci/datasafe/get_security_assessment_finding.py +29 -3
- pulumi_oci/datasafe/get_security_assessment_finding_analytics.py +276 -0
- pulumi_oci/datasafe/get_security_assessment_findings.py +43 -7
- pulumi_oci/datasafe/get_security_assessment_findings_change_audit_logs.py +309 -0
- pulumi_oci/datasafe/get_security_assessment_security_feature_analytics.py +198 -0
- pulumi_oci/datasafe/get_security_assessment_security_features.py +377 -0
- pulumi_oci/datasafe/get_security_assessments.py +2 -2
- pulumi_oci/datasafe/get_security_policies.py +253 -0
- pulumi_oci/datasafe/get_security_policy.py +235 -0
- pulumi_oci/datasafe/get_security_policy_deployment.py +261 -0
- pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_state.py +165 -0
- pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_states.py +180 -0
- pulumi_oci/datasafe/get_security_policy_deployments.py +293 -0
- pulumi_oci/datasafe/get_security_policy_report.py +248 -0
- pulumi_oci/datasafe/get_security_policy_report_database_table_access_entries.py +158 -0
- pulumi_oci/datasafe/get_security_policy_report_database_table_access_entry.py +408 -0
- pulumi_oci/datasafe/get_security_policy_report_database_view_access_entries.py +178 -0
- pulumi_oci/datasafe/get_security_policy_report_database_view_access_entry.py +382 -0
- pulumi_oci/datasafe/get_security_policy_report_role_grant_paths.py +177 -0
- pulumi_oci/datasafe/get_security_policy_reports.py +273 -0
- pulumi_oci/datasafe/get_sensitive_data_model.py +1 -1
- pulumi_oci/datasafe/get_target_database.py +27 -4
- pulumi_oci/datasafe/get_target_database_peer_target_database.py +263 -0
- pulumi_oci/datasafe/get_target_database_peer_target_databases.py +133 -0
- pulumi_oci/datasafe/get_target_databases.py +1 -1
- pulumi_oci/datasafe/get_user_assessment.py +5 -5
- pulumi_oci/datasafe/get_user_assessment_comparison.py +2 -2
- pulumi_oci/datasafe/get_user_assessment_user_access_analytics.py +133 -0
- pulumi_oci/datasafe/get_user_assessment_user_analytics.py +2 -2
- pulumi_oci/datasafe/get_user_assessment_users.py +42 -2
- pulumi_oci/datasafe/get_user_assessments.py +2 -2
- pulumi_oci/datasafe/masking_policies_masking_column.py +7 -7
- pulumi_oci/datasafe/masking_policy.py +9 -9
- pulumi_oci/datasafe/outputs.py +16686 -9777
- pulumi_oci/datasafe/report.py +559 -0
- pulumi_oci/datasafe/security_assessment.py +12 -12
- pulumi_oci/datasafe/sensitive_data_model.py +7 -7
- pulumi_oci/datasafe/set_security_assessment_baseline.py +7 -7
- pulumi_oci/datasafe/set_user_assessment_baseline.py +7 -7
- pulumi_oci/datasafe/target_database.py +146 -25
- pulumi_oci/datasafe/target_database_peer_target_database.py +634 -0
- pulumi_oci/datasafe/user_assessment.py +20 -20
- pulumi_oci/generativeai/__init__.py +18 -0
- pulumi_oci/generativeai/_inputs.py +534 -0
- pulumi_oci/generativeai/dedicated_ai_cluster.py +808 -0
- pulumi_oci/generativeai/endpoint.py +717 -0
- pulumi_oci/generativeai/get_dedicated_ai_cluster.py +288 -0
- pulumi_oci/generativeai/get_dedicated_ai_clusters.py +183 -0
- pulumi_oci/generativeai/get_endpoint.py +275 -0
- pulumi_oci/generativeai/get_endpoints.py +183 -0
- pulumi_oci/generativeai/get_model.py +353 -0
- pulumi_oci/generativeai/get_models.py +220 -0
- pulumi_oci/generativeai/model.py +858 -0
- pulumi_oci/generativeai/outputs.py +1721 -0
- pulumi_oci/marketplace/get_publication.py +14 -1
- pulumi_oci/marketplace/outputs.py +11 -0
- pulumi_oci/marketplace/publication.py +28 -0
- pulumi_oci/monitoring/__init__.py +3 -0
- pulumi_oci/monitoring/_inputs.py +82 -4
- pulumi_oci/monitoring/alarm.py +15 -15
- pulumi_oci/monitoring/alarm_suppression.py +745 -0
- pulumi_oci/monitoring/get_alarm.py +5 -5
- pulumi_oci/monitoring/get_alarm_history_collection.py +4 -4
- pulumi_oci/monitoring/get_alarm_statuses.py +3 -1
- pulumi_oci/monitoring/get_alarm_suppression.py +276 -0
- pulumi_oci/monitoring/get_alarm_suppressions.py +192 -0
- pulumi_oci/monitoring/get_metric_data.py +12 -8
- pulumi_oci/monitoring/get_metrics.py +2 -2
- pulumi_oci/monitoring/outputs.py +355 -50
- pulumi_oci/networkfirewall/_inputs.py +25 -20
- pulumi_oci/networkfirewall/outputs.py +40 -30
- pulumi_oci/stackmonitoring/__init__.py +3 -0
- pulumi_oci/stackmonitoring/_inputs.py +143 -0
- pulumi_oci/stackmonitoring/get_process_set.py +236 -0
- pulumi_oci/stackmonitoring/get_process_sets.py +156 -0
- pulumi_oci/stackmonitoring/outputs.py +422 -0
- pulumi_oci/stackmonitoring/process_set.py +548 -0
- {pulumi_oci-1.19.0a1705693078.dist-info → pulumi_oci-1.20.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.19.0a1705693078.dist-info → pulumi_oci-1.20.0.dist-info}/RECORD +111 -70
- {pulumi_oci-1.19.0a1705693078.dist-info → pulumi_oci-1.20.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.19.0a1705693078.dist-info → pulumi_oci-1.20.0.dist-info}/top_level.txt +0 -0
@@ -167,6 +167,10 @@ class _AuditTrailState:
|
|
167
167
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
168
168
|
is_auto_purge_enabled: Optional[pulumi.Input[bool]] = None,
|
169
169
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
170
|
+
peer_target_database_key: Optional[pulumi.Input[int]] = None,
|
171
|
+
purge_job_details: Optional[pulumi.Input[str]] = None,
|
172
|
+
purge_job_status: Optional[pulumi.Input[str]] = None,
|
173
|
+
purge_job_time: Optional[pulumi.Input[str]] = None,
|
170
174
|
resume_trigger: Optional[pulumi.Input[int]] = None,
|
171
175
|
state: Optional[pulumi.Input[str]] = None,
|
172
176
|
status: Optional[pulumi.Input[str]] = None,
|
@@ -176,6 +180,7 @@ class _AuditTrailState:
|
|
176
180
|
time_last_collected: Optional[pulumi.Input[str]] = None,
|
177
181
|
time_updated: Optional[pulumi.Input[str]] = None,
|
178
182
|
trail_location: Optional[pulumi.Input[str]] = None,
|
183
|
+
trail_source: Optional[pulumi.Input[str]] = None,
|
179
184
|
work_request_id: Optional[pulumi.Input[str]] = None):
|
180
185
|
"""
|
181
186
|
Input properties used for looking up and filtering AuditTrail resources.
|
@@ -189,6 +194,10 @@ class _AuditTrailState:
|
|
189
194
|
: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"}`
|
190
195
|
:param pulumi.Input[bool] is_auto_purge_enabled: (Updatable) Indicates if auto purge is enabled on the target database, which helps delete audit data in the target database every seven days so that the database's audit trail does not become too large.
|
191
196
|
:param pulumi.Input[str] lifecycle_details: Details about the current state of the audit trail in Data Safe.
|
197
|
+
:param pulumi.Input[int] peer_target_database_key: The secondary id assigned for the peer database registered with Data Safe.
|
198
|
+
:param pulumi.Input[str] purge_job_details: The details of the audit trail purge job that ran on the "purgeJobTime".
|
199
|
+
:param pulumi.Input[str] purge_job_status: The current status of the audit trail purge job.
|
200
|
+
:param pulumi.Input[str] purge_job_time: The date and time of the last purge job, which deletes audit data in the target database every seven days so that the database's audit trail does not become too large. In the format defined by RFC3339.
|
192
201
|
:param pulumi.Input[int] resume_trigger: (Updatable) An optional property when incremented triggers Resume. Could be set to any integer value.
|
193
202
|
|
194
203
|
|
@@ -202,6 +211,7 @@ class _AuditTrailState:
|
|
202
211
|
:param pulumi.Input[str] time_last_collected: The date and time until when the audit events were collected from the target database by the Data Safe audit trail collection process, in the format defined by RFC3339.
|
203
212
|
:param pulumi.Input[str] time_updated: The date and time the audit trail was updated, in the format defined by RFC3339.
|
204
213
|
:param pulumi.Input[str] trail_location: An audit trail location represents the source of audit records that provides documentary evidence of the sequence of activities in the target database.
|
214
|
+
:param pulumi.Input[str] trail_source: The underlying source of unified audit trail.
|
205
215
|
:param pulumi.Input[str] work_request_id: The OCID of the workrequest for audit trail which collects audit records.
|
206
216
|
"""
|
207
217
|
if audit_collection_start_time is not None:
|
@@ -224,6 +234,14 @@ class _AuditTrailState:
|
|
224
234
|
pulumi.set(__self__, "is_auto_purge_enabled", is_auto_purge_enabled)
|
225
235
|
if lifecycle_details is not None:
|
226
236
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
237
|
+
if peer_target_database_key is not None:
|
238
|
+
pulumi.set(__self__, "peer_target_database_key", peer_target_database_key)
|
239
|
+
if purge_job_details is not None:
|
240
|
+
pulumi.set(__self__, "purge_job_details", purge_job_details)
|
241
|
+
if purge_job_status is not None:
|
242
|
+
pulumi.set(__self__, "purge_job_status", purge_job_status)
|
243
|
+
if purge_job_time is not None:
|
244
|
+
pulumi.set(__self__, "purge_job_time", purge_job_time)
|
227
245
|
if resume_trigger is not None:
|
228
246
|
pulumi.set(__self__, "resume_trigger", resume_trigger)
|
229
247
|
if state is not None:
|
@@ -242,6 +260,8 @@ class _AuditTrailState:
|
|
242
260
|
pulumi.set(__self__, "time_updated", time_updated)
|
243
261
|
if trail_location is not None:
|
244
262
|
pulumi.set(__self__, "trail_location", trail_location)
|
263
|
+
if trail_source is not None:
|
264
|
+
pulumi.set(__self__, "trail_source", trail_source)
|
245
265
|
if work_request_id is not None:
|
246
266
|
pulumi.set(__self__, "work_request_id", work_request_id)
|
247
267
|
|
@@ -365,6 +385,54 @@ class _AuditTrailState:
|
|
365
385
|
def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
|
366
386
|
pulumi.set(self, "lifecycle_details", value)
|
367
387
|
|
388
|
+
@property
|
389
|
+
@pulumi.getter(name="peerTargetDatabaseKey")
|
390
|
+
def peer_target_database_key(self) -> Optional[pulumi.Input[int]]:
|
391
|
+
"""
|
392
|
+
The secondary id assigned for the peer database registered with Data Safe.
|
393
|
+
"""
|
394
|
+
return pulumi.get(self, "peer_target_database_key")
|
395
|
+
|
396
|
+
@peer_target_database_key.setter
|
397
|
+
def peer_target_database_key(self, value: Optional[pulumi.Input[int]]):
|
398
|
+
pulumi.set(self, "peer_target_database_key", value)
|
399
|
+
|
400
|
+
@property
|
401
|
+
@pulumi.getter(name="purgeJobDetails")
|
402
|
+
def purge_job_details(self) -> Optional[pulumi.Input[str]]:
|
403
|
+
"""
|
404
|
+
The details of the audit trail purge job that ran on the "purgeJobTime".
|
405
|
+
"""
|
406
|
+
return pulumi.get(self, "purge_job_details")
|
407
|
+
|
408
|
+
@purge_job_details.setter
|
409
|
+
def purge_job_details(self, value: Optional[pulumi.Input[str]]):
|
410
|
+
pulumi.set(self, "purge_job_details", value)
|
411
|
+
|
412
|
+
@property
|
413
|
+
@pulumi.getter(name="purgeJobStatus")
|
414
|
+
def purge_job_status(self) -> Optional[pulumi.Input[str]]:
|
415
|
+
"""
|
416
|
+
The current status of the audit trail purge job.
|
417
|
+
"""
|
418
|
+
return pulumi.get(self, "purge_job_status")
|
419
|
+
|
420
|
+
@purge_job_status.setter
|
421
|
+
def purge_job_status(self, value: Optional[pulumi.Input[str]]):
|
422
|
+
pulumi.set(self, "purge_job_status", value)
|
423
|
+
|
424
|
+
@property
|
425
|
+
@pulumi.getter(name="purgeJobTime")
|
426
|
+
def purge_job_time(self) -> Optional[pulumi.Input[str]]:
|
427
|
+
"""
|
428
|
+
The date and time of the last purge job, which deletes audit data in the target database every seven days so that the database's audit trail does not become too large. In the format defined by RFC3339.
|
429
|
+
"""
|
430
|
+
return pulumi.get(self, "purge_job_time")
|
431
|
+
|
432
|
+
@purge_job_time.setter
|
433
|
+
def purge_job_time(self, value: Optional[pulumi.Input[str]]):
|
434
|
+
pulumi.set(self, "purge_job_time", value)
|
435
|
+
|
368
436
|
@property
|
369
437
|
@pulumi.getter(name="resumeTrigger")
|
370
438
|
def resume_trigger(self) -> Optional[pulumi.Input[int]]:
|
@@ -477,6 +545,18 @@ class _AuditTrailState:
|
|
477
545
|
def trail_location(self, value: Optional[pulumi.Input[str]]):
|
478
546
|
pulumi.set(self, "trail_location", value)
|
479
547
|
|
548
|
+
@property
|
549
|
+
@pulumi.getter(name="trailSource")
|
550
|
+
def trail_source(self) -> Optional[pulumi.Input[str]]:
|
551
|
+
"""
|
552
|
+
The underlying source of unified audit trail.
|
553
|
+
"""
|
554
|
+
return pulumi.get(self, "trail_source")
|
555
|
+
|
556
|
+
@trail_source.setter
|
557
|
+
def trail_source(self, value: Optional[pulumi.Input[str]]):
|
558
|
+
pulumi.set(self, "trail_source", value)
|
559
|
+
|
480
560
|
@property
|
481
561
|
@pulumi.getter(name="workRequestId")
|
482
562
|
def work_request_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -597,6 +677,10 @@ class AuditTrail(pulumi.CustomResource):
|
|
597
677
|
__props__.__dict__["audit_profile_id"] = None
|
598
678
|
__props__.__dict__["compartment_id"] = None
|
599
679
|
__props__.__dict__["lifecycle_details"] = None
|
680
|
+
__props__.__dict__["peer_target_database_key"] = None
|
681
|
+
__props__.__dict__["purge_job_details"] = None
|
682
|
+
__props__.__dict__["purge_job_status"] = None
|
683
|
+
__props__.__dict__["purge_job_time"] = None
|
600
684
|
__props__.__dict__["status"] = None
|
601
685
|
__props__.__dict__["system_tags"] = None
|
602
686
|
__props__.__dict__["target_id"] = None
|
@@ -604,6 +688,7 @@ class AuditTrail(pulumi.CustomResource):
|
|
604
688
|
__props__.__dict__["time_last_collected"] = None
|
605
689
|
__props__.__dict__["time_updated"] = None
|
606
690
|
__props__.__dict__["trail_location"] = None
|
691
|
+
__props__.__dict__["trail_source"] = None
|
607
692
|
__props__.__dict__["work_request_id"] = None
|
608
693
|
super(AuditTrail, __self__).__init__(
|
609
694
|
'oci:DataSafe/auditTrail:AuditTrail',
|
@@ -625,6 +710,10 @@ class AuditTrail(pulumi.CustomResource):
|
|
625
710
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
626
711
|
is_auto_purge_enabled: Optional[pulumi.Input[bool]] = None,
|
627
712
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
713
|
+
peer_target_database_key: Optional[pulumi.Input[int]] = None,
|
714
|
+
purge_job_details: Optional[pulumi.Input[str]] = None,
|
715
|
+
purge_job_status: Optional[pulumi.Input[str]] = None,
|
716
|
+
purge_job_time: Optional[pulumi.Input[str]] = None,
|
628
717
|
resume_trigger: Optional[pulumi.Input[int]] = None,
|
629
718
|
state: Optional[pulumi.Input[str]] = None,
|
630
719
|
status: Optional[pulumi.Input[str]] = None,
|
@@ -634,6 +723,7 @@ class AuditTrail(pulumi.CustomResource):
|
|
634
723
|
time_last_collected: Optional[pulumi.Input[str]] = None,
|
635
724
|
time_updated: Optional[pulumi.Input[str]] = None,
|
636
725
|
trail_location: Optional[pulumi.Input[str]] = None,
|
726
|
+
trail_source: Optional[pulumi.Input[str]] = None,
|
637
727
|
work_request_id: Optional[pulumi.Input[str]] = None) -> 'AuditTrail':
|
638
728
|
"""
|
639
729
|
Get an existing AuditTrail resource's state with the given name, id, and optional extra
|
@@ -652,6 +742,10 @@ class AuditTrail(pulumi.CustomResource):
|
|
652
742
|
: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"}`
|
653
743
|
:param pulumi.Input[bool] is_auto_purge_enabled: (Updatable) Indicates if auto purge is enabled on the target database, which helps delete audit data in the target database every seven days so that the database's audit trail does not become too large.
|
654
744
|
:param pulumi.Input[str] lifecycle_details: Details about the current state of the audit trail in Data Safe.
|
745
|
+
:param pulumi.Input[int] peer_target_database_key: The secondary id assigned for the peer database registered with Data Safe.
|
746
|
+
:param pulumi.Input[str] purge_job_details: The details of the audit trail purge job that ran on the "purgeJobTime".
|
747
|
+
:param pulumi.Input[str] purge_job_status: The current status of the audit trail purge job.
|
748
|
+
:param pulumi.Input[str] purge_job_time: The date and time of the last purge job, which deletes audit data in the target database every seven days so that the database's audit trail does not become too large. In the format defined by RFC3339.
|
655
749
|
:param pulumi.Input[int] resume_trigger: (Updatable) An optional property when incremented triggers Resume. Could be set to any integer value.
|
656
750
|
|
657
751
|
|
@@ -665,6 +759,7 @@ class AuditTrail(pulumi.CustomResource):
|
|
665
759
|
:param pulumi.Input[str] time_last_collected: The date and time until when the audit events were collected from the target database by the Data Safe audit trail collection process, in the format defined by RFC3339.
|
666
760
|
:param pulumi.Input[str] time_updated: The date and time the audit trail was updated, in the format defined by RFC3339.
|
667
761
|
:param pulumi.Input[str] trail_location: An audit trail location represents the source of audit records that provides documentary evidence of the sequence of activities in the target database.
|
762
|
+
:param pulumi.Input[str] trail_source: The underlying source of unified audit trail.
|
668
763
|
:param pulumi.Input[str] work_request_id: The OCID of the workrequest for audit trail which collects audit records.
|
669
764
|
"""
|
670
765
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -681,6 +776,10 @@ class AuditTrail(pulumi.CustomResource):
|
|
681
776
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
682
777
|
__props__.__dict__["is_auto_purge_enabled"] = is_auto_purge_enabled
|
683
778
|
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
779
|
+
__props__.__dict__["peer_target_database_key"] = peer_target_database_key
|
780
|
+
__props__.__dict__["purge_job_details"] = purge_job_details
|
781
|
+
__props__.__dict__["purge_job_status"] = purge_job_status
|
782
|
+
__props__.__dict__["purge_job_time"] = purge_job_time
|
684
783
|
__props__.__dict__["resume_trigger"] = resume_trigger
|
685
784
|
__props__.__dict__["state"] = state
|
686
785
|
__props__.__dict__["status"] = status
|
@@ -690,6 +789,7 @@ class AuditTrail(pulumi.CustomResource):
|
|
690
789
|
__props__.__dict__["time_last_collected"] = time_last_collected
|
691
790
|
__props__.__dict__["time_updated"] = time_updated
|
692
791
|
__props__.__dict__["trail_location"] = trail_location
|
792
|
+
__props__.__dict__["trail_source"] = trail_source
|
693
793
|
__props__.__dict__["work_request_id"] = work_request_id
|
694
794
|
return AuditTrail(resource_name, opts=opts, __props__=__props__)
|
695
795
|
|
@@ -773,6 +873,38 @@ class AuditTrail(pulumi.CustomResource):
|
|
773
873
|
"""
|
774
874
|
return pulumi.get(self, "lifecycle_details")
|
775
875
|
|
876
|
+
@property
|
877
|
+
@pulumi.getter(name="peerTargetDatabaseKey")
|
878
|
+
def peer_target_database_key(self) -> pulumi.Output[int]:
|
879
|
+
"""
|
880
|
+
The secondary id assigned for the peer database registered with Data Safe.
|
881
|
+
"""
|
882
|
+
return pulumi.get(self, "peer_target_database_key")
|
883
|
+
|
884
|
+
@property
|
885
|
+
@pulumi.getter(name="purgeJobDetails")
|
886
|
+
def purge_job_details(self) -> pulumi.Output[str]:
|
887
|
+
"""
|
888
|
+
The details of the audit trail purge job that ran on the "purgeJobTime".
|
889
|
+
"""
|
890
|
+
return pulumi.get(self, "purge_job_details")
|
891
|
+
|
892
|
+
@property
|
893
|
+
@pulumi.getter(name="purgeJobStatus")
|
894
|
+
def purge_job_status(self) -> pulumi.Output[str]:
|
895
|
+
"""
|
896
|
+
The current status of the audit trail purge job.
|
897
|
+
"""
|
898
|
+
return pulumi.get(self, "purge_job_status")
|
899
|
+
|
900
|
+
@property
|
901
|
+
@pulumi.getter(name="purgeJobTime")
|
902
|
+
def purge_job_time(self) -> pulumi.Output[str]:
|
903
|
+
"""
|
904
|
+
The date and time of the last purge job, which deletes audit data in the target database every seven days so that the database's audit trail does not become too large. In the format defined by RFC3339.
|
905
|
+
"""
|
906
|
+
return pulumi.get(self, "purge_job_time")
|
907
|
+
|
776
908
|
@property
|
777
909
|
@pulumi.getter(name="resumeTrigger")
|
778
910
|
def resume_trigger(self) -> pulumi.Output[Optional[int]]:
|
@@ -849,6 +981,14 @@ class AuditTrail(pulumi.CustomResource):
|
|
849
981
|
"""
|
850
982
|
return pulumi.get(self, "trail_location")
|
851
983
|
|
984
|
+
@property
|
985
|
+
@pulumi.getter(name="trailSource")
|
986
|
+
def trail_source(self) -> pulumi.Output[str]:
|
987
|
+
"""
|
988
|
+
The underlying source of unified audit trail.
|
989
|
+
"""
|
990
|
+
return pulumi.get(self, "trail_source")
|
991
|
+
|
852
992
|
@property
|
853
993
|
@pulumi.getter(name="workRequestId")
|
854
994
|
def work_request_id(self) -> pulumi.Output[str]:
|
@@ -35,7 +35,7 @@ class DiscoveryModArgs:
|
|
35
35
|
:param pulumi.Input[str] display_name: A user-friendly name for the discovery job. Does not have to be unique, and it is changeable. Avoid entering confidential information.
|
36
36
|
:param pulumi.Input[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"}`
|
37
37
|
:param pulumi.Input[bool] is_app_defined_relation_discovery_enabled: Indicates if the discovery job should identify potential application-level (non-dictionary) referential relationships between columns. Note that data discovery automatically identifies and adds database-level (dictionary-defined) relationships. This option helps identify application-level relationships that are not defined in the database dictionary, which in turn, helps identify additional sensitive columns and preserve referential integrity during data masking. It's disabled by default and should be used only if there is a need to identify application-level relationships.
|
38
|
-
:param pulumi.Input[bool] is_include_all_schemas: Indicates if all the schemas should be scanned by the discovery job. If it
|
38
|
+
:param pulumi.Input[bool] is_include_all_schemas: Indicates if all the schemas should be scanned by the discovery job. If it is set to true, sensitive data is discovered in all schemas (except for schemas maintained by Oracle). If both attributes are not provided, the configuration from the sensitive data model is used.
|
39
39
|
:param pulumi.Input[bool] is_include_all_sensitive_types: Indicates if all the existing sensitive types should be used by the discovery job. If it's set to true, the sensitiveTypeIdsForDiscovery attribute is ignored and all sensitive types are used for data discovery. If both attributes are not provided, the configuration from the sensitive data model is used.
|
40
40
|
:param pulumi.Input[bool] is_sample_data_collection_enabled: Indicates if the discovery job should collect and store sample data values for the discovered columns. Sample data helps review the discovered columns and ensure that they actually contain sensitive data. As it collects original data from the target database, it's disabled by default and should be used only if it's acceptable to store sample data in Data Safe's repository in Oracle Cloud. Note that sample data values are not collected for columns with the following data types: LONG, LOB, RAW, XMLTYPE and BFILE.
|
41
41
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] schemas_for_discoveries: The schemas to be scanned by the discovery job. If not provided, the schemasForDiscovery attribute of the sensitive data model is used to get the list of schemas.
|
@@ -156,7 +156,7 @@ class DiscoveryModArgs:
|
|
156
156
|
@pulumi.getter(name="isIncludeAllSchemas")
|
157
157
|
def is_include_all_schemas(self) -> Optional[pulumi.Input[bool]]:
|
158
158
|
"""
|
159
|
-
Indicates if all the schemas should be scanned by the discovery job. If it
|
159
|
+
Indicates if all the schemas should be scanned by the discovery job. If it is set to true, sensitive data is discovered in all schemas (except for schemas maintained by Oracle). If both attributes are not provided, the configuration from the sensitive data model is used.
|
160
160
|
"""
|
161
161
|
return pulumi.get(self, "is_include_all_schemas")
|
162
162
|
|
@@ -251,7 +251,7 @@ class _DiscoveryModState:
|
|
251
251
|
:param pulumi.Input[str] display_name: A user-friendly name for the discovery job. Does not have to be unique, and it is changeable. Avoid entering confidential information.
|
252
252
|
:param pulumi.Input[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"}`
|
253
253
|
:param pulumi.Input[bool] is_app_defined_relation_discovery_enabled: Indicates if the discovery job should identify potential application-level (non-dictionary) referential relationships between columns. Note that data discovery automatically identifies and adds database-level (dictionary-defined) relationships. This option helps identify application-level relationships that are not defined in the database dictionary, which in turn, helps identify additional sensitive columns and preserve referential integrity during data masking. It's disabled by default and should be used only if there is a need to identify application-level relationships.
|
254
|
-
:param pulumi.Input[bool] is_include_all_schemas: Indicates if all the schemas should be scanned by the discovery job. If it
|
254
|
+
:param pulumi.Input[bool] is_include_all_schemas: Indicates if all the schemas should be scanned by the discovery job. If it is set to true, sensitive data is discovered in all schemas (except for schemas maintained by Oracle). If both attributes are not provided, the configuration from the sensitive data model is used.
|
255
255
|
:param pulumi.Input[bool] is_include_all_sensitive_types: Indicates if all the existing sensitive types should be used by the discovery job. If it's set to true, the sensitiveTypeIdsForDiscovery attribute is ignored and all sensitive types are used for data discovery. If both attributes are not provided, the configuration from the sensitive data model is used.
|
256
256
|
:param pulumi.Input[bool] is_sample_data_collection_enabled: Indicates if the discovery job should collect and store sample data values for the discovered columns. Sample data helps review the discovered columns and ensure that they actually contain sensitive data. As it collects original data from the target database, it's disabled by default and should be used only if it's acceptable to store sample data in Data Safe's repository in Oracle Cloud. Note that sample data values are not collected for columns with the following data types: LONG, LOB, RAW, XMLTYPE and BFILE.
|
257
257
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] schemas_for_discoveries: The schemas to be scanned by the discovery job. If not provided, the schemasForDiscovery attribute of the sensitive data model is used to get the list of schemas.
|
@@ -396,7 +396,7 @@ class _DiscoveryModState:
|
|
396
396
|
@pulumi.getter(name="isIncludeAllSchemas")
|
397
397
|
def is_include_all_schemas(self) -> Optional[pulumi.Input[bool]]:
|
398
398
|
"""
|
399
|
-
Indicates if all the schemas should be scanned by the discovery job. If it
|
399
|
+
Indicates if all the schemas should be scanned by the discovery job. If it is set to true, sensitive data is discovered in all schemas (except for schemas maintained by Oracle). If both attributes are not provided, the configuration from the sensitive data model is used.
|
400
400
|
"""
|
401
401
|
return pulumi.get(self, "is_include_all_schemas")
|
402
402
|
|
@@ -669,7 +669,7 @@ class DiscoveryMod(pulumi.CustomResource):
|
|
669
669
|
:param pulumi.Input[str] display_name: A user-friendly name for the discovery job. Does not have to be unique, and it is changeable. Avoid entering confidential information.
|
670
670
|
:param pulumi.Input[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"}`
|
671
671
|
:param pulumi.Input[bool] is_app_defined_relation_discovery_enabled: Indicates if the discovery job should identify potential application-level (non-dictionary) referential relationships between columns. Note that data discovery automatically identifies and adds database-level (dictionary-defined) relationships. This option helps identify application-level relationships that are not defined in the database dictionary, which in turn, helps identify additional sensitive columns and preserve referential integrity during data masking. It's disabled by default and should be used only if there is a need to identify application-level relationships.
|
672
|
-
:param pulumi.Input[bool] is_include_all_schemas: Indicates if all the schemas should be scanned by the discovery job. If it
|
672
|
+
:param pulumi.Input[bool] is_include_all_schemas: Indicates if all the schemas should be scanned by the discovery job. If it is set to true, sensitive data is discovered in all schemas (except for schemas maintained by Oracle). If both attributes are not provided, the configuration from the sensitive data model is used.
|
673
673
|
:param pulumi.Input[bool] is_include_all_sensitive_types: Indicates if all the existing sensitive types should be used by the discovery job. If it's set to true, the sensitiveTypeIdsForDiscovery attribute is ignored and all sensitive types are used for data discovery. If both attributes are not provided, the configuration from the sensitive data model is used.
|
674
674
|
:param pulumi.Input[bool] is_sample_data_collection_enabled: Indicates if the discovery job should collect and store sample data values for the discovered columns. Sample data helps review the discovered columns and ensure that they actually contain sensitive data. As it collects original data from the target database, it's disabled by default and should be used only if it's acceptable to store sample data in Data Safe's repository in Oracle Cloud. Note that sample data values are not collected for columns with the following data types: LONG, LOB, RAW, XMLTYPE and BFILE.
|
675
675
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] schemas_for_discoveries: The schemas to be scanned by the discovery job. If not provided, the schemasForDiscovery attribute of the sensitive data model is used to get the list of schemas.
|
@@ -837,7 +837,7 @@ class DiscoveryMod(pulumi.CustomResource):
|
|
837
837
|
:param pulumi.Input[str] display_name: A user-friendly name for the discovery job. Does not have to be unique, and it is changeable. Avoid entering confidential information.
|
838
838
|
:param pulumi.Input[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"}`
|
839
839
|
:param pulumi.Input[bool] is_app_defined_relation_discovery_enabled: Indicates if the discovery job should identify potential application-level (non-dictionary) referential relationships between columns. Note that data discovery automatically identifies and adds database-level (dictionary-defined) relationships. This option helps identify application-level relationships that are not defined in the database dictionary, which in turn, helps identify additional sensitive columns and preserve referential integrity during data masking. It's disabled by default and should be used only if there is a need to identify application-level relationships.
|
840
|
-
:param pulumi.Input[bool] is_include_all_schemas: Indicates if all the schemas should be scanned by the discovery job. If it
|
840
|
+
:param pulumi.Input[bool] is_include_all_schemas: Indicates if all the schemas should be scanned by the discovery job. If it is set to true, sensitive data is discovered in all schemas (except for schemas maintained by Oracle). If both attributes are not provided, the configuration from the sensitive data model is used.
|
841
841
|
:param pulumi.Input[bool] is_include_all_sensitive_types: Indicates if all the existing sensitive types should be used by the discovery job. If it's set to true, the sensitiveTypeIdsForDiscovery attribute is ignored and all sensitive types are used for data discovery. If both attributes are not provided, the configuration from the sensitive data model is used.
|
842
842
|
:param pulumi.Input[bool] is_sample_data_collection_enabled: Indicates if the discovery job should collect and store sample data values for the discovered columns. Sample data helps review the discovered columns and ensure that they actually contain sensitive data. As it collects original data from the target database, it's disabled by default and should be used only if it's acceptable to store sample data in Data Safe's repository in Oracle Cloud. Note that sample data values are not collected for columns with the following data types: LONG, LOB, RAW, XMLTYPE and BFILE.
|
843
843
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] schemas_for_discoveries: The schemas to be scanned by the discovery job. If not provided, the schemasForDiscovery attribute of the sensitive data model is used to get the list of schemas.
|
@@ -940,7 +940,7 @@ class DiscoveryMod(pulumi.CustomResource):
|
|
940
940
|
@pulumi.getter(name="isIncludeAllSchemas")
|
941
941
|
def is_include_all_schemas(self) -> pulumi.Output[bool]:
|
942
942
|
"""
|
943
|
-
Indicates if all the schemas should be scanned by the discovery job. If it
|
943
|
+
Indicates if all the schemas should be scanned by the discovery job. If it is set to true, sensitive data is discovered in all schemas (except for schemas maintained by Oracle). If both attributes are not provided, the configuration from the sensitive data model is used.
|
944
944
|
"""
|
945
945
|
return pulumi.get(self, "is_include_all_schemas")
|
946
946
|
|
@@ -21,7 +21,7 @@ class GetAuditTrailResult:
|
|
21
21
|
"""
|
22
22
|
A collection of values returned by getAuditTrail.
|
23
23
|
"""
|
24
|
-
def __init__(__self__, audit_collection_start_time=None, audit_profile_id=None, audit_trail_id=None, compartment_id=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, is_auto_purge_enabled=None, lifecycle_details=None, resume_trigger=None, state=None, status=None, system_tags=None, target_id=None, time_created=None, time_last_collected=None, time_updated=None, trail_location=None, work_request_id=None):
|
24
|
+
def __init__(__self__, audit_collection_start_time=None, audit_profile_id=None, audit_trail_id=None, compartment_id=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, is_auto_purge_enabled=None, lifecycle_details=None, peer_target_database_key=None, purge_job_details=None, purge_job_status=None, purge_job_time=None, resume_trigger=None, state=None, status=None, system_tags=None, target_id=None, time_created=None, time_last_collected=None, time_updated=None, trail_location=None, trail_source=None, work_request_id=None):
|
25
25
|
if audit_collection_start_time and not isinstance(audit_collection_start_time, str):
|
26
26
|
raise TypeError("Expected argument 'audit_collection_start_time' to be a str")
|
27
27
|
pulumi.set(__self__, "audit_collection_start_time", audit_collection_start_time)
|
@@ -55,6 +55,18 @@ class GetAuditTrailResult:
|
|
55
55
|
if lifecycle_details and not isinstance(lifecycle_details, str):
|
56
56
|
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
57
57
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
58
|
+
if peer_target_database_key and not isinstance(peer_target_database_key, int):
|
59
|
+
raise TypeError("Expected argument 'peer_target_database_key' to be a int")
|
60
|
+
pulumi.set(__self__, "peer_target_database_key", peer_target_database_key)
|
61
|
+
if purge_job_details and not isinstance(purge_job_details, str):
|
62
|
+
raise TypeError("Expected argument 'purge_job_details' to be a str")
|
63
|
+
pulumi.set(__self__, "purge_job_details", purge_job_details)
|
64
|
+
if purge_job_status and not isinstance(purge_job_status, str):
|
65
|
+
raise TypeError("Expected argument 'purge_job_status' to be a str")
|
66
|
+
pulumi.set(__self__, "purge_job_status", purge_job_status)
|
67
|
+
if purge_job_time and not isinstance(purge_job_time, str):
|
68
|
+
raise TypeError("Expected argument 'purge_job_time' to be a str")
|
69
|
+
pulumi.set(__self__, "purge_job_time", purge_job_time)
|
58
70
|
if resume_trigger and not isinstance(resume_trigger, int):
|
59
71
|
raise TypeError("Expected argument 'resume_trigger' to be a int")
|
60
72
|
pulumi.set(__self__, "resume_trigger", resume_trigger)
|
@@ -82,6 +94,9 @@ class GetAuditTrailResult:
|
|
82
94
|
if trail_location and not isinstance(trail_location, str):
|
83
95
|
raise TypeError("Expected argument 'trail_location' to be a str")
|
84
96
|
pulumi.set(__self__, "trail_location", trail_location)
|
97
|
+
if trail_source and not isinstance(trail_source, str):
|
98
|
+
raise TypeError("Expected argument 'trail_source' to be a str")
|
99
|
+
pulumi.set(__self__, "trail_source", trail_source)
|
85
100
|
if work_request_id and not isinstance(work_request_id, str):
|
86
101
|
raise TypeError("Expected argument 'work_request_id' to be a str")
|
87
102
|
pulumi.set(__self__, "work_request_id", work_request_id)
|
@@ -171,6 +186,38 @@ class GetAuditTrailResult:
|
|
171
186
|
"""
|
172
187
|
return pulumi.get(self, "lifecycle_details")
|
173
188
|
|
189
|
+
@property
|
190
|
+
@pulumi.getter(name="peerTargetDatabaseKey")
|
191
|
+
def peer_target_database_key(self) -> int:
|
192
|
+
"""
|
193
|
+
The secondary id assigned for the peer database registered with Data Safe.
|
194
|
+
"""
|
195
|
+
return pulumi.get(self, "peer_target_database_key")
|
196
|
+
|
197
|
+
@property
|
198
|
+
@pulumi.getter(name="purgeJobDetails")
|
199
|
+
def purge_job_details(self) -> str:
|
200
|
+
"""
|
201
|
+
The details of the audit trail purge job that ran on the "purgeJobTime".
|
202
|
+
"""
|
203
|
+
return pulumi.get(self, "purge_job_details")
|
204
|
+
|
205
|
+
@property
|
206
|
+
@pulumi.getter(name="purgeJobStatus")
|
207
|
+
def purge_job_status(self) -> str:
|
208
|
+
"""
|
209
|
+
The current status of the audit trail purge job.
|
210
|
+
"""
|
211
|
+
return pulumi.get(self, "purge_job_status")
|
212
|
+
|
213
|
+
@property
|
214
|
+
@pulumi.getter(name="purgeJobTime")
|
215
|
+
def purge_job_time(self) -> str:
|
216
|
+
"""
|
217
|
+
The date and time of the last purge job, which deletes audit data in the target database every seven days so that the database's audit trail does not become too large. In the format defined by RFC3339.
|
218
|
+
"""
|
219
|
+
return pulumi.get(self, "purge_job_time")
|
220
|
+
|
174
221
|
@property
|
175
222
|
@pulumi.getter(name="resumeTrigger")
|
176
223
|
def resume_trigger(self) -> int:
|
@@ -240,6 +287,14 @@ class GetAuditTrailResult:
|
|
240
287
|
"""
|
241
288
|
return pulumi.get(self, "trail_location")
|
242
289
|
|
290
|
+
@property
|
291
|
+
@pulumi.getter(name="trailSource")
|
292
|
+
def trail_source(self) -> str:
|
293
|
+
"""
|
294
|
+
The underlying source of unified audit trail.
|
295
|
+
"""
|
296
|
+
return pulumi.get(self, "trail_source")
|
297
|
+
|
243
298
|
@property
|
244
299
|
@pulumi.getter(name="workRequestId")
|
245
300
|
def work_request_id(self) -> str:
|
@@ -266,6 +321,10 @@ class AwaitableGetAuditTrailResult(GetAuditTrailResult):
|
|
266
321
|
id=self.id,
|
267
322
|
is_auto_purge_enabled=self.is_auto_purge_enabled,
|
268
323
|
lifecycle_details=self.lifecycle_details,
|
324
|
+
peer_target_database_key=self.peer_target_database_key,
|
325
|
+
purge_job_details=self.purge_job_details,
|
326
|
+
purge_job_status=self.purge_job_status,
|
327
|
+
purge_job_time=self.purge_job_time,
|
269
328
|
resume_trigger=self.resume_trigger,
|
270
329
|
state=self.state,
|
271
330
|
status=self.status,
|
@@ -275,6 +334,7 @@ class AwaitableGetAuditTrailResult(GetAuditTrailResult):
|
|
275
334
|
time_last_collected=self.time_last_collected,
|
276
335
|
time_updated=self.time_updated,
|
277
336
|
trail_location=self.trail_location,
|
337
|
+
trail_source=self.trail_source,
|
278
338
|
work_request_id=self.work_request_id)
|
279
339
|
|
280
340
|
|
@@ -314,6 +374,10 @@ def get_audit_trail(audit_trail_id: Optional[str] = None,
|
|
314
374
|
id=pulumi.get(__ret__, 'id'),
|
315
375
|
is_auto_purge_enabled=pulumi.get(__ret__, 'is_auto_purge_enabled'),
|
316
376
|
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
377
|
+
peer_target_database_key=pulumi.get(__ret__, 'peer_target_database_key'),
|
378
|
+
purge_job_details=pulumi.get(__ret__, 'purge_job_details'),
|
379
|
+
purge_job_status=pulumi.get(__ret__, 'purge_job_status'),
|
380
|
+
purge_job_time=pulumi.get(__ret__, 'purge_job_time'),
|
317
381
|
resume_trigger=pulumi.get(__ret__, 'resume_trigger'),
|
318
382
|
state=pulumi.get(__ret__, 'state'),
|
319
383
|
status=pulumi.get(__ret__, 'status'),
|
@@ -323,6 +387,7 @@ def get_audit_trail(audit_trail_id: Optional[str] = None,
|
|
323
387
|
time_last_collected=pulumi.get(__ret__, 'time_last_collected'),
|
324
388
|
time_updated=pulumi.get(__ret__, 'time_updated'),
|
325
389
|
trail_location=pulumi.get(__ret__, 'trail_location'),
|
390
|
+
trail_source=pulumi.get(__ret__, 'trail_source'),
|
326
391
|
work_request_id=pulumi.get(__ret__, 'work_request_id'))
|
327
392
|
|
328
393
|
|
@@ -163,7 +163,7 @@ class GetDiscoveryJobResult:
|
|
163
163
|
@pulumi.getter(name="isIncludeAllSchemas")
|
164
164
|
def is_include_all_schemas(self) -> bool:
|
165
165
|
"""
|
166
|
-
Indicates if all the schemas in the associated target database are used for data discovery. If it
|
166
|
+
Indicates if all the schemas in the associated target database are used for data discovery. If it is set to true, sensitive data is discovered in all schemas (except for schemas maintained by Oracle).
|
167
167
|
"""
|
168
168
|
return pulumi.get(self, "is_include_all_schemas")
|
169
169
|
|
@@ -166,7 +166,7 @@ class GetDiscoveryJobsResultResult:
|
|
166
166
|
@pulumi.getter(name="isResultApplied")
|
167
167
|
def is_result_applied(self) -> bool:
|
168
168
|
"""
|
169
|
-
Indicates
|
169
|
+
Indicates whether the discovery result has been processed. You can update this attribute using the PatchDiscoveryJobResults operation to track whether the discovery result has already been processed and applied to the sensitive data model.
|
170
170
|
"""
|
171
171
|
return pulumi.get(self, "is_result_applied")
|
172
172
|
|
@@ -104,7 +104,7 @@ class GetDiscoveryJobsResultsResult:
|
|
104
104
|
@pulumi.getter(name="isResultApplied")
|
105
105
|
def is_result_applied(self) -> Optional[bool]:
|
106
106
|
"""
|
107
|
-
Indicates
|
107
|
+
Indicates whether the discovery result has been processed. You can update this attribute using the PatchDiscoveryJobResults operation to track whether the discovery result has already been processed and applied to the sensitive data model.
|
108
108
|
"""
|
109
109
|
return pulumi.get(self, "is_result_applied")
|
110
110
|
|
@@ -111,7 +111,7 @@ class GetMaskingPoliciesMaskingColumnResult:
|
|
111
111
|
@pulumi.getter(name="isMaskingEnabled")
|
112
112
|
def is_masking_enabled(self) -> bool:
|
113
113
|
"""
|
114
|
-
Indicates
|
114
|
+
Indicates whether data masking is enabled for the masking column.
|
115
115
|
"""
|
116
116
|
return pulumi.get(self, "is_masking_enabled")
|
117
117
|
|
@@ -112,7 +112,7 @@ class GetMaskingPoliciesMaskingColumnsResult:
|
|
112
112
|
@pulumi.getter(name="isMaskingEnabled")
|
113
113
|
def is_masking_enabled(self) -> Optional[bool]:
|
114
114
|
"""
|
115
|
-
Indicates
|
115
|
+
Indicates whether data masking is enabled for the masking column.
|
116
116
|
"""
|
117
117
|
return pulumi.get(self, "is_masking_enabled")
|
118
118
|
|
@@ -199,7 +199,7 @@ class GetMaskingPolicyResult:
|
|
199
199
|
@pulumi.getter
|
200
200
|
def recompile(self) -> str:
|
201
201
|
"""
|
202
|
-
Specifies how to recompile invalid objects post data masking. Allowed values are 'SERIAL' (recompile in serial), 'PARALLEL' (recompile in parallel), 'NONE' (do not recompile). If it's set to PARALLEL, the value of parallelDegree attribute is used.
|
202
|
+
Specifies how to recompile invalid objects post data masking. Allowed values are 'SERIAL' (recompile in serial), 'PARALLEL' (recompile in parallel), 'NONE' (do not recompile). If it's set to PARALLEL, the value of parallelDegree attribute is used. Use the built-in UTL_RECOMP package to recompile any remaining invalid objects after masking completes.
|
203
203
|
"""
|
204
204
|
return pulumi.get(self, "recompile")
|
205
205
|
|
@@ -279,7 +279,7 @@ class GetSecurityAssessmentResult:
|
|
279
279
|
@pulumi.getter(name="timeCreated")
|
280
280
|
def time_created(self) -> str:
|
281
281
|
"""
|
282
|
-
The date and time
|
282
|
+
The date and time the security assessment was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
283
283
|
"""
|
284
284
|
return pulumi.get(self, "time_created")
|
285
285
|
|
@@ -287,7 +287,7 @@ class GetSecurityAssessmentResult:
|
|
287
287
|
@pulumi.getter(name="timeLastAssessed")
|
288
288
|
def time_last_assessed(self) -> str:
|
289
289
|
"""
|
290
|
-
The date and time
|
290
|
+
The date and time the security assessment was last executed, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
291
291
|
"""
|
292
292
|
return pulumi.get(self, "time_last_assessed")
|
293
293
|
|
@@ -295,7 +295,7 @@ class GetSecurityAssessmentResult:
|
|
295
295
|
@pulumi.getter(name="timeUpdated")
|
296
296
|
def time_updated(self) -> str:
|
297
297
|
"""
|
298
|
-
The date and time
|
298
|
+
The date and time the security assessment was last updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
299
299
|
"""
|
300
300
|
return pulumi.get(self, "time_updated")
|
301
301
|
|
@@ -75,7 +75,7 @@ class GetSecurityAssessmentComparisonResult:
|
|
75
75
|
@pulumi.getter
|
76
76
|
def state(self) -> str:
|
77
77
|
"""
|
78
|
-
The current state of the
|
78
|
+
The current state of the finding.
|
79
79
|
"""
|
80
80
|
return pulumi.get(self, "state")
|
81
81
|
|
@@ -117,7 +117,7 @@ def get_security_assessment_comparison(comparison_security_assessment_id: Option
|
|
117
117
|
"""
|
118
118
|
This data source provides details about a specific Security Assessment Comparison resource in Oracle Cloud Infrastructure Data Safe service.
|
119
119
|
|
120
|
-
Gets the details of the comparison report
|
120
|
+
Gets the details of the comparison report for the security assessments submitted for comparison.
|
121
121
|
|
122
122
|
## Example Usage
|
123
123
|
|
@@ -130,7 +130,7 @@ def get_security_assessment_comparison(comparison_security_assessment_id: Option
|
|
130
130
|
```
|
131
131
|
|
132
132
|
|
133
|
-
:param str comparison_security_assessment_id: The OCID of the
|
133
|
+
:param str comparison_security_assessment_id: The OCID of the security assessment baseline.
|
134
134
|
:param str security_assessment_id: The OCID of the security assessment.
|
135
135
|
"""
|
136
136
|
__args__ = dict()
|
@@ -156,7 +156,7 @@ def get_security_assessment_comparison_output(comparison_security_assessment_id:
|
|
156
156
|
"""
|
157
157
|
This data source provides details about a specific Security Assessment Comparison resource in Oracle Cloud Infrastructure Data Safe service.
|
158
158
|
|
159
|
-
Gets the details of the comparison report
|
159
|
+
Gets the details of the comparison report for the security assessments submitted for comparison.
|
160
160
|
|
161
161
|
## Example Usage
|
162
162
|
|
@@ -169,7 +169,7 @@ def get_security_assessment_comparison_output(comparison_security_assessment_id:
|
|
169
169
|
```
|
170
170
|
|
171
171
|
|
172
|
-
:param str comparison_security_assessment_id: The OCID of the
|
172
|
+
:param str comparison_security_assessment_id: The OCID of the security assessment baseline.
|
173
173
|
:param str security_assessment_id: The OCID of the security assessment.
|
174
174
|
"""
|
175
175
|
...
|