pulumi-oci 2.3.0a1721242122__py3-none-any.whl → 2.4.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 (89) hide show
  1. pulumi_oci/__init__.py +19 -11
  2. pulumi_oci/apmsynthetics/_inputs.py +457 -1
  3. pulumi_oci/apmsynthetics/config.py +172 -7
  4. pulumi_oci/apmsynthetics/get_monitor.py +42 -3
  5. pulumi_oci/apmsynthetics/get_monitors.py +2 -2
  6. pulumi_oci/apmsynthetics/outputs.py +1129 -9
  7. pulumi_oci/core/_inputs.py +8 -8
  8. pulumi_oci/core/outputs.py +24 -8
  9. pulumi_oci/database/_inputs.py +16 -0
  10. pulumi_oci/database/autonomous_database.py +83 -9
  11. pulumi_oci/database/cloud_autonomous_vm_cluster.py +7 -25
  12. pulumi_oci/database/cloud_exadata_infrastructure.py +66 -17
  13. pulumi_oci/database/cloud_vm_cluster.py +49 -0
  14. pulumi_oci/database/database.py +0 -96
  15. pulumi_oci/database/get_autonomous_database.py +25 -1
  16. pulumi_oci/database/get_cloud_exadata_infrastructure.py +14 -1
  17. pulumi_oci/database/get_cloud_vm_cluster.py +14 -1
  18. pulumi_oci/database/get_key_store.py +11 -1
  19. pulumi_oci/database/key_store.py +34 -0
  20. pulumi_oci/database/outputs.py +93 -0
  21. pulumi_oci/datasafe/__init__.py +1 -0
  22. pulumi_oci/datasafe/_inputs.py +130 -0
  23. pulumi_oci/datasafe/discovery_mod.py +67 -38
  24. pulumi_oci/datasafe/get_audit_events.py +2 -2
  25. pulumi_oci/datasafe/get_discovery_job.py +15 -1
  26. pulumi_oci/datasafe/get_report.py +1 -1
  27. pulumi_oci/datasafe/get_report_definition.py +1 -1
  28. pulumi_oci/datasafe/get_reports.py +43 -1
  29. pulumi_oci/datasafe/get_security_assessment.py +14 -1
  30. pulumi_oci/datasafe/get_security_assessment_finding.py +16 -3
  31. pulumi_oci/datasafe/get_security_assessment_findings.py +21 -3
  32. pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
  33. pulumi_oci/datasafe/get_sensitive_data_model_sensitive_types.py +153 -0
  34. pulumi_oci/datasafe/get_user_assessment.py +14 -1
  35. pulumi_oci/datasafe/outputs.py +530 -6
  36. pulumi_oci/datasafe/report.py +4 -4
  37. pulumi_oci/datasafe/report_definition.py +4 -4
  38. pulumi_oci/datasafe/security_assessment.py +49 -0
  39. pulumi_oci/datasafe/sensitive_data_model.py +60 -3
  40. pulumi_oci/datasafe/unset_security_assessment_baseline.py +69 -16
  41. pulumi_oci/datasafe/unset_user_assessment_baseline.py +58 -5
  42. pulumi_oci/datasafe/user_assessment.py +49 -0
  43. pulumi_oci/{emwarehouse → globallydistributeddatabase}/__init__.py +6 -6
  44. pulumi_oci/globallydistributeddatabase/_inputs.py +1003 -0
  45. pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +300 -0
  46. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +176 -0
  47. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +610 -0
  48. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +176 -0
  49. pulumi_oci/globallydistributeddatabase/outputs.py +2058 -0
  50. pulumi_oci/{emwarehouse/em_warehouse.py → globallydistributeddatabase/private_endpoint.py} +288 -267
  51. pulumi_oci/globallydistributeddatabase/sharded_database.py +1816 -0
  52. pulumi_oci/integration/_inputs.py +0 -2
  53. pulumi_oci/integration/get_integration_instance.py +0 -1
  54. pulumi_oci/integration/integration_instance.py +0 -27
  55. pulumi_oci/integration/outputs.py +4 -12
  56. pulumi_oci/opsi/_inputs.py +8 -8
  57. pulumi_oci/opsi/database_insight.py +71 -15
  58. pulumi_oci/opsi/get_database_insight.py +29 -3
  59. pulumi_oci/opsi/get_database_insights.py +1 -1
  60. pulumi_oci/opsi/get_enterprise_manager_bridges.py +2 -2
  61. pulumi_oci/opsi/get_host_insight.py +1 -4
  62. pulumi_oci/opsi/get_host_insights.py +3 -3
  63. pulumi_oci/opsi/get_news_report.py +1 -1
  64. pulumi_oci/opsi/get_news_reports.py +3 -3
  65. pulumi_oci/opsi/get_operations_insights_private_endpoint.py +1 -1
  66. pulumi_oci/opsi/get_operations_insights_private_endpoints.py +1 -1
  67. pulumi_oci/opsi/get_operations_insights_warehouse.py +7 -7
  68. pulumi_oci/opsi/get_operations_insights_warehouse_user.py +2 -2
  69. pulumi_oci/opsi/get_operations_insights_warehouses.py +5 -5
  70. pulumi_oci/opsi/host_insight.py +6 -14
  71. pulumi_oci/opsi/news_report.py +2 -2
  72. pulumi_oci/opsi/operations_insights_private_endpoint.py +9 -9
  73. pulumi_oci/opsi/operations_insights_warehouse.py +17 -17
  74. pulumi_oci/opsi/operations_insights_warehouse_download_warehouse_wallet.py +14 -14
  75. pulumi_oci/opsi/operations_insights_warehouse_rotate_warehouse_wallet.py +7 -7
  76. pulumi_oci/opsi/operations_insights_warehouse_user.py +14 -14
  77. pulumi_oci/opsi/outputs.py +46 -24
  78. pulumi_oci/pulumi-plugin.json +1 -1
  79. {pulumi_oci-2.3.0a1721242122.dist-info → pulumi_oci-2.4.0.dist-info}/METADATA +1 -1
  80. {pulumi_oci-2.3.0a1721242122.dist-info → pulumi_oci-2.4.0.dist-info}/RECORD +82 -81
  81. {pulumi_oci-2.3.0a1721242122.dist-info → pulumi_oci-2.4.0.dist-info}/WHEEL +1 -1
  82. pulumi_oci/emwarehouse/_inputs.py +0 -94
  83. pulumi_oci/emwarehouse/get_em_warehouse.py +0 -300
  84. pulumi_oci/emwarehouse/get_em_warehouses.py +0 -203
  85. pulumi_oci/emwarehouse/get_etl_run.py +0 -159
  86. pulumi_oci/emwarehouse/get_etl_runs.py +0 -173
  87. pulumi_oci/emwarehouse/get_resource_usage.py +0 -171
  88. pulumi_oci/emwarehouse/outputs.py +0 -616
  89. {pulumi_oci-2.3.0a1721242122.dist-info → pulumi_oci-2.4.0.dist-info}/top_level.txt +0 -0
