pulumi-oci 3.5.0a1756327653__py3-none-any.whl → 3.5.0a1756440723__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 +80 -0
- pulumi_oci/core/compute_gpu_memory_fabric.py +28 -0
- pulumi_oci/core/get_compute_gpu_memory_fabric.py +15 -1
- pulumi_oci/core/outputs.py +11 -0
- pulumi_oci/database/_inputs.py +257 -12
- pulumi_oci/database/data_guard_association.py +98 -0
- pulumi_oci/database/database.py +28 -0
- pulumi_oci/database/db_node.py +56 -0
- pulumi_oci/database/db_system.py +108 -14
- pulumi_oci/database/exadb_vm_cluster.py +49 -0
- pulumi_oci/database/exascale_db_storage_vault.py +28 -0
- pulumi_oci/database/get_data_guard_association.py +23 -1
- pulumi_oci/database/get_database.py +15 -1
- pulumi_oci/database/get_db_node.py +29 -1
- pulumi_oci/database/get_db_system_shapes.py +25 -6
- pulumi_oci/database/get_db_system_storage_performances.py +20 -3
- pulumi_oci/database/get_db_versions.py +20 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +15 -1
- pulumi_oci/database/get_exascale_db_storage_vault.py +15 -1
- pulumi_oci/database/get_exascale_db_storage_vaults.py +87 -8
- pulumi_oci/database/get_gi_versions.py +25 -6
- pulumi_oci/database/outputs.py +575 -8
- pulumi_oci/datasafe/__init__.py +24 -0
- pulumi_oci/datasafe/_inputs.py +3669 -1537
- pulumi_oci/datasafe/attribute_set.py +693 -0
- pulumi_oci/datasafe/audit_profile.py +356 -95
- pulumi_oci/datasafe/audit_profile_management.py +389 -129
- pulumi_oci/datasafe/audit_trail.py +47 -0
- pulumi_oci/datasafe/audit_trail_management.py +49 -0
- pulumi_oci/datasafe/get_alerts.py +2 -2
- pulumi_oci/datasafe/get_attribute_set.py +295 -0
- pulumi_oci/datasafe/get_attribute_set_associated_resources.py +188 -0
- pulumi_oci/datasafe/get_attribute_sets.py +340 -0
- pulumi_oci/datasafe/get_audit_archive_retrievals.py +20 -1
- pulumi_oci/datasafe/get_audit_events.py +2 -2
- pulumi_oci/datasafe/get_audit_policies.py +20 -1
- pulumi_oci/datasafe/get_audit_profile.py +78 -8
- pulumi_oci/datasafe/get_audit_profile_target_overrides.py +163 -0
- pulumi_oci/datasafe/get_audit_profiles.py +50 -9
- pulumi_oci/datasafe/get_audit_trail.py +15 -1
- pulumi_oci/datasafe/get_audit_trails.py +20 -1
- pulumi_oci/datasafe/get_database_security_configs.py +20 -1
- pulumi_oci/datasafe/get_discovery_analytics.py +39 -1
- pulumi_oci/datasafe/get_masking_analytics.py +42 -1
- pulumi_oci/datasafe/get_onprem_connectors.py +26 -23
- pulumi_oci/datasafe/get_report.py +43 -1
- pulumi_oci/datasafe/get_reports.py +23 -1
- pulumi_oci/datasafe/get_security_assessment.py +116 -2
- pulumi_oci/datasafe/get_security_assessment_checks.py +264 -0
- pulumi_oci/datasafe/get_security_assessment_finding.py +64 -4
- pulumi_oci/datasafe/get_security_assessment_findings.py +73 -6
- pulumi_oci/datasafe/get_security_assessment_template_analytics.py +362 -0
- pulumi_oci/datasafe/get_security_assessment_template_association_analytics.py +298 -0
- pulumi_oci/datasafe/get_security_assessment_template_baseline_comparison.py +347 -0
- pulumi_oci/datasafe/get_security_assessments.py +68 -2
- pulumi_oci/datasafe/get_security_policies.py +23 -1
- pulumi_oci/datasafe/get_security_policy.py +15 -1
- pulumi_oci/datasafe/get_security_policy_config.py +296 -0
- pulumi_oci/datasafe/get_security_policy_configs.py +342 -0
- pulumi_oci/datasafe/get_security_policy_deployment.py +52 -2
- pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_state.py +49 -4
- pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_states.py +47 -6
- pulumi_oci/datasafe/get_security_policy_deployments.py +29 -7
- pulumi_oci/datasafe/get_sensitive_column_analytics.py +20 -1
- pulumi_oci/datasafe/get_sql_collection_analytics.py +20 -1
- pulumi_oci/datasafe/get_sql_collections.py +20 -1
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_violations.py +2 -2
- pulumi_oci/datasafe/get_target_alert_policy_associations.py +0 -34
- pulumi_oci/datasafe/get_target_database_group.py +296 -0
- pulumi_oci/datasafe/get_target_database_group_group_member.py +146 -0
- pulumi_oci/datasafe/get_target_database_groups.py +313 -0
- pulumi_oci/datasafe/get_unified_audit_policies.py +386 -0
- pulumi_oci/datasafe/get_unified_audit_policy.py +338 -0
- pulumi_oci/datasafe/get_unified_audit_policy_definition.py +309 -0
- pulumi_oci/datasafe/get_unified_audit_policy_definitions.py +334 -0
- pulumi_oci/datasafe/get_user_assessment.py +29 -1
- pulumi_oci/datasafe/get_user_assessments.py +45 -1
- pulumi_oci/datasafe/outputs.py +6964 -192
- pulumi_oci/datasafe/report.py +84 -0
- pulumi_oci/datasafe/report_definition.py +4 -0
- pulumi_oci/datasafe/security_assessment.py +425 -82
- pulumi_oci/datasafe/security_assessment_check.py +456 -0
- pulumi_oci/datasafe/security_assessment_finding.py +818 -0
- pulumi_oci/datasafe/security_policy.py +94 -77
- pulumi_oci/datasafe/security_policy_config.py +698 -0
- pulumi_oci/datasafe/security_policy_deployment.py +272 -67
- pulumi_oci/datasafe/security_policy_deployment_management.py +266 -42
- pulumi_oci/datasafe/security_policy_management.py +87 -30
- pulumi_oci/datasafe/target_alert_policy_association.py +7 -77
- pulumi_oci/datasafe/target_database.py +4 -0
- pulumi_oci/datasafe/target_database_group.py +679 -0
- pulumi_oci/datasafe/target_database_peer_target_database.py +2 -0
- pulumi_oci/datasafe/unified_audit_policy.py +836 -0
- pulumi_oci/datasafe/unified_audit_policy_definition.py +687 -0
- pulumi_oci/datasafe/user_assessment.py +105 -28
- pulumi_oci/disasterrecovery/_inputs.py +231 -3
- pulumi_oci/disasterrecovery/dr_protection_group.py +24 -0
- pulumi_oci/disasterrecovery/outputs.py +446 -12
- pulumi_oci/generativeai/_inputs.py +572 -63
- pulumi_oci/generativeai/agent_data_ingestion_job.py +48 -0
- pulumi_oci/generativeai/agent_data_source.py +7 -81
- pulumi_oci/generativeai/agent_knowledge_base.py +35 -25
- pulumi_oci/generativeai/agent_tool.py +172 -0
- pulumi_oci/generativeai/get_agent_data_ingestion_job.py +26 -1
- pulumi_oci/generativeai/get_agent_data_source.py +1 -5
- pulumi_oci/generativeai/get_agent_data_sources.py +0 -4
- pulumi_oci/generativeai/get_agent_knowledge_base.py +16 -6
- pulumi_oci/generativeai/get_agent_knowledge_bases.py +0 -4
- pulumi_oci/generativeai/outputs.py +1128 -106
- pulumi_oci/goldengate/deployment.py +94 -0
- pulumi_oci/goldengate/get_deployment.py +29 -1
- pulumi_oci/goldengate/get_deployments.py +23 -1
- pulumi_oci/goldengate/outputs.py +35 -2
- pulumi_oci/oci/__init__.py +9 -0
- pulumi_oci/oci/_inputs.py +420 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster.py +380 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_config.py +254 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_version.py +177 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_versions.py +144 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_configs.py +199 -0
- pulumi_oci/oci/get_managed_kafka_kafka_clusters.py +199 -0
- pulumi_oci/oci/managed_kafka_kafka_cluster.py +984 -0
- pulumi_oci/oci/managed_kafka_kafka_cluster_config.py +549 -0
- pulumi_oci/oci/managed_kafka_kafka_cluster_superusers_management.py +352 -0
- pulumi_oci/oci/outputs.py +1009 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-3.5.0a1756327653.dist-info → pulumi_oci-3.5.0a1756440723.dist-info}/METADATA +1 -1
- {pulumi_oci-3.5.0a1756327653.dist-info → pulumi_oci-3.5.0a1756440723.dist-info}/RECORD +133 -100
- {pulumi_oci-3.5.0a1756327653.dist-info → pulumi_oci-3.5.0a1756440723.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.5.0a1756327653.dist-info → pulumi_oci-3.5.0a1756440723.dist-info}/top_level.txt +0 -0
@@ -28,7 +28,7 @@ class GetSensitiveColumnAnalyticsResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getSensitiveColumnAnalytics.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, access_level=None, column_names=None, compartment_id=None, compartment_id_in_subtree=None, filters=None, group_bies=None, id=None, objects=None, schema_names=None, sensitive_column_analytics_collections=None, sensitive_data_model_id=None, sensitive_type_group_id=None, sensitive_type_ids=None, target_id=None):
|
31
|
+
def __init__(__self__, access_level=None, column_names=None, compartment_id=None, compartment_id_in_subtree=None, filters=None, group_bies=None, id=None, objects=None, schema_names=None, sensitive_column_analytics_collections=None, sensitive_data_model_id=None, sensitive_type_group_id=None, sensitive_type_ids=None, target_database_group_id=None, target_id=None):
|
32
32
|
if access_level and not isinstance(access_level, str):
|
33
33
|
raise TypeError("Expected argument 'access_level' to be a str")
|
34
34
|
pulumi.set(__self__, "access_level", access_level)
|
@@ -68,6 +68,9 @@ class GetSensitiveColumnAnalyticsResult:
|
|
68
68
|
if sensitive_type_ids and not isinstance(sensitive_type_ids, list):
|
69
69
|
raise TypeError("Expected argument 'sensitive_type_ids' to be a list")
|
70
70
|
pulumi.set(__self__, "sensitive_type_ids", sensitive_type_ids)
|
71
|
+
if target_database_group_id and not isinstance(target_database_group_id, str):
|
72
|
+
raise TypeError("Expected argument 'target_database_group_id' to be a str")
|
73
|
+
pulumi.set(__self__, "target_database_group_id", target_database_group_id)
|
71
74
|
if target_id and not isinstance(target_id, str):
|
72
75
|
raise TypeError("Expected argument 'target_id' to be a str")
|
73
76
|
pulumi.set(__self__, "target_id", target_id)
|
@@ -158,6 +161,11 @@ class GetSensitiveColumnAnalyticsResult:
|
|
158
161
|
"""
|
159
162
|
return pulumi.get(self, "sensitive_type_ids")
|
160
163
|
|
164
|
+
@_builtins.property
|
165
|
+
@pulumi.getter(name="targetDatabaseGroupId")
|
166
|
+
def target_database_group_id(self) -> Optional[_builtins.str]:
|
167
|
+
return pulumi.get(self, "target_database_group_id")
|
168
|
+
|
161
169
|
@_builtins.property
|
162
170
|
@pulumi.getter(name="targetId")
|
163
171
|
def target_id(self) -> Optional[_builtins.str]:
|
@@ -186,6 +194,7 @@ class AwaitableGetSensitiveColumnAnalyticsResult(GetSensitiveColumnAnalyticsResu
|
|
186
194
|
sensitive_data_model_id=self.sensitive_data_model_id,
|
187
195
|
sensitive_type_group_id=self.sensitive_type_group_id,
|
188
196
|
sensitive_type_ids=self.sensitive_type_ids,
|
197
|
+
target_database_group_id=self.target_database_group_id,
|
189
198
|
target_id=self.target_id)
|
190
199
|
|
191
200
|
|
@@ -200,6 +209,7 @@ def get_sensitive_column_analytics(access_level: Optional[_builtins.str] = None,
|
|
200
209
|
sensitive_data_model_id: Optional[_builtins.str] = None,
|
201
210
|
sensitive_type_group_id: Optional[_builtins.str] = None,
|
202
211
|
sensitive_type_ids: Optional[Sequence[_builtins.str]] = None,
|
212
|
+
target_database_group_id: Optional[_builtins.str] = None,
|
203
213
|
target_id: Optional[_builtins.str] = None,
|
204
214
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSensitiveColumnAnalyticsResult:
|
205
215
|
"""
|
@@ -232,6 +242,7 @@ def get_sensitive_column_analytics(access_level: Optional[_builtins.str] = None,
|
|
232
242
|
sensitive_data_model_id=test_sensitive_data_model["id"],
|
233
243
|
sensitive_type_group_id=test_sensitive_type_group["id"],
|
234
244
|
sensitive_type_ids=test_sensitive_type["id"],
|
245
|
+
target_database_group_id=test_target_database_group["id"],
|
235
246
|
target_id=test_target["id"])
|
236
247
|
```
|
237
248
|
|
@@ -246,6 +257,7 @@ def get_sensitive_column_analytics(access_level: Optional[_builtins.str] = None,
|
|
246
257
|
:param _builtins.str sensitive_data_model_id: A filter to return only the resources that match the specified sensitive data model OCID.
|
247
258
|
:param _builtins.str sensitive_type_group_id: An optional filter to return only resources that match the specified OCID of the sensitive type group resource.
|
248
259
|
:param Sequence[_builtins.str] sensitive_type_ids: A filter to return only the sensitive columns that are associated with one of the sensitive types identified by the specified OCIDs.
|
260
|
+
:param _builtins.str target_database_group_id: A filter to return the target database group that matches the specified OCID.
|
249
261
|
:param _builtins.str target_id: A filter to return only items related to a specific target OCID.
|
250
262
|
"""
|
251
263
|
__args__ = dict()
|
@@ -260,6 +272,7 @@ def get_sensitive_column_analytics(access_level: Optional[_builtins.str] = None,
|
|
260
272
|
__args__['sensitiveDataModelId'] = sensitive_data_model_id
|
261
273
|
__args__['sensitiveTypeGroupId'] = sensitive_type_group_id
|
262
274
|
__args__['sensitiveTypeIds'] = sensitive_type_ids
|
275
|
+
__args__['targetDatabaseGroupId'] = target_database_group_id
|
263
276
|
__args__['targetId'] = target_id
|
264
277
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
265
278
|
__ret__ = pulumi.runtime.invoke('oci:DataSafe/getSensitiveColumnAnalytics:getSensitiveColumnAnalytics', __args__, opts=opts, typ=GetSensitiveColumnAnalyticsResult).value
|
@@ -278,6 +291,7 @@ def get_sensitive_column_analytics(access_level: Optional[_builtins.str] = None,
|
|
278
291
|
sensitive_data_model_id=pulumi.get(__ret__, 'sensitive_data_model_id'),
|
279
292
|
sensitive_type_group_id=pulumi.get(__ret__, 'sensitive_type_group_id'),
|
280
293
|
sensitive_type_ids=pulumi.get(__ret__, 'sensitive_type_ids'),
|
294
|
+
target_database_group_id=pulumi.get(__ret__, 'target_database_group_id'),
|
281
295
|
target_id=pulumi.get(__ret__, 'target_id'))
|
282
296
|
def get_sensitive_column_analytics_output(access_level: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
283
297
|
column_names: Optional[pulumi.Input[Optional[Sequence[_builtins.str]]]] = None,
|
@@ -290,6 +304,7 @@ def get_sensitive_column_analytics_output(access_level: Optional[pulumi.Input[Op
|
|
290
304
|
sensitive_data_model_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
291
305
|
sensitive_type_group_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
292
306
|
sensitive_type_ids: Optional[pulumi.Input[Optional[Sequence[_builtins.str]]]] = None,
|
307
|
+
target_database_group_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
293
308
|
target_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
294
309
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSensitiveColumnAnalyticsResult]:
|
295
310
|
"""
|
@@ -322,6 +337,7 @@ def get_sensitive_column_analytics_output(access_level: Optional[pulumi.Input[Op
|
|
322
337
|
sensitive_data_model_id=test_sensitive_data_model["id"],
|
323
338
|
sensitive_type_group_id=test_sensitive_type_group["id"],
|
324
339
|
sensitive_type_ids=test_sensitive_type["id"],
|
340
|
+
target_database_group_id=test_target_database_group["id"],
|
325
341
|
target_id=test_target["id"])
|
326
342
|
```
|
327
343
|
|
@@ -336,6 +352,7 @@ def get_sensitive_column_analytics_output(access_level: Optional[pulumi.Input[Op
|
|
336
352
|
:param _builtins.str sensitive_data_model_id: A filter to return only the resources that match the specified sensitive data model OCID.
|
337
353
|
:param _builtins.str sensitive_type_group_id: An optional filter to return only resources that match the specified OCID of the sensitive type group resource.
|
338
354
|
:param Sequence[_builtins.str] sensitive_type_ids: A filter to return only the sensitive columns that are associated with one of the sensitive types identified by the specified OCIDs.
|
355
|
+
:param _builtins.str target_database_group_id: A filter to return the target database group that matches the specified OCID.
|
339
356
|
:param _builtins.str target_id: A filter to return only items related to a specific target OCID.
|
340
357
|
"""
|
341
358
|
__args__ = dict()
|
@@ -350,6 +367,7 @@ def get_sensitive_column_analytics_output(access_level: Optional[pulumi.Input[Op
|
|
350
367
|
__args__['sensitiveDataModelId'] = sensitive_data_model_id
|
351
368
|
__args__['sensitiveTypeGroupId'] = sensitive_type_group_id
|
352
369
|
__args__['sensitiveTypeIds'] = sensitive_type_ids
|
370
|
+
__args__['targetDatabaseGroupId'] = target_database_group_id
|
353
371
|
__args__['targetId'] = target_id
|
354
372
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
355
373
|
__ret__ = pulumi.runtime.invoke_output('oci:DataSafe/getSensitiveColumnAnalytics:getSensitiveColumnAnalytics', __args__, opts=opts, typ=GetSensitiveColumnAnalyticsResult)
|
@@ -367,4 +385,5 @@ def get_sensitive_column_analytics_output(access_level: Optional[pulumi.Input[Op
|
|
367
385
|
sensitive_data_model_id=pulumi.get(__response__, 'sensitive_data_model_id'),
|
368
386
|
sensitive_type_group_id=pulumi.get(__response__, 'sensitive_type_group_id'),
|
369
387
|
sensitive_type_ids=pulumi.get(__response__, 'sensitive_type_ids'),
|
388
|
+
target_database_group_id=pulumi.get(__response__, 'target_database_group_id'),
|
370
389
|
target_id=pulumi.get(__response__, 'target_id')))
|
@@ -28,7 +28,7 @@ class GetSqlCollectionAnalyticsResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getSqlCollectionAnalytics.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, access_level=None, compartment_id=None, compartment_id_in_subtree=None, filters=None, group_bies=None, id=None, sql_collection_analytics_collections=None, state=None, target_id=None, time_ended=None, time_started=None):
|
31
|
+
def __init__(__self__, access_level=None, compartment_id=None, compartment_id_in_subtree=None, filters=None, group_bies=None, id=None, sql_collection_analytics_collections=None, state=None, target_database_group_id=None, target_id=None, time_ended=None, time_started=None):
|
32
32
|
if access_level and not isinstance(access_level, str):
|
33
33
|
raise TypeError("Expected argument 'access_level' to be a str")
|
34
34
|
pulumi.set(__self__, "access_level", access_level)
|
@@ -53,6 +53,9 @@ class GetSqlCollectionAnalyticsResult:
|
|
53
53
|
if state and not isinstance(state, str):
|
54
54
|
raise TypeError("Expected argument 'state' to be a str")
|
55
55
|
pulumi.set(__self__, "state", state)
|
56
|
+
if target_database_group_id and not isinstance(target_database_group_id, str):
|
57
|
+
raise TypeError("Expected argument 'target_database_group_id' to be a str")
|
58
|
+
pulumi.set(__self__, "target_database_group_id", target_database_group_id)
|
56
59
|
if target_id and not isinstance(target_id, str):
|
57
60
|
raise TypeError("Expected argument 'target_id' to be a str")
|
58
61
|
pulumi.set(__self__, "target_id", target_id)
|
@@ -112,6 +115,11 @@ class GetSqlCollectionAnalyticsResult:
|
|
112
115
|
"""
|
113
116
|
return pulumi.get(self, "state")
|
114
117
|
|
118
|
+
@_builtins.property
|
119
|
+
@pulumi.getter(name="targetDatabaseGroupId")
|
120
|
+
def target_database_group_id(self) -> Optional[_builtins.str]:
|
121
|
+
return pulumi.get(self, "target_database_group_id")
|
122
|
+
|
115
123
|
@_builtins.property
|
116
124
|
@pulumi.getter(name="targetId")
|
117
125
|
def target_id(self) -> Optional[_builtins.str]:
|
@@ -145,6 +153,7 @@ class AwaitableGetSqlCollectionAnalyticsResult(GetSqlCollectionAnalyticsResult):
|
|
145
153
|
id=self.id,
|
146
154
|
sql_collection_analytics_collections=self.sql_collection_analytics_collections,
|
147
155
|
state=self.state,
|
156
|
+
target_database_group_id=self.target_database_group_id,
|
148
157
|
target_id=self.target_id,
|
149
158
|
time_ended=self.time_ended,
|
150
159
|
time_started=self.time_started)
|
@@ -156,6 +165,7 @@ def get_sql_collection_analytics(access_level: Optional[_builtins.str] = None,
|
|
156
165
|
filters: Optional[Sequence[Union['GetSqlCollectionAnalyticsFilterArgs', 'GetSqlCollectionAnalyticsFilterArgsDict']]] = None,
|
157
166
|
group_bies: Optional[Sequence[_builtins.str]] = None,
|
158
167
|
state: Optional[_builtins.str] = None,
|
168
|
+
target_database_group_id: Optional[_builtins.str] = None,
|
159
169
|
target_id: Optional[_builtins.str] = None,
|
160
170
|
time_ended: Optional[_builtins.str] = None,
|
161
171
|
time_started: Optional[_builtins.str] = None,
|
@@ -189,6 +199,7 @@ def get_sql_collection_analytics(access_level: Optional[_builtins.str] = None,
|
|
189
199
|
compartment_id_in_subtree=sql_collection_analytic_compartment_id_in_subtree,
|
190
200
|
group_bies=sql_collection_analytic_group_by,
|
191
201
|
state=sql_collection_analytic_state,
|
202
|
+
target_database_group_id=test_target_database_group["id"],
|
192
203
|
target_id=test_target["id"],
|
193
204
|
time_ended=sql_collection_analytic_time_ended,
|
194
205
|
time_started=sql_collection_analytic_time_started)
|
@@ -200,6 +211,7 @@ def get_sql_collection_analytics(access_level: Optional[_builtins.str] = None,
|
|
200
211
|
:param _builtins.bool compartment_id_in_subtree: Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
|
201
212
|
:param Sequence[_builtins.str] group_bies: The group by parameter to summarize SQL collection aggregation.
|
202
213
|
:param _builtins.str state: The current state of the SQL collection.
|
214
|
+
:param _builtins.str target_database_group_id: A filter to return the target database group that matches the specified OCID.
|
203
215
|
:param _builtins.str target_id: A filter to return only items related to a specific target OCID.
|
204
216
|
:param _builtins.str time_ended: An optional filter to return the stats of the SQL collection logs collected before the date-time specified, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
205
217
|
:param _builtins.str time_started: An optional filter to return the stats of the SQL collection logs collected after the date-time specified, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
@@ -211,6 +223,7 @@ def get_sql_collection_analytics(access_level: Optional[_builtins.str] = None,
|
|
211
223
|
__args__['filters'] = filters
|
212
224
|
__args__['groupBies'] = group_bies
|
213
225
|
__args__['state'] = state
|
226
|
+
__args__['targetDatabaseGroupId'] = target_database_group_id
|
214
227
|
__args__['targetId'] = target_id
|
215
228
|
__args__['timeEnded'] = time_ended
|
216
229
|
__args__['timeStarted'] = time_started
|
@@ -226,6 +239,7 @@ def get_sql_collection_analytics(access_level: Optional[_builtins.str] = None,
|
|
226
239
|
id=pulumi.get(__ret__, 'id'),
|
227
240
|
sql_collection_analytics_collections=pulumi.get(__ret__, 'sql_collection_analytics_collections'),
|
228
241
|
state=pulumi.get(__ret__, 'state'),
|
242
|
+
target_database_group_id=pulumi.get(__ret__, 'target_database_group_id'),
|
229
243
|
target_id=pulumi.get(__ret__, 'target_id'),
|
230
244
|
time_ended=pulumi.get(__ret__, 'time_ended'),
|
231
245
|
time_started=pulumi.get(__ret__, 'time_started'))
|
@@ -235,6 +249,7 @@ def get_sql_collection_analytics_output(access_level: Optional[pulumi.Input[Opti
|
|
235
249
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetSqlCollectionAnalyticsFilterArgs', 'GetSqlCollectionAnalyticsFilterArgsDict']]]]] = None,
|
236
250
|
group_bies: Optional[pulumi.Input[Optional[Sequence[_builtins.str]]]] = None,
|
237
251
|
state: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
252
|
+
target_database_group_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
238
253
|
target_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
239
254
|
time_ended: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
240
255
|
time_started: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
@@ -268,6 +283,7 @@ def get_sql_collection_analytics_output(access_level: Optional[pulumi.Input[Opti
|
|
268
283
|
compartment_id_in_subtree=sql_collection_analytic_compartment_id_in_subtree,
|
269
284
|
group_bies=sql_collection_analytic_group_by,
|
270
285
|
state=sql_collection_analytic_state,
|
286
|
+
target_database_group_id=test_target_database_group["id"],
|
271
287
|
target_id=test_target["id"],
|
272
288
|
time_ended=sql_collection_analytic_time_ended,
|
273
289
|
time_started=sql_collection_analytic_time_started)
|
@@ -279,6 +295,7 @@ def get_sql_collection_analytics_output(access_level: Optional[pulumi.Input[Opti
|
|
279
295
|
:param _builtins.bool compartment_id_in_subtree: Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
|
280
296
|
:param Sequence[_builtins.str] group_bies: The group by parameter to summarize SQL collection aggregation.
|
281
297
|
:param _builtins.str state: The current state of the SQL collection.
|
298
|
+
:param _builtins.str target_database_group_id: A filter to return the target database group that matches the specified OCID.
|
282
299
|
:param _builtins.str target_id: A filter to return only items related to a specific target OCID.
|
283
300
|
:param _builtins.str time_ended: An optional filter to return the stats of the SQL collection logs collected before the date-time specified, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
284
301
|
:param _builtins.str time_started: An optional filter to return the stats of the SQL collection logs collected after the date-time specified, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
@@ -290,6 +307,7 @@ def get_sql_collection_analytics_output(access_level: Optional[pulumi.Input[Opti
|
|
290
307
|
__args__['filters'] = filters
|
291
308
|
__args__['groupBies'] = group_bies
|
292
309
|
__args__['state'] = state
|
310
|
+
__args__['targetDatabaseGroupId'] = target_database_group_id
|
293
311
|
__args__['targetId'] = target_id
|
294
312
|
__args__['timeEnded'] = time_ended
|
295
313
|
__args__['timeStarted'] = time_started
|
@@ -304,6 +322,7 @@ def get_sql_collection_analytics_output(access_level: Optional[pulumi.Input[Opti
|
|
304
322
|
id=pulumi.get(__response__, 'id'),
|
305
323
|
sql_collection_analytics_collections=pulumi.get(__response__, 'sql_collection_analytics_collections'),
|
306
324
|
state=pulumi.get(__response__, 'state'),
|
325
|
+
target_database_group_id=pulumi.get(__response__, 'target_database_group_id'),
|
307
326
|
target_id=pulumi.get(__response__, 'target_id'),
|
308
327
|
time_ended=pulumi.get(__response__, 'time_ended'),
|
309
328
|
time_started=pulumi.get(__response__, 'time_started')))
|
@@ -28,7 +28,7 @@ class GetSqlCollectionsResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getSqlCollections.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, access_level=None, compartment_id=None, compartment_id_in_subtree=None, db_user_name=None, display_name=None, filters=None, id=None, sql_collection_collections=None, sql_collection_id=None, state=None, target_id=None, time_created_greater_than_or_equal_to=None, time_created_less_than=None):
|
31
|
+
def __init__(__self__, access_level=None, compartment_id=None, compartment_id_in_subtree=None, db_user_name=None, display_name=None, filters=None, id=None, sql_collection_collections=None, sql_collection_id=None, state=None, target_database_group_id=None, target_id=None, time_created_greater_than_or_equal_to=None, time_created_less_than=None):
|
32
32
|
if access_level and not isinstance(access_level, str):
|
33
33
|
raise TypeError("Expected argument 'access_level' to be a str")
|
34
34
|
pulumi.set(__self__, "access_level", access_level)
|
@@ -59,6 +59,9 @@ class GetSqlCollectionsResult:
|
|
59
59
|
if state and not isinstance(state, str):
|
60
60
|
raise TypeError("Expected argument 'state' to be a str")
|
61
61
|
pulumi.set(__self__, "state", state)
|
62
|
+
if target_database_group_id and not isinstance(target_database_group_id, str):
|
63
|
+
raise TypeError("Expected argument 'target_database_group_id' to be a str")
|
64
|
+
pulumi.set(__self__, "target_database_group_id", target_database_group_id)
|
62
65
|
if target_id and not isinstance(target_id, str):
|
63
66
|
raise TypeError("Expected argument 'target_id' to be a str")
|
64
67
|
pulumi.set(__self__, "target_id", target_id)
|
@@ -137,6 +140,11 @@ class GetSqlCollectionsResult:
|
|
137
140
|
"""
|
138
141
|
return pulumi.get(self, "state")
|
139
142
|
|
143
|
+
@_builtins.property
|
144
|
+
@pulumi.getter(name="targetDatabaseGroupId")
|
145
|
+
def target_database_group_id(self) -> Optional[_builtins.str]:
|
146
|
+
return pulumi.get(self, "target_database_group_id")
|
147
|
+
|
140
148
|
@_builtins.property
|
141
149
|
@pulumi.getter(name="targetId")
|
142
150
|
def target_id(self) -> Optional[_builtins.str]:
|
@@ -172,6 +180,7 @@ class AwaitableGetSqlCollectionsResult(GetSqlCollectionsResult):
|
|
172
180
|
sql_collection_collections=self.sql_collection_collections,
|
173
181
|
sql_collection_id=self.sql_collection_id,
|
174
182
|
state=self.state,
|
183
|
+
target_database_group_id=self.target_database_group_id,
|
175
184
|
target_id=self.target_id,
|
176
185
|
time_created_greater_than_or_equal_to=self.time_created_greater_than_or_equal_to,
|
177
186
|
time_created_less_than=self.time_created_less_than)
|
@@ -185,6 +194,7 @@ def get_sql_collections(access_level: Optional[_builtins.str] = None,
|
|
185
194
|
filters: Optional[Sequence[Union['GetSqlCollectionsFilterArgs', 'GetSqlCollectionsFilterArgsDict']]] = None,
|
186
195
|
sql_collection_id: Optional[_builtins.str] = None,
|
187
196
|
state: Optional[_builtins.str] = None,
|
197
|
+
target_database_group_id: Optional[_builtins.str] = None,
|
188
198
|
target_id: Optional[_builtins.str] = None,
|
189
199
|
time_created_greater_than_or_equal_to: Optional[_builtins.str] = None,
|
190
200
|
time_created_less_than: Optional[_builtins.str] = None,
|
@@ -220,6 +230,7 @@ def get_sql_collections(access_level: Optional[_builtins.str] = None,
|
|
220
230
|
display_name=sql_collection_display_name,
|
221
231
|
sql_collection_id=test_sql_collection["id"],
|
222
232
|
state=sql_collection_state,
|
233
|
+
target_database_group_id=test_target_database_group["id"],
|
223
234
|
target_id=test_target["id"],
|
224
235
|
time_created_greater_than_or_equal_to=sql_collection_time_created_greater_than_or_equal_to,
|
225
236
|
time_created_less_than=sql_collection_time_created_less_than)
|
@@ -233,6 +244,7 @@ def get_sql_collections(access_level: Optional[_builtins.str] = None,
|
|
233
244
|
:param _builtins.str display_name: A filter to return only resources that match the specified display name.
|
234
245
|
:param _builtins.str sql_collection_id: An optional filter to return only resources that match the specified OCID of the SQL collection resource.
|
235
246
|
:param _builtins.str state: The current state of the SQL collection.
|
247
|
+
:param _builtins.str target_database_group_id: A filter to return the target database group that matches the specified OCID.
|
236
248
|
:param _builtins.str target_id: A filter to return only items related to a specific target OCID.
|
237
249
|
:param _builtins.str time_created_greater_than_or_equal_to: A filter to return only the resources that were created after the specified date and time, as defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date.
|
238
250
|
|
@@ -250,6 +262,7 @@ def get_sql_collections(access_level: Optional[_builtins.str] = None,
|
|
250
262
|
__args__['filters'] = filters
|
251
263
|
__args__['sqlCollectionId'] = sql_collection_id
|
252
264
|
__args__['state'] = state
|
265
|
+
__args__['targetDatabaseGroupId'] = target_database_group_id
|
253
266
|
__args__['targetId'] = target_id
|
254
267
|
__args__['timeCreatedGreaterThanOrEqualTo'] = time_created_greater_than_or_equal_to
|
255
268
|
__args__['timeCreatedLessThan'] = time_created_less_than
|
@@ -267,6 +280,7 @@ def get_sql_collections(access_level: Optional[_builtins.str] = None,
|
|
267
280
|
sql_collection_collections=pulumi.get(__ret__, 'sql_collection_collections'),
|
268
281
|
sql_collection_id=pulumi.get(__ret__, 'sql_collection_id'),
|
269
282
|
state=pulumi.get(__ret__, 'state'),
|
283
|
+
target_database_group_id=pulumi.get(__ret__, 'target_database_group_id'),
|
270
284
|
target_id=pulumi.get(__ret__, 'target_id'),
|
271
285
|
time_created_greater_than_or_equal_to=pulumi.get(__ret__, 'time_created_greater_than_or_equal_to'),
|
272
286
|
time_created_less_than=pulumi.get(__ret__, 'time_created_less_than'))
|
@@ -278,6 +292,7 @@ def get_sql_collections_output(access_level: Optional[pulumi.Input[Optional[_bui
|
|
278
292
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetSqlCollectionsFilterArgs', 'GetSqlCollectionsFilterArgsDict']]]]] = None,
|
279
293
|
sql_collection_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
280
294
|
state: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
295
|
+
target_database_group_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
281
296
|
target_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
282
297
|
time_created_greater_than_or_equal_to: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
283
298
|
time_created_less_than: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
@@ -313,6 +328,7 @@ def get_sql_collections_output(access_level: Optional[pulumi.Input[Optional[_bui
|
|
313
328
|
display_name=sql_collection_display_name,
|
314
329
|
sql_collection_id=test_sql_collection["id"],
|
315
330
|
state=sql_collection_state,
|
331
|
+
target_database_group_id=test_target_database_group["id"],
|
316
332
|
target_id=test_target["id"],
|
317
333
|
time_created_greater_than_or_equal_to=sql_collection_time_created_greater_than_or_equal_to,
|
318
334
|
time_created_less_than=sql_collection_time_created_less_than)
|
@@ -326,6 +342,7 @@ def get_sql_collections_output(access_level: Optional[pulumi.Input[Optional[_bui
|
|
326
342
|
:param _builtins.str display_name: A filter to return only resources that match the specified display name.
|
327
343
|
:param _builtins.str sql_collection_id: An optional filter to return only resources that match the specified OCID of the SQL collection resource.
|
328
344
|
:param _builtins.str state: The current state of the SQL collection.
|
345
|
+
:param _builtins.str target_database_group_id: A filter to return the target database group that matches the specified OCID.
|
329
346
|
:param _builtins.str target_id: A filter to return only items related to a specific target OCID.
|
330
347
|
:param _builtins.str time_created_greater_than_or_equal_to: A filter to return only the resources that were created after the specified date and time, as defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date.
|
331
348
|
|
@@ -343,6 +360,7 @@ def get_sql_collections_output(access_level: Optional[pulumi.Input[Optional[_bui
|
|
343
360
|
__args__['filters'] = filters
|
344
361
|
__args__['sqlCollectionId'] = sql_collection_id
|
345
362
|
__args__['state'] = state
|
363
|
+
__args__['targetDatabaseGroupId'] = target_database_group_id
|
346
364
|
__args__['targetId'] = target_id
|
347
365
|
__args__['timeCreatedGreaterThanOrEqualTo'] = time_created_greater_than_or_equal_to
|
348
366
|
__args__['timeCreatedLessThan'] = time_created_less_than
|
@@ -359,6 +377,7 @@ def get_sql_collections_output(access_level: Optional[pulumi.Input[Optional[_bui
|
|
359
377
|
sql_collection_collections=pulumi.get(__response__, 'sql_collection_collections'),
|
360
378
|
sql_collection_id=pulumi.get(__response__, 'sql_collection_id'),
|
361
379
|
state=pulumi.get(__response__, 'state'),
|
380
|
+
target_database_group_id=pulumi.get(__response__, 'target_database_group_id'),
|
362
381
|
target_id=pulumi.get(__response__, 'target_id'),
|
363
382
|
time_created_greater_than_or_equal_to=pulumi.get(__response__, 'time_created_greater_than_or_equal_to'),
|
364
383
|
time_created_less_than=pulumi.get(__response__, 'time_created_less_than')))
|
@@ -162,7 +162,7 @@ def get_sql_firewall_allowed_sql_analytics(access_level: Optional[_builtins.str]
|
|
162
162
|
:param Sequence[_builtins.str] group_bies: The group by parameter to summarize the allowed SQL aggregation.
|
163
163
|
:param _builtins.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.)
|
164
164
|
|
165
|
-
**Example:** query=(currentUser eq
|
165
|
+
**Example:** query=(currentUser eq "SCOTT") and (topLevel eq "YES")
|
166
166
|
"""
|
167
167
|
__args__ = dict()
|
168
168
|
__args__['accessLevel'] = access_level
|
@@ -228,7 +228,7 @@ def get_sql_firewall_allowed_sql_analytics_output(access_level: Optional[pulumi.
|
|
228
228
|
:param Sequence[_builtins.str] group_bies: The group by parameter to summarize the allowed SQL aggregation.
|
229
229
|
:param _builtins.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.)
|
230
230
|
|
231
|
-
**Example:** query=(currentUser eq
|
231
|
+
**Example:** query=(currentUser eq "SCOTT") and (topLevel eq "YES")
|
232
232
|
"""
|
233
233
|
__args__ = dict()
|
234
234
|
__args__['accessLevel'] = access_level
|
@@ -153,7 +153,7 @@ def get_sql_firewall_allowed_sqls(access_level: Optional[_builtins.str] = None,
|
|
153
153
|
:param _builtins.bool compartment_id_in_subtree: Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
|
154
154
|
:param _builtins.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.)
|
155
155
|
|
156
|
-
**Example:** query=(currentUser eq
|
156
|
+
**Example:** query=(currentUser eq "SCOTT") and (topLevel eq "YES")
|
157
157
|
"""
|
158
158
|
__args__ = dict()
|
159
159
|
__args__['accessLevel'] = access_level
|
@@ -214,7 +214,7 @@ def get_sql_firewall_allowed_sqls_output(access_level: Optional[pulumi.Input[Opt
|
|
214
214
|
:param _builtins.bool compartment_id_in_subtree: Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
|
215
215
|
:param _builtins.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.)
|
216
216
|
|
217
|
-
**Example:** query=(currentUser eq
|
217
|
+
**Example:** query=(currentUser eq "SCOTT") and (topLevel eq "YES")
|
218
218
|
"""
|
219
219
|
__args__ = dict()
|
220
220
|
__args__['accessLevel'] = access_level
|
@@ -200,7 +200,7 @@ def get_sql_firewall_violation_analytics(access_level: Optional[_builtins.str] =
|
|
200
200
|
:param _builtins.str query_time_zone: Default time zone is UTC if no time zone provided. The date-time considerations of the resource will be in accordance with the specified time zone.
|
201
201
|
:param _builtins.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.)
|
202
202
|
|
203
|
-
**Example:** query=(operationTime ge
|
203
|
+
**Example:** query=(operationTime ge "2021-06-04T01:00:26.000Z") and (violationAction eq "BLOCKED")
|
204
204
|
:param Sequence[_builtins.str] summary_fields: Specifies a subset of summarized fields to be returned in the response.
|
205
205
|
:param _builtins.str time_ended: An optional filter to return audit events whose creation time in the database is less than and equal to the date-time specified, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
206
206
|
:param _builtins.str time_started: An optional filter to return audit events whose creation time in the database is greater than and equal to the date-time specified, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
@@ -273,7 +273,7 @@ def get_sql_firewall_violation_analytics_output(access_level: Optional[pulumi.In
|
|
273
273
|
:param _builtins.str query_time_zone: Default time zone is UTC if no time zone provided. The date-time considerations of the resource will be in accordance with the specified time zone.
|
274
274
|
:param _builtins.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.)
|
275
275
|
|
276
|
-
**Example:** query=(operationTime ge
|
276
|
+
**Example:** query=(operationTime ge "2021-06-04T01:00:26.000Z") and (violationAction eq "BLOCKED")
|
277
277
|
:param Sequence[_builtins.str] summary_fields: Specifies a subset of summarized fields to be returned in the response.
|
278
278
|
:param _builtins.str time_ended: An optional filter to return audit events whose creation time in the database is less than and equal to the date-time specified, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
279
279
|
:param _builtins.str time_started: An optional filter to return audit events whose creation time in the database is greater than and equal to the date-time specified, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
@@ -140,7 +140,7 @@ def get_sql_firewall_violations(access_level: Optional[_builtins.str] = None,
|
|
140
140
|
:param _builtins.bool compartment_id_in_subtree: Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
|
141
141
|
:param _builtins.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.)
|
142
142
|
|
143
|
-
**Example:** query=(operationTime ge
|
143
|
+
**Example:** query=(operationTime ge "2021-06-04T01:00:26.000Z") and (violationAction eq "BLOCKED")
|
144
144
|
"""
|
145
145
|
__args__ = dict()
|
146
146
|
__args__['accessLevel'] = access_level
|
@@ -188,7 +188,7 @@ def get_sql_firewall_violations_output(access_level: Optional[pulumi.Input[Optio
|
|
188
188
|
:param _builtins.bool compartment_id_in_subtree: Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
|
189
189
|
:param _builtins.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.)
|
190
190
|
|
191
|
-
**Example:** query=(operationTime ge
|
191
|
+
**Example:** query=(operationTime ge "2021-06-04T01:00:26.000Z") and (violationAction eq "BLOCKED")
|
192
192
|
"""
|
193
193
|
__args__ = dict()
|
194
194
|
__args__['accessLevel'] = access_level
|
@@ -178,23 +178,6 @@ def get_target_alert_policy_associations(access_level: Optional[_builtins.str] =
|
|
178
178
|
|
179
179
|
Gets a list of all target-alert policy associations.
|
180
180
|
|
181
|
-
## Example Usage
|
182
|
-
|
183
|
-
```python
|
184
|
-
import pulumi
|
185
|
-
import pulumi_oci as oci
|
186
|
-
|
187
|
-
test_target_alert_policy_associations = oci.DataSafe.get_target_alert_policy_associations(compartment_id=compartment_id,
|
188
|
-
access_level=target_alert_policy_association_access_level,
|
189
|
-
alert_policy_id=test_alert_policy["id"],
|
190
|
-
compartment_id_in_subtree=target_alert_policy_association_compartment_id_in_subtree,
|
191
|
-
state=target_alert_policy_association_state,
|
192
|
-
target_alert_policy_association_id=test_target_alert_policy_association["id"],
|
193
|
-
target_id=test_target["id"],
|
194
|
-
time_created_greater_than_or_equal_to=target_alert_policy_association_time_created_greater_than_or_equal_to,
|
195
|
-
time_created_less_than=target_alert_policy_association_time_created_less_than)
|
196
|
-
```
|
197
|
-
|
198
181
|
|
199
182
|
:param _builtins.str access_level: Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
|
200
183
|
:param _builtins.str alert_policy_id: A filter to return policy by it's OCID.
|
@@ -253,23 +236,6 @@ def get_target_alert_policy_associations_output(access_level: Optional[pulumi.In
|
|
253
236
|
|
254
237
|
Gets a list of all target-alert policy associations.
|
255
238
|
|
256
|
-
## Example Usage
|
257
|
-
|
258
|
-
```python
|
259
|
-
import pulumi
|
260
|
-
import pulumi_oci as oci
|
261
|
-
|
262
|
-
test_target_alert_policy_associations = oci.DataSafe.get_target_alert_policy_associations(compartment_id=compartment_id,
|
263
|
-
access_level=target_alert_policy_association_access_level,
|
264
|
-
alert_policy_id=test_alert_policy["id"],
|
265
|
-
compartment_id_in_subtree=target_alert_policy_association_compartment_id_in_subtree,
|
266
|
-
state=target_alert_policy_association_state,
|
267
|
-
target_alert_policy_association_id=test_target_alert_policy_association["id"],
|
268
|
-
target_id=test_target["id"],
|
269
|
-
time_created_greater_than_or_equal_to=target_alert_policy_association_time_created_greater_than_or_equal_to,
|
270
|
-
time_created_less_than=target_alert_policy_association_time_created_less_than)
|
271
|
-
```
|
272
|
-
|
273
239
|
|
274
240
|
:param _builtins.str access_level: Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
|
275
241
|
:param _builtins.str alert_policy_id: A filter to return policy by it's OCID.
|