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
@@ -19,46 +19,98 @@ __all__ = ['SecurityPolicyDeploymentManagementArgs', 'SecurityPolicyDeploymentMa
|
|
19
19
|
@pulumi.input_type
|
20
20
|
class SecurityPolicyDeploymentManagementArgs:
|
21
21
|
def __init__(__self__, *,
|
22
|
-
compartment_id:
|
22
|
+
compartment_id: pulumi.Input[_builtins.str],
|
23
|
+
security_policy_id: pulumi.Input[_builtins.str],
|
24
|
+
target_id: pulumi.Input[_builtins.str],
|
25
|
+
target_type: pulumi.Input[_builtins.str],
|
23
26
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
27
|
+
deploy_trigger: Optional[pulumi.Input[_builtins.int]] = None,
|
24
28
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
25
29
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
26
30
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
27
|
-
|
31
|
+
refresh_trigger: Optional[pulumi.Input[_builtins.int]] = None):
|
28
32
|
"""
|
29
33
|
The set of arguments for constructing a SecurityPolicyDeploymentManagement resource.
|
30
|
-
:param pulumi.Input[_builtins.str] compartment_id: (Updatable) The OCID of the compartment
|
34
|
+
:param pulumi.Input[_builtins.str] compartment_id: (Updatable) The OCID of the compartment in which to create the unified audit policy.
|
35
|
+
:param pulumi.Input[_builtins.str] security_policy_id: The OCID of the security policy corresponding to the security policy deployment.
|
36
|
+
:param pulumi.Input[_builtins.str] target_id: The OCID of the target where the security policy is deployed.
|
37
|
+
:param pulumi.Input[_builtins.str] target_type: Indicates whether the security policy deployment is for a target database or a target database group.
|
31
38
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
|
32
|
-
:param pulumi.Input[_builtins.
|
39
|
+
:param pulumi.Input[_builtins.int] deploy_trigger: (Updatable) An optional property when incremented triggers Deploy. Could be set to any integer value.
|
40
|
+
:param pulumi.Input[_builtins.str] description: (Updatable) The description of the security policy.
|
33
41
|
:param pulumi.Input[_builtins.str] display_name: (Updatable) The display name of the security policy deployment. The name does not have to be unique, and it is changeable.
|
34
42
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
|
35
|
-
:param pulumi.Input[_builtins.
|
36
|
-
|
37
|
-
|
38
|
-
|
43
|
+
:param pulumi.Input[_builtins.int] refresh_trigger: (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.
|
44
|
+
|
45
|
+
|
46
|
+
** IMPORTANT **
|
47
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
48
|
+
"""
|
49
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
50
|
+
pulumi.set(__self__, "security_policy_id", security_policy_id)
|
51
|
+
pulumi.set(__self__, "target_id", target_id)
|
52
|
+
pulumi.set(__self__, "target_type", target_type)
|
39
53
|
if defined_tags is not None:
|
40
54
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
55
|
+
if deploy_trigger is not None:
|
56
|
+
pulumi.set(__self__, "deploy_trigger", deploy_trigger)
|
41
57
|
if description is not None:
|
42
58
|
pulumi.set(__self__, "description", description)
|
43
59
|
if display_name is not None:
|
44
60
|
pulumi.set(__self__, "display_name", display_name)
|
45
61
|
if freeform_tags is not None:
|
46
62
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
47
|
-
if
|
48
|
-
pulumi.set(__self__, "
|
63
|
+
if refresh_trigger is not None:
|
64
|
+
pulumi.set(__self__, "refresh_trigger", refresh_trigger)
|
49
65
|
|
50
66
|
@_builtins.property
|
51
67
|
@pulumi.getter(name="compartmentId")
|
52
|
-
def compartment_id(self) ->
|
68
|
+
def compartment_id(self) -> pulumi.Input[_builtins.str]:
|
53
69
|
"""
|
54
|
-
(Updatable) The OCID of the compartment
|
70
|
+
(Updatable) The OCID of the compartment in which to create the unified audit policy.
|
55
71
|
"""
|
56
72
|
return pulumi.get(self, "compartment_id")
|
57
73
|
|
58
74
|
@compartment_id.setter
|
59
|
-
def compartment_id(self, value:
|
75
|
+
def compartment_id(self, value: pulumi.Input[_builtins.str]):
|
60
76
|
pulumi.set(self, "compartment_id", value)
|
61
77
|
|
78
|
+
@_builtins.property
|
79
|
+
@pulumi.getter(name="securityPolicyId")
|
80
|
+
def security_policy_id(self) -> pulumi.Input[_builtins.str]:
|
81
|
+
"""
|
82
|
+
The OCID of the security policy corresponding to the security policy deployment.
|
83
|
+
"""
|
84
|
+
return pulumi.get(self, "security_policy_id")
|
85
|
+
|
86
|
+
@security_policy_id.setter
|
87
|
+
def security_policy_id(self, value: pulumi.Input[_builtins.str]):
|
88
|
+
pulumi.set(self, "security_policy_id", value)
|
89
|
+
|
90
|
+
@_builtins.property
|
91
|
+
@pulumi.getter(name="targetId")
|
92
|
+
def target_id(self) -> pulumi.Input[_builtins.str]:
|
93
|
+
"""
|
94
|
+
The OCID of the target where the security policy is deployed.
|
95
|
+
"""
|
96
|
+
return pulumi.get(self, "target_id")
|
97
|
+
|
98
|
+
@target_id.setter
|
99
|
+
def target_id(self, value: pulumi.Input[_builtins.str]):
|
100
|
+
pulumi.set(self, "target_id", value)
|
101
|
+
|
102
|
+
@_builtins.property
|
103
|
+
@pulumi.getter(name="targetType")
|
104
|
+
def target_type(self) -> pulumi.Input[_builtins.str]:
|
105
|
+
"""
|
106
|
+
Indicates whether the security policy deployment is for a target database or a target database group.
|
107
|
+
"""
|
108
|
+
return pulumi.get(self, "target_type")
|
109
|
+
|
110
|
+
@target_type.setter
|
111
|
+
def target_type(self, value: pulumi.Input[_builtins.str]):
|
112
|
+
pulumi.set(self, "target_type", value)
|
113
|
+
|
62
114
|
@_builtins.property
|
63
115
|
@pulumi.getter(name="definedTags")
|
64
116
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
@@ -71,11 +123,23 @@ class SecurityPolicyDeploymentManagementArgs:
|
|
71
123
|
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
72
124
|
pulumi.set(self, "defined_tags", value)
|
73
125
|
|
126
|
+
@_builtins.property
|
127
|
+
@pulumi.getter(name="deployTrigger")
|
128
|
+
def deploy_trigger(self) -> Optional[pulumi.Input[_builtins.int]]:
|
129
|
+
"""
|
130
|
+
(Updatable) An optional property when incremented triggers Deploy. Could be set to any integer value.
|
131
|
+
"""
|
132
|
+
return pulumi.get(self, "deploy_trigger")
|
133
|
+
|
134
|
+
@deploy_trigger.setter
|
135
|
+
def deploy_trigger(self, value: Optional[pulumi.Input[_builtins.int]]):
|
136
|
+
pulumi.set(self, "deploy_trigger", value)
|
137
|
+
|
74
138
|
@_builtins.property
|
75
139
|
@pulumi.getter
|
76
140
|
def description(self) -> Optional[pulumi.Input[_builtins.str]]:
|
77
141
|
"""
|
78
|
-
(Updatable) The description of the security policy
|
142
|
+
(Updatable) The description of the security policy.
|
79
143
|
"""
|
80
144
|
return pulumi.get(self, "description")
|
81
145
|
|
@@ -108,16 +172,20 @@ class SecurityPolicyDeploymentManagementArgs:
|
|
108
172
|
pulumi.set(self, "freeform_tags", value)
|
109
173
|
|
110
174
|
@_builtins.property
|
111
|
-
@pulumi.getter(name="
|
112
|
-
def
|
175
|
+
@pulumi.getter(name="refreshTrigger")
|
176
|
+
def refresh_trigger(self) -> Optional[pulumi.Input[_builtins.int]]:
|
113
177
|
"""
|
114
|
-
|
178
|
+
(Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.
|
179
|
+
|
180
|
+
|
181
|
+
** IMPORTANT **
|
182
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
115
183
|
"""
|
116
|
-
return pulumi.get(self, "
|
184
|
+
return pulumi.get(self, "refresh_trigger")
|
117
185
|
|
118
|
-
@
|
119
|
-
def
|
120
|
-
pulumi.set(self, "
|
186
|
+
@refresh_trigger.setter
|
187
|
+
def refresh_trigger(self, value: Optional[pulumi.Input[_builtins.int]]):
|
188
|
+
pulumi.set(self, "refresh_trigger", value)
|
121
189
|
|
122
190
|
|
123
191
|
@pulumi.input_type
|
@@ -125,35 +193,49 @@ class _SecurityPolicyDeploymentManagementState:
|
|
125
193
|
def __init__(__self__, *,
|
126
194
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
127
195
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
196
|
+
deploy_trigger: Optional[pulumi.Input[_builtins.int]] = None,
|
128
197
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
129
198
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
130
199
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
131
200
|
lifecycle_details: Optional[pulumi.Input[_builtins.str]] = None,
|
201
|
+
refresh_trigger: Optional[pulumi.Input[_builtins.int]] = None,
|
132
202
|
security_policy_id: Optional[pulumi.Input[_builtins.str]] = None,
|
133
203
|
state: Optional[pulumi.Input[_builtins.str]] = None,
|
134
204
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
135
205
|
target_id: Optional[pulumi.Input[_builtins.str]] = None,
|
206
|
+
target_type: Optional[pulumi.Input[_builtins.str]] = None,
|
136
207
|
time_created: Optional[pulumi.Input[_builtins.str]] = None,
|
208
|
+
time_deployed: Optional[pulumi.Input[_builtins.str]] = None,
|
137
209
|
time_updated: Optional[pulumi.Input[_builtins.str]] = None):
|
138
210
|
"""
|
139
211
|
Input properties used for looking up and filtering SecurityPolicyDeploymentManagement resources.
|
140
|
-
:param pulumi.Input[_builtins.str] compartment_id: (Updatable) The OCID of the compartment
|
212
|
+
:param pulumi.Input[_builtins.str] compartment_id: (Updatable) The OCID of the compartment in which to create the unified audit policy.
|
141
213
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
|
142
|
-
:param pulumi.Input[_builtins.
|
214
|
+
:param pulumi.Input[_builtins.int] deploy_trigger: (Updatable) An optional property when incremented triggers Deploy. Could be set to any integer value.
|
215
|
+
:param pulumi.Input[_builtins.str] description: (Updatable) The description of the security policy.
|
143
216
|
:param pulumi.Input[_builtins.str] display_name: (Updatable) The display name of the security policy deployment. The name does not have to be unique, and it is changeable.
|
144
217
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
|
145
218
|
:param pulumi.Input[_builtins.str] lifecycle_details: Details about the current state of the security policy deployment in Data Safe.
|
219
|
+
:param pulumi.Input[_builtins.int] refresh_trigger: (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.
|
220
|
+
|
221
|
+
|
222
|
+
** IMPORTANT **
|
223
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
146
224
|
:param pulumi.Input[_builtins.str] security_policy_id: The OCID of the security policy corresponding to the security policy deployment.
|
147
225
|
:param pulumi.Input[_builtins.str] state: The current state of the security policy deployment.
|
148
226
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
149
|
-
:param pulumi.Input[_builtins.str] target_id:
|
227
|
+
:param pulumi.Input[_builtins.str] target_id: The OCID of the target where the security policy is deployed.
|
228
|
+
:param pulumi.Input[_builtins.str] target_type: Indicates whether the security policy deployment is for a target database or a target database group.
|
150
229
|
:param pulumi.Input[_builtins.str] time_created: The time that the security policy deployment was created, in the format defined by RFC3339.
|
230
|
+
:param pulumi.Input[_builtins.str] time_deployed: The last date and time the security policy was deployed, in the format defined by RFC3339.
|
151
231
|
:param pulumi.Input[_builtins.str] time_updated: The last date and time the security policy deployment was updated, in the format defined by RFC3339.
|
152
232
|
"""
|
153
233
|
if compartment_id is not None:
|
154
234
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
155
235
|
if defined_tags is not None:
|
156
236
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
237
|
+
if deploy_trigger is not None:
|
238
|
+
pulumi.set(__self__, "deploy_trigger", deploy_trigger)
|
157
239
|
if description is not None:
|
158
240
|
pulumi.set(__self__, "description", description)
|
159
241
|
if display_name is not None:
|
@@ -162,6 +244,8 @@ class _SecurityPolicyDeploymentManagementState:
|
|
162
244
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
163
245
|
if lifecycle_details is not None:
|
164
246
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
247
|
+
if refresh_trigger is not None:
|
248
|
+
pulumi.set(__self__, "refresh_trigger", refresh_trigger)
|
165
249
|
if security_policy_id is not None:
|
166
250
|
pulumi.set(__self__, "security_policy_id", security_policy_id)
|
167
251
|
if state is not None:
|
@@ -170,8 +254,12 @@ class _SecurityPolicyDeploymentManagementState:
|
|
170
254
|
pulumi.set(__self__, "system_tags", system_tags)
|
171
255
|
if target_id is not None:
|
172
256
|
pulumi.set(__self__, "target_id", target_id)
|
257
|
+
if target_type is not None:
|
258
|
+
pulumi.set(__self__, "target_type", target_type)
|
173
259
|
if time_created is not None:
|
174
260
|
pulumi.set(__self__, "time_created", time_created)
|
261
|
+
if time_deployed is not None:
|
262
|
+
pulumi.set(__self__, "time_deployed", time_deployed)
|
175
263
|
if time_updated is not None:
|
176
264
|
pulumi.set(__self__, "time_updated", time_updated)
|
177
265
|
|
@@ -179,7 +267,7 @@ class _SecurityPolicyDeploymentManagementState:
|
|
179
267
|
@pulumi.getter(name="compartmentId")
|
180
268
|
def compartment_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
181
269
|
"""
|
182
|
-
(Updatable) The OCID of the compartment
|
270
|
+
(Updatable) The OCID of the compartment in which to create the unified audit policy.
|
183
271
|
"""
|
184
272
|
return pulumi.get(self, "compartment_id")
|
185
273
|
|
@@ -199,11 +287,23 @@ class _SecurityPolicyDeploymentManagementState:
|
|
199
287
|
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
200
288
|
pulumi.set(self, "defined_tags", value)
|
201
289
|
|
290
|
+
@_builtins.property
|
291
|
+
@pulumi.getter(name="deployTrigger")
|
292
|
+
def deploy_trigger(self) -> Optional[pulumi.Input[_builtins.int]]:
|
293
|
+
"""
|
294
|
+
(Updatable) An optional property when incremented triggers Deploy. Could be set to any integer value.
|
295
|
+
"""
|
296
|
+
return pulumi.get(self, "deploy_trigger")
|
297
|
+
|
298
|
+
@deploy_trigger.setter
|
299
|
+
def deploy_trigger(self, value: Optional[pulumi.Input[_builtins.int]]):
|
300
|
+
pulumi.set(self, "deploy_trigger", value)
|
301
|
+
|
202
302
|
@_builtins.property
|
203
303
|
@pulumi.getter
|
204
304
|
def description(self) -> Optional[pulumi.Input[_builtins.str]]:
|
205
305
|
"""
|
206
|
-
(Updatable) The description of the security policy
|
306
|
+
(Updatable) The description of the security policy.
|
207
307
|
"""
|
208
308
|
return pulumi.get(self, "description")
|
209
309
|
|
@@ -247,6 +347,22 @@ class _SecurityPolicyDeploymentManagementState:
|
|
247
347
|
def lifecycle_details(self, value: Optional[pulumi.Input[_builtins.str]]):
|
248
348
|
pulumi.set(self, "lifecycle_details", value)
|
249
349
|
|
350
|
+
@_builtins.property
|
351
|
+
@pulumi.getter(name="refreshTrigger")
|
352
|
+
def refresh_trigger(self) -> Optional[pulumi.Input[_builtins.int]]:
|
353
|
+
"""
|
354
|
+
(Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.
|
355
|
+
|
356
|
+
|
357
|
+
** IMPORTANT **
|
358
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
359
|
+
"""
|
360
|
+
return pulumi.get(self, "refresh_trigger")
|
361
|
+
|
362
|
+
@refresh_trigger.setter
|
363
|
+
def refresh_trigger(self, value: Optional[pulumi.Input[_builtins.int]]):
|
364
|
+
pulumi.set(self, "refresh_trigger", value)
|
365
|
+
|
250
366
|
@_builtins.property
|
251
367
|
@pulumi.getter(name="securityPolicyId")
|
252
368
|
def security_policy_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -287,7 +403,7 @@ class _SecurityPolicyDeploymentManagementState:
|
|
287
403
|
@pulumi.getter(name="targetId")
|
288
404
|
def target_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
289
405
|
"""
|
290
|
-
|
406
|
+
The OCID of the target where the security policy is deployed.
|
291
407
|
"""
|
292
408
|
return pulumi.get(self, "target_id")
|
293
409
|
|
@@ -295,6 +411,18 @@ class _SecurityPolicyDeploymentManagementState:
|
|
295
411
|
def target_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
296
412
|
pulumi.set(self, "target_id", value)
|
297
413
|
|
414
|
+
@_builtins.property
|
415
|
+
@pulumi.getter(name="targetType")
|
416
|
+
def target_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
417
|
+
"""
|
418
|
+
Indicates whether the security policy deployment is for a target database or a target database group.
|
419
|
+
"""
|
420
|
+
return pulumi.get(self, "target_type")
|
421
|
+
|
422
|
+
@target_type.setter
|
423
|
+
def target_type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
424
|
+
pulumi.set(self, "target_type", value)
|
425
|
+
|
298
426
|
@_builtins.property
|
299
427
|
@pulumi.getter(name="timeCreated")
|
300
428
|
def time_created(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -307,6 +435,18 @@ class _SecurityPolicyDeploymentManagementState:
|
|
307
435
|
def time_created(self, value: Optional[pulumi.Input[_builtins.str]]):
|
308
436
|
pulumi.set(self, "time_created", value)
|
309
437
|
|
438
|
+
@_builtins.property
|
439
|
+
@pulumi.getter(name="timeDeployed")
|
440
|
+
def time_deployed(self) -> Optional[pulumi.Input[_builtins.str]]:
|
441
|
+
"""
|
442
|
+
The last date and time the security policy was deployed, in the format defined by RFC3339.
|
443
|
+
"""
|
444
|
+
return pulumi.get(self, "time_deployed")
|
445
|
+
|
446
|
+
@time_deployed.setter
|
447
|
+
def time_deployed(self, value: Optional[pulumi.Input[_builtins.str]]):
|
448
|
+
pulumi.set(self, "time_deployed", value)
|
449
|
+
|
310
450
|
@_builtins.property
|
311
451
|
@pulumi.getter(name="timeUpdated")
|
312
452
|
def time_updated(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -328,15 +468,19 @@ class SecurityPolicyDeploymentManagement(pulumi.CustomResource):
|
|
328
468
|
opts: Optional[pulumi.ResourceOptions] = None,
|
329
469
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
330
470
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
471
|
+
deploy_trigger: Optional[pulumi.Input[_builtins.int]] = None,
|
331
472
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
332
473
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
333
474
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
475
|
+
refresh_trigger: Optional[pulumi.Input[_builtins.int]] = None,
|
476
|
+
security_policy_id: Optional[pulumi.Input[_builtins.str]] = None,
|
334
477
|
target_id: Optional[pulumi.Input[_builtins.str]] = None,
|
478
|
+
target_type: Optional[pulumi.Input[_builtins.str]] = None,
|
335
479
|
__props__=None):
|
336
480
|
"""
|
337
481
|
This resource provides the Security Policy Deployment Management resource in Oracle Cloud Infrastructure Data Safe service.
|
338
482
|
|
339
|
-
|
483
|
+
Creates a Data Safe security policy deployment in the Data Safe Console.
|
340
484
|
|
341
485
|
## Example Usage
|
342
486
|
|
@@ -346,7 +490,9 @@ class SecurityPolicyDeploymentManagement(pulumi.CustomResource):
|
|
346
490
|
|
347
491
|
test_security_policy_deployment_management = oci.datasafe.SecurityPolicyDeploymentManagement("test_security_policy_deployment_management",
|
348
492
|
compartment_id=compartment_id,
|
349
|
-
|
493
|
+
security_policy_id=test_security_policy["id"],
|
494
|
+
target_id=test_target["id"],
|
495
|
+
target_type=security_policy_deployment_management_target_type,
|
350
496
|
defined_tags={
|
351
497
|
"Operations.CostCenter": "42",
|
352
498
|
},
|
@@ -363,23 +509,31 @@ class SecurityPolicyDeploymentManagement(pulumi.CustomResource):
|
|
363
509
|
|
364
510
|
:param str resource_name: The name of the resource.
|
365
511
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
366
|
-
:param pulumi.Input[_builtins.str] compartment_id: (Updatable) The OCID of the compartment
|
512
|
+
:param pulumi.Input[_builtins.str] compartment_id: (Updatable) The OCID of the compartment in which to create the unified audit policy.
|
367
513
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
|
368
|
-
:param pulumi.Input[_builtins.
|
514
|
+
:param pulumi.Input[_builtins.int] deploy_trigger: (Updatable) An optional property when incremented triggers Deploy. Could be set to any integer value.
|
515
|
+
:param pulumi.Input[_builtins.str] description: (Updatable) The description of the security policy.
|
369
516
|
:param pulumi.Input[_builtins.str] display_name: (Updatable) The display name of the security policy deployment. The name does not have to be unique, and it is changeable.
|
370
517
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
|
371
|
-
:param pulumi.Input[_builtins.
|
518
|
+
:param pulumi.Input[_builtins.int] refresh_trigger: (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.
|
519
|
+
|
520
|
+
|
521
|
+
** IMPORTANT **
|
522
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
523
|
+
:param pulumi.Input[_builtins.str] security_policy_id: The OCID of the security policy corresponding to the security policy deployment.
|
524
|
+
:param pulumi.Input[_builtins.str] target_id: The OCID of the target where the security policy is deployed.
|
525
|
+
:param pulumi.Input[_builtins.str] target_type: Indicates whether the security policy deployment is for a target database or a target database group.
|
372
526
|
"""
|
373
527
|
...
|
374
528
|
@overload
|
375
529
|
def __init__(__self__,
|
376
530
|
resource_name: str,
|
377
|
-
args:
|
531
|
+
args: SecurityPolicyDeploymentManagementArgs,
|
378
532
|
opts: Optional[pulumi.ResourceOptions] = None):
|
379
533
|
"""
|
380
534
|
This resource provides the Security Policy Deployment Management resource in Oracle Cloud Infrastructure Data Safe service.
|
381
535
|
|
382
|
-
|
536
|
+
Creates a Data Safe security policy deployment in the Data Safe Console.
|
383
537
|
|
384
538
|
## Example Usage
|
385
539
|
|
@@ -389,7 +543,9 @@ class SecurityPolicyDeploymentManagement(pulumi.CustomResource):
|
|
389
543
|
|
390
544
|
test_security_policy_deployment_management = oci.datasafe.SecurityPolicyDeploymentManagement("test_security_policy_deployment_management",
|
391
545
|
compartment_id=compartment_id,
|
392
|
-
|
546
|
+
security_policy_id=test_security_policy["id"],
|
547
|
+
target_id=test_target["id"],
|
548
|
+
target_type=security_policy_deployment_management_target_type,
|
393
549
|
defined_tags={
|
394
550
|
"Operations.CostCenter": "42",
|
395
551
|
},
|
@@ -421,10 +577,14 @@ class SecurityPolicyDeploymentManagement(pulumi.CustomResource):
|
|
421
577
|
opts: Optional[pulumi.ResourceOptions] = None,
|
422
578
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
423
579
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
580
|
+
deploy_trigger: Optional[pulumi.Input[_builtins.int]] = None,
|
424
581
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
425
582
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
426
583
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
584
|
+
refresh_trigger: Optional[pulumi.Input[_builtins.int]] = None,
|
585
|
+
security_policy_id: Optional[pulumi.Input[_builtins.str]] = None,
|
427
586
|
target_id: Optional[pulumi.Input[_builtins.str]] = None,
|
587
|
+
target_type: Optional[pulumi.Input[_builtins.str]] = None,
|
428
588
|
__props__=None):
|
429
589
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
430
590
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -434,17 +594,29 @@ class SecurityPolicyDeploymentManagement(pulumi.CustomResource):
|
|
434
594
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
435
595
|
__props__ = SecurityPolicyDeploymentManagementArgs.__new__(SecurityPolicyDeploymentManagementArgs)
|
436
596
|
|
597
|
+
if compartment_id is None and not opts.urn:
|
598
|
+
raise TypeError("Missing required property 'compartment_id'")
|
437
599
|
__props__.__dict__["compartment_id"] = compartment_id
|
438
600
|
__props__.__dict__["defined_tags"] = defined_tags
|
601
|
+
__props__.__dict__["deploy_trigger"] = deploy_trigger
|
439
602
|
__props__.__dict__["description"] = description
|
440
603
|
__props__.__dict__["display_name"] = display_name
|
441
604
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
605
|
+
__props__.__dict__["refresh_trigger"] = refresh_trigger
|
606
|
+
if security_policy_id is None and not opts.urn:
|
607
|
+
raise TypeError("Missing required property 'security_policy_id'")
|
608
|
+
__props__.__dict__["security_policy_id"] = security_policy_id
|
609
|
+
if target_id is None and not opts.urn:
|
610
|
+
raise TypeError("Missing required property 'target_id'")
|
442
611
|
__props__.__dict__["target_id"] = target_id
|
612
|
+
if target_type is None and not opts.urn:
|
613
|
+
raise TypeError("Missing required property 'target_type'")
|
614
|
+
__props__.__dict__["target_type"] = target_type
|
443
615
|
__props__.__dict__["lifecycle_details"] = None
|
444
|
-
__props__.__dict__["security_policy_id"] = None
|
445
616
|
__props__.__dict__["state"] = None
|
446
617
|
__props__.__dict__["system_tags"] = None
|
447
618
|
__props__.__dict__["time_created"] = None
|
619
|
+
__props__.__dict__["time_deployed"] = None
|
448
620
|
__props__.__dict__["time_updated"] = None
|
449
621
|
super(SecurityPolicyDeploymentManagement, __self__).__init__(
|
450
622
|
'oci:DataSafe/securityPolicyDeploymentManagement:SecurityPolicyDeploymentManagement',
|
@@ -458,15 +630,19 @@ class SecurityPolicyDeploymentManagement(pulumi.CustomResource):
|
|
458
630
|
opts: Optional[pulumi.ResourceOptions] = None,
|
459
631
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
460
632
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
633
|
+
deploy_trigger: Optional[pulumi.Input[_builtins.int]] = None,
|
461
634
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
462
635
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
463
636
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
464
637
|
lifecycle_details: Optional[pulumi.Input[_builtins.str]] = None,
|
638
|
+
refresh_trigger: Optional[pulumi.Input[_builtins.int]] = None,
|
465
639
|
security_policy_id: Optional[pulumi.Input[_builtins.str]] = None,
|
466
640
|
state: Optional[pulumi.Input[_builtins.str]] = None,
|
467
641
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
468
642
|
target_id: Optional[pulumi.Input[_builtins.str]] = None,
|
643
|
+
target_type: Optional[pulumi.Input[_builtins.str]] = None,
|
469
644
|
time_created: Optional[pulumi.Input[_builtins.str]] = None,
|
645
|
+
time_deployed: Optional[pulumi.Input[_builtins.str]] = None,
|
470
646
|
time_updated: Optional[pulumi.Input[_builtins.str]] = None) -> 'SecurityPolicyDeploymentManagement':
|
471
647
|
"""
|
472
648
|
Get an existing SecurityPolicyDeploymentManagement resource's state with the given name, id, and optional extra
|
@@ -475,17 +651,25 @@ class SecurityPolicyDeploymentManagement(pulumi.CustomResource):
|
|
475
651
|
:param str resource_name: The unique name of the resulting resource.
|
476
652
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
477
653
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
478
|
-
:param pulumi.Input[_builtins.str] compartment_id: (Updatable) The OCID of the compartment
|
654
|
+
:param pulumi.Input[_builtins.str] compartment_id: (Updatable) The OCID of the compartment in which to create the unified audit policy.
|
479
655
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
|
480
|
-
:param pulumi.Input[_builtins.
|
656
|
+
:param pulumi.Input[_builtins.int] deploy_trigger: (Updatable) An optional property when incremented triggers Deploy. Could be set to any integer value.
|
657
|
+
:param pulumi.Input[_builtins.str] description: (Updatable) The description of the security policy.
|
481
658
|
:param pulumi.Input[_builtins.str] display_name: (Updatable) The display name of the security policy deployment. The name does not have to be unique, and it is changeable.
|
482
659
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
|
483
660
|
:param pulumi.Input[_builtins.str] lifecycle_details: Details about the current state of the security policy deployment in Data Safe.
|
661
|
+
:param pulumi.Input[_builtins.int] refresh_trigger: (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.
|
662
|
+
|
663
|
+
|
664
|
+
** IMPORTANT **
|
665
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
484
666
|
:param pulumi.Input[_builtins.str] security_policy_id: The OCID of the security policy corresponding to the security policy deployment.
|
485
667
|
:param pulumi.Input[_builtins.str] state: The current state of the security policy deployment.
|
486
668
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
487
|
-
:param pulumi.Input[_builtins.str] target_id:
|
669
|
+
:param pulumi.Input[_builtins.str] target_id: The OCID of the target where the security policy is deployed.
|
670
|
+
:param pulumi.Input[_builtins.str] target_type: Indicates whether the security policy deployment is for a target database or a target database group.
|
488
671
|
:param pulumi.Input[_builtins.str] time_created: The time that the security policy deployment was created, in the format defined by RFC3339.
|
672
|
+
:param pulumi.Input[_builtins.str] time_deployed: The last date and time the security policy was deployed, in the format defined by RFC3339.
|
489
673
|
:param pulumi.Input[_builtins.str] time_updated: The last date and time the security policy deployment was updated, in the format defined by RFC3339.
|
490
674
|
"""
|
491
675
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -494,15 +678,19 @@ class SecurityPolicyDeploymentManagement(pulumi.CustomResource):
|
|
494
678
|
|
495
679
|
__props__.__dict__["compartment_id"] = compartment_id
|
496
680
|
__props__.__dict__["defined_tags"] = defined_tags
|
681
|
+
__props__.__dict__["deploy_trigger"] = deploy_trigger
|
497
682
|
__props__.__dict__["description"] = description
|
498
683
|
__props__.__dict__["display_name"] = display_name
|
499
684
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
500
685
|
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
686
|
+
__props__.__dict__["refresh_trigger"] = refresh_trigger
|
501
687
|
__props__.__dict__["security_policy_id"] = security_policy_id
|
502
688
|
__props__.__dict__["state"] = state
|
503
689
|
__props__.__dict__["system_tags"] = system_tags
|
504
690
|
__props__.__dict__["target_id"] = target_id
|
691
|
+
__props__.__dict__["target_type"] = target_type
|
505
692
|
__props__.__dict__["time_created"] = time_created
|
693
|
+
__props__.__dict__["time_deployed"] = time_deployed
|
506
694
|
__props__.__dict__["time_updated"] = time_updated
|
507
695
|
return SecurityPolicyDeploymentManagement(resource_name, opts=opts, __props__=__props__)
|
508
696
|
|
@@ -510,7 +698,7 @@ class SecurityPolicyDeploymentManagement(pulumi.CustomResource):
|
|
510
698
|
@pulumi.getter(name="compartmentId")
|
511
699
|
def compartment_id(self) -> pulumi.Output[_builtins.str]:
|
512
700
|
"""
|
513
|
-
(Updatable) The OCID of the compartment
|
701
|
+
(Updatable) The OCID of the compartment in which to create the unified audit policy.
|
514
702
|
"""
|
515
703
|
return pulumi.get(self, "compartment_id")
|
516
704
|
|
@@ -522,11 +710,19 @@ class SecurityPolicyDeploymentManagement(pulumi.CustomResource):
|
|
522
710
|
"""
|
523
711
|
return pulumi.get(self, "defined_tags")
|
524
712
|
|
713
|
+
@_builtins.property
|
714
|
+
@pulumi.getter(name="deployTrigger")
|
715
|
+
def deploy_trigger(self) -> pulumi.Output[Optional[_builtins.int]]:
|
716
|
+
"""
|
717
|
+
(Updatable) An optional property when incremented triggers Deploy. Could be set to any integer value.
|
718
|
+
"""
|
719
|
+
return pulumi.get(self, "deploy_trigger")
|
720
|
+
|
525
721
|
@_builtins.property
|
526
722
|
@pulumi.getter
|
527
723
|
def description(self) -> pulumi.Output[_builtins.str]:
|
528
724
|
"""
|
529
|
-
(Updatable) The description of the security policy
|
725
|
+
(Updatable) The description of the security policy.
|
530
726
|
"""
|
531
727
|
return pulumi.get(self, "description")
|
532
728
|
|
@@ -554,6 +750,18 @@ class SecurityPolicyDeploymentManagement(pulumi.CustomResource):
|
|
554
750
|
"""
|
555
751
|
return pulumi.get(self, "lifecycle_details")
|
556
752
|
|
753
|
+
@_builtins.property
|
754
|
+
@pulumi.getter(name="refreshTrigger")
|
755
|
+
def refresh_trigger(self) -> pulumi.Output[Optional[_builtins.int]]:
|
756
|
+
"""
|
757
|
+
(Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.
|
758
|
+
|
759
|
+
|
760
|
+
** IMPORTANT **
|
761
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
762
|
+
"""
|
763
|
+
return pulumi.get(self, "refresh_trigger")
|
764
|
+
|
557
765
|
@_builtins.property
|
558
766
|
@pulumi.getter(name="securityPolicyId")
|
559
767
|
def security_policy_id(self) -> pulumi.Output[_builtins.str]:
|
@@ -582,10 +790,18 @@ class SecurityPolicyDeploymentManagement(pulumi.CustomResource):
|
|
582
790
|
@pulumi.getter(name="targetId")
|
583
791
|
def target_id(self) -> pulumi.Output[_builtins.str]:
|
584
792
|
"""
|
585
|
-
|
793
|
+
The OCID of the target where the security policy is deployed.
|
586
794
|
"""
|
587
795
|
return pulumi.get(self, "target_id")
|
588
796
|
|
797
|
+
@_builtins.property
|
798
|
+
@pulumi.getter(name="targetType")
|
799
|
+
def target_type(self) -> pulumi.Output[_builtins.str]:
|
800
|
+
"""
|
801
|
+
Indicates whether the security policy deployment is for a target database or a target database group.
|
802
|
+
"""
|
803
|
+
return pulumi.get(self, "target_type")
|
804
|
+
|
589
805
|
@_builtins.property
|
590
806
|
@pulumi.getter(name="timeCreated")
|
591
807
|
def time_created(self) -> pulumi.Output[_builtins.str]:
|
@@ -594,6 +810,14 @@ class SecurityPolicyDeploymentManagement(pulumi.CustomResource):
|
|
594
810
|
"""
|
595
811
|
return pulumi.get(self, "time_created")
|
596
812
|
|
813
|
+
@_builtins.property
|
814
|
+
@pulumi.getter(name="timeDeployed")
|
815
|
+
def time_deployed(self) -> pulumi.Output[_builtins.str]:
|
816
|
+
"""
|
817
|
+
The last date and time the security policy was deployed, in the format defined by RFC3339.
|
818
|
+
"""
|
819
|
+
return pulumi.get(self, "time_deployed")
|
820
|
+
|
597
821
|
@_builtins.property
|
598
822
|
@pulumi.getter(name="timeUpdated")
|
599
823
|
def time_updated(self) -> pulumi.Output[_builtins.str]:
|