@@ -112,7 +112,7 @@ class _ReportState:
112
112
  :param pulumi.Input[str] description: Specifies a description of the report.
113
113
  :param pulumi.Input[str] display_name: Name of the report.
114
114
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
115
- :param pulumi.Input[str] mime_type: Specifies the format of report to be excel or pdf
115
+ :param pulumi.Input[str] mime_type: Specifies the format of report to be .xls or .pdf or .json
116
116
  :param pulumi.Input[str] report_definition_id: The OCID of the report definition.
117
117
  :param pulumi.Input[str] report_id: Unique report identifier
118
118
 
@@ -213,7 +213,7 @@ class _ReportState:
213
213
  @pulumi.getter(name="mimeType")
214
214
  def mime_type(self) -> Optional[pulumi.Input[str]]:
215
215
  """
216
- Specifies the format of report to be excel or pdf
216
+ Specifies the format of report to be .xls or .pdf or .json
217
217
  """
218
218
  return pulumi.get(self, "mime_type")
219
219
 
@@ -427,7 +427,7 @@ class Report(pulumi.CustomResource):
427
427
  :param pulumi.Input[str] description: Specifies a description of the report.
428
428
  :param pulumi.Input[str] display_name: Name of the report.
429
429
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
430
- :param pulumi.Input[str] mime_type: Specifies the format of report to be excel or pdf
430
+ :param pulumi.Input[str] mime_type: Specifies the format of report to be .xls or .pdf or .json
431
431
  :param pulumi.Input[str] report_definition_id: The OCID of the report definition.
432
432
  :param pulumi.Input[str] report_id: Unique report identifier
433
433
 
@@ -501,7 +501,7 @@ class Report(pulumi.CustomResource):
501
501
  @pulumi.getter(name="mimeType")
502
502
  def mime_type(self) -> pulumi.Output[str]:
503
503
  """
504
- Specifies the format of report to be excel or pdf
504
+ Specifies the format of report to be .xls or .pdf or .json
505
505
  """
506
506
  return pulumi.get(self, "mime_type")
507
507
 
@@ -222,7 +222,7 @@ class _ReportDefinitionState:
222
222
  :param pulumi.Input[str] record_time_span: The time span for the records in the report to be scheduled. <period-value><period> Allowed period strings - "H","D","M","Y" Each of the above fields potentially introduce constraints. A workRequest is created only when period-value satisfies all the constraints. Constraints introduced: 1. period = H (The allowed range for period-value is [1, 23]) 2. period = D (The allowed range for period-value is [1, 30]) 3. period = M (The allowed range for period-value is [1, 11]) 4. period = Y (The minimum period-value is 1)
223
223
  :param pulumi.Input[str] schedule: The schedule to generate the report periodically in the specified format: <version-string>;<version-specific-schedule>
224
224
  :param pulumi.Input[str] scheduled_report_compartment_id: The OCID of the compartment in which the scheduled resource will be created.
225
- :param pulumi.Input[str] scheduled_report_mime_type: Specifies the format of the report ( either .xls or .pdf )
225
+ :param pulumi.Input[str] scheduled_report_mime_type: Specifies the format of the report ( either .xls or .pdf or .json)
226
226
  :param pulumi.Input[str] scheduled_report_name: The name of the report to be scheduled.
227
227
  :param pulumi.Input[int] scheduled_report_row_limit: Specifies the limit on the number of rows in the report.
228
228
  :param pulumi.Input[str] scim_filter: Additional scim filters used to get the specific summary.
