pulumi-oci 3.4.0a1755714728__py3-none-any.whl → 3.5.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 +248 -43
- pulumi_oci/aidocument/__init__.py +1 -0
- pulumi_oci/aidocument/_inputs.py +476 -6
- pulumi_oci/aidocument/get_model.py +63 -2
- pulumi_oci/aidocument/get_model_type.py +179 -0
- pulumi_oci/aidocument/get_models.py +1 -1
- pulumi_oci/aidocument/get_project.py +17 -2
- pulumi_oci/aidocument/get_projects.py +1 -1
- pulumi_oci/aidocument/model.py +188 -0
- pulumi_oci/aidocument/outputs.py +883 -8
- pulumi_oci/aidocument/processor_job.py +22 -4
- pulumi_oci/aidocument/project.py +50 -1
- pulumi_oci/apigateway/_inputs.py +608 -12
- pulumi_oci/apigateway/api.py +127 -38
- pulumi_oci/apigateway/certificate.py +122 -3
- pulumi_oci/apigateway/deployment.py +120 -3
- pulumi_oci/apigateway/gateway.py +124 -7
- pulumi_oci/apigateway/get_api.py +40 -1
- pulumi_oci/apigateway/get_certificate.py +41 -1
- pulumi_oci/apigateway/get_deployment.py +40 -1
- pulumi_oci/apigateway/get_gateway.py +40 -1
- pulumi_oci/apigateway/get_subscriber.py +40 -1
- pulumi_oci/apigateway/get_usage_plan.py +40 -1
- pulumi_oci/apigateway/outputs.py +1413 -39
- pulumi_oci/apigateway/subscriber.py +120 -3
- pulumi_oci/apigateway/usage_plan.py +127 -38
- pulumi_oci/apmconfig/_inputs.py +199 -15
- pulumi_oci/apmconfig/config.py +535 -17
- pulumi_oci/apmconfig/get_config.py +141 -1
- pulumi_oci/apmconfig/get_configs.py +2 -2
- pulumi_oci/apmconfig/outputs.py +509 -13
- pulumi_oci/apmtraces/__init__.py +5 -0
- pulumi_oci/apmtraces/_inputs.py +413 -0
- pulumi_oci/apmtraces/get_attribute_auto_activate_status.py +160 -0
- pulumi_oci/apmtraces/get_log.py +356 -0
- pulumi_oci/apmtraces/get_scheduled_queries.py +163 -0
- pulumi_oci/apmtraces/get_scheduled_query.py +368 -0
- pulumi_oci/apmtraces/get_trace.py +4 -4
- pulumi_oci/apmtraces/outputs.py +971 -0
- pulumi_oci/apmtraces/scheduled_query.py +925 -0
- pulumi_oci/autoscaling/_inputs.py +177 -13
- pulumi_oci/autoscaling/auto_scaling_configuration.py +12 -0
- pulumi_oci/autoscaling/outputs.py +269 -23
- pulumi_oci/core/_inputs.py +184 -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/get_ipv6.py +15 -1
- pulumi_oci/core/ipv6.py +49 -0
- pulumi_oci/core/outputs.py +376 -0
- pulumi_oci/database/__init__.py +3 -0
- pulumi_oci/database/_inputs.py +396 -19
- pulumi_oci/database/autonomous_container_database.py +94 -0
- pulumi_oci/database/autonomous_container_database_add_standby.py +28 -0
- pulumi_oci/database/autonomous_database.py +578 -568
- pulumi_oci/database/autonomous_database_saas_admin_user.py +43 -60
- 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_autonomous_container_database.py +29 -1
- pulumi_oci/database/get_autonomous_database.py +65 -1
- pulumi_oci/database/get_autonomous_databases.py +6 -1
- 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/get_pluggable_database_snapshot.py +253 -0
- pulumi_oci/database/get_pluggable_database_snapshots.py +235 -0
- pulumi_oci/database/outputs.py +1045 -83
- pulumi_oci/database/pluggable_database.py +0 -14
- pulumi_oci/database/pluggable_database_snapshot.py +539 -0
- pulumi_oci/databasemanagement/__init__.py +37 -0
- pulumi_oci/databasemanagement/_inputs.py +9516 -3414
- pulumi_oci/databasemanagement/cloud_asm.py +791 -0
- pulumi_oci/databasemanagement/cloud_asm_instance.py +686 -0
- pulumi_oci/databasemanagement/cloud_cluster.py +847 -0
- pulumi_oci/databasemanagement/cloud_cluster_instance.py +789 -0
- pulumi_oci/databasemanagement/cloud_db_home.py +630 -0
- pulumi_oci/databasemanagement/cloud_db_node.py +761 -0
- pulumi_oci/databasemanagement/cloud_db_system.py +789 -0
- pulumi_oci/databasemanagement/cloud_db_system_cloud_database_managements_management.py +354 -0
- pulumi_oci/databasemanagement/cloud_db_system_cloud_stack_monitorings_management.py +354 -0
- pulumi_oci/databasemanagement/cloud_db_system_connector.py +761 -0
- pulumi_oci/databasemanagement/cloud_db_system_discovery.py +754 -0
- pulumi_oci/databasemanagement/cloud_listener.py +1043 -0
- pulumi_oci/databasemanagement/get_cloud_asm.py +380 -0
- pulumi_oci/databasemanagement/get_cloud_asm_configuration.py +147 -0
- pulumi_oci/databasemanagement/get_cloud_asm_disk_groups.py +163 -0
- pulumi_oci/databasemanagement/get_cloud_asm_instance.py +337 -0
- pulumi_oci/databasemanagement/get_cloud_asm_instances.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_asm_users.py +163 -0
- pulumi_oci/databasemanagement/get_cloud_asms.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_cluster.py +408 -0
- pulumi_oci/databasemanagement/get_cloud_cluster_instance.py +379 -0
- pulumi_oci/databasemanagement/get_cloud_cluster_instances.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_clusters.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_databases.py +188 -0
- pulumi_oci/databasemanagement/get_cloud_db_home.py +309 -0
- pulumi_oci/databasemanagement/get_cloud_db_homes.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_db_node.py +365 -0
- pulumi_oci/databasemanagement/get_cloud_db_nodes.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_db_system.py +352 -0
- pulumi_oci/databasemanagement/get_cloud_db_system_connector.py +338 -0
- pulumi_oci/databasemanagement/get_cloud_db_system_connectors.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_db_system_discoveries.py +169 -0
- pulumi_oci/databasemanagement/get_cloud_db_system_discovery.py +335 -0
- pulumi_oci/databasemanagement/get_cloud_db_systems.py +235 -0
- pulumi_oci/databasemanagement/get_cloud_listener.py +506 -0
- pulumi_oci/databasemanagement/get_cloud_listener_services.py +187 -0
- pulumi_oci/databasemanagement/get_cloud_listeners.py +191 -0
- pulumi_oci/databasemanagement/get_managed_database.py +2 -2
- pulumi_oci/databasemanagement/get_managed_database_group.py +2 -2
- pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +6 -6
- pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +5 -5
- pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +2 -2
- pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +2 -2
- pulumi_oci/databasemanagement/outputs.py +18049 -4222
- 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_finding_analytics.py +22 -1
- pulumi_oci/datasafe/get_security_assessment_findings.py +75 -8
- 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 +70 -4
- 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 +7975 -1013
- 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/datascience/__init__.py +10 -0
- pulumi_oci/datascience/_inputs.py +6760 -2206
- pulumi_oci/datascience/get_job.py +15 -1
- pulumi_oci/datascience/get_job_run.py +44 -2
- pulumi_oci/datascience/get_model_deployment_model_states.py +251 -0
- pulumi_oci/datascience/get_model_group.py +405 -0
- pulumi_oci/datascience/get_model_group_artifact_content.py +132 -0
- pulumi_oci/datascience/get_model_group_models.py +240 -0
- pulumi_oci/datascience/get_model_group_version_histories.py +243 -0
- pulumi_oci/{aianomalydetection/get_detection_model.py → datascience/get_model_group_version_history.py} +73 -74
- pulumi_oci/datascience/get_model_groups.py +265 -0
- pulumi_oci/datascience/get_pipeline_run.py +15 -1
- pulumi_oci/datascience/job.py +81 -154
- pulumi_oci/datascience/job_run.py +250 -4
- pulumi_oci/datascience/model_group.py +1111 -0
- pulumi_oci/datascience/model_group_artifact.py +369 -0
- pulumi_oci/{aianomalydetection/model.py → datascience/model_group_version_history.py} +172 -187
- pulumi_oci/datascience/notebook_session.py +4 -0
- pulumi_oci/datascience/outputs.py +17168 -8021
- pulumi_oci/datascience/pipeline_run.py +87 -0
- 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/_inputs.py +3 -3
- pulumi_oci/goldengate/connection.py +175 -56
- pulumi_oci/goldengate/deployment.py +94 -0
- pulumi_oci/goldengate/get_connection.py +20 -4
- pulumi_oci/goldengate/get_deployment.py +29 -1
- pulumi_oci/goldengate/get_deployments.py +23 -1
- pulumi_oci/goldengate/outputs.py +62 -10
- pulumi_oci/managementagent/__init__.py +4 -0
- pulumi_oci/managementagent/_inputs.py +129 -0
- pulumi_oci/managementagent/get_management_agent.py +26 -1
- pulumi_oci/managementagent/get_management_agent_install_key.py +43 -1
- pulumi_oci/managementagent/get_management_agent_named_credentials_metadata.py +147 -0
- pulumi_oci/managementagent/get_named_credential.py +268 -0
- pulumi_oci/managementagent/get_named_credentials.py +221 -0
- pulumi_oci/managementagent/management_agent.py +48 -0
- pulumi_oci/managementagent/management_agent_install_key.py +84 -0
- pulumi_oci/managementagent/named_credential.py +706 -0
- pulumi_oci/managementagent/outputs.py +515 -0
- pulumi_oci/managementdashboard/management_dashboards_import.py +178 -20
- pulumi_oci/oci/__init__.py +12 -0
- pulumi_oci/oci/_inputs.py +566 -0
- pulumi_oci/{aianomalydetection/project.py → oci/api_platform_api_platform_instance.py} +204 -118
- pulumi_oci/oci/get_api_platform_api_platform_instance.py +282 -0
- pulumi_oci/oci/get_api_platform_api_platform_instances.py +199 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster.py +380 -0
- pulumi_oci/{aianomalydetection/get_ai_private_endpoint.py → oci/get_managed_kafka_kafka_cluster_config.py} +63 -90
- 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/{aianomalydetection/ai_private_endpoint.py → oci/managed_kafka_kafka_cluster_config.py} +138 -232
- pulumi_oci/oci/managed_kafka_kafka_cluster_superusers_management.py +352 -0
- pulumi_oci/oci/outputs.py +1540 -164
- pulumi_oci/opsi/_inputs.py +1001 -149
- pulumi_oci/opsi/database_insight.py +22 -3
- pulumi_oci/opsi/exadata_insight.py +86 -6
- pulumi_oci/opsi/outputs.py +1438 -178
- pulumi_oci/psql/configuration.py +109 -19
- pulumi_oci/psql/db_system.py +7 -7
- pulumi_oci/psql/get_configuration.py +30 -2
- pulumi_oci/psql/get_configurations.py +49 -5
- pulumi_oci/psql/get_db_system.py +1 -1
- pulumi_oci/psql/get_default_configuration.py +30 -4
- pulumi_oci/psql/get_default_configurations.py +49 -5
- pulumi_oci/psql/outputs.py +47 -14
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/__init__.py +6 -0
- pulumi_oci/redis/_inputs.py +217 -0
- pulumi_oci/{aianomalydetection/get_detection_data_asset.py → redis/get_oci_cache_config_set.py} +74 -74
- pulumi_oci/redis/get_oci_cache_config_sets.py +221 -0
- pulumi_oci/redis/get_oci_cache_default_config_set.py +217 -0
- pulumi_oci/redis/get_oci_cache_default_config_sets.py +218 -0
- pulumi_oci/redis/get_redis_cluster.py +15 -1
- pulumi_oci/{aianomalydetection/data_asset.py → redis/oci_cache_config_set.py} +190 -254
- pulumi_oci/redis/oci_cache_config_setlist_associated_oci_cache_cluster.py +240 -0
- pulumi_oci/redis/outputs.py +713 -0
- pulumi_oci/redis/redis_cluster.py +49 -0
- pulumi_oci/vault/_inputs.py +198 -0
- pulumi_oci/vault/get_secret.py +43 -1
- pulumi_oci/vault/outputs.py +434 -0
- pulumi_oci/vault/secret.py +103 -0
- {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0.dist-info}/METADATA +1 -1
- {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0.dist-info}/RECORD +302 -218
- pulumi_oci/aianomalydetection/__init__.py +0 -25
- pulumi_oci/aianomalydetection/_inputs.py +0 -1742
- pulumi_oci/aianomalydetection/detect_anomaly_job.py +0 -739
- pulumi_oci/aianomalydetection/get_ai_private_endpoints.py +0 -199
- pulumi_oci/aianomalydetection/get_detect_anomaly_job.py +0 -338
- pulumi_oci/aianomalydetection/get_detect_anomaly_jobs.py +0 -254
- pulumi_oci/aianomalydetection/get_detection_data_assets.py +0 -213
- pulumi_oci/aianomalydetection/get_detection_models.py +0 -213
- pulumi_oci/aianomalydetection/get_detection_project.py +0 -239
- pulumi_oci/aianomalydetection/get_detection_projects.py +0 -191
- pulumi_oci/aianomalydetection/outputs.py +0 -3699
- {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,386 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import builtins as _builtins
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
from . import outputs
|
17
|
+
from ._inputs import *
|
18
|
+
|
19
|
+
__all__ = [
|
20
|
+
'GetUnifiedAuditPoliciesResult',
|
21
|
+
'AwaitableGetUnifiedAuditPoliciesResult',
|
22
|
+
'get_unified_audit_policies',
|
23
|
+
'get_unified_audit_policies_output',
|
24
|
+
]
|
25
|
+
|
26
|
+
@pulumi.output_type
|
27
|
+
class GetUnifiedAuditPoliciesResult:
|
28
|
+
"""
|
29
|
+
A collection of values returned by getUnifiedAuditPolicies.
|
30
|
+
"""
|
31
|
+
def __init__(__self__, access_level=None, compartment_id=None, compartment_id_in_subtree=None, display_name=None, filters=None, id=None, is_seeded=None, security_policy_id=None, state=None, time_created_greater_than_or_equal_to=None, time_created_less_than=None, unified_audit_policy_collections=None, unified_audit_policy_definition_id=None, unified_audit_policy_id=None):
|
32
|
+
if access_level and not isinstance(access_level, str):
|
33
|
+
raise TypeError("Expected argument 'access_level' to be a str")
|
34
|
+
pulumi.set(__self__, "access_level", access_level)
|
35
|
+
if compartment_id and not isinstance(compartment_id, str):
|
36
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
37
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
38
|
+
if compartment_id_in_subtree and not isinstance(compartment_id_in_subtree, bool):
|
39
|
+
raise TypeError("Expected argument 'compartment_id_in_subtree' to be a bool")
|
40
|
+
pulumi.set(__self__, "compartment_id_in_subtree", compartment_id_in_subtree)
|
41
|
+
if display_name and not isinstance(display_name, str):
|
42
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
43
|
+
pulumi.set(__self__, "display_name", display_name)
|
44
|
+
if filters and not isinstance(filters, list):
|
45
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
46
|
+
pulumi.set(__self__, "filters", filters)
|
47
|
+
if id and not isinstance(id, str):
|
48
|
+
raise TypeError("Expected argument 'id' to be a str")
|
49
|
+
pulumi.set(__self__, "id", id)
|
50
|
+
if is_seeded and not isinstance(is_seeded, bool):
|
51
|
+
raise TypeError("Expected argument 'is_seeded' to be a bool")
|
52
|
+
pulumi.set(__self__, "is_seeded", is_seeded)
|
53
|
+
if security_policy_id and not isinstance(security_policy_id, str):
|
54
|
+
raise TypeError("Expected argument 'security_policy_id' to be a str")
|
55
|
+
pulumi.set(__self__, "security_policy_id", security_policy_id)
|
56
|
+
if state and not isinstance(state, str):
|
57
|
+
raise TypeError("Expected argument 'state' to be a str")
|
58
|
+
pulumi.set(__self__, "state", state)
|
59
|
+
if time_created_greater_than_or_equal_to and not isinstance(time_created_greater_than_or_equal_to, str):
|
60
|
+
raise TypeError("Expected argument 'time_created_greater_than_or_equal_to' to be a str")
|
61
|
+
pulumi.set(__self__, "time_created_greater_than_or_equal_to", time_created_greater_than_or_equal_to)
|
62
|
+
if time_created_less_than and not isinstance(time_created_less_than, str):
|
63
|
+
raise TypeError("Expected argument 'time_created_less_than' to be a str")
|
64
|
+
pulumi.set(__self__, "time_created_less_than", time_created_less_than)
|
65
|
+
if unified_audit_policy_collections and not isinstance(unified_audit_policy_collections, list):
|
66
|
+
raise TypeError("Expected argument 'unified_audit_policy_collections' to be a list")
|
67
|
+
pulumi.set(__self__, "unified_audit_policy_collections", unified_audit_policy_collections)
|
68
|
+
if unified_audit_policy_definition_id and not isinstance(unified_audit_policy_definition_id, str):
|
69
|
+
raise TypeError("Expected argument 'unified_audit_policy_definition_id' to be a str")
|
70
|
+
pulumi.set(__self__, "unified_audit_policy_definition_id", unified_audit_policy_definition_id)
|
71
|
+
if unified_audit_policy_id and not isinstance(unified_audit_policy_id, str):
|
72
|
+
raise TypeError("Expected argument 'unified_audit_policy_id' to be a str")
|
73
|
+
pulumi.set(__self__, "unified_audit_policy_id", unified_audit_policy_id)
|
74
|
+
|
75
|
+
@_builtins.property
|
76
|
+
@pulumi.getter(name="accessLevel")
|
77
|
+
def access_level(self) -> Optional[_builtins.str]:
|
78
|
+
return pulumi.get(self, "access_level")
|
79
|
+
|
80
|
+
@_builtins.property
|
81
|
+
@pulumi.getter(name="compartmentId")
|
82
|
+
def compartment_id(self) -> _builtins.str:
|
83
|
+
"""
|
84
|
+
The OCID of the compartment containing the unified audit policy.
|
85
|
+
"""
|
86
|
+
return pulumi.get(self, "compartment_id")
|
87
|
+
|
88
|
+
@_builtins.property
|
89
|
+
@pulumi.getter(name="compartmentIdInSubtree")
|
90
|
+
def compartment_id_in_subtree(self) -> Optional[_builtins.bool]:
|
91
|
+
return pulumi.get(self, "compartment_id_in_subtree")
|
92
|
+
|
93
|
+
@_builtins.property
|
94
|
+
@pulumi.getter(name="displayName")
|
95
|
+
def display_name(self) -> Optional[_builtins.str]:
|
96
|
+
"""
|
97
|
+
The display name of the unified audit policy.
|
98
|
+
"""
|
99
|
+
return pulumi.get(self, "display_name")
|
100
|
+
|
101
|
+
@_builtins.property
|
102
|
+
@pulumi.getter
|
103
|
+
def filters(self) -> Optional[Sequence['outputs.GetUnifiedAuditPoliciesFilterResult']]:
|
104
|
+
return pulumi.get(self, "filters")
|
105
|
+
|
106
|
+
@_builtins.property
|
107
|
+
@pulumi.getter
|
108
|
+
def id(self) -> _builtins.str:
|
109
|
+
"""
|
110
|
+
The provider-assigned unique ID for this managed resource.
|
111
|
+
"""
|
112
|
+
return pulumi.get(self, "id")
|
113
|
+
|
114
|
+
@_builtins.property
|
115
|
+
@pulumi.getter(name="isSeeded")
|
116
|
+
def is_seeded(self) -> Optional[_builtins.bool]:
|
117
|
+
"""
|
118
|
+
Indicates whether the unified audit policy is seeded or not.
|
119
|
+
"""
|
120
|
+
return pulumi.get(self, "is_seeded")
|
121
|
+
|
122
|
+
@_builtins.property
|
123
|
+
@pulumi.getter(name="securityPolicyId")
|
124
|
+
def security_policy_id(self) -> Optional[_builtins.str]:
|
125
|
+
"""
|
126
|
+
The OCID of the security policy corresponding to the unified audit policy.
|
127
|
+
"""
|
128
|
+
return pulumi.get(self, "security_policy_id")
|
129
|
+
|
130
|
+
@_builtins.property
|
131
|
+
@pulumi.getter
|
132
|
+
def state(self) -> Optional[_builtins.str]:
|
133
|
+
"""
|
134
|
+
The current state of the unified audit policy.
|
135
|
+
"""
|
136
|
+
return pulumi.get(self, "state")
|
137
|
+
|
138
|
+
@_builtins.property
|
139
|
+
@pulumi.getter(name="timeCreatedGreaterThanOrEqualTo")
|
140
|
+
def time_created_greater_than_or_equal_to(self) -> Optional[_builtins.str]:
|
141
|
+
return pulumi.get(self, "time_created_greater_than_or_equal_to")
|
142
|
+
|
143
|
+
@_builtins.property
|
144
|
+
@pulumi.getter(name="timeCreatedLessThan")
|
145
|
+
def time_created_less_than(self) -> Optional[_builtins.str]:
|
146
|
+
return pulumi.get(self, "time_created_less_than")
|
147
|
+
|
148
|
+
@_builtins.property
|
149
|
+
@pulumi.getter(name="unifiedAuditPolicyCollections")
|
150
|
+
def unified_audit_policy_collections(self) -> Sequence['outputs.GetUnifiedAuditPoliciesUnifiedAuditPolicyCollectionResult']:
|
151
|
+
"""
|
152
|
+
The list of unified_audit_policy_collection.
|
153
|
+
"""
|
154
|
+
return pulumi.get(self, "unified_audit_policy_collections")
|
155
|
+
|
156
|
+
@_builtins.property
|
157
|
+
@pulumi.getter(name="unifiedAuditPolicyDefinitionId")
|
158
|
+
def unified_audit_policy_definition_id(self) -> Optional[_builtins.str]:
|
159
|
+
"""
|
160
|
+
The OCID of the associated unified audit policy definition.
|
161
|
+
"""
|
162
|
+
return pulumi.get(self, "unified_audit_policy_definition_id")
|
163
|
+
|
164
|
+
@_builtins.property
|
165
|
+
@pulumi.getter(name="unifiedAuditPolicyId")
|
166
|
+
def unified_audit_policy_id(self) -> Optional[_builtins.str]:
|
167
|
+
return pulumi.get(self, "unified_audit_policy_id")
|
168
|
+
|
169
|
+
|
170
|
+
class AwaitableGetUnifiedAuditPoliciesResult(GetUnifiedAuditPoliciesResult):
|
171
|
+
# pylint: disable=using-constant-test
|
172
|
+
def __await__(self):
|
173
|
+
if False:
|
174
|
+
yield self
|
175
|
+
return GetUnifiedAuditPoliciesResult(
|
176
|
+
access_level=self.access_level,
|
177
|
+
compartment_id=self.compartment_id,
|
178
|
+
compartment_id_in_subtree=self.compartment_id_in_subtree,
|
179
|
+
display_name=self.display_name,
|
180
|
+
filters=self.filters,
|
181
|
+
id=self.id,
|
182
|
+
is_seeded=self.is_seeded,
|
183
|
+
security_policy_id=self.security_policy_id,
|
184
|
+
state=self.state,
|
185
|
+
time_created_greater_than_or_equal_to=self.time_created_greater_than_or_equal_to,
|
186
|
+
time_created_less_than=self.time_created_less_than,
|
187
|
+
unified_audit_policy_collections=self.unified_audit_policy_collections,
|
188
|
+
unified_audit_policy_definition_id=self.unified_audit_policy_definition_id,
|
189
|
+
unified_audit_policy_id=self.unified_audit_policy_id)
|
190
|
+
|
191
|
+
|
192
|
+
def get_unified_audit_policies(access_level: Optional[_builtins.str] = None,
|
193
|
+
compartment_id: Optional[_builtins.str] = None,
|
194
|
+
compartment_id_in_subtree: Optional[_builtins.bool] = None,
|
195
|
+
display_name: Optional[_builtins.str] = None,
|
196
|
+
filters: Optional[Sequence[Union['GetUnifiedAuditPoliciesFilterArgs', 'GetUnifiedAuditPoliciesFilterArgsDict']]] = None,
|
197
|
+
is_seeded: Optional[_builtins.bool] = None,
|
198
|
+
security_policy_id: Optional[_builtins.str] = None,
|
199
|
+
state: Optional[_builtins.str] = None,
|
200
|
+
time_created_greater_than_or_equal_to: Optional[_builtins.str] = None,
|
201
|
+
time_created_less_than: Optional[_builtins.str] = None,
|
202
|
+
unified_audit_policy_definition_id: Optional[_builtins.str] = None,
|
203
|
+
unified_audit_policy_id: Optional[_builtins.str] = None,
|
204
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetUnifiedAuditPoliciesResult:
|
205
|
+
"""
|
206
|
+
This data source provides the list of Unified Audit Policies in Oracle Cloud Infrastructure Data Safe service.
|
207
|
+
|
208
|
+
Retrieves a list of all Unified Audit policies.
|
209
|
+
|
210
|
+
The ListUnifiedAuditPolicies operation returns only the Unified Audit policies in the specified `compartmentId`.
|
211
|
+
|
212
|
+
The parameter `accessLevel` specifies whether to return only those compartments for which the
|
213
|
+
requester has INSPECT permissions on at least one resource directly
|
214
|
+
or indirectly (ACCESSIBLE) (the resource can be in a sub-compartment) or to return Not Authorized if
|
215
|
+
Principal doesn't have access to even one of the child compartments. This is valid only when
|
216
|
+
`compartmentIdInSubtree` is set to `true`.
|
217
|
+
|
218
|
+
The parameter `compartmentIdInSubtree` applies when you perform ListUnifiedAuditPolicies on the
|
219
|
+
`compartmentId` passed and when it is set to true, the entire hierarchy of compartments can be returned.
|
220
|
+
To get a full list of all compartments and sub-compartments in the tenancy (root compartment),
|
221
|
+
set the parameter `compartmentIdInSubtree` to true and `accessLevel` to ACCESSIBLE.
|
222
|
+
|
223
|
+
## Example Usage
|
224
|
+
|
225
|
+
```python
|
226
|
+
import pulumi
|
227
|
+
import pulumi_oci as oci
|
228
|
+
|
229
|
+
test_unified_audit_policies = oci.DataSafe.get_unified_audit_policies(compartment_id=compartment_id,
|
230
|
+
access_level=unified_audit_policy_access_level,
|
231
|
+
compartment_id_in_subtree=unified_audit_policy_compartment_id_in_subtree,
|
232
|
+
display_name=unified_audit_policy_display_name,
|
233
|
+
is_seeded=unified_audit_policy_is_seeded,
|
234
|
+
security_policy_id=test_security_policy["id"],
|
235
|
+
state=unified_audit_policy_state,
|
236
|
+
time_created_greater_than_or_equal_to=unified_audit_policy_time_created_greater_than_or_equal_to,
|
237
|
+
time_created_less_than=unified_audit_policy_time_created_less_than,
|
238
|
+
unified_audit_policy_definition_id=test_unified_audit_policy_definition["id"],
|
239
|
+
unified_audit_policy_id=test_unified_audit_policy["id"])
|
240
|
+
```
|
241
|
+
|
242
|
+
|
243
|
+
: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.
|
244
|
+
:param _builtins.str compartment_id: A filter to return only resources that match the specified compartment OCID.
|
245
|
+
: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.
|
246
|
+
:param _builtins.str display_name: A filter to return only resources that match the specified display name.
|
247
|
+
:param _builtins.bool is_seeded: A boolean flag indicating to list seeded unified audit policies. Set this parameter to get list of seeded unified audit policies.
|
248
|
+
:param _builtins.str security_policy_id: An optional filter to return only resources that match the specified OCID of the security policy resource.
|
249
|
+
:param _builtins.str state: The current state of the Unified Audit policy.
|
250
|
+
: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.
|
251
|
+
|
252
|
+
**Example:** 2016-12-19T16:39:57.600Z
|
253
|
+
:param _builtins.str time_created_less_than: Search for resources that were created before a specific date. Specifying this parameter corresponding `timeCreatedLessThan` parameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.
|
254
|
+
|
255
|
+
**Example:** 2016-12-19T16:39:57.600Z
|
256
|
+
:param _builtins.str unified_audit_policy_definition_id: An optional filter to return only resources that match the specified OCID of the unified audit policy definition resource.
|
257
|
+
:param _builtins.str unified_audit_policy_id: An optional filter to return only resources that match the specified OCID of the Unified Audit policy resource.
|
258
|
+
"""
|
259
|
+
__args__ = dict()
|
260
|
+
__args__['accessLevel'] = access_level
|
261
|
+
__args__['compartmentId'] = compartment_id
|
262
|
+
__args__['compartmentIdInSubtree'] = compartment_id_in_subtree
|
263
|
+
__args__['displayName'] = display_name
|
264
|
+
__args__['filters'] = filters
|
265
|
+
__args__['isSeeded'] = is_seeded
|
266
|
+
__args__['securityPolicyId'] = security_policy_id
|
267
|
+
__args__['state'] = state
|
268
|
+
__args__['timeCreatedGreaterThanOrEqualTo'] = time_created_greater_than_or_equal_to
|
269
|
+
__args__['timeCreatedLessThan'] = time_created_less_than
|
270
|
+
__args__['unifiedAuditPolicyDefinitionId'] = unified_audit_policy_definition_id
|
271
|
+
__args__['unifiedAuditPolicyId'] = unified_audit_policy_id
|
272
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
273
|
+
__ret__ = pulumi.runtime.invoke('oci:DataSafe/getUnifiedAuditPolicies:getUnifiedAuditPolicies', __args__, opts=opts, typ=GetUnifiedAuditPoliciesResult).value
|
274
|
+
|
275
|
+
return AwaitableGetUnifiedAuditPoliciesResult(
|
276
|
+
access_level=pulumi.get(__ret__, 'access_level'),
|
277
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
278
|
+
compartment_id_in_subtree=pulumi.get(__ret__, 'compartment_id_in_subtree'),
|
279
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
280
|
+
filters=pulumi.get(__ret__, 'filters'),
|
281
|
+
id=pulumi.get(__ret__, 'id'),
|
282
|
+
is_seeded=pulumi.get(__ret__, 'is_seeded'),
|
283
|
+
security_policy_id=pulumi.get(__ret__, 'security_policy_id'),
|
284
|
+
state=pulumi.get(__ret__, 'state'),
|
285
|
+
time_created_greater_than_or_equal_to=pulumi.get(__ret__, 'time_created_greater_than_or_equal_to'),
|
286
|
+
time_created_less_than=pulumi.get(__ret__, 'time_created_less_than'),
|
287
|
+
unified_audit_policy_collections=pulumi.get(__ret__, 'unified_audit_policy_collections'),
|
288
|
+
unified_audit_policy_definition_id=pulumi.get(__ret__, 'unified_audit_policy_definition_id'),
|
289
|
+
unified_audit_policy_id=pulumi.get(__ret__, 'unified_audit_policy_id'))
|
290
|
+
def get_unified_audit_policies_output(access_level: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
291
|
+
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
292
|
+
compartment_id_in_subtree: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
|
293
|
+
display_name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
294
|
+
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetUnifiedAuditPoliciesFilterArgs', 'GetUnifiedAuditPoliciesFilterArgsDict']]]]] = None,
|
295
|
+
is_seeded: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
|
296
|
+
security_policy_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
297
|
+
state: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
298
|
+
time_created_greater_than_or_equal_to: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
299
|
+
time_created_less_than: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
300
|
+
unified_audit_policy_definition_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
301
|
+
unified_audit_policy_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
302
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetUnifiedAuditPoliciesResult]:
|
303
|
+
"""
|
304
|
+
This data source provides the list of Unified Audit Policies in Oracle Cloud Infrastructure Data Safe service.
|
305
|
+
|
306
|
+
Retrieves a list of all Unified Audit policies.
|
307
|
+
|
308
|
+
The ListUnifiedAuditPolicies operation returns only the Unified Audit policies in the specified `compartmentId`.
|
309
|
+
|
310
|
+
The parameter `accessLevel` specifies whether to return only those compartments for which the
|
311
|
+
requester has INSPECT permissions on at least one resource directly
|
312
|
+
or indirectly (ACCESSIBLE) (the resource can be in a sub-compartment) or to return Not Authorized if
|
313
|
+
Principal doesn't have access to even one of the child compartments. This is valid only when
|
314
|
+
`compartmentIdInSubtree` is set to `true`.
|
315
|
+
|
316
|
+
The parameter `compartmentIdInSubtree` applies when you perform ListUnifiedAuditPolicies on the
|
317
|
+
`compartmentId` passed and when it is set to true, the entire hierarchy of compartments can be returned.
|
318
|
+
To get a full list of all compartments and sub-compartments in the tenancy (root compartment),
|
319
|
+
set the parameter `compartmentIdInSubtree` to true and `accessLevel` to ACCESSIBLE.
|
320
|
+
|
321
|
+
## Example Usage
|
322
|
+
|
323
|
+
```python
|
324
|
+
import pulumi
|
325
|
+
import pulumi_oci as oci
|
326
|
+
|
327
|
+
test_unified_audit_policies = oci.DataSafe.get_unified_audit_policies(compartment_id=compartment_id,
|
328
|
+
access_level=unified_audit_policy_access_level,
|
329
|
+
compartment_id_in_subtree=unified_audit_policy_compartment_id_in_subtree,
|
330
|
+
display_name=unified_audit_policy_display_name,
|
331
|
+
is_seeded=unified_audit_policy_is_seeded,
|
332
|
+
security_policy_id=test_security_policy["id"],
|
333
|
+
state=unified_audit_policy_state,
|
334
|
+
time_created_greater_than_or_equal_to=unified_audit_policy_time_created_greater_than_or_equal_to,
|
335
|
+
time_created_less_than=unified_audit_policy_time_created_less_than,
|
336
|
+
unified_audit_policy_definition_id=test_unified_audit_policy_definition["id"],
|
337
|
+
unified_audit_policy_id=test_unified_audit_policy["id"])
|
338
|
+
```
|
339
|
+
|
340
|
+
|
341
|
+
: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.
|
342
|
+
:param _builtins.str compartment_id: A filter to return only resources that match the specified compartment OCID.
|
343
|
+
: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.
|
344
|
+
:param _builtins.str display_name: A filter to return only resources that match the specified display name.
|
345
|
+
:param _builtins.bool is_seeded: A boolean flag indicating to list seeded unified audit policies. Set this parameter to get list of seeded unified audit policies.
|
346
|
+
:param _builtins.str security_policy_id: An optional filter to return only resources that match the specified OCID of the security policy resource.
|
347
|
+
:param _builtins.str state: The current state of the Unified Audit policy.
|
348
|
+
: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.
|
349
|
+
|
350
|
+
**Example:** 2016-12-19T16:39:57.600Z
|
351
|
+
:param _builtins.str time_created_less_than: Search for resources that were created before a specific date. Specifying this parameter corresponding `timeCreatedLessThan` parameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.
|
352
|
+
|
353
|
+
**Example:** 2016-12-19T16:39:57.600Z
|
354
|
+
:param _builtins.str unified_audit_policy_definition_id: An optional filter to return only resources that match the specified OCID of the unified audit policy definition resource.
|
355
|
+
:param _builtins.str unified_audit_policy_id: An optional filter to return only resources that match the specified OCID of the Unified Audit policy resource.
|
356
|
+
"""
|
357
|
+
__args__ = dict()
|
358
|
+
__args__['accessLevel'] = access_level
|
359
|
+
__args__['compartmentId'] = compartment_id
|
360
|
+
__args__['compartmentIdInSubtree'] = compartment_id_in_subtree
|
361
|
+
__args__['displayName'] = display_name
|
362
|
+
__args__['filters'] = filters
|
363
|
+
__args__['isSeeded'] = is_seeded
|
364
|
+
__args__['securityPolicyId'] = security_policy_id
|
365
|
+
__args__['state'] = state
|
366
|
+
__args__['timeCreatedGreaterThanOrEqualTo'] = time_created_greater_than_or_equal_to
|
367
|
+
__args__['timeCreatedLessThan'] = time_created_less_than
|
368
|
+
__args__['unifiedAuditPolicyDefinitionId'] = unified_audit_policy_definition_id
|
369
|
+
__args__['unifiedAuditPolicyId'] = unified_audit_policy_id
|
370
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
371
|
+
__ret__ = pulumi.runtime.invoke_output('oci:DataSafe/getUnifiedAuditPolicies:getUnifiedAuditPolicies', __args__, opts=opts, typ=GetUnifiedAuditPoliciesResult)
|
372
|
+
return __ret__.apply(lambda __response__: GetUnifiedAuditPoliciesResult(
|
373
|
+
access_level=pulumi.get(__response__, 'access_level'),
|
374
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
375
|
+
compartment_id_in_subtree=pulumi.get(__response__, 'compartment_id_in_subtree'),
|
376
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
377
|
+
filters=pulumi.get(__response__, 'filters'),
|
378
|
+
id=pulumi.get(__response__, 'id'),
|
379
|
+
is_seeded=pulumi.get(__response__, 'is_seeded'),
|
380
|
+
security_policy_id=pulumi.get(__response__, 'security_policy_id'),
|
381
|
+
state=pulumi.get(__response__, 'state'),
|
382
|
+
time_created_greater_than_or_equal_to=pulumi.get(__response__, 'time_created_greater_than_or_equal_to'),
|
383
|
+
time_created_less_than=pulumi.get(__response__, 'time_created_less_than'),
|
384
|
+
unified_audit_policy_collections=pulumi.get(__response__, 'unified_audit_policy_collections'),
|
385
|
+
unified_audit_policy_definition_id=pulumi.get(__response__, 'unified_audit_policy_definition_id'),
|
386
|
+
unified_audit_policy_id=pulumi.get(__response__, 'unified_audit_policy_id')))
|