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.
Files changed (111) hide show
  1. pulumi_oci/__init__.py +59 -0
  2. pulumi_oci/adm/_inputs.py +99 -18
  3. pulumi_oci/adm/get_remediation_run_application_dependency_recommendations.py +23 -3
  4. pulumi_oci/adm/get_vulnerability_audit.py +31 -5
  5. pulumi_oci/adm/get_vulnerability_audit_application_dependency_vulnerabilities.py +43 -6
  6. pulumi_oci/adm/get_vulnerability_audit_application_dependency_vulnerability.py +27 -1
  7. pulumi_oci/adm/get_vulnerability_audits.py +54 -3
  8. pulumi_oci/adm/outputs.py +296 -31
  9. pulumi_oci/adm/remediation_recipe.py +2 -0
  10. pulumi_oci/adm/vulnerability_audit.py +96 -37
  11. pulumi_oci/database/__init__.py +1 -0
  12. pulumi_oci/database/_inputs.py +40 -0
  13. pulumi_oci/database/cloud_vm_cluster.py +22 -1
  14. pulumi_oci/database/get_system_versions.py +173 -0
  15. pulumi_oci/database/outputs.py +88 -0
  16. pulumi_oci/database/vm_cluster.py +22 -1
  17. pulumi_oci/datasafe/__init__.py +22 -0
  18. pulumi_oci/datasafe/_inputs.py +1826 -161
  19. pulumi_oci/datasafe/audit_trail.py +140 -0
  20. pulumi_oci/datasafe/discovery_mod.py +7 -7
  21. pulumi_oci/datasafe/get_audit_trail.py +66 -1
  22. pulumi_oci/datasafe/get_discovery_job.py +1 -1
  23. pulumi_oci/datasafe/get_discovery_jobs_result.py +1 -1
  24. pulumi_oci/datasafe/get_discovery_jobs_results.py +1 -1
  25. pulumi_oci/datasafe/get_masking_policies_masking_column.py +1 -1
  26. pulumi_oci/datasafe/get_masking_policies_masking_columns.py +1 -1
  27. pulumi_oci/datasafe/get_masking_policy.py +1 -1
  28. pulumi_oci/datasafe/get_report.py +1 -1
  29. pulumi_oci/datasafe/get_security_assessment.py +3 -3
  30. pulumi_oci/datasafe/get_security_assessment_comparison.py +5 -5
  31. pulumi_oci/datasafe/get_security_assessment_finding.py +29 -3
  32. pulumi_oci/datasafe/get_security_assessment_finding_analytics.py +276 -0
  33. pulumi_oci/datasafe/get_security_assessment_findings.py +43 -7
  34. pulumi_oci/datasafe/get_security_assessment_findings_change_audit_logs.py +309 -0
  35. pulumi_oci/datasafe/get_security_assessment_security_feature_analytics.py +198 -0
  36. pulumi_oci/datasafe/get_security_assessment_security_features.py +377 -0
  37. pulumi_oci/datasafe/get_security_assessments.py +2 -2
  38. pulumi_oci/datasafe/get_security_policies.py +253 -0
  39. pulumi_oci/datasafe/get_security_policy.py +235 -0
  40. pulumi_oci/datasafe/get_security_policy_deployment.py +261 -0
  41. pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_state.py +165 -0
  42. pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_states.py +180 -0
  43. pulumi_oci/datasafe/get_security_policy_deployments.py +293 -0
  44. pulumi_oci/datasafe/get_security_policy_report.py +248 -0
  45. pulumi_oci/datasafe/get_security_policy_report_database_table_access_entries.py +158 -0
  46. pulumi_oci/datasafe/get_security_policy_report_database_table_access_entry.py +408 -0
  47. pulumi_oci/datasafe/get_security_policy_report_database_view_access_entries.py +178 -0
  48. pulumi_oci/datasafe/get_security_policy_report_database_view_access_entry.py +382 -0
  49. pulumi_oci/datasafe/get_security_policy_report_role_grant_paths.py +177 -0
  50. pulumi_oci/datasafe/get_security_policy_reports.py +273 -0
  51. pulumi_oci/datasafe/get_sensitive_data_model.py +1 -1
  52. pulumi_oci/datasafe/get_target_database.py +27 -4
  53. pulumi_oci/datasafe/get_target_database_peer_target_database.py +263 -0
  54. pulumi_oci/datasafe/get_target_database_peer_target_databases.py +133 -0
  55. pulumi_oci/datasafe/get_target_databases.py +1 -1
  56. pulumi_oci/datasafe/get_user_assessment.py +5 -5
  57. pulumi_oci/datasafe/get_user_assessment_comparison.py +2 -2
  58. pulumi_oci/datasafe/get_user_assessment_user_access_analytics.py +133 -0
  59. pulumi_oci/datasafe/get_user_assessment_user_analytics.py +2 -2
  60. pulumi_oci/datasafe/get_user_assessment_users.py +42 -2
  61. pulumi_oci/datasafe/get_user_assessments.py +2 -2
  62. pulumi_oci/datasafe/masking_policies_masking_column.py +7 -7
  63. pulumi_oci/datasafe/masking_policy.py +9 -9
  64. pulumi_oci/datasafe/outputs.py +16686 -9777
  65. pulumi_oci/datasafe/report.py +559 -0
  66. pulumi_oci/datasafe/security_assessment.py +12 -12
  67. pulumi_oci/datasafe/sensitive_data_model.py +7 -7
  68. pulumi_oci/datasafe/set_security_assessment_baseline.py +7 -7
  69. pulumi_oci/datasafe/set_user_assessment_baseline.py +7 -7
  70. pulumi_oci/datasafe/target_database.py +146 -25
  71. pulumi_oci/datasafe/target_database_peer_target_database.py +634 -0
  72. pulumi_oci/datasafe/user_assessment.py +20 -20
  73. pulumi_oci/generativeai/__init__.py +18 -0
  74. pulumi_oci/generativeai/_inputs.py +534 -0
  75. pulumi_oci/generativeai/dedicated_ai_cluster.py +808 -0
  76. pulumi_oci/generativeai/endpoint.py +717 -0
  77. pulumi_oci/generativeai/get_dedicated_ai_cluster.py +288 -0
  78. pulumi_oci/generativeai/get_dedicated_ai_clusters.py +183 -0
  79. pulumi_oci/generativeai/get_endpoint.py +275 -0
  80. pulumi_oci/generativeai/get_endpoints.py +183 -0
  81. pulumi_oci/generativeai/get_model.py +353 -0
  82. pulumi_oci/generativeai/get_models.py +220 -0
  83. pulumi_oci/generativeai/model.py +858 -0
  84. pulumi_oci/generativeai/outputs.py +1721 -0
  85. pulumi_oci/marketplace/get_publication.py +14 -1
  86. pulumi_oci/marketplace/outputs.py +11 -0
  87. pulumi_oci/marketplace/publication.py +28 -0
  88. pulumi_oci/monitoring/__init__.py +3 -0
  89. pulumi_oci/monitoring/_inputs.py +82 -4
  90. pulumi_oci/monitoring/alarm.py +15 -15
  91. pulumi_oci/monitoring/alarm_suppression.py +745 -0
  92. pulumi_oci/monitoring/get_alarm.py +5 -5
  93. pulumi_oci/monitoring/get_alarm_history_collection.py +4 -4
  94. pulumi_oci/monitoring/get_alarm_statuses.py +3 -1
  95. pulumi_oci/monitoring/get_alarm_suppression.py +276 -0
  96. pulumi_oci/monitoring/get_alarm_suppressions.py +192 -0
  97. pulumi_oci/monitoring/get_metric_data.py +12 -8
  98. pulumi_oci/monitoring/get_metrics.py +2 -2
  99. pulumi_oci/monitoring/outputs.py +355 -50
  100. pulumi_oci/networkfirewall/_inputs.py +25 -20
  101. pulumi_oci/networkfirewall/outputs.py +40 -30
  102. pulumi_oci/stackmonitoring/__init__.py +3 -0
  103. pulumi_oci/stackmonitoring/_inputs.py +143 -0
  104. pulumi_oci/stackmonitoring/get_process_set.py +236 -0
  105. pulumi_oci/stackmonitoring/get_process_sets.py +156 -0
  106. pulumi_oci/stackmonitoring/outputs.py +422 -0
  107. pulumi_oci/stackmonitoring/process_set.py +548 -0
  108. {pulumi_oci-1.19.0a1705693078.dist-info → pulumi_oci-1.20.0.dist-info}/METADATA +1 -1
  109. {pulumi_oci-1.19.0a1705693078.dist-info → pulumi_oci-1.20.0.dist-info}/RECORD +111 -70
  110. {pulumi_oci-1.19.0a1705693078.dist-info → pulumi_oci-1.20.0.dist-info}/WHEEL +0 -0
  111. {pulumi_oci-1.19.0a1705693078.dist-info → pulumi_oci-1.20.0.dist-info}/top_level.txt +0 -0