@@ -493,7 +493,7 @@ class _ReportDefinitionState:
493
493
  @pulumi.getter(name="scheduledReportMimeType")
494
494
  def scheduled_report_mime_type(self) -> Optional[pulumi.Input[str]]:
495
495
  """
496
- Specifies the format of the report ( either .xls or .pdf )
496
+ Specifies the format of the report ( either .xls or .pdf or .json)
497
497
  """
498
498
  return pulumi.get(self, "scheduled_report_mime_type")
499
499
 
@@ -885,7 +885,7 @@ class ReportDefinition(pulumi.CustomResource):
885
885
  :param pulumi.Input[str] record_time_span: The time span for the records in the report to be scheduled. <period-value><period> Allowed period strings - "H","D","M","Y" Each of the above fields potentially introduce constraints. A workRequest is created only when period-value satisfies all the constraints. Constraints introduced: 1. period = H (The allowed range for period-value is [1, 23]) 2. period = D (The allowed range for period-value is [1, 30]) 3. period = M (The allowed range for period-value is [1, 11]) 4. period = Y (The minimum period-value is 1)
886
886
  :param pulumi.Input[str] schedule: The schedule to generate the report periodically in the specified format: <version-string>;<version-specific-schedule>
887
887
  :param pulumi.Input[str] scheduled_report_compartment_id: The OCID of the compartment in which the scheduled resource will be created.
888
- :param pulumi.Input[str] scheduled_report_mime_type: Specifies the format of the report ( either .xls or .pdf )
888
+ :param pulumi.Input[str] scheduled_report_mime_type: Specifies the format of the report ( either .xls or .pdf or .json)
889
889
  :param pulumi.Input[str] scheduled_report_name: The name of the report to be scheduled.
890
890
  :param pulumi.Input[int] scheduled_report_row_limit: Specifies the limit on the number of rows in the report.
891
891
  :param pulumi.Input[str] scim_filter: Additional scim filters used to get the specific summary.
@@ -1067,7 +1067,7 @@ class ReportDefinition(pulumi.CustomResource):
1067
1067
  @pulumi.getter(name="scheduledReportMimeType")
1068
1068
  def scheduled_report_mime_type(self) -> pulumi.Output[str]:
1069
1069
  """
1070
- Specifies the format of the report ( either .xls or .pdf )
1070
+ Specifies the format of the report ( either .xls or .pdf or .json)
1071
1071
  """
1072
1072
  return pulumi.get(self, "scheduled_report_mime_type")
1073
1073
 
@@ -22,6 +22,7 @@ class SecurityAssessmentArgs:
22
22
  description: Optional[pulumi.Input[str]] = None,
23
23
  display_name: Optional[pulumi.Input[str]] = None,
24
24
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
25
+ is_assessment_scheduled: Optional[pulumi.Input[bool]] = None,
25
26
  schedule: Optional[pulumi.Input[str]] = None):
