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/database/outputs.py
CHANGED
@@ -30,6 +30,7 @@ __all__ = [
|
|
30
30
|
'AutonomousContainerDatabaseBackupConfig',
|
31
31
|
'AutonomousContainerDatabaseBackupConfigBackupDestinationDetails',
|
32
32
|
'AutonomousContainerDatabaseBackupDestinationPropertiesList',
|
33
|
+
'AutonomousContainerDatabaseCustomerContact',
|
33
34
|
'AutonomousContainerDatabaseDataguard',
|
34
35
|
'AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfig',
|
35
36
|
'AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetail',
|
@@ -110,8 +111,10 @@ __all__ = [
|
|
110
111
|
'DatabaseDatabaseEncryptionKeyLocationDetails',
|
111
112
|
'DatabaseDatabaseManagementConfig',
|
112
113
|
'DatabaseDatabaseSourceEncryptionKeyLocationDetails',
|
114
|
+
'DatabaseDatabaseStorageSizeDetails',
|
113
115
|
'DatabaseDbBackupConfig',
|
114
116
|
'DatabaseDbBackupConfigBackupDestinationDetail',
|
117
|
+
'DatabaseStorageSizeDetail',
|
115
118
|
'DatabaseUpgradeConnectionString',
|
116
119
|
'DatabaseUpgradeDataGuardGroup',
|
117
120
|
'DatabaseUpgradeDataGuardGroupMember',
|
@@ -123,6 +126,7 @@ __all__ = [
|
|
123
126
|
'DbHomeDatabaseDbBackupConfig',
|
124
127
|
'DbHomeDatabaseDbBackupConfigBackupDestinationDetail',
|
125
128
|
'DbHomeDatabaseEncryptionKeyLocationDetails',
|
129
|
+
'DbHomeDatabaseStorageSizeDetails',
|
126
130
|
'DbSystemDataCollectionOptions',
|
127
131
|
'DbSystemDbHome',
|
128
132
|
'DbSystemDbHomeDatabase',
|
@@ -242,6 +246,7 @@ __all__ = [
|
|
242
246
|
'GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollectionItemResult',
|
243
247
|
'GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollectionItemAutonomousDatabaseResult',
|
244
248
|
'GetAutonomousContainerDatabaseBackupsFilterResult',
|
249
|
+
'GetAutonomousContainerDatabaseCustomerContactResult',
|
245
250
|
'GetAutonomousContainerDatabaseDataguardResult',
|
246
251
|
'GetAutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigResult',
|
247
252
|
'GetAutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailResult',
|
@@ -269,6 +274,7 @@ __all__ = [
|
|
269
274
|
'GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigResult',
|
270
275
|
'GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigBackupDestinationDetailResult',
|
271
276
|
'GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupDestinationPropertiesListResult',
|
277
|
+
'GetAutonomousContainerDatabasesAutonomousContainerDatabaseCustomerContactResult',
|
272
278
|
'GetAutonomousContainerDatabasesAutonomousContainerDatabaseDataguardResult',
|
273
279
|
'GetAutonomousContainerDatabasesAutonomousContainerDatabaseDataguardGroupMemberResult',
|
274
280
|
'GetAutonomousContainerDatabasesAutonomousContainerDatabaseKeyHistoryEntryResult',
|
@@ -478,6 +484,7 @@ __all__ = [
|
|
478
484
|
'GetDatabaseDatabaseEncryptionKeyLocationDetailResult',
|
479
485
|
'GetDatabaseDatabaseManagementConfigResult',
|
480
486
|
'GetDatabaseDatabaseSourceEncryptionKeyLocationDetailResult',
|
487
|
+
'GetDatabaseDatabaseStorageSizeDetailResult',
|
481
488
|
'GetDatabaseDbBackupConfigResult',
|
482
489
|
'GetDatabaseDbBackupConfigBackupDestinationDetailResult',
|
483
490
|
'GetDatabaseMaintenanceRunHistoriesFilterResult',
|
@@ -502,6 +509,7 @@ __all__ = [
|
|
502
509
|
'GetDatabasePdbConversionHistoryEntriesPdbConversionHistoryEntryResult',
|
503
510
|
'GetDatabaseSoftwareImagesDatabaseSoftwareImageResult',
|
504
511
|
'GetDatabaseSoftwareImagesFilterResult',
|
512
|
+
'GetDatabaseStorageSizeDetailResult',
|
505
513
|
'GetDatabaseUpgradeHistoryEntriesDatabaseUpgradeHistoryEntryResult',
|
506
514
|
'GetDatabaseUpgradeHistoryEntriesFilterResult',
|
507
515
|
'GetDatabasesDatabaseResult',
|
@@ -514,14 +522,17 @@ __all__ = [
|
|
514
522
|
'GetDatabasesDatabaseDatabaseEncryptionKeyLocationDetailResult',
|
515
523
|
'GetDatabasesDatabaseDatabaseManagementConfigResult',
|
516
524
|
'GetDatabasesDatabaseDatabaseSourceEncryptionKeyLocationDetailResult',
|
525
|
+
'GetDatabasesDatabaseDatabaseStorageSizeDetailResult',
|
517
526
|
'GetDatabasesDatabaseDbBackupConfigResult',
|
518
527
|
'GetDatabasesDatabaseDbBackupConfigBackupDestinationDetailResult',
|
528
|
+
'GetDatabasesDatabaseStorageSizeDetailResult',
|
519
529
|
'GetDatabasesFilterResult',
|
520
530
|
'GetDbHomeDatabaseResult',
|
521
531
|
'GetDbHomeDatabaseConnectionStringResult',
|
522
532
|
'GetDbHomeDatabaseDbBackupConfigResult',
|
523
533
|
'GetDbHomeDatabaseDbBackupConfigBackupDestinationDetailResult',
|
524
534
|
'GetDbHomeDatabaseEncryptionKeyLocationDetailResult',
|
535
|
+
'GetDbHomeDatabaseStorageSizeDetailResult',
|
525
536
|
'GetDbHomePatchHistoryEntriesFilterResult',
|
526
537
|
'GetDbHomePatchHistoryEntriesPatchHistoryEntryResult',
|
527
538
|
'GetDbHomePatchesFilterResult',
|
@@ -532,6 +543,7 @@ __all__ = [
|
|
532
543
|
'GetDbHomesDbHomeDatabaseDbBackupConfigResult',
|
533
544
|
'GetDbHomesDbHomeDatabaseDbBackupConfigBackupDestinationDetailResult',
|
534
545
|
'GetDbHomesDbHomeDatabaseEncryptionKeyLocationDetailResult',
|
546
|
+
'GetDbHomesDbHomeDatabaseStorageSizeDetailResult',
|
535
547
|
'GetDbHomesFilterResult',
|
536
548
|
'GetDbNodeConsoleConnectionsConsoleConnectionResult',
|
537
549
|
'GetDbNodeConsoleConnectionsFilterResult',
|
@@ -682,6 +694,8 @@ __all__ = [
|
|
682
694
|
'GetPluggableDatabasePdbNodeLevelDetailResult',
|
683
695
|
'GetPluggableDatabasePluggableDatabaseManagementConfigResult',
|
684
696
|
'GetPluggableDatabaseRefreshableCloneConfigResult',
|
697
|
+
'GetPluggableDatabaseSnapshotsFilterResult',
|
698
|
+
'GetPluggableDatabaseSnapshotsPluggableDatabaseSnapshotResult',
|
685
699
|
'GetPluggableDatabasesFilterResult',
|
686
700
|
'GetPluggableDatabasesPluggableDatabaseResult',
|
687
701
|
'GetPluggableDatabasesPluggableDatabaseConnectionStringResult',
|
@@ -2252,6 +2266,25 @@ class AutonomousContainerDatabaseBackupDestinationPropertiesList(dict):
|
|
2252
2266
|
return pulumi.get(self, "time_at_which_storage_details_are_updated")
|
2253
2267
|
|
2254
2268
|
|
2269
|
+
@pulumi.output_type
|
2270
|
+
class AutonomousContainerDatabaseCustomerContact(dict):
|
2271
|
+
def __init__(__self__, *,
|
2272
|
+
email: Optional[_builtins.str] = None):
|
2273
|
+
"""
|
2274
|
+
:param _builtins.str email: (Updatable) The email address used by Oracle to send notifications regarding databases and infrastructure.
|
2275
|
+
"""
|
2276
|
+
if email is not None:
|
2277
|
+
pulumi.set(__self__, "email", email)
|
2278
|
+
|
2279
|
+
@_builtins.property
|
2280
|
+
@pulumi.getter
|
2281
|
+
def email(self) -> Optional[_builtins.str]:
|
2282
|
+
"""
|
2283
|
+
(Updatable) The email address used by Oracle to send notifications regarding databases and infrastructure.
|
2284
|
+
"""
|
2285
|
+
return pulumi.get(self, "email")
|
2286
|
+
|
2287
|
+
|
2255
2288
|
@pulumi.output_type
|
2256
2289
|
class AutonomousContainerDatabaseDataguard(dict):
|
2257
2290
|
@staticmethod
|
@@ -4883,7 +4916,7 @@ class AutonomousDatabaseKeyHistoryEntry(dict):
|
|
4883
4916
|
:param _builtins.str id: The id of the Autonomous Database [Vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts) service key management history entry.
|
4884
4917
|
:param _builtins.str kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
|
4885
4918
|
:param _builtins.str time_activated: The date and time the kms key activated.
|
4886
|
-
:param _builtins.str vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
|
4919
|
+
:param _builtins.str vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
|
4887
4920
|
"""
|
4888
4921
|
if id is not None:
|
4889
4922
|
pulumi.set(__self__, "id", id)
|
@@ -4922,7 +4955,7 @@ class AutonomousDatabaseKeyHistoryEntry(dict):
|
|
4922
4955
|
@pulumi.getter(name="vaultId")
|
4923
4956
|
def vault_id(self) -> Optional[_builtins.str]:
|
4924
4957
|
"""
|
4925
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
|
4958
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
|
4926
4959
|
"""
|
4927
4960
|
return pulumi.get(self, "vault_id")
|
4928
4961
|
|
@@ -5104,7 +5137,7 @@ class AutonomousDatabaseLongTermBackupSchedule(dict):
|
|
5104
5137
|
retention_period_in_days: Optional[_builtins.int] = None,
|
5105
5138
|
time_of_backup: Optional[_builtins.str] = None):
|
5106
5139
|
"""
|
5107
|
-
:param _builtins.bool is_disabled: Indicates if the
|
5140
|
+
:param _builtins.bool is_disabled: Indicates if the resource pool should be deleted for the Autonomous Database.
|
5108
5141
|
:param _builtins.str repeat_cadence: The frequency of the long-term backup schedule
|
5109
5142
|
:param _builtins.int retention_period_in_days: Retention period, in days, for long-term backups
|
5110
5143
|
:param _builtins.str time_of_backup: The timestamp for the long-term backup schedule. For a MONTHLY cadence, months having fewer days than the provided date will have the backup taken on the last day of that month.
|
@@ -5122,7 +5155,7 @@ class AutonomousDatabaseLongTermBackupSchedule(dict):
|
|
5122
5155
|
@pulumi.getter(name="isDisabled")
|
5123
5156
|
def is_disabled(self) -> Optional[_builtins.bool]:
|
5124
5157
|
"""
|
5125
|
-
Indicates if the
|
5158
|
+
Indicates if the resource pool should be deleted for the Autonomous Database.
|
5126
5159
|
"""
|
5127
5160
|
return pulumi.get(self, "is_disabled")
|
5128
5161
|
|
@@ -8344,6 +8377,8 @@ class DatabaseDatabase(dict):
|
|
8344
8377
|
suggest = "source_encryption_key_location_details"
|
8345
8378
|
elif key == "sourceTdeWalletPassword":
|
8346
8379
|
suggest = "source_tde_wallet_password"
|
8380
|
+
elif key == "storageSizeDetails":
|
8381
|
+
suggest = "storage_size_details"
|
8347
8382
|
elif key == "tdeWalletPassword":
|
8348
8383
|
suggest = "tde_wallet_password"
|
8349
8384
|
elif key == "transportType":
|
@@ -8387,6 +8422,7 @@ class DatabaseDatabase(dict):
|
|
8387
8422
|
source_database_id: Optional[_builtins.str] = None,
|
8388
8423
|
source_encryption_key_location_details: Optional['outputs.DatabaseDatabaseSourceEncryptionKeyLocationDetails'] = None,
|
8389
8424
|
source_tde_wallet_password: Optional[_builtins.str] = None,
|
8425
|
+
storage_size_details: Optional['outputs.DatabaseDatabaseStorageSizeDetails'] = None,
|
8390
8426
|
tde_wallet_password: Optional[_builtins.str] = None,
|
8391
8427
|
transport_type: Optional[_builtins.str] = None,
|
8392
8428
|
vault_id: Optional[_builtins.str] = None):
|
@@ -8421,6 +8457,7 @@ class DatabaseDatabase(dict):
|
|
8421
8457
|
:param _builtins.str source_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source database.
|
8422
8458
|
:param 'DatabaseDatabaseSourceEncryptionKeyLocationDetailsArgs' source_encryption_key_location_details: Types of providers supported for managing database encryption keys
|
8423
8459
|
:param _builtins.str source_tde_wallet_password: The TDE wallet password of the source database specified by 'sourceDatabaseId'.
|
8460
|
+
:param 'DatabaseDatabaseStorageSizeDetailsArgs' storage_size_details: The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
|
8424
8461
|
:param _builtins.str tde_wallet_password: The optional password to open the TDE wallet. The password must be at least nine characters and contain at least two uppercase, two lowercase, two numeric, and two special characters. The special characters must be _, \\#, or -.
|
8425
8462
|
:param _builtins.str transport_type: The redo transport type to use for this Data Guard association. Valid values depend on the specified `protectionMode`:
|
8426
8463
|
* MAXIMUM_AVAILABILITY - SYNC or FASTSYNC
|
@@ -8480,6 +8517,8 @@ class DatabaseDatabase(dict):
|
|
8480
8517
|
pulumi.set(__self__, "source_encryption_key_location_details", source_encryption_key_location_details)
|
8481
8518
|
if source_tde_wallet_password is not None:
|
8482
8519
|
pulumi.set(__self__, "source_tde_wallet_password", source_tde_wallet_password)
|
8520
|
+
if storage_size_details is not None:
|
8521
|
+
pulumi.set(__self__, "storage_size_details", storage_size_details)
|
8483
8522
|
if tde_wallet_password is not None:
|
8484
8523
|
pulumi.set(__self__, "tde_wallet_password", tde_wallet_password)
|
8485
8524
|
if transport_type is not None:
|
@@ -8685,6 +8724,14 @@ class DatabaseDatabase(dict):
|
|
8685
8724
|
"""
|
8686
8725
|
return pulumi.get(self, "source_tde_wallet_password")
|
8687
8726
|
|
8727
|
+
@_builtins.property
|
8728
|
+
@pulumi.getter(name="storageSizeDetails")
|
8729
|
+
def storage_size_details(self) -> Optional['outputs.DatabaseDatabaseStorageSizeDetails']:
|
8730
|
+
"""
|
8731
|
+
The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
|
8732
|
+
"""
|
8733
|
+
return pulumi.get(self, "storage_size_details")
|
8734
|
+
|
8688
8735
|
@_builtins.property
|
8689
8736
|
@pulumi.getter(name="tdeWalletPassword")
|
8690
8737
|
def tde_wallet_password(self) -> Optional[_builtins.str]:
|
@@ -9132,6 +9179,68 @@ class DatabaseDatabaseSourceEncryptionKeyLocationDetails(dict):
|
|
9132
9179
|
return pulumi.get(self, "provider_type")
|
9133
9180
|
|
9134
9181
|
|
9182
|
+
@pulumi.output_type
|
9183
|
+
class DatabaseDatabaseStorageSizeDetails(dict):
|
9184
|
+
@staticmethod
|
9185
|
+
def __key_warning(key: str):
|
9186
|
+
suggest = None
|
9187
|
+
if key == "dataStorageSizeInGb":
|
9188
|
+
suggest = "data_storage_size_in_gb"
|
9189
|
+
elif key == "recoStorageSizeInGbs":
|
9190
|
+
suggest = "reco_storage_size_in_gbs"
|
9191
|
+
elif key == "redoLogStorageSizeInGbs":
|
9192
|
+
suggest = "redo_log_storage_size_in_gbs"
|
9193
|
+
|
9194
|
+
if suggest:
|
9195
|
+
pulumi.log.warn(f"Key '{key}' not found in DatabaseDatabaseStorageSizeDetails. Access the value via the '{suggest}' property getter instead.")
|
9196
|
+
|
9197
|
+
def __getitem__(self, key: str) -> Any:
|
9198
|
+
DatabaseDatabaseStorageSizeDetails.__key_warning(key)
|
9199
|
+
return super().__getitem__(key)
|
9200
|
+
|
9201
|
+
def get(self, key: str, default = None) -> Any:
|
9202
|
+
DatabaseDatabaseStorageSizeDetails.__key_warning(key)
|
9203
|
+
return super().get(key, default)
|
9204
|
+
|
9205
|
+
def __init__(__self__, *,
|
9206
|
+
data_storage_size_in_gb: _builtins.int,
|
9207
|
+
reco_storage_size_in_gbs: _builtins.int,
|
9208
|
+
redo_log_storage_size_in_gbs: Optional[_builtins.int] = None):
|
9209
|
+
"""
|
9210
|
+
:param _builtins.int data_storage_size_in_gb: (Updatable) The DATA storage size, in gigabytes, that is applicable for the database.
|
9211
|
+
:param _builtins.int reco_storage_size_in_gbs: (Updatable) The RECO storage size, in gigabytes, that is applicable for the database.
|
9212
|
+
:param _builtins.int redo_log_storage_size_in_gbs: The REDO Log storage size, in gigabytes, that is applicable for the database.
|
9213
|
+
"""
|
9214
|
+
pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
|
9215
|
+
pulumi.set(__self__, "reco_storage_size_in_gbs", reco_storage_size_in_gbs)
|
9216
|
+
if redo_log_storage_size_in_gbs is not None:
|
9217
|
+
pulumi.set(__self__, "redo_log_storage_size_in_gbs", redo_log_storage_size_in_gbs)
|
9218
|
+
|
9219
|
+
@_builtins.property
|
9220
|
+
@pulumi.getter(name="dataStorageSizeInGb")
|
9221
|
+
def data_storage_size_in_gb(self) -> _builtins.int:
|
9222
|
+
"""
|
9223
|
+
(Updatable) The DATA storage size, in gigabytes, that is applicable for the database.
|
9224
|
+
"""
|
9225
|
+
return pulumi.get(self, "data_storage_size_in_gb")
|
9226
|
+
|
9227
|
+
@_builtins.property
|
9228
|
+
@pulumi.getter(name="recoStorageSizeInGbs")
|
9229
|
+
def reco_storage_size_in_gbs(self) -> _builtins.int:
|
9230
|
+
"""
|
9231
|
+
(Updatable) The RECO storage size, in gigabytes, that is applicable for the database.
|
9232
|
+
"""
|
9233
|
+
return pulumi.get(self, "reco_storage_size_in_gbs")
|
9234
|
+
|
9235
|
+
@_builtins.property
|
9236
|
+
@pulumi.getter(name="redoLogStorageSizeInGbs")
|
9237
|
+
def redo_log_storage_size_in_gbs(self) -> Optional[_builtins.int]:
|
9238
|
+
"""
|
9239
|
+
The REDO Log storage size, in gigabytes, that is applicable for the database.
|
9240
|
+
"""
|
9241
|
+
return pulumi.get(self, "redo_log_storage_size_in_gbs")
|
9242
|
+
|
9243
|
+
|
9135
9244
|
@pulumi.output_type
|
9136
9245
|
class DatabaseDbBackupConfig(dict):
|
9137
9246
|
@staticmethod
|
@@ -9382,6 +9491,70 @@ class DatabaseDbBackupConfigBackupDestinationDetail(dict):
|
|
9382
9491
|
return pulumi.get(self, "vpc_user")
|
9383
9492
|
|
9384
9493
|
|
9494
|
+
@pulumi.output_type
|
9495
|
+
class DatabaseStorageSizeDetail(dict):
|
9496
|
+
@staticmethod
|
9497
|
+
def __key_warning(key: str):
|
9498
|
+
suggest = None
|
9499
|
+
if key == "dataStorageSizeInGb":
|
9500
|
+
suggest = "data_storage_size_in_gb"
|
9501
|
+
elif key == "recoStorageSizeInGbs":
|
9502
|
+
suggest = "reco_storage_size_in_gbs"
|
9503
|
+
elif key == "redoLogStorageSizeInGbs":
|
9504
|
+
suggest = "redo_log_storage_size_in_gbs"
|
9505
|
+
|
9506
|
+
if suggest:
|
9507
|
+
pulumi.log.warn(f"Key '{key}' not found in DatabaseStorageSizeDetail. Access the value via the '{suggest}' property getter instead.")
|
9508
|
+
|
9509
|
+
def __getitem__(self, key: str) -> Any:
|
9510
|
+
DatabaseStorageSizeDetail.__key_warning(key)
|
9511
|
+
return super().__getitem__(key)
|
9512
|
+
|
9513
|
+
def get(self, key: str, default = None) -> Any:
|
9514
|
+
DatabaseStorageSizeDetail.__key_warning(key)
|
9515
|
+
return super().get(key, default)
|
9516
|
+
|
9517
|
+
def __init__(__self__, *,
|
9518
|
+
data_storage_size_in_gb: Optional[_builtins.int] = None,
|
9519
|
+
reco_storage_size_in_gbs: Optional[_builtins.int] = None,
|
9520
|
+
redo_log_storage_size_in_gbs: Optional[_builtins.int] = None):
|
9521
|
+
"""
|
9522
|
+
:param _builtins.int data_storage_size_in_gb: The DATA storage size, in gigabytes, that is applicable for the database.
|
9523
|
+
:param _builtins.int reco_storage_size_in_gbs: The RECO storage size, in gigabytes, that is applicable for the database.
|
9524
|
+
:param _builtins.int redo_log_storage_size_in_gbs: The REDO Log storage size, in gigabytes, that is applicable for the database.
|
9525
|
+
"""
|
9526
|
+
if data_storage_size_in_gb is not None:
|
9527
|
+
pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
|
9528
|
+
if reco_storage_size_in_gbs is not None:
|
9529
|
+
pulumi.set(__self__, "reco_storage_size_in_gbs", reco_storage_size_in_gbs)
|
9530
|
+
if redo_log_storage_size_in_gbs is not None:
|
9531
|
+
pulumi.set(__self__, "redo_log_storage_size_in_gbs", redo_log_storage_size_in_gbs)
|
9532
|
+
|
9533
|
+
@_builtins.property
|
9534
|
+
@pulumi.getter(name="dataStorageSizeInGb")
|
9535
|
+
def data_storage_size_in_gb(self) -> Optional[_builtins.int]:
|
9536
|
+
"""
|
9537
|
+
The DATA storage size, in gigabytes, that is applicable for the database.
|
9538
|
+
"""
|
9539
|
+
return pulumi.get(self, "data_storage_size_in_gb")
|
9540
|
+
|
9541
|
+
@_builtins.property
|
9542
|
+
@pulumi.getter(name="recoStorageSizeInGbs")
|
9543
|
+
def reco_storage_size_in_gbs(self) -> Optional[_builtins.int]:
|
9544
|
+
"""
|
9545
|
+
The RECO storage size, in gigabytes, that is applicable for the database.
|
9546
|
+
"""
|
9547
|
+
return pulumi.get(self, "reco_storage_size_in_gbs")
|
9548
|
+
|
9549
|
+
@_builtins.property
|
9550
|
+
@pulumi.getter(name="redoLogStorageSizeInGbs")
|
9551
|
+
def redo_log_storage_size_in_gbs(self) -> Optional[_builtins.int]:
|
9552
|
+
"""
|
9553
|
+
The REDO Log storage size, in gigabytes, that is applicable for the database.
|
9554
|
+
"""
|
9555
|
+
return pulumi.get(self, "redo_log_storage_size_in_gbs")
|
9556
|
+
|
9557
|
+
|
9385
9558
|
@pulumi.output_type
|
9386
9559
|
class DatabaseUpgradeConnectionString(dict):
|
9387
9560
|
@staticmethod
|
@@ -10051,6 +10224,8 @@ class DbHomeDatabase(dict):
|
|
10051
10224
|
suggest = "pluggable_databases"
|
10052
10225
|
elif key == "sidPrefix":
|
10053
10226
|
suggest = "sid_prefix"
|
10227
|
+
elif key == "storageSizeDetails":
|
10228
|
+
suggest = "storage_size_details"
|
10054
10229
|
elif key == "tdeWalletPassword":
|
10055
10230
|
suggest = "tde_wallet_password"
|
10056
10231
|
elif key == "timeCreated":
|
@@ -10097,6 +10272,7 @@ class DbHomeDatabase(dict):
|
|
10097
10272
|
pluggable_databases: Optional[Sequence[_builtins.str]] = None,
|
10098
10273
|
sid_prefix: Optional[_builtins.str] = None,
|
10099
10274
|
state: Optional[_builtins.str] = None,
|
10275
|
+
storage_size_details: Optional['outputs.DbHomeDatabaseStorageSizeDetails'] = None,
|
10100
10276
|
tde_wallet_password: Optional[_builtins.str] = None,
|
10101
10277
|
time_created: Optional[_builtins.str] = None,
|
10102
10278
|
time_stamp_for_point_in_time_recovery: Optional[_builtins.str] = None,
|
@@ -10129,6 +10305,7 @@ class DbHomeDatabase(dict):
|
|
10129
10305
|
:param Sequence[_builtins.str] pluggable_databases: The list of pluggable databases that needs to be restored into new database.
|
10130
10306
|
:param _builtins.str sid_prefix: Specifies a prefix for the `Oracle SID` of the database to be created.
|
10131
10307
|
:param _builtins.str state: The current state of the Database Home.
|
10308
|
+
:param 'DbHomeDatabaseStorageSizeDetailsArgs' storage_size_details: The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
|
10132
10309
|
:param _builtins.str tde_wallet_password: The optional password to open the TDE wallet. The password must be at least nine characters and contain at least two uppercase, two lowercase, two numeric, and two special characters. The special characters must be _, \\#, or -.
|
10133
10310
|
:param _builtins.str time_created: The date and time the Database Home was created.
|
10134
10311
|
:param _builtins.str time_stamp_for_point_in_time_recovery: The point in time of the original database from which the new database is created. If not specifed, the latest backup is used to create the database.
|
@@ -10183,6 +10360,8 @@ class DbHomeDatabase(dict):
|
|
10183
10360
|
pulumi.set(__self__, "sid_prefix", sid_prefix)
|
10184
10361
|
if state is not None:
|
10185
10362
|
pulumi.set(__self__, "state", state)
|
10363
|
+
if storage_size_details is not None:
|
10364
|
+
pulumi.set(__self__, "storage_size_details", storage_size_details)
|
10186
10365
|
if tde_wallet_password is not None:
|
10187
10366
|
pulumi.set(__self__, "tde_wallet_password", tde_wallet_password)
|
10188
10367
|
if time_created is not None:
|
@@ -10390,6 +10569,14 @@ class DbHomeDatabase(dict):
|
|
10390
10569
|
"""
|
10391
10570
|
return pulumi.get(self, "state")
|
10392
10571
|
|
10572
|
+
@_builtins.property
|
10573
|
+
@pulumi.getter(name="storageSizeDetails")
|
10574
|
+
def storage_size_details(self) -> Optional['outputs.DbHomeDatabaseStorageSizeDetails']:
|
10575
|
+
"""
|
10576
|
+
The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
|
10577
|
+
"""
|
10578
|
+
return pulumi.get(self, "storage_size_details")
|
10579
|
+
|
10393
10580
|
@_builtins.property
|
10394
10581
|
@pulumi.getter(name="tdeWalletPassword")
|
10395
10582
|
def tde_wallet_password(self) -> Optional[_builtins.str]:
|
@@ -10782,6 +10969,64 @@ class DbHomeDatabaseEncryptionKeyLocationDetails(dict):
|
|
10782
10969
|
return pulumi.get(self, "hsm_password")
|
10783
10970
|
|
10784
10971
|
|
10972
|
+
@pulumi.output_type
|
10973
|
+
class DbHomeDatabaseStorageSizeDetails(dict):
|
10974
|
+
@staticmethod
|
10975
|
+
def __key_warning(key: str):
|
10976
|
+
suggest = None
|
10977
|
+
if key == "dataStorageSizeInGb":
|
10978
|
+
suggest = "data_storage_size_in_gb"
|
10979
|
+
elif key == "recoStorageSizeInGbs":
|
10980
|
+
suggest = "reco_storage_size_in_gbs"
|
10981
|
+
elif key == "redoLogStorageSizeInGbs":
|
10982
|
+
suggest = "redo_log_storage_size_in_gbs"
|
10983
|
+
|
10984
|
+
if suggest:
|
10985
|
+
pulumi.log.warn(f"Key '{key}' not found in DbHomeDatabaseStorageSizeDetails. Access the value via the '{suggest}' property getter instead.")
|
10986
|
+
|
10987
|
+
def __getitem__(self, key: str) -> Any:
|
10988
|
+
DbHomeDatabaseStorageSizeDetails.__key_warning(key)
|
10989
|
+
return super().__getitem__(key)
|
10990
|
+
|
10991
|
+
def get(self, key: str, default = None) -> Any:
|
10992
|
+
DbHomeDatabaseStorageSizeDetails.__key_warning(key)
|
10993
|
+
return super().get(key, default)
|
10994
|
+
|
10995
|
+
def __init__(__self__, *,
|
10996
|
+
data_storage_size_in_gb: _builtins.int,
|
10997
|
+
reco_storage_size_in_gbs: _builtins.int,
|
10998
|
+
redo_log_storage_size_in_gbs: Optional[_builtins.int] = None):
|
10999
|
+
"""
|
11000
|
+
:param _builtins.int data_storage_size_in_gb: The DATA storage size, in gigabytes, that is applicable for the database.
|
11001
|
+
:param _builtins.int reco_storage_size_in_gbs: The RECO storage size, in gigabytes, that is applicable for the database.
|
11002
|
+
"""
|
11003
|
+
pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
|
11004
|
+
pulumi.set(__self__, "reco_storage_size_in_gbs", reco_storage_size_in_gbs)
|
11005
|
+
if redo_log_storage_size_in_gbs is not None:
|
11006
|
+
pulumi.set(__self__, "redo_log_storage_size_in_gbs", redo_log_storage_size_in_gbs)
|
11007
|
+
|
11008
|
+
@_builtins.property
|
11009
|
+
@pulumi.getter(name="dataStorageSizeInGb")
|
11010
|
+
def data_storage_size_in_gb(self) -> _builtins.int:
|
11011
|
+
"""
|
11012
|
+
The DATA storage size, in gigabytes, that is applicable for the database.
|
11013
|
+
"""
|
11014
|
+
return pulumi.get(self, "data_storage_size_in_gb")
|
11015
|
+
|
11016
|
+
@_builtins.property
|
11017
|
+
@pulumi.getter(name="recoStorageSizeInGbs")
|
11018
|
+
def reco_storage_size_in_gbs(self) -> _builtins.int:
|
11019
|
+
"""
|
11020
|
+
The RECO storage size, in gigabytes, that is applicable for the database.
|
11021
|
+
"""
|
11022
|
+
return pulumi.get(self, "reco_storage_size_in_gbs")
|
11023
|
+
|
11024
|
+
@_builtins.property
|
11025
|
+
@pulumi.getter(name="redoLogStorageSizeInGbs")
|
11026
|
+
def redo_log_storage_size_in_gbs(self) -> Optional[_builtins.int]:
|
11027
|
+
return pulumi.get(self, "redo_log_storage_size_in_gbs")
|
11028
|
+
|
11029
|
+
|
10785
11030
|
@pulumi.output_type
|
10786
11031
|
class DbSystemDataCollectionOptions(dict):
|
10787
11032
|
@staticmethod
|
@@ -11658,10 +11903,8 @@ class DbSystemDbHomeDatabaseDbBackupConfigBackupDestinationDetail(dict):
|
|
11658
11903
|
"""
|
11659
11904
|
:param _builtins.str dbrs_policy_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
|
11660
11905
|
:param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup destination.
|
11661
|
-
:param _builtins.bool is_remote: Indicates whether the backup destination is cross-region or local
|
11662
|
-
:param _builtins.str remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
|
11663
|
-
|
11664
|
-
For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
|
11906
|
+
:param _builtins.bool is_remote: Indicates whether the backup destination is cross-region or local.
|
11907
|
+
:param _builtins.str remote_region: The name of the remote region where the remote automatic incremental backups will be stored. For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
|
11665
11908
|
:param _builtins.str type: Type of the database backup destination.
|
11666
11909
|
"""
|
11667
11910
|
if dbrs_policy_id is not None:
|
@@ -11695,7 +11938,7 @@ class DbSystemDbHomeDatabaseDbBackupConfigBackupDestinationDetail(dict):
|
|
11695
11938
|
@pulumi.getter(name="isRemote")
|
11696
11939
|
def is_remote(self) -> Optional[_builtins.bool]:
|
11697
11940
|
"""
|
11698
|
-
Indicates whether the backup destination is cross-region or local
|
11941
|
+
Indicates whether the backup destination is cross-region or local.
|
11699
11942
|
"""
|
11700
11943
|
return pulumi.get(self, "is_remote")
|
11701
11944
|
|
@@ -11703,9 +11946,7 @@ class DbSystemDbHomeDatabaseDbBackupConfigBackupDestinationDetail(dict):
|
|
11703
11946
|
@pulumi.getter(name="remoteRegion")
|
11704
11947
|
def remote_region(self) -> Optional[_builtins.str]:
|
11705
11948
|
"""
|
11706
|
-
The name of the remote region where the remote automatic incremental backups will be stored.
|
11707
|
-
|
11708
|
-
For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
|
11949
|
+
The name of the remote region where the remote automatic incremental backups will be stored. For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
|
11709
11950
|
"""
|
11710
11951
|
return pulumi.get(self, "remote_region")
|
11711
11952
|
|
@@ -15256,6 +15497,8 @@ class KeyStoreAssociatedDatabase(dict):
|
|
15256
15497
|
suggest = None
|
15257
15498
|
if key == "dbName":
|
15258
15499
|
suggest = "db_name"
|
15500
|
+
elif key == "dbUniqueName":
|
15501
|
+
suggest = "db_unique_name"
|
15259
15502
|
|
15260
15503
|
if suggest:
|
15261
15504
|
pulumi.log.warn(f"Key '{key}' not found in KeyStoreAssociatedDatabase. Access the value via the '{suggest}' property getter instead.")
|
@@ -15270,13 +15513,17 @@ class KeyStoreAssociatedDatabase(dict):
|
|
15270
15513
|
|
15271
15514
|
def __init__(__self__, *,
|
15272
15515
|
db_name: Optional[_builtins.str] = None,
|
15516
|
+
db_unique_name: Optional[_builtins.str] = None,
|
15273
15517
|
id: Optional[_builtins.str] = None):
|
15274
15518
|
"""
|
15275
15519
|
:param _builtins.str db_name: The name of the database that is associated with the key store.
|
15520
|
+
:param _builtins.str db_unique_name: The unique name of the database that is associated with the key store.
|
15276
15521
|
:param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
|
15277
15522
|
"""
|
15278
15523
|
if db_name is not None:
|
15279
15524
|
pulumi.set(__self__, "db_name", db_name)
|
15525
|
+
if db_unique_name is not None:
|
15526
|
+
pulumi.set(__self__, "db_unique_name", db_unique_name)
|
15280
15527
|
if id is not None:
|
15281
15528
|
pulumi.set(__self__, "id", id)
|
15282
15529
|
|
@@ -15288,6 +15535,14 @@ class KeyStoreAssociatedDatabase(dict):
|
|
15288
15535
|
"""
|
15289
15536
|
return pulumi.get(self, "db_name")
|
15290
15537
|
|
15538
|
+
@_builtins.property
|
15539
|
+
@pulumi.getter(name="dbUniqueName")
|
15540
|
+
def db_unique_name(self) -> Optional[_builtins.str]:
|
15541
|
+
"""
|
15542
|
+
The unique name of the database that is associated with the key store.
|
15543
|
+
"""
|
15544
|
+
return pulumi.get(self, "db_unique_name")
|
15545
|
+
|
15291
15546
|
@_builtins.property
|
15292
15547
|
@pulumi.getter
|
15293
15548
|
def id(self) -> Optional[_builtins.str]:
|
@@ -15741,6 +15996,8 @@ class PluggableDatabasePdbCreationTypeDetails(dict):
|
|
15741
15996
|
suggest = "refreshable_clone_details"
|
15742
15997
|
elif key == "sourceContainerDatabaseAdminPassword":
|
15743
15998
|
suggest = "source_container_database_admin_password"
|
15999
|
+
elif key == "sourcePluggableDatabaseSnapshotId":
|
16000
|
+
suggest = "source_pluggable_database_snapshot_id"
|
15744
16001
|
|
15745
16002
|
if suggest:
|
15746
16003
|
pulumi.log.warn(f"Key '{key}' not found in PluggableDatabasePdbCreationTypeDetails. Access the value via the '{suggest}' property getter instead.")
|
@@ -15760,7 +16017,8 @@ class PluggableDatabasePdbCreationTypeDetails(dict):
|
|
15760
16017
|
dblink_username: Optional[_builtins.str] = None,
|
15761
16018
|
is_thin_clone: Optional[_builtins.bool] = None,
|
15762
16019
|
refreshable_clone_details: Optional['outputs.PluggableDatabasePdbCreationTypeDetailsRefreshableCloneDetails'] = None,
|
15763
|
-
source_container_database_admin_password: Optional[_builtins.str] = None
|
16020
|
+
source_container_database_admin_password: Optional[_builtins.str] = None,
|
16021
|
+
source_pluggable_database_snapshot_id: Optional[_builtins.str] = None):
|
15764
16022
|
"""
|
15765
16023
|
:param _builtins.str creation_type: The Pluggable Database creation type.
|
15766
16024
|
:param _builtins.str source_pluggable_database_id: The OCID of the Source Pluggable Database.
|
@@ -15769,6 +16027,7 @@ class PluggableDatabasePdbCreationTypeDetails(dict):
|
|
15769
16027
|
:param _builtins.bool is_thin_clone: True if Pluggable Database needs to be thin cloned and false if Pluggable Database needs to be thick cloned.
|
15770
16028
|
:param 'PluggableDatabasePdbCreationTypeDetailsRefreshableCloneDetailsArgs' refreshable_clone_details: Parameters for creating Pluggable Database Refreshable Clone. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
|
15771
16029
|
:param _builtins.str source_container_database_admin_password: The DB system administrator password of the source Container Database.
|
16030
|
+
:param _builtins.str source_pluggable_database_snapshot_id: The OCID of the Source Pluggable Database Snapshot id.
|
15772
16031
|
"""
|
15773
16032
|
pulumi.set(__self__, "creation_type", creation_type)
|
15774
16033
|
pulumi.set(__self__, "source_pluggable_database_id", source_pluggable_database_id)
|
@@ -15782,6 +16041,8 @@ class PluggableDatabasePdbCreationTypeDetails(dict):
|
|
15782
16041
|
pulumi.set(__self__, "refreshable_clone_details", refreshable_clone_details)
|
15783
16042
|
if source_container_database_admin_password is not None:
|
15784
16043
|
pulumi.set(__self__, "source_container_database_admin_password", source_container_database_admin_password)
|
16044
|
+
if source_pluggable_database_snapshot_id is not None:
|
16045
|
+
pulumi.set(__self__, "source_pluggable_database_snapshot_id", source_pluggable_database_snapshot_id)
|
15785
16046
|
|
15786
16047
|
@_builtins.property
|
15787
16048
|
@pulumi.getter(name="creationType")
|
@@ -15839,6 +16100,14 @@ class PluggableDatabasePdbCreationTypeDetails(dict):
|
|
15839
16100
|
"""
|
15840
16101
|
return pulumi.get(self, "source_container_database_admin_password")
|
15841
16102
|
|
16103
|
+
@_builtins.property
|
16104
|
+
@pulumi.getter(name="sourcePluggableDatabaseSnapshotId")
|
16105
|
+
def source_pluggable_database_snapshot_id(self) -> Optional[_builtins.str]:
|
16106
|
+
"""
|
16107
|
+
The OCID of the Source Pluggable Database Snapshot id.
|
16108
|
+
"""
|
16109
|
+
return pulumi.get(self, "source_pluggable_database_snapshot_id")
|
16110
|
+
|
15842
16111
|
|
15843
16112
|
@pulumi.output_type
|
15844
16113
|
class PluggableDatabasePdbCreationTypeDetailsRefreshableCloneDetails(dict):
|
@@ -18652,6 +18921,24 @@ class GetAutonomousContainerDatabaseBackupsFilterResult(dict):
|
|
18652
18921
|
return pulumi.get(self, "regex")
|
18653
18922
|
|
18654
18923
|
|
18924
|
+
@pulumi.output_type
|
18925
|
+
class GetAutonomousContainerDatabaseCustomerContactResult(dict):
|
18926
|
+
def __init__(__self__, *,
|
18927
|
+
email: _builtins.str):
|
18928
|
+
"""
|
18929
|
+
:param _builtins.str email: The email address used by Oracle to send notifications regarding databases and infrastructure.
|
18930
|
+
"""
|
18931
|
+
pulumi.set(__self__, "email", email)
|
18932
|
+
|
18933
|
+
@_builtins.property
|
18934
|
+
@pulumi.getter
|
18935
|
+
def email(self) -> _builtins.str:
|
18936
|
+
"""
|
18937
|
+
The email address used by Oracle to send notifications regarding databases and infrastructure.
|
18938
|
+
"""
|
18939
|
+
return pulumi.get(self, "email")
|
18940
|
+
|
18941
|
+
|
18655
18942
|
@pulumi.output_type
|
18656
18943
|
class GetAutonomousContainerDatabaseDataguardResult(dict):
|
18657
18944
|
def __init__(__self__, *,
|
@@ -20248,6 +20535,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
20248
20535
|
cloud_autonomous_vm_cluster_id: _builtins.str,
|
20249
20536
|
compartment_id: _builtins.str,
|
20250
20537
|
compute_model: _builtins.str,
|
20538
|
+
customer_contacts: Sequence['outputs.GetAutonomousContainerDatabasesAutonomousContainerDatabaseCustomerContactResult'],
|
20251
20539
|
database_software_image_id: _builtins.str,
|
20252
20540
|
dataguard_group_members: Sequence['outputs.GetAutonomousContainerDatabasesAutonomousContainerDatabaseDataguardGroupMemberResult'],
|
20253
20541
|
dataguards: Sequence['outputs.GetAutonomousContainerDatabasesAutonomousContainerDatabaseDataguardResult'],
|
@@ -20283,6 +20571,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
20283
20571
|
memory_per_oracle_compute_unit_in_gbs: _builtins.int,
|
20284
20572
|
net_services_architecture: _builtins.str,
|
20285
20573
|
next_maintenance_run_id: _builtins.str,
|
20574
|
+
okv_end_point_group_name: _builtins.str,
|
20286
20575
|
patch_id: _builtins.str,
|
20287
20576
|
patch_model: _builtins.str,
|
20288
20577
|
peer_autonomous_container_database_backup_configs: Sequence['outputs.GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigResult'],
|
@@ -20325,6 +20614,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
20325
20614
|
:param _builtins.str cloud_autonomous_vm_cluster_id: The cloud Autonomous VM Cluster [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
20326
20615
|
:param _builtins.str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
20327
20616
|
:param _builtins.str compute_model: The compute model of the Autonomous Container Database. For Autonomous Database on Dedicated Exadata Infrastructure, the CPU type (ECPUs or OCPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. ECPU compute model is the recommended model and OCPU compute model is legacy. See [Compute Models in Autonomous Database on Dedicated Exadata Infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/adbak) for more details.
|
20617
|
+
:param Sequence['GetAutonomousContainerDatabasesAutonomousContainerDatabaseCustomerContactArgs'] customer_contacts: Customer Contacts. Setting this to an empty list removes all customer contacts.
|
20328
20618
|
:param Sequence['GetAutonomousContainerDatabasesAutonomousContainerDatabaseDataguardGroupMemberArgs'] dataguard_group_members: Array of Dg associations.
|
20329
20619
|
:param Sequence['GetAutonomousContainerDatabasesAutonomousContainerDatabaseDataguardArgs'] dataguards: The properties that define Autonomous Container Databases Dataguard.
|
20330
20620
|
:param _builtins.str db_name: The Database name for the Autonomous Container Database. The name must be unique within the Cloud Autonomous VM Cluster, starting with an alphabetic character, followed by 1 to 7 alphanumeric characters.
|
@@ -20355,6 +20645,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
20355
20645
|
:param _builtins.int memory_per_oracle_compute_unit_in_gbs: The amount of memory (in GBs) enabled per ECPU or OCPU in the Autonomous VM Cluster.
|
20356
20646
|
:param _builtins.str net_services_architecture: Enabling SHARED server architecture enables a database server to allow many client processes to share very few server processes, thereby increasing the number of supported users.
|
20357
20647
|
:param _builtins.str next_maintenance_run_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the next maintenance run.
|
20648
|
+
:param _builtins.str okv_end_point_group_name: The OKV End Point Group name for the Autonomous Container Database.
|
20358
20649
|
:param _builtins.str patch_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last patch applied on the system.
|
20359
20650
|
:param _builtins.str patch_model: Database patch model preference.
|
20360
20651
|
:param _builtins.str protection_mode: The protection mode of this Autonomous Data Guard association. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
|
@@ -20387,6 +20678,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
20387
20678
|
pulumi.set(__self__, "cloud_autonomous_vm_cluster_id", cloud_autonomous_vm_cluster_id)
|
20388
20679
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
20389
20680
|
pulumi.set(__self__, "compute_model", compute_model)
|
20681
|
+
pulumi.set(__self__, "customer_contacts", customer_contacts)
|
20390
20682
|
pulumi.set(__self__, "database_software_image_id", database_software_image_id)
|
20391
20683
|
pulumi.set(__self__, "dataguard_group_members", dataguard_group_members)
|
20392
20684
|
pulumi.set(__self__, "dataguards", dataguards)
|
@@ -20422,6 +20714,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
20422
20714
|
pulumi.set(__self__, "memory_per_oracle_compute_unit_in_gbs", memory_per_oracle_compute_unit_in_gbs)
|
20423
20715
|
pulumi.set(__self__, "net_services_architecture", net_services_architecture)
|
20424
20716
|
pulumi.set(__self__, "next_maintenance_run_id", next_maintenance_run_id)
|
20717
|
+
pulumi.set(__self__, "okv_end_point_group_name", okv_end_point_group_name)
|
20425
20718
|
pulumi.set(__self__, "patch_id", patch_id)
|
20426
20719
|
pulumi.set(__self__, "patch_model", patch_model)
|
20427
20720
|
pulumi.set(__self__, "peer_autonomous_container_database_backup_configs", peer_autonomous_container_database_backup_configs)
|
@@ -20539,6 +20832,14 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
20539
20832
|
"""
|
20540
20833
|
return pulumi.get(self, "compute_model")
|
20541
20834
|
|
20835
|
+
@_builtins.property
|
20836
|
+
@pulumi.getter(name="customerContacts")
|
20837
|
+
def customer_contacts(self) -> Sequence['outputs.GetAutonomousContainerDatabasesAutonomousContainerDatabaseCustomerContactResult']:
|
20838
|
+
"""
|
20839
|
+
Customer Contacts. Setting this to an empty list removes all customer contacts.
|
20840
|
+
"""
|
20841
|
+
return pulumi.get(self, "customer_contacts")
|
20842
|
+
|
20542
20843
|
@_builtins.property
|
20543
20844
|
@pulumi.getter(name="databaseSoftwareImageId")
|
20544
20845
|
def database_software_image_id(self) -> _builtins.str:
|
@@ -20804,6 +21105,14 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
20804
21105
|
"""
|
20805
21106
|
return pulumi.get(self, "next_maintenance_run_id")
|
20806
21107
|
|
21108
|
+
@_builtins.property
|
21109
|
+
@pulumi.getter(name="okvEndPointGroupName")
|
21110
|
+
def okv_end_point_group_name(self) -> _builtins.str:
|
21111
|
+
"""
|
21112
|
+
The OKV End Point Group name for the Autonomous Container Database.
|
21113
|
+
"""
|
21114
|
+
return pulumi.get(self, "okv_end_point_group_name")
|
21115
|
+
|
20807
21116
|
@_builtins.property
|
20808
21117
|
@pulumi.getter(name="patchId")
|
20809
21118
|
def patch_id(self) -> _builtins.str:
|
@@ -21290,6 +21599,24 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupDestinatio
|
|
21290
21599
|
return pulumi.get(self, "time_at_which_storage_details_are_updated")
|
21291
21600
|
|
21292
21601
|
|
21602
|
+
@pulumi.output_type
|
21603
|
+
class GetAutonomousContainerDatabasesAutonomousContainerDatabaseCustomerContactResult(dict):
|
21604
|
+
def __init__(__self__, *,
|
21605
|
+
email: _builtins.str):
|
21606
|
+
"""
|
21607
|
+
:param _builtins.str email: The email address used by Oracle to send notifications regarding databases and infrastructure.
|
21608
|
+
"""
|
21609
|
+
pulumi.set(__self__, "email", email)
|
21610
|
+
|
21611
|
+
@_builtins.property
|
21612
|
+
@pulumi.getter
|
21613
|
+
def email(self) -> _builtins.str:
|
21614
|
+
"""
|
21615
|
+
The email address used by Oracle to send notifications regarding databases and infrastructure.
|
21616
|
+
"""
|
21617
|
+
return pulumi.get(self, "email")
|
21618
|
+
|
21619
|
+
|
21293
21620
|
@pulumi.output_type
|
21294
21621
|
class GetAutonomousContainerDatabasesAutonomousContainerDatabaseDataguardResult(dict):
|
21295
21622
|
def __init__(__self__, *,
|
@@ -24819,6 +25146,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
24819
25146
|
is_data_guard_enabled: _builtins.bool,
|
24820
25147
|
is_dedicated: _builtins.bool,
|
24821
25148
|
is_dev_tier: _builtins.bool,
|
25149
|
+
is_disable_db_version_upgrade_schedule: _builtins.bool,
|
24822
25150
|
is_disconnect_peer: _builtins.bool,
|
24823
25151
|
is_free_tier: _builtins.bool,
|
24824
25152
|
is_local_data_guard_enabled: _builtins.bool,
|
@@ -24829,6 +25157,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
24829
25157
|
is_refreshable_clone: _builtins.bool,
|
24830
25158
|
is_remote_data_guard_enabled: _builtins.bool,
|
24831
25159
|
is_replicate_automatic_backups: _builtins.bool,
|
25160
|
+
is_schedule_db_version_upgrade_to_earliest: _builtins.bool,
|
24832
25161
|
is_shrink_only: _builtins.bool,
|
24833
25162
|
key_history_entries: Sequence['outputs.GetAutonomousDatabasesAutonomousDatabaseKeyHistoryEntryResult'],
|
24834
25163
|
key_store_id: _builtins.str,
|
@@ -24891,6 +25220,8 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
24891
25220
|
time_data_guard_role_changed: _builtins.str,
|
24892
25221
|
time_deletion_of_free_autonomous_database: _builtins.str,
|
24893
25222
|
time_disaster_recovery_role_changed: _builtins.str,
|
25223
|
+
time_earliest_available_db_version_upgrade: _builtins.str,
|
25224
|
+
time_latest_available_db_version_upgrade: _builtins.str,
|
24894
25225
|
time_local_data_guard_enabled: _builtins.str,
|
24895
25226
|
time_maintenance_begin: _builtins.str,
|
24896
25227
|
time_maintenance_end: _builtins.str,
|
@@ -24902,6 +25233,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
24902
25233
|
time_of_last_switchover: _builtins.str,
|
24903
25234
|
time_of_next_refresh: _builtins.str,
|
24904
25235
|
time_reclamation_of_free_autonomous_database: _builtins.str,
|
25236
|
+
time_scheduled_db_version_upgrade: _builtins.str,
|
24905
25237
|
time_undeleted: _builtins.str,
|
24906
25238
|
time_until_reconnect_clone_enabled: _builtins.str,
|
24907
25239
|
timestamp: _builtins.str,
|
@@ -24923,7 +25255,8 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
24923
25255
|
:param _builtins.str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
24924
25256
|
:param Sequence[_builtins.str] available_upgrade_versions: List of Oracle Database versions available for a database upgrade. If there are no version upgrades available, this list is empty.
|
24925
25257
|
:param Sequence['GetAutonomousDatabasesAutonomousDatabaseBackupConfigArgs'] backup_configs: Autonomous Database configuration details for storing [manual backups](https://docs.oracle.com/en/cloud/paas/autonomous-database/adbsa/backup-restore.html#GUID-9035DFB8-4702-4CEB-8281-C2A303820809) in the [Object Storage](https://docs.cloud.oracle.com/iaas/Content/Object/Concepts/objectstorageoverview.htm) service.
|
24926
|
-
:param _builtins.int backup_retention_period_in_days: Retention period, in days, for backups
|
25258
|
+
:param _builtins.int backup_retention_period_in_days: Retention period, in days, for long-term backups
|
25259
|
+
:param _builtins.float byol_compute_count_limit: The maximum number of CPUs allowed with a Bring Your Own License (BYOL), including those used for auto-scaling, disaster recovery, tools, etc. Any CPU usage above this limit is considered as License Included and billed.
|
24927
25260
|
:param _builtins.str character_set: The character set for the autonomous database. The default is AL32UTF8. Allowed values are:
|
24928
25261
|
:param Sequence[_builtins.int] clone_table_space_lists: A list of the source Autonomous Database's table space number(s) used to create this partial clone from the backup.
|
24929
25262
|
:param _builtins.str cluster_placement_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group of the Autonomous Serverless Database.
|
@@ -24948,7 +25281,6 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
24948
25281
|
:param _builtins.str disaster_recovery_region_type: **Deprecated.** The disaster recovery (DR) region type of the Autonomous Database. For Autonomous Database Serverless instances, DR associations have designated primary and standby regions. These region types do not change when the database changes roles. The standby region in DR associations can be the same region as the primary region, or they can be in a remote regions. Some database administration operations may be available only in the primary region of the DR association, and cannot be performed when the database using the primary role is operating in a remote region.
|
24949
25282
|
:param _builtins.str disaster_recovery_type: Indicates the disaster recovery (DR) type of the Autonomous Database Serverless instance. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
|
24950
25283
|
:param _builtins.str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
24951
|
-
:param _builtins.bool enable_delete_scheduled_operations: If omitted or set to false the provider will not delete scheduled_operations from the Autonomous Database. If set to true, provider will delete scheduled_operations from the Autonomous Database.
|
24952
25284
|
:param Sequence['GetAutonomousDatabasesAutonomousDatabaseEncryptionKeyHistoryEntryArgs'] encryption_key_history_entries: Key History Entry.
|
24953
25285
|
:param Sequence['GetAutonomousDatabasesAutonomousDatabaseEncryptionKeyArgs'] encryption_keys: Details of the Autonomous Database encryption key.
|
24954
25286
|
:param _builtins.int failed_data_recovery_in_seconds: Indicates the number of seconds of data loss for a Data Guard failover.
|
@@ -24963,9 +25295,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
24963
25295
|
:param _builtins.bool is_backup_retention_locked: Indicates if the Autonomous Database is backup retention locked.
|
24964
25296
|
:param _builtins.bool is_data_guard_enabled: A filter to return only resources that have Data Guard enabled.
|
24965
25297
|
:param _builtins.bool is_dedicated: True if the database uses [dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
|
24966
|
-
:param _builtins.bool is_dev_tier: Autonomous Database for Developers are
|
24967
|
-
This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, or isLocalDataGuardEnabled
|
24968
|
-
:param _builtins.bool is_disconnect_peer: If true, this will disconnect the Autonomous Database from its peer and the Autonomous Database can work permanently as a standalone database. To disconnect a cross region standby, please also provide the OCID of the standby database in the `peerDbId` parameter.
|
25298
|
+
:param _builtins.bool is_dev_tier: Autonomous Database for Developers are fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
|
24969
25299
|
:param _builtins.bool is_free_tier: Filter on the value of the resource's 'isFreeTier' property. A value of `true` returns only Always Free resources. A value of `false` excludes Always Free resources from the returned results. Omitting this parameter returns both Always Free and paid resources.
|
24970
25300
|
:param _builtins.bool is_local_data_guard_enabled: Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
24971
25301
|
:param _builtins.bool is_mtls_connection_required: Specifies if the Autonomous Database requires mTLS connections.
|
@@ -24979,7 +25309,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
24979
25309
|
:param _builtins.str key_store_wallet_name: The wallet name for Oracle Key Vault.
|
24980
25310
|
:param _builtins.str kms_key_id: The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
|
24981
25311
|
:param _builtins.str kms_key_lifecycle_details: KMS key lifecycle details.
|
24982
|
-
:param _builtins.str kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
|
25312
|
+
:param _builtins.str kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
|
24983
25313
|
:param _builtins.str license_model: The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.
|
24984
25314
|
:param _builtins.str lifecycle_details: Additional information about the current lifecycle state.
|
24985
25315
|
:param _builtins.int local_adg_auto_failover_max_data_loss_limit: Parameter that allows users to select an acceptable maximum data loss limit in seconds, up to which Automatic Failover will be triggered when necessary for a Local Autonomous Data Guard
|
@@ -24987,7 +25317,6 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
24987
25317
|
:param Sequence['GetAutonomousDatabasesAutonomousDatabaseLocalStandbyDbArgs'] local_standby_dbs: Autonomous Data Guard standby database details.
|
24988
25318
|
:param Sequence['GetAutonomousDatabasesAutonomousDatabaseLongTermBackupScheduleArgs'] long_term_backup_schedules: Details for the long-term backup schedule.
|
24989
25319
|
:param _builtins.str maintenance_target_component: The component chosen for maintenance.
|
24990
|
-
:param _builtins.int max_cpu_core_count: The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
|
24991
25320
|
:param _builtins.int memory_per_oracle_compute_unit_in_gbs: The amount of memory (in GBs) enabled per ECPU or OCPU.
|
24992
25321
|
:param _builtins.str ncharacter_set: The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
|
24993
25322
|
:param _builtins.str net_services_architecture: Enabling SHARED server architecture enables a database server to allow many client processes to share very few server processes, thereby increasing the number of supported users.
|
@@ -24997,7 +25326,6 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
24997
25326
|
:param _builtins.float ocpu_count: The number of OCPU cores to be made available to the database.
|
24998
25327
|
:param _builtins.str open_mode: Indicates the Autonomous Database mode. The database can be opened in `READ_ONLY` or `READ_WRITE` mode.
|
24999
25328
|
:param _builtins.str operations_insights_status: Status of Operations Insights for this Autonomous Database.
|
25000
|
-
:param _builtins.str peer_db_id: The database [OCIDs](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Disaster Recovery peer (source Primary) database, which is located in a different (remote) region from the current peer database.
|
25001
25329
|
:param Sequence[_builtins.str] peer_db_ids: The list of [OCIDs](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of standby databases located in Autonomous Data Guard remote regions that are associated with the source database. Note that for Autonomous Database Serverless instances, standby databases located in the same region as the source primary database do not have OCIDs.
|
25002
25330
|
:param _builtins.str permission_level: The Autonomous Database permission level. Restricted mode allows access only by admin users.
|
25003
25331
|
:param _builtins.str private_endpoint: The private endpoint for the resource.
|
@@ -25021,13 +25349,14 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
25021
25349
|
:param _builtins.str state: A filter to return only resources that match the given lifecycle state exactly.
|
25022
25350
|
:param _builtins.str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the resource is associated with.
|
25023
25351
|
:param _builtins.str subscription_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
|
25024
|
-
These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and the backup subnet.
|
25025
25352
|
:param Sequence[_builtins.str] supported_regions_to_clone_tos: The list of regions that support the creation of an Autonomous Database clone or an Autonomous Data Guard standby database.
|
25026
25353
|
:param Mapping[str, _builtins.str] system_tags: System 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).
|
25027
25354
|
:param _builtins.str time_created: The date and time the Autonomous Database was created.
|
25028
25355
|
:param _builtins.str time_data_guard_role_changed: The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.
|
25029
25356
|
:param _builtins.str time_deletion_of_free_autonomous_database: The date and time the Always Free database will be automatically deleted because of inactivity. If the database is in the STOPPED state and without activity until this time, it will be deleted.
|
25030
25357
|
:param _builtins.str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
|
25358
|
+
:param _builtins.str time_earliest_available_db_version_upgrade: The earliest(min) date and time the Autonomous Database can be scheduled to upgrade to 23ai.
|
25359
|
+
:param _builtins.str time_latest_available_db_version_upgrade: The max date and time the Autonomous Database can be scheduled to upgrade to 23ai.
|
25031
25360
|
:param _builtins.str time_local_data_guard_enabled: The date and time that Autonomous Data Guard was enabled for an Autonomous Database where the standby was provisioned in the same region as the primary database.
|
25032
25361
|
:param _builtins.str time_maintenance_begin: The date and time when maintenance will begin.
|
25033
25362
|
:param _builtins.str time_maintenance_end: The date and time when maintenance will end.
|
@@ -25039,12 +25368,13 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
25039
25368
|
:param _builtins.str time_of_last_switchover: The timestamp of the last switchover operation for the Autonomous Database.
|
25040
25369
|
:param _builtins.str time_of_next_refresh: The date and time of next refresh.
|
25041
25370
|
:param _builtins.str time_reclamation_of_free_autonomous_database: The date and time the Always Free database will be stopped because of inactivity. If this time is reached without any database activity, the database will automatically be put into the STOPPED state.
|
25371
|
+
:param _builtins.str time_scheduled_db_version_upgrade: The date and time the Autonomous Database scheduled to upgrade to 23ai.
|
25042
25372
|
:param _builtins.str time_undeleted: The date and time the Autonomous Database was most recently undeleted.
|
25043
25373
|
:param _builtins.str time_until_reconnect_clone_enabled: The time and date as an RFC3339 formatted string, e.g., 2022-01-01T12:00:00.000Z, to set the limit for a refreshable clone to be reconnected to its source database.
|
25044
25374
|
:param _builtins.float total_backup_storage_size_in_gbs: The backup storage to the database.
|
25045
25375
|
:param _builtins.int used_data_storage_size_in_gbs: The storage space consumed by Autonomous Database in GBs.
|
25046
25376
|
:param _builtins.int used_data_storage_size_in_tbs: The amount of storage that has been used for Autonomous Databases in dedicated infrastructure, in terabytes.
|
25047
|
-
:param _builtins.str vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
|
25377
|
+
:param _builtins.str vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
|
25048
25378
|
:param Sequence[_builtins.str] whitelisted_ips: The client IP access control list (ACL). This feature is available for [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance. If `arePrimaryWhitelistedIpsUsed` is 'TRUE' then Autonomous Database uses this primary's IP access control list (ACL) for the disaster recovery peer called `standbywhitelistedips`.
|
25049
25379
|
"""
|
25050
25380
|
pulumi.set(__self__, "actual_used_data_storage_size_in_tbs", actual_used_data_storage_size_in_tbs)
|
@@ -25104,6 +25434,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
25104
25434
|
pulumi.set(__self__, "is_data_guard_enabled", is_data_guard_enabled)
|
25105
25435
|
pulumi.set(__self__, "is_dedicated", is_dedicated)
|
25106
25436
|
pulumi.set(__self__, "is_dev_tier", is_dev_tier)
|
25437
|
+
pulumi.set(__self__, "is_disable_db_version_upgrade_schedule", is_disable_db_version_upgrade_schedule)
|
25107
25438
|
pulumi.set(__self__, "is_disconnect_peer", is_disconnect_peer)
|
25108
25439
|
pulumi.set(__self__, "is_free_tier", is_free_tier)
|
25109
25440
|
pulumi.set(__self__, "is_local_data_guard_enabled", is_local_data_guard_enabled)
|
@@ -25114,6 +25445,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
25114
25445
|
pulumi.set(__self__, "is_refreshable_clone", is_refreshable_clone)
|
25115
25446
|
pulumi.set(__self__, "is_remote_data_guard_enabled", is_remote_data_guard_enabled)
|
25116
25447
|
pulumi.set(__self__, "is_replicate_automatic_backups", is_replicate_automatic_backups)
|
25448
|
+
pulumi.set(__self__, "is_schedule_db_version_upgrade_to_earliest", is_schedule_db_version_upgrade_to_earliest)
|
25117
25449
|
pulumi.set(__self__, "is_shrink_only", is_shrink_only)
|
25118
25450
|
pulumi.set(__self__, "key_history_entries", key_history_entries)
|
25119
25451
|
pulumi.set(__self__, "key_store_id", key_store_id)
|
@@ -25176,6 +25508,8 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
25176
25508
|
pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
|
25177
25509
|
pulumi.set(__self__, "time_deletion_of_free_autonomous_database", time_deletion_of_free_autonomous_database)
|
25178
25510
|
pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
|
25511
|
+
pulumi.set(__self__, "time_earliest_available_db_version_upgrade", time_earliest_available_db_version_upgrade)
|
25512
|
+
pulumi.set(__self__, "time_latest_available_db_version_upgrade", time_latest_available_db_version_upgrade)
|
25179
25513
|
pulumi.set(__self__, "time_local_data_guard_enabled", time_local_data_guard_enabled)
|
25180
25514
|
pulumi.set(__self__, "time_maintenance_begin", time_maintenance_begin)
|
25181
25515
|
pulumi.set(__self__, "time_maintenance_end", time_maintenance_end)
|
@@ -25187,6 +25521,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
25187
25521
|
pulumi.set(__self__, "time_of_last_switchover", time_of_last_switchover)
|
25188
25522
|
pulumi.set(__self__, "time_of_next_refresh", time_of_next_refresh)
|
25189
25523
|
pulumi.set(__self__, "time_reclamation_of_free_autonomous_database", time_reclamation_of_free_autonomous_database)
|
25524
|
+
pulumi.set(__self__, "time_scheduled_db_version_upgrade", time_scheduled_db_version_upgrade)
|
25190
25525
|
pulumi.set(__self__, "time_undeleted", time_undeleted)
|
25191
25526
|
pulumi.set(__self__, "time_until_reconnect_clone_enabled", time_until_reconnect_clone_enabled)
|
25192
25527
|
pulumi.set(__self__, "timestamp", timestamp)
|
@@ -25304,13 +25639,16 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
25304
25639
|
@pulumi.getter(name="backupRetentionPeriodInDays")
|
25305
25640
|
def backup_retention_period_in_days(self) -> _builtins.int:
|
25306
25641
|
"""
|
25307
|
-
Retention period, in days, for backups
|
25642
|
+
Retention period, in days, for long-term backups
|
25308
25643
|
"""
|
25309
25644
|
return pulumi.get(self, "backup_retention_period_in_days")
|
25310
25645
|
|
25311
25646
|
@_builtins.property
|
25312
25647
|
@pulumi.getter(name="byolComputeCountLimit")
|
25313
25648
|
def byol_compute_count_limit(self) -> _builtins.float:
|
25649
|
+
"""
|
25650
|
+
The maximum number of CPUs allowed with a Bring Your Own License (BYOL), including those used for auto-scaling, disaster recovery, tools, etc. Any CPU usage above this limit is considered as License Included and billed.
|
25651
|
+
"""
|
25314
25652
|
return pulumi.get(self, "byol_compute_count_limit")
|
25315
25653
|
|
25316
25654
|
@_builtins.property
|
@@ -25513,9 +25851,6 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
25513
25851
|
@_builtins.property
|
25514
25852
|
@pulumi.getter(name="enableDeleteScheduledOperations")
|
25515
25853
|
def enable_delete_scheduled_operations(self) -> _builtins.bool:
|
25516
|
-
"""
|
25517
|
-
If omitted or set to false the provider will not delete scheduled_operations from the Autonomous Database. If set to true, provider will delete scheduled_operations from the Autonomous Database.
|
25518
|
-
"""
|
25519
25854
|
return pulumi.get(self, "enable_delete_scheduled_operations")
|
25520
25855
|
|
25521
25856
|
@_builtins.property
|
@@ -25634,17 +25969,18 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
25634
25969
|
@pulumi.getter(name="isDevTier")
|
25635
25970
|
def is_dev_tier(self) -> _builtins.bool:
|
25636
25971
|
"""
|
25637
|
-
Autonomous Database for Developers are
|
25638
|
-
This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, or isLocalDataGuardEnabled
|
25972
|
+
Autonomous Database for Developers are fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
|
25639
25973
|
"""
|
25640
25974
|
return pulumi.get(self, "is_dev_tier")
|
25641
25975
|
|
25976
|
+
@_builtins.property
|
25977
|
+
@pulumi.getter(name="isDisableDbVersionUpgradeSchedule")
|
25978
|
+
def is_disable_db_version_upgrade_schedule(self) -> _builtins.bool:
|
25979
|
+
return pulumi.get(self, "is_disable_db_version_upgrade_schedule")
|
25980
|
+
|
25642
25981
|
@_builtins.property
|
25643
25982
|
@pulumi.getter(name="isDisconnectPeer")
|
25644
25983
|
def is_disconnect_peer(self) -> _builtins.bool:
|
25645
|
-
"""
|
25646
|
-
If true, this will disconnect the Autonomous Database from its peer and the Autonomous Database can work permanently as a standalone database. To disconnect a cross region standby, please also provide the OCID of the standby database in the `peerDbId` parameter.
|
25647
|
-
"""
|
25648
25984
|
return pulumi.get(self, "is_disconnect_peer")
|
25649
25985
|
|
25650
25986
|
@_builtins.property
|
@@ -25716,6 +26052,11 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
25716
26052
|
"""
|
25717
26053
|
return pulumi.get(self, "is_replicate_automatic_backups")
|
25718
26054
|
|
26055
|
+
@_builtins.property
|
26056
|
+
@pulumi.getter(name="isScheduleDbVersionUpgradeToEarliest")
|
26057
|
+
def is_schedule_db_version_upgrade_to_earliest(self) -> _builtins.bool:
|
26058
|
+
return pulumi.get(self, "is_schedule_db_version_upgrade_to_earliest")
|
26059
|
+
|
25719
26060
|
@_builtins.property
|
25720
26061
|
@pulumi.getter(name="isShrinkOnly")
|
25721
26062
|
@_utilities.deprecated("""The 'is_shrink_only' field has been deprecated. Please use 'shrink_adb_trigger' instead.""")
|
@@ -25771,7 +26112,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
25771
26112
|
@pulumi.getter(name="kmsKeyVersionId")
|
25772
26113
|
def kms_key_version_id(self) -> _builtins.str:
|
25773
26114
|
"""
|
25774
|
-
The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
|
26115
|
+
The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
|
25775
26116
|
"""
|
25776
26117
|
return pulumi.get(self, "kms_key_version_id")
|
25777
26118
|
|
@@ -25834,9 +26175,6 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
25834
26175
|
@_builtins.property
|
25835
26176
|
@pulumi.getter(name="maxCpuCoreCount")
|
25836
26177
|
def max_cpu_core_count(self) -> _builtins.int:
|
25837
|
-
"""
|
25838
|
-
The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
|
25839
|
-
"""
|
25840
26178
|
return pulumi.get(self, "max_cpu_core_count")
|
25841
26179
|
|
25842
26180
|
@_builtins.property
|
@@ -25907,9 +26245,6 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
25907
26245
|
@_builtins.property
|
25908
26246
|
@pulumi.getter(name="peerDbId")
|
25909
26247
|
def peer_db_id(self) -> _builtins.str:
|
25910
|
-
"""
|
25911
|
-
The database [OCIDs](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Disaster Recovery peer (source Primary) database, which is located in a different (remote) region from the current peer database.
|
25912
|
-
"""
|
25913
26248
|
return pulumi.get(self, "peer_db_id")
|
25914
26249
|
|
25915
26250
|
@_builtins.property
|
@@ -26123,7 +26458,6 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
26123
26458
|
def subscription_id(self) -> _builtins.str:
|
26124
26459
|
"""
|
26125
26460
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
|
26126
|
-
These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and the backup subnet.
|
26127
26461
|
"""
|
26128
26462
|
return pulumi.get(self, "subscription_id")
|
26129
26463
|
|
@@ -26185,6 +26519,22 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
26185
26519
|
"""
|
26186
26520
|
return pulumi.get(self, "time_disaster_recovery_role_changed")
|
26187
26521
|
|
26522
|
+
@_builtins.property
|
26523
|
+
@pulumi.getter(name="timeEarliestAvailableDbVersionUpgrade")
|
26524
|
+
def time_earliest_available_db_version_upgrade(self) -> _builtins.str:
|
26525
|
+
"""
|
26526
|
+
The earliest(min) date and time the Autonomous Database can be scheduled to upgrade to 23ai.
|
26527
|
+
"""
|
26528
|
+
return pulumi.get(self, "time_earliest_available_db_version_upgrade")
|
26529
|
+
|
26530
|
+
@_builtins.property
|
26531
|
+
@pulumi.getter(name="timeLatestAvailableDbVersionUpgrade")
|
26532
|
+
def time_latest_available_db_version_upgrade(self) -> _builtins.str:
|
26533
|
+
"""
|
26534
|
+
The max date and time the Autonomous Database can be scheduled to upgrade to 23ai.
|
26535
|
+
"""
|
26536
|
+
return pulumi.get(self, "time_latest_available_db_version_upgrade")
|
26537
|
+
|
26188
26538
|
@_builtins.property
|
26189
26539
|
@pulumi.getter(name="timeLocalDataGuardEnabled")
|
26190
26540
|
def time_local_data_guard_enabled(self) -> _builtins.str:
|
@@ -26273,6 +26623,14 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
26273
26623
|
"""
|
26274
26624
|
return pulumi.get(self, "time_reclamation_of_free_autonomous_database")
|
26275
26625
|
|
26626
|
+
@_builtins.property
|
26627
|
+
@pulumi.getter(name="timeScheduledDbVersionUpgrade")
|
26628
|
+
def time_scheduled_db_version_upgrade(self) -> _builtins.str:
|
26629
|
+
"""
|
26630
|
+
The date and time the Autonomous Database scheduled to upgrade to 23ai.
|
26631
|
+
"""
|
26632
|
+
return pulumi.get(self, "time_scheduled_db_version_upgrade")
|
26633
|
+
|
26276
26634
|
@_builtins.property
|
26277
26635
|
@pulumi.getter(name="timeUndeleted")
|
26278
26636
|
def time_undeleted(self) -> _builtins.str:
|
@@ -26327,7 +26685,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
26327
26685
|
@pulumi.getter(name="vaultId")
|
26328
26686
|
def vault_id(self) -> _builtins.str:
|
26329
26687
|
"""
|
26330
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
|
26688
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
|
26331
26689
|
"""
|
26332
26690
|
return pulumi.get(self, "vault_id")
|
26333
26691
|
|
@@ -26487,9 +26845,10 @@ class GetAutonomousDatabasesAutonomousDatabaseConnectionStringProfileResult(dict
|
|
26487
26845
|
:param _builtins.str consumer_group: Consumer group used by the connection.
|
26488
26846
|
:param _builtins.str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
26489
26847
|
:param _builtins.str host_format: Host format used in connection string.
|
26848
|
+
:param _builtins.bool is_regional: True for a regional connection string, applicable to cross-region DG only.
|
26490
26849
|
:param _builtins.str protocol: Protocol used by the connection.
|
26491
26850
|
:param _builtins.str session_mode: Specifies whether the listener performs a direct hand-off of the session, or redirects the session. In RAC deployments where SCAN is used, sessions are redirected to a Node VIP. Use `DIRECT` for direct hand-offs. Use `REDIRECT` to redirect the session.
|
26492
|
-
:param _builtins.str syntax_format: Specifies whether the connection string is using the long (`LONG`), Easy Connect (`EZCONNECT`), or Easy Connect Plus (`EZCONNECTPLUS`) format. Autonomous
|
26851
|
+
:param _builtins.str syntax_format: Specifies whether the connection string is using the long (`LONG`), Easy Connect (`EZCONNECT`), or Easy Connect Plus (`EZCONNECTPLUS`) format. Autonomous Database Serverless instances always use the long format.
|
26493
26852
|
:param _builtins.str tls_authentication: Specifies whether the TLS handshake is using one-way (`SERVER`) or mutual (`MUTUAL`) authentication.
|
26494
26853
|
:param _builtins.str value: Connection string value.
|
26495
26854
|
"""
|
@@ -26530,6 +26889,9 @@ class GetAutonomousDatabasesAutonomousDatabaseConnectionStringProfileResult(dict
|
|
26530
26889
|
@_builtins.property
|
26531
26890
|
@pulumi.getter(name="isRegional")
|
26532
26891
|
def is_regional(self) -> _builtins.bool:
|
26892
|
+
"""
|
26893
|
+
True for a regional connection string, applicable to cross-region DG only.
|
26894
|
+
"""
|
26533
26895
|
return pulumi.get(self, "is_regional")
|
26534
26896
|
|
26535
26897
|
@_builtins.property
|
@@ -26552,7 +26914,7 @@ class GetAutonomousDatabasesAutonomousDatabaseConnectionStringProfileResult(dict
|
|
26552
26914
|
@pulumi.getter(name="syntaxFormat")
|
26553
26915
|
def syntax_format(self) -> _builtins.str:
|
26554
26916
|
"""
|
26555
|
-
Specifies whether the connection string is using the long (`LONG`), Easy Connect (`EZCONNECT`), or Easy Connect Plus (`EZCONNECTPLUS`) format. Autonomous
|
26917
|
+
Specifies whether the connection string is using the long (`LONG`), Easy Connect (`EZCONNECT`), or Easy Connect Plus (`EZCONNECTPLUS`) format. Autonomous Database Serverless instances always use the long format.
|
26556
26918
|
"""
|
26557
26919
|
return pulumi.get(self, "syntax_format")
|
26558
26920
|
|
@@ -26767,7 +27129,7 @@ class GetAutonomousDatabasesAutonomousDatabaseEncryptionKeyResult(dict):
|
|
26767
27129
|
:param _builtins.str okv_kms_key: UUID of OKV KMS Key
|
26768
27130
|
:param _builtins.str okv_uri: URI of OKV server
|
26769
27131
|
:param _builtins.str service_endpoint_uri: AWS key service endpoint URI
|
26770
|
-
:param _builtins.str vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
|
27132
|
+
:param _builtins.str vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
|
26771
27133
|
:param _builtins.str vault_uri: Azure vault URI
|
26772
27134
|
"""
|
26773
27135
|
pulumi.set(__self__, "arn_role", arn_role)
|
@@ -26885,7 +27247,7 @@ class GetAutonomousDatabasesAutonomousDatabaseEncryptionKeyResult(dict):
|
|
26885
27247
|
@pulumi.getter(name="vaultId")
|
26886
27248
|
def vault_id(self) -> _builtins.str:
|
26887
27249
|
"""
|
26888
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
|
27250
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
|
26889
27251
|
"""
|
26890
27252
|
return pulumi.get(self, "vault_id")
|
26891
27253
|
|
@@ -26957,7 +27319,7 @@ class GetAutonomousDatabasesAutonomousDatabaseEncryptionKeyHistoryEntryEncryptio
|
|
26957
27319
|
:param _builtins.str okv_kms_key: UUID of OKV KMS Key
|
26958
27320
|
:param _builtins.str okv_uri: URI of OKV server
|
26959
27321
|
:param _builtins.str service_endpoint_uri: AWS key service endpoint URI
|
26960
|
-
:param _builtins.str vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
|
27322
|
+
:param _builtins.str vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
|
26961
27323
|
:param _builtins.str vault_uri: Azure vault URI
|
26962
27324
|
"""
|
26963
27325
|
pulumi.set(__self__, "arn_role", arn_role)
|
@@ -27075,7 +27437,7 @@ class GetAutonomousDatabasesAutonomousDatabaseEncryptionKeyHistoryEntryEncryptio
|
|
27075
27437
|
@pulumi.getter(name="vaultId")
|
27076
27438
|
def vault_id(self) -> _builtins.str:
|
27077
27439
|
"""
|
27078
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
|
27440
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
|
27079
27441
|
"""
|
27080
27442
|
return pulumi.get(self, "vault_id")
|
27081
27443
|
|
@@ -27097,9 +27459,9 @@ class GetAutonomousDatabasesAutonomousDatabaseKeyHistoryEntryResult(dict):
|
|
27097
27459
|
vault_id: _builtins.str):
|
27098
27460
|
"""
|
27099
27461
|
:param _builtins.str id: The id of the Autonomous Database [Vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts) service key management history entry.
|
27100
|
-
:param _builtins.str kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
|
27462
|
+
:param _builtins.str kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
|
27101
27463
|
:param _builtins.str time_activated: The date and time the kms key activated.
|
27102
|
-
:param _builtins.str vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
|
27464
|
+
:param _builtins.str vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
|
27103
27465
|
"""
|
27104
27466
|
pulumi.set(__self__, "id", id)
|
27105
27467
|
pulumi.set(__self__, "kms_key_version_id", kms_key_version_id)
|
@@ -27118,7 +27480,7 @@ class GetAutonomousDatabasesAutonomousDatabaseKeyHistoryEntryResult(dict):
|
|
27118
27480
|
@pulumi.getter(name="kmsKeyVersionId")
|
27119
27481
|
def kms_key_version_id(self) -> _builtins.str:
|
27120
27482
|
"""
|
27121
|
-
The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
|
27483
|
+
The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
|
27122
27484
|
"""
|
27123
27485
|
return pulumi.get(self, "kms_key_version_id")
|
27124
27486
|
|
@@ -27134,7 +27496,7 @@ class GetAutonomousDatabasesAutonomousDatabaseKeyHistoryEntryResult(dict):
|
|
27134
27496
|
@pulumi.getter(name="vaultId")
|
27135
27497
|
def vault_id(self) -> _builtins.str:
|
27136
27498
|
"""
|
27137
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
|
27499
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
|
27138
27500
|
"""
|
27139
27501
|
return pulumi.get(self, "vault_id")
|
27140
27502
|
|
@@ -27745,6 +28107,8 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
27745
28107
|
time_data_guard_role_changed: _builtins.str,
|
27746
28108
|
time_deletion_of_free_autonomous_database: _builtins.str,
|
27747
28109
|
time_disaster_recovery_role_changed: _builtins.str,
|
28110
|
+
time_earliest_available_db_version_upgrade: _builtins.str,
|
28111
|
+
time_latest_available_db_version_upgrade: _builtins.str,
|
27748
28112
|
time_local_data_guard_enabled: _builtins.str,
|
27749
28113
|
time_maintenance_begin: _builtins.str,
|
27750
28114
|
time_maintenance_end: _builtins.str,
|
@@ -27756,6 +28120,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
27756
28120
|
time_of_last_switchover: _builtins.str,
|
27757
28121
|
time_of_next_refresh: _builtins.str,
|
27758
28122
|
time_reclamation_of_free_autonomous_database: _builtins.str,
|
28123
|
+
time_scheduled_db_version_upgrade: _builtins.str,
|
27759
28124
|
time_undeleted: _builtins.str,
|
27760
28125
|
time_until_reconnect_clone_enabled: _builtins.str,
|
27761
28126
|
total_backup_storage_size_in_gbs: _builtins.float,
|
@@ -27770,11 +28135,13 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
27770
28135
|
:param _builtins.bool are_primary_whitelisted_ips_used: This field will be null if the Autonomous Database is not Data Guard enabled or Access Control is disabled. It's value would be `TRUE` if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses primary IP access control list (ACL) for standby. It's value would be `FALSE` if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses different IP access control list (ACL) for standby compared to primary.
|
27771
28136
|
:param _builtins.int auto_refresh_frequency_in_seconds: The frequency a refreshable clone is refreshed after auto-refresh is enabled. The minimum is 1 hour. The maximum is 7 days. The date and time that auto-refresh is enabled is controlled by the `timeOfAutoRefreshStart` parameter.
|
27772
28137
|
:param _builtins.int auto_refresh_point_lag_in_seconds: The time, in seconds, the data of the refreshable clone lags the primary database at the point of refresh. The minimum is 0 minutes (0 mins means refresh to the latest available timestamp). The maximum is 7 days. The lag time increases after refreshing until the next data refresh happens.
|
27773
|
-
:param _builtins.str autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
27774
|
-
:param _builtins.str autonomous_maintenance_schedule_type: The maintenance schedule type of the Autonomous Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle
|
28138
|
+
:param _builtins.str autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Used only by Autonomous Database on Dedicated Exadata Infrastructure.
|
28139
|
+
:param _builtins.str autonomous_maintenance_schedule_type: The maintenance schedule type of the Autonomous Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle
|
28140
|
+
:param _builtins.str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
27775
28141
|
:param Sequence[_builtins.str] available_upgrade_versions: List of Oracle Database versions available for a database upgrade. If there are no version upgrades available, this list is empty.
|
27776
28142
|
:param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseBackupConfigArgs'] backup_configs: Autonomous Database configuration details for storing [manual backups](https://docs.oracle.com/en/cloud/paas/autonomous-database/adbsa/backup-restore.html#GUID-9035DFB8-4702-4CEB-8281-C2A303820809) in the [Object Storage](https://docs.cloud.oracle.com/iaas/Content/Object/Concepts/objectstorageoverview.htm) service.
|
27777
|
-
:param _builtins.int backup_retention_period_in_days: Retention period, in days, for backups
|
28143
|
+
:param _builtins.int backup_retention_period_in_days: Retention period, in days, for long-term backups
|
28144
|
+
:param _builtins.float byol_compute_count_limit: The maximum number of CPUs allowed with a Bring Your Own License (BYOL), including those used for auto-scaling, disaster recovery, tools, etc. Any CPU usage above this limit is considered as License Included and billed.
|
27778
28145
|
:param _builtins.str character_set: The character set for the autonomous database. The default is AL32UTF8. Allowed values are:
|
27779
28146
|
:param Sequence[_builtins.int] clone_table_space_lists: A list of the source Autonomous Database's table space number(s) used to create this partial clone from the backup.
|
27780
28147
|
:param _builtins.str cluster_placement_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group of the Autonomous Serverless Database.
|
@@ -27816,7 +28183,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
27816
28183
|
:param _builtins.bool is_backup_retention_locked: Indicates if the Autonomous Database is backup retention locked.
|
27817
28184
|
:param _builtins.bool is_data_guard_enabled: **Deprecated.** Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
27818
28185
|
:param _builtins.bool is_dedicated: True if the database uses [dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
|
27819
|
-
:param _builtins.bool is_dev_tier: Autonomous Database for Developers are
|
28186
|
+
:param _builtins.bool is_dev_tier: Autonomous Database for Developers are fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
|
27820
28187
|
:param _builtins.bool is_free_tier: Indicates if this is an Always Free resource. The default value is false. Note that Always Free Autonomous Databases have 1 CPU and 20GB of memory. For Always Free databases, memory and CPU cannot be scaled.
|
27821
28188
|
:param _builtins.bool is_local_data_guard_enabled: Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
27822
28189
|
:param _builtins.bool is_mtls_connection_required: Specifies if the Autonomous Database requires mTLS connections.
|
@@ -27829,16 +28196,15 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
27829
28196
|
:param _builtins.str key_store_wallet_name: The wallet name for Oracle Key Vault.
|
27830
28197
|
:param _builtins.str kms_key_id: The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
|
27831
28198
|
:param _builtins.str kms_key_lifecycle_details: KMS key lifecycle details.
|
27832
|
-
:param _builtins.str kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
|
28199
|
+
:param _builtins.str kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
|
27833
28200
|
:param _builtins.str license_model: The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.
|
27834
28201
|
:param _builtins.str lifecycle_details: Additional information about the current lifecycle state.
|
27835
28202
|
:param _builtins.int local_adg_auto_failover_max_data_loss_limit: Parameter that allows users to select an acceptable maximum data loss limit in seconds, up to which Automatic Failover will be triggered when necessary for a Local Autonomous Data Guard
|
27836
28203
|
:param _builtins.str local_disaster_recovery_type: Indicates the local disaster recovery (DR) type of the Autonomous Database Serverless instance. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
|
27837
|
-
:param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDbArgs'] local_standby_dbs: Autonomous Data Guard standby database details
|
28204
|
+
:param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDbArgs'] local_standby_dbs: Autonomous Data Guard standby database details.
|
27838
28205
|
:param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseLongTermBackupScheduleArgs'] long_term_backup_schedules: Details for the long-term backup schedule.
|
27839
28206
|
:param _builtins.str maintenance_target_component: The component chosen for maintenance.
|
27840
|
-
:param _builtins.int
|
27841
|
-
:param _builtins.int memory_per_oracle_compute_unit_in_gbs: The amount of memory (in GBs) enabled per OCPU or ECPU. See [Compute Models in Autonomous Database on Dedicated Exadata Infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/adbak) for more details.
|
28207
|
+
:param _builtins.int memory_per_oracle_compute_unit_in_gbs: The amount of memory (in GBs) enabled per ECPU or OCPU.
|
27842
28208
|
:param _builtins.str ncharacter_set: The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
|
27843
28209
|
:param _builtins.str net_services_architecture: Enabling SHARED server architecture enables a database server to allow many client processes to share very few server processes, thereby increasing the number of supported users.
|
27844
28210
|
:param _builtins.str next_long_term_backup_time_stamp: The date and time when the next long-term backup would be created.
|
@@ -27866,7 +28232,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
27866
28232
|
:param Mapping[str, _builtins.str] security_attributes: Security Attributes 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: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
27867
28233
|
:param _builtins.str service_console_url: The URL of the Service Console for the Autonomous Database.
|
27868
28234
|
:param _builtins.str source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that was cloned to create the current Autonomous Database.
|
27869
|
-
:param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDbArgs'] standby_dbs: **Deprecated** Autonomous Data Guard standby database details
|
28235
|
+
:param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDbArgs'] standby_dbs: **Deprecated** Autonomous Data Guard standby database details.
|
27870
28236
|
:param Sequence[_builtins.str] standby_whitelisted_ips: The client IP access control list (ACL). This feature is available for [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance. If `arePrimaryWhitelistedIpsUsed` is 'TRUE' then Autonomous Database uses this primary's IP access control list (ACL) for the disaster recovery peer called `standbywhitelistedips`.
|
27871
28237
|
:param _builtins.str state: A filter to return only resources that match the given lifecycle state exactly.
|
27872
28238
|
:param _builtins.str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the resource is associated with.
|
@@ -27877,22 +28243,26 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
27877
28243
|
:param _builtins.str time_data_guard_role_changed: The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.
|
27878
28244
|
:param _builtins.str time_deletion_of_free_autonomous_database: The date and time the Always Free database will be automatically deleted because of inactivity. If the database is in the STOPPED state and without activity until this time, it will be deleted.
|
27879
28245
|
:param _builtins.str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
|
28246
|
+
:param _builtins.str time_earliest_available_db_version_upgrade: The earliest(min) date and time the Autonomous Database can be scheduled to upgrade to 23ai.
|
28247
|
+
:param _builtins.str time_latest_available_db_version_upgrade: The max date and time the Autonomous Database can be scheduled to upgrade to 23ai.
|
27880
28248
|
:param _builtins.str time_local_data_guard_enabled: The date and time that Autonomous Data Guard was enabled for an Autonomous Database where the standby was provisioned in the same region as the primary database.
|
27881
28249
|
:param _builtins.str time_maintenance_begin: The date and time when maintenance will begin.
|
27882
28250
|
:param _builtins.str time_maintenance_end: The date and time when maintenance will end.
|
27883
28251
|
:param _builtins.str time_of_auto_refresh_start: The the date and time that auto-refreshing will begin for an Autonomous Database refreshable clone. This value controls only the start time for the first refresh operation. Subsequent (ongoing) refresh operations have start times controlled by the value of the `autoRefreshFrequencyInSeconds` parameter.
|
28252
|
+
:param _builtins.str time_of_joining_resource_pool: The time the member joined the resource pool.
|
27884
28253
|
:param _builtins.str time_of_last_failover: The timestamp of the last failover operation.
|
27885
28254
|
:param _builtins.str time_of_last_refresh: The date and time when last refresh happened.
|
27886
28255
|
:param _builtins.str time_of_last_refresh_point: The refresh point timestamp (UTC). The refresh point is the time to which the database was most recently refreshed. Data created after the refresh point is not included in the refresh.
|
27887
28256
|
:param _builtins.str time_of_last_switchover: The timestamp of the last switchover operation for the Autonomous Database.
|
27888
28257
|
:param _builtins.str time_of_next_refresh: The date and time of next refresh.
|
27889
28258
|
:param _builtins.str time_reclamation_of_free_autonomous_database: The date and time the Always Free database will be stopped because of inactivity. If this time is reached without any database activity, the database will automatically be put into the STOPPED state.
|
28259
|
+
:param _builtins.str time_scheduled_db_version_upgrade: The date and time the Autonomous Database scheduled to upgrade to 23ai.
|
27890
28260
|
:param _builtins.str time_undeleted: The date and time the Autonomous Database was most recently undeleted.
|
27891
28261
|
:param _builtins.str time_until_reconnect_clone_enabled: The time and date as an RFC3339 formatted string, e.g., 2022-01-01T12:00:00.000Z, to set the limit for a refreshable clone to be reconnected to its source database.
|
27892
28262
|
:param _builtins.float total_backup_storage_size_in_gbs: The backup storage to the database.
|
27893
28263
|
:param _builtins.int used_data_storage_size_in_gbs: The storage space consumed by Autonomous Database in GBs.
|
27894
28264
|
:param _builtins.int used_data_storage_size_in_tbs: The amount of storage that has been used for Autonomous Databases in dedicated infrastructure, in terabytes.
|
27895
|
-
:param _builtins.str vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
|
28265
|
+
:param _builtins.str vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
|
27896
28266
|
:param Sequence[_builtins.str] whitelisted_ips: The client IP access control list (ACL). This feature is available for [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance. If `arePrimaryWhitelistedIpsUsed` is 'TRUE' then Autonomous Database uses this primary's IP access control list (ACL) for the disaster recovery peer called `standbywhitelistedips`.
|
27897
28267
|
"""
|
27898
28268
|
pulumi.set(__self__, "actual_used_data_storage_size_in_tbs", actual_used_data_storage_size_in_tbs)
|
@@ -28002,6 +28372,8 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
28002
28372
|
pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
|
28003
28373
|
pulumi.set(__self__, "time_deletion_of_free_autonomous_database", time_deletion_of_free_autonomous_database)
|
28004
28374
|
pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
|
28375
|
+
pulumi.set(__self__, "time_earliest_available_db_version_upgrade", time_earliest_available_db_version_upgrade)
|
28376
|
+
pulumi.set(__self__, "time_latest_available_db_version_upgrade", time_latest_available_db_version_upgrade)
|
28005
28377
|
pulumi.set(__self__, "time_local_data_guard_enabled", time_local_data_guard_enabled)
|
28006
28378
|
pulumi.set(__self__, "time_maintenance_begin", time_maintenance_begin)
|
28007
28379
|
pulumi.set(__self__, "time_maintenance_end", time_maintenance_end)
|
@@ -28013,6 +28385,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
28013
28385
|
pulumi.set(__self__, "time_of_last_switchover", time_of_last_switchover)
|
28014
28386
|
pulumi.set(__self__, "time_of_next_refresh", time_of_next_refresh)
|
28015
28387
|
pulumi.set(__self__, "time_reclamation_of_free_autonomous_database", time_reclamation_of_free_autonomous_database)
|
28388
|
+
pulumi.set(__self__, "time_scheduled_db_version_upgrade", time_scheduled_db_version_upgrade)
|
28016
28389
|
pulumi.set(__self__, "time_undeleted", time_undeleted)
|
28017
28390
|
pulumi.set(__self__, "time_until_reconnect_clone_enabled", time_until_reconnect_clone_enabled)
|
28018
28391
|
pulumi.set(__self__, "total_backup_storage_size_in_gbs", total_backup_storage_size_in_gbs)
|
@@ -28073,7 +28446,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
28073
28446
|
@pulumi.getter(name="autonomousContainerDatabaseId")
|
28074
28447
|
def autonomous_container_database_id(self) -> _builtins.str:
|
28075
28448
|
"""
|
28076
|
-
The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
28449
|
+
The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Used only by Autonomous Database on Dedicated Exadata Infrastructure.
|
28077
28450
|
"""
|
28078
28451
|
return pulumi.get(self, "autonomous_container_database_id")
|
28079
28452
|
|
@@ -28081,13 +28454,16 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
28081
28454
|
@pulumi.getter(name="autonomousMaintenanceScheduleType")
|
28082
28455
|
def autonomous_maintenance_schedule_type(self) -> _builtins.str:
|
28083
28456
|
"""
|
28084
|
-
The maintenance schedule type of the Autonomous Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle
|
28457
|
+
The maintenance schedule type of the Autonomous Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle
|
28085
28458
|
"""
|
28086
28459
|
return pulumi.get(self, "autonomous_maintenance_schedule_type")
|
28087
28460
|
|
28088
28461
|
@_builtins.property
|
28089
28462
|
@pulumi.getter(name="availabilityDomain")
|
28090
28463
|
def availability_domain(self) -> _builtins.str:
|
28464
|
+
"""
|
28465
|
+
The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
28466
|
+
"""
|
28091
28467
|
return pulumi.get(self, "availability_domain")
|
28092
28468
|
|
28093
28469
|
@_builtins.property
|
@@ -28110,13 +28486,16 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
28110
28486
|
@pulumi.getter(name="backupRetentionPeriodInDays")
|
28111
28487
|
def backup_retention_period_in_days(self) -> _builtins.int:
|
28112
28488
|
"""
|
28113
|
-
Retention period, in days, for backups
|
28489
|
+
Retention period, in days, for long-term backups
|
28114
28490
|
"""
|
28115
28491
|
return pulumi.get(self, "backup_retention_period_in_days")
|
28116
28492
|
|
28117
28493
|
@_builtins.property
|
28118
28494
|
@pulumi.getter(name="byolComputeCountLimit")
|
28119
28495
|
def byol_compute_count_limit(self) -> _builtins.float:
|
28496
|
+
"""
|
28497
|
+
The maximum number of CPUs allowed with a Bring Your Own License (BYOL), including those used for auto-scaling, disaster recovery, tools, etc. Any CPU usage above this limit is considered as License Included and billed.
|
28498
|
+
"""
|
28120
28499
|
return pulumi.get(self, "byol_compute_count_limit")
|
28121
28500
|
|
28122
28501
|
@_builtins.property
|
@@ -28423,7 +28802,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
28423
28802
|
@pulumi.getter(name="isDevTier")
|
28424
28803
|
def is_dev_tier(self) -> _builtins.bool:
|
28425
28804
|
"""
|
28426
|
-
Autonomous Database for Developers are
|
28805
|
+
Autonomous Database for Developers are fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
|
28427
28806
|
"""
|
28428
28807
|
return pulumi.get(self, "is_dev_tier")
|
28429
28808
|
|
@@ -28527,7 +28906,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
28527
28906
|
@pulumi.getter(name="kmsKeyVersionId")
|
28528
28907
|
def kms_key_version_id(self) -> _builtins.str:
|
28529
28908
|
"""
|
28530
|
-
The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
|
28909
|
+
The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
|
28531
28910
|
"""
|
28532
28911
|
return pulumi.get(self, "kms_key_version_id")
|
28533
28912
|
|
@@ -28567,7 +28946,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
28567
28946
|
@pulumi.getter(name="localStandbyDbs")
|
28568
28947
|
def local_standby_dbs(self) -> Sequence['outputs.GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDbResult']:
|
28569
28948
|
"""
|
28570
|
-
Autonomous Data Guard standby database details
|
28949
|
+
Autonomous Data Guard standby database details.
|
28571
28950
|
"""
|
28572
28951
|
return pulumi.get(self, "local_standby_dbs")
|
28573
28952
|
|
@@ -28590,16 +28969,13 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
28590
28969
|
@_builtins.property
|
28591
28970
|
@pulumi.getter(name="maxCpuCoreCount")
|
28592
28971
|
def max_cpu_core_count(self) -> _builtins.int:
|
28593
|
-
"""
|
28594
|
-
The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
|
28595
|
-
"""
|
28596
28972
|
return pulumi.get(self, "max_cpu_core_count")
|
28597
28973
|
|
28598
28974
|
@_builtins.property
|
28599
28975
|
@pulumi.getter(name="memoryPerOracleComputeUnitInGbs")
|
28600
28976
|
def memory_per_oracle_compute_unit_in_gbs(self) -> _builtins.int:
|
28601
28977
|
"""
|
28602
|
-
The amount of memory (in GBs) enabled per
|
28978
|
+
The amount of memory (in GBs) enabled per ECPU or OCPU.
|
28603
28979
|
"""
|
28604
28980
|
return pulumi.get(self, "memory_per_oracle_compute_unit_in_gbs")
|
28605
28981
|
|
@@ -28795,7 +29171,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
28795
29171
|
@pulumi.getter(name="standbyDbs")
|
28796
29172
|
def standby_dbs(self) -> Sequence['outputs.GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDbResult']:
|
28797
29173
|
"""
|
28798
|
-
**Deprecated** Autonomous Data Guard standby database details
|
29174
|
+
**Deprecated** Autonomous Data Guard standby database details.
|
28799
29175
|
"""
|
28800
29176
|
return pulumi.get(self, "standby_dbs")
|
28801
29177
|
|
@@ -28879,6 +29255,22 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
28879
29255
|
"""
|
28880
29256
|
return pulumi.get(self, "time_disaster_recovery_role_changed")
|
28881
29257
|
|
29258
|
+
@_builtins.property
|
29259
|
+
@pulumi.getter(name="timeEarliestAvailableDbVersionUpgrade")
|
29260
|
+
def time_earliest_available_db_version_upgrade(self) -> _builtins.str:
|
29261
|
+
"""
|
29262
|
+
The earliest(min) date and time the Autonomous Database can be scheduled to upgrade to 23ai.
|
29263
|
+
"""
|
29264
|
+
return pulumi.get(self, "time_earliest_available_db_version_upgrade")
|
29265
|
+
|
29266
|
+
@_builtins.property
|
29267
|
+
@pulumi.getter(name="timeLatestAvailableDbVersionUpgrade")
|
29268
|
+
def time_latest_available_db_version_upgrade(self) -> _builtins.str:
|
29269
|
+
"""
|
29270
|
+
The max date and time the Autonomous Database can be scheduled to upgrade to 23ai.
|
29271
|
+
"""
|
29272
|
+
return pulumi.get(self, "time_latest_available_db_version_upgrade")
|
29273
|
+
|
28882
29274
|
@_builtins.property
|
28883
29275
|
@pulumi.getter(name="timeLocalDataGuardEnabled")
|
28884
29276
|
def time_local_data_guard_enabled(self) -> _builtins.str:
|
@@ -28914,6 +29306,9 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
28914
29306
|
@_builtins.property
|
28915
29307
|
@pulumi.getter(name="timeOfJoiningResourcePool")
|
28916
29308
|
def time_of_joining_resource_pool(self) -> _builtins.str:
|
29309
|
+
"""
|
29310
|
+
The time the member joined the resource pool.
|
29311
|
+
"""
|
28917
29312
|
return pulumi.get(self, "time_of_joining_resource_pool")
|
28918
29313
|
|
28919
29314
|
@_builtins.property
|
@@ -28964,6 +29359,14 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
28964
29359
|
"""
|
28965
29360
|
return pulumi.get(self, "time_reclamation_of_free_autonomous_database")
|
28966
29361
|
|
29362
|
+
@_builtins.property
|
29363
|
+
@pulumi.getter(name="timeScheduledDbVersionUpgrade")
|
29364
|
+
def time_scheduled_db_version_upgrade(self) -> _builtins.str:
|
29365
|
+
"""
|
29366
|
+
The date and time the Autonomous Database scheduled to upgrade to 23ai.
|
29367
|
+
"""
|
29368
|
+
return pulumi.get(self, "time_scheduled_db_version_upgrade")
|
29369
|
+
|
28967
29370
|
@_builtins.property
|
28968
29371
|
@pulumi.getter(name="timeUndeleted")
|
28969
29372
|
def time_undeleted(self) -> _builtins.str:
|
@@ -29008,7 +29411,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
29008
29411
|
@pulumi.getter(name="vaultId")
|
29009
29412
|
def vault_id(self) -> _builtins.str:
|
29010
29413
|
"""
|
29011
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
|
29414
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
|
29012
29415
|
"""
|
29013
29416
|
return pulumi.get(self, "vault_id")
|
29014
29417
|
|
@@ -29452,7 +29855,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseEncryptionKeyResult(dict):
|
|
29452
29855
|
:param _builtins.str okv_kms_key: UUID of OKV KMS Key
|
29453
29856
|
:param _builtins.str okv_uri: URI of OKV server
|
29454
29857
|
:param _builtins.str service_endpoint_uri: AWS key service endpoint URI
|
29455
|
-
:param _builtins.str vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
|
29858
|
+
:param _builtins.str vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
|
29456
29859
|
:param _builtins.str vault_uri: Azure vault URI
|
29457
29860
|
"""
|
29458
29861
|
pulumi.set(__self__, "arn_role", arn_role)
|
@@ -29570,7 +29973,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseEncryptionKeyResult(dict):
|
|
29570
29973
|
@pulumi.getter(name="vaultId")
|
29571
29974
|
def vault_id(self) -> _builtins.str:
|
29572
29975
|
"""
|
29573
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
|
29976
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
|
29574
29977
|
"""
|
29575
29978
|
return pulumi.get(self, "vault_id")
|
29576
29979
|
|
@@ -29642,7 +30045,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseEncryptionKeyHistoryEntryEnc
|
|
29642
30045
|
:param _builtins.str okv_kms_key: UUID of OKV KMS Key
|
29643
30046
|
:param _builtins.str okv_uri: URI of OKV server
|
29644
30047
|
:param _builtins.str service_endpoint_uri: AWS key service endpoint URI
|
29645
|
-
:param _builtins.str vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
|
30048
|
+
:param _builtins.str vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
|
29646
30049
|
:param _builtins.str vault_uri: Azure vault URI
|
29647
30050
|
"""
|
29648
30051
|
pulumi.set(__self__, "arn_role", arn_role)
|
@@ -29760,7 +30163,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseEncryptionKeyHistoryEntryEnc
|
|
29760
30163
|
@pulumi.getter(name="vaultId")
|
29761
30164
|
def vault_id(self) -> _builtins.str:
|
29762
30165
|
"""
|
29763
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
|
30166
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
|
29764
30167
|
"""
|
29765
30168
|
return pulumi.get(self, "vault_id")
|
29766
30169
|
|
@@ -29782,9 +30185,9 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseKeyHistoryEntryResult(dict):
|
|
29782
30185
|
vault_id: _builtins.str):
|
29783
30186
|
"""
|
29784
30187
|
:param _builtins.str id: The id of the Autonomous Database [Vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts) service key management history entry.
|
29785
|
-
:param _builtins.str kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
|
30188
|
+
:param _builtins.str kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
|
29786
30189
|
:param _builtins.str time_activated: The date and time the kms key activated.
|
29787
|
-
:param _builtins.str vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
|
30190
|
+
:param _builtins.str vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
|
29788
30191
|
"""
|
29789
30192
|
pulumi.set(__self__, "id", id)
|
29790
30193
|
pulumi.set(__self__, "kms_key_version_id", kms_key_version_id)
|
@@ -29803,7 +30206,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseKeyHistoryEntryResult(dict):
|
|
29803
30206
|
@pulumi.getter(name="kmsKeyVersionId")
|
29804
30207
|
def kms_key_version_id(self) -> _builtins.str:
|
29805
30208
|
"""
|
29806
|
-
The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
|
30209
|
+
The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
|
29807
30210
|
"""
|
29808
30211
|
return pulumi.get(self, "kms_key_version_id")
|
29809
30212
|
|
@@ -29819,7 +30222,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseKeyHistoryEntryResult(dict):
|
|
29819
30222
|
@pulumi.getter(name="vaultId")
|
29820
30223
|
def vault_id(self) -> _builtins.str:
|
29821
30224
|
"""
|
29822
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
|
30225
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
|
29823
30226
|
"""
|
29824
30227
|
return pulumi.get(self, "vault_id")
|
29825
30228
|
|
@@ -29837,6 +30240,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDbResult(dict):
|
|
29837
30240
|
time_maintenance_begin: _builtins.str,
|
29838
30241
|
time_maintenance_end: _builtins.str):
|
29839
30242
|
"""
|
30243
|
+
:param _builtins.str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
29840
30244
|
:param _builtins.int lag_time_in_seconds: The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.
|
29841
30245
|
:param _builtins.str lifecycle_details: Additional information about the current lifecycle state.
|
29842
30246
|
:param _builtins.str maintenance_target_component: The component chosen for maintenance.
|
@@ -29859,6 +30263,9 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDbResult(dict):
|
|
29859
30263
|
@_builtins.property
|
29860
30264
|
@pulumi.getter(name="availabilityDomain")
|
29861
30265
|
def availability_domain(self) -> _builtins.str:
|
30266
|
+
"""
|
30267
|
+
The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
30268
|
+
"""
|
29862
30269
|
return pulumi.get(self, "availability_domain")
|
29863
30270
|
|
29864
30271
|
@_builtins.property
|
@@ -30081,6 +30488,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseRemoteDisasterRecoveryConfig
|
|
30081
30488
|
time_snapshot_standby_enabled_till: _builtins.str):
|
30082
30489
|
"""
|
30083
30490
|
:param _builtins.str disaster_recovery_type: Indicates the disaster recovery (DR) type of the Autonomous Database Serverless instance. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
|
30491
|
+
:param _builtins.bool is_replicate_automatic_backups: If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
30084
30492
|
:param _builtins.bool is_snapshot_standby: Indicates if user wants to convert to a snapshot standby. For example, true would set a standby database to snapshot standby database. False would set a snapshot standby database back to regular standby database.
|
30085
30493
|
:param _builtins.str time_snapshot_standby_enabled_till: Time and date stored as an RFC 3339 formatted timestamp string. For example, 2022-01-01T12:00:00.000Z would set a limit for the snapshot standby to be converted back to a cross-region standby database.
|
30086
30494
|
"""
|
@@ -30100,6 +30508,9 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseRemoteDisasterRecoveryConfig
|
|
30100
30508
|
@_builtins.property
|
30101
30509
|
@pulumi.getter(name="isReplicateAutomaticBackups")
|
30102
30510
|
def is_replicate_automatic_backups(self) -> _builtins.bool:
|
30511
|
+
"""
|
30512
|
+
If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
30513
|
+
"""
|
30103
30514
|
return pulumi.get(self, "is_replicate_automatic_backups")
|
30104
30515
|
|
30105
30516
|
@_builtins.property
|
@@ -30219,6 +30630,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDbResult(dict):
|
|
30219
30630
|
time_maintenance_begin: _builtins.str,
|
30220
30631
|
time_maintenance_end: _builtins.str):
|
30221
30632
|
"""
|
30633
|
+
:param _builtins.str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
30222
30634
|
:param _builtins.int lag_time_in_seconds: The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.
|
30223
30635
|
:param _builtins.str lifecycle_details: Additional information about the current lifecycle state.
|
30224
30636
|
:param _builtins.str maintenance_target_component: The component chosen for maintenance.
|
@@ -30241,6 +30653,9 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDbResult(dict):
|
|
30241
30653
|
@_builtins.property
|
30242
30654
|
@pulumi.getter(name="availabilityDomain")
|
30243
30655
|
def availability_domain(self) -> _builtins.str:
|
30656
|
+
"""
|
30657
|
+
The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
30658
|
+
"""
|
30244
30659
|
return pulumi.get(self, "availability_domain")
|
30245
30660
|
|
30246
30661
|
@_builtins.property
|
@@ -38295,6 +38710,8 @@ class GetDataGuardAssociationsDataGuardAssociationResult(dict):
|
|
38295
38710
|
apply_rate: _builtins.str,
|
38296
38711
|
availability_domain: _builtins.str,
|
38297
38712
|
backup_network_nsg_ids: Sequence[_builtins.str],
|
38713
|
+
compute_count: _builtins.int,
|
38714
|
+
compute_model: _builtins.str,
|
38298
38715
|
cpu_core_count: _builtins.int,
|
38299
38716
|
create_async: _builtins.bool,
|
38300
38717
|
creation_type: _builtins.str,
|
@@ -38360,6 +38777,8 @@ class GetDataGuardAssociationsDataGuardAssociationResult(dict):
|
|
38360
38777
|
pulumi.set(__self__, "apply_rate", apply_rate)
|
38361
38778
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
38362
38779
|
pulumi.set(__self__, "backup_network_nsg_ids", backup_network_nsg_ids)
|
38780
|
+
pulumi.set(__self__, "compute_count", compute_count)
|
38781
|
+
pulumi.set(__self__, "compute_model", compute_model)
|
38363
38782
|
pulumi.set(__self__, "cpu_core_count", cpu_core_count)
|
38364
38783
|
pulumi.set(__self__, "create_async", create_async)
|
38365
38784
|
pulumi.set(__self__, "creation_type", creation_type)
|
@@ -38430,6 +38849,16 @@ class GetDataGuardAssociationsDataGuardAssociationResult(dict):
|
|
38430
38849
|
def backup_network_nsg_ids(self) -> Sequence[_builtins.str]:
|
38431
38850
|
return pulumi.get(self, "backup_network_nsg_ids")
|
38432
38851
|
|
38852
|
+
@_builtins.property
|
38853
|
+
@pulumi.getter(name="computeCount")
|
38854
|
+
def compute_count(self) -> _builtins.int:
|
38855
|
+
return pulumi.get(self, "compute_count")
|
38856
|
+
|
38857
|
+
@_builtins.property
|
38858
|
+
@pulumi.getter(name="computeModel")
|
38859
|
+
def compute_model(self) -> _builtins.str:
|
38860
|
+
return pulumi.get(self, "compute_model")
|
38861
|
+
|
38433
38862
|
@_builtins.property
|
38434
38863
|
@pulumi.getter(name="cpuCoreCount")
|
38435
38864
|
def cpu_core_count(self) -> _builtins.int:
|
@@ -38949,6 +39378,7 @@ class GetDatabaseDatabaseResult(dict):
|
|
38949
39378
|
source_database_id: _builtins.str,
|
38950
39379
|
source_encryption_key_location_details: Sequence['outputs.GetDatabaseDatabaseSourceEncryptionKeyLocationDetailResult'],
|
38951
39380
|
source_tde_wallet_password: _builtins.str,
|
39381
|
+
storage_size_details: Sequence['outputs.GetDatabaseDatabaseStorageSizeDetailResult'],
|
38952
39382
|
tde_wallet_password: _builtins.str,
|
38953
39383
|
transport_type: _builtins.str,
|
38954
39384
|
vault_id: _builtins.str):
|
@@ -38969,6 +39399,7 @@ class GetDatabaseDatabaseResult(dict):
|
|
38969
39399
|
:param _builtins.str pdb_name: The name of the pluggable database. The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. Pluggable database should not be same as database name.
|
38970
39400
|
:param _builtins.str protection_mode: The protection mode of this Data Guard. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
|
38971
39401
|
:param _builtins.str sid_prefix: Specifies a prefix for the `Oracle SID` of the database to be created.
|
39402
|
+
:param Sequence['GetDatabaseDatabaseStorageSizeDetailArgs'] storage_size_details: The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
|
38972
39403
|
:param _builtins.str transport_type: The redo transport type to use for this Data Guard association. Valid values depend on the specified `protectionMode`:
|
38973
39404
|
* MAXIMUM_AVAILABILITY - SYNC or FASTSYNC
|
38974
39405
|
* MAXIMUM_PERFORMANCE - ASYNC
|
@@ -38999,6 +39430,7 @@ class GetDatabaseDatabaseResult(dict):
|
|
38999
39430
|
pulumi.set(__self__, "source_database_id", source_database_id)
|
39000
39431
|
pulumi.set(__self__, "source_encryption_key_location_details", source_encryption_key_location_details)
|
39001
39432
|
pulumi.set(__self__, "source_tde_wallet_password", source_tde_wallet_password)
|
39433
|
+
pulumi.set(__self__, "storage_size_details", storage_size_details)
|
39002
39434
|
pulumi.set(__self__, "tde_wallet_password", tde_wallet_password)
|
39003
39435
|
pulumi.set(__self__, "transport_type", transport_type)
|
39004
39436
|
pulumi.set(__self__, "vault_id", vault_id)
|
@@ -39171,6 +39603,14 @@ class GetDatabaseDatabaseResult(dict):
|
|
39171
39603
|
def source_tde_wallet_password(self) -> _builtins.str:
|
39172
39604
|
return pulumi.get(self, "source_tde_wallet_password")
|
39173
39605
|
|
39606
|
+
@_builtins.property
|
39607
|
+
@pulumi.getter(name="storageSizeDetails")
|
39608
|
+
def storage_size_details(self) -> Sequence['outputs.GetDatabaseDatabaseStorageSizeDetailResult']:
|
39609
|
+
"""
|
39610
|
+
The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
|
39611
|
+
"""
|
39612
|
+
return pulumi.get(self, "storage_size_details")
|
39613
|
+
|
39174
39614
|
@_builtins.property
|
39175
39615
|
@pulumi.getter(name="tdeWalletPassword")
|
39176
39616
|
def tde_wallet_password(self) -> _builtins.str:
|
@@ -39473,6 +39913,46 @@ class GetDatabaseDatabaseSourceEncryptionKeyLocationDetailResult(dict):
|
|
39473
39913
|
return pulumi.get(self, "provider_type")
|
39474
39914
|
|
39475
39915
|
|
39916
|
+
@pulumi.output_type
|
39917
|
+
class GetDatabaseDatabaseStorageSizeDetailResult(dict):
|
39918
|
+
def __init__(__self__, *,
|
39919
|
+
data_storage_size_in_gb: _builtins.int,
|
39920
|
+
reco_storage_size_in_gbs: _builtins.int,
|
39921
|
+
redo_log_storage_size_in_gbs: _builtins.int):
|
39922
|
+
"""
|
39923
|
+
:param _builtins.int data_storage_size_in_gb: The DATA storage size, in gigabytes, that is applicable for the database.
|
39924
|
+
:param _builtins.int reco_storage_size_in_gbs: The RECO storage size, in gigabytes, that is applicable for the database.
|
39925
|
+
:param _builtins.int redo_log_storage_size_in_gbs: The REDO Log storage size, in gigabytes, that is applicable for the database.
|
39926
|
+
"""
|
39927
|
+
pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
|
39928
|
+
pulumi.set(__self__, "reco_storage_size_in_gbs", reco_storage_size_in_gbs)
|
39929
|
+
pulumi.set(__self__, "redo_log_storage_size_in_gbs", redo_log_storage_size_in_gbs)
|
39930
|
+
|
39931
|
+
@_builtins.property
|
39932
|
+
@pulumi.getter(name="dataStorageSizeInGb")
|
39933
|
+
def data_storage_size_in_gb(self) -> _builtins.int:
|
39934
|
+
"""
|
39935
|
+
The DATA storage size, in gigabytes, that is applicable for the database.
|
39936
|
+
"""
|
39937
|
+
return pulumi.get(self, "data_storage_size_in_gb")
|
39938
|
+
|
39939
|
+
@_builtins.property
|
39940
|
+
@pulumi.getter(name="recoStorageSizeInGbs")
|
39941
|
+
def reco_storage_size_in_gbs(self) -> _builtins.int:
|
39942
|
+
"""
|
39943
|
+
The RECO storage size, in gigabytes, that is applicable for the database.
|
39944
|
+
"""
|
39945
|
+
return pulumi.get(self, "reco_storage_size_in_gbs")
|
39946
|
+
|
39947
|
+
@_builtins.property
|
39948
|
+
@pulumi.getter(name="redoLogStorageSizeInGbs")
|
39949
|
+
def redo_log_storage_size_in_gbs(self) -> _builtins.int:
|
39950
|
+
"""
|
39951
|
+
The REDO Log storage size, in gigabytes, that is applicable for the database.
|
39952
|
+
"""
|
39953
|
+
return pulumi.get(self, "redo_log_storage_size_in_gbs")
|
39954
|
+
|
39955
|
+
|
39476
39956
|
@pulumi.output_type
|
39477
39957
|
class GetDatabaseDbBackupConfigResult(dict):
|
39478
39958
|
def __init__(__self__, *,
|
@@ -42265,6 +42745,46 @@ class GetDatabaseSoftwareImagesFilterResult(dict):
|
|
42265
42745
|
return pulumi.get(self, "regex")
|
42266
42746
|
|
42267
42747
|
|
42748
|
+
@pulumi.output_type
|
42749
|
+
class GetDatabaseStorageSizeDetailResult(dict):
|
42750
|
+
def __init__(__self__, *,
|
42751
|
+
data_storage_size_in_gb: _builtins.int,
|
42752
|
+
reco_storage_size_in_gbs: _builtins.int,
|
42753
|
+
redo_log_storage_size_in_gbs: _builtins.int):
|
42754
|
+
"""
|
42755
|
+
:param _builtins.int data_storage_size_in_gb: The DATA storage size, in gigabytes, that is applicable for the database.
|
42756
|
+
:param _builtins.int reco_storage_size_in_gbs: The RECO storage size, in gigabytes, that is applicable for the database.
|
42757
|
+
:param _builtins.int redo_log_storage_size_in_gbs: The REDO Log storage size, in gigabytes, that is applicable for the database.
|
42758
|
+
"""
|
42759
|
+
pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
|
42760
|
+
pulumi.set(__self__, "reco_storage_size_in_gbs", reco_storage_size_in_gbs)
|
42761
|
+
pulumi.set(__self__, "redo_log_storage_size_in_gbs", redo_log_storage_size_in_gbs)
|
42762
|
+
|
42763
|
+
@_builtins.property
|
42764
|
+
@pulumi.getter(name="dataStorageSizeInGb")
|
42765
|
+
def data_storage_size_in_gb(self) -> _builtins.int:
|
42766
|
+
"""
|
42767
|
+
The DATA storage size, in gigabytes, that is applicable for the database.
|
42768
|
+
"""
|
42769
|
+
return pulumi.get(self, "data_storage_size_in_gb")
|
42770
|
+
|
42771
|
+
@_builtins.property
|
42772
|
+
@pulumi.getter(name="recoStorageSizeInGbs")
|
42773
|
+
def reco_storage_size_in_gbs(self) -> _builtins.int:
|
42774
|
+
"""
|
42775
|
+
The RECO storage size, in gigabytes, that is applicable for the database.
|
42776
|
+
"""
|
42777
|
+
return pulumi.get(self, "reco_storage_size_in_gbs")
|
42778
|
+
|
42779
|
+
@_builtins.property
|
42780
|
+
@pulumi.getter(name="redoLogStorageSizeInGbs")
|
42781
|
+
def redo_log_storage_size_in_gbs(self) -> _builtins.int:
|
42782
|
+
"""
|
42783
|
+
The REDO Log storage size, in gigabytes, that is applicable for the database.
|
42784
|
+
"""
|
42785
|
+
return pulumi.get(self, "redo_log_storage_size_in_gbs")
|
42786
|
+
|
42787
|
+
|
42268
42788
|
@pulumi.output_type
|
42269
42789
|
class GetDatabaseUpgradeHistoryEntriesDatabaseUpgradeHistoryEntryResult(dict):
|
42270
42790
|
def __init__(__self__, *,
|
@@ -42474,6 +42994,7 @@ class GetDatabasesDatabaseResult(dict):
|
|
42474
42994
|
source: _builtins.str,
|
42475
42995
|
source_database_point_in_time_recovery_timestamp: _builtins.str,
|
42476
42996
|
state: _builtins.str,
|
42997
|
+
storage_size_details: Sequence['outputs.GetDatabasesDatabaseStorageSizeDetailResult'],
|
42477
42998
|
system_tags: Mapping[str, _builtins.str],
|
42478
42999
|
time_created: _builtins.str,
|
42479
43000
|
vault_id: _builtins.str,
|
@@ -42508,6 +43029,7 @@ class GetDatabasesDatabaseResult(dict):
|
|
42508
43029
|
:param _builtins.str sid_prefix: Specifies a prefix for the `Oracle SID` of the database to be created.
|
42509
43030
|
:param _builtins.str source_database_point_in_time_recovery_timestamp: Point in time recovery timeStamp of the source database at which cloned database system is cloned from the source database system, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339)
|
42510
43031
|
:param _builtins.str state: A filter to return only resources that match the given lifecycle state exactly.
|
43032
|
+
:param Sequence['GetDatabasesDatabaseStorageSizeDetailArgs'] storage_size_details: The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
|
42511
43033
|
:param Mapping[str, _builtins.str] system_tags: System 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).
|
42512
43034
|
:param _builtins.str time_created: The date and time the database was created.
|
42513
43035
|
:param _builtins.str vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
|
@@ -42549,6 +43071,7 @@ class GetDatabasesDatabaseResult(dict):
|
|
42549
43071
|
pulumi.set(__self__, "source", source)
|
42550
43072
|
pulumi.set(__self__, "source_database_point_in_time_recovery_timestamp", source_database_point_in_time_recovery_timestamp)
|
42551
43073
|
pulumi.set(__self__, "state", state)
|
43074
|
+
pulumi.set(__self__, "storage_size_details", storage_size_details)
|
42552
43075
|
pulumi.set(__self__, "system_tags", system_tags)
|
42553
43076
|
pulumi.set(__self__, "time_created", time_created)
|
42554
43077
|
pulumi.set(__self__, "vault_id", vault_id)
|
@@ -42821,6 +43344,14 @@ class GetDatabasesDatabaseResult(dict):
|
|
42821
43344
|
"""
|
42822
43345
|
return pulumi.get(self, "state")
|
42823
43346
|
|
43347
|
+
@_builtins.property
|
43348
|
+
@pulumi.getter(name="storageSizeDetails")
|
43349
|
+
def storage_size_details(self) -> Sequence['outputs.GetDatabasesDatabaseStorageSizeDetailResult']:
|
43350
|
+
"""
|
43351
|
+
The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
|
43352
|
+
"""
|
43353
|
+
return pulumi.get(self, "storage_size_details")
|
43354
|
+
|
42824
43355
|
@_builtins.property
|
42825
43356
|
@pulumi.getter(name="systemTags")
|
42826
43357
|
def system_tags(self) -> Mapping[str, _builtins.str]:
|
@@ -43062,6 +43593,7 @@ class GetDatabasesDatabaseDatabaseResult(dict):
|
|
43062
43593
|
source_database_id: _builtins.str,
|
43063
43594
|
source_encryption_key_location_details: Sequence['outputs.GetDatabasesDatabaseDatabaseSourceEncryptionKeyLocationDetailResult'],
|
43064
43595
|
source_tde_wallet_password: _builtins.str,
|
43596
|
+
storage_size_details: Sequence['outputs.GetDatabasesDatabaseDatabaseStorageSizeDetailResult'],
|
43065
43597
|
tde_wallet_password: _builtins.str,
|
43066
43598
|
transport_type: _builtins.str,
|
43067
43599
|
vault_id: _builtins.str):
|
@@ -43082,6 +43614,7 @@ class GetDatabasesDatabaseDatabaseResult(dict):
|
|
43082
43614
|
:param _builtins.str pdb_name: The name of the pluggable database. The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. Pluggable database should not be same as database name.
|
43083
43615
|
:param _builtins.str protection_mode: The protection mode of this Data Guard. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
|
43084
43616
|
:param _builtins.str sid_prefix: Specifies a prefix for the `Oracle SID` of the database to be created.
|
43617
|
+
:param Sequence['GetDatabasesDatabaseDatabaseStorageSizeDetailArgs'] storage_size_details: The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
|
43085
43618
|
:param _builtins.str transport_type: The redo transport type to use for this Data Guard association. Valid values depend on the specified `protectionMode`:
|
43086
43619
|
* MAXIMUM_AVAILABILITY - SYNC or FASTSYNC
|
43087
43620
|
* MAXIMUM_PERFORMANCE - ASYNC
|
@@ -43112,6 +43645,7 @@ class GetDatabasesDatabaseDatabaseResult(dict):
|
|
43112
43645
|
pulumi.set(__self__, "source_database_id", source_database_id)
|
43113
43646
|
pulumi.set(__self__, "source_encryption_key_location_details", source_encryption_key_location_details)
|
43114
43647
|
pulumi.set(__self__, "source_tde_wallet_password", source_tde_wallet_password)
|
43648
|
+
pulumi.set(__self__, "storage_size_details", storage_size_details)
|
43115
43649
|
pulumi.set(__self__, "tde_wallet_password", tde_wallet_password)
|
43116
43650
|
pulumi.set(__self__, "transport_type", transport_type)
|
43117
43651
|
pulumi.set(__self__, "vault_id", vault_id)
|
@@ -43284,6 +43818,14 @@ class GetDatabasesDatabaseDatabaseResult(dict):
|
|
43284
43818
|
def source_tde_wallet_password(self) -> _builtins.str:
|
43285
43819
|
return pulumi.get(self, "source_tde_wallet_password")
|
43286
43820
|
|
43821
|
+
@_builtins.property
|
43822
|
+
@pulumi.getter(name="storageSizeDetails")
|
43823
|
+
def storage_size_details(self) -> Sequence['outputs.GetDatabasesDatabaseDatabaseStorageSizeDetailResult']:
|
43824
|
+
"""
|
43825
|
+
The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
|
43826
|
+
"""
|
43827
|
+
return pulumi.get(self, "storage_size_details")
|
43828
|
+
|
43287
43829
|
@_builtins.property
|
43288
43830
|
@pulumi.getter(name="tdeWalletPassword")
|
43289
43831
|
def tde_wallet_password(self) -> _builtins.str:
|
@@ -43578,6 +44120,46 @@ class GetDatabasesDatabaseDatabaseSourceEncryptionKeyLocationDetailResult(dict):
|
|
43578
44120
|
return pulumi.get(self, "provider_type")
|
43579
44121
|
|
43580
44122
|
|
44123
|
+
@pulumi.output_type
|
44124
|
+
class GetDatabasesDatabaseDatabaseStorageSizeDetailResult(dict):
|
44125
|
+
def __init__(__self__, *,
|
44126
|
+
data_storage_size_in_gb: _builtins.int,
|
44127
|
+
reco_storage_size_in_gbs: _builtins.int,
|
44128
|
+
redo_log_storage_size_in_gbs: _builtins.int):
|
44129
|
+
"""
|
44130
|
+
:param _builtins.int data_storage_size_in_gb: The DATA storage size, in gigabytes, that is applicable for the database.
|
44131
|
+
:param _builtins.int reco_storage_size_in_gbs: The RECO storage size, in gigabytes, that is applicable for the database.
|
44132
|
+
:param _builtins.int redo_log_storage_size_in_gbs: The REDO Log storage size, in gigabytes, that is applicable for the database.
|
44133
|
+
"""
|
44134
|
+
pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
|
44135
|
+
pulumi.set(__self__, "reco_storage_size_in_gbs", reco_storage_size_in_gbs)
|
44136
|
+
pulumi.set(__self__, "redo_log_storage_size_in_gbs", redo_log_storage_size_in_gbs)
|
44137
|
+
|
44138
|
+
@_builtins.property
|
44139
|
+
@pulumi.getter(name="dataStorageSizeInGb")
|
44140
|
+
def data_storage_size_in_gb(self) -> _builtins.int:
|
44141
|
+
"""
|
44142
|
+
The DATA storage size, in gigabytes, that is applicable for the database.
|
44143
|
+
"""
|
44144
|
+
return pulumi.get(self, "data_storage_size_in_gb")
|
44145
|
+
|
44146
|
+
@_builtins.property
|
44147
|
+
@pulumi.getter(name="recoStorageSizeInGbs")
|
44148
|
+
def reco_storage_size_in_gbs(self) -> _builtins.int:
|
44149
|
+
"""
|
44150
|
+
The RECO storage size, in gigabytes, that is applicable for the database.
|
44151
|
+
"""
|
44152
|
+
return pulumi.get(self, "reco_storage_size_in_gbs")
|
44153
|
+
|
44154
|
+
@_builtins.property
|
44155
|
+
@pulumi.getter(name="redoLogStorageSizeInGbs")
|
44156
|
+
def redo_log_storage_size_in_gbs(self) -> _builtins.int:
|
44157
|
+
"""
|
44158
|
+
The REDO Log storage size, in gigabytes, that is applicable for the database.
|
44159
|
+
"""
|
44160
|
+
return pulumi.get(self, "redo_log_storage_size_in_gbs")
|
44161
|
+
|
44162
|
+
|
43581
44163
|
@pulumi.output_type
|
43582
44164
|
class GetDatabasesDatabaseDbBackupConfigResult(dict):
|
43583
44165
|
def __init__(__self__, *,
|
@@ -43749,6 +44331,46 @@ class GetDatabasesDatabaseDbBackupConfigBackupDestinationDetailResult(dict):
|
|
43749
44331
|
return pulumi.get(self, "vpc_user")
|
43750
44332
|
|
43751
44333
|
|
44334
|
+
@pulumi.output_type
|
44335
|
+
class GetDatabasesDatabaseStorageSizeDetailResult(dict):
|
44336
|
+
def __init__(__self__, *,
|
44337
|
+
data_storage_size_in_gb: _builtins.int,
|
44338
|
+
reco_storage_size_in_gbs: _builtins.int,
|
44339
|
+
redo_log_storage_size_in_gbs: _builtins.int):
|
44340
|
+
"""
|
44341
|
+
:param _builtins.int data_storage_size_in_gb: The DATA storage size, in gigabytes, that is applicable for the database.
|
44342
|
+
:param _builtins.int reco_storage_size_in_gbs: The RECO storage size, in gigabytes, that is applicable for the database.
|
44343
|
+
:param _builtins.int redo_log_storage_size_in_gbs: The REDO Log storage size, in gigabytes, that is applicable for the database.
|
44344
|
+
"""
|
44345
|
+
pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
|
44346
|
+
pulumi.set(__self__, "reco_storage_size_in_gbs", reco_storage_size_in_gbs)
|
44347
|
+
pulumi.set(__self__, "redo_log_storage_size_in_gbs", redo_log_storage_size_in_gbs)
|
44348
|
+
|
44349
|
+
@_builtins.property
|
44350
|
+
@pulumi.getter(name="dataStorageSizeInGb")
|
44351
|
+
def data_storage_size_in_gb(self) -> _builtins.int:
|
44352
|
+
"""
|
44353
|
+
The DATA storage size, in gigabytes, that is applicable for the database.
|
44354
|
+
"""
|
44355
|
+
return pulumi.get(self, "data_storage_size_in_gb")
|
44356
|
+
|
44357
|
+
@_builtins.property
|
44358
|
+
@pulumi.getter(name="recoStorageSizeInGbs")
|
44359
|
+
def reco_storage_size_in_gbs(self) -> _builtins.int:
|
44360
|
+
"""
|
44361
|
+
The RECO storage size, in gigabytes, that is applicable for the database.
|
44362
|
+
"""
|
44363
|
+
return pulumi.get(self, "reco_storage_size_in_gbs")
|
44364
|
+
|
44365
|
+
@_builtins.property
|
44366
|
+
@pulumi.getter(name="redoLogStorageSizeInGbs")
|
44367
|
+
def redo_log_storage_size_in_gbs(self) -> _builtins.int:
|
44368
|
+
"""
|
44369
|
+
The REDO Log storage size, in gigabytes, that is applicable for the database.
|
44370
|
+
"""
|
44371
|
+
return pulumi.get(self, "redo_log_storage_size_in_gbs")
|
44372
|
+
|
44373
|
+
|
43752
44374
|
@pulumi.output_type
|
43753
44375
|
class GetDatabasesFilterResult(dict):
|
43754
44376
|
def __init__(__self__, *,
|
@@ -43804,6 +44426,7 @@ class GetDbHomeDatabaseResult(dict):
|
|
43804
44426
|
pluggable_databases: Sequence[_builtins.str],
|
43805
44427
|
sid_prefix: _builtins.str,
|
43806
44428
|
state: _builtins.str,
|
44429
|
+
storage_size_details: Sequence['outputs.GetDbHomeDatabaseStorageSizeDetailResult'],
|
43807
44430
|
tde_wallet_password: _builtins.str,
|
43808
44431
|
time_created: _builtins.str,
|
43809
44432
|
time_stamp_for_point_in_time_recovery: _builtins.str,
|
@@ -43844,6 +44467,7 @@ class GetDbHomeDatabaseResult(dict):
|
|
43844
44467
|
pulumi.set(__self__, "pluggable_databases", pluggable_databases)
|
43845
44468
|
pulumi.set(__self__, "sid_prefix", sid_prefix)
|
43846
44469
|
pulumi.set(__self__, "state", state)
|
44470
|
+
pulumi.set(__self__, "storage_size_details", storage_size_details)
|
43847
44471
|
pulumi.set(__self__, "tde_wallet_password", tde_wallet_password)
|
43848
44472
|
pulumi.set(__self__, "time_created", time_created)
|
43849
44473
|
pulumi.set(__self__, "time_stamp_for_point_in_time_recovery", time_stamp_for_point_in_time_recovery)
|
@@ -43998,6 +44622,11 @@ class GetDbHomeDatabaseResult(dict):
|
|
43998
44622
|
"""
|
43999
44623
|
return pulumi.get(self, "state")
|
44000
44624
|
|
44625
|
+
@_builtins.property
|
44626
|
+
@pulumi.getter(name="storageSizeDetails")
|
44627
|
+
def storage_size_details(self) -> Sequence['outputs.GetDbHomeDatabaseStorageSizeDetailResult']:
|
44628
|
+
return pulumi.get(self, "storage_size_details")
|
44629
|
+
|
44001
44630
|
@_builtins.property
|
44002
44631
|
@pulumi.getter(name="tdeWalletPassword")
|
44003
44632
|
def tde_wallet_password(self) -> _builtins.str:
|
@@ -44195,6 +44824,32 @@ class GetDbHomeDatabaseEncryptionKeyLocationDetailResult(dict):
|
|
44195
44824
|
return pulumi.get(self, "provider_type")
|
44196
44825
|
|
44197
44826
|
|
44827
|
+
@pulumi.output_type
|
44828
|
+
class GetDbHomeDatabaseStorageSizeDetailResult(dict):
|
44829
|
+
def __init__(__self__, *,
|
44830
|
+
data_storage_size_in_gb: _builtins.int,
|
44831
|
+
reco_storage_size_in_gbs: _builtins.int,
|
44832
|
+
redo_log_storage_size_in_gbs: _builtins.int):
|
44833
|
+
pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
|
44834
|
+
pulumi.set(__self__, "reco_storage_size_in_gbs", reco_storage_size_in_gbs)
|
44835
|
+
pulumi.set(__self__, "redo_log_storage_size_in_gbs", redo_log_storage_size_in_gbs)
|
44836
|
+
|
44837
|
+
@_builtins.property
|
44838
|
+
@pulumi.getter(name="dataStorageSizeInGb")
|
44839
|
+
def data_storage_size_in_gb(self) -> _builtins.int:
|
44840
|
+
return pulumi.get(self, "data_storage_size_in_gb")
|
44841
|
+
|
44842
|
+
@_builtins.property
|
44843
|
+
@pulumi.getter(name="recoStorageSizeInGbs")
|
44844
|
+
def reco_storage_size_in_gbs(self) -> _builtins.int:
|
44845
|
+
return pulumi.get(self, "reco_storage_size_in_gbs")
|
44846
|
+
|
44847
|
+
@_builtins.property
|
44848
|
+
@pulumi.getter(name="redoLogStorageSizeInGbs")
|
44849
|
+
def redo_log_storage_size_in_gbs(self) -> _builtins.int:
|
44850
|
+
return pulumi.get(self, "redo_log_storage_size_in_gbs")
|
44851
|
+
|
44852
|
+
|
44198
44853
|
@pulumi.output_type
|
44199
44854
|
class GetDbHomePatchHistoryEntriesFilterResult(dict):
|
44200
44855
|
def __init__(__self__, *,
|
@@ -44703,6 +45358,7 @@ class GetDbHomesDbHomeDatabaseResult(dict):
|
|
44703
45358
|
pluggable_databases: Sequence[_builtins.str],
|
44704
45359
|
sid_prefix: _builtins.str,
|
44705
45360
|
state: _builtins.str,
|
45361
|
+
storage_size_details: Sequence['outputs.GetDbHomesDbHomeDatabaseStorageSizeDetailResult'],
|
44706
45362
|
tde_wallet_password: _builtins.str,
|
44707
45363
|
time_created: _builtins.str,
|
44708
45364
|
time_stamp_for_point_in_time_recovery: _builtins.str,
|
@@ -44744,6 +45400,7 @@ class GetDbHomesDbHomeDatabaseResult(dict):
|
|
44744
45400
|
pulumi.set(__self__, "pluggable_databases", pluggable_databases)
|
44745
45401
|
pulumi.set(__self__, "sid_prefix", sid_prefix)
|
44746
45402
|
pulumi.set(__self__, "state", state)
|
45403
|
+
pulumi.set(__self__, "storage_size_details", storage_size_details)
|
44747
45404
|
pulumi.set(__self__, "tde_wallet_password", tde_wallet_password)
|
44748
45405
|
pulumi.set(__self__, "time_created", time_created)
|
44749
45406
|
pulumi.set(__self__, "time_stamp_for_point_in_time_recovery", time_stamp_for_point_in_time_recovery)
|
@@ -44901,6 +45558,11 @@ class GetDbHomesDbHomeDatabaseResult(dict):
|
|
44901
45558
|
"""
|
44902
45559
|
return pulumi.get(self, "state")
|
44903
45560
|
|
45561
|
+
@_builtins.property
|
45562
|
+
@pulumi.getter(name="storageSizeDetails")
|
45563
|
+
def storage_size_details(self) -> Sequence['outputs.GetDbHomesDbHomeDatabaseStorageSizeDetailResult']:
|
45564
|
+
return pulumi.get(self, "storage_size_details")
|
45565
|
+
|
44904
45566
|
@_builtins.property
|
44905
45567
|
@pulumi.getter(name="tdeWalletPassword")
|
44906
45568
|
def tde_wallet_password(self) -> _builtins.str:
|
@@ -45098,6 +45760,32 @@ class GetDbHomesDbHomeDatabaseEncryptionKeyLocationDetailResult(dict):
|
|
45098
45760
|
return pulumi.get(self, "provider_type")
|
45099
45761
|
|
45100
45762
|
|
45763
|
+
@pulumi.output_type
|
45764
|
+
class GetDbHomesDbHomeDatabaseStorageSizeDetailResult(dict):
|
45765
|
+
def __init__(__self__, *,
|
45766
|
+
data_storage_size_in_gb: _builtins.int,
|
45767
|
+
reco_storage_size_in_gbs: _builtins.int,
|
45768
|
+
redo_log_storage_size_in_gbs: _builtins.int):
|
45769
|
+
pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
|
45770
|
+
pulumi.set(__self__, "reco_storage_size_in_gbs", reco_storage_size_in_gbs)
|
45771
|
+
pulumi.set(__self__, "redo_log_storage_size_in_gbs", redo_log_storage_size_in_gbs)
|
45772
|
+
|
45773
|
+
@_builtins.property
|
45774
|
+
@pulumi.getter(name="dataStorageSizeInGb")
|
45775
|
+
def data_storage_size_in_gb(self) -> _builtins.int:
|
45776
|
+
return pulumi.get(self, "data_storage_size_in_gb")
|
45777
|
+
|
45778
|
+
@_builtins.property
|
45779
|
+
@pulumi.getter(name="recoStorageSizeInGbs")
|
45780
|
+
def reco_storage_size_in_gbs(self) -> _builtins.int:
|
45781
|
+
return pulumi.get(self, "reco_storage_size_in_gbs")
|
45782
|
+
|
45783
|
+
@_builtins.property
|
45784
|
+
@pulumi.getter(name="redoLogStorageSizeInGbs")
|
45785
|
+
def redo_log_storage_size_in_gbs(self) -> _builtins.int:
|
45786
|
+
return pulumi.get(self, "redo_log_storage_size_in_gbs")
|
45787
|
+
|
45788
|
+
|
45101
45789
|
@pulumi.output_type
|
45102
45790
|
class GetDbHomesFilterResult(dict):
|
45103
45791
|
def __init__(__self__, *,
|
@@ -45429,6 +46117,8 @@ class GetDbNodesDbNodeResult(dict):
|
|
45429
46117
|
backup_ipv6id: _builtins.str,
|
45430
46118
|
backup_vnic2id: _builtins.str,
|
45431
46119
|
backup_vnic_id: _builtins.str,
|
46120
|
+
compute_count: _builtins.int,
|
46121
|
+
compute_model: _builtins.str,
|
45432
46122
|
cpu_core_count: _builtins.int,
|
45433
46123
|
db_node_id: _builtins.str,
|
45434
46124
|
db_node_storage_size_in_gbs: _builtins.int,
|
@@ -45459,6 +46149,8 @@ class GetDbNodesDbNodeResult(dict):
|
|
45459
46149
|
:param _builtins.str backup_ipv6id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IPv6 address associated with the database node. Use this OCID with the [GetIpv6](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6) API to get the IPv6 address needed to make a database connection.
|
45460
46150
|
:param _builtins.str backup_vnic2id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the second backup VNIC.
|
45461
46151
|
:param _builtins.str backup_vnic_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup VNIC.
|
46152
|
+
:param _builtins.int compute_count: The number of compute servers for the DB system.
|
46153
|
+
:param _builtins.str compute_model: The compute model for Base Database Service. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. The ECPU compute model is the recommended model, and the OCPU compute model is legacy.
|
45462
46154
|
:param _builtins.int cpu_core_count: The number of CPU cores enabled on the Db node.
|
45463
46155
|
:param _builtins.int db_node_storage_size_in_gbs: The allocated local node storage in GBs on the Db node.
|
45464
46156
|
:param _builtins.str db_server_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exacc Db server.
|
@@ -45488,6 +46180,8 @@ class GetDbNodesDbNodeResult(dict):
|
|
45488
46180
|
pulumi.set(__self__, "backup_ipv6id", backup_ipv6id)
|
45489
46181
|
pulumi.set(__self__, "backup_vnic2id", backup_vnic2id)
|
45490
46182
|
pulumi.set(__self__, "backup_vnic_id", backup_vnic_id)
|
46183
|
+
pulumi.set(__self__, "compute_count", compute_count)
|
46184
|
+
pulumi.set(__self__, "compute_model", compute_model)
|
45491
46185
|
pulumi.set(__self__, "cpu_core_count", cpu_core_count)
|
45492
46186
|
pulumi.set(__self__, "db_node_id", db_node_id)
|
45493
46187
|
pulumi.set(__self__, "db_node_storage_size_in_gbs", db_node_storage_size_in_gbs)
|
@@ -45553,6 +46247,22 @@ class GetDbNodesDbNodeResult(dict):
|
|
45553
46247
|
"""
|
45554
46248
|
return pulumi.get(self, "backup_vnic_id")
|
45555
46249
|
|
46250
|
+
@_builtins.property
|
46251
|
+
@pulumi.getter(name="computeCount")
|
46252
|
+
def compute_count(self) -> _builtins.int:
|
46253
|
+
"""
|
46254
|
+
The number of compute servers for the DB system.
|
46255
|
+
"""
|
46256
|
+
return pulumi.get(self, "compute_count")
|
46257
|
+
|
46258
|
+
@_builtins.property
|
46259
|
+
@pulumi.getter(name="computeModel")
|
46260
|
+
def compute_model(self) -> _builtins.str:
|
46261
|
+
"""
|
46262
|
+
The compute model for Base Database Service. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. The ECPU compute model is the recommended model, and the OCPU compute model is legacy.
|
46263
|
+
"""
|
46264
|
+
return pulumi.get(self, "compute_model")
|
46265
|
+
|
45556
46266
|
@_builtins.property
|
45557
46267
|
@pulumi.getter(name="cpuCoreCount")
|
45558
46268
|
def cpu_core_count(self) -> _builtins.int:
|
@@ -46547,6 +47257,7 @@ class GetDbSystemShapesDbSystemShapeResult(dict):
|
|
46547
47257
|
minimum_node_count: _builtins.int,
|
46548
47258
|
name: _builtins.str,
|
46549
47259
|
shape: _builtins.str,
|
47260
|
+
shape_attributes: Sequence[_builtins.str],
|
46550
47261
|
shape_family: _builtins.str,
|
46551
47262
|
shape_type: _builtins.str):
|
46552
47263
|
"""
|
@@ -46573,6 +47284,7 @@ class GetDbSystemShapesDbSystemShapeResult(dict):
|
|
46573
47284
|
:param _builtins.int minimum_node_count: The minimum number of compute servers available for this shape.
|
46574
47285
|
:param _builtins.str name: The name of the shape used for the DB system.
|
46575
47286
|
:param _builtins.str shape: Deprecated. Use `name` instead of `shape`.
|
47287
|
+
:param Sequence[_builtins.str] shape_attributes: The shapeAttributes of the DB system shape.
|
46576
47288
|
:param _builtins.str shape_family: The family of the shape used for the DB system.
|
46577
47289
|
:param _builtins.str shape_type: The shape type for the virtual machine DB system. Shape type is determined by CPU hardware. Valid values are `AMD` , `INTEL` or `INTEL_FLEX_X9`.
|
46578
47290
|
"""
|
@@ -46599,6 +47311,7 @@ class GetDbSystemShapesDbSystemShapeResult(dict):
|
|
46599
47311
|
pulumi.set(__self__, "minimum_node_count", minimum_node_count)
|
46600
47312
|
pulumi.set(__self__, "name", name)
|
46601
47313
|
pulumi.set(__self__, "shape", shape)
|
47314
|
+
pulumi.set(__self__, "shape_attributes", shape_attributes)
|
46602
47315
|
pulumi.set(__self__, "shape_family", shape_family)
|
46603
47316
|
pulumi.set(__self__, "shape_type", shape_type)
|
46604
47317
|
|
@@ -46787,6 +47500,14 @@ class GetDbSystemShapesDbSystemShapeResult(dict):
|
|
46787
47500
|
"""
|
46788
47501
|
return pulumi.get(self, "shape")
|
46789
47502
|
|
47503
|
+
@_builtins.property
|
47504
|
+
@pulumi.getter(name="shapeAttributes")
|
47505
|
+
def shape_attributes(self) -> Sequence[_builtins.str]:
|
47506
|
+
"""
|
47507
|
+
The shapeAttributes of the DB system shape.
|
47508
|
+
"""
|
47509
|
+
return pulumi.get(self, "shape_attributes")
|
47510
|
+
|
46790
47511
|
@_builtins.property
|
46791
47512
|
@pulumi.getter(name="shapeFamily")
|
46792
47513
|
def shape_family(self) -> _builtins.str:
|
@@ -47108,6 +47829,8 @@ class GetDbSystemsDbSystemResult(dict):
|
|
47108
47829
|
backup_subnet_id: _builtins.str,
|
47109
47830
|
cluster_name: _builtins.str,
|
47110
47831
|
compartment_id: _builtins.str,
|
47832
|
+
compute_count: _builtins.int,
|
47833
|
+
compute_model: _builtins.str,
|
47111
47834
|
cpu_core_count: _builtins.int,
|
47112
47835
|
data_collection_options: Sequence['outputs.GetDbSystemsDbSystemDataCollectionOptionResult'],
|
47113
47836
|
data_storage_percentage: _builtins.int,
|
@@ -47168,6 +47891,8 @@ class GetDbSystemsDbSystemResult(dict):
|
|
47168
47891
|
:param _builtins.str backup_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup network subnet the DB system is associated with. Applicable only to Exadata DB systems.
|
47169
47892
|
:param _builtins.str cluster_name: The cluster name for Exadata and 2-node RAC virtual machine DB systems. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
|
47170
47893
|
:param _builtins.str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
47894
|
+
:param _builtins.int compute_count: The number of compute servers for the DB system.
|
47895
|
+
:param _builtins.str compute_model: The compute model for Base Database Service. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. The ECPU compute model is the recommended model, and the OCPU compute model is legacy.
|
47171
47896
|
:param _builtins.int cpu_core_count: The number of CPU cores enabled on the DB system.
|
47172
47897
|
:param Sequence['GetDbSystemsDbSystemDataCollectionOptionArgs'] data_collection_options: Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
|
47173
47898
|
:param _builtins.int data_storage_percentage: The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 40 and 80. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems. Required for BMDBs.
|
@@ -47224,6 +47949,8 @@ class GetDbSystemsDbSystemResult(dict):
|
|
47224
47949
|
pulumi.set(__self__, "backup_subnet_id", backup_subnet_id)
|
47225
47950
|
pulumi.set(__self__, "cluster_name", cluster_name)
|
47226
47951
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
47952
|
+
pulumi.set(__self__, "compute_count", compute_count)
|
47953
|
+
pulumi.set(__self__, "compute_model", compute_model)
|
47227
47954
|
pulumi.set(__self__, "cpu_core_count", cpu_core_count)
|
47228
47955
|
pulumi.set(__self__, "data_collection_options", data_collection_options)
|
47229
47956
|
pulumi.set(__self__, "data_storage_percentage", data_storage_percentage)
|
@@ -47319,6 +48046,22 @@ class GetDbSystemsDbSystemResult(dict):
|
|
47319
48046
|
"""
|
47320
48047
|
return pulumi.get(self, "compartment_id")
|
47321
48048
|
|
48049
|
+
@_builtins.property
|
48050
|
+
@pulumi.getter(name="computeCount")
|
48051
|
+
def compute_count(self) -> _builtins.int:
|
48052
|
+
"""
|
48053
|
+
The number of compute servers for the DB system.
|
48054
|
+
"""
|
48055
|
+
return pulumi.get(self, "compute_count")
|
48056
|
+
|
48057
|
+
@_builtins.property
|
48058
|
+
@pulumi.getter(name="computeModel")
|
48059
|
+
def compute_model(self) -> _builtins.str:
|
48060
|
+
"""
|
48061
|
+
The compute model for Base Database Service. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. The ECPU compute model is the recommended model, and the OCPU compute model is legacy.
|
48062
|
+
"""
|
48063
|
+
return pulumi.get(self, "compute_model")
|
48064
|
+
|
47322
48065
|
@_builtins.property
|
47323
48066
|
@pulumi.getter(name="cpuCoreCount")
|
47324
48067
|
def cpu_core_count(self) -> _builtins.int:
|
@@ -50907,6 +51650,7 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
|
|
50907
51650
|
scan_listener_port_tcp_ssl: _builtins.int,
|
50908
51651
|
security_attributes: Mapping[str, _builtins.str],
|
50909
51652
|
shape: _builtins.str,
|
51653
|
+
shape_attribute: _builtins.str,
|
50910
51654
|
ssh_public_keys: Sequence[_builtins.str],
|
50911
51655
|
state: _builtins.str,
|
50912
51656
|
subnet_id: _builtins.str,
|
@@ -50952,6 +51696,7 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
|
|
50952
51696
|
:param _builtins.int scan_listener_port_tcp_ssl: The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
|
50953
51697
|
:param Mapping[str, _builtins.str] security_attributes: Security Attributes 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: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
50954
51698
|
:param _builtins.str shape: The shape of the Exadata VM cluster on Exascale Infrastructure resource
|
51699
|
+
:param _builtins.str shape_attribute: The type of Exascale storage used for Exadata VM cluster. The default is SMART_STORAGE which supports Oracle Database 23ai and later
|
50955
51700
|
:param Sequence[_builtins.str] ssh_public_keys: The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
|
50956
51701
|
:param _builtins.str state: A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
|
50957
51702
|
:param _builtins.str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
|
@@ -50996,6 +51741,7 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
|
|
50996
51741
|
pulumi.set(__self__, "scan_listener_port_tcp_ssl", scan_listener_port_tcp_ssl)
|
50997
51742
|
pulumi.set(__self__, "security_attributes", security_attributes)
|
50998
51743
|
pulumi.set(__self__, "shape", shape)
|
51744
|
+
pulumi.set(__self__, "shape_attribute", shape_attribute)
|
50999
51745
|
pulumi.set(__self__, "ssh_public_keys", ssh_public_keys)
|
51000
51746
|
pulumi.set(__self__, "state", state)
|
51001
51747
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
@@ -51272,6 +52018,14 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
|
|
51272
52018
|
"""
|
51273
52019
|
return pulumi.get(self, "shape")
|
51274
52020
|
|
52021
|
+
@_builtins.property
|
52022
|
+
@pulumi.getter(name="shapeAttribute")
|
52023
|
+
def shape_attribute(self) -> _builtins.str:
|
52024
|
+
"""
|
52025
|
+
The type of Exascale storage used for Exadata VM cluster. The default is SMART_STORAGE which supports Oracle Database 23ai and later
|
52026
|
+
"""
|
52027
|
+
return pulumi.get(self, "shape_attribute")
|
52028
|
+
|
51275
52029
|
@_builtins.property
|
51276
52030
|
@pulumi.getter(name="sshPublicKeys")
|
51277
52031
|
def ssh_public_keys(self) -> Sequence[_builtins.str]:
|
@@ -51656,6 +52410,7 @@ class GetExascaleDbStorageVaultHighCapacityDatabaseStorageResult(dict):
|
|
51656
52410
|
class GetExascaleDbStorageVaultsExascaleDbStorageVaultResult(dict):
|
51657
52411
|
def __init__(__self__, *,
|
51658
52412
|
additional_flash_cache_in_percent: _builtins.int,
|
52413
|
+
attached_shape_attributes: Sequence[_builtins.str],
|
51659
52414
|
availability_domain: _builtins.str,
|
51660
52415
|
cluster_placement_group_id: _builtins.str,
|
51661
52416
|
compartment_id: _builtins.str,
|
@@ -51676,6 +52431,7 @@ class GetExascaleDbStorageVaultsExascaleDbStorageVaultResult(dict):
|
|
51676
52431
|
vm_cluster_ids: Sequence[_builtins.str]):
|
51677
52432
|
"""
|
51678
52433
|
:param _builtins.int additional_flash_cache_in_percent: The size of additional Flash Cache in percentage of High Capacity database storage.
|
52434
|
+
:param Sequence[_builtins.str] attached_shape_attributes: A filter to return only Exadata Database Storage Vaults which match the given attachedShapeAttributes or has null attachedShapeAttributes
|
51679
52435
|
:param _builtins.str availability_domain: The name of the availability domain in which the Exadata Database Storage Vault is located.
|
51680
52436
|
:param _builtins.str cluster_placement_group_id: A filter to return only resources that match the given cluster placement group ID exactly.
|
51681
52437
|
:param _builtins.str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
@@ -51696,6 +52452,7 @@ class GetExascaleDbStorageVaultsExascaleDbStorageVaultResult(dict):
|
|
51696
52452
|
:param Sequence[_builtins.str] vm_cluster_ids: The List of Exadata VM cluster on Exascale Infrastructure [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) **Note:** If Exadata Database Storage Vault is not used for any Exadata VM cluster on Exascale Infrastructure, this list is empty.
|
51697
52453
|
"""
|
51698
52454
|
pulumi.set(__self__, "additional_flash_cache_in_percent", additional_flash_cache_in_percent)
|
52455
|
+
pulumi.set(__self__, "attached_shape_attributes", attached_shape_attributes)
|
51699
52456
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
51700
52457
|
pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
|
51701
52458
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -51723,6 +52480,14 @@ class GetExascaleDbStorageVaultsExascaleDbStorageVaultResult(dict):
|
|
51723
52480
|
"""
|
51724
52481
|
return pulumi.get(self, "additional_flash_cache_in_percent")
|
51725
52482
|
|
52483
|
+
@_builtins.property
|
52484
|
+
@pulumi.getter(name="attachedShapeAttributes")
|
52485
|
+
def attached_shape_attributes(self) -> Sequence[_builtins.str]:
|
52486
|
+
"""
|
52487
|
+
A filter to return only Exadata Database Storage Vaults which match the given attachedShapeAttributes or has null attachedShapeAttributes
|
52488
|
+
"""
|
52489
|
+
return pulumi.get(self, "attached_shape_attributes")
|
52490
|
+
|
51726
52491
|
@_builtins.property
|
51727
52492
|
@pulumi.getter(name="availabilityDomain")
|
51728
52493
|
def availability_domain(self) -> _builtins.str:
|
@@ -54634,12 +55399,15 @@ class GetGiVersionsGiVersionResult(dict):
|
|
54634
55399
|
class GetKeyStoreAssociatedDatabaseResult(dict):
|
54635
55400
|
def __init__(__self__, *,
|
54636
55401
|
db_name: _builtins.str,
|
55402
|
+
db_unique_name: _builtins.str,
|
54637
55403
|
id: _builtins.str):
|
54638
55404
|
"""
|
54639
55405
|
:param _builtins.str db_name: The name of the database that is associated with the key store.
|
55406
|
+
:param _builtins.str db_unique_name: The unique name of the database that is associated with the key store.
|
54640
55407
|
:param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
|
54641
55408
|
"""
|
54642
55409
|
pulumi.set(__self__, "db_name", db_name)
|
55410
|
+
pulumi.set(__self__, "db_unique_name", db_unique_name)
|
54643
55411
|
pulumi.set(__self__, "id", id)
|
54644
55412
|
|
54645
55413
|
@_builtins.property
|
@@ -54650,6 +55418,14 @@ class GetKeyStoreAssociatedDatabaseResult(dict):
|
|
54650
55418
|
"""
|
54651
55419
|
return pulumi.get(self, "db_name")
|
54652
55420
|
|
55421
|
+
@_builtins.property
|
55422
|
+
@pulumi.getter(name="dbUniqueName")
|
55423
|
+
def db_unique_name(self) -> _builtins.str:
|
55424
|
+
"""
|
55425
|
+
The unique name of the database that is associated with the key store.
|
55426
|
+
"""
|
55427
|
+
return pulumi.get(self, "db_unique_name")
|
55428
|
+
|
54653
55429
|
@_builtins.property
|
54654
55430
|
@pulumi.getter
|
54655
55431
|
def id(self) -> _builtins.str:
|
@@ -54887,12 +55663,15 @@ class GetKeyStoresKeyStoreResult(dict):
|
|
54887
55663
|
class GetKeyStoresKeyStoreAssociatedDatabaseResult(dict):
|
54888
55664
|
def __init__(__self__, *,
|
54889
55665
|
db_name: _builtins.str,
|
55666
|
+
db_unique_name: _builtins.str,
|
54890
55667
|
id: _builtins.str):
|
54891
55668
|
"""
|
54892
55669
|
:param _builtins.str db_name: The name of the database that is associated with the key store.
|
55670
|
+
:param _builtins.str db_unique_name: The unique name of the database that is associated with the key store.
|
54893
55671
|
:param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
|
54894
55672
|
"""
|
54895
55673
|
pulumi.set(__self__, "db_name", db_name)
|
55674
|
+
pulumi.set(__self__, "db_unique_name", db_unique_name)
|
54896
55675
|
pulumi.set(__self__, "id", id)
|
54897
55676
|
|
54898
55677
|
@_builtins.property
|
@@ -54903,6 +55682,14 @@ class GetKeyStoresKeyStoreAssociatedDatabaseResult(dict):
|
|
54903
55682
|
"""
|
54904
55683
|
return pulumi.get(self, "db_name")
|
54905
55684
|
|
55685
|
+
@_builtins.property
|
55686
|
+
@pulumi.getter(name="dbUniqueName")
|
55687
|
+
def db_unique_name(self) -> _builtins.str:
|
55688
|
+
"""
|
55689
|
+
The unique name of the database that is associated with the key store.
|
55690
|
+
"""
|
55691
|
+
return pulumi.get(self, "db_unique_name")
|
55692
|
+
|
54906
55693
|
@_builtins.property
|
54907
55694
|
@pulumi.getter
|
54908
55695
|
def id(self) -> _builtins.str:
|
@@ -55891,7 +56678,8 @@ class GetPluggableDatabasePdbCreationTypeDetailResult(dict):
|
|
55891
56678
|
is_thin_clone: _builtins.bool,
|
55892
56679
|
refreshable_clone_details: Sequence['outputs.GetPluggableDatabasePdbCreationTypeDetailRefreshableCloneDetailResult'],
|
55893
56680
|
source_container_database_admin_password: _builtins.str,
|
55894
|
-
source_pluggable_database_id: _builtins.str
|
56681
|
+
source_pluggable_database_id: _builtins.str,
|
56682
|
+
source_pluggable_database_snapshot_id: _builtins.str):
|
55895
56683
|
pulumi.set(__self__, "creation_type", creation_type)
|
55896
56684
|
pulumi.set(__self__, "dblink_user_password", dblink_user_password)
|
55897
56685
|
pulumi.set(__self__, "dblink_username", dblink_username)
|
@@ -55899,6 +56687,7 @@ class GetPluggableDatabasePdbCreationTypeDetailResult(dict):
|
|
55899
56687
|
pulumi.set(__self__, "refreshable_clone_details", refreshable_clone_details)
|
55900
56688
|
pulumi.set(__self__, "source_container_database_admin_password", source_container_database_admin_password)
|
55901
56689
|
pulumi.set(__self__, "source_pluggable_database_id", source_pluggable_database_id)
|
56690
|
+
pulumi.set(__self__, "source_pluggable_database_snapshot_id", source_pluggable_database_snapshot_id)
|
55902
56691
|
|
55903
56692
|
@_builtins.property
|
55904
56693
|
@pulumi.getter(name="creationType")
|
@@ -55935,6 +56724,11 @@ class GetPluggableDatabasePdbCreationTypeDetailResult(dict):
|
|
55935
56724
|
def source_pluggable_database_id(self) -> _builtins.str:
|
55936
56725
|
return pulumi.get(self, "source_pluggable_database_id")
|
55937
56726
|
|
56727
|
+
@_builtins.property
|
56728
|
+
@pulumi.getter(name="sourcePluggableDatabaseSnapshotId")
|
56729
|
+
def source_pluggable_database_snapshot_id(self) -> _builtins.str:
|
56730
|
+
return pulumi.get(self, "source_pluggable_database_snapshot_id")
|
56731
|
+
|
55938
56732
|
|
55939
56733
|
@pulumi.output_type
|
55940
56734
|
class GetPluggableDatabasePdbCreationTypeDetailRefreshableCloneDetailResult(dict):
|
@@ -56019,6 +56813,167 @@ class GetPluggableDatabaseRefreshableCloneConfigResult(dict):
|
|
56019
56813
|
return pulumi.get(self, "is_refreshable_clone")
|
56020
56814
|
|
56021
56815
|
|
56816
|
+
@pulumi.output_type
|
56817
|
+
class GetPluggableDatabaseSnapshotsFilterResult(dict):
|
56818
|
+
def __init__(__self__, *,
|
56819
|
+
name: _builtins.str,
|
56820
|
+
values: Sequence[_builtins.str],
|
56821
|
+
regex: Optional[_builtins.bool] = None):
|
56822
|
+
"""
|
56823
|
+
:param _builtins.str name: A filter to return only resources that match the entire name given. The match is not case sensitive.
|
56824
|
+
"""
|
56825
|
+
pulumi.set(__self__, "name", name)
|
56826
|
+
pulumi.set(__self__, "values", values)
|
56827
|
+
if regex is not None:
|
56828
|
+
pulumi.set(__self__, "regex", regex)
|
56829
|
+
|
56830
|
+
@_builtins.property
|
56831
|
+
@pulumi.getter
|
56832
|
+
def name(self) -> _builtins.str:
|
56833
|
+
"""
|
56834
|
+
A filter to return only resources that match the entire name given. The match is not case sensitive.
|
56835
|
+
"""
|
56836
|
+
return pulumi.get(self, "name")
|
56837
|
+
|
56838
|
+
@_builtins.property
|
56839
|
+
@pulumi.getter
|
56840
|
+
def values(self) -> Sequence[_builtins.str]:
|
56841
|
+
return pulumi.get(self, "values")
|
56842
|
+
|
56843
|
+
@_builtins.property
|
56844
|
+
@pulumi.getter
|
56845
|
+
def regex(self) -> Optional[_builtins.bool]:
|
56846
|
+
return pulumi.get(self, "regex")
|
56847
|
+
|
56848
|
+
|
56849
|
+
@pulumi.output_type
|
56850
|
+
class GetPluggableDatabaseSnapshotsPluggableDatabaseSnapshotResult(dict):
|
56851
|
+
def __init__(__self__, *,
|
56852
|
+
cluster_id: _builtins.str,
|
56853
|
+
compartment_id: _builtins.str,
|
56854
|
+
defined_tags: Mapping[str, _builtins.str],
|
56855
|
+
freeform_tags: Mapping[str, _builtins.str],
|
56856
|
+
id: _builtins.str,
|
56857
|
+
lifecycle_details: _builtins.str,
|
56858
|
+
name: _builtins.str,
|
56859
|
+
pluggable_database_id: _builtins.str,
|
56860
|
+
state: _builtins.str,
|
56861
|
+
system_tags: Mapping[str, _builtins.str],
|
56862
|
+
time_created: _builtins.str):
|
56863
|
+
"""
|
56864
|
+
:param _builtins.str cluster_id: A filter to return only Exadata Database Node Snapshots that match the given VM cluster.
|
56865
|
+
:param _builtins.str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
56866
|
+
:param Mapping[str, _builtins.str] defined_tags: 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).
|
56867
|
+
: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"}`
|
56868
|
+
:param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Pluggable Database Snapshot.
|
56869
|
+
:param _builtins.str lifecycle_details: Additional information about the current lifecycle state of the Exadata Pluggable Database Snapshot.
|
56870
|
+
:param _builtins.str name: A filter to return only resources that match the entire name given. The match is not case sensitive.
|
56871
|
+
:param _builtins.str pluggable_database_id: A filter to return only Exadata Pluggable Database Snapshots that match the given database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
56872
|
+
:param _builtins.str state: A filter to return only Exadata Pluggable Database Snapshots that match the given lifecycle state exactly.
|
56873
|
+
:param Mapping[str, _builtins.str] system_tags: System 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).
|
56874
|
+
:param _builtins.str time_created: The date and time that the Exadata Pluggable Database Snapshot was created, as expressed in RFC 3339 format. For example: 2023-06-27T21:10:29Z
|
56875
|
+
"""
|
56876
|
+
pulumi.set(__self__, "cluster_id", cluster_id)
|
56877
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
56878
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
56879
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
56880
|
+
pulumi.set(__self__, "id", id)
|
56881
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
56882
|
+
pulumi.set(__self__, "name", name)
|
56883
|
+
pulumi.set(__self__, "pluggable_database_id", pluggable_database_id)
|
56884
|
+
pulumi.set(__self__, "state", state)
|
56885
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
56886
|
+
pulumi.set(__self__, "time_created", time_created)
|
56887
|
+
|
56888
|
+
@_builtins.property
|
56889
|
+
@pulumi.getter(name="clusterId")
|
56890
|
+
def cluster_id(self) -> _builtins.str:
|
56891
|
+
"""
|
56892
|
+
A filter to return only Exadata Database Node Snapshots that match the given VM cluster.
|
56893
|
+
"""
|
56894
|
+
return pulumi.get(self, "cluster_id")
|
56895
|
+
|
56896
|
+
@_builtins.property
|
56897
|
+
@pulumi.getter(name="compartmentId")
|
56898
|
+
def compartment_id(self) -> _builtins.str:
|
56899
|
+
"""
|
56900
|
+
The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
56901
|
+
"""
|
56902
|
+
return pulumi.get(self, "compartment_id")
|
56903
|
+
|
56904
|
+
@_builtins.property
|
56905
|
+
@pulumi.getter(name="definedTags")
|
56906
|
+
def defined_tags(self) -> Mapping[str, _builtins.str]:
|
56907
|
+
"""
|
56908
|
+
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).
|
56909
|
+
"""
|
56910
|
+
return pulumi.get(self, "defined_tags")
|
56911
|
+
|
56912
|
+
@_builtins.property
|
56913
|
+
@pulumi.getter(name="freeformTags")
|
56914
|
+
def freeform_tags(self) -> Mapping[str, _builtins.str]:
|
56915
|
+
"""
|
56916
|
+
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"}`
|
56917
|
+
"""
|
56918
|
+
return pulumi.get(self, "freeform_tags")
|
56919
|
+
|
56920
|
+
@_builtins.property
|
56921
|
+
@pulumi.getter
|
56922
|
+
def id(self) -> _builtins.str:
|
56923
|
+
"""
|
56924
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Pluggable Database Snapshot.
|
56925
|
+
"""
|
56926
|
+
return pulumi.get(self, "id")
|
56927
|
+
|
56928
|
+
@_builtins.property
|
56929
|
+
@pulumi.getter(name="lifecycleDetails")
|
56930
|
+
def lifecycle_details(self) -> _builtins.str:
|
56931
|
+
"""
|
56932
|
+
Additional information about the current lifecycle state of the Exadata Pluggable Database Snapshot.
|
56933
|
+
"""
|
56934
|
+
return pulumi.get(self, "lifecycle_details")
|
56935
|
+
|
56936
|
+
@_builtins.property
|
56937
|
+
@pulumi.getter
|
56938
|
+
def name(self) -> _builtins.str:
|
56939
|
+
"""
|
56940
|
+
A filter to return only resources that match the entire name given. The match is not case sensitive.
|
56941
|
+
"""
|
56942
|
+
return pulumi.get(self, "name")
|
56943
|
+
|
56944
|
+
@_builtins.property
|
56945
|
+
@pulumi.getter(name="pluggableDatabaseId")
|
56946
|
+
def pluggable_database_id(self) -> _builtins.str:
|
56947
|
+
"""
|
56948
|
+
A filter to return only Exadata Pluggable Database Snapshots that match the given database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
56949
|
+
"""
|
56950
|
+
return pulumi.get(self, "pluggable_database_id")
|
56951
|
+
|
56952
|
+
@_builtins.property
|
56953
|
+
@pulumi.getter
|
56954
|
+
def state(self) -> _builtins.str:
|
56955
|
+
"""
|
56956
|
+
A filter to return only Exadata Pluggable Database Snapshots that match the given lifecycle state exactly.
|
56957
|
+
"""
|
56958
|
+
return pulumi.get(self, "state")
|
56959
|
+
|
56960
|
+
@_builtins.property
|
56961
|
+
@pulumi.getter(name="systemTags")
|
56962
|
+
def system_tags(self) -> Mapping[str, _builtins.str]:
|
56963
|
+
"""
|
56964
|
+
System 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).
|
56965
|
+
"""
|
56966
|
+
return pulumi.get(self, "system_tags")
|
56967
|
+
|
56968
|
+
@_builtins.property
|
56969
|
+
@pulumi.getter(name="timeCreated")
|
56970
|
+
def time_created(self) -> _builtins.str:
|
56971
|
+
"""
|
56972
|
+
The date and time that the Exadata Pluggable Database Snapshot was created, as expressed in RFC 3339 format. For example: 2023-06-27T21:10:29Z
|
56973
|
+
"""
|
56974
|
+
return pulumi.get(self, "time_created")
|
56975
|
+
|
56976
|
+
|
56022
56977
|
@pulumi.output_type
|
56023
56978
|
class GetPluggableDatabasesFilterResult(dict):
|
56024
56979
|
def __init__(__self__, *,
|
@@ -56348,7 +57303,8 @@ class GetPluggableDatabasesPluggableDatabasePdbCreationTypeDetailResult(dict):
|
|
56348
57303
|
is_thin_clone: _builtins.bool,
|
56349
57304
|
refreshable_clone_details: Sequence['outputs.GetPluggableDatabasesPluggableDatabasePdbCreationTypeDetailRefreshableCloneDetailResult'],
|
56350
57305
|
source_container_database_admin_password: _builtins.str,
|
56351
|
-
source_pluggable_database_id: _builtins.str
|
57306
|
+
source_pluggable_database_id: _builtins.str,
|
57307
|
+
source_pluggable_database_snapshot_id: _builtins.str):
|
56352
57308
|
pulumi.set(__self__, "creation_type", creation_type)
|
56353
57309
|
pulumi.set(__self__, "dblink_user_password", dblink_user_password)
|
56354
57310
|
pulumi.set(__self__, "dblink_username", dblink_username)
|
@@ -56356,6 +57312,7 @@ class GetPluggableDatabasesPluggableDatabasePdbCreationTypeDetailResult(dict):
|
|
56356
57312
|
pulumi.set(__self__, "refreshable_clone_details", refreshable_clone_details)
|
56357
57313
|
pulumi.set(__self__, "source_container_database_admin_password", source_container_database_admin_password)
|
56358
57314
|
pulumi.set(__self__, "source_pluggable_database_id", source_pluggable_database_id)
|
57315
|
+
pulumi.set(__self__, "source_pluggable_database_snapshot_id", source_pluggable_database_snapshot_id)
|
56359
57316
|
|
56360
57317
|
@_builtins.property
|
56361
57318
|
@pulumi.getter(name="creationType")
|
@@ -56392,6 +57349,11 @@ class GetPluggableDatabasesPluggableDatabasePdbCreationTypeDetailResult(dict):
|
|
56392
57349
|
def source_pluggable_database_id(self) -> _builtins.str:
|
56393
57350
|
return pulumi.get(self, "source_pluggable_database_id")
|
56394
57351
|
|
57352
|
+
@_builtins.property
|
57353
|
+
@pulumi.getter(name="sourcePluggableDatabaseSnapshotId")
|
57354
|
+
def source_pluggable_database_snapshot_id(self) -> _builtins.str:
|
57355
|
+
return pulumi.get(self, "source_pluggable_database_snapshot_id")
|
57356
|
+
|
56395
57357
|
|
56396
57358
|
@pulumi.output_type
|
56397
57359
|
class GetPluggableDatabasesPluggableDatabasePdbCreationTypeDetailRefreshableCloneDetailResult(dict):
|