@@ -31,6 +31,7 @@ __all__ = [
31
31
  'ReportDefinitionSummaryArgs',
32
32
  'SecurityAssessmentStatisticArgs',
33
33
  'SecurityAssessmentStatisticAdvisoryArgs',
34
+ 'SecurityAssessmentStatisticDeferredArgs',
34
35
  'SecurityAssessmentStatisticEvaluateArgs',
35
36
  'SecurityAssessmentStatisticHighRiskArgs',
36
37
  'SecurityAssessmentStatisticLowRiskArgs',
@@ -39,6 +40,13 @@ __all__ = [
39
40
  'TargetDatabaseConnectionOptionArgs',
40
41
  'TargetDatabaseCredentialsArgs',
41
42
  'TargetDatabaseDatabaseDetailsArgs',
43
+ 'TargetDatabasePeerTargetDatabaseArgs',
44
+ 'TargetDatabasePeerTargetDatabaseDatabaseDetailArgs',
45
+ 'TargetDatabasePeerTargetDatabaseDatabaseDetailsArgs',
46
+ 'TargetDatabasePeerTargetDatabaseDetailArgs',
47
+ 'TargetDatabasePeerTargetDatabaseDetailDatabaseDetailsArgs',
48
+ 'TargetDatabasePeerTargetDatabaseDetailTlsConfigArgs',
49
+ 'TargetDatabasePeerTargetDatabaseTlsConfigArgs',
42
50
  'TargetDatabaseTlsConfigArgs',
43
51
  'UserAssessmentIgnoredTargetArgs',
44
52
  'GetAlertPoliciesFilterArgs',
@@ -68,15 +76,27 @@ __all__ = [
68
76
  'GetReportsFilterArgs',
69
77
  'GetSdmMaskingPolicyDifferenceDifferenceColumnsFilterArgs',
70
78
  'GetSdmMaskingPolicyDifferencesFilterArgs',
79
+ 'GetSecurityAssessmentFindingAnalyticsFilterArgs',
71
80
  'GetSecurityAssessmentFindingFilterArgs',
81
+ 'GetSecurityAssessmentFindingsChangeAuditLogsFilterArgs',
72
82
  'GetSecurityAssessmentFindingsFilterArgs',
83
+ 'GetSecurityAssessmentSecurityFeatureAnalyticsFilterArgs',
84
+ 'GetSecurityAssessmentSecurityFeaturesFilterArgs',
73
85
  'GetSecurityAssessmentsFilterArgs',
86
+ 'GetSecurityPoliciesFilterArgs',
87
+ 'GetSecurityPolicyDeploymentSecurityPolicyEntryStatesFilterArgs',
88
+ 'GetSecurityPolicyDeploymentsFilterArgs',
89
+ 'GetSecurityPolicyReportDatabaseTableAccessEntriesFilterArgs',
90
+ 'GetSecurityPolicyReportDatabaseViewAccessEntriesFilterArgs',
91
+ 'GetSecurityPolicyReportRoleGrantPathsFilterArgs',
92
+ 'GetSecurityPolicyReportsFilterArgs',
74
93
  'GetSensitiveDataModelSensitiveObjectsFilterArgs',
75
94
  'GetSensitiveDataModelSensitiveSchemasFilterArgs',
76
95
  'GetSensitiveDataModelsFilterArgs',
77
96
  'GetSensitiveDataModelsSensitiveColumnsFilterArgs',
78
97
  'GetSensitiveTypesFilterArgs',
79
98
  'GetTargetAlertPolicyAssociationsFilterArgs',
99
+ 'GetTargetDatabasePeerTargetDatabasesFilterArgs',
80
100
  'GetTargetDatabaseRoleFilterArgs',
81
101
  'GetTargetDatabaseRolesFilterArgs',
82
102
  'GetTargetDatabasesColumnsFilterArgs',
@@ -85,6 +105,7 @@ __all__ = [
85
105
  'GetTargetDatabasesTablesFilterArgs',
86
106
  'GetUserAssessmentProfileAnalyticsFilterArgs',
87
107
  'GetUserAssessmentProfilesFilterArgs',
108
+ 'GetUserAssessmentUserAccessAnalyticsFilterArgs',
88
109
  'GetUserAssessmentUserAnalyticsFilterArgs',
89
110
  'GetUserAssessmentUsersFilterArgs',
90
111
  'GetUserAssessmentsFilterArgs',
@@ -773,6 +794,10 @@ class AuditProfileAuditTrailArgs:
773
794
  id: Optional[pulumi.Input[str]] = None,
774
795
  is_auto_purge_enabled: Optional[pulumi.Input[bool]] = None,
775
796
  lifecycle_details: Optional[pulumi.Input[str]] = None,
797
+ peer_target_database_key: Optional[pulumi.Input[int]] = None,
798
+ purge_job_details: Optional[pulumi.Input[str]] = None,
799
+ purge_job_status: Optional[pulumi.Input[str]] = None,
800
+ purge_job_time: Optional[pulumi.Input[str]] = None,
776
801
  state: Optional[pulumi.Input[str]] = None,
777
802
  status: Optional[pulumi.Input[str]] = None,
778
803
  system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
@@ -781,6 +806,7 @@ class AuditProfileAuditTrailArgs:
781
806
  time_last_collected: Optional[pulumi.Input[str]] = None,
782
807
  time_updated: Optional[pulumi.Input[str]] = None,
783
808
  trail_location: Optional[pulumi.Input[str]] = None,
809
+ trail_source: Optional[pulumi.Input[str]] = None,
784
810
  work_request_id: Optional[pulumi.Input[str]] = None):
785
811
  """
786
812
  :param pulumi.Input[str] audit_collection_start_time: The date from which the audit trail must start collecting data, in the format defined by RFC3339.
@@ -793,6 +819,10 @@ class AuditProfileAuditTrailArgs:
793
819
  :param pulumi.Input[str] id: The OCID of the audit profile.
794
820
  :param pulumi.Input[bool] is_auto_purge_enabled: 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.
795
821
  :param pulumi.Input[str] lifecycle_details: Details about the current state of the audit profile in Data Safe.
822
+ :param pulumi.Input[int] peer_target_database_key: The secondary id assigned for the peer database registered with Data Safe.
823
+ :param pulumi.Input[str] purge_job_details: The details of the audit trail purge job that ran on the "purgeJobTime".
824
+ :param pulumi.Input[str] purge_job_status: The current status of the audit trail purge job.
825
+ :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.
796
826
  :param pulumi.Input[str] state: The current state of the audit profile.
797
827
  :param pulumi.Input[str] status: The current sub-state of the audit trail.
798
828
  :param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
@@ -801,6 +831,7 @@ class AuditProfileAuditTrailArgs:
801
831
  :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.
802
832
  :param pulumi.Input[str] time_updated: The date and time the audit profile was updated, in the format defined by RFC3339.
803
833
  :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.
834
+ :param pulumi.Input[str] trail_source: The underlying source of unified audit trail.
804
835
  :param pulumi.Input[str] work_request_id: The OCID of the workrequest for audit trail which collects audit records.
805
836
  """
806
837
  if audit_collection_start_time is not None:
@@ -823,6 +854,14 @@ class AuditProfileAuditTrailArgs:
823
854
  pulumi.set(__self__, "is_auto_purge_enabled", is_auto_purge_enabled)
824
855
  if lifecycle_details is not None:
825
856
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
857
+ if peer_target_database_key is not None:
858
+ pulumi.set(__self__, "peer_target_database_key", peer_target_database_key)
859
+ if purge_job_details is not None:
860
+ pulumi.set(__self__, "purge_job_details", purge_job_details)
861
+ if purge_job_status is not None:
862
+ pulumi.set(__self__, "purge_job_status", purge_job_status)
863
+ if purge_job_time is not None:
864
+ pulumi.set(__self__, "purge_job_time", purge_job_time)
826
865
  if state is not None:
827
866
  pulumi.set(__self__, "state", state)
828
867
  if status is not None:
@@ -839,6 +878,8 @@ class AuditProfileAuditTrailArgs:
839
878
  pulumi.set(__self__, "time_updated", time_updated)
840
879
  if trail_location is not None:
841
880
  pulumi.set(__self__, "trail_location", trail_location)
881
+ if trail_source is not None:
882
+ pulumi.set(__self__, "trail_source", trail_source)
842
883
  if work_request_id is not None:
843
884
  pulumi.set(__self__, "work_request_id", work_request_id)
844
885
 
@@ -962,6 +1003,54 @@ class AuditProfileAuditTrailArgs:
962
1003
  def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
963
1004
  pulumi.set(self, "lifecycle_details", value)
964
1005
 
1006
+ @property
1007
+ @pulumi.getter(name="peerTargetDatabaseKey")
1008
+ def peer_target_database_key(self) -> Optional[pulumi.Input[int]]:
1009
+ """
1010
+ The secondary id assigned for the peer database registered with Data Safe.
1011
+ """
1012
+ return pulumi.get(self, "peer_target_database_key")
1013
+
1014
+ @peer_target_database_key.setter
1015
+ def peer_target_database_key(self, value: Optional[pulumi.Input[int]]):
1016
+ pulumi.set(self, "peer_target_database_key", value)
1017
+
1018
+ @property
1019
+ @pulumi.getter(name="purgeJobDetails")
1020
+ def purge_job_details(self) -> Optional[pulumi.Input[str]]:
1021
+ """
1022
+ The details of the audit trail purge job that ran on the "purgeJobTime".
1023
+ """
1024
+ return pulumi.get(self, "purge_job_details")
1025
+
1026
+ @purge_job_details.setter
1027
+ def purge_job_details(self, value: Optional[pulumi.Input[str]]):
1028
+ pulumi.set(self, "purge_job_details", value)
1029
+
1030
+ @property
1031
+ @pulumi.getter(name="purgeJobStatus")
1032
+ def purge_job_status(self) -> Optional[pulumi.Input[str]]:
1033
+ """
1034
+ The current status of the audit trail purge job.
1035
+ """
1036
+ return pulumi.get(self, "purge_job_status")
1037
+
1038
+ @purge_job_status.setter
1039
+ def purge_job_status(self, value: Optional[pulumi.Input[str]]):
1040
+ pulumi.set(self, "purge_job_status", value)
1041
+
1042
+ @property
1043
+ @pulumi.getter(name="purgeJobTime")
1044
+ def purge_job_time(self) -> Optional[pulumi.Input[str]]:
1045
+ """
1046
+ 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.
1047
+ """
1048
+ return pulumi.get(self, "purge_job_time")
1049
+
1050
+ @purge_job_time.setter
1051
+ def purge_job_time(self, value: Optional[pulumi.Input[str]]):
1052
+ pulumi.set(self, "purge_job_time", value)
1053
+
965
1054
  @property
966
1055
  @pulumi.getter
967
1056
  def state(self) -> Optional[pulumi.Input[str]]:
@@ -1058,6 +1147,18 @@ class AuditProfileAuditTrailArgs:
1058
1147
  def trail_location(self, value: Optional[pulumi.Input[str]]):
1059
1148
  pulumi.set(self, "trail_location", value)
1060
1149
 
1150
+ @property
1151
+ @pulumi.getter(name="trailSource")
1152
+ def trail_source(self) -> Optional[pulumi.Input[str]]:
1153
+ """
1154
+ The underlying source of unified audit trail.
1155
+ """
1156
+ return pulumi.get(self, "trail_source")
1157
+
1158
+ @trail_source.setter
1159
+ def trail_source(self, value: Optional[pulumi.Input[str]]):
1160
+ pulumi.set(self, "trail_source", value)
1161
+
1061
1162
  @property
1062
1163
  @pulumi.getter(name="workRequestId")
1063
1164
  def work_request_id(self) -> Optional[pulumi.Input[str]]:
@@ -2523,6 +2624,7 @@ class ReportDefinitionSummaryArgs:
2523
2624
  class SecurityAssessmentStatisticArgs:
2524
2625
  def __init__(__self__, *,
2525
2626
  advisories: Optional[pulumi.Input[Sequence[pulumi.Input['SecurityAssessmentStatisticAdvisoryArgs']]]] = None,
2627
+ deferreds: Optional[pulumi.Input[Sequence[pulumi.Input['SecurityAssessmentStatisticDeferredArgs']]]] = None,
2526
2628
  evaluates: Optional[pulumi.Input[Sequence[pulumi.Input['SecurityAssessmentStatisticEvaluateArgs']]]] = None,
2527
2629
  high_risks: Optional[pulumi.Input[Sequence[pulumi.Input['SecurityAssessmentStatisticHighRiskArgs']]]] = None,
2528
2630
  low_risks: Optional[pulumi.Input[Sequence[pulumi.Input['SecurityAssessmentStatisticLowRiskArgs']]]] = None,
@@ -2531,6 +2633,7 @@ class SecurityAssessmentStatisticArgs:
2531
2633
  targets_count: Optional[pulumi.Input[int]] = None):
2532
2634
  """
2533
2635
  :param pulumi.Input[Sequence[pulumi.Input['SecurityAssessmentStatisticAdvisoryArgs']]] advisories: Statistics showing the number of findings with a particular risk level for each category.
2636
+ :param pulumi.Input[Sequence[pulumi.Input['SecurityAssessmentStatisticDeferredArgs']]] deferreds: Statistics showing the number of findings with a particular risk level for each category.
2534
2637
  :param pulumi.Input[Sequence[pulumi.Input['SecurityAssessmentStatisticEvaluateArgs']]] evaluates: Statistics showing the number of findings with a particular risk level for each category.
2535
2638
  :param pulumi.Input[Sequence[pulumi.Input['SecurityAssessmentStatisticHighRiskArgs']]] high_risks: Statistics showing the number of findings with a particular risk level for each category.
2536
2639
  :param pulumi.Input[Sequence[pulumi.Input['SecurityAssessmentStatisticLowRiskArgs']]] low_risks: Statistics showing the number of findings with a particular risk level for each category.
@@ -2540,6 +2643,8 @@ class SecurityAssessmentStatisticArgs:
2540
2643
  """
2541
2644
  if advisories is not None:
2542
2645
  pulumi.set(__self__, "advisories", advisories)
2646
+ if deferreds is not None:
2647
+ pulumi.set(__self__, "deferreds", deferreds)
2543
2648
  if evaluates is not None:
2544
2649
  pulumi.set(__self__, "evaluates", evaluates)
2545
2650
  if high_risks is not None:
@@ -2565,6 +2670,18 @@ class SecurityAssessmentStatisticArgs:
2565
2670
  def advisories(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['SecurityAssessmentStatisticAdvisoryArgs']]]]):
2566
2671
  pulumi.set(self, "advisories", value)
2567
2672
 
2673
+ @property
2674
+ @pulumi.getter
2675
+ def deferreds(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SecurityAssessmentStatisticDeferredArgs']]]]:
2676
+ """
2677
+ Statistics showing the number of findings with a particular risk level for each category.
2678
+ """
2679
+ return pulumi.get(self, "deferreds")
2680
+
2681
+ @deferreds.setter
2682
+ def deferreds(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['SecurityAssessmentStatisticDeferredArgs']]]]):
2683
+ pulumi.set(self, "deferreds", value)
2684
+
2568
2685
  @property
2569
2686
  @pulumi.getter