26
27
  """
27
28
  The set of arguments for constructing a SecurityAssessment resource.
@@ -35,6 +36,7 @@ class SecurityAssessmentArgs:
35
36
  :param pulumi.Input[str] description: (Updatable) Description of the security assessment.
36
37
  :param pulumi.Input[str] display_name: (Updatable) The display name of the security assessment.
37
38
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
39
+ :param pulumi.Input[bool] is_assessment_scheduled: (Updatable) Indicates whether the assessment is scheduled to run.
38
40
  :param pulumi.Input[str] schedule: (Updatable) To schedule the assessment for running periodically, specify the schedule in this attribute. Create or schedule one assessment per compartment. If not defined, the assessment runs immediately. Format - <version-string>;<version-specific-schedule>
39
41
 
40
42
  Allowed version strings - "v1" v1's version specific schedule -<ss> <mm> <hh> <day-of-week> <day-of-month> Each of the above fields potentially introduce constraints. A workrequest is created only when clock time satisfies all the constraints. Constraints introduced: 1. seconds = <ss> (So, the allowed range for <ss> is [0, 59]) 2. minutes = <mm> (So, the allowed range for <mm> is [0, 59]) 3. hours = <hh> (So, the allowed range for <hh> is [0, 23]) <day-of-week> can be either '*' (without quotes or a number between 1(Monday) and 7(Sunday)) 4. No constraint introduced when it is '*'. When not, day of week must equal the given value <day-of-month> can be either '*' (without quotes or a number between 1 and 28) 5. No constraint introduced when it is '*'. When not, day of month must equal the given value
@@ -49,6 +51,8 @@ class SecurityAssessmentArgs:
49
51
  pulumi.set(__self__, "display_name", display_name)
50
52
  if freeform_tags is not None:
51
53
  pulumi.set(__self__, "freeform_tags", freeform_tags)
54
+ if is_assessment_scheduled is not None:
55
+ pulumi.set(__self__, "is_assessment_scheduled", is_assessment_scheduled)
52
56
  if schedule is not None:
53
57
  pulumi.set(__self__, "schedule", schedule)
54
58
 
@@ -128,6 +132,18 @@ class SecurityAssessmentArgs:
128
132
  def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
129
133
  pulumi.set(self, "freeform_tags", value)
130
134
 
135
+ @property
136
+ @pulumi.getter(name="isAssessmentScheduled")
137
+ def is_assessment_scheduled(self) -> Optional[pulumi.Input[bool]]:
138
+ """
139
+ (Updatable) Indicates whether the assessment is scheduled to run.
140
+ """
141
+ return pulumi.get(self, "is_assessment_scheduled")
142
+
143
+ @is_assessment_scheduled.setter
144
+ def is_assessment_scheduled(self, value: Optional[pulumi.Input[bool]]):
145
+ pulumi.set(self, "is_assessment_scheduled", value)
146
+
131
147
  @property
132
148
  @pulumi.getter
133
149
  def schedule(self) -> Optional[pulumi.Input[str]]:
@@ -153,6 +169,7 @@ class _SecurityAssessmentState:
153
169
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
154
170
  ignored_assessment_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
155
171
  ignored_targets: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
172
+ is_assessment_scheduled: Optional[pulumi.Input[bool]] = None,
156
173
  is_baseline: Optional[pulumi.Input[bool]] = None,
157
174
  is_deviated_from_baseline: Optional[pulumi.Input[bool]] = None,
158
175
  last_compared_baseline_id: Optional[pulumi.Input[str]] = None,
@@ -180,6 +197,7 @@ class _SecurityAssessmentState:
180
197
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
181
198
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ignored_assessment_ids: List containing maps as values. Example: `{"Operations": [ {"CostCenter": "42"} ] }`
182
199
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ignored_targets: List containing maps as values. Example: `{"Operations": [ {"CostCenter": "42"} ] }`
200
+ :param pulumi.Input[bool] is_assessment_scheduled: (Updatable) Indicates whether the assessment is scheduled to run.
183
201
  :param pulumi.Input[bool] is_baseline: Indicates whether or not the security assessment is set as a baseline. This is applicable only for saved security assessments.
184
202
  :param pulumi.Input[bool] is_deviated_from_baseline: Indicates whether or not the security assessment deviates from the baseline.
185
203
  :param pulumi.Input[str] last_compared_baseline_id: The OCID of the baseline against which the latest security assessment was compared.
@@ -219,6 +237,8 @@ class _SecurityAssessmentState:
219
237
  pulumi.set(__self__, "ignored_assessment_ids", ignored_assessment_ids)
220
238
  if ignored_targets is not None:
221
239
  pulumi.set(__self__, "ignored_targets", ignored_targets)
240
+ if is_assessment_scheduled is not None:
241
+ pulumi.set(__self__, "is_assessment_scheduled", is_assessment_scheduled)
222
242
  if is_baseline is not None:
223
243
  pulumi.set(__self__, "is_baseline", is_baseline)
224
244
  if is_deviated_from_baseline is not None:
@@ -340,6 +360,18 @@ class _SecurityAssessmentState:
340
360
  def ignored_targets(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
341
361
  pulumi.set(self, "ignored_targets", value)
342
362
 
363
+ @property
364
+ @pulumi.getter(name="isAssessmentScheduled")
365
+ def is_assessment_scheduled(self) -> Optional[pulumi.Input[bool]]:
366
+ """
367
+ (Updatable) Indicates whether the assessment is scheduled to run.
368
+ """
369
+ return pulumi.get(self, "is_assessment_scheduled")
370
+
371
+ @is_assessment_scheduled.setter
372
+ def is_assessment_scheduled(self, value: Optional[pulumi.Input[bool]]):
373
+ pulumi.set(self, "is_assessment_scheduled", value)
374
+
343
375
  @property
344
376
  @pulumi.getter(name="isBaseline")
345
377
  def is_baseline(self) -> Optional[pulumi.Input[bool]]:
@@ -573,6 +605,7 @@ class SecurityAssessment(pulumi.CustomResource):
573
605
  description: Optional[pulumi.Input[str]] = None,
574
606
  display_name: Optional[pulumi.Input[str]] = None,
575
607
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
608
+ is_assessment_scheduled: Optional[pulumi.Input[bool]] = None,
576
609
  schedule: Optional[pulumi.Input[str]] = None,
577
610
  target_id: Optional[pulumi.Input[str]] = None,
578
611
  __props__=None):
@@ -600,6 +633,7 @@ class SecurityAssessment(pulumi.CustomResource):
600
633
  freeform_tags={
601
634
  "Department": "Finance",
602
635
  },
636
+ is_assessment_scheduled=security_assessment_is_assessment_scheduled,
603
637
  schedule=security_assessment_schedule)
604
638
  ```
605
639
 
@@ -618,6 +652,7 @@ class SecurityAssessment(pulumi.CustomResource):
618
652
  :param pulumi.Input[str] description: (Updatable) Description of the security assessment.
619
653
  :param pulumi.Input[str] display_name: (Updatable) The display name of the security assessment.
620
654
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
655
+ :param pulumi.Input[bool] is_assessment_scheduled: (Updatable) Indicates whether the assessment is scheduled to run.
621
656
  :param pulumi.Input[str] schedule: (Updatable) To schedule the assessment for running periodically, specify the schedule in this attribute. Create or schedule one assessment per compartment. If not defined, the assessment runs immediately. Format - <version-string>;<version-specific-schedule>
622
657
 
623
658
  Allowed version strings - "v1" v1's version specific schedule -<ss> <mm> <hh> <day-of-week> <day-of-month> Each of the above fields potentially introduce constraints. A workrequest is created only when clock time satisfies all the constraints. Constraints introduced: 1. seconds = <ss> (So, the allowed range for <ss> is [0, 59]) 2. minutes = <mm> (So, the allowed range for <mm> is [0, 59]) 3. hours = <hh> (So, the allowed range for <hh> is [0, 23]) <day-of-week> can be either '*' (without quotes or a number between 1(Monday) and 7(Sunday)) 4. No constraint introduced when it is '*'. When not, day of week must equal the given value <day-of-month> can be either '*' (without quotes or a number between 1 and 28) 5. No constraint introduced when it is '*'. When not, day of month must equal the given value
@@ -657,6 +692,7 @@ class SecurityAssessment(pulumi.CustomResource):
657
692
  freeform_tags={
658
693
  "Department": "Finance",
659
694
  },
695
+ is_assessment_scheduled=security_assessment_is_assessment_scheduled,
660
696
  schedule=security_assessment_schedule)
661
697
  ```
662
698
 
@@ -688,6 +724,7 @@ class SecurityAssessment(pulumi.CustomResource):
688
724
  description: Optional[pulumi.Input[str]] = None,
689
725
  display_name: Optional[pulumi.Input[str]] = None,
690
726
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
727
+ is_assessment_scheduled: Optional[pulumi.Input[bool]] = None,
691
728
  schedule: Optional[pulumi.Input[str]] = None,
692
729
  target_id: Optional[pulumi.Input[str]] = None,
693
730
  __props__=None):
@@ -706,6 +743,7 @@ class SecurityAssessment(pulumi.CustomResource):
706
743
  __props__.__dict__["description"] = description
707
744
  __props__.__dict__["display_name"] = display_name
708
745
  __props__.__dict__["freeform_tags"] = freeform_tags
746
+ __props__.__dict__["is_assessment_scheduled"] = is_assessment_scheduled
709
747
  __props__.__dict__["schedule"] = schedule
710
748
  if target_id is None and not opts.urn:
711
749
  raise TypeError("Missing required property 'target_id'")
@@ -745,6 +783,7 @@ class SecurityAssessment(pulumi.CustomResource):
745
783
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
746
784
  ignored_assessment_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
747
785
  ignored_targets: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
786
+ is_assessment_scheduled: Optional[pulumi.Input[bool]] = None,
748
787
  is_baseline: Optional[pulumi.Input[bool]] = None,
749
788
  is_deviated_from_baseline: Optional[pulumi.Input[bool]] = None,
750
789
  last_compared_baseline_id: Optional[pulumi.Input[str]] = None,
@@ -777,6 +816,7 @@ class SecurityAssessment(pulumi.CustomResource):
777
816
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
778
817
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ignored_assessment_ids: List containing maps as values. Example: `{"Operations": [ {"CostCenter": "42"} ] }`
779
818
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ignored_targets: List containing maps as values. Example: `{"Operations": [ {"CostCenter": "42"} ] }`
819
+ :param pulumi.Input[bool] is_assessment_scheduled: (Updatable) Indicates whether the assessment is scheduled to run.
780
820
  :param pulumi.Input[bool] is_baseline: Indicates whether or not the security assessment is set as a baseline. This is applicable only for saved security assessments.
781
821
  :param pulumi.Input[bool] is_deviated_from_baseline: Indicates whether or not the security assessment deviates from the baseline.
782
822
  :param pulumi.Input[str] last_compared_baseline_id: The OCID of the baseline against which the latest security assessment was compared.
@@ -813,6 +853,7 @@ class SecurityAssessment(pulumi.CustomResource):
813
853
  __props__.__dict__["freeform_tags"] = freeform_tags
814
854
  __props__.__dict__["ignored_assessment_ids"] = ignored_assessment_ids
815
855
  __props__.__dict__["ignored_targets"] = ignored_targets
856
+ __props__.__dict__["is_assessment_scheduled"] = is_assessment_scheduled
816
857
  __props__.__dict__["is_baseline"] = is_baseline
817
858
  __props__.__dict__["is_deviated_from_baseline"] = is_deviated_from_baseline
818
859
  __props__.__dict__["last_compared_baseline_id"] = last_compared_baseline_id
@@ -889,6 +930,14 @@ class SecurityAssessment(pulumi.CustomResource):
889
930
  """
