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
@@ -0,0 +1,559 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from .. import _utilities
11
+
12
+ __all__ = ['ReportArgs', 'Report']
13
+
14
+ @pulumi.input_type
15
+ class ReportArgs:
16
+ def __init__(__self__, *,
17
+ report_id: pulumi.Input[str],
18
+ compartment_id: Optional[pulumi.Input[str]] = None,
19
+ defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
20
+ freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None):
21
+ """
22
+ The set of arguments for constructing a Report resource.
23
+ :param pulumi.Input[str] report_id: Unique report identifier
24
+
25
+
26
+ ** IMPORTANT **
27
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
28
+ :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the report.
29
+ :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
30
+ :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"}`
31
+ """
32
+ pulumi.set(__self__, "report_id", report_id)
33
+ if compartment_id is not None:
34
+ pulumi.set(__self__, "compartment_id", compartment_id)
35
+ if defined_tags is not None:
36
+ pulumi.set(__self__, "defined_tags", defined_tags)
37
+ if freeform_tags is not None:
38
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
39
+
40
+ @property
41
+ @pulumi.getter(name="reportId")
42
+ def report_id(self) -> pulumi.Input[str]:
43
+ """
44
+ Unique report identifier
45
+
46
+
47
+ ** IMPORTANT **
48
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
49
+ """
50
+ return pulumi.get(self, "report_id")
51
+
52
+ @report_id.setter
53
+ def report_id(self, value: pulumi.Input[str]):
54
+ pulumi.set(self, "report_id", value)
55
+
56
+ @property
57
+ @pulumi.getter(name="compartmentId")
58
+ def compartment_id(self) -> Optional[pulumi.Input[str]]:
59
+ """
60
+ (Updatable) The OCID of the compartment containing the report.
61
+ """
62
+ return pulumi.get(self, "compartment_id")
63
+
64
+ @compartment_id.setter
65
+ def compartment_id(self, value: Optional[pulumi.Input[str]]):
66
+ pulumi.set(self, "compartment_id", value)
67
+
68
+ @property
69
+ @pulumi.getter(name="definedTags")
70
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
71
+ """
72
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
73
+ """
74
+ return pulumi.get(self, "defined_tags")
75
+
76
+ @defined_tags.setter
77
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
78
+ pulumi.set(self, "defined_tags", value)
79
+
80
+ @property
81
+ @pulumi.getter(name="freeformTags")
82
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
83
+ """
84
+ (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"}`
85
+ """
86
+ return pulumi.get(self, "freeform_tags")
87
+
88
+ @freeform_tags.setter
89
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
90
+ pulumi.set(self, "freeform_tags", value)
91
+
92
+
93
+ @pulumi.input_type
94
+ class _ReportState:
95
+ def __init__(__self__, *,
96
+ compartment_id: Optional[pulumi.Input[str]] = None,
97
+ defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
98
+ description: Optional[pulumi.Input[str]] = None,
99
+ display_name: Optional[pulumi.Input[str]] = None,
100
+ freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
101
+ mime_type: Optional[pulumi.Input[str]] = None,
102
+ report_definition_id: Optional[pulumi.Input[str]] = None,
103
+ report_id: Optional[pulumi.Input[str]] = None,
104
+ state: Optional[pulumi.Input[str]] = None,
105
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
106
+ time_generated: Optional[pulumi.Input[str]] = None,
107
+ type: Optional[pulumi.Input[str]] = None):
108
+ """
109
+ Input properties used for looking up and filtering Report resources.
110
+ :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the report.
111
+ :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
112
+ :param pulumi.Input[str] description: Specifies a description of the report.
113
+ :param pulumi.Input[str] display_name: Name of the report.
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
116
+ :param pulumi.Input[str] report_definition_id: The OCID of the report definition.
117
+ :param pulumi.Input[str] report_id: Unique report identifier
118
+
119
+
120
+ ** IMPORTANT **
121
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
122
+ :param pulumi.Input[str] state: The current state of the audit report.
123
+ :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"}`
124
+ :param pulumi.Input[str] time_generated: Specifies the date and time the report was generated.
125
+ :param pulumi.Input[str] type: The type of the audit report.
126
+ """
127
+ if compartment_id is not None:
128
+ pulumi.set(__self__, "compartment_id", compartment_id)
129
+ if defined_tags is not None:
130
+ pulumi.set(__self__, "defined_tags", defined_tags)
131
+ if description is not None:
132
+ pulumi.set(__self__, "description", description)
133
+ if display_name is not None:
134
+ pulumi.set(__self__, "display_name", display_name)
135
+ if freeform_tags is not None:
136
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
137
+ if mime_type is not None:
138
+ pulumi.set(__self__, "mime_type", mime_type)
139
+ if report_definition_id is not None:
140
+ pulumi.set(__self__, "report_definition_id", report_definition_id)
141
+ if report_id is not None:
142
+ pulumi.set(__self__, "report_id", report_id)
143
+ if state is not None:
144
+ pulumi.set(__self__, "state", state)
145
+ if system_tags is not None:
146
+ pulumi.set(__self__, "system_tags", system_tags)
147
+ if time_generated is not None:
148
+ pulumi.set(__self__, "time_generated", time_generated)
149
+ if type is not None:
150
+ pulumi.set(__self__, "type", type)
151
+
152
+ @property
153
+ @pulumi.getter(name="compartmentId")
154
+ def compartment_id(self) -> Optional[pulumi.Input[str]]:
155
+ """
156
+ (Updatable) The OCID of the compartment containing the report.
157
+ """
158
+ return pulumi.get(self, "compartment_id")
159
+
160
+ @compartment_id.setter
161
+ def compartment_id(self, value: Optional[pulumi.Input[str]]):
162
+ pulumi.set(self, "compartment_id", value)
163
+
164
+ @property
165
+ @pulumi.getter(name="definedTags")
166
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
167
+ """
168
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
169
+ """
170
+ return pulumi.get(self, "defined_tags")
171
+
172
+ @defined_tags.setter
173
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
174
+ pulumi.set(self, "defined_tags", value)
175
+
176
+ @property
177
+ @pulumi.getter
178
+ def description(self) -> Optional[pulumi.Input[str]]:
179
+ """
180
+ Specifies a description of the report.
181
+ """
182
+ return pulumi.get(self, "description")
183
+
184
+ @description.setter
185
+ def description(self, value: Optional[pulumi.Input[str]]):
186
+ pulumi.set(self, "description", value)
187
+
188
+ @property
189
+ @pulumi.getter(name="displayName")
190
+ def display_name(self) -> Optional[pulumi.Input[str]]:
191
+ """
192
+ Name of the report.
193
+ """
194
+ return pulumi.get(self, "display_name")
195
+
196
+ @display_name.setter
197
+ def display_name(self, value: Optional[pulumi.Input[str]]):
198
+ pulumi.set(self, "display_name", value)
199
+
200
+ @property
201
+ @pulumi.getter(name="freeformTags")
202
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
203
+ """
204
+ (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"}`
205
+ """
206
+ return pulumi.get(self, "freeform_tags")
207
+
208
+ @freeform_tags.setter
209
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
210
+ pulumi.set(self, "freeform_tags", value)
211
+
212
+ @property
213
+ @pulumi.getter(name="mimeType")
214
+ def mime_type(self) -> Optional[pulumi.Input[str]]:
215
+ """
216
+ Specifies the format of report to be excel or pdf
217
+ """
218
+ return pulumi.get(self, "mime_type")
219
+
220
+ @mime_type.setter
221
+ def mime_type(self, value: Optional[pulumi.Input[str]]):
222
+ pulumi.set(self, "mime_type", value)
223
+
224
+ @property
225
+ @pulumi.getter(name="reportDefinitionId")
226
+ def report_definition_id(self) -> Optional[pulumi.Input[str]]:
227
+ """
228
+ The OCID of the report definition.
229
+ """
230
+ return pulumi.get(self, "report_definition_id")
231
+
232
+ @report_definition_id.setter
233
+ def report_definition_id(self, value: Optional[pulumi.Input[str]]):
234
+ pulumi.set(self, "report_definition_id", value)
235
+
236
+ @property
237
+ @pulumi.getter(name="reportId")
238
+ def report_id(self) -> Optional[pulumi.Input[str]]:
239
+ """
240
+ Unique report identifier
241
+
242
+
243
+ ** IMPORTANT **
244
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
245
+ """
246
+ return pulumi.get(self, "report_id")
247
+
248
+ @report_id.setter
249
+ def report_id(self, value: Optional[pulumi.Input[str]]):
250
+ pulumi.set(self, "report_id", value)
251
+
252
+ @property
253
+ @pulumi.getter
254
+ def state(self) -> Optional[pulumi.Input[str]]:
255
+ """
256
+ The current state of the audit report.
257
+ """
258
+ return pulumi.get(self, "state")
259
+
260
+ @state.setter
261
+ def state(self, value: Optional[pulumi.Input[str]]):
262
+ pulumi.set(self, "state", value)
263
+
264
+ @property
265
+ @pulumi.getter(name="systemTags")
266
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
267
+ """
268
+ 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"}`
269
+ """
270
+ return pulumi.get(self, "system_tags")
271
+
272
+ @system_tags.setter
273
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
274
+ pulumi.set(self, "system_tags", value)
275
+
276
+ @property
277
+ @pulumi.getter(name="timeGenerated")
278
+ def time_generated(self) -> Optional[pulumi.Input[str]]:
279
+ """
280
+ Specifies the date and time the report was generated.
281
+ """
282
+ return pulumi.get(self, "time_generated")
283
+
284
+ @time_generated.setter
285
+ def time_generated(self, value: Optional[pulumi.Input[str]]):
286
+ pulumi.set(self, "time_generated", value)
287
+
288
+ @property
289
+ @pulumi.getter
290
+ def type(self) -> Optional[pulumi.Input[str]]:
291
+ """
292
+ The type of the audit report.
293
+ """
294
+ return pulumi.get(self, "type")
295
+
296
+ @type.setter
297
+ def type(self, value: Optional[pulumi.Input[str]]):
298
+ pulumi.set(self, "type", value)
299
+
300
+
301
+ class Report(pulumi.CustomResource):
302
+ @overload
303
+ def __init__(__self__,
304
+ resource_name: str,
305
+ opts: Optional[pulumi.ResourceOptions] = None,
306
+ compartment_id: Optional[pulumi.Input[str]] = None,
307
+ defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
308
+ freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
309
+ report_id: Optional[pulumi.Input[str]] = None,
310
+ __props__=None):
311
+ """
312
+ This resource provides the Report resource in Oracle Cloud Infrastructure Data Safe service.
313
+
314
+ Updates the specified report. Only tags can be updated.
315
+
316
+ ## Import
317
+
318
+ Reports can be imported using the `id`, e.g.
319
+
320
+ ```sh
321
+ $ pulumi import oci:DataSafe/report:Report test_report "id"
322
+ ```
323
+
324
+ :param str resource_name: The name of the resource.
325
+ :param pulumi.ResourceOptions opts: Options for the resource.
326
+ :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the report.
327
+ :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
328
+ :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"}`
329
+ :param pulumi.Input[str] report_id: Unique report identifier
330
+
331
+
332
+ ** IMPORTANT **
333
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
334
+ """
335
+ ...
336
+ @overload
337
+ def __init__(__self__,
338
+ resource_name: str,
339
+ args: ReportArgs,
340
+ opts: Optional[pulumi.ResourceOptions] = None):
341
+ """
342
+ This resource provides the Report resource in Oracle Cloud Infrastructure Data Safe service.
343
+
344
+ Updates the specified report. Only tags can be updated.
345
+
346
+ ## Import
347
+
348
+ Reports can be imported using the `id`, e.g.
349
+
350
+ ```sh
351
+ $ pulumi import oci:DataSafe/report:Report test_report "id"
352
+ ```
353
+
354
+ :param str resource_name: The name of the resource.
355
+ :param ReportArgs args: The arguments to use to populate this resource's properties.
356
+ :param pulumi.ResourceOptions opts: Options for the resource.
357
+ """
358
+ ...
359
+ def __init__(__self__, resource_name: str, *args, **kwargs):
360
+ resource_args, opts = _utilities.get_resource_args_opts(ReportArgs, pulumi.ResourceOptions, *args, **kwargs)
361
+ if resource_args is not None:
362
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
363
+ else:
364
+ __self__._internal_init(resource_name, *args, **kwargs)
365
+
366
+ def _internal_init(__self__,
367
+ resource_name: str,
368
+ opts: Optional[pulumi.ResourceOptions] = None,
369
+ compartment_id: Optional[pulumi.Input[str]] = None,
370
+ defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
371
+ freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
372
+ report_id: Optional[pulumi.Input[str]] = None,
373
+ __props__=None):
374
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
375
+ if not isinstance(opts, pulumi.ResourceOptions):
376
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
377
+ if opts.id is None:
378
+ if __props__ is not None:
379
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
380
+ __props__ = ReportArgs.__new__(ReportArgs)
381
+
382
+ __props__.__dict__["compartment_id"] = compartment_id
383
+ __props__.__dict__["defined_tags"] = defined_tags
384
+ __props__.__dict__["freeform_tags"] = freeform_tags
385
+ if report_id is None and not opts.urn:
386
+ raise TypeError("Missing required property 'report_id'")
387
+ __props__.__dict__["report_id"] = report_id
388
+ __props__.__dict__["description"] = None
389
+ __props__.__dict__["display_name"] = None
390
+ __props__.__dict__["mime_type"] = None
391
+ __props__.__dict__["report_definition_id"] = None
392
+ __props__.__dict__["state"] = None
393
+ __props__.__dict__["system_tags"] = None
394
+ __props__.__dict__["time_generated"] = None
395
+ __props__.__dict__["type"] = None
396
+ super(Report, __self__).__init__(
397
+ 'oci:DataSafe/report:Report',
398
+ resource_name,
399
+ __props__,
400
+ opts)
401
+
402
+ @staticmethod
403
+ def get(resource_name: str,
404
+ id: pulumi.Input[str],
405
+ opts: Optional[pulumi.ResourceOptions] = None,
406
+ compartment_id: Optional[pulumi.Input[str]] = None,
407
+ defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
408
+ description: Optional[pulumi.Input[str]] = None,
409
+ display_name: Optional[pulumi.Input[str]] = None,
410
+ freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
411
+ mime_type: Optional[pulumi.Input[str]] = None,
412
+ report_definition_id: Optional[pulumi.Input[str]] = None,
413
+ report_id: Optional[pulumi.Input[str]] = None,
414
+ state: Optional[pulumi.Input[str]] = None,
415
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
416
+ time_generated: Optional[pulumi.Input[str]] = None,
417
+ type: Optional[pulumi.Input[str]] = None) -> 'Report':
418
+ """
419
+ Get an existing Report resource's state with the given name, id, and optional extra
420
+ properties used to qualify the lookup.
421
+
422
+ :param str resource_name: The unique name of the resulting resource.
423
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
424
+ :param pulumi.ResourceOptions opts: Options for the resource.
425
+ :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the report.
426
+ :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
427
+ :param pulumi.Input[str] description: Specifies a description of the report.
428
+ :param pulumi.Input[str] display_name: Name of the report.
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
431
+ :param pulumi.Input[str] report_definition_id: The OCID of the report definition.
432
+ :param pulumi.Input[str] report_id: Unique report identifier
433
+
434
+
435
+ ** IMPORTANT **
436
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
437
+ :param pulumi.Input[str] state: The current state of the audit report.
438
+ :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"}`
439
+ :param pulumi.Input[str] time_generated: Specifies the date and time the report was generated.
440
+ :param pulumi.Input[str] type: The type of the audit report.
441
+ """
442
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
443
+
444
+ __props__ = _ReportState.__new__(_ReportState)
445
+
446
+ __props__.__dict__["compartment_id"] = compartment_id
447
+ __props__.__dict__["defined_tags"] = defined_tags
448
+ __props__.__dict__["description"] = description
449
+ __props__.__dict__["display_name"] = display_name
450
+ __props__.__dict__["freeform_tags"] = freeform_tags
451
+ __props__.__dict__["mime_type"] = mime_type
452
+ __props__.__dict__["report_definition_id"] = report_definition_id
453
+ __props__.__dict__["report_id"] = report_id
454
+ __props__.__dict__["state"] = state
455
+ __props__.__dict__["system_tags"] = system_tags
456
+ __props__.__dict__["time_generated"] = time_generated
457
+ __props__.__dict__["type"] = type
458
+ return Report(resource_name, opts=opts, __props__=__props__)
459
+
460
+ @property
461
+ @pulumi.getter(name="compartmentId")
462
+ def compartment_id(self) -> pulumi.Output[str]:
463
+ """
464
+ (Updatable) The OCID of the compartment containing the report.
465
+ """
466
+ return pulumi.get(self, "compartment_id")
467
+
468
+ @property
469
+ @pulumi.getter(name="definedTags")
470
+ def defined_tags(self) -> pulumi.Output[Mapping[str, Any]]:
471
+ """
472
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
473
+ """
474
+ return pulumi.get(self, "defined_tags")
475
+
476
+ @property
477
+ @pulumi.getter
478
+ def description(self) -> pulumi.Output[str]:
479
+ """
480
+ Specifies a description of the report.
481
+ """
482
+ return pulumi.get(self, "description")
483
+
484
+ @property
485
+ @pulumi.getter(name="displayName")
486
+ def display_name(self) -> pulumi.Output[str]:
487
+ """
488
+ Name of the report.
489
+ """
490
+ return pulumi.get(self, "display_name")
491
+
492
+ @property
493
+ @pulumi.getter(name="freeformTags")
494
+ def freeform_tags(self) -> pulumi.Output[Mapping[str, Any]]:
495
+ """
496
+ (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"}`
497
+ """
498
+ return pulumi.get(self, "freeform_tags")
499
+
500
+ @property
501
+ @pulumi.getter(name="mimeType")
502
+ def mime_type(self) -> pulumi.Output[str]:
503
+ """
504
+ Specifies the format of report to be excel or pdf
505
+ """
506
+ return pulumi.get(self, "mime_type")
507
+
508
+ @property
509
+ @pulumi.getter(name="reportDefinitionId")
510
+ def report_definition_id(self) -> pulumi.Output[str]:
511
+ """
512
+ The OCID of the report definition.
513
+ """
514
+ return pulumi.get(self, "report_definition_id")
515
+
516
+ @property
517
+ @pulumi.getter(name="reportId")
518
+ def report_id(self) -> pulumi.Output[str]:
519
+ """
520
+ Unique report identifier
521
+
522
+
523
+ ** IMPORTANT **
524
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
525
+ """
526
+ return pulumi.get(self, "report_id")
527
+
528
+ @property
529
+ @pulumi.getter
530
+ def state(self) -> pulumi.Output[str]:
531
+ """
532
+ The current state of the audit report.
533
+ """
534
+ return pulumi.get(self, "state")
535
+
536
+ @property
537
+ @pulumi.getter(name="systemTags")
538
+ def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
539
+ """
540
+ 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"}`
541
+ """
542
+ return pulumi.get(self, "system_tags")
543
+
544
+ @property
545
+ @pulumi.getter(name="timeGenerated")
546
+ def time_generated(self) -> pulumi.Output[str]:
547
+ """
548
+ Specifies the date and time the report was generated.
549
+ """
550
+ return pulumi.get(self, "time_generated")
551
+
552
+ @property
553
+ @pulumi.getter
554
+ def type(self) -> pulumi.Output[str]:
555
+ """
556
+ The type of the audit report.
557
+ """
558
+ return pulumi.get(self, "type")
559
+
@@ -199,9 +199,9 @@ class _SecurityAssessmentState:
199
199
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
200
200
  :param pulumi.Input[Sequence[pulumi.Input[str]]] target_ids: Array of database target OCIDs.