2570
2687
  def evaluates(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SecurityAssessmentStatisticEvaluateArgs']]]]:
@@ -2773,6 +2890,141 @@ class SecurityAssessmentStatisticAdvisoryArgs:
2773
2890
  pulumi.set(self, "user_accounts_findings_count", value)
2774
2891
 
2775
2892
 
2893
+ @pulumi.input_type
2894
+ class SecurityAssessmentStatisticDeferredArgs:
2895
+ def __init__(__self__, *,
2896
+ auditing_findings_count: Optional[pulumi.Input[int]] = None,
2897
+ authorization_control_findings_count: Optional[pulumi.Input[int]] = None,
2898
+ data_encryption_findings_count: Optional[pulumi.Input[int]] = None,
2899
+ db_configuration_findings_count: Optional[pulumi.Input[int]] = None,
2900
+ fine_grained_access_control_findings_count: Optional[pulumi.Input[int]] = None,
2901
+ privileges_and_roles_findings_count: Optional[pulumi.Input[int]] = None,
2902
+ targets_count: Optional[pulumi.Input[int]] = None,
2903
+ user_accounts_findings_count: Optional[pulumi.Input[int]] = None):
2904
+ """
2905
+ :param pulumi.Input[int] auditing_findings_count: The number of findings in the Auditing category.
2906
+ :param pulumi.Input[int] authorization_control_findings_count: The number of findings in the Authorization Control category.
2907
+ :param pulumi.Input[int] data_encryption_findings_count: The number of findings in the Data Encryption category.
2908
+ :param pulumi.Input[int] db_configuration_findings_count: The number of findings in the Database Configuration category.
2909
+ :param pulumi.Input[int] fine_grained_access_control_findings_count: The number of findings in the Fine-Grained Access Control category.
2910
+ :param pulumi.Input[int] privileges_and_roles_findings_count: The number of findings in the Privileges and Roles category.
2911
+ :param pulumi.Input[int] targets_count: The total number of targets in this security assessment.
2912
+ :param pulumi.Input[int] user_accounts_findings_count: The number of findings in the User Accounts category.
2913
+ """
2914
+ if auditing_findings_count is not None:
2915
+ pulumi.set(__self__, "auditing_findings_count", auditing_findings_count)
2916
+ if authorization_control_findings_count is not None:
2917
+ pulumi.set(__self__, "authorization_control_findings_count", authorization_control_findings_count)
2918
+ if data_encryption_findings_count is not None:
2919
+ pulumi.set(__self__, "data_encryption_findings_count", data_encryption_findings_count)
2920
+ if db_configuration_findings_count is not None:
2921
+ pulumi.set(__self__, "db_configuration_findings_count", db_configuration_findings_count)
2922
+ if fine_grained_access_control_findings_count is not None:
2923
+ pulumi.set(__self__, "fine_grained_access_control_findings_count", fine_grained_access_control_findings_count)
2924
+ if privileges_and_roles_findings_count is not None:
2925
+ pulumi.set(__self__, "privileges_and_roles_findings_count", privileges_and_roles_findings_count)
2926
+ if targets_count is not None:
2927
+ pulumi.set(__self__, "targets_count", targets_count)
2928
+ if user_accounts_findings_count is not None:
2929
+ pulumi.set(__self__, "user_accounts_findings_count", user_accounts_findings_count)
2930
+
2931
+ @property
2932
+ @pulumi.getter(name="auditingFindingsCount")
2933
+ def auditing_findings_count(self) -> Optional[pulumi.Input[int]]:
2934
+ """
2935
+ The number of findings in the Auditing category.
2936
+ """
2937
+ return pulumi.get(self, "auditing_findings_count")
2938
+
2939
+ @auditing_findings_count.setter
2940
+ def auditing_findings_count(self, value: Optional[pulumi.Input[int]]):
2941
+ pulumi.set(self, "auditing_findings_count", value)
2942
+
2943
+ @property
2944
+ @pulumi.getter(name="authorizationControlFindingsCount")
2945
+ def authorization_control_findings_count(self) -> Optional[pulumi.Input[int]]:
2946
+ """
2947
+ The number of findings in the Authorization Control category.
2948
+ """
2949
+ return pulumi.get(self, "authorization_control_findings_count")
2950
+
2951
+ @authorization_control_findings_count.setter
2952
+ def authorization_control_findings_count(self, value: Optional[pulumi.Input[int]]):
2953
+ pulumi.set(self, "authorization_control_findings_count", value)
2954
+
2955
+ @property
2956
+ @pulumi.getter(name="dataEncryptionFindingsCount")
2957
+ def data_encryption_findings_count(self) -> Optional[pulumi.Input[int]]:
2958
+ """
2959
+ The number of findings in the Data Encryption category.
2960
+ """
2961
+ return pulumi.get(self, "data_encryption_findings_count")
2962
+
2963
+ @data_encryption_findings_count.setter
2964
+ def data_encryption_findings_count(self, value: Optional[pulumi.Input[int]]):
2965
+ pulumi.set(self, "data_encryption_findings_count", value)
2966
+
2967
+ @property
2968
+ @pulumi.getter(name="dbConfigurationFindingsCount")
2969
+ def db_configuration_findings_count(self) -> Optional[pulumi.Input[int]]:
2970
+ """
2971
+ The number of findings in the Database Configuration category.
2972
+ """
2973
+ return pulumi.get(self, "db_configuration_findings_count")
2974
+
2975
+ @db_configuration_findings_count.setter
2976
+ def db_configuration_findings_count(self, value: Optional[pulumi.Input[int]]):
2977
+ pulumi.set(self, "db_configuration_findings_count", value)
2978
+
2979
+ @property
2980
+ @pulumi.getter(name="fineGrainedAccessControlFindingsCount")
2981
+ def fine_grained_access_control_findings_count(self) -> Optional[pulumi.Input[int]]:
2982
+ """
2983
+ The number of findings in the Fine-Grained Access Control category.
2984
+ """
2985
+ return pulumi.get(self, "fine_grained_access_control_findings_count")
2986
+
2987
+ @fine_grained_access_control_findings_count.setter
2988
+ def fine_grained_access_control_findings_count(self, value: Optional[pulumi.Input[int]]):
2989
+ pulumi.set(self, "fine_grained_access_control_findings_count", value)
2990
+
2991
+ @property
2992
+ @pulumi.getter(name="privilegesAndRolesFindingsCount")
2993
+ def privileges_and_roles_findings_count(self) -> Optional[pulumi.Input[int]]:
2994
+ """
2995
+ The number of findings in the Privileges and Roles category.
2996
+ """
2997
+ return pulumi.get(self, "privileges_and_roles_findings_count")
2998
+
2999
+ @privileges_and_roles_findings_count.setter
3000
+ def privileges_and_roles_findings_count(self, value: Optional[pulumi.Input[int]]):
3001
+ pulumi.set(self, "privileges_and_roles_findings_count", value)
3002
+
3003
+ @property
3004
+ @pulumi.getter(name="targetsCount")
3005
+ def targets_count(self) -> Optional[pulumi.Input[int]]:
3006
+ """
3007
+ The total number of targets in this security assessment.
3008
+ """
3009
+ return pulumi.get(self, "targets_count")
3010
+
3011
+ @targets_count.setter
3012
+ def targets_count(self, value: Optional[pulumi.Input[int]]):
3013
+ pulumi.set(self, "targets_count", value)
3014
+
3015
+ @property
3016
+ @pulumi.getter(name="userAccountsFindingsCount")
3017
+ def user_accounts_findings_count(self) -> Optional[pulumi.Input[int]]:
3018
+ """
3019
+ The number of findings in the User Accounts category.
3020
+ """
3021
+ return pulumi.get(self, "user_accounts_findings_count")
3022
+
3023
+ @user_accounts_findings_count.setter
3024
+ def user_accounts_findings_count(self, value: Optional[pulumi.Input[int]]):
3025
+ pulumi.set(self, "user_accounts_findings_count", value)
3026
+
3027
+
2776
3028
  @pulumi.input_type
2777
3029
  class SecurityAssessmentStatisticEvaluateArgs:
2778
3030
  def __init__(__self__, *,
@@ -3556,15 +3808,15 @@ class TargetDatabaseDatabaseDetailsArgs:
3556
3808
  service_name: Optional[pulumi.Input[str]] = None,
3557
3809
  vm_cluster_id: Optional[pulumi.Input[str]] = None):
3558
3810
  """
3559
- :param pulumi.Input[str] database_type: (Updatable) The database type.
3560
- :param pulumi.Input[str] infrastructure_type: (Updatable) The infrastructure type the database is running on.
3561
- :param pulumi.Input[str] autonomous_database_id: (Updatable) The OCID of the Autonomous Database registered as a target database in Data Safe.
3562
- :param pulumi.Input[str] db_system_id: (Updatable) The OCID of the cloud database registered as a target database in Data Safe.
3563
- :param pulumi.Input[str] instance_id: (Updatable) The OCID of the compute instance on which the database is running.
3564
- :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_addresses: (Updatable) The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.
3565
- :param pulumi.Input[int] listener_port: (Updatable) The port number of the database listener.
3566
- :param pulumi.Input[str] service_name: (Updatable) The service name of the database registered as target database.
3567
- :param pulumi.Input[str] vm_cluster_id: (Updatable) The OCID of the VM cluster in which the database is running.
3811
+ :param pulumi.Input[str] database_type: The database type.
3812
+ :param pulumi.Input[str] infrastructure_type: The infrastructure type the database is running on.
3813
+ :param pulumi.Input[str] autonomous_database_id: The OCID of the Autonomous Database registered as a target database in Data Safe.
3814
+ :param pulumi.Input[str] db_system_id: The OCID of the cloud database registered as a target database in Data Safe.
3815
+ :param pulumi.Input[str] instance_id: The OCID of the compute instance on which the database is running.
3816
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_addresses: The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.
3817
+ :param pulumi.Input[int] listener_port: The port number of the database listener.
3818
+ :param pulumi.Input[str] service_name: The service name of the database registered as target database.
3819
+ :param pulumi.Input[str] vm_cluster_id: The OCID of the VM cluster in which the database is running.
3568
3820
  """
3569
3821
  pulumi.set(__self__, "database_type", database_type)
3570
3822
  pulumi.set(__self__, "infrastructure_type", infrastructure_type)
@@ -3587,7 +3839,7 @@ class TargetDatabaseDatabaseDetailsArgs:
3587
3839
  @pulumi.getter(name="databaseType")
3588
3840
  def database_type(self) -> pulumi.Input[str]:
3589
3841
  """
3590
- (Updatable) The database type.
3842
+ The database type.
3591
3843
  """
3592
3844
  return pulumi.get(self, "database_type")
3593
3845
 
@@ -3599,7 +3851,7 @@ class TargetDatabaseDatabaseDetailsArgs:
3599
3851
  @pulumi.getter(name="infrastructureType")
3600
3852
  def infrastructure_type(self) -> pulumi.Input[str]:
3601
3853
  """
3602
- (Updatable) The infrastructure type the database is running on.
3854
+ The infrastructure type the database is running on.
3603
3855
  """
3604
3856
  return pulumi.get(self, "infrastructure_type")
3605
3857
 
@@ -3611,7 +3863,7 @@ class TargetDatabaseDatabaseDetailsArgs:
3611
3863
  @pulumi.getter(name="autonomousDatabaseId")
3612
3864
  def autonomous_database_id(self) -> Optional[pulumi.Input[str]]:
3613
3865
  """
3614
- (Updatable) The OCID of the Autonomous Database registered as a target database in Data Safe.
3866
+ The OCID of the Autonomous Database registered as a target database in Data Safe.
3615
3867
  """
3616
3868
  return pulumi.get(self, "autonomous_database_id")
3617
3869
 
@@ -3623,7 +3875,7 @@ class TargetDatabaseDatabaseDetailsArgs:
3623
3875
  @pulumi.getter(name="dbSystemId")
3624
3876
  def db_system_id(self) -> Optional[pulumi.Input[str]]:
3625
3877
  """
3626
- (Updatable) The OCID of the cloud database registered as a target database in Data Safe.
3878
+ The OCID of the cloud database registered as a target database in Data Safe.
3627
3879
  """
3628
3880
  return pulumi.get(self, "db_system_id")
3629
3881
 
@@ -3635,7 +3887,7 @@ class TargetDatabaseDatabaseDetailsArgs:
3635
3887
  @pulumi.getter(name="instanceId")
3636
3888
  def instance_id(self) -> Optional[pulumi.Input[str]]:
3637
3889
  """
3638
- (Updatable) The OCID of the compute instance on which the database is running.
3890
+ The OCID of the compute instance on which the database is running.
3639
3891
  """
3640
3892
  return pulumi.get(self, "instance_id")
3641
3893
 
@@ -3647,7 +3899,7 @@ class TargetDatabaseDatabaseDetailsArgs:
3647
3899
  @pulumi.getter(name="ipAddresses")
3648
3900
  def ip_addresses(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
3649
3901
  """
3650
- (Updatable) The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.
3902
+ The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.
3651
3903
  """
3652
3904
  return pulumi.get(self, "ip_addresses")
3653
3905
 
@@ -3659,7 +3911,7 @@ class TargetDatabaseDatabaseDetailsArgs:
3659
3911
  @pulumi.getter(name="listenerPort")
3660
3912
  def listener_port(self) -> Optional[pulumi.Input[int]]:
3661
3913
  """
3662
- (Updatable) The port number of the database listener.
3914
+ The port number of the database listener.
3663
3915
  """
3664
3916
  return pulumi.get(self, "listener_port")
3665
3917
 
@@ -3671,7 +3923,7 @@ class TargetDatabaseDatabaseDetailsArgs:
3671
3923
  @pulumi.getter(name="serviceName")
3672
3924
  def service_name(self) -> Optional[pulumi.Input[str]]:
3673
3925
  """
3674
- (Updatable) The service name of the database registered as target database.
3926
+ The service name of the database registered as target database.
3675
3927
  """
3676
3928
  return pulumi.get(self, "service_name")
3677
3929
 
@@ -3683,7 +3935,7 @@ class TargetDatabaseDatabaseDetailsArgs:
3683
3935
  @pulumi.getter(name="vmClusterId")
3684
3936
  def vm_cluster_id(self) -> Optional[pulumi.Input[str]]:
3685
3937
  """
3686
- (Updatable) The OCID of the VM cluster in which the database is running.
3938
+ The OCID of the VM cluster in which the database is running.
3687
3939
  """
3688
3940
  return pulumi.get(self, "vm_cluster_id")
3689
3941
 
@@ -3693,156 +3945,1491 @@ class TargetDatabaseDatabaseDetailsArgs:
3693
3945
 
3694
3946
 
3695
3947
  @pulumi.input_type
3696
- class TargetDatabaseTlsConfigArgs:
3948
+ class TargetDatabasePeerTargetDatabaseArgs:
3697
3949
  def __init__(__self__, *,
3698
- status: pulumi.Input[str],
3699
- certificate_store_type: Optional[pulumi.Input[str]] = None,
3700
- key_store_content: Optional[pulumi.Input[str]] = None,
3701
- store_password: Optional[pulumi.Input[str]] = None,
3702
- trust_store_content: Optional[pulumi.Input[str]] = None):
3703
- """
3704
- :param pulumi.Input[str] status: (Updatable) Status to represent whether the database connection is TLS enabled or not.
3705
- :param pulumi.Input[str] certificate_store_type: (Updatable) The format of the certificate store.
3706
- :param pulumi.Input[str] key_store_content: (Updatable) Base64 encoded string of key store file content.
3707
- :param pulumi.Input[str] store_password: (Updatable) The password to read the trust store and key store files, if they are password protected.
3708
- :param pulumi.Input[str] trust_store_content: (Updatable) Base64 encoded string of trust store file content.
3709
-
3710
-
3711
- ** IMPORTANT **
3712
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
3713
- """
3714
- pulumi.set(__self__, "status", status)
3715
- if certificate_store_type is not None:
3716
- pulumi.set(__self__, "certificate_store_type", certificate_store_type)
3717
- if key_store_content is not None:
3718
- pulumi.set(__self__, "key_store_content", key_store_content)
3719
- if store_password is not None:
3720
- pulumi.set(__self__, "store_password", store_password)
3721
- if trust_store_content is not None:
3722
- pulumi.set(__self__, "trust_store_content", trust_store_content)
3950
+ database_details: Optional[pulumi.Input[Sequence[pulumi.Input['TargetDatabasePeerTargetDatabaseDatabaseDetailArgs']]]] = None,
3951
+ database_unique_name: Optional[pulumi.Input[str]] = None,
3952
+ dataguard_association_id: Optional[pulumi.Input[str]] = None,
3953
+ description: Optional[pulumi.Input[str]] = None,
3954
+ display_name: Optional[pulumi.Input[str]] = None,
3955
+ key: Optional[pulumi.Input[int]] = None,
3956
+ lifecycle_details: Optional[pulumi.Input[str]] = None,
3957
+ role: Optional[pulumi.Input[str]] = None,
3958
+ state: Optional[pulumi.Input[str]] = None,
3959
+ time_created: Optional[pulumi.Input[str]] = None,
3960
+ tls_configs: Optional[pulumi.Input[Sequence[pulumi.Input['TargetDatabasePeerTargetDatabaseTlsConfigArgs']]]] = None):
3961
+ """
3962
+ :param pulumi.Input[Sequence[pulumi.Input['TargetDatabasePeerTargetDatabaseDatabaseDetailArgs']]] database_details: Details of the database for the registration in Data Safe.
3963
+ :param pulumi.Input[str] database_unique_name: Unique name of the database associated to the peer target database.
3964
+ :param pulumi.Input[str] dataguard_association_id: The OCID of the Data Guard Association resource in which the database being registered is considered as peer database to the primary database.
3965
+ :param pulumi.Input[str] description: The description of the peer target database in Data Safe.
3966
+ :param pulumi.Input[str] display_name: The display name of the peer target database in Data Safe. The name is modifiable and does not need to be unique.
3967
+ :param pulumi.Input[int] key: The secondary key assigned for the peer target database in Data Safe.
3968
+ :param pulumi.Input[str] lifecycle_details: Details about the current state of the peer target database in Data Safe.
3969
+ :param pulumi.Input[str] role: Role of the database associated to the peer target database.
3970
+ :param pulumi.Input[str] state: The current state of the target database in Data Safe.
3971
+ :param pulumi.Input[str] time_created: The date and time the database was registered in Data Safe and created as a target database in Data Safe.
3972
+ :param pulumi.Input[Sequence[pulumi.Input['TargetDatabasePeerTargetDatabaseTlsConfigArgs']]] tls_configs: (Updatable) The details required to establish a TLS enabled connection.
3973
+ """
3974
+ if database_details is not None:
3975
+ pulumi.set(__self__, "database_details", database_details)
3976
+ if database_unique_name is not None:
3977
+ pulumi.set(__self__, "database_unique_name", database_unique_name)
3978
+ if dataguard_association_id is not None:
3979
+ pulumi.set(__self__, "dataguard_association_id", dataguard_association_id)
3980
+ if description is not None:
3981
+ pulumi.set(__self__, "description", description)
3982
+ if display_name is not None:
3983
+ pulumi.set(__self__, "display_name", display_name)
3984
+ if key is not None:
3985
+ pulumi.set(__self__, "key", key)
3986
+ if lifecycle_details is not None:
3987
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
3988
+ if role is not None:
3989
+ pulumi.set(__self__, "role", role)
3990
+ if state is not None:
3991
+ pulumi.set(__self__, "state", state)
3992
+ if time_created is not None:
3993
+ pulumi.set(__self__, "time_created", time_created)
3994
+ if tls_configs is not None:
3995
+ pulumi.set(__self__, "tls_configs", tls_configs)
3723
3996
 
3724
3997
  @property
3725
- @pulumi.getter
3726
- def status(self) -> pulumi.Input[str]:
3998
+ @pulumi.getter(name="databaseDetails")
3999
+ def database_details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['TargetDatabasePeerTargetDatabaseDatabaseDetailArgs']]]]:
3727
4000
  """
3728
- (Updatable) Status to represent whether the database connection is TLS enabled or not.
4001
+ Details of the database for the registration in Data Safe.
3729
4002
  """
3730
- return pulumi.get(self, "status")
4003
+ return pulumi.get(self, "database_details")
3731
4004
 
3732
- @status.setter
3733
- def status(self, value: pulumi.Input[str]):
3734
- pulumi.set(self, "status", value)
4005
+ @database_details.setter
4006
+ def database_details(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['TargetDatabasePeerTargetDatabaseDatabaseDetailArgs']]]]):
4007
+ pulumi.set(self, "database_details", value)
3735
4008
 
3736
4009
  @property
3737
- @pulumi.getter(name="certificateStoreType")
3738
- def certificate_store_type(self) -> Optional[pulumi.Input[str]]:
4010
+ @pulumi.getter(name="databaseUniqueName")
4011
+ def database_unique_name(self) -> Optional[pulumi.Input[str]]:
3739
4012
  """
3740
- (Updatable) The format of the certificate store.
4013
+ Unique name of the database associated to the peer target database.
3741
4014
  """
3742
- return pulumi.get(self, "certificate_store_type")
4015
+ return pulumi.get(self, "database_unique_name")
3743
4016
 
3744
- @certificate_store_type.setter
3745
- def certificate_store_type(self, value: Optional[pulumi.Input[str]]):
3746
- pulumi.set(self, "certificate_store_type", value)
4017
+ @database_unique_name.setter
4018
+ def database_unique_name(self, value: Optional[pulumi.Input[str]]):
4019
+ pulumi.set(self, "database_unique_name", value)
3747
4020
 
3748
4021
  @property
3749
- @pulumi.getter(name="keyStoreContent")
3750
- def key_store_content(self) -> Optional[pulumi.Input[str]]:
4022
+ @pulumi.getter(name="dataguardAssociationId")
4023
+ def dataguard_association_id(self) -> Optional[pulumi.Input[str]]:
3751
4024
  """
3752
- (Updatable) Base64 encoded string of key store file content.
4025
+ The OCID of the Data Guard Association resource in which the database being registered is considered as peer database to the primary database.
3753
4026
  """
3754
- return pulumi.get(self, "key_store_content")
4027
+ return pulumi.get(self, "dataguard_association_id")
3755
4028
 
3756
- @key_store_content.setter
3757
- def key_store_content(self, value: Optional[pulumi.Input[str]]):
3758
- pulumi.set(self, "key_store_content", value)
4029
+ @dataguard_association_id.setter
4030
+ def dataguard_association_id(self, value: Optional[pulumi.Input[str]]):
4031
+ pulumi.set(self, "dataguard_association_id", value)
3759
4032
 
3760
4033
  @property
3761
- @pulumi.getter(name="storePassword")
3762
- def store_password(self) -> Optional[pulumi.Input[str]]:
4034
+ @pulumi.getter
4035
+ def description(self) -> Optional[pulumi.Input[str]]:
3763
4036
  """
3764
- (Updatable) The password to read the trust store and key store files, if they are password protected.
4037
+ The description of the peer target database in Data Safe.
3765
4038
  """
3766
- return pulumi.get(self, "store_password")
4039
+ return pulumi.get(self, "description")
3767
4040
 