890
931
  return pulumi.get(self, "ignored_targets")
891
932
 
933
+ @property
934
+ @pulumi.getter(name="isAssessmentScheduled")
935
+ def is_assessment_scheduled(self) -> pulumi.Output[bool]:
936
+ """
937
+ (Updatable) Indicates whether the assessment is scheduled to run.
938
+ """
939
+ return pulumi.get(self, "is_assessment_scheduled")
940
+
892
941
  @property
893
942
  @pulumi.getter(name="isBaseline")
894
943
  def is_baseline(self) -> pulumi.Output[bool]:
@@ -8,6 +8,8 @@ import pulumi
8
8
  import pulumi.runtime
9
9
  from typing import Any, Mapping, Optional, Sequence, Union, overload
10
10
  from .. import _utilities
11
+ from . import outputs
12
+ from ._inputs import *
11
13
 
12
14
  __all__ = ['SensitiveDataModelArgs', 'SensitiveDataModel']
13
15
 
@@ -26,7 +28,8 @@ class SensitiveDataModelArgs:
26
28
  is_include_all_sensitive_types: Optional[pulumi.Input[bool]] = None,
27
29
  is_sample_data_collection_enabled: Optional[pulumi.Input[bool]] = None,
28
30
  schemas_for_discoveries: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
