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
pulumi_oci/vault/outputs.py
CHANGED
@@ -16,25 +16,144 @@ from .. import _utilities
|
|
16
16
|
from . import outputs
|
17
17
|
|
18
18
|
__all__ = [
|
19
|
+
'SecretReplicationConfig',
|
20
|
+
'SecretReplicationConfigReplicationTarget',
|
19
21
|
'SecretRotationConfig',
|
20
22
|
'SecretRotationConfigTargetSystemDetails',
|
21
23
|
'SecretSecretContent',
|
22
24
|
'SecretSecretGenerationContext',
|
23
25
|
'SecretSecretRule',
|
26
|
+
'SecretSourceRegionInformation',
|
27
|
+
'GetSecretReplicationConfigResult',
|
28
|
+
'GetSecretReplicationConfigReplicationTargetResult',
|
24
29
|
'GetSecretRotationConfigResult',
|
25
30
|
'GetSecretRotationConfigTargetSystemDetailResult',
|
26
31
|
'GetSecretSecretContentResult',
|
27
32
|
'GetSecretSecretGenerationContextResult',
|
28
33
|
'GetSecretSecretRuleResult',
|
34
|
+
'GetSecretSourceRegionInformationResult',
|
29
35
|
'GetSecretsFilterResult',
|
30
36
|
'GetSecretsSecretResult',
|
37
|
+
'GetSecretsSecretReplicationConfigResult',
|
38
|
+
'GetSecretsSecretReplicationConfigReplicationTargetResult',
|
31
39
|
'GetSecretsSecretRotationConfigResult',
|
32
40
|
'GetSecretsSecretRotationConfigTargetSystemDetailResult',
|
33
41
|
'GetSecretsSecretSecretContentResult',
|
34
42
|
'GetSecretsSecretSecretGenerationContextResult',
|
35
43
|
'GetSecretsSecretSecretRuleResult',
|
44
|
+
'GetSecretsSecretSourceRegionInformationResult',
|
36
45
|
]
|
37
46
|
|
47
|
+
@pulumi.output_type
|
48
|
+
class SecretReplicationConfig(dict):
|
49
|
+
@staticmethod
|
50
|
+
def __key_warning(key: str):
|
51
|
+
suggest = None
|
52
|
+
if key == "replicationTargets":
|
53
|
+
suggest = "replication_targets"
|
54
|
+
elif key == "isWriteForwardEnabled":
|
55
|
+
suggest = "is_write_forward_enabled"
|
56
|
+
|
57
|
+
if suggest:
|
58
|
+
pulumi.log.warn(f"Key '{key}' not found in SecretReplicationConfig. Access the value via the '{suggest}' property getter instead.")
|
59
|
+
|
60
|
+
def __getitem__(self, key: str) -> Any:
|
61
|
+
SecretReplicationConfig.__key_warning(key)
|
62
|
+
return super().__getitem__(key)
|
63
|
+
|
64
|
+
def get(self, key: str, default = None) -> Any:
|
65
|
+
SecretReplicationConfig.__key_warning(key)
|
66
|
+
return super().get(key, default)
|
67
|
+
|
68
|
+
def __init__(__self__, *,
|
69
|
+
replication_targets: Sequence['outputs.SecretReplicationConfigReplicationTarget'],
|
70
|
+
is_write_forward_enabled: Optional[_builtins.bool] = None):
|
71
|
+
"""
|
72
|
+
:param Sequence['SecretReplicationConfigReplicationTargetArgs'] replication_targets: (Updatable) List of the secret replication targets. By default, a maximum of 3 targets is allowed. To configure more than 3 targets, an override is required.
|
73
|
+
:param _builtins.bool is_write_forward_enabled: (Updatable) (Optional) A Boolean value to enable forwarding of write requests from replicated secrets to the source secrets. The default value of false disables this option.
|
74
|
+
"""
|
75
|
+
pulumi.set(__self__, "replication_targets", replication_targets)
|
76
|
+
if is_write_forward_enabled is not None:
|
77
|
+
pulumi.set(__self__, "is_write_forward_enabled", is_write_forward_enabled)
|
78
|
+
|
79
|
+
@_builtins.property
|
80
|
+
@pulumi.getter(name="replicationTargets")
|
81
|
+
def replication_targets(self) -> Sequence['outputs.SecretReplicationConfigReplicationTarget']:
|
82
|
+
"""
|
83
|
+
(Updatable) List of the secret replication targets. By default, a maximum of 3 targets is allowed. To configure more than 3 targets, an override is required.
|
84
|
+
"""
|
85
|
+
return pulumi.get(self, "replication_targets")
|
86
|
+
|
87
|
+
@_builtins.property
|
88
|
+
@pulumi.getter(name="isWriteForwardEnabled")
|
89
|
+
def is_write_forward_enabled(self) -> Optional[_builtins.bool]:
|
90
|
+
"""
|
91
|
+
(Updatable) (Optional) A Boolean value to enable forwarding of write requests from replicated secrets to the source secrets. The default value of false disables this option.
|
92
|
+
"""
|
93
|
+
return pulumi.get(self, "is_write_forward_enabled")
|
94
|
+
|
95
|
+
|
96
|
+
@pulumi.output_type
|
97
|
+
class SecretReplicationConfigReplicationTarget(dict):
|
98
|
+
@staticmethod
|
99
|
+
def __key_warning(key: str):
|
100
|
+
suggest = None
|
101
|
+
if key == "targetKeyId":
|
102
|
+
suggest = "target_key_id"
|
103
|
+
elif key == "targetRegion":
|
104
|
+
suggest = "target_region"
|
105
|
+
elif key == "targetVaultId":
|
106
|
+
suggest = "target_vault_id"
|
107
|
+
|
108
|
+
if suggest:
|
109
|
+
pulumi.log.warn(f"Key '{key}' not found in SecretReplicationConfigReplicationTarget. Access the value via the '{suggest}' property getter instead.")
|
110
|
+
|
111
|
+
def __getitem__(self, key: str) -> Any:
|
112
|
+
SecretReplicationConfigReplicationTarget.__key_warning(key)
|
113
|
+
return super().__getitem__(key)
|
114
|
+
|
115
|
+
def get(self, key: str, default = None) -> Any:
|
116
|
+
SecretReplicationConfigReplicationTarget.__key_warning(key)
|
117
|
+
return super().get(key, default)
|
118
|
+
|
119
|
+
def __init__(__self__, *,
|
120
|
+
target_key_id: _builtins.str,
|
121
|
+
target_region: _builtins.str,
|
122
|
+
target_vault_id: _builtins.str):
|
123
|
+
"""
|
124
|
+
:param _builtins.str target_key_id: (Updatable) The OCID of the target region KMS key.
|
125
|
+
:param _builtins.str target_region: (Updatable) The name of the target's region.
|
126
|
+
:param _builtins.str target_vault_id: (Updatable) The OCID of the target region's Vault.
|
127
|
+
"""
|
128
|
+
pulumi.set(__self__, "target_key_id", target_key_id)
|
129
|
+
pulumi.set(__self__, "target_region", target_region)
|
130
|
+
pulumi.set(__self__, "target_vault_id", target_vault_id)
|
131
|
+
|
132
|
+
@_builtins.property
|
133
|
+
@pulumi.getter(name="targetKeyId")
|
134
|
+
def target_key_id(self) -> _builtins.str:
|
135
|
+
"""
|
136
|
+
(Updatable) The OCID of the target region KMS key.
|
137
|
+
"""
|
138
|
+
return pulumi.get(self, "target_key_id")
|
139
|
+
|
140
|
+
@_builtins.property
|
141
|
+
@pulumi.getter(name="targetRegion")
|
142
|
+
def target_region(self) -> _builtins.str:
|
143
|
+
"""
|
144
|
+
(Updatable) The name of the target's region.
|
145
|
+
"""
|
146
|
+
return pulumi.get(self, "target_region")
|
147
|
+
|
148
|
+
@_builtins.property
|
149
|
+
@pulumi.getter(name="targetVaultId")
|
150
|
+
def target_vault_id(self) -> _builtins.str:
|
151
|
+
"""
|
152
|
+
(Updatable) The OCID of the target region's Vault.
|
153
|
+
"""
|
154
|
+
return pulumi.get(self, "target_vault_id")
|
155
|
+
|
156
|
+
|
38
157
|
@pulumi.output_type
|
39
158
|
class SecretRotationConfig(dict):
|
40
159
|
@staticmethod
|
@@ -399,6 +518,139 @@ class SecretSecretRule(dict):
|
|
399
518
|
return pulumi.get(self, "time_of_absolute_expiry")
|
400
519
|
|
401
520
|
|
521
|
+
@pulumi.output_type
|
522
|
+
class SecretSourceRegionInformation(dict):
|
523
|
+
@staticmethod
|
524
|
+
def __key_warning(key: str):
|
525
|
+
suggest = None
|
526
|
+
if key == "sourceKeyId":
|
527
|
+
suggest = "source_key_id"
|
528
|
+
elif key == "sourceRegion":
|
529
|
+
suggest = "source_region"
|
530
|
+
elif key == "sourceVaultId":
|
531
|
+
suggest = "source_vault_id"
|
532
|
+
|
533
|
+
if suggest:
|
534
|
+
pulumi.log.warn(f"Key '{key}' not found in SecretSourceRegionInformation. Access the value via the '{suggest}' property getter instead.")
|
535
|
+
|
536
|
+
def __getitem__(self, key: str) -> Any:
|
537
|
+
SecretSourceRegionInformation.__key_warning(key)
|
538
|
+
return super().__getitem__(key)
|
539
|
+
|
540
|
+
def get(self, key: str, default = None) -> Any:
|
541
|
+
SecretSourceRegionInformation.__key_warning(key)
|
542
|
+
return super().get(key, default)
|
543
|
+
|
544
|
+
def __init__(__self__, *,
|
545
|
+
source_key_id: Optional[_builtins.str] = None,
|
546
|
+
source_region: Optional[_builtins.str] = None,
|
547
|
+
source_vault_id: Optional[_builtins.str] = None):
|
548
|
+
"""
|
549
|
+
:param _builtins.str source_key_id: The OCID of the source region KMS key.
|
550
|
+
:param _builtins.str source_region: The name of the source's region.
|
551
|
+
:param _builtins.str source_vault_id: The OCID of the source region's Vault.
|
552
|
+
"""
|
553
|
+
if source_key_id is not None:
|
554
|
+
pulumi.set(__self__, "source_key_id", source_key_id)
|
555
|
+
if source_region is not None:
|
556
|
+
pulumi.set(__self__, "source_region", source_region)
|
557
|
+
if source_vault_id is not None:
|
558
|
+
pulumi.set(__self__, "source_vault_id", source_vault_id)
|
559
|
+
|
560
|
+
@_builtins.property
|
561
|
+
@pulumi.getter(name="sourceKeyId")
|
562
|
+
def source_key_id(self) -> Optional[_builtins.str]:
|
563
|
+
"""
|
564
|
+
The OCID of the source region KMS key.
|
565
|
+
"""
|
566
|
+
return pulumi.get(self, "source_key_id")
|
567
|
+
|
568
|
+
@_builtins.property
|
569
|
+
@pulumi.getter(name="sourceRegion")
|
570
|
+
def source_region(self) -> Optional[_builtins.str]:
|
571
|
+
"""
|
572
|
+
The name of the source's region.
|
573
|
+
"""
|
574
|
+
return pulumi.get(self, "source_region")
|
575
|
+
|
576
|
+
@_builtins.property
|
577
|
+
@pulumi.getter(name="sourceVaultId")
|
578
|
+
def source_vault_id(self) -> Optional[_builtins.str]:
|
579
|
+
"""
|
580
|
+
The OCID of the source region's Vault.
|
581
|
+
"""
|
582
|
+
return pulumi.get(self, "source_vault_id")
|
583
|
+
|
584
|
+
|
585
|
+
@pulumi.output_type
|
586
|
+
class GetSecretReplicationConfigResult(dict):
|
587
|
+
def __init__(__self__, *,
|
588
|
+
is_write_forward_enabled: _builtins.bool,
|
589
|
+
replication_targets: Sequence['outputs.GetSecretReplicationConfigReplicationTargetResult']):
|
590
|
+
"""
|
591
|
+
:param _builtins.bool is_write_forward_enabled: (Optional) A Boolean value to enable forwarding of write requests from replicated secrets to the source secrets. The default value of false disables this option.
|
592
|
+
:param Sequence['GetSecretReplicationConfigReplicationTargetArgs'] replication_targets: List of the secret replication targets. By default, a maximum of 3 targets is allowed. To configure more than 3 targets, an override is required.
|
593
|
+
"""
|
594
|
+
pulumi.set(__self__, "is_write_forward_enabled", is_write_forward_enabled)
|
595
|
+
pulumi.set(__self__, "replication_targets", replication_targets)
|
596
|
+
|
597
|
+
@_builtins.property
|
598
|
+
@pulumi.getter(name="isWriteForwardEnabled")
|
599
|
+
def is_write_forward_enabled(self) -> _builtins.bool:
|
600
|
+
"""
|
601
|
+
(Optional) A Boolean value to enable forwarding of write requests from replicated secrets to the source secrets. The default value of false disables this option.
|
602
|
+
"""
|
603
|
+
return pulumi.get(self, "is_write_forward_enabled")
|
604
|
+
|
605
|
+
@_builtins.property
|
606
|
+
@pulumi.getter(name="replicationTargets")
|
607
|
+
def replication_targets(self) -> Sequence['outputs.GetSecretReplicationConfigReplicationTargetResult']:
|
608
|
+
"""
|
609
|
+
List of the secret replication targets. By default, a maximum of 3 targets is allowed. To configure more than 3 targets, an override is required.
|
610
|
+
"""
|
611
|
+
return pulumi.get(self, "replication_targets")
|
612
|
+
|
613
|
+
|
614
|
+
@pulumi.output_type
|
615
|
+
class GetSecretReplicationConfigReplicationTargetResult(dict):
|
616
|
+
def __init__(__self__, *,
|
617
|
+
target_key_id: _builtins.str,
|
618
|
+
target_region: _builtins.str,
|
619
|
+
target_vault_id: _builtins.str):
|
620
|
+
"""
|
621
|
+
:param _builtins.str target_key_id: The OCID of the target region KMS key.
|
622
|
+
:param _builtins.str target_region: The name of the target's region.
|
623
|
+
:param _builtins.str target_vault_id: The OCID of the target region's Vault.
|
624
|
+
"""
|
625
|
+
pulumi.set(__self__, "target_key_id", target_key_id)
|
626
|
+
pulumi.set(__self__, "target_region", target_region)
|
627
|
+
pulumi.set(__self__, "target_vault_id", target_vault_id)
|
628
|
+
|
629
|
+
@_builtins.property
|
630
|
+
@pulumi.getter(name="targetKeyId")
|
631
|
+
def target_key_id(self) -> _builtins.str:
|
632
|
+
"""
|
633
|
+
The OCID of the target region KMS key.
|
634
|
+
"""
|
635
|
+
return pulumi.get(self, "target_key_id")
|
636
|
+
|
637
|
+
@_builtins.property
|
638
|
+
@pulumi.getter(name="targetRegion")
|
639
|
+
def target_region(self) -> _builtins.str:
|
640
|
+
"""
|
641
|
+
The name of the target's region.
|
642
|
+
"""
|
643
|
+
return pulumi.get(self, "target_region")
|
644
|
+
|
645
|
+
@_builtins.property
|
646
|
+
@pulumi.getter(name="targetVaultId")
|
647
|
+
def target_vault_id(self) -> _builtins.str:
|
648
|
+
"""
|
649
|
+
The OCID of the target region's Vault.
|
650
|
+
"""
|
651
|
+
return pulumi.get(self, "target_vault_id")
|
652
|
+
|
653
|
+
|
402
654
|
@pulumi.output_type
|
403
655
|
class GetSecretRotationConfigResult(dict):
|
404
656
|
def __init__(__self__, *,
|
@@ -625,6 +877,46 @@ class GetSecretSecretRuleResult(dict):
|
|
625
877
|
return pulumi.get(self, "time_of_absolute_expiry")
|
626
878
|
|
627
879
|
|
880
|
+
@pulumi.output_type
|
881
|
+
class GetSecretSourceRegionInformationResult(dict):
|
882
|
+
def __init__(__self__, *,
|
883
|
+
source_key_id: _builtins.str,
|
884
|
+
source_region: _builtins.str,
|
885
|
+
source_vault_id: _builtins.str):
|
886
|
+
"""
|
887
|
+
:param _builtins.str source_key_id: The OCID of the source region KMS key.
|
888
|
+
:param _builtins.str source_region: The name of the source's region.
|
889
|
+
:param _builtins.str source_vault_id: The OCID of the source region's Vault.
|
890
|
+
"""
|
891
|
+
pulumi.set(__self__, "source_key_id", source_key_id)
|
892
|
+
pulumi.set(__self__, "source_region", source_region)
|
893
|
+
pulumi.set(__self__, "source_vault_id", source_vault_id)
|
894
|
+
|
895
|
+
@_builtins.property
|
896
|
+
@pulumi.getter(name="sourceKeyId")
|
897
|
+
def source_key_id(self) -> _builtins.str:
|
898
|
+
"""
|
899
|
+
The OCID of the source region KMS key.
|
900
|
+
"""
|
901
|
+
return pulumi.get(self, "source_key_id")
|
902
|
+
|
903
|
+
@_builtins.property
|
904
|
+
@pulumi.getter(name="sourceRegion")
|
905
|
+
def source_region(self) -> _builtins.str:
|
906
|
+
"""
|
907
|
+
The name of the source's region.
|
908
|
+
"""
|
909
|
+
return pulumi.get(self, "source_region")
|
910
|
+
|
911
|
+
@_builtins.property
|
912
|
+
@pulumi.getter(name="sourceVaultId")
|
913
|
+
def source_vault_id(self) -> _builtins.str:
|
914
|
+
"""
|
915
|
+
The OCID of the source region's Vault.
|
916
|
+
"""
|
917
|
+
return pulumi.get(self, "source_vault_id")
|
918
|
+
|
919
|
+
|
628
920
|
@pulumi.output_type
|
629
921
|
class GetSecretsFilterResult(dict):
|
630
922
|
def __init__(__self__, *,
|
@@ -669,17 +961,20 @@ class GetSecretsSecretResult(dict):
|
|
669
961
|
freeform_tags: Mapping[str, _builtins.str],
|
670
962
|
id: _builtins.str,
|
671
963
|
is_auto_generation_enabled: _builtins.bool,
|
964
|
+
is_replica: _builtins.bool,
|
672
965
|
key_id: _builtins.str,
|
673
966
|
last_rotation_time: _builtins.str,
|
674
967
|
lifecycle_details: _builtins.str,
|
675
968
|
metadata: Mapping[str, _builtins.str],
|
676
969
|
next_rotation_time: _builtins.str,
|
970
|
+
replication_configs: Sequence['outputs.GetSecretsSecretReplicationConfigResult'],
|
677
971
|
rotation_configs: Sequence['outputs.GetSecretsSecretRotationConfigResult'],
|
678
972
|
rotation_status: _builtins.str,
|
679
973
|
secret_contents: Sequence['outputs.GetSecretsSecretSecretContentResult'],
|
680
974
|
secret_generation_contexts: Sequence['outputs.GetSecretsSecretSecretGenerationContextResult'],
|
681
975
|
secret_name: _builtins.str,
|
682
976
|
secret_rules: Sequence['outputs.GetSecretsSecretSecretRuleResult'],
|
977
|
+
source_region_informations: Sequence['outputs.GetSecretsSecretSourceRegionInformationResult'],
|
683
978
|
state: _builtins.str,
|
684
979
|
time_created: _builtins.str,
|
685
980
|
time_of_current_version_expiry: _builtins.str,
|
@@ -693,16 +988,19 @@ class GetSecretsSecretResult(dict):
|
|
693
988
|
:param Mapping[str, _builtins.str] freeform_tags: 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"}`
|
694
989
|
:param _builtins.str id: The OCID of the secret.
|
695
990
|
:param _builtins.bool is_auto_generation_enabled: The value of this flag determines whether or not secret content will be generated automatically.
|
991
|
+
:param _builtins.bool is_replica: A Boolean value that indicates whether the secret is a source or replica secret.
|
696
992
|
:param _builtins.str key_id: The OCID of the master encryption key that is used to encrypt the secret. You must specify a symmetric key to encrypt the secret during import to the vault. You cannot encrypt secrets with asymmetric keys. Furthermore, the key must exist in the vault that you specify.
|
697
993
|
:param _builtins.str last_rotation_time: A property indicating when the secret was last rotated successfully, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2019-04-03T21:10:29.600Z`
|
698
994
|
:param _builtins.str lifecycle_details: Additional information about the current lifecycle state of the secret.
|
699
995
|
:param Mapping[str, _builtins.str] metadata: Additional metadata that you can use to provide context about how to use the secret or during rotation or other administrative tasks. For example, for a secret that you use to connect to a database, the additional metadata might specify the connection endpoint and the connection string. Provide additional metadata as key-value pairs.
|
700
996
|
:param _builtins.str next_rotation_time: A property indicating when the secret is scheduled to be rotated, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2019-04-03T21:10:29.600Z`
|
997
|
+
:param Sequence['GetSecretsSecretReplicationConfigArgs'] replication_configs: Defines the configuration that enables cross-region secret replication.
|
701
998
|
:param Sequence['GetSecretsSecretRotationConfigArgs'] rotation_configs: Defines the frequency of the rotation and the information about the target system
|
702
999
|
:param _builtins.str rotation_status: Additional information about the status of the secret rotation
|
703
1000
|
:param Sequence['GetSecretsSecretSecretGenerationContextArgs'] secret_generation_contexts: Captures a configurable set of secret generation rules such as length, base characters, additional characters, and so on.
|
704
1001
|
:param _builtins.str secret_name: The user-friendly name of the secret. Avoid entering confidential information.
|
705
1002
|
:param Sequence['GetSecretsSecretSecretRuleArgs'] secret_rules: A list of rules that control how the secret is used and managed.
|
1003
|
+
:param Sequence['GetSecretsSecretSourceRegionInformationArgs'] source_region_informations: Details for the source that the source secret has.
|
706
1004
|
:param _builtins.str state: A filter that returns only resources that match the specified lifecycle state. The state value is case-insensitive.
|
707
1005
|
:param _builtins.str time_created: A property indicating when the secret was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2019-04-03T21:10:29.600Z`
|
708
1006
|
:param _builtins.str time_of_current_version_expiry: An optional property indicating when the current secret version will expire, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2019-04-03T21:10:29.600Z`
|
@@ -717,17 +1015,20 @@ class GetSecretsSecretResult(dict):
|
|
717
1015
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
718
1016
|
pulumi.set(__self__, "id", id)
|
719
1017
|
pulumi.set(__self__, "is_auto_generation_enabled", is_auto_generation_enabled)
|
1018
|
+
pulumi.set(__self__, "is_replica", is_replica)
|
720
1019
|
pulumi.set(__self__, "key_id", key_id)
|
721
1020
|
pulumi.set(__self__, "last_rotation_time", last_rotation_time)
|
722
1021
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
723
1022
|
pulumi.set(__self__, "metadata", metadata)
|
724
1023
|
pulumi.set(__self__, "next_rotation_time", next_rotation_time)
|
1024
|
+
pulumi.set(__self__, "replication_configs", replication_configs)
|
725
1025
|
pulumi.set(__self__, "rotation_configs", rotation_configs)
|
726
1026
|
pulumi.set(__self__, "rotation_status", rotation_status)
|
727
1027
|
pulumi.set(__self__, "secret_contents", secret_contents)
|
728
1028
|
pulumi.set(__self__, "secret_generation_contexts", secret_generation_contexts)
|
729
1029
|
pulumi.set(__self__, "secret_name", secret_name)
|
730
1030
|
pulumi.set(__self__, "secret_rules", secret_rules)
|
1031
|
+
pulumi.set(__self__, "source_region_informations", source_region_informations)
|
731
1032
|
pulumi.set(__self__, "state", state)
|
732
1033
|
pulumi.set(__self__, "time_created", time_created)
|
733
1034
|
pulumi.set(__self__, "time_of_current_version_expiry", time_of_current_version_expiry)
|
@@ -795,6 +1096,14 @@ class GetSecretsSecretResult(dict):
|
|
795
1096
|
"""
|
796
1097
|
return pulumi.get(self, "is_auto_generation_enabled")
|
797
1098
|
|
1099
|
+
@_builtins.property
|
1100
|
+
@pulumi.getter(name="isReplica")
|
1101
|
+
def is_replica(self) -> _builtins.bool:
|
1102
|
+
"""
|
1103
|
+
A Boolean value that indicates whether the secret is a source or replica secret.
|
1104
|
+
"""
|
1105
|
+
return pulumi.get(self, "is_replica")
|
1106
|
+
|
798
1107
|
@_builtins.property
|
799
1108
|
@pulumi.getter(name="keyId")
|
800
1109
|
def key_id(self) -> _builtins.str:
|
@@ -835,6 +1144,14 @@ class GetSecretsSecretResult(dict):
|
|
835
1144
|
"""
|
836
1145
|
return pulumi.get(self, "next_rotation_time")
|
837
1146
|
|
1147
|
+
@_builtins.property
|
1148
|
+
@pulumi.getter(name="replicationConfigs")
|
1149
|
+
def replication_configs(self) -> Sequence['outputs.GetSecretsSecretReplicationConfigResult']:
|
1150
|
+
"""
|
1151
|
+
Defines the configuration that enables cross-region secret replication.
|
1152
|
+
"""
|
1153
|
+
return pulumi.get(self, "replication_configs")
|
1154
|
+
|
838
1155
|
@_builtins.property
|
839
1156
|
@pulumi.getter(name="rotationConfigs")
|
840
1157
|
def rotation_configs(self) -> Sequence['outputs.GetSecretsSecretRotationConfigResult']:
|
@@ -880,6 +1197,14 @@ class GetSecretsSecretResult(dict):
|
|
880
1197
|
"""
|
881
1198
|
return pulumi.get(self, "secret_rules")
|
882
1199
|
|
1200
|
+
@_builtins.property
|
1201
|
+
@pulumi.getter(name="sourceRegionInformations")
|
1202
|
+
def source_region_informations(self) -> Sequence['outputs.GetSecretsSecretSourceRegionInformationResult']:
|
1203
|
+
"""
|
1204
|
+
Details for the source that the source secret has.
|
1205
|
+
"""
|
1206
|
+
return pulumi.get(self, "source_region_informations")
|
1207
|
+
|
883
1208
|
@_builtins.property
|
884
1209
|
@pulumi.getter
|
885
1210
|
def state(self) -> _builtins.str:
|
@@ -921,6 +1246,75 @@ class GetSecretsSecretResult(dict):
|
|
921
1246
|
return pulumi.get(self, "vault_id")
|
922
1247
|
|
923
1248
|
|
1249
|
+
@pulumi.output_type
|
1250
|
+
class GetSecretsSecretReplicationConfigResult(dict):
|
1251
|
+
def __init__(__self__, *,
|
1252
|
+
is_write_forward_enabled: _builtins.bool,
|
1253
|
+
replication_targets: Sequence['outputs.GetSecretsSecretReplicationConfigReplicationTargetResult']):
|
1254
|
+
"""
|
1255
|
+
:param _builtins.bool is_write_forward_enabled: (Optional) A Boolean value to enable forwarding of write requests from replicated secrets to the source secrets. The default value of false disables this option.
|
1256
|
+
:param Sequence['GetSecretsSecretReplicationConfigReplicationTargetArgs'] replication_targets: List of the secret replication targets. By default, a maximum of 3 targets is allowed. To configure more than 3 targets, an override is required.
|
1257
|
+
"""
|
1258
|
+
pulumi.set(__self__, "is_write_forward_enabled", is_write_forward_enabled)
|
1259
|
+
pulumi.set(__self__, "replication_targets", replication_targets)
|
1260
|
+
|
1261
|
+
@_builtins.property
|
1262
|
+
@pulumi.getter(name="isWriteForwardEnabled")
|
1263
|
+
def is_write_forward_enabled(self) -> _builtins.bool:
|
1264
|
+
"""
|
1265
|
+
(Optional) A Boolean value to enable forwarding of write requests from replicated secrets to the source secrets. The default value of false disables this option.
|
1266
|
+
"""
|
1267
|
+
return pulumi.get(self, "is_write_forward_enabled")
|
1268
|
+
|
1269
|
+
@_builtins.property
|
1270
|
+
@pulumi.getter(name="replicationTargets")
|
1271
|
+
def replication_targets(self) -> Sequence['outputs.GetSecretsSecretReplicationConfigReplicationTargetResult']:
|
1272
|
+
"""
|
1273
|
+
List of the secret replication targets. By default, a maximum of 3 targets is allowed. To configure more than 3 targets, an override is required.
|
1274
|
+
"""
|
1275
|
+
return pulumi.get(self, "replication_targets")
|
1276
|
+
|
1277
|
+
|
1278
|
+
@pulumi.output_type
|
1279
|
+
class GetSecretsSecretReplicationConfigReplicationTargetResult(dict):
|
1280
|
+
def __init__(__self__, *,
|
1281
|
+
target_key_id: _builtins.str,
|
1282
|
+
target_region: _builtins.str,
|
1283
|
+
target_vault_id: _builtins.str):
|
1284
|
+
"""
|
1285
|
+
:param _builtins.str target_key_id: The OCID of the target region KMS key.
|
1286
|
+
:param _builtins.str target_region: The name of the target's region.
|
1287
|
+
:param _builtins.str target_vault_id: The OCID of the target region's Vault.
|
1288
|
+
"""
|
1289
|
+
pulumi.set(__self__, "target_key_id", target_key_id)
|
1290
|
+
pulumi.set(__self__, "target_region", target_region)
|
1291
|
+
pulumi.set(__self__, "target_vault_id", target_vault_id)
|
1292
|
+
|
1293
|
+
@_builtins.property
|
1294
|
+
@pulumi.getter(name="targetKeyId")
|
1295
|
+
def target_key_id(self) -> _builtins.str:
|
1296
|
+
"""
|
1297
|
+
The OCID of the target region KMS key.
|
1298
|
+
"""
|
1299
|
+
return pulumi.get(self, "target_key_id")
|
1300
|
+
|
1301
|
+
@_builtins.property
|
1302
|
+
@pulumi.getter(name="targetRegion")
|
1303
|
+
def target_region(self) -> _builtins.str:
|
1304
|
+
"""
|
1305
|
+
The name of the target's region.
|
1306
|
+
"""
|
1307
|
+
return pulumi.get(self, "target_region")
|
1308
|
+
|
1309
|
+
@_builtins.property
|
1310
|
+
@pulumi.getter(name="targetVaultId")
|
1311
|
+
def target_vault_id(self) -> _builtins.str:
|
1312
|
+
"""
|
1313
|
+
The OCID of the target region's Vault.
|
1314
|
+
"""
|
1315
|
+
return pulumi.get(self, "target_vault_id")
|
1316
|
+
|
1317
|
+
|
924
1318
|
@pulumi.output_type
|
925
1319
|
class GetSecretsSecretRotationConfigResult(dict):
|
926
1320
|
def __init__(__self__, *,
|
@@ -1153,3 +1547,43 @@ class GetSecretsSecretSecretRuleResult(dict):
|
|
1153
1547
|
return pulumi.get(self, "time_of_absolute_expiry")
|
1154
1548
|
|
1155
1549
|
|
1550
|
+
@pulumi.output_type
|
1551
|
+
class GetSecretsSecretSourceRegionInformationResult(dict):
|
1552
|
+
def __init__(__self__, *,
|
1553
|
+
source_key_id: _builtins.str,
|
1554
|
+
source_region: _builtins.str,
|
1555
|
+
source_vault_id: _builtins.str):
|
1556
|
+
"""
|
1557
|
+
:param _builtins.str source_key_id: The OCID of the source region KMS key.
|
1558
|
+
:param _builtins.str source_region: The name of the source's region.
|
1559
|
+
:param _builtins.str source_vault_id: The OCID of the source region's Vault.
|
1560
|
+
"""
|
1561
|
+
pulumi.set(__self__, "source_key_id", source_key_id)
|
1562
|
+
pulumi.set(__self__, "source_region", source_region)
|
1563
|
+
pulumi.set(__self__, "source_vault_id", source_vault_id)
|
1564
|
+
|
1565
|
+
@_builtins.property
|
1566
|
+
@pulumi.getter(name="sourceKeyId")
|
1567
|
+
def source_key_id(self) -> _builtins.str:
|
1568
|
+
"""
|
1569
|
+
The OCID of the source region KMS key.
|
1570
|
+
"""
|
1571
|
+
return pulumi.get(self, "source_key_id")
|
1572
|
+
|
1573
|
+
@_builtins.property
|
1574
|
+
@pulumi.getter(name="sourceRegion")
|
1575
|
+
def source_region(self) -> _builtins.str:
|
1576
|
+
"""
|
1577
|
+
The name of the source's region.
|
1578
|
+
"""
|
1579
|
+
return pulumi.get(self, "source_region")
|
1580
|
+
|
1581
|
+
@_builtins.property
|
1582
|
+
@pulumi.getter(name="sourceVaultId")
|
1583
|
+
def source_vault_id(self) -> _builtins.str:
|
1584
|
+
"""
|
1585
|
+
The OCID of the source region's Vault.
|
1586
|
+
"""
|
1587
|
+
return pulumi.get(self, "source_vault_id")
|
1588
|
+
|
1589
|
+
|