3768
- @store_password.setter
3769
- def store_password(self, value: Optional[pulumi.Input[str]]):
3770
- pulumi.set(self, "store_password", value)
4041
+ @description.setter
4042
+ def description(self, value: Optional[pulumi.Input[str]]):
4043
+ pulumi.set(self, "description", value)
4044
+
4045
+ @property
4046
+ @pulumi.getter(name="displayName")
4047
+ def display_name(self) -> Optional[pulumi.Input[str]]:
4048
+ """
4049
+ The display name of the peer target database in Data Safe. The name is modifiable and does not need to be unique.
4050
+ """
4051
+ return pulumi.get(self, "display_name")
4052
+
4053
+ @display_name.setter
4054
+ def display_name(self, value: Optional[pulumi.Input[str]]):
4055
+ pulumi.set(self, "display_name", value)
4056
+
4057
+ @property
4058
+ @pulumi.getter
4059
+ def key(self) -> Optional[pulumi.Input[int]]:
4060
+ """
4061
+ The secondary key assigned for the peer target database in Data Safe.
4062
+ """
4063
+ return pulumi.get(self, "key")
4064
+
4065
+ @key.setter
4066
+ def key(self, value: Optional[pulumi.Input[int]]):
4067
+ pulumi.set(self, "key", value)
4068
+
4069
+ @property
4070
+ @pulumi.getter(name="lifecycleDetails")
4071
+ def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
4072
+ """
4073
+ Details about the current state of the peer target database in Data Safe.
4074
+ """
4075
+ return pulumi.get(self, "lifecycle_details")
4076
+
4077
+ @lifecycle_details.setter
4078
+ def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
4079
+ pulumi.set(self, "lifecycle_details", value)
4080
+
4081
+ @property
4082
+ @pulumi.getter
4083
+ def role(self) -> Optional[pulumi.Input[str]]:
4084
+ """
4085
+ Role of the database associated to the peer target database.
4086
+ """
4087
+ return pulumi.get(self, "role")
4088
+
4089
+ @role.setter
4090
+ def role(self, value: Optional[pulumi.Input[str]]):
4091
+ pulumi.set(self, "role", value)
4092
+
4093
+ @property
4094
+ @pulumi.getter
4095
+ def state(self) -> Optional[pulumi.Input[str]]:
4096
+ """
4097
+ The current state of the target database in Data Safe.
4098
+ """
4099
+ return pulumi.get(self, "state")
4100
+
4101
+ @state.setter
4102
+ def state(self, value: Optional[pulumi.Input[str]]):
4103
+ pulumi.set(self, "state", value)
4104
+
4105
+ @property
4106
+ @pulumi.getter(name="timeCreated")
4107
+ def time_created(self) -> Optional[pulumi.Input[str]]:
4108
+ """
4109
+ The date and time the database was registered in Data Safe and created as a target database in Data Safe.
4110
+ """
4111
+ return pulumi.get(self, "time_created")
4112
+
4113
+ @time_created.setter
4114
+ def time_created(self, value: Optional[pulumi.Input[str]]):
4115
+ pulumi.set(self, "time_created", value)
4116
+
4117
+ @property
4118
+ @pulumi.getter(name="tlsConfigs")
4119
+ def tls_configs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['TargetDatabasePeerTargetDatabaseTlsConfigArgs']]]]:
4120
+ """
4121
+ (Updatable) The details required to establish a TLS enabled connection.
4122
+ """
4123
+ return pulumi.get(self, "tls_configs")
4124
+
4125
+ @tls_configs.setter
4126
+ def tls_configs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['TargetDatabasePeerTargetDatabaseTlsConfigArgs']]]]):
4127
+ pulumi.set(self, "tls_configs", value)
4128
+
4129
+
4130
+ @pulumi.input_type
4131
+ class TargetDatabasePeerTargetDatabaseDatabaseDetailArgs:
4132
+ def __init__(__self__, *,
4133
+ autonomous_database_id: Optional[pulumi.Input[str]] = None,
4134
+ database_type: Optional[pulumi.Input[str]] = None,
4135
+ db_system_id: Optional[pulumi.Input[str]] = None,
4136
+ infrastructure_type: Optional[pulumi.Input[str]] = None,
4137
+ instance_id: Optional[pulumi.Input[str]] = None,
4138
+ ip_addresses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
4139
+ listener_port: Optional[pulumi.Input[int]] = None,
4140
+ service_name: Optional[pulumi.Input[str]] = None,
4141
+ vm_cluster_id: Optional[pulumi.Input[str]] = None):
4142
+ """
4143
+ :param pulumi.Input[str] autonomous_database_id: The OCID of the Autonomous Database registered as a target database in Data Safe.
4144
+ :param pulumi.Input[str] database_type: The database type.
4145
+ :param pulumi.Input[str] db_system_id: The OCID of the cloud database registered as a target database in Data Safe.
4146
+ :param pulumi.Input[str] infrastructure_type: The infrastructure type the database is running on.
4147
+ :param pulumi.Input[str] instance_id: The OCID of the compute instance on which the database is running.
4148
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_addresses: The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.
4149
+ :param pulumi.Input[int] listener_port: The port number of the database listener.
4150
+ :param pulumi.Input[str] service_name: The service name of the database registered as target database.
4151
+ :param pulumi.Input[str] vm_cluster_id: The OCID of the VM cluster in which the database is running.
4152
+ """
4153
+ if autonomous_database_id is not None:
4154
+ pulumi.set(__self__, "autonomous_database_id", autonomous_database_id)
4155
+ if database_type is not None:
4156
+ pulumi.set(__self__, "database_type", database_type)
4157
+ if db_system_id is not None:
4158
+ pulumi.set(__self__, "db_system_id", db_system_id)
4159
+ if infrastructure_type is not None:
4160
+ pulumi.set(__self__, "infrastructure_type", infrastructure_type)
4161
+ if instance_id is not None:
4162
+ pulumi.set(__self__, "instance_id", instance_id)
4163
+ if ip_addresses is not None:
4164
+ pulumi.set(__self__, "ip_addresses", ip_addresses)
4165
+ if listener_port is not None:
4166
+ pulumi.set(__self__, "listener_port", listener_port)
4167
+ if service_name is not None:
4168
+ pulumi.set(__self__, "service_name", service_name)
4169
+ if vm_cluster_id is not None:
4170
+ pulumi.set(__self__, "vm_cluster_id", vm_cluster_id)
4171
+
4172
+ @property
4173
+ @pulumi.getter(name="autonomousDatabaseId")
4174
+ def autonomous_database_id(self) -> Optional[pulumi.Input[str]]:
4175
+ """
4176
+ The OCID of the Autonomous Database registered as a target database in Data Safe.
4177
+ """
4178
+ return pulumi.get(self, "autonomous_database_id")
4179
+
4180
+ @autonomous_database_id.setter
4181
+ def autonomous_database_id(self, value: Optional[pulumi.Input[str]]):
4182
+ pulumi.set(self, "autonomous_database_id", value)
4183
+
4184
+ @property
4185
+ @pulumi.getter(name="databaseType")
4186
+ def database_type(self) -> Optional[pulumi.Input[str]]:
4187
+ """
4188
+ The database type.
4189
+ """
4190
+ return pulumi.get(self, "database_type")
4191
+
4192
+ @database_type.setter
4193
+ def database_type(self, value: Optional[pulumi.Input[str]]):
4194
+ pulumi.set(self, "database_type", value)
4195
+
4196
+ @property
4197
+ @pulumi.getter(name="dbSystemId")
4198
+ def db_system_id(self) -> Optional[pulumi.Input[str]]:
4199
+ """
4200
+ The OCID of the cloud database registered as a target database in Data Safe.
4201
+ """
4202
+ return pulumi.get(self, "db_system_id")
4203
+
4204
+ @db_system_id.setter
4205
+ def db_system_id(self, value: Optional[pulumi.Input[str]]):
4206
+ pulumi.set(self, "db_system_id", value)
4207
+
4208
+ @property
4209
+ @pulumi.getter(name="infrastructureType")
4210
+ def infrastructure_type(self) -> Optional[pulumi.Input[str]]:
4211
+ """
4212
+ The infrastructure type the database is running on.
4213
+ """
4214
+ return pulumi.get(self, "infrastructure_type")
4215
+
4216
+ @infrastructure_type.setter
4217
+ def infrastructure_type(self, value: Optional[pulumi.Input[str]]):
4218
+ pulumi.set(self, "infrastructure_type", value)
4219
+
4220
+ @property
4221
+ @pulumi.getter(name="instanceId")
4222
+ def instance_id(self) -> Optional[pulumi.Input[str]]:
4223
+ """
4224
+ The OCID of the compute instance on which the database is running.
4225
+ """
4226
+ return pulumi.get(self, "instance_id")
4227
+
4228
+ @instance_id.setter
4229
+ def instance_id(self, value: Optional[pulumi.Input[str]]):
4230
+ pulumi.set(self, "instance_id", value)
4231
+
4232
+ @property
4233
+ @pulumi.getter(name="ipAddresses")
4234
+ def ip_addresses(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
4235
+ """
4236
+ The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.
4237
+ """
4238
+ return pulumi.get(self, "ip_addresses")
4239
+
4240
+ @ip_addresses.setter
4241
+ def ip_addresses(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
4242
+ pulumi.set(self, "ip_addresses", value)
4243
+
4244
+ @property
4245
+ @pulumi.getter(name="listenerPort")
4246
+ def listener_port(self) -> Optional[pulumi.Input[int]]:
4247
+ """
4248
+ The port number of the database listener.
4249
+ """
4250
+ return pulumi.get(self, "listener_port")
4251
+
4252
+ @listener_port.setter
4253
+ def listener_port(self, value: Optional[pulumi.Input[int]]):
4254
+ pulumi.set(self, "listener_port", value)
4255
+
4256
+ @property
4257
+ @pulumi.getter(name="serviceName")
4258
+ def service_name(self) -> Optional[pulumi.Input[str]]:
4259
+ """
4260
+ The service name of the database registered as target database.
4261
+ """
4262
+ return pulumi.get(self, "service_name")
4263
+
4264
+ @service_name.setter
4265
+ def service_name(self, value: Optional[pulumi.Input[str]]):
4266
+ pulumi.set(self, "service_name", value)
4267
+
4268
+ @property
4269
+ @pulumi.getter(name="vmClusterId")
4270
+ def vm_cluster_id(self) -> Optional[pulumi.Input[str]]:
4271
+ """
4272
+ The OCID of the VM cluster in which the database is running.
4273
+ """
4274
+ return pulumi.get(self, "vm_cluster_id")
4275
+
4276
+ @vm_cluster_id.setter
4277
+ def vm_cluster_id(self, value: Optional[pulumi.Input[str]]):
4278
+ pulumi.set(self, "vm_cluster_id", value)
4279
+
4280
+
4281
+ @pulumi.input_type
4282
+ class TargetDatabasePeerTargetDatabaseDatabaseDetailsArgs:
4283
+ def __init__(__self__, *,
4284
+ database_type: pulumi.Input[str],
4285
+ infrastructure_type: pulumi.Input[str],
4286
+ autonomous_database_id: Optional[pulumi.Input[str]] = None,
4287
+ db_system_id: Optional[pulumi.Input[str]] = None,
4288
+ instance_id: Optional[pulumi.Input[str]] = None,
4289
+ ip_addresses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
4290
+ listener_port: Optional[pulumi.Input[int]] = None,
4291
+ service_name: Optional[pulumi.Input[str]] = None,
4292
+ vm_cluster_id: Optional[pulumi.Input[str]] = None):
4293
+ """
4294
+ :param pulumi.Input[str] database_type: (Updatable) The database type.
4295
+ :param pulumi.Input[str] infrastructure_type: (Updatable) The infrastructure type the database is running on.
4296
+ :param pulumi.Input[str] autonomous_database_id: (Updatable) The OCID of the Autonomous Database registered as a target database in Data Safe.
4297
+ :param pulumi.Input[str] db_system_id: (Updatable) The OCID of the cloud database registered as a target database in Data Safe.
4298
+ :param pulumi.Input[str] instance_id: (Updatable) The OCID of the compute instance on which the database is running.
4299
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_addresses: (Updatable) The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.
4300
+ :param pulumi.Input[int] listener_port: (Updatable) The port number of the database listener.
4301
+ :param pulumi.Input[str] service_name: (Updatable) The service name of the database registered as target database.
4302
+ :param pulumi.Input[str] vm_cluster_id: (Updatable) The OCID of the VM cluster in which the database is running.
4303
+ """
4304
+ pulumi.set(__self__, "database_type", database_type)
4305
+ pulumi.set(__self__, "infrastructure_type", infrastructure_type)
4306
+ if autonomous_database_id is not None:
4307
+ pulumi.set(__self__, "autonomous_database_id", autonomous_database_id)
4308
+ if db_system_id is not None:
4309
+ pulumi.set(__self__, "db_system_id", db_system_id)
4310
+ if instance_id is not None:
4311
+ pulumi.set(__self__, "instance_id", instance_id)
4312
+ if ip_addresses is not None:
4313
+ pulumi.set(__self__, "ip_addresses", ip_addresses)
4314
+ if listener_port is not None:
4315
+ pulumi.set(__self__, "listener_port", listener_port)
4316
+ if service_name is not None:
4317
+ pulumi.set(__self__, "service_name", service_name)
4318
+ if vm_cluster_id is not None:
4319
+ pulumi.set(__self__, "vm_cluster_id", vm_cluster_id)
4320
+
4321
+ @property
4322
+ @pulumi.getter(name="databaseType")
4323
+ def database_type(self) -> pulumi.Input[str]:
4324
+ """
4325
+ (Updatable) The database type.
4326
+ """
4327
+ return pulumi.get(self, "database_type")
4328
+
4329
+ @database_type.setter
4330
+ def database_type(self, value: pulumi.Input[str]):
4331
+ pulumi.set(self, "database_type", value)
4332
+
4333
+ @property
4334
+ @pulumi.getter(name="infrastructureType")
4335
+ def infrastructure_type(self) -> pulumi.Input[str]:
4336
+ """
4337
+ (Updatable) The infrastructure type the database is running on.
4338
+ """
4339
+ return pulumi.get(self, "infrastructure_type")
4340
+
4341
+ @infrastructure_type.setter
4342
+ def infrastructure_type(self, value: pulumi.Input[str]):
4343
+ pulumi.set(self, "infrastructure_type", value)
4344
+
4345
+ @property
4346
+ @pulumi.getter(name="autonomousDatabaseId")
4347
+ def autonomous_database_id(self) -> Optional[pulumi.Input[str]]:
4348
+ """
4349
+ (Updatable) The OCID of the Autonomous Database registered as a target database in Data Safe.
4350
+ """
4351
+ return pulumi.get(self, "autonomous_database_id")
4352
+
4353
+ @autonomous_database_id.setter
4354
+ def autonomous_database_id(self, value: Optional[pulumi.Input[str]]):
4355
+ pulumi.set(self, "autonomous_database_id", value)
4356
+
4357
+ @property
4358
+ @pulumi.getter(name="dbSystemId")
4359
+ def db_system_id(self) -> Optional[pulumi.Input[str]]:
4360
+ """
4361
+ (Updatable) The OCID of the cloud database registered as a target database in Data Safe.
4362
+ """
4363
+ return pulumi.get(self, "db_system_id")
4364
+
4365
+ @db_system_id.setter
4366
+ def db_system_id(self, value: Optional[pulumi.Input[str]]):
4367
+ pulumi.set(self, "db_system_id", value)
4368
+
4369
+ @property
4370
+ @pulumi.getter(name="instanceId")
4371
+ def instance_id(self) -> Optional[pulumi.Input[str]]:
4372
+ """
4373
+ (Updatable) The OCID of the compute instance on which the database is running.
4374
+ """
4375
+ return pulumi.get(self, "instance_id")
4376
+
4377
+ @instance_id.setter
4378
+ def instance_id(self, value: Optional[pulumi.Input[str]]):
4379
+ pulumi.set(self, "instance_id", value)
4380
+
4381
+ @property
4382
+ @pulumi.getter(name="ipAddresses")
4383
+ def ip_addresses(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
4384
+ """
4385
+ (Updatable) The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.
4386
+ """
4387
+ return pulumi.get(self, "ip_addresses")
4388
+
4389
+ @ip_addresses.setter
4390
+ def ip_addresses(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
4391
+ pulumi.set(self, "ip_addresses", value)
4392
+
4393
+ @property
4394
+ @pulumi.getter(name="listenerPort")
4395
+ def listener_port(self) -> Optional[pulumi.Input[int]]:
4396
+ """
4397
+ (Updatable) The port number of the database listener.
4398
+ """
4399
+ return pulumi.get(self, "listener_port")
4400
+
4401
+ @listener_port.setter
4402
+ def listener_port(self, value: Optional[pulumi.Input[int]]):
4403
+ pulumi.set(self, "listener_port", value)
4404
+
4405
+ @property
4406
+ @pulumi.getter(name="serviceName")
4407
+ def service_name(self) -> Optional[pulumi.Input[str]]:
4408
+ """
4409
+ (Updatable) The service name of the database registered as target database.
4410
+ """
4411
+ return pulumi.get(self, "service_name")
4412
+
4413
+ @service_name.setter
4414
+ def service_name(self, value: Optional[pulumi.Input[str]]):
4415
+ pulumi.set(self, "service_name", value)
4416
+
4417
+ @property
4418
+ @pulumi.getter(name="vmClusterId")
4419
+ def vm_cluster_id(self) -> Optional[pulumi.Input[str]]:
4420
+ """
4421
+ (Updatable) The OCID of the VM cluster in which the database is running.
4422
+ """
4423
+ return pulumi.get(self, "vm_cluster_id")
4424
+
4425
+ @vm_cluster_id.setter
4426
+ def vm_cluster_id(self, value: Optional[pulumi.Input[str]]):
4427
+ pulumi.set(self, "vm_cluster_id", value)
4428
+
4429
+
4430
+ @pulumi.input_type
4431
+ class TargetDatabasePeerTargetDatabaseDetailArgs:
4432
+ def __init__(__self__, *,
4433
+ database_details: pulumi.Input['TargetDatabasePeerTargetDatabaseDetailDatabaseDetailsArgs'],
4434
+ dataguard_association_id: Optional[pulumi.Input[str]] = None,
4435
+ description: Optional[pulumi.Input[str]] = None,
4436
+ display_name: Optional[pulumi.Input[str]] = None,
4437
+ tls_config: Optional[pulumi.Input['TargetDatabasePeerTargetDatabaseDetailTlsConfigArgs']] = None):
4438
+ """
4439
+ :param pulumi.Input['TargetDatabasePeerTargetDatabaseDetailDatabaseDetailsArgs'] database_details: Details of the database for the registration in Data Safe.
4440
+ :param pulumi.Input[str] dataguard_association_id: The OCID of the Data Guard Association resource in which the database being registered is considered as peer database to the primary database.
4441
+ :param pulumi.Input[str] description: The description of the peer target database in Data Safe.
4442
+ :param pulumi.Input[str] display_name: The display name of the peer target database in Data Safe. The name is modifiable and does not need to be unique.
4443
+ :param pulumi.Input['TargetDatabasePeerTargetDatabaseDetailTlsConfigArgs'] tls_config: (Updatable) The details required to establish a TLS enabled connection.
4444
+ """
4445
+ pulumi.set(__self__, "database_details", database_details)
4446
+ if dataguard_association_id is not None:
4447
+ pulumi.set(__self__, "dataguard_association_id", dataguard_association_id)
4448
+ if description is not None:
4449
+ pulumi.set(__self__, "description", description)
4450
+ if display_name is not None:
4451
+ pulumi.set(__self__, "display_name", display_name)
4452
+ if tls_config is not None:
4453
+ pulumi.set(__self__, "tls_config", tls_config)
4454
+
4455
+ @property
4456
+ @pulumi.getter(name="databaseDetails")
4457
+ def database_details(self) -> pulumi.Input['TargetDatabasePeerTargetDatabaseDetailDatabaseDetailsArgs']:
4458
+ """
4459
+ Details of the database for the registration in Data Safe.
4460
+ """
4461
+ return pulumi.get(self, "database_details")
4462
+
4463
+ @database_details.setter
4464
+ def database_details(self, value: pulumi.Input['TargetDatabasePeerTargetDatabaseDetailDatabaseDetailsArgs']):
4465
+ pulumi.set(self, "database_details", value)
4466
+
4467
+ @property
4468
+ @pulumi.getter(name="dataguardAssociationId")
4469
+ def dataguard_association_id(self) -> Optional[pulumi.Input[str]]:
4470
+ """
4471
+ The OCID of the Data Guard Association resource in which the database being registered is considered as peer database to the primary database.
4472
+ """
4473
+ return pulumi.get(self, "dataguard_association_id")
4474
+
4475
+ @dataguard_association_id.setter
4476
+ def dataguard_association_id(self, value: Optional[pulumi.Input[str]]):
4477
+ pulumi.set(self, "dataguard_association_id", value)
4478
+
4479
+ @property
4480
+ @pulumi.getter
4481
+ def description(self) -> Optional[pulumi.Input[str]]:
4482
+ """
4483
+ The description of the peer target database in Data Safe.
4484
+ """
4485
+ return pulumi.get(self, "description")
4486
+
4487
+ @description.setter
4488
+ def description(self, value: Optional[pulumi.Input[str]]):
4489
+ pulumi.set(self, "description", value)
4490
+
4491
+ @property
4492
+ @pulumi.getter(name="displayName")
4493
+ def display_name(self) -> Optional[pulumi.Input[str]]:
4494
+ """
4495
+ The display name of the peer target database in Data Safe. The name is modifiable and does not need to be unique.
4496
+ """
4497
+ return pulumi.get(self, "display_name")
4498
+
4499
+ @display_name.setter
4500
+ def display_name(self, value: Optional[pulumi.Input[str]]):
4501
+ pulumi.set(self, "display_name", value)
4502
+
4503
+ @property
4504
+ @pulumi.getter(name="tlsConfig")
4505
+ def tls_config(self) -> Optional[pulumi.Input['TargetDatabasePeerTargetDatabaseDetailTlsConfigArgs']]:
4506
+ """
4507
+ (Updatable) The details required to establish a TLS enabled connection.
4508
+ """
4509
+ return pulumi.get(self, "tls_config")
4510
+
4511
+ @tls_config.setter
4512
+ def tls_config(self, value: Optional[pulumi.Input['TargetDatabasePeerTargetDatabaseDetailTlsConfigArgs']]):
4513
+ pulumi.set(self, "tls_config", value)
4514
+
4515
+
4516
+ @pulumi.input_type
4517
+ class TargetDatabasePeerTargetDatabaseDetailDatabaseDetailsArgs:
4518
+ def __init__(__self__, *,
4519
+ database_type: pulumi.Input[str],
4520
+ infrastructure_type: pulumi.Input[str],
4521
+ autonomous_database_id: Optional[pulumi.Input[str]] = None,
4522
+ db_system_id: Optional[pulumi.Input[str]] = None,
4523
+ instance_id: Optional[pulumi.Input[str]] = None,
4524
+ ip_addresses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
4525
+ listener_port: Optional[pulumi.Input[int]] = None,
4526
+ service_name: Optional[pulumi.Input[str]] = None,
4527
+ vm_cluster_id: Optional[pulumi.Input[str]] = None):
4528
+ """
4529
+ :param pulumi.Input[str] database_type: The database type.
4530
+ :param pulumi.Input[str] infrastructure_type: The infrastructure type the database is running on.
4531
+ :param pulumi.Input[str] autonomous_database_id: The OCID of the Autonomous Database registered as a target database in Data Safe.
4532
+ :param pulumi.Input[str] db_system_id: The OCID of the cloud database registered as a target database in Data Safe.
4533
+ :param pulumi.Input[str] instance_id: The OCID of the compute instance on which the database is running.
4534
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_addresses: The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.
4535
+ :param pulumi.Input[int] listener_port: The port number of the database listener.
4536
+ :param pulumi.Input[str] service_name: The service name of the database registered as target database.
4537
+ :param pulumi.Input[str] vm_cluster_id: The OCID of the VM cluster in which the database is running.
4538
+ """
4539
+ pulumi.set(__self__, "database_type", database_type)
4540
+ pulumi.set(__self__, "infrastructure_type", infrastructure_type)
4541
+ if autonomous_database_id is not None:
4542
+ pulumi.set(__self__, "autonomous_database_id", autonomous_database_id)
4543
+ if db_system_id is not None:
4544
+ pulumi.set(__self__, "db_system_id", db_system_id)
4545
+ if instance_id is not None:
4546
+ pulumi.set(__self__, "instance_id", instance_id)
4547
+ if ip_addresses is not None:
4548
+ pulumi.set(__self__, "ip_addresses", ip_addresses)
4549
+ if listener_port is not None:
4550
+ pulumi.set(__self__, "listener_port", listener_port)
4551
+ if service_name is not None:
4552
+ pulumi.set(__self__, "service_name", service_name)
4553
+ if vm_cluster_id is not None:
4554
+ pulumi.set(__self__, "vm_cluster_id", vm_cluster_id)
4555
+
4556
+ @property
4557
+ @pulumi.getter(name="databaseType")
4558
+ def database_type(self) -> pulumi.Input[str]:
4559
+ """
4560
+ The database type.
4561
+ """
4562
+ return pulumi.get(self, "database_type")
4563
+
4564
+ @database_type.setter
4565
+ def database_type(self, value: pulumi.Input[str]):
4566
+ pulumi.set(self, "database_type", value)
4567
+
4568
+ @property
4569
+ @pulumi.getter(name="infrastructureType")
4570
+ def infrastructure_type(self) -> pulumi.Input[str]:
4571
+ """
4572
+ The infrastructure type the database is running on.
4573
+ """
4574
+ return pulumi.get(self, "infrastructure_type")
4575
+
4576
+ @infrastructure_type.setter
4577
+ def infrastructure_type(self, value: pulumi.Input[str]):
4578
+ pulumi.set(self, "infrastructure_type", value)
4579
+
4580
+ @property
4581
+ @pulumi.getter(name="autonomousDatabaseId")
4582
+ def autonomous_database_id(self) -> Optional[pulumi.Input[str]]:
4583
+ """
4584
+ The OCID of the Autonomous Database registered as a target database in Data Safe.
4585
+ """
4586
+ return pulumi.get(self, "autonomous_database_id")
4587
+
4588
+ @autonomous_database_id.setter
4589
+ def autonomous_database_id(self, value: Optional[pulumi.Input[str]]):
4590
+ pulumi.set(self, "autonomous_database_id", value)
4591
+
4592
+ @property
4593
+ @pulumi.getter(name="dbSystemId")
4594
+ def db_system_id(self) -> Optional[pulumi.Input[str]]:
4595
+ """
4596
+ The OCID of the cloud database registered as a target database in Data Safe.
4597
+ """
4598
+ return pulumi.get(self, "db_system_id")
4599
+
4600
+ @db_system_id.setter
4601
+ def db_system_id(self, value: Optional[pulumi.Input[str]]):
4602
+ pulumi.set(self, "db_system_id", value)
4603
+
4604
+ @property
4605
+ @pulumi.getter(name="instanceId")
4606
+ def instance_id(self) -> Optional[pulumi.Input[str]]:
4607
+ """
4608
+ The OCID of the compute instance on which the database is running.
4609
+ """
4610
+ return pulumi.get(self, "instance_id")
4611
+
4612
+ @instance_id.setter
4613
+ def instance_id(self, value: Optional[pulumi.Input[str]]):
4614
+ pulumi.set(self, "instance_id", value)
4615
+
4616
+ @property
4617
+ @pulumi.getter(name="ipAddresses")
4618
+ def ip_addresses(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
4619
+ """
4620
+ The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.
4621
+ """
4622
+ return pulumi.get(self, "ip_addresses")
4623
+
4624
+ @ip_addresses.setter
4625
+ def ip_addresses(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
4626
+ pulumi.set(self, "ip_addresses", value)
4627
+
4628
+ @property
4629
+ @pulumi.getter(name="listenerPort")
4630
+ def listener_port(self) -> Optional[pulumi.Input[int]]:
4631
+ """
4632
+ The port number of the database listener.
4633
+ """
4634
+ return pulumi.get(self, "listener_port")
4635
+
4636
+ @listener_port.setter
4637
+ def listener_port(self, value: Optional[pulumi.Input[int]]):
4638
+ pulumi.set(self, "listener_port", value)
4639
+
4640
+ @property
4641
+ @pulumi.getter(name="serviceName")
4642
+ def service_name(self) -> Optional[pulumi.Input[str]]:
4643
+ """
4644
+ The service name of the database registered as target database.
4645
+ """
4646
+ return pulumi.get(self, "service_name")
4647
+
4648
+ @service_name.setter
4649
+ def service_name(self, value: Optional[pulumi.Input[str]]):
4650
+ pulumi.set(self, "service_name", value)
4651
+
4652
+ @property
4653
+ @pulumi.getter(name="vmClusterId")
4654
+ def vm_cluster_id(self) -> Optional[pulumi.Input[str]]:
4655
+ """
4656
+ The OCID of the VM cluster in which the database is running.
4657
+ """
4658
+ return pulumi.get(self, "vm_cluster_id")
4659
+
4660
+ @vm_cluster_id.setter
4661
+ def vm_cluster_id(self, value: Optional[pulumi.Input[str]]):
4662
+ pulumi.set(self, "vm_cluster_id", value)
4663
+
4664
+
4665
+ @pulumi.input_type
4666
+ class TargetDatabasePeerTargetDatabaseDetailTlsConfigArgs:
4667
+ def __init__(__self__, *,
4668
+ status: pulumi.Input[str],
4669
+ certificate_store_type: Optional[pulumi.Input[str]] = None,
4670
+ key_store_content: Optional[pulumi.Input[str]] = None,
4671
+ store_password: Optional[pulumi.Input[str]] = None,
4672
+ trust_store_content: Optional[pulumi.Input[str]] = None):
4673
+ """
4674
+ :param pulumi.Input[str] status: (Updatable) Status to represent whether the database connection is TLS enabled or not.
4675
+ :param pulumi.Input[str] certificate_store_type: (Updatable) The format of the certificate store.
4676
+ :param pulumi.Input[str] key_store_content: (Updatable) Base64 encoded string of key store file content.
4677
+ :param pulumi.Input[str] store_password: (Updatable) The password to read the trust store and key store files, if they are password protected.
4678
+ :param pulumi.Input[str] trust_store_content: (Updatable) Base64 encoded string of trust store file content.
4679
+
4680
+
4681
+ ** IMPORTANT **
4682
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
4683
+ """
4684
+ pulumi.set(__self__, "status", status)
4685
+ if certificate_store_type is not None:
4686
+ pulumi.set(__self__, "certificate_store_type", certificate_store_type)
4687
+ if key_store_content is not None:
4688
+ pulumi.set(__self__, "key_store_content", key_store_content)
4689
+ if store_password is not None:
4690
+ pulumi.set(__self__, "store_password", store_password)
4691
+ if trust_store_content is not None:
4692
+ pulumi.set(__self__, "trust_store_content", trust_store_content)
4693
+
4694
+ @property
4695
+ @pulumi.getter
4696
+ def status(self) -> pulumi.Input[str]:
4697
+ """
4698
+ (Updatable) Status to represent whether the database connection is TLS enabled or not.
4699
+ """
4700
+ return pulumi.get(self, "status")
4701
+
4702
+ @status.setter
4703
+ def status(self, value: pulumi.Input[str]):
4704
+ pulumi.set(self, "status", value)
4705
+
4706
+ @property
4707
+ @pulumi.getter(name="certificateStoreType")
4708
+ def certificate_store_type(self) -> Optional[pulumi.Input[str]]:
4709
+ """
4710
+ (Updatable) The format of the certificate store.
4711
+ """
4712
+ return pulumi.get(self, "certificate_store_type")
4713
+
4714
+ @certificate_store_type.setter
4715
+ def certificate_store_type(self, value: Optional[pulumi.Input[str]]):
4716
+ pulumi.set(self, "certificate_store_type", value)
4717
+
4718
+ @property
4719
+ @pulumi.getter(name="keyStoreContent")
4720
+ def key_store_content(self) -> Optional[pulumi.Input[str]]:
4721
+ """
4722
+ (Updatable) Base64 encoded string of key store file content.
4723
+ """
4724
+ return pulumi.get(self, "key_store_content")
4725
+
4726
+ @key_store_content.setter
4727
+ def key_store_content(self, value: Optional[pulumi.Input[str]]):
4728
+ pulumi.set(self, "key_store_content", value)
4729
+
4730
+ @property
4731
+ @pulumi.getter(name="storePassword")
4732
+ def store_password(self) -> Optional[pulumi.Input[str]]:
4733
+ """
4734
+ (Updatable) The password to read the trust store and key store files, if they are password protected.
4735
+ """
4736
+ return pulumi.get(self, "store_password")
4737
+
4738
+ @store_password.setter
4739
+ def store_password(self, value: Optional[pulumi.Input[str]]):
4740
+ pulumi.set(self, "store_password", value)
4741
+
4742
+ @property
4743
+ @pulumi.getter(name="trustStoreContent")
4744
+ def trust_store_content(self) -> Optional[pulumi.Input[str]]:
4745
+ """
4746
+ (Updatable) Base64 encoded string of trust store file content.
4747
+
4748
+
4749
+ ** IMPORTANT **
4750
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
4751
+ """
4752
+ return pulumi.get(self, "trust_store_content")
4753
+
4754
+ @trust_store_content.setter
4755
+ def trust_store_content(self, value: Optional[pulumi.Input[str]]):
4756
+ pulumi.set(self, "trust_store_content", value)
4757
+
4758
+
4759
+ @pulumi.input_type
4760
+ class TargetDatabasePeerTargetDatabaseTlsConfigArgs:
4761
+ def __init__(__self__, *,
4762
+ status: pulumi.Input[str],
4763
+ certificate_store_type: Optional[pulumi.Input[str]] = None,
4764
+ key_store_content: Optional[pulumi.Input[str]] = None,
4765
+ store_password: Optional[pulumi.Input[str]] = None,
4766
+ trust_store_content: Optional[pulumi.Input[str]] = None):
4767
+ """
4768
+ :param pulumi.Input[str] status: (Updatable) Status to represent whether the database connection is TLS enabled or not.
4769
+ :param pulumi.Input[str] certificate_store_type: (Updatable) The format of the certificate store.
4770
+ :param pulumi.Input[str] key_store_content: (Updatable) Base64 encoded string of key store file content.
4771
+ :param pulumi.Input[str] store_password: (Updatable) The password to read the trust store and key store files, if they are password protected.
4772
+ :param pulumi.Input[str] trust_store_content: (Updatable) Base64 encoded string of trust store file content.
4773
+
4774
+
4775
+ ** IMPORTANT **
4776
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
4777
+ """
4778
+ pulumi.set(__self__, "status", status)
4779
+ if certificate_store_type is not None:
4780
+ pulumi.set(__self__, "certificate_store_type", certificate_store_type)
4781
+ if key_store_content is not None:
4782
+ pulumi.set(__self__, "key_store_content", key_store_content)
4783
+ if store_password is not None:
4784
+ pulumi.set(__self__, "store_password", store_password)
4785
+ if trust_store_content is not None:
4786
+ pulumi.set(__self__, "trust_store_content", trust_store_content)
4787
+
4788
+ @property
4789
+ @pulumi.getter
4790
+ def status(self) -> pulumi.Input[str]:
4791
+ """
4792
+ (Updatable) Status to represent whether the database connection is TLS enabled or not.
4793
+ """
4794
+ return pulumi.get(self, "status")
4795
+
4796
+ @status.setter
4797
+ def status(self, value: pulumi.Input[str]):
4798
+ pulumi.set(self, "status", value)
4799
+
4800
+ @property
4801
+ @pulumi.getter(name="certificateStoreType")
4802
+ def certificate_store_type(self) -> Optional[pulumi.Input[str]]:
4803
+ """
4804
+ (Updatable) The format of the certificate store.
4805
+ """
4806
+ return pulumi.get(self, "certificate_store_type")
4807
+
4808
+ @certificate_store_type.setter
4809
+ def certificate_store_type(self, value: Optional[pulumi.Input[str]]):
4810
+ pulumi.set(self, "certificate_store_type", value)
4811
+
4812
+ @property
4813
+ @pulumi.getter(name="keyStoreContent")
4814
+ def key_store_content(self) -> Optional[pulumi.Input[str]]:
4815
+ """
4816
+ (Updatable) Base64 encoded string of key store file content.
4817
+ """
4818
+ return pulumi.get(self, "key_store_content")
4819
+
4820
+ @key_store_content.setter
4821
+ def key_store_content(self, value: Optional[pulumi.Input[str]]):
4822
+ pulumi.set(self, "key_store_content", value)
4823
+
4824
+ @property
4825
+ @pulumi.getter(name="storePassword")
4826
+ def store_password(self) -> Optional[pulumi.Input[str]]:
4827
+ """
4828
+ (Updatable) The password to read the trust store and key store files, if they are password protected.
4829
+ """
4830
+ return pulumi.get(self, "store_password")
4831
+
4832
+ @store_password.setter
4833
+ def store_password(self, value: Optional[pulumi.Input[str]]):
4834
+ pulumi.set(self, "store_password", value)
4835
+
4836
+ @property
4837
+ @pulumi.getter(name="trustStoreContent")
4838
+ def trust_store_content(self) -> Optional[pulumi.Input[str]]:
4839
+ """
4840
+ (Updatable) Base64 encoded string of trust store file content.
4841
+
4842
+
4843
+ ** IMPORTANT **
4844
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
4845
+ """
4846
+ return pulumi.get(self, "trust_store_content")
4847
+
4848
+ @trust_store_content.setter
4849
+ def trust_store_content(self, value: Optional[pulumi.Input[str]]):
4850
+ pulumi.set(self, "trust_store_content", value)
4851
+
4852
+
4853
+ @pulumi.input_type
4854
+ class TargetDatabaseTlsConfigArgs:
4855
+ def __init__(__self__, *,
4856
+ status: pulumi.Input[str],
4857
+ certificate_store_type: Optional[pulumi.Input[str]] = None,
4858
+ key_store_content: Optional[pulumi.Input[str]] = None,
4859
+ store_password: Optional[pulumi.Input[str]] = None,
4860
+ trust_store_content: Optional[pulumi.Input[str]] = None):
4861
+ """
4862
+ :param pulumi.Input[str] status: (Updatable) Status to represent whether the database connection is TLS enabled or not.
4863
+ :param pulumi.Input[str] certificate_store_type: (Updatable) The format of the certificate store.
4864
+ :param pulumi.Input[str] key_store_content: (Updatable) Base64 encoded string of key store file content.
4865
+ :param pulumi.Input[str] store_password: (Updatable) The password to read the trust store and key store files, if they are password protected.
4866
+ :param pulumi.Input[str] trust_store_content: (Updatable) Base64 encoded string of trust store file content.
4867
+
4868
+
4869
+ ** IMPORTANT **
4870
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
4871
+ """
4872
+ pulumi.set(__self__, "status", status)
4873
+ if certificate_store_type is not None:
4874
+ pulumi.set(__self__, "certificate_store_type", certificate_store_type)
4875
+ if key_store_content is not None:
4876
+ pulumi.set(__self__, "key_store_content", key_store_content)
4877
+ if store_password is not None:
4878
+ pulumi.set(__self__, "store_password", store_password)
4879
+ if trust_store_content is not None:
4880
+ pulumi.set(__self__, "trust_store_content", trust_store_content)
4881
+
4882
+ @property
4883
+ @pulumi.getter
4884
+ def status(self) -> pulumi.Input[str]:
4885
+ """
4886
+ (Updatable) Status to represent whether the database connection is TLS enabled or not.
4887
+ """
4888
+ return pulumi.get(self, "status")
4889
+
4890
+ @status.setter
4891
+ def status(self, value: pulumi.Input[str]):
4892
+ pulumi.set(self, "status", value)
4893
+
4894
+ @property
4895
+ @pulumi.getter(name="certificateStoreType")
4896
+ def certificate_store_type(self) -> Optional[pulumi.Input[str]]:
4897
+ """
4898
+ (Updatable) The format of the certificate store.
4899
+ """
4900
+ return pulumi.get(self, "certificate_store_type")
4901
+
4902
+ @certificate_store_type.setter
4903
+ def certificate_store_type(self, value: Optional[pulumi.Input[str]]):
4904
+ pulumi.set(self, "certificate_store_type", value)
4905
+
4906
+ @property
4907
+ @pulumi.getter(name="keyStoreContent")
4908
+ def key_store_content(self) -> Optional[pulumi.Input[str]]:
4909
+ """
4910
+ (Updatable) Base64 encoded string of key store file content.
4911
+ """
4912
+ return pulumi.get(self, "key_store_content")
4913
+
4914
+ @key_store_content.setter
4915
+ def key_store_content(self, value: Optional[pulumi.Input[str]]):
4916
+ pulumi.set(self, "key_store_content", value)
4917
+
4918
+ @property
4919
+ @pulumi.getter(name="storePassword")
4920
+ def store_password(self) -> Optional[pulumi.Input[str]]:
4921
+ """
4922
+ (Updatable) The password to read the trust store and key store files, if they are password protected.
4923
+ """
4924
+ return pulumi.get(self, "store_password")
4925
+
4926
+ @store_password.setter
4927
+ def store_password(self, value: Optional[pulumi.Input[str]]):
4928
+ pulumi.set(self, "store_password", value)
4929
+
4930
+ @property
4931
+ @pulumi.getter(name="trustStoreContent")
4932
+ def trust_store_content(self) -> Optional[pulumi.Input[str]]:
4933
+ """
4934
+ (Updatable) Base64 encoded string of trust store file content.
4935
+
4936
+
4937
+ ** IMPORTANT **
4938
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
4939
+ """
4940
+ return pulumi.get(self, "trust_store_content")
4941
+
4942
+ @trust_store_content.setter
4943
+ def trust_store_content(self, value: Optional[pulumi.Input[str]]):
4944
+ pulumi.set(self, "trust_store_content", value)
4945
+
4946
+
4947
+ @pulumi.input_type
4948
+ class UserAssessmentIgnoredTargetArgs:
4949
+ def __init__(__self__, *,
4950
+ lifecycle_state: Optional[pulumi.Input[str]] = None,
4951
+ target_id: Optional[pulumi.Input[str]] = None,
4952
+ user_assessment_id: Optional[pulumi.Input[str]] = None):
4953
+ """
4954
+ :param pulumi.Input[str] target_id: The OCID of the target database on which the user assessment is to be run.
4955
+
4956
+
4957
+ ** IMPORTANT **
4958
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
4959
+ """
4960
+ if lifecycle_state is not None:
4961
+ pulumi.set(__self__, "lifecycle_state", lifecycle_state)
4962
+ if target_id is not None:
4963
+ pulumi.set(__self__, "target_id", target_id)
4964
+ if user_assessment_id is not None:
4965
+ pulumi.set(__self__, "user_assessment_id", user_assessment_id)
4966
+
4967
+ @property
4968
+ @pulumi.getter(name="lifecycleState")
4969
+ def lifecycle_state(self) -> Optional[pulumi.Input[str]]:
4970
+ return pulumi.get(self, "lifecycle_state")
4971
+
4972
+ @lifecycle_state.setter
4973
+ def lifecycle_state(self, value: Optional[pulumi.Input[str]]):
4974
+ pulumi.set(self, "lifecycle_state", value)
4975
+
4976
+ @property
4977
+ @pulumi.getter(name="targetId")
4978
+ def target_id(self) -> Optional[pulumi.Input[str]]:
4979
+ """
4980
+ The OCID of the target database on which the user assessment is to be run.
4981
+
4982
+
4983
+ ** IMPORTANT **
4984
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
4985
+ """
4986
+ return pulumi.get(self, "target_id")
4987
+
4988
+ @target_id.setter
4989
+ def target_id(self, value: Optional[pulumi.Input[str]]):
4990
+ pulumi.set(self, "target_id", value)
4991
+
4992
+ @property
4993
+ @pulumi.getter(name="userAssessmentId")
4994
+ def user_assessment_id(self) -> Optional[pulumi.Input[str]]:
4995
+ return pulumi.get(self, "user_assessment_id")
4996
+
4997
+ @user_assessment_id.setter
4998
+ def user_assessment_id(self, value: Optional[pulumi.Input[str]]):
4999
+ pulumi.set(self, "user_assessment_id", value)
5000
+
5001
+
5002
+ @pulumi.input_type
5003
+ class GetAlertPoliciesFilterArgs:
5004
+ def __init__(__self__, *,
5005
+ name: str,
5006
+ values: Sequence[str],
5007
+ regex: Optional[bool] = None):
5008
+ pulumi.set(__self__, "name", name)
5009
+ pulumi.set(__self__, "values", values)
5010
+ if regex is not None:
5011
+ pulumi.set(__self__, "regex", regex)
5012
+
5013
+ @property
5014
+ @pulumi.getter
5015
+ def name(self) -> str:
5016
+ return pulumi.get(self, "name")
5017
+
5018
+ @name.setter
5019
+ def name(self, value: str):
5020
+ pulumi.set(self, "name", value)
5021
+
5022
+ @property
5023
+ @pulumi.getter
5024
+ def values(self) -> Sequence[str]:
5025
+ return pulumi.get(self, "values")
5026
+
5027
+ @values.setter
5028
+ def values(self, value: Sequence[str]):
5029
+ pulumi.set(self, "values", value)
5030
+
5031
+ @property
5032
+ @pulumi.getter
5033
+ def regex(self) -> Optional[bool]:
5034
+ return pulumi.get(self, "regex")
5035
+
5036
+ @regex.setter
5037
+ def regex(self, value: Optional[bool]):
5038
+ pulumi.set(self, "regex", value)
5039
+
5040
+
5041
+ @pulumi.input_type
5042
+ class GetAlertPolicyRulesFilterArgs:
5043
+ def __init__(__self__, *,
5044
+ name: str,
5045
+ values: Sequence[str],
5046
+ regex: Optional[bool] = None):
5047
+ pulumi.set(__self__, "name", name)
5048
+ pulumi.set(__self__, "values", values)
5049
+ if regex is not None:
5050
+ pulumi.set(__self__, "regex", regex)
5051
+
5052
+ @property
5053
+ @pulumi.getter
5054
+ def name(self) -> str:
5055
+ return pulumi.get(self, "name")
5056
+
5057
+ @name.setter
5058
+ def name(self, value: str):
5059
+ pulumi.set(self, "name", value)
5060
+
5061
+ @property
5062
+ @pulumi.getter
5063
+ def values(self) -> Sequence[str]:
5064
+ return pulumi.get(self, "values")
5065
+
5066
+ @values.setter
5067
+ def values(self, value: Sequence[str]):
5068
+ pulumi.set(self, "values", value)
5069
+
5070
+ @property
5071
+ @pulumi.getter
5072
+ def regex(self) -> Optional[bool]:
5073
+ return pulumi.get(self, "regex")
5074
+
5075
+ @regex.setter
5076
+ def regex(self, value: Optional[bool]):
5077
+ pulumi.set(self, "regex", value)
5078
+
5079
+
5080
+ @pulumi.input_type
5081
+ class GetAlertsFilterArgs:
5082
+ def __init__(__self__, *,
5083
+ name: str,
5084
+ values: Sequence[str],
5085
+ regex: Optional[bool] = None):
5086
+ pulumi.set(__self__, "name", name)
5087
+ pulumi.set(__self__, "values", values)
5088
+ if regex is not None:
5089
+ pulumi.set(__self__, "regex", regex)
5090
+
5091
+ @property
5092
+ @pulumi.getter
5093
+ def name(self) -> str:
5094
+ return pulumi.get(self, "name")
5095
+
5096
+ @name.setter
5097
+ def name(self, value: str):
5098
+ pulumi.set(self, "name", value)
5099
+
5100
+ @property
5101
+ @pulumi.getter
5102
+ def values(self) -> Sequence[str]:
5103
+ return pulumi.get(self, "values")
5104
+
5105
+ @values.setter
5106
+ def values(self, value: Sequence[str]):
5107
+ pulumi.set(self, "values", value)
5108
+
5109
+ @property
5110
+ @pulumi.getter
5111
+ def regex(self) -> Optional[bool]:
5112
+ return pulumi.get(self, "regex")
5113
+
5114
+ @regex.setter
5115
+ def regex(self, value: Optional[bool]):
5116
+ pulumi.set(self, "regex", value)
5117
+
5118
+
5119
+ @pulumi.input_type
5120
+ class GetAuditArchiveRetrievalsFilterArgs:
5121
+ def __init__(__self__, *,
5122
+ name: str,
5123
+ values: Sequence[str],
5124
+ regex: Optional[bool] = None):
5125
+ pulumi.set(__self__, "name", name)
5126
+ pulumi.set(__self__, "values", values)
5127
+ if regex is not None:
5128
+ pulumi.set(__self__, "regex", regex)
5129
+
5130
+ @property
5131
+ @pulumi.getter
5132
+ def name(self) -> str:
5133
+ return pulumi.get(self, "name")
5134
+
5135
+ @name.setter
5136
+ def name(self, value: str):
5137
+ pulumi.set(self, "name", value)
5138
+
5139
+ @property
5140
+ @pulumi.getter
5141
+ def values(self) -> Sequence[str]:
5142
+ return pulumi.get(self, "values")
5143
+
5144
+ @values.setter
5145
+ def values(self, value: Sequence[str]):
5146
+ pulumi.set(self, "values", value)
5147
+
5148
+ @property
5149
+ @pulumi.getter
5150
+ def regex(self) -> Optional[bool]:
5151
+ return pulumi.get(self, "regex")
5152
+
5153
+ @regex.setter
5154
+ def regex(self, value: Optional[bool]):
5155
+ pulumi.set(self, "regex", value)
5156
+
5157
+
5158
+ @pulumi.input_type
5159
+ class GetAuditEventsFilterArgs:
5160
+ def __init__(__self__, *,
5161
+ name: str,
5162
+ values: Sequence[str],
5163
+ regex: Optional[bool] = None):
5164
+ pulumi.set(__self__, "name", name)
5165
+ pulumi.set(__self__, "values", values)
5166
+ if regex is not None:
5167
+ pulumi.set(__self__, "regex", regex)
5168
+
5169
+ @property
5170
+ @pulumi.getter
5171
+ def name(self) -> str:
5172
+ return pulumi.get(self, "name")
5173
+
5174
+ @name.setter
5175
+ def name(self, value: str):
5176
+ pulumi.set(self, "name", value)
5177
+
5178
+ @property
5179
+ @pulumi.getter
5180
+ def values(self) -> Sequence[str]:
5181
+ return pulumi.get(self, "values")
5182
+
5183
+ @values.setter
5184
+ def values(self, value: Sequence[str]):
5185
+ pulumi.set(self, "values", value)
5186
+
5187
+ @property
5188
+ @pulumi.getter
5189
+ def regex(self) -> Optional[bool]:
5190
+ return pulumi.get(self, "regex")
5191
+
5192
+ @regex.setter
5193
+ def regex(self, value: Optional[bool]):
5194
+ pulumi.set(self, "regex", value)
5195
+
5196
+
5197
+ @pulumi.input_type
5198
+ class GetAuditPoliciesFilterArgs:
5199
+ def __init__(__self__, *,
5200
+ name: str,
5201
+ values: Sequence[str],
5202
+ regex: Optional[bool] = None):
5203
+ pulumi.set(__self__, "name", name)
5204
+ pulumi.set(__self__, "values", values)
5205
+ if regex is not None:
5206
+ pulumi.set(__self__, "regex", regex)
5207
+
5208
+ @property
5209
+ @pulumi.getter
5210
+ def name(self) -> str:
5211
+ return pulumi.get(self, "name")
5212
+
5213
+ @name.setter
5214
+ def name(self, value: str):
5215
+ pulumi.set(self, "name", value)
5216
+
5217
+ @property
5218
+ @pulumi.getter
5219
+ def values(self) -> Sequence[str]:
5220
+ return pulumi.get(self, "values")
5221
+
5222
+ @values.setter
5223
+ def values(self, value: Sequence[str]):
5224
+ pulumi.set(self, "values", value)
5225
+
5226
+ @property
5227
+ @pulumi.getter
5228
+ def regex(self) -> Optional[bool]:
5229
+ return pulumi.get(self, "regex")
5230
+
5231
+ @regex.setter
5232
+ def regex(self, value: Optional[bool]):
5233
+ pulumi.set(self, "regex", value)
5234
+
5235
+
5236
+ @pulumi.input_type
5237
+ class GetAuditProfileAvailableAuditVolumesFilterArgs:
5238
+ def __init__(__self__, *,
5239
+ name: str,
5240
+ values: Sequence[str],
5241
+ regex: Optional[bool] = None):
5242
+ pulumi.set(__self__, "name", name)
5243
+ pulumi.set(__self__, "values", values)
5244
+ if regex is not None:
5245
+ pulumi.set(__self__, "regex", regex)
5246
+
5247
+ @property
5248
+ @pulumi.getter
5249
+ def name(self) -> str:
5250
+ return pulumi.get(self, "name")
5251
+
5252
+ @name.setter
5253
+ def name(self, value: str):
5254
+ pulumi.set(self, "name", value)
5255
+
5256
+ @property
5257
+ @pulumi.getter
5258
+ def values(self) -> Sequence[str]:
5259
+ return pulumi.get(self, "values")
5260
+
5261
+ @values.setter
5262
+ def values(self, value: Sequence[str]):
5263
+ pulumi.set(self, "values", value)
5264
+
5265
+ @property
5266
+ @pulumi.getter
5267
+ def regex(self) -> Optional[bool]:
5268
+ return pulumi.get(self, "regex")
5269
+
5270
+ @regex.setter
5271
+ def regex(self, value: Optional[bool]):
5272
+ pulumi.set(self, "regex", value)
5273
+
5274
+
5275
+ @pulumi.input_type
5276
+ class GetAuditProfileCollectedAuditVolumesFilterArgs:
5277
+ def __init__(__self__, *,
5278
+ name: str,
5279
+ values: Sequence[str],
5280
+ regex: Optional[bool] = None):
5281
+ pulumi.set(__self__, "name", name)
5282
+ pulumi.set(__self__, "values", values)
5283
+ if regex is not None:
5284
+ pulumi.set(__self__, "regex", regex)
5285
+
5286
+ @property
5287
+ @pulumi.getter
5288
+ def name(self) -> str:
5289
+ return pulumi.get(self, "name")
5290
+
5291
+ @name.setter
5292
+ def name(self, value: str):
5293
+ pulumi.set(self, "name", value)
5294
+
5295
+ @property
5296
+ @pulumi.getter
5297
+ def values(self) -> Sequence[str]:
5298
+ return pulumi.get(self, "values")
5299
+
5300
+ @values.setter
5301
+ def values(self, value: Sequence[str]):
5302
+ pulumi.set(self, "values", value)
5303
+
5304
+ @property
5305
+ @pulumi.getter
5306
+ def regex(self) -> Optional[bool]:
5307
+ return pulumi.get(self, "regex")
5308
+
5309
+ @regex.setter
5310
+ def regex(self, value: Optional[bool]):
5311
+ pulumi.set(self, "regex", value)
5312
+
5313
+
5314
+ @pulumi.input_type
5315
+ class GetAuditProfilesFilterArgs:
5316
+ def __init__(__self__, *,
5317
+ name: str,
5318
+ values: Sequence[str],
5319
+ regex: Optional[bool] = None):
5320
+ pulumi.set(__self__, "name", name)
5321
+ pulumi.set(__self__, "values", values)
5322
+ if regex is not None:
5323
+ pulumi.set(__self__, "regex", regex)
5324
+
5325
+ @property
5326
+ @pulumi.getter
5327
+ def name(self) -> str:
5328
+ return pulumi.get(self, "name")
5329
+
5330
+ @name.setter
5331
+ def name(self, value: str):
5332
+ pulumi.set(self, "name", value)
5333
+
5334
+ @property
5335
+ @pulumi.getter
5336
+ def values(self) -> Sequence[str]:
5337
+ return pulumi.get(self, "values")
5338
+
5339
+ @values.setter
5340
+ def values(self, value: Sequence[str]):
5341
+ pulumi.set(self, "values", value)
5342
+
5343
+ @property
5344
+ @pulumi.getter
5345
+ def regex(self) -> Optional[bool]:
5346
+ return pulumi.get(self, "regex")
5347
+
5348
+ @regex.setter
5349
+ def regex(self, value: Optional[bool]):
5350
+ pulumi.set(self, "regex", value)
5351
+
5352
+
5353
+ @pulumi.input_type
5354
+ class GetAuditTrailsFilterArgs:
5355
+ def __init__(__self__, *,
5356
+ name: str,
5357
+ values: Sequence[str],
5358
+ regex: Optional[bool] = None):
5359
+ pulumi.set(__self__, "name", name)
5360
+ pulumi.set(__self__, "values", values)
5361
+ if regex is not None:
5362
+ pulumi.set(__self__, "regex", regex)
3771
5363
 
3772
5364
  @property
3773
- @pulumi.getter(name="trustStoreContent")
3774
- def trust_store_content(self) -> Optional[pulumi.Input[str]]:
3775
- """
3776
- (Updatable) Base64 encoded string of trust store file content.
5365
+ @pulumi.getter
5366
+ def name(self) -> str:
5367
+ return pulumi.get(self, "name")
3777
5368
 
5369
+ @name.setter
5370
+ def name(self, value: str):
5371
+ pulumi.set(self, "name", value)
3778
5372
 
3779
- ** IMPORTANT **
3780
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
3781
- """
3782
- return pulumi.get(self, "trust_store_content")
5373
+ @property
5374
+ @pulumi.getter
5375
+ def values(self) -> Sequence[str]:
5376
+ return pulumi.get(self, "values")
3783
5377
 
3784
- @trust_store_content.setter
3785
- def trust_store_content(self, value: Optional[pulumi.Input[str]]):
3786
- pulumi.set(self, "trust_store_content", value)
5378
+ @values.setter
5379
+ def values(self, value: Sequence[str]):
5380
+ pulumi.set(self, "values", value)
5381
+
5382
+ @property
5383
+ @pulumi.getter
5384
+ def regex(self) -> Optional[bool]:
5385
+ return pulumi.get(self, "regex")
5386
+
5387
+ @regex.setter
5388
+ def regex(self, value: Optional[bool]):
5389
+ pulumi.set(self, "regex", value)
3787
5390
 
3788
5391
 
3789
5392
  @pulumi.input_type
3790
- class UserAssessmentIgnoredTargetArgs:
5393
+ class GetDataSafePrivateEndpointsFilterArgs:
3791
5394
  def __init__(__self__, *,
3792
- lifecycle_state: Optional[pulumi.Input[str]] = None,
3793
- target_id: Optional[pulumi.Input[str]] = None,
3794
- user_assessment_id: Optional[pulumi.Input[str]] = None):
3795
- """
3796
- :param pulumi.Input[str] target_id: The OCID of the target database on which the user assessment is to be run.
3797
-
3798
-
3799
- ** IMPORTANT **
3800
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
3801
- """
3802
- if lifecycle_state is not None:
3803
- pulumi.set(__self__, "lifecycle_state", lifecycle_state)
3804
- if target_id is not None:
3805
- pulumi.set(__self__, "target_id", target_id)
3806
- if user_assessment_id is not None:
3807
- pulumi.set(__self__, "user_assessment_id", user_assessment_id)
5395
+ name: str,
5396
+ values: Sequence[str],
5397
+ regex: Optional[bool] = None):
5398
+ pulumi.set(__self__, "name", name)
5399
+ pulumi.set(__self__, "values", values)
5400
+ if regex is not None:
5401
+ pulumi.set(__self__, "regex", regex)
3808
5402
 
3809
5403
  @property
3810
- @pulumi.getter(name="lifecycleState")
3811
- def lifecycle_state(self) -> Optional[pulumi.Input[str]]:
3812
- return pulumi.get(self, "lifecycle_state")
5404
+ @pulumi.getter
5405
+ def name(self) -> str:
5406
+ return pulumi.get(self, "name")
3813
5407
 
3814
- @lifecycle_state.setter
3815
- def lifecycle_state(self, value: Optional[pulumi.Input[str]]):
3816
- pulumi.set(self, "lifecycle_state", value)
5408
+ @name.setter
5409
+ def name(self, value: str):
5410
+ pulumi.set(self, "name", value)
3817
5411
 
3818
5412
  @property
3819
- @pulumi.getter(name="targetId")
3820
- def target_id(self) -> Optional[pulumi.Input[str]]:
3821
- """
3822
- The OCID of the target database on which the user assessment is to be run.
3823
-
3824
-
3825
- ** IMPORTANT **
3826
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
3827
- """
3828
- return pulumi.get(self, "target_id")
5413
+ @pulumi.getter
5414
+ def values(self) -> Sequence[str]:
5415
+ return pulumi.get(self, "values")
3829
5416
 
3830
- @target_id.setter
3831
- def target_id(self, value: Optional[pulumi.Input[str]]):
3832
- pulumi.set(self, "target_id", value)
5417
+ @values.setter
5418
+ def values(self, value: Sequence[str]):
5419
+ pulumi.set(self, "values", value)
3833
5420
 
3834
5421
  @property
3835
- @pulumi.getter(name="userAssessmentId")
3836
- def user_assessment_id(self) -> Optional[pulumi.Input[str]]:
3837
- return pulumi.get(self, "user_assessment_id")
5422
+ @pulumi.getter
5423
+ def regex(self) -> Optional[bool]:
5424
+ return pulumi.get(self, "regex")
3838
5425
 
3839
- @user_assessment_id.setter
3840
- def user_assessment_id(self, value: Optional[pulumi.Input[str]]):
3841
- pulumi.set(self, "user_assessment_id", value)
5426
+ @regex.setter
5427
+ def regex(self, value: Optional[bool]):
5428
+ pulumi.set(self, "regex", value)
3842
5429
 
3843
5430
 
3844
5431
  @pulumi.input_type
3845
- class GetAlertPoliciesFilterArgs:
5432
+ class GetDiscoveryAnalyticsFilterArgs:
3846
5433
  def __init__(__self__, *,
3847
5434
  name: str,
3848
5435
  values: Sequence[str],
@@ -3881,7 +5468,7 @@ class GetAlertPoliciesFilterArgs:
3881
5468
 
3882
5469
 
3883
5470
  @pulumi.input_type
3884
- class GetAlertPolicyRulesFilterArgs:
5471
+ class GetDiscoveryJobsResultsFilterArgs:
3885
5472
  def __init__(__self__, *,
3886
5473
  name: str,
3887
5474
  values: Sequence[str],
@@ -3920,7 +5507,7 @@ class GetAlertPolicyRulesFilterArgs:
3920
5507
 
3921
5508
 
3922
5509
  @pulumi.input_type
3923
- class GetAlertsFilterArgs:
5510
+ class GetLibraryMaskingFormatsFilterArgs:
3924
5511
  def __init__(__self__, *,
3925
5512
  name: str,
3926
5513
  values: Sequence[str],
@@ -3959,7 +5546,7 @@ class GetAlertsFilterArgs:
3959
5546
 
3960
5547
 
3961
5548
  @pulumi.input_type
3962
- class GetAuditArchiveRetrievalsFilterArgs:
5549
+ class GetListUserGrantsFilterArgs:
3963
5550
  def __init__(__self__, *,
3964
5551
  name: str,
3965
5552
  values: Sequence[str],
@@ -3998,7 +5585,7 @@ class GetAuditArchiveRetrievalsFilterArgs:
3998
5585
 
3999
5586
 
4000
5587
  @pulumi.input_type
4001
- class GetAuditEventsFilterArgs:
5588
+ class GetMaskingAnalyticsFilterArgs:
4002
5589
  def __init__(__self__, *,
4003
5590
  name: str,
4004
5591
  values: Sequence[str],
@@ -4037,7 +5624,7 @@ class GetAuditEventsFilterArgs:
4037
5624
 
4038
5625
 
4039
5626
  @pulumi.input_type
4040
- class GetAuditPoliciesFilterArgs:
5627
+ class GetMaskingPoliciesFilterArgs:
4041
5628
  def __init__(__self__, *,
4042
5629
  name: str,
4043
5630
  values: Sequence[str],
@@ -4076,7 +5663,7 @@ class GetAuditPoliciesFilterArgs:
4076
5663
 
4077
5664
 
4078
5665
  @pulumi.input_type
4079
- class GetAuditProfileAvailableAuditVolumesFilterArgs:
5666
+ class GetMaskingPoliciesMaskingColumnsFilterArgs:
4080
5667
  def __init__(__self__, *,
4081
5668
  name: str,
4082
5669
  values: Sequence[str],
@@ -4115,7 +5702,7 @@ class GetAuditProfileAvailableAuditVolumesFilterArgs:
4115
5702
 
4116
5703
 
4117
5704
  @pulumi.input_type
4118
- class GetAuditProfileCollectedAuditVolumesFilterArgs:
5705
+ class GetMaskingPolicyMaskingObjectsFilterArgs:
4119
5706
  def __init__(__self__, *,
4120
5707
  name: str,
4121
5708
  values: Sequence[str],
@@ -4154,7 +5741,7 @@ class GetAuditProfileCollectedAuditVolumesFilterArgs:
4154
5741
 
4155
5742
 
4156
5743
  @pulumi.input_type
4157
- class GetAuditProfilesFilterArgs:
5744
+ class GetMaskingPolicyMaskingSchemasFilterArgs:
4158
5745
  def __init__(__self__, *,
4159
5746
  name: str,
4160
5747
  values: Sequence[str],
@@ -4193,7 +5780,7 @@ class GetAuditProfilesFilterArgs:
4193
5780
 
4194
5781
 
4195
5782
  @pulumi.input_type
4196
- class GetAuditTrailsFilterArgs:
5783
+ class GetMaskingReportMaskedColumnsFilterArgs:
4197
5784
  def __init__(__self__, *,
4198
5785
  name: str,
4199
5786
  values: Sequence[str],
@@ -4232,7 +5819,7 @@ class GetAuditTrailsFilterArgs:
4232
5819
 
4233
5820
 
4234
5821
  @pulumi.input_type
4235
- class GetDataSafePrivateEndpointsFilterArgs:
5822
+ class GetMaskingReportsFilterArgs:
4236
5823
  def __init__(__self__, *,
4237
5824
  name: str,
4238
5825
  values: Sequence[str],
@@ -4271,7 +5858,7 @@ class GetDataSafePrivateEndpointsFilterArgs:
4271
5858
 
4272
5859
 
4273
5860
  @pulumi.input_type
4274
- class GetDiscoveryAnalyticsFilterArgs:
5861
+ class GetOnpremConnectorsFilterArgs:
4275
5862
  def __init__(__self__, *,
4276
5863
  name: str,
4277
5864
  values: Sequence[str],
@@ -4310,11 +5897,14 @@ class GetDiscoveryAnalyticsFilterArgs:
4310
5897
 
4311
5898
 
4312
5899
  @pulumi.input_type
4313
- class GetDiscoveryJobsResultsFilterArgs:
5900
+ class GetReportDefinitionsFilterArgs:
4314
5901
  def __init__(__self__, *,
4315
5902
  name: str,
4316
5903
  values: Sequence[str],
4317
5904
  regex: Optional[bool] = None):
5905
+ """
5906
+ :param str name: Name of the report summary.
5907
+ """
4318
5908
  pulumi.set(__self__, "name", name)
4319
5909
  pulumi.set(__self__, "values", values)
4320
5910
  if regex is not None:
@@ -4323,6 +5913,9 @@ class GetDiscoveryJobsResultsFilterArgs:
4323
5913
  @property
4324
5914
  @pulumi.getter
4325
5915
  def name(self) -> str:
5916
+ """
5917
+ Name of the report summary.
5918
+ """
4326
5919
  return pulumi.get(self, "name")
4327
5920
 
4328
5921
  @name.setter
@@ -4349,7 +5942,7 @@ class GetDiscoveryJobsResultsFilterArgs:
4349
5942
 
4350
5943
 
4351
5944
  @pulumi.input_type
4352
- class GetLibraryMaskingFormatsFilterArgs:
5945
+ class GetReportsFilterArgs:
4353
5946
  def __init__(__self__, *,
4354
5947
  name: str,
4355
5948
  values: Sequence[str],
@@ -4388,7 +5981,7 @@ class GetLibraryMaskingFormatsFilterArgs:
4388
5981
 
4389
5982
 
4390
5983
  @pulumi.input_type
4391
- class GetListUserGrantsFilterArgs:
5984
+ class GetSdmMaskingPolicyDifferenceDifferenceColumnsFilterArgs:
4392
5985
  def __init__(__self__, *,
4393
5986
  name: str,
4394
5987
  values: Sequence[str],
@@ -4427,7 +6020,7 @@ class GetListUserGrantsFilterArgs:
4427
6020
 
4428
6021
 
4429
6022
  @pulumi.input_type
4430
- class GetMaskingAnalyticsFilterArgs:
6023
+ class GetSdmMaskingPolicyDifferencesFilterArgs:
4431
6024
  def __init__(__self__, *,
4432
6025
  name: str,
4433
6026
  values: Sequence[str],
@@ -4466,7 +6059,7 @@ class GetMaskingAnalyticsFilterArgs:
4466
6059
 
4467
6060
 
4468
6061
  @pulumi.input_type
4469
- class GetMaskingPoliciesFilterArgs:
6062
+ class GetSecurityAssessmentFindingAnalyticsFilterArgs:
4470
6063
  def __init__(__self__, *,
4471
6064
  name: str,
4472
6065
  values: Sequence[str],
@@ -4505,7 +6098,7 @@ class GetMaskingPoliciesFilterArgs:
4505
6098
 
4506
6099
 
4507
6100
  @pulumi.input_type
4508
- class GetMaskingPoliciesMaskingColumnsFilterArgs:
6101
+ class GetSecurityAssessmentFindingFilterArgs:
4509
6102
  def __init__(__self__, *,
4510
6103
  name: str,
4511
6104
  values: Sequence[str],
@@ -4544,7 +6137,7 @@ class GetMaskingPoliciesMaskingColumnsFilterArgs:
4544
6137
 
4545
6138
 
4546
6139
  @pulumi.input_type
4547
- class GetMaskingPolicyMaskingObjectsFilterArgs:
6140
+ class GetSecurityAssessmentFindingsChangeAuditLogsFilterArgs:
4548
6141
  def __init__(__self__, *,
4549
6142
  name: str,
4550
6143
  values: Sequence[str],
@@ -4583,7 +6176,7 @@ class GetMaskingPolicyMaskingObjectsFilterArgs:
4583
6176
 
4584
6177
 
4585
6178
  @pulumi.input_type
4586
- class GetMaskingPolicyMaskingSchemasFilterArgs:
6179
+ class GetSecurityAssessmentFindingsFilterArgs:
4587
6180
  def __init__(__self__, *,
4588
6181
  name: str,
4589
6182
  values: Sequence[str],
@@ -4622,7 +6215,7 @@ class GetMaskingPolicyMaskingSchemasFilterArgs:
4622
6215
 
4623
6216
 
4624
6217
  @pulumi.input_type
4625
- class GetMaskingReportMaskedColumnsFilterArgs:
6218
+ class GetSecurityAssessmentSecurityFeatureAnalyticsFilterArgs:
4626
6219
  def __init__(__self__, *,
4627
6220
  name: str,
4628
6221
  values: Sequence[str],
@@ -4661,7 +6254,7 @@ class GetMaskingReportMaskedColumnsFilterArgs:
4661
6254
 
4662
6255
 
4663
6256
  @pulumi.input_type
4664
- class GetMaskingReportsFilterArgs:
6257
+ class GetSecurityAssessmentSecurityFeaturesFilterArgs:
4665
6258
  def __init__(__self__, *,
4666
6259
  name: str,
4667
6260
  values: Sequence[str],
@@ -4700,7 +6293,7 @@ class GetMaskingReportsFilterArgs:
4700
6293
 
4701
6294
 
4702
6295
  @pulumi.input_type
4703
- class GetOnpremConnectorsFilterArgs:
6296
+ class GetSecurityAssessmentsFilterArgs:
4704
6297
  def __init__(__self__, *,
4705
6298
  name: str,
4706
6299
  values: Sequence[str],
@@ -4739,14 +6332,11 @@ class GetOnpremConnectorsFilterArgs:
4739
6332
 
4740
6333
 
4741
6334
  @pulumi.input_type
4742
- class GetReportDefinitionsFilterArgs:
6335
+ class GetSecurityPoliciesFilterArgs:
4743
6336
  def __init__(__self__, *,
4744
6337
  name: str,
4745
6338
  values: Sequence[str],
4746
6339
  regex: Optional[bool] = None):
4747
- """
4748
- :param str name: Name of the report summary.
4749
- """
4750
6340
  pulumi.set(__self__, "name", name)
4751
6341
  pulumi.set(__self__, "values", values)
4752
6342
  if regex is not None:
@@ -4755,9 +6345,6 @@ class GetReportDefinitionsFilterArgs:
4755
6345
  @property
4756
6346
  @pulumi.getter
4757
6347
  def name(self) -> str:
4758
- """
4759
- Name of the report summary.
4760
- """
4761
6348
  return pulumi.get(self, "name")
4762
6349
 
4763
6350
  @name.setter
@@ -4784,7 +6371,7 @@ class GetReportDefinitionsFilterArgs:
4784
6371
 
4785
6372
 
4786
6373
  @pulumi.input_type
4787
- class GetReportsFilterArgs:
6374
+ class GetSecurityPolicyDeploymentSecurityPolicyEntryStatesFilterArgs:
4788
6375
  def __init__(__self__, *,
4789
6376
  name: str,
4790
6377
  values: Sequence[str],
@@ -4823,7 +6410,7 @@ class GetReportsFilterArgs:
4823
6410
 
4824
6411
 
4825
6412
  @pulumi.input_type
4826
- class GetSdmMaskingPolicyDifferenceDifferenceColumnsFilterArgs:
6413
+ class GetSecurityPolicyDeploymentsFilterArgs:
4827
6414
  def __init__(__self__, *,
4828
6415
  name: str,
4829
6416
  values: Sequence[str],
@@ -4862,7 +6449,7 @@ class GetSdmMaskingPolicyDifferenceDifferenceColumnsFilterArgs:
4862
6449
 
4863
6450
 
4864
6451
  @pulumi.input_type
4865
- class GetSdmMaskingPolicyDifferencesFilterArgs:
6452
+ class GetSecurityPolicyReportDatabaseTableAccessEntriesFilterArgs:
4866
6453
  def __init__(__self__, *,
4867
6454
  name: str,
4868
6455
  values: Sequence[str],
@@ -4901,7 +6488,7 @@ class GetSdmMaskingPolicyDifferencesFilterArgs:
4901
6488
 
4902
6489
 
4903
6490
  @pulumi.input_type
4904
- class GetSecurityAssessmentFindingFilterArgs:
6491
+ class GetSecurityPolicyReportDatabaseViewAccessEntriesFilterArgs:
4905
6492
  def __init__(__self__, *,
4906
6493
  name: str,
4907
6494
  values: Sequence[str],
@@ -4940,7 +6527,7 @@ class GetSecurityAssessmentFindingFilterArgs:
4940
6527
 
4941
6528
 
4942
6529
  @pulumi.input_type
4943
- class GetSecurityAssessmentFindingsFilterArgs:
6530
+ class GetSecurityPolicyReportRoleGrantPathsFilterArgs:
4944
6531
  def __init__(__self__, *,
4945
6532
  name: str,
4946
6533
  values: Sequence[str],
@@ -4979,7 +6566,7 @@ class GetSecurityAssessmentFindingsFilterArgs:
4979
6566
 
4980
6567
 
4981
6568
  @pulumi.input_type
4982
- class GetSecurityAssessmentsFilterArgs:
6569
+ class GetSecurityPolicyReportsFilterArgs:
4983
6570
  def __init__(__self__, *,
4984
6571
  name: str,
4985
6572
  values: Sequence[str],
@@ -5251,6 +6838,45 @@ class GetTargetAlertPolicyAssociationsFilterArgs:
5251
6838
  pulumi.set(self, "regex", value)
5252
6839
 
5253
6840
 
6841
+ @pulumi.input_type
6842
+ class GetTargetDatabasePeerTargetDatabasesFilterArgs:
6843
+ def __init__(__self__, *,
6844
+ name: str,
6845
+ values: Sequence[str],
6846
+ regex: Optional[bool] = None):
6847
+ pulumi.set(__self__, "name", name)
6848
+ pulumi.set(__self__, "values", values)
6849
+ if regex is not None:
6850
+ pulumi.set(__self__, "regex", regex)
6851
+
6852
+ @property
6853
+ @pulumi.getter
6854
+ def name(self) -> str:
6855
+ return pulumi.get(self, "name")
6856
+
6857
+ @name.setter
6858
+ def name(self, value: str):
6859
+ pulumi.set(self, "name", value)
6860
+
6861
+ @property
6862
+ @pulumi.getter
6863
+ def values(self) -> Sequence[str]:
6864
+ return pulumi.get(self, "values")
6865
+
6866
+ @values.setter
6867
+ def values(self, value: Sequence[str]):
6868
+ pulumi.set(self, "values", value)
6869
+
6870
+ @property
6871
+ @pulumi.getter
6872
+ def regex(self) -> Optional[bool]:
6873
+ return pulumi.get(self, "regex")
6874
+
6875
+ @regex.setter
6876
+ def regex(self, value: Optional[bool]):
6877
+ pulumi.set(self, "regex", value)
6878
+
6879
+
5254
6880
  @pulumi.input_type
5255
6881
  class GetTargetDatabaseRoleFilterArgs:
5256
6882
  def __init__(__self__, *,
@@ -5563,6 +7189,45 @@ class GetUserAssessmentProfilesFilterArgs:
5563
7189
  pulumi.set(self, "regex", value)
5564
7190
 
5565
7191
 
7192
+ @pulumi.input_type
7193
+ class GetUserAssessmentUserAccessAnalyticsFilterArgs:
7194
+ def __init__(__self__, *,
7195
+ name: str,
7196
+ values: Sequence[str],
7197
+ regex: Optional[bool] = None):
7198
+ pulumi.set(__self__, "name", name)
7199
+ pulumi.set(__self__, "values", values)
7200
+ if regex is not None:
7201
+ pulumi.set(__self__, "regex", regex)
7202
+
7203
+ @property
7204
+ @pulumi.getter
7205
+ def name(self) -> str:
7206
+ return pulumi.get(self, "name")
7207
+
7208
+ @name.setter
7209
+ def name(self, value: str):
7210
+ pulumi.set(self, "name", value)
7211
+
7212
+ @property
7213
+ @pulumi.getter
7214
+ def values(self) -> Sequence[str]:
7215
+ return pulumi.get(self, "values")
7216
+
7217
+ @values.setter
7218
+ def values(self, value: Sequence[str]):
7219
+ pulumi.set(self, "values", value)
7220
+
7221
+ @property
7222
+ @pulumi.getter
7223
+ def regex(self) -> Optional[bool]:
7224
+ return pulumi.get(self, "regex")
7225
+
7226
+ @regex.setter
7227
+ def regex(self, value: Optional[bool]):
7228
+ pulumi.set(self, "regex", value)
7229
+
7230
+
5566
7231
  @pulumi.input_type
5567
7232
  class GetUserAssessmentUserAnalyticsFilterArgs:
5568
7233
  def __init__(__self__, *,