29
- sensitive_type_ids_for_discoveries: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
31
+ sensitive_type_ids_for_discoveries: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
32
+ tables_for_discoveries: Optional[pulumi.Input[Sequence[pulumi.Input['SensitiveDataModelTablesForDiscoveryArgs']]]] = None):
30
33
  """
31
34
  The set of arguments for constructing a SensitiveDataModel resource.
32
35
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment where the sensitive data model should be created.
@@ -46,6 +49,7 @@ class SensitiveDataModelArgs:
46
49
  :param pulumi.Input[bool] is_sample_data_collection_enabled: (Updatable) Indicates if data discovery jobs should collect and store sample data values for the discovered columns. Sample data helps review the discovered columns and ensure that they actually contain sensitive data. As it collects original data from the target database, it's disabled by default and should be used only if it's acceptable to store sample data in Data Safe's repository in Oracle Cloud. Note that sample data values are not collected for columns with the following data types: LONG, LOB, RAW, XMLTYPE and BFILE.
47
50
  :param pulumi.Input[Sequence[pulumi.Input[str]]] schemas_for_discoveries: (Updatable) The schemas to be scanned by data discovery jobs.
48
51
  :param pulumi.Input[Sequence[pulumi.Input[str]]] sensitive_type_ids_for_discoveries: (Updatable) The OCIDs of the sensitive types to be used by data discovery jobs. If OCID of a sensitive category is provided, all its child sensitive types are used for data discovery.
52
+ :param pulumi.Input[Sequence[pulumi.Input['SensitiveDataModelTablesForDiscoveryArgs']]] tables_for_discoveries: (Updatable) The data discovery jobs will scan the tables specified here, including both schemas and tables. For instance, the input could be in the format: [{schemaName: "HR", tableName: ["T1", "T2"]}, {schemaName: "OE", tableName : ["T3", "T4"]}].
49
53
  """
50
54
  pulumi.set(__self__, "compartment_id", compartment_id)
51
55
  pulumi.set(__self__, "target_id", target_id)
@@ -71,6 +75,8 @@ class SensitiveDataModelArgs:
71
75
  pulumi.set(__self__, "schemas_for_discoveries", schemas_for_discoveries)
72
76
  if sensitive_type_ids_for_discoveries is not None:
73
77
  pulumi.set(__self__, "sensitive_type_ids_for_discoveries", sensitive_type_ids_for_discoveries)
78
+ if tables_for_discoveries is not None:
79
+ pulumi.set(__self__, "tables_for_discoveries", tables_for_discoveries)
74
80
 
75
81
  @property
76
82
  @pulumi.getter(name="compartmentId")
@@ -232,6 +238,18 @@ class SensitiveDataModelArgs:
232
238
  def sensitive_type_ids_for_discoveries(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
233
239
  pulumi.set(self, "sensitive_type_ids_for_discoveries", value)
234
240
 
241
+ @property
242
+ @pulumi.getter(name="tablesForDiscoveries")
243
+ def tables_for_discoveries(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SensitiveDataModelTablesForDiscoveryArgs']]]]:
244
+ """
245
+ (Updatable) The data discovery jobs will scan the tables specified here, including both schemas and tables. For instance, the input could be in the format: [{schemaName: "HR", tableName: ["T1", "T2"]}, {schemaName: "OE", tableName : ["T3", "T4"]}].
246
+ """
247
+ return pulumi.get(self, "tables_for_discoveries")
248
+
249
+ @tables_for_discoveries.setter
250
+ def tables_for_discoveries(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['SensitiveDataModelTablesForDiscoveryArgs']]]]):
251
+ pulumi.set(self, "tables_for_discoveries", value)
252
+
235
253
 
236
254
  @pulumi.input_type
237
255
  class _SensitiveDataModelState:
@@ -250,6 +268,7 @@ class _SensitiveDataModelState:
250
268
  sensitive_type_ids_for_discoveries: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
251
269
  state: Optional[pulumi.Input[str]] = None,
252
270
  system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
271
+ tables_for_discoveries: Optional[pulumi.Input[Sequence[pulumi.Input['SensitiveDataModelTablesForDiscoveryArgs']]]] = None,
253
272
  target_id: Optional[pulumi.Input[str]] = None,
254
273
  time_created: Optional[pulumi.Input[str]] = None,
255
274
  time_updated: Optional[pulumi.Input[str]] = None):
@@ -269,6 +288,7 @@ class _SensitiveDataModelState:
269
288
  :param pulumi.Input[Sequence[pulumi.Input[str]]] sensitive_type_ids_for_discoveries: (Updatable) The OCIDs of the sensitive types to be used by data discovery jobs. If OCID of a sensitive category is provided, all its child sensitive types are used for data discovery.
270
289
  :param pulumi.Input[str] state: The current state of the sensitive data model.
271
290
  :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"}`