201
201
  :param pulumi.Input[str] target_version: The version of the target database.
202
- :param pulumi.Input[str] time_created: The date and time when the security assessment was created. Conforms to the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
203
- :param pulumi.Input[str] time_last_assessed: The date and time when the security assessment was last run. Conforms to the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
204
- :param pulumi.Input[str] time_updated: The date and time when the security assessment was last updated. Conforms to the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
202
+ :param pulumi.Input[str] time_created: The date and time the security assessment was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
203
+ :param pulumi.Input[str] time_last_assessed: The date and time the security assessment was last executed, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
204
+ :param pulumi.Input[str] time_updated: The date and time the security assessment was last updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
205
205
  :param pulumi.Input[str] triggered_by: Indicates whether the security assessment was created by system or by a user.
206
206
  :param pulumi.Input[str] type: The type of this security assessment. The possible types are:
207
207
  """
@@ -506,7 +506,7 @@ class _SecurityAssessmentState:
506
506
  @pulumi.getter(name="timeCreated")
507
507
  def time_created(self) -> Optional[pulumi.Input[str]]:
508
508
  """
509
- The date and time when the security assessment was created. Conforms to the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
509
+ The date and time the security assessment was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
510
510
  """
511
511
  return pulumi.get(self, "time_created")
512
512
 
@@ -518,7 +518,7 @@ class _SecurityAssessmentState:
518
518
  @pulumi.getter(name="timeLastAssessed")
519
519
  def time_last_assessed(self) -> Optional[pulumi.Input[str]]:
520
520
  """
521
- The date and time when the security assessment was last run. Conforms to the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
521
+ The date and time the security assessment was last executed, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
522
522
  """
523
523
  return pulumi.get(self, "time_last_assessed")
524
524
 
@@ -530,7 +530,7 @@ class _SecurityAssessmentState:
530
530
  @pulumi.getter(name="timeUpdated")
531
531
  def time_updated(self) -> Optional[pulumi.Input[str]]:
532
532
  """
533
- The date and time when the security assessment was last updated. Conforms to the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
533
+ The date and time the security assessment was last updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
534
534
  """
535
535
  return pulumi.get(self, "time_updated")
536
536
 
@@ -796,9 +796,9 @@ class SecurityAssessment(pulumi.CustomResource):
796
796
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
797
797
  :param pulumi.Input[Sequence[pulumi.Input[str]]] target_ids: Array of database target OCIDs.
798
798
  :param pulumi.Input[str] target_version: The version of the target database.
799
- :param pulumi.Input[str] time_created: The date and time when the security assessment was created. Conforms to the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
800
- :param pulumi.Input[str] time_last_assessed: The date and time when the security assessment was last run. Conforms to the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
801
- :param pulumi.Input[str] time_updated: The date and time when the security assessment was last updated. Conforms to the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
799
+ :param pulumi.Input[str] time_created: The date and time the security assessment was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
800
+ :param pulumi.Input[str] time_last_assessed: The date and time the security assessment was last executed, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
801
+ :param pulumi.Input[str] time_updated: The date and time the security assessment was last updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
802
802
  :param pulumi.Input[str] triggered_by: Indicates whether the security assessment was created by system or by a user.
803
803
  :param pulumi.Input[str] type: The type of this security assessment. The possible types are:
804
804
  """
