pulumi-oci 1.19.0a1705693078__py3-none-any.whl → 1.20.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +59 -0
- pulumi_oci/adm/_inputs.py +99 -18
- pulumi_oci/adm/get_remediation_run_application_dependency_recommendations.py +23 -3
- pulumi_oci/adm/get_vulnerability_audit.py +31 -5
- pulumi_oci/adm/get_vulnerability_audit_application_dependency_vulnerabilities.py +43 -6
- pulumi_oci/adm/get_vulnerability_audit_application_dependency_vulnerability.py +27 -1
- pulumi_oci/adm/get_vulnerability_audits.py +54 -3
- pulumi_oci/adm/outputs.py +296 -31
- pulumi_oci/adm/remediation_recipe.py +2 -0
- pulumi_oci/adm/vulnerability_audit.py +96 -37
- pulumi_oci/database/__init__.py +1 -0
- pulumi_oci/database/_inputs.py +40 -0
- pulumi_oci/database/cloud_vm_cluster.py +22 -1
- pulumi_oci/database/get_system_versions.py +173 -0
- pulumi_oci/database/outputs.py +88 -0
- pulumi_oci/database/vm_cluster.py +22 -1
- pulumi_oci/datasafe/__init__.py +22 -0
- pulumi_oci/datasafe/_inputs.py +1826 -161
- pulumi_oci/datasafe/audit_trail.py +140 -0
- pulumi_oci/datasafe/discovery_mod.py +7 -7
- pulumi_oci/datasafe/get_audit_trail.py +66 -1
- pulumi_oci/datasafe/get_discovery_job.py +1 -1
- pulumi_oci/datasafe/get_discovery_jobs_result.py +1 -1
- pulumi_oci/datasafe/get_discovery_jobs_results.py +1 -1
- pulumi_oci/datasafe/get_masking_policies_masking_column.py +1 -1
- pulumi_oci/datasafe/get_masking_policies_masking_columns.py +1 -1
- pulumi_oci/datasafe/get_masking_policy.py +1 -1
- pulumi_oci/datasafe/get_report.py +1 -1
- pulumi_oci/datasafe/get_security_assessment.py +3 -3
- pulumi_oci/datasafe/get_security_assessment_comparison.py +5 -5
- pulumi_oci/datasafe/get_security_assessment_finding.py +29 -3
- pulumi_oci/datasafe/get_security_assessment_finding_analytics.py +276 -0
- pulumi_oci/datasafe/get_security_assessment_findings.py +43 -7
- pulumi_oci/datasafe/get_security_assessment_findings_change_audit_logs.py +309 -0
- pulumi_oci/datasafe/get_security_assessment_security_feature_analytics.py +198 -0
- pulumi_oci/datasafe/get_security_assessment_security_features.py +377 -0
- pulumi_oci/datasafe/get_security_assessments.py +2 -2
- pulumi_oci/datasafe/get_security_policies.py +253 -0
- pulumi_oci/datasafe/get_security_policy.py +235 -0
- pulumi_oci/datasafe/get_security_policy_deployment.py +261 -0
- pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_state.py +165 -0
- pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_states.py +180 -0
- pulumi_oci/datasafe/get_security_policy_deployments.py +293 -0
- pulumi_oci/datasafe/get_security_policy_report.py +248 -0
- pulumi_oci/datasafe/get_security_policy_report_database_table_access_entries.py +158 -0
- pulumi_oci/datasafe/get_security_policy_report_database_table_access_entry.py +408 -0
- pulumi_oci/datasafe/get_security_policy_report_database_view_access_entries.py +178 -0
- pulumi_oci/datasafe/get_security_policy_report_database_view_access_entry.py +382 -0
- pulumi_oci/datasafe/get_security_policy_report_role_grant_paths.py +177 -0
- pulumi_oci/datasafe/get_security_policy_reports.py +273 -0
- pulumi_oci/datasafe/get_sensitive_data_model.py +1 -1
- pulumi_oci/datasafe/get_target_database.py +27 -4
- pulumi_oci/datasafe/get_target_database_peer_target_database.py +263 -0
- pulumi_oci/datasafe/get_target_database_peer_target_databases.py +133 -0
- pulumi_oci/datasafe/get_target_databases.py +1 -1
- pulumi_oci/datasafe/get_user_assessment.py +5 -5
- pulumi_oci/datasafe/get_user_assessment_comparison.py +2 -2
- pulumi_oci/datasafe/get_user_assessment_user_access_analytics.py +133 -0
- pulumi_oci/datasafe/get_user_assessment_user_analytics.py +2 -2
- pulumi_oci/datasafe/get_user_assessment_users.py +42 -2
- pulumi_oci/datasafe/get_user_assessments.py +2 -2
- pulumi_oci/datasafe/masking_policies_masking_column.py +7 -7
- pulumi_oci/datasafe/masking_policy.py +9 -9
- pulumi_oci/datasafe/outputs.py +16686 -9777
- pulumi_oci/datasafe/report.py +559 -0
- pulumi_oci/datasafe/security_assessment.py +12 -12
- pulumi_oci/datasafe/sensitive_data_model.py +7 -7
- pulumi_oci/datasafe/set_security_assessment_baseline.py +7 -7
- pulumi_oci/datasafe/set_user_assessment_baseline.py +7 -7
- pulumi_oci/datasafe/target_database.py +146 -25
- pulumi_oci/datasafe/target_database_peer_target_database.py +634 -0
- pulumi_oci/datasafe/user_assessment.py +20 -20
- pulumi_oci/generativeai/__init__.py +18 -0
- pulumi_oci/generativeai/_inputs.py +534 -0
- pulumi_oci/generativeai/dedicated_ai_cluster.py +808 -0
- pulumi_oci/generativeai/endpoint.py +717 -0
- pulumi_oci/generativeai/get_dedicated_ai_cluster.py +288 -0
- pulumi_oci/generativeai/get_dedicated_ai_clusters.py +183 -0
- pulumi_oci/generativeai/get_endpoint.py +275 -0
- pulumi_oci/generativeai/get_endpoints.py +183 -0
- pulumi_oci/generativeai/get_model.py +353 -0
- pulumi_oci/generativeai/get_models.py +220 -0
- pulumi_oci/generativeai/model.py +858 -0
- pulumi_oci/generativeai/outputs.py +1721 -0
- pulumi_oci/marketplace/get_publication.py +14 -1
- pulumi_oci/marketplace/outputs.py +11 -0
- pulumi_oci/marketplace/publication.py +28 -0
- pulumi_oci/monitoring/__init__.py +3 -0
- pulumi_oci/monitoring/_inputs.py +82 -4
- pulumi_oci/monitoring/alarm.py +15 -15
- pulumi_oci/monitoring/alarm_suppression.py +745 -0
- pulumi_oci/monitoring/get_alarm.py +5 -5
- pulumi_oci/monitoring/get_alarm_history_collection.py +4 -4
- pulumi_oci/monitoring/get_alarm_statuses.py +3 -1
- pulumi_oci/monitoring/get_alarm_suppression.py +276 -0
- pulumi_oci/monitoring/get_alarm_suppressions.py +192 -0
- pulumi_oci/monitoring/get_metric_data.py +12 -8
- pulumi_oci/monitoring/get_metrics.py +2 -2
- pulumi_oci/monitoring/outputs.py +355 -50
- pulumi_oci/networkfirewall/_inputs.py +25 -20
- pulumi_oci/networkfirewall/outputs.py +40 -30
- pulumi_oci/stackmonitoring/__init__.py +3 -0
- pulumi_oci/stackmonitoring/_inputs.py +143 -0
- pulumi_oci/stackmonitoring/get_process_set.py +236 -0
- pulumi_oci/stackmonitoring/get_process_sets.py +156 -0
- pulumi_oci/stackmonitoring/outputs.py +422 -0
- pulumi_oci/stackmonitoring/process_set.py +548 -0
- {pulumi_oci-1.19.0a1705693078.dist-info → pulumi_oci-1.20.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.19.0a1705693078.dist-info → pulumi_oci-1.20.0.dist-info}/RECORD +111 -70
- {pulumi_oci-1.19.0a1705693078.dist-info → pulumi_oci-1.20.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.19.0a1705693078.dist-info → pulumi_oci-1.20.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,248 @@
|
|
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__ = [
|
13
|
+
'GetSecurityPolicyReportResult',
|
14
|
+
'AwaitableGetSecurityPolicyReportResult',
|
15
|
+
'get_security_policy_report',
|
16
|
+
'get_security_policy_report_output',
|
17
|
+
]
|
18
|
+
|
19
|
+
@pulumi.output_type
|
20
|
+
class GetSecurityPolicyReportResult:
|
21
|
+
"""
|
22
|
+
A collection of values returned by getSecurityPolicyReport.
|
23
|
+
"""
|
24
|
+
def __init__(__self__, compartment_id=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, lifecycle_details=None, security_policy_report_id=None, state=None, system_tags=None, target_id=None, time_created=None, time_updated=None):
|
25
|
+
if compartment_id and not isinstance(compartment_id, str):
|
26
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
27
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
28
|
+
if defined_tags and not isinstance(defined_tags, dict):
|
29
|
+
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
30
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
31
|
+
if description and not isinstance(description, str):
|
32
|
+
raise TypeError("Expected argument 'description' to be a str")
|
33
|
+
pulumi.set(__self__, "description", description)
|
34
|
+
if display_name and not isinstance(display_name, str):
|
35
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
36
|
+
pulumi.set(__self__, "display_name", display_name)
|
37
|
+
if freeform_tags and not isinstance(freeform_tags, dict):
|
38
|
+
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
39
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
40
|
+
if id and not isinstance(id, str):
|
41
|
+
raise TypeError("Expected argument 'id' to be a str")
|
42
|
+
pulumi.set(__self__, "id", id)
|
43
|
+
if lifecycle_details and not isinstance(lifecycle_details, str):
|
44
|
+
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
45
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
46
|
+
if security_policy_report_id and not isinstance(security_policy_report_id, str):
|
47
|
+
raise TypeError("Expected argument 'security_policy_report_id' to be a str")
|
48
|
+
pulumi.set(__self__, "security_policy_report_id", security_policy_report_id)
|
49
|
+
if state and not isinstance(state, str):
|
50
|
+
raise TypeError("Expected argument 'state' to be a str")
|
51
|
+
pulumi.set(__self__, "state", state)
|
52
|
+
if system_tags and not isinstance(system_tags, dict):
|
53
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
54
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
55
|
+
if target_id and not isinstance(target_id, str):
|
56
|
+
raise TypeError("Expected argument 'target_id' to be a str")
|
57
|
+
pulumi.set(__self__, "target_id", target_id)
|
58
|
+
if time_created and not isinstance(time_created, str):
|
59
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
60
|
+
pulumi.set(__self__, "time_created", time_created)
|
61
|
+
if time_updated and not isinstance(time_updated, str):
|
62
|
+
raise TypeError("Expected argument 'time_updated' to be a str")
|
63
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
64
|
+
|
65
|
+
@property
|
66
|
+
@pulumi.getter(name="compartmentId")
|
67
|
+
def compartment_id(self) -> str:
|
68
|
+
"""
|
69
|
+
The OCID of the compartment that contains the security policy report.
|
70
|
+
"""
|
71
|
+
return pulumi.get(self, "compartment_id")
|
72
|
+
|
73
|
+
@property
|
74
|
+
@pulumi.getter(name="definedTags")
|
75
|
+
def defined_tags(self) -> Mapping[str, Any]:
|
76
|
+
"""
|
77
|
+
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"}`
|
78
|
+
"""
|
79
|
+
return pulumi.get(self, "defined_tags")
|
80
|
+
|
81
|
+
@property
|
82
|
+
@pulumi.getter
|
83
|
+
def description(self) -> str:
|
84
|
+
"""
|
85
|
+
The description of the security policy report.
|
86
|
+
"""
|
87
|
+
return pulumi.get(self, "description")
|
88
|
+
|
89
|
+
@property
|
90
|
+
@pulumi.getter(name="displayName")
|
91
|
+
def display_name(self) -> str:
|
92
|
+
"""
|
93
|
+
The display name of the security policy report.
|
94
|
+
"""
|
95
|
+
return pulumi.get(self, "display_name")
|
96
|
+
|
97
|
+
@property
|
98
|
+
@pulumi.getter(name="freeformTags")
|
99
|
+
def freeform_tags(self) -> Mapping[str, Any]:
|
100
|
+
"""
|
101
|
+
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"}`
|
102
|
+
"""
|
103
|
+
return pulumi.get(self, "freeform_tags")
|
104
|
+
|
105
|
+
@property
|
106
|
+
@pulumi.getter
|
107
|
+
def id(self) -> str:
|
108
|
+
"""
|
109
|
+
The provider-assigned unique ID for this managed resource.
|
110
|
+
"""
|
111
|
+
return pulumi.get(self, "id")
|
112
|
+
|
113
|
+
@property
|
114
|
+
@pulumi.getter(name="lifecycleDetails")
|
115
|
+
def lifecycle_details(self) -> str:
|
116
|
+
"""
|
117
|
+
Details about the current state of the security policy report.
|
118
|
+
"""
|
119
|
+
return pulumi.get(self, "lifecycle_details")
|
120
|
+
|
121
|
+
@property
|
122
|
+
@pulumi.getter(name="securityPolicyReportId")
|
123
|
+
def security_policy_report_id(self) -> str:
|
124
|
+
return pulumi.get(self, "security_policy_report_id")
|
125
|
+
|
126
|
+
@property
|
127
|
+
@pulumi.getter
|
128
|
+
def state(self) -> str:
|
129
|
+
"""
|
130
|
+
The current state of the security policy report.
|
131
|
+
"""
|
132
|
+
return pulumi.get(self, "state")
|
133
|
+
|
134
|
+
@property
|
135
|
+
@pulumi.getter(name="systemTags")
|
136
|
+
def system_tags(self) -> Mapping[str, Any]:
|
137
|
+
"""
|
138
|
+
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"}`
|
139
|
+
"""
|
140
|
+
return pulumi.get(self, "system_tags")
|
141
|
+
|
142
|
+
@property
|
143
|
+
@pulumi.getter(name="targetId")
|
144
|
+
def target_id(self) -> str:
|
145
|
+
"""
|
146
|
+
The OCID of the of the target database.
|
147
|
+
"""
|
148
|
+
return pulumi.get(self, "target_id")
|
149
|
+
|
150
|
+
@property
|
151
|
+
@pulumi.getter(name="timeCreated")
|
152
|
+
def time_created(self) -> str:
|
153
|
+
"""
|
154
|
+
The date and time the security policy report was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
155
|
+
"""
|
156
|
+
return pulumi.get(self, "time_created")
|
157
|
+
|
158
|
+
@property
|
159
|
+
@pulumi.getter(name="timeUpdated")
|
160
|
+
def time_updated(self) -> str:
|
161
|
+
"""
|
162
|
+
The date and time the security policy report was last updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
163
|
+
"""
|
164
|
+
return pulumi.get(self, "time_updated")
|
165
|
+
|
166
|
+
|
167
|
+
class AwaitableGetSecurityPolicyReportResult(GetSecurityPolicyReportResult):
|
168
|
+
# pylint: disable=using-constant-test
|
169
|
+
def __await__(self):
|
170
|
+
if False:
|
171
|
+
yield self
|
172
|
+
return GetSecurityPolicyReportResult(
|
173
|
+
compartment_id=self.compartment_id,
|
174
|
+
defined_tags=self.defined_tags,
|
175
|
+
description=self.description,
|
176
|
+
display_name=self.display_name,
|
177
|
+
freeform_tags=self.freeform_tags,
|
178
|
+
id=self.id,
|
179
|
+
lifecycle_details=self.lifecycle_details,
|
180
|
+
security_policy_report_id=self.security_policy_report_id,
|
181
|
+
state=self.state,
|
182
|
+
system_tags=self.system_tags,
|
183
|
+
target_id=self.target_id,
|
184
|
+
time_created=self.time_created,
|
185
|
+
time_updated=self.time_updated)
|
186
|
+
|
187
|
+
|
188
|
+
def get_security_policy_report(security_policy_report_id: Optional[str] = None,
|
189
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSecurityPolicyReportResult:
|
190
|
+
"""
|
191
|
+
This data source provides details about a specific Security Policy Report resource in Oracle Cloud Infrastructure Data Safe service.
|
192
|
+
|
193
|
+
Gets a security policy report by the specified OCID of the security policy report resource.
|
194
|
+
|
195
|
+
## Example Usage
|
196
|
+
|
197
|
+
```python
|
198
|
+
import pulumi
|
199
|
+
import pulumi_oci as oci
|
200
|
+
|
201
|
+
test_security_policy_report = oci.DataSafe.get_security_policy_report(security_policy_report_id=oci_data_safe_security_policy_report["test_security_policy_report"]["id"])
|
202
|
+
```
|
203
|
+
|
204
|
+
|
205
|
+
:param str security_policy_report_id: The OCID of the security policy report resource.
|
206
|
+
"""
|
207
|
+
__args__ = dict()
|
208
|
+
__args__['securityPolicyReportId'] = security_policy_report_id
|
209
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
210
|
+
__ret__ = pulumi.runtime.invoke('oci:DataSafe/getSecurityPolicyReport:getSecurityPolicyReport', __args__, opts=opts, typ=GetSecurityPolicyReportResult).value
|
211
|
+
|
212
|
+
return AwaitableGetSecurityPolicyReportResult(
|
213
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
214
|
+
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
215
|
+
description=pulumi.get(__ret__, 'description'),
|
216
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
217
|
+
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
218
|
+
id=pulumi.get(__ret__, 'id'),
|
219
|
+
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
220
|
+
security_policy_report_id=pulumi.get(__ret__, 'security_policy_report_id'),
|
221
|
+
state=pulumi.get(__ret__, 'state'),
|
222
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
223
|
+
target_id=pulumi.get(__ret__, 'target_id'),
|
224
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
225
|
+
time_updated=pulumi.get(__ret__, 'time_updated'))
|
226
|
+
|
227
|
+
|
228
|
+
@_utilities.lift_output_func(get_security_policy_report)
|
229
|
+
def get_security_policy_report_output(security_policy_report_id: Optional[pulumi.Input[str]] = None,
|
230
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSecurityPolicyReportResult]:
|
231
|
+
"""
|
232
|
+
This data source provides details about a specific Security Policy Report resource in Oracle Cloud Infrastructure Data Safe service.
|
233
|
+
|
234
|
+
Gets a security policy report by the specified OCID of the security policy report resource.
|
235
|
+
|
236
|
+
## Example Usage
|
237
|
+
|
238
|
+
```python
|
239
|
+
import pulumi
|
240
|
+
import pulumi_oci as oci
|
241
|
+
|
242
|
+
test_security_policy_report = oci.DataSafe.get_security_policy_report(security_policy_report_id=oci_data_safe_security_policy_report["test_security_policy_report"]["id"])
|
243
|
+
```
|
244
|
+
|
245
|
+
|
246
|
+
:param str security_policy_report_id: The OCID of the security policy report resource.
|
247
|
+
"""
|
248
|
+
...
|
@@ -0,0 +1,158 @@
|
|
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
|
+
from . import outputs
|
12
|
+
from ._inputs import *
|
13
|
+
|
14
|
+
__all__ = [
|
15
|
+
'GetSecurityPolicyReportDatabaseTableAccessEntriesResult',
|
16
|
+
'AwaitableGetSecurityPolicyReportDatabaseTableAccessEntriesResult',
|
17
|
+
'get_security_policy_report_database_table_access_entries',
|
18
|
+
'get_security_policy_report_database_table_access_entries_output',
|
19
|
+
]
|
20
|
+
|
21
|
+
@pulumi.output_type
|
22
|
+
class GetSecurityPolicyReportDatabaseTableAccessEntriesResult:
|
23
|
+
"""
|
24
|
+
A collection of values returned by getSecurityPolicyReportDatabaseTableAccessEntries.
|
25
|
+
"""
|
26
|
+
def __init__(__self__, database_table_access_entry_collections=None, filters=None, id=None, scim_query=None, security_policy_report_id=None):
|
27
|
+
if database_table_access_entry_collections and not isinstance(database_table_access_entry_collections, list):
|
28
|
+
raise TypeError("Expected argument 'database_table_access_entry_collections' to be a list")
|
29
|
+
pulumi.set(__self__, "database_table_access_entry_collections", database_table_access_entry_collections)
|
30
|
+
if filters and not isinstance(filters, list):
|
31
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
32
|
+
pulumi.set(__self__, "filters", filters)
|
33
|
+
if id and not isinstance(id, str):
|
34
|
+
raise TypeError("Expected argument 'id' to be a str")
|
35
|
+
pulumi.set(__self__, "id", id)
|
36
|
+
if scim_query and not isinstance(scim_query, str):
|
37
|
+
raise TypeError("Expected argument 'scim_query' to be a str")
|
38
|
+
pulumi.set(__self__, "scim_query", scim_query)
|
39
|
+
if security_policy_report_id and not isinstance(security_policy_report_id, str):
|
40
|
+
raise TypeError("Expected argument 'security_policy_report_id' to be a str")
|
41
|
+
pulumi.set(__self__, "security_policy_report_id", security_policy_report_id)
|
42
|
+
|
43
|
+
@property
|
44
|
+
@pulumi.getter(name="databaseTableAccessEntryCollections")
|
45
|
+
def database_table_access_entry_collections(self) -> Sequence['outputs.GetSecurityPolicyReportDatabaseTableAccessEntriesDatabaseTableAccessEntryCollectionResult']:
|
46
|
+
"""
|
47
|
+
The list of database_table_access_entry_collection.
|
48
|
+
"""
|
49
|
+
return pulumi.get(self, "database_table_access_entry_collections")
|
50
|
+
|
51
|
+
@property
|
52
|
+
@pulumi.getter
|
53
|
+
def filters(self) -> Optional[Sequence['outputs.GetSecurityPolicyReportDatabaseTableAccessEntriesFilterResult']]:
|
54
|
+
return pulumi.get(self, "filters")
|
55
|
+
|
56
|
+
@property
|
57
|
+
@pulumi.getter
|
58
|
+
def id(self) -> str:
|
59
|
+
"""
|
60
|
+
The provider-assigned unique ID for this managed resource.
|
61
|
+
"""
|
62
|
+
return pulumi.get(self, "id")
|
63
|
+
|
64
|
+
@property
|
65
|
+
@pulumi.getter(name="scimQuery")
|
66
|
+
def scim_query(self) -> Optional[str]:
|
67
|
+
return pulumi.get(self, "scim_query")
|
68
|
+
|
69
|
+
@property
|
70
|
+
@pulumi.getter(name="securityPolicyReportId")
|
71
|
+
def security_policy_report_id(self) -> str:
|
72
|
+
return pulumi.get(self, "security_policy_report_id")
|
73
|
+
|
74
|
+
|
75
|
+
class AwaitableGetSecurityPolicyReportDatabaseTableAccessEntriesResult(GetSecurityPolicyReportDatabaseTableAccessEntriesResult):
|
76
|
+
# pylint: disable=using-constant-test
|
77
|
+
def __await__(self):
|
78
|
+
if False:
|
79
|
+
yield self
|
80
|
+
return GetSecurityPolicyReportDatabaseTableAccessEntriesResult(
|
81
|
+
database_table_access_entry_collections=self.database_table_access_entry_collections,
|
82
|
+
filters=self.filters,
|
83
|
+
id=self.id,
|
84
|
+
scim_query=self.scim_query,
|
85
|
+
security_policy_report_id=self.security_policy_report_id)
|
86
|
+
|
87
|
+
|
88
|
+
def get_security_policy_report_database_table_access_entries(filters: Optional[Sequence[pulumi.InputType['GetSecurityPolicyReportDatabaseTableAccessEntriesFilterArgs']]] = None,
|
89
|
+
scim_query: Optional[str] = None,
|
90
|
+
security_policy_report_id: Optional[str] = None,
|
91
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSecurityPolicyReportDatabaseTableAccessEntriesResult:
|
92
|
+
"""
|
93
|
+
This data source provides the list of Security Policy Report Database Table Access Entries in Oracle Cloud Infrastructure Data Safe service.
|
94
|
+
|
95
|
+
Retrieves a list of all database table access entries in Data Safe.
|
96
|
+
|
97
|
+
The ListDatabaseTableAccessEntries operation returns only the database table access reports for the specified security policy report.
|
98
|
+
|
99
|
+
## Example Usage
|
100
|
+
|
101
|
+
```python
|
102
|
+
import pulumi
|
103
|
+
import pulumi_oci as oci
|
104
|
+
|
105
|
+
test_security_policy_report_database_table_access_entries = oci.DataSafe.get_security_policy_report_database_table_access_entries(security_policy_report_id=oci_data_safe_security_policy_report["test_security_policy_report"]["id"],
|
106
|
+
scim_query=var["security_policy_report_database_table_access_entry_scim_query"])
|
107
|
+
```
|
108
|
+
|
109
|
+
|
110
|
+
:param str scim_query: The scimQuery query parameter accepts filter expressions that use the syntax described in Section 3.2.2.2 of the System for Cross-Domain Identity Management (SCIM) specification, which is available at [RFC3339](https://tools.ietf.org/html/draft-ietf-scim-api-12). In SCIM filtering expressions, text, date, and time values must be enclosed in quotation marks, with date and time values using ISO-8601 format. (Numeric and boolean values should not be quoted.)
|
111
|
+
|
112
|
+
**Example:** query=(accessType eq 'SELECT') and (grantee eq 'ADMIN')
|
113
|
+
:param str security_policy_report_id: The OCID of the security policy report resource.
|
114
|
+
"""
|
115
|
+
__args__ = dict()
|
116
|
+
__args__['filters'] = filters
|
117
|
+
__args__['scimQuery'] = scim_query
|
118
|
+
__args__['securityPolicyReportId'] = security_policy_report_id
|
119
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
120
|
+
__ret__ = pulumi.runtime.invoke('oci:DataSafe/getSecurityPolicyReportDatabaseTableAccessEntries:getSecurityPolicyReportDatabaseTableAccessEntries', __args__, opts=opts, typ=GetSecurityPolicyReportDatabaseTableAccessEntriesResult).value
|
121
|
+
|
122
|
+
return AwaitableGetSecurityPolicyReportDatabaseTableAccessEntriesResult(
|
123
|
+
database_table_access_entry_collections=pulumi.get(__ret__, 'database_table_access_entry_collections'),
|
124
|
+
filters=pulumi.get(__ret__, 'filters'),
|
125
|
+
id=pulumi.get(__ret__, 'id'),
|
126
|
+
scim_query=pulumi.get(__ret__, 'scim_query'),
|
127
|
+
security_policy_report_id=pulumi.get(__ret__, 'security_policy_report_id'))
|
128
|
+
|
129
|
+
|
130
|
+
@_utilities.lift_output_func(get_security_policy_report_database_table_access_entries)
|
131
|
+
def get_security_policy_report_database_table_access_entries_output(filters: Optional[pulumi.Input[Optional[Sequence[pulumi.InputType['GetSecurityPolicyReportDatabaseTableAccessEntriesFilterArgs']]]]] = None,
|
132
|
+
scim_query: Optional[pulumi.Input[Optional[str]]] = None,
|
133
|
+
security_policy_report_id: Optional[pulumi.Input[str]] = None,
|
134
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSecurityPolicyReportDatabaseTableAccessEntriesResult]:
|
135
|
+
"""
|
136
|
+
This data source provides the list of Security Policy Report Database Table Access Entries in Oracle Cloud Infrastructure Data Safe service.
|
137
|
+
|
138
|
+
Retrieves a list of all database table access entries in Data Safe.
|
139
|
+
|
140
|
+
The ListDatabaseTableAccessEntries operation returns only the database table access reports for the specified security policy report.
|
141
|
+
|
142
|
+
## Example Usage
|
143
|
+
|
144
|
+
```python
|
145
|
+
import pulumi
|
146
|
+
import pulumi_oci as oci
|
147
|
+
|
148
|
+
test_security_policy_report_database_table_access_entries = oci.DataSafe.get_security_policy_report_database_table_access_entries(security_policy_report_id=oci_data_safe_security_policy_report["test_security_policy_report"]["id"],
|
149
|
+
scim_query=var["security_policy_report_database_table_access_entry_scim_query"])
|
150
|
+
```
|
151
|
+
|
152
|
+
|
153
|
+
:param str scim_query: The scimQuery query parameter accepts filter expressions that use the syntax described in Section 3.2.2.2 of the System for Cross-Domain Identity Management (SCIM) specification, which is available at [RFC3339](https://tools.ietf.org/html/draft-ietf-scim-api-12). In SCIM filtering expressions, text, date, and time values must be enclosed in quotation marks, with date and time values using ISO-8601 format. (Numeric and boolean values should not be quoted.)
|
154
|
+
|
155
|
+
**Example:** query=(accessType eq 'SELECT') and (grantee eq 'ADMIN')
|
156
|
+
:param str security_policy_report_id: The OCID of the security policy report resource.
|
157
|
+
"""
|
158
|
+
...
|