291
+ :param pulumi.Input[Sequence[pulumi.Input['SensitiveDataModelTablesForDiscoveryArgs']]] tables_for_discoveries: (Updatable) The data discovery jobs will scan the tables specified here, including both schemas and tables. For instance, the input could be in the format: [{schemaName: "HR", tableName: ["T1", "T2"]}, {schemaName: "OE", tableName : ["T3", "T4"]}].
272
292
  :param pulumi.Input[str] target_id: (Updatable) The OCID of the reference target database to be associated with the sensitive data model. All operations such as performing data discovery and adding columns manually are done in the context of the associated target database.
273
293
 
274
294
 
@@ -305,6 +325,8 @@ class _SensitiveDataModelState:
305
325
  pulumi.set(__self__, "state", state)
306
326
  if system_tags is not None:
307
327
  pulumi.set(__self__, "system_tags", system_tags)
328
+ if tables_for_discoveries is not None:
329
+ pulumi.set(__self__, "tables_for_discoveries", tables_for_discoveries)
308
330
  if target_id is not None:
309
331
  pulumi.set(__self__, "target_id", target_id)
310
332
  if time_created is not None:
@@ -480,6 +502,18 @@ class _SensitiveDataModelState:
480
502
  def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
481
503
  pulumi.set(self, "system_tags", value)
482
504
 
505
+ @property
506
+ @pulumi.getter(name="tablesForDiscoveries")
507
+ def tables_for_discoveries(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SensitiveDataModelTablesForDiscoveryArgs']]]]:
508
+ """
509
+ (Updatable) The data discovery jobs will scan the tables specified here, including both schemas and tables. For instance, the input could be in the format: [{schemaName: "HR", tableName: ["T1", "T2"]}, {schemaName: "OE", tableName : ["T3", "T4"]}].
510
+ """
511
+ return pulumi.get(self, "tables_for_discoveries")
512
+
513
+ @tables_for_discoveries.setter
514
+ def tables_for_discoveries(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['SensitiveDataModelTablesForDiscoveryArgs']]]]):
515
+ pulumi.set(self, "tables_for_discoveries", value)
516
+
483
517
  @property
484
518
  @pulumi.getter(name="targetId")
485
519
  def target_id(self) -> Optional[pulumi.Input[str]]:
@@ -538,6 +572,7 @@ class SensitiveDataModel(pulumi.CustomResource):
538
572
  is_sample_data_collection_enabled: Optional[pulumi.Input[bool]] = None,
539
573
  schemas_for_discoveries: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
540
574
  sensitive_type_ids_for_discoveries: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
575
+ tables_for_discoveries: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['SensitiveDataModelTablesForDiscoveryArgs']]]]] = None,
541
576
  target_id: Optional[pulumi.Input[str]] = None,
542
577
  __props__=None):