@@ -1003,7 +1003,7 @@ class SecurityAssessment(pulumi.CustomResource):
1003
1003
  @pulumi.getter(name="timeCreated")
1004
1004
  def time_created(self) -> pulumi.Output[str]:
1005
1005
  """
1006
- The date and time when the security assessment was created. Conforms to the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
1006
+ The date and time the security assessment was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
1007
1007
  """
1008
1008
  return pulumi.get(self, "time_created")
1009
1009
 
@@ -1011,7 +1011,7 @@ class SecurityAssessment(pulumi.CustomResource):
1011
1011
  @pulumi.getter(name="timeLastAssessed")
1012
1012
  def time_last_assessed(self) -> pulumi.Output[str]:
1013
1013
  """
1014
- The date and time when the security assessment was last run. Conforms to the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
1014
+ The date and time the security assessment was last executed, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
1015
1015
  """
1016
1016
  return pulumi.get(self, "time_last_assessed")
1017
1017
 
@@ -1019,7 +1019,7 @@ class SecurityAssessment(pulumi.CustomResource):
1019
1019
  @pulumi.getter(name="timeUpdated")
1020
1020
  def time_updated(self) -> pulumi.Output[str]:
1021
1021
  """
1022
- The date and time when the security assessment was last updated. Conforms to the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
1022
+ The date and time the security assessment was last updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
1023
1023
  """
1024
1024
  return pulumi.get(self, "time_updated")
1025
1025