543
578
  """
@@ -570,7 +605,11 @@ class SensitiveDataModel(pulumi.CustomResource):
570
605
  is_include_all_sensitive_types=sensitive_data_model_is_include_all_sensitive_types,
571
606
  is_sample_data_collection_enabled=sensitive_data_model_is_sample_data_collection_enabled,
572
607
  schemas_for_discoveries=sensitive_data_model_schemas_for_discovery,
573
- sensitive_type_ids_for_discoveries=sensitive_data_model_sensitive_type_ids_for_discovery)
608
+ sensitive_type_ids_for_discoveries=sensitive_data_model_sensitive_type_ids_for_discovery,
609
+ tables_for_discoveries=[oci.data_safe.SensitiveDataModelTablesForDiscoveryArgs(
610
+ schema_name=sensitive_data_model_tables_for_discovery_schema_name,
611
+ table_names=sensitive_data_model_tables_for_discovery_table_names,
612
+ )])
574
613
  ```
575
614
 
576
615
  ## Import
@@ -595,6 +634,7 @@ class SensitiveDataModel(pulumi.CustomResource):
595
634
  :param pulumi.Input[bool] is_sample_data_collection_enabled: (Updatable) Indicates if data discovery jobs should collect and store sample data values for the discovered columns. Sample data helps review the discovered columns and ensure that they actually contain sensitive data. As it collects original data from the target database, it's disabled by default and should be used only if it's acceptable to store sample data in Data Safe's repository in Oracle Cloud. Note that sample data values are not collected for columns with the following data types: LONG, LOB, RAW, XMLTYPE and BFILE.
596
635
  :param pulumi.Input[Sequence[pulumi.Input[str]]] schemas_for_discoveries: (Updatable) The schemas to be scanned by data discovery jobs.
597
636
  :param pulumi.Input[Sequence[pulumi.Input[str]]] sensitive_type_ids_for_discoveries: (Updatable) The OCIDs of the sensitive types to be used by data discovery jobs. If OCID of a sensitive category is provided, all its child sensitive types are used for data discovery.
637
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['SensitiveDataModelTablesForDiscoveryArgs']]]] tables_for_discoveries: (Updatable) The data discovery jobs will scan the tables specified here, including both schemas and tables. For instance, the input could be in the format: [{schemaName: "HR", tableName: ["T1", "T2"]}, {schemaName: "OE", tableName : ["T3", "T4"]}].
598
638
  :param pulumi.Input[str] target_id: (Updatable) The OCID of the reference target database to be associated with the sensitive data model. All operations such as performing data discovery and adding columns manually are done in the context of the associated target database.
599
639
 
600
640
 
@@ -637,7 +677,11 @@ class SensitiveDataModel(pulumi.CustomResource):
637
677
  is_include_all_sensitive_types=sensitive_data_model_is_include_all_sensitive_types,
638
678
  is_sample_data_collection_enabled=sensitive_data_model_is_sample_data_collection_enabled,
639
679
  schemas_for_discoveries=sensitive_data_model_schemas_for_discovery,
640
- sensitive_type_ids_for_discoveries=sensitive_data_model_sensitive_type_ids_for_discovery)
680
+ sensitive_type_ids_for_discoveries=sensitive_data_model_sensitive_type_ids_for_discovery,
681
+ tables_for_discoveries=[oci.data_safe.SensitiveDataModelTablesForDiscoveryArgs(
682
+ schema_name=sensitive_data_model_tables_for_discovery_schema_name,
683
+ table_names=sensitive_data_model_tables_for_discovery_table_names,
684
+ )])
641
685
  ```
642
686
 
643
687
  ## Import
@@ -675,6 +719,7 @@ class SensitiveDataModel(pulumi.CustomResource):
675
719
  is_sample_data_collection_enabled: Optional[pulumi.Input[bool]] = None,
676
720
  schemas_for_discoveries: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
677
721
  sensitive_type_ids_for_discoveries: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
722
+ tables_for_discoveries: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['SensitiveDataModelTablesForDiscoveryArgs']]]]] = None,
678
723
  target_id: Optional[pulumi.Input[str]] = None,
679
724
  __props__=None):
680
725
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -699,6 +744,7 @@ class SensitiveDataModel(pulumi.CustomResource):
699
744
  __props__.__dict__["is_sample_data_collection_enabled"] = is_sample_data_collection_enabled
700
745
  __props__.__dict__["schemas_for_discoveries"] = schemas_for_discoveries
701
746
  __props__.__dict__["sensitive_type_ids_for_discoveries"] = sensitive_type_ids_for_discoveries
747
+ __props__.__dict__["tables_for_discoveries"] = tables_for_discoveries
702
748
  if target_id is None and not opts.urn:
703
749
  raise TypeError("Missing required property 'target_id'")
704
750
  __props__.__dict__["target_id"] = target_id
@@ -730,6 +776,7 @@ class SensitiveDataModel(pulumi.CustomResource):
730
776
  sensitive_type_ids_for_discoveries: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
731
777
  state: Optional[pulumi.Input[str]] = None,
732
778
  system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
779
+ tables_for_discoveries: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['SensitiveDataModelTablesForDiscoveryArgs']]]]] = None,
733
780
  target_id: Optional[pulumi.Input[str]] = None,
734
781
  time_created: Optional[pulumi.Input[str]] = None,
735
782
  time_updated: Optional[pulumi.Input[str]] = None) -> 'SensitiveDataModel':
@@ -754,6 +801,7 @@ class SensitiveDataModel(pulumi.CustomResource):
754
801
  :param pulumi.Input[Sequence[pulumi.Input[str]]] sensitive_type_ids_for_discoveries: (Updatable) The OCIDs of the sensitive types to be used by data discovery jobs. If OCID of a sensitive category is provided, all its child sensitive types are used for data discovery.
755
802
  :param pulumi.Input[str] state: The current state of the sensitive data model.
756
803
  :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"}`
804
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['SensitiveDataModelTablesForDiscoveryArgs']]]] tables_for_discoveries: (Updatable) The data discovery jobs will scan the tables specified here, including both schemas and tables. For instance, the input could be in the format: [{schemaName: "HR", tableName: ["T1", "T2"]}, {schemaName: "OE", tableName : ["T3", "T4"]}].
757
805
  :param pulumi.Input[str] target_id: (Updatable) The OCID of the reference target database to be associated with the sensitive data model. All operations such as performing data discovery and adding columns manually are done in the context of the associated target database.
758
806
 
759
807
 
@@ -780,6 +828,7 @@ class SensitiveDataModel(pulumi.CustomResource):
780
828
  __props__.__dict__["sensitive_type_ids_for_discoveries"] = sensitive_type_ids_for_discoveries
781
829
  __props__.__dict__["state"] = state
782
830
  __props__.__dict__["system_tags"] = system_tags
831
+ __props__.__dict__["tables_for_discoveries"] = tables_for_discoveries
783
832
  __props__.__dict__["target_id"] = target_id
784
833
  __props__.__dict__["time_created"] = time_created
785
834
  __props__.__dict__["time_updated"] = time_updated
@@ -897,6 +946,14 @@ class SensitiveDataModel(pulumi.CustomResource):
897
946
  """
898
947
  return pulumi.get(self, "system_tags")
899
948
 
949
+ @property
950
+ @pulumi.getter(name="tablesForDiscoveries")
951
+ def tables_for_discoveries(self) -> pulumi.Output[Sequence['outputs.SensitiveDataModelTablesForDiscovery']]:
952
+ """
953
+ (Updatable) The data discovery jobs will scan the tables specified here, including both schemas and tables. For instance, the input could be in the format: [{schemaName: "HR", tableName: ["T1", "T2"]}, {schemaName: "OE", tableName : ["T3", "T4"]}].
954
+ """
955
+ return pulumi.get(self, "tables_for_discoveries")
956
+
900
957
  @property
901
958
  @pulumi.getter(name="targetId")
902
959
  def target_id(self) -> pulumi.Output[str]: