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/_inputs.py
CHANGED
@@ -43,6 +43,8 @@ __all__ = [
|
|
43
43
|
'AutonomousContainerDatabaseBackupConfigBackupDestinationDetailsArgsDict',
|
44
44
|
'AutonomousContainerDatabaseBackupDestinationPropertiesListArgs',
|
45
45
|
'AutonomousContainerDatabaseBackupDestinationPropertiesListArgsDict',
|
46
|
+
'AutonomousContainerDatabaseCustomerContactArgs',
|
47
|
+
'AutonomousContainerDatabaseCustomerContactArgsDict',
|
46
48
|
'AutonomousContainerDatabaseDataguardArgs',
|
47
49
|
'AutonomousContainerDatabaseDataguardArgsDict',
|
48
50
|
'AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgs',
|
@@ -203,10 +205,14 @@ __all__ = [
|
|
203
205
|
'DatabaseDatabaseManagementConfigArgsDict',
|
204
206
|
'DatabaseDatabaseSourceEncryptionKeyLocationDetailsArgs',
|
205
207
|
'DatabaseDatabaseSourceEncryptionKeyLocationDetailsArgsDict',
|
208
|
+
'DatabaseDatabaseStorageSizeDetailsArgs',
|
209
|
+
'DatabaseDatabaseStorageSizeDetailsArgsDict',
|
206
210
|
'DatabaseDbBackupConfigArgs',
|
207
211
|
'DatabaseDbBackupConfigArgsDict',
|
208
212
|
'DatabaseDbBackupConfigBackupDestinationDetailArgs',
|
209
213
|
'DatabaseDbBackupConfigBackupDestinationDetailArgsDict',
|
214
|
+
'DatabaseStorageSizeDetailArgs',
|
215
|
+
'DatabaseStorageSizeDetailArgsDict',
|
210
216
|
'DatabaseUpgradeConnectionStringArgs',
|
211
217
|
'DatabaseUpgradeConnectionStringArgsDict',
|
212
218
|
'DatabaseUpgradeDataGuardGroupArgs',
|
@@ -229,6 +235,8 @@ __all__ = [
|
|
229
235
|
'DbHomeDatabaseDbBackupConfigBackupDestinationDetailArgsDict',
|
230
236
|
'DbHomeDatabaseEncryptionKeyLocationDetailsArgs',
|
231
237
|
'DbHomeDatabaseEncryptionKeyLocationDetailsArgsDict',
|
238
|
+
'DbHomeDatabaseStorageSizeDetailsArgs',
|
239
|
+
'DbHomeDatabaseStorageSizeDetailsArgsDict',
|
232
240
|
'DbSystemDataCollectionOptionsArgs',
|
233
241
|
'DbSystemDataCollectionOptionsArgsDict',
|
234
242
|
'DbSystemDbHomeArgs',
|
@@ -577,6 +585,8 @@ __all__ = [
|
|
577
585
|
'GetManagedPreferredCredentialsFilterArgsDict',
|
578
586
|
'GetOneoffPatchesFilterArgs',
|
579
587
|
'GetOneoffPatchesFilterArgsDict',
|
588
|
+
'GetPluggableDatabaseSnapshotsFilterArgs',
|
589
|
+
'GetPluggableDatabaseSnapshotsFilterArgsDict',
|
580
590
|
'GetPluggableDatabasesFilterArgs',
|
581
591
|
'GetPluggableDatabasesFilterArgsDict',
|
582
592
|
'GetScheduledActionParamsFilterArgs',
|
@@ -2565,6 +2575,38 @@ class AutonomousContainerDatabaseBackupDestinationPropertiesListArgs:
|
|
2565
2575
|
pulumi.set(self, "time_at_which_storage_details_are_updated", value)
|
2566
2576
|
|
2567
2577
|
|
2578
|
+
if not MYPY:
|
2579
|
+
class AutonomousContainerDatabaseCustomerContactArgsDict(TypedDict):
|
2580
|
+
email: NotRequired[pulumi.Input[_builtins.str]]
|
2581
|
+
"""
|
2582
|
+
(Updatable) The email address used by Oracle to send notifications regarding databases and infrastructure.
|
2583
|
+
"""
|
2584
|
+
elif False:
|
2585
|
+
AutonomousContainerDatabaseCustomerContactArgsDict: TypeAlias = Mapping[str, Any]
|
2586
|
+
|
2587
|
+
@pulumi.input_type
|
2588
|
+
class AutonomousContainerDatabaseCustomerContactArgs:
|
2589
|
+
def __init__(__self__, *,
|
2590
|
+
email: Optional[pulumi.Input[_builtins.str]] = None):
|
2591
|
+
"""
|
2592
|
+
:param pulumi.Input[_builtins.str] email: (Updatable) The email address used by Oracle to send notifications regarding databases and infrastructure.
|
2593
|
+
"""
|
2594
|
+
if email is not None:
|
2595
|
+
pulumi.set(__self__, "email", email)
|
2596
|
+
|
2597
|
+
@_builtins.property
|
2598
|
+
@pulumi.getter
|
2599
|
+
def email(self) -> Optional[pulumi.Input[_builtins.str]]:
|
2600
|
+
"""
|
2601
|
+
(Updatable) The email address used by Oracle to send notifications regarding databases and infrastructure.
|
2602
|
+
"""
|
2603
|
+
return pulumi.get(self, "email")
|
2604
|
+
|
2605
|
+
@email.setter
|
2606
|
+
def email(self, value: Optional[pulumi.Input[_builtins.str]]):
|
2607
|
+
pulumi.set(self, "email", value)
|
2608
|
+
|
2609
|
+
|
2568
2610
|
if not MYPY:
|
2569
2611
|
class AutonomousContainerDatabaseDataguardArgsDict(TypedDict):
|
2570
2612
|
apply_lag: NotRequired[pulumi.Input[_builtins.str]]
|
@@ -5999,7 +6041,7 @@ if not MYPY:
|
|
5999
6041
|
"""
|
6000
6042
|
vault_id: NotRequired[pulumi.Input[_builtins.str]]
|
6001
6043
|
"""
|
6002
|
-
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).
|
6044
|
+
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.
|
6003
6045
|
"""
|
6004
6046
|
elif False:
|
6005
6047
|
AutonomousDatabaseKeyHistoryEntryArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -6015,7 +6057,7 @@ class AutonomousDatabaseKeyHistoryEntryArgs:
|
|
6015
6057
|
:param pulumi.Input[_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.
|
6016
6058
|
:param pulumi.Input[_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.
|
6017
6059
|
:param pulumi.Input[_builtins.str] time_activated: The date and time the kms key activated.
|
6018
|
-
:param pulumi.Input[_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).
|
6060
|
+
:param pulumi.Input[_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.
|
6019
6061
|
"""
|
6020
6062
|
if id is not None:
|
6021
6063
|
pulumi.set(__self__, "id", id)
|
@@ -6066,7 +6108,7 @@ class AutonomousDatabaseKeyHistoryEntryArgs:
|
|
6066
6108
|
@pulumi.getter(name="vaultId")
|
6067
6109
|
def vault_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
6068
6110
|
"""
|
6069
|
-
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).
|
6111
|
+
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.
|
6070
6112
|
"""
|
6071
6113
|
return pulumi.get(self, "vault_id")
|
6072
6114
|
|
@@ -6271,7 +6313,7 @@ if not MYPY:
|
|
6271
6313
|
class AutonomousDatabaseLongTermBackupScheduleArgsDict(TypedDict):
|
6272
6314
|
is_disabled: NotRequired[pulumi.Input[_builtins.bool]]
|
6273
6315
|
"""
|
6274
|
-
Indicates if the
|
6316
|
+
Indicates if the resource pool should be deleted for the Autonomous Database.
|
6275
6317
|
"""
|
6276
6318
|
repeat_cadence: NotRequired[pulumi.Input[_builtins.str]]
|
6277
6319
|
"""
|
@@ -6296,7 +6338,7 @@ class AutonomousDatabaseLongTermBackupScheduleArgs:
|
|
6296
6338
|
retention_period_in_days: Optional[pulumi.Input[_builtins.int]] = None,
|
6297
6339
|
time_of_backup: Optional[pulumi.Input[_builtins.str]] = None):
|
6298
6340
|
"""
|
6299
|
-
:param pulumi.Input[_builtins.bool] is_disabled: Indicates if the
|
6341
|
+
:param pulumi.Input[_builtins.bool] is_disabled: Indicates if the resource pool should be deleted for the Autonomous Database.
|
6300
6342
|
:param pulumi.Input[_builtins.str] repeat_cadence: The frequency of the long-term backup schedule
|
6301
6343
|
:param pulumi.Input[_builtins.int] retention_period_in_days: Retention period, in days, for long-term backups
|
6302
6344
|
:param pulumi.Input[_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.
|
@@ -6314,7 +6356,7 @@ class AutonomousDatabaseLongTermBackupScheduleArgs:
|
|
6314
6356
|
@pulumi.getter(name="isDisabled")
|
6315
6357
|
def is_disabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
6316
6358
|
"""
|
6317
|
-
Indicates if the
|
6359
|
+
Indicates if the resource pool should be deleted for the Autonomous Database.
|
6318
6360
|
"""
|
6319
6361
|
return pulumi.get(self, "is_disabled")
|
6320
6362
|
|
@@ -10504,6 +10546,10 @@ if not MYPY:
|
|
10504
10546
|
"""
|
10505
10547
|
The TDE wallet password of the source database specified by 'sourceDatabaseId'.
|
10506
10548
|
"""
|
10549
|
+
storage_size_details: NotRequired[pulumi.Input['DatabaseDatabaseStorageSizeDetailsArgsDict']]
|
10550
|
+
"""
|
10551
|
+
The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
|
10552
|
+
"""
|
10507
10553
|
tde_wallet_password: NotRequired[pulumi.Input[_builtins.str]]
|
10508
10554
|
"""
|
10509
10555
|
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 -.
|
@@ -10553,6 +10599,7 @@ class DatabaseDatabaseArgs:
|
|
10553
10599
|
source_database_id: Optional[pulumi.Input[_builtins.str]] = None,
|
10554
10600
|
source_encryption_key_location_details: Optional[pulumi.Input['DatabaseDatabaseSourceEncryptionKeyLocationDetailsArgs']] = None,
|
10555
10601
|
source_tde_wallet_password: Optional[pulumi.Input[_builtins.str]] = None,
|
10602
|
+
storage_size_details: Optional[pulumi.Input['DatabaseDatabaseStorageSizeDetailsArgs']] = None,
|
10556
10603
|
tde_wallet_password: Optional[pulumi.Input[_builtins.str]] = None,
|
10557
10604
|
transport_type: Optional[pulumi.Input[_builtins.str]] = None,
|
10558
10605
|
vault_id: Optional[pulumi.Input[_builtins.str]] = None):
|
@@ -10587,6 +10634,7 @@ class DatabaseDatabaseArgs:
|
|
10587
10634
|
:param pulumi.Input[_builtins.str] source_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source database.
|
10588
10635
|
:param pulumi.Input['DatabaseDatabaseSourceEncryptionKeyLocationDetailsArgs'] source_encryption_key_location_details: Types of providers supported for managing database encryption keys
|
10589
10636
|
:param pulumi.Input[_builtins.str] source_tde_wallet_password: The TDE wallet password of the source database specified by 'sourceDatabaseId'.
|
10637
|
+
:param pulumi.Input['DatabaseDatabaseStorageSizeDetailsArgs'] storage_size_details: The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
|
10590
10638
|
:param pulumi.Input[_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 -.
|
10591
10639
|
:param pulumi.Input[_builtins.str] transport_type: The redo transport type to use for this Data Guard association. Valid values depend on the specified `protectionMode`:
|
10592
10640
|
* MAXIMUM_AVAILABILITY - SYNC or FASTSYNC
|
@@ -10646,6 +10694,8 @@ class DatabaseDatabaseArgs:
|
|
10646
10694
|
pulumi.set(__self__, "source_encryption_key_location_details", source_encryption_key_location_details)
|
10647
10695
|
if source_tde_wallet_password is not None:
|
10648
10696
|
pulumi.set(__self__, "source_tde_wallet_password", source_tde_wallet_password)
|
10697
|
+
if storage_size_details is not None:
|
10698
|
+
pulumi.set(__self__, "storage_size_details", storage_size_details)
|
10649
10699
|
if tde_wallet_password is not None:
|
10650
10700
|
pulumi.set(__self__, "tde_wallet_password", tde_wallet_password)
|
10651
10701
|
if transport_type is not None:
|
@@ -10947,6 +10997,18 @@ class DatabaseDatabaseArgs:
|
|
10947
10997
|
def source_tde_wallet_password(self, value: Optional[pulumi.Input[_builtins.str]]):
|
10948
10998
|
pulumi.set(self, "source_tde_wallet_password", value)
|
10949
10999
|
|
11000
|
+
@_builtins.property
|
11001
|
+
@pulumi.getter(name="storageSizeDetails")
|
11002
|
+
def storage_size_details(self) -> Optional[pulumi.Input['DatabaseDatabaseStorageSizeDetailsArgs']]:
|
11003
|
+
"""
|
11004
|
+
The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
|
11005
|
+
"""
|
11006
|
+
return pulumi.get(self, "storage_size_details")
|
11007
|
+
|
11008
|
+
@storage_size_details.setter
|
11009
|
+
def storage_size_details(self, value: Optional[pulumi.Input['DatabaseDatabaseStorageSizeDetailsArgs']]):
|
11010
|
+
pulumi.set(self, "storage_size_details", value)
|
11011
|
+
|
10950
11012
|
@_builtins.property
|
10951
11013
|
@pulumi.getter(name="tdeWalletPassword")
|
10952
11014
|
def tde_wallet_password(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -11494,6 +11556,76 @@ class DatabaseDatabaseSourceEncryptionKeyLocationDetailsArgs:
|
|
11494
11556
|
pulumi.set(self, "provider_type", value)
|
11495
11557
|
|
11496
11558
|
|
11559
|
+
if not MYPY:
|
11560
|
+
class DatabaseDatabaseStorageSizeDetailsArgsDict(TypedDict):
|
11561
|
+
data_storage_size_in_gb: pulumi.Input[_builtins.int]
|
11562
|
+
"""
|
11563
|
+
(Updatable) The DATA storage size, in gigabytes, that is applicable for the database.
|
11564
|
+
"""
|
11565
|
+
reco_storage_size_in_gbs: pulumi.Input[_builtins.int]
|
11566
|
+
"""
|
11567
|
+
(Updatable) The RECO storage size, in gigabytes, that is applicable for the database.
|
11568
|
+
"""
|
11569
|
+
redo_log_storage_size_in_gbs: NotRequired[pulumi.Input[_builtins.int]]
|
11570
|
+
"""
|
11571
|
+
The REDO Log storage size, in gigabytes, that is applicable for the database.
|
11572
|
+
"""
|
11573
|
+
elif False:
|
11574
|
+
DatabaseDatabaseStorageSizeDetailsArgsDict: TypeAlias = Mapping[str, Any]
|
11575
|
+
|
11576
|
+
@pulumi.input_type
|
11577
|
+
class DatabaseDatabaseStorageSizeDetailsArgs:
|
11578
|
+
def __init__(__self__, *,
|
11579
|
+
data_storage_size_in_gb: pulumi.Input[_builtins.int],
|
11580
|
+
reco_storage_size_in_gbs: pulumi.Input[_builtins.int],
|
11581
|
+
redo_log_storage_size_in_gbs: Optional[pulumi.Input[_builtins.int]] = None):
|
11582
|
+
"""
|
11583
|
+
:param pulumi.Input[_builtins.int] data_storage_size_in_gb: (Updatable) The DATA storage size, in gigabytes, that is applicable for the database.
|
11584
|
+
:param pulumi.Input[_builtins.int] reco_storage_size_in_gbs: (Updatable) The RECO storage size, in gigabytes, that is applicable for the database.
|
11585
|
+
:param pulumi.Input[_builtins.int] redo_log_storage_size_in_gbs: The REDO Log storage size, in gigabytes, that is applicable for the database.
|
11586
|
+
"""
|
11587
|
+
pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
|
11588
|
+
pulumi.set(__self__, "reco_storage_size_in_gbs", reco_storage_size_in_gbs)
|
11589
|
+
if redo_log_storage_size_in_gbs is not None:
|
11590
|
+
pulumi.set(__self__, "redo_log_storage_size_in_gbs", redo_log_storage_size_in_gbs)
|
11591
|
+
|
11592
|
+
@_builtins.property
|
11593
|
+
@pulumi.getter(name="dataStorageSizeInGb")
|
11594
|
+
def data_storage_size_in_gb(self) -> pulumi.Input[_builtins.int]:
|
11595
|
+
"""
|
11596
|
+
(Updatable) The DATA storage size, in gigabytes, that is applicable for the database.
|
11597
|
+
"""
|
11598
|
+
return pulumi.get(self, "data_storage_size_in_gb")
|
11599
|
+
|
11600
|
+
@data_storage_size_in_gb.setter
|
11601
|
+
def data_storage_size_in_gb(self, value: pulumi.Input[_builtins.int]):
|
11602
|
+
pulumi.set(self, "data_storage_size_in_gb", value)
|
11603
|
+
|
11604
|
+
@_builtins.property
|
11605
|
+
@pulumi.getter(name="recoStorageSizeInGbs")
|
11606
|
+
def reco_storage_size_in_gbs(self) -> pulumi.Input[_builtins.int]:
|
11607
|
+
"""
|
11608
|
+
(Updatable) The RECO storage size, in gigabytes, that is applicable for the database.
|
11609
|
+
"""
|
11610
|
+
return pulumi.get(self, "reco_storage_size_in_gbs")
|
11611
|
+
|
11612
|
+
@reco_storage_size_in_gbs.setter
|
11613
|
+
def reco_storage_size_in_gbs(self, value: pulumi.Input[_builtins.int]):
|
11614
|
+
pulumi.set(self, "reco_storage_size_in_gbs", value)
|
11615
|
+
|
11616
|
+
@_builtins.property
|
11617
|
+
@pulumi.getter(name="redoLogStorageSizeInGbs")
|
11618
|
+
def redo_log_storage_size_in_gbs(self) -> Optional[pulumi.Input[_builtins.int]]:
|
11619
|
+
"""
|
11620
|
+
The REDO Log storage size, in gigabytes, that is applicable for the database.
|
11621
|
+
"""
|
11622
|
+
return pulumi.get(self, "redo_log_storage_size_in_gbs")
|
11623
|
+
|
11624
|
+
@redo_log_storage_size_in_gbs.setter
|
11625
|
+
def redo_log_storage_size_in_gbs(self, value: Optional[pulumi.Input[_builtins.int]]):
|
11626
|
+
pulumi.set(self, "redo_log_storage_size_in_gbs", value)
|
11627
|
+
|
11628
|
+
|
11497
11629
|
if not MYPY:
|
11498
11630
|
class DatabaseDbBackupConfigArgsDict(TypedDict):
|
11499
11631
|
auto_backup_enabled: NotRequired[pulumi.Input[_builtins.bool]]
|
@@ -11818,6 +11950,78 @@ class DatabaseDbBackupConfigBackupDestinationDetailArgs:
|
|
11818
11950
|
pulumi.set(self, "vpc_user", value)
|
11819
11951
|
|
11820
11952
|
|
11953
|
+
if not MYPY:
|
11954
|
+
class DatabaseStorageSizeDetailArgsDict(TypedDict):
|
11955
|
+
data_storage_size_in_gb: NotRequired[pulumi.Input[_builtins.int]]
|
11956
|
+
"""
|
11957
|
+
The DATA storage size, in gigabytes, that is applicable for the database.
|
11958
|
+
"""
|
11959
|
+
reco_storage_size_in_gbs: NotRequired[pulumi.Input[_builtins.int]]
|
11960
|
+
"""
|
11961
|
+
The RECO storage size, in gigabytes, that is applicable for the database.
|
11962
|
+
"""
|
11963
|
+
redo_log_storage_size_in_gbs: NotRequired[pulumi.Input[_builtins.int]]
|
11964
|
+
"""
|
11965
|
+
The REDO Log storage size, in gigabytes, that is applicable for the database.
|
11966
|
+
"""
|
11967
|
+
elif False:
|
11968
|
+
DatabaseStorageSizeDetailArgsDict: TypeAlias = Mapping[str, Any]
|
11969
|
+
|
11970
|
+
@pulumi.input_type
|
11971
|
+
class DatabaseStorageSizeDetailArgs:
|
11972
|
+
def __init__(__self__, *,
|
11973
|
+
data_storage_size_in_gb: Optional[pulumi.Input[_builtins.int]] = None,
|
11974
|
+
reco_storage_size_in_gbs: Optional[pulumi.Input[_builtins.int]] = None,
|
11975
|
+
redo_log_storage_size_in_gbs: Optional[pulumi.Input[_builtins.int]] = None):
|
11976
|
+
"""
|
11977
|
+
:param pulumi.Input[_builtins.int] data_storage_size_in_gb: The DATA storage size, in gigabytes, that is applicable for the database.
|
11978
|
+
:param pulumi.Input[_builtins.int] reco_storage_size_in_gbs: The RECO storage size, in gigabytes, that is applicable for the database.
|
11979
|
+
:param pulumi.Input[_builtins.int] redo_log_storage_size_in_gbs: The REDO Log storage size, in gigabytes, that is applicable for the database.
|
11980
|
+
"""
|
11981
|
+
if data_storage_size_in_gb is not None:
|
11982
|
+
pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
|
11983
|
+
if reco_storage_size_in_gbs is not None:
|
11984
|
+
pulumi.set(__self__, "reco_storage_size_in_gbs", reco_storage_size_in_gbs)
|
11985
|
+
if redo_log_storage_size_in_gbs is not None:
|
11986
|
+
pulumi.set(__self__, "redo_log_storage_size_in_gbs", redo_log_storage_size_in_gbs)
|
11987
|
+
|
11988
|
+
@_builtins.property
|
11989
|
+
@pulumi.getter(name="dataStorageSizeInGb")
|
11990
|
+
def data_storage_size_in_gb(self) -> Optional[pulumi.Input[_builtins.int]]:
|
11991
|
+
"""
|
11992
|
+
The DATA storage size, in gigabytes, that is applicable for the database.
|
11993
|
+
"""
|
11994
|
+
return pulumi.get(self, "data_storage_size_in_gb")
|
11995
|
+
|
11996
|
+
@data_storage_size_in_gb.setter
|
11997
|
+
def data_storage_size_in_gb(self, value: Optional[pulumi.Input[_builtins.int]]):
|
11998
|
+
pulumi.set(self, "data_storage_size_in_gb", value)
|
11999
|
+
|
12000
|
+
@_builtins.property
|
12001
|
+
@pulumi.getter(name="recoStorageSizeInGbs")
|
12002
|
+
def reco_storage_size_in_gbs(self) -> Optional[pulumi.Input[_builtins.int]]:
|
12003
|
+
"""
|
12004
|
+
The RECO storage size, in gigabytes, that is applicable for the database.
|
12005
|
+
"""
|
12006
|
+
return pulumi.get(self, "reco_storage_size_in_gbs")
|
12007
|
+
|
12008
|
+
@reco_storage_size_in_gbs.setter
|
12009
|
+
def reco_storage_size_in_gbs(self, value: Optional[pulumi.Input[_builtins.int]]):
|
12010
|
+
pulumi.set(self, "reco_storage_size_in_gbs", value)
|
12011
|
+
|
12012
|
+
@_builtins.property
|
12013
|
+
@pulumi.getter(name="redoLogStorageSizeInGbs")
|
12014
|
+
def redo_log_storage_size_in_gbs(self) -> Optional[pulumi.Input[_builtins.int]]:
|
12015
|
+
"""
|
12016
|
+
The REDO Log storage size, in gigabytes, that is applicable for the database.
|
12017
|
+
"""
|
12018
|
+
return pulumi.get(self, "redo_log_storage_size_in_gbs")
|
12019
|
+
|
12020
|
+
@redo_log_storage_size_in_gbs.setter
|
12021
|
+
def redo_log_storage_size_in_gbs(self, value: Optional[pulumi.Input[_builtins.int]]):
|
12022
|
+
pulumi.set(self, "redo_log_storage_size_in_gbs", value)
|
12023
|
+
|
12024
|
+
|
11821
12025
|
if not MYPY:
|
11822
12026
|
class DatabaseUpgradeConnectionStringArgsDict(TypedDict):
|
11823
12027
|
all_connection_strings: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]
|
@@ -12703,6 +12907,10 @@ if not MYPY:
|
|
12703
12907
|
"""
|
12704
12908
|
The current state of the Database Home.
|
12705
12909
|
"""
|
12910
|
+
storage_size_details: NotRequired[pulumi.Input['DbHomeDatabaseStorageSizeDetailsArgsDict']]
|
12911
|
+
"""
|
12912
|
+
The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
|
12913
|
+
"""
|
12706
12914
|
tde_wallet_password: NotRequired[pulumi.Input[_builtins.str]]
|
12707
12915
|
"""
|
12708
12916
|
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 -.
|
@@ -12750,6 +12958,7 @@ class DbHomeDatabaseArgs:
|
|
12750
12958
|
pluggable_databases: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
12751
12959
|
sid_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
12752
12960
|
state: Optional[pulumi.Input[_builtins.str]] = None,
|
12961
|
+
storage_size_details: Optional[pulumi.Input['DbHomeDatabaseStorageSizeDetailsArgs']] = None,
|
12753
12962
|
tde_wallet_password: Optional[pulumi.Input[_builtins.str]] = None,
|
12754
12963
|
time_created: Optional[pulumi.Input[_builtins.str]] = None,
|
12755
12964
|
time_stamp_for_point_in_time_recovery: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -12782,6 +12991,7 @@ class DbHomeDatabaseArgs:
|
|
12782
12991
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] pluggable_databases: The list of pluggable databases that needs to be restored into new database.
|
12783
12992
|
:param pulumi.Input[_builtins.str] sid_prefix: Specifies a prefix for the `Oracle SID` of the database to be created.
|
12784
12993
|
:param pulumi.Input[_builtins.str] state: The current state of the Database Home.
|
12994
|
+
:param pulumi.Input['DbHomeDatabaseStorageSizeDetailsArgs'] storage_size_details: The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
|
12785
12995
|
:param pulumi.Input[_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 -.
|
12786
12996
|
:param pulumi.Input[_builtins.str] time_created: The date and time the Database Home was created.
|
12787
12997
|
:param pulumi.Input[_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.
|
@@ -12836,6 +13046,8 @@ class DbHomeDatabaseArgs:
|
|
12836
13046
|
pulumi.set(__self__, "sid_prefix", sid_prefix)
|
12837
13047
|
if state is not None:
|
12838
13048
|
pulumi.set(__self__, "state", state)
|
13049
|
+
if storage_size_details is not None:
|
13050
|
+
pulumi.set(__self__, "storage_size_details", storage_size_details)
|
12839
13051
|
if tde_wallet_password is not None:
|
12840
13052
|
pulumi.set(__self__, "tde_wallet_password", tde_wallet_password)
|
12841
13053
|
if time_created is not None:
|
@@ -13143,6 +13355,18 @@ class DbHomeDatabaseArgs:
|
|
13143
13355
|
def state(self, value: Optional[pulumi.Input[_builtins.str]]):
|
13144
13356
|
pulumi.set(self, "state", value)
|
13145
13357
|
|
13358
|
+
@_builtins.property
|
13359
|
+
@pulumi.getter(name="storageSizeDetails")
|
13360
|
+
def storage_size_details(self) -> Optional[pulumi.Input['DbHomeDatabaseStorageSizeDetailsArgs']]:
|
13361
|
+
"""
|
13362
|
+
The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
|
13363
|
+
"""
|
13364
|
+
return pulumi.get(self, "storage_size_details")
|
13365
|
+
|
13366
|
+
@storage_size_details.setter
|
13367
|
+
def storage_size_details(self, value: Optional[pulumi.Input['DbHomeDatabaseStorageSizeDetailsArgs']]):
|
13368
|
+
pulumi.set(self, "storage_size_details", value)
|
13369
|
+
|
13146
13370
|
@_builtins.property
|
13147
13371
|
@pulumi.getter(name="tdeWalletPassword")
|
13148
13372
|
def tde_wallet_password(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -13628,6 +13852,69 @@ class DbHomeDatabaseEncryptionKeyLocationDetailsArgs:
|
|
13628
13852
|
pulumi.set(self, "hsm_password", value)
|
13629
13853
|
|
13630
13854
|
|
13855
|
+
if not MYPY:
|
13856
|
+
class DbHomeDatabaseStorageSizeDetailsArgsDict(TypedDict):
|
13857
|
+
data_storage_size_in_gb: pulumi.Input[_builtins.int]
|
13858
|
+
"""
|
13859
|
+
The DATA storage size, in gigabytes, that is applicable for the database.
|
13860
|
+
"""
|
13861
|
+
reco_storage_size_in_gbs: pulumi.Input[_builtins.int]
|
13862
|
+
"""
|
13863
|
+
The RECO storage size, in gigabytes, that is applicable for the database.
|
13864
|
+
"""
|
13865
|
+
redo_log_storage_size_in_gbs: NotRequired[pulumi.Input[_builtins.int]]
|
13866
|
+
elif False:
|
13867
|
+
DbHomeDatabaseStorageSizeDetailsArgsDict: TypeAlias = Mapping[str, Any]
|
13868
|
+
|
13869
|
+
@pulumi.input_type
|
13870
|
+
class DbHomeDatabaseStorageSizeDetailsArgs:
|
13871
|
+
def __init__(__self__, *,
|
13872
|
+
data_storage_size_in_gb: pulumi.Input[_builtins.int],
|
13873
|
+
reco_storage_size_in_gbs: pulumi.Input[_builtins.int],
|
13874
|
+
redo_log_storage_size_in_gbs: Optional[pulumi.Input[_builtins.int]] = None):
|
13875
|
+
"""
|
13876
|
+
:param pulumi.Input[_builtins.int] data_storage_size_in_gb: The DATA storage size, in gigabytes, that is applicable for the database.
|
13877
|
+
:param pulumi.Input[_builtins.int] reco_storage_size_in_gbs: The RECO storage size, in gigabytes, that is applicable for the database.
|
13878
|
+
"""
|
13879
|
+
pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
|
13880
|
+
pulumi.set(__self__, "reco_storage_size_in_gbs", reco_storage_size_in_gbs)
|
13881
|
+
if redo_log_storage_size_in_gbs is not None:
|
13882
|
+
pulumi.set(__self__, "redo_log_storage_size_in_gbs", redo_log_storage_size_in_gbs)
|
13883
|
+
|
13884
|
+
@_builtins.property
|
13885
|
+
@pulumi.getter(name="dataStorageSizeInGb")
|
13886
|
+
def data_storage_size_in_gb(self) -> pulumi.Input[_builtins.int]:
|
13887
|
+
"""
|
13888
|
+
The DATA storage size, in gigabytes, that is applicable for the database.
|
13889
|
+
"""
|
13890
|
+
return pulumi.get(self, "data_storage_size_in_gb")
|
13891
|
+
|
13892
|
+
@data_storage_size_in_gb.setter
|
13893
|
+
def data_storage_size_in_gb(self, value: pulumi.Input[_builtins.int]):
|
13894
|
+
pulumi.set(self, "data_storage_size_in_gb", value)
|
13895
|
+
|
13896
|
+
@_builtins.property
|
13897
|
+
@pulumi.getter(name="recoStorageSizeInGbs")
|
13898
|
+
def reco_storage_size_in_gbs(self) -> pulumi.Input[_builtins.int]:
|
13899
|
+
"""
|
13900
|
+
The RECO storage size, in gigabytes, that is applicable for the database.
|
13901
|
+
"""
|
13902
|
+
return pulumi.get(self, "reco_storage_size_in_gbs")
|
13903
|
+
|
13904
|
+
@reco_storage_size_in_gbs.setter
|
13905
|
+
def reco_storage_size_in_gbs(self, value: pulumi.Input[_builtins.int]):
|
13906
|
+
pulumi.set(self, "reco_storage_size_in_gbs", value)
|
13907
|
+
|
13908
|
+
@_builtins.property
|
13909
|
+
@pulumi.getter(name="redoLogStorageSizeInGbs")
|
13910
|
+
def redo_log_storage_size_in_gbs(self) -> Optional[pulumi.Input[_builtins.int]]:
|
13911
|
+
return pulumi.get(self, "redo_log_storage_size_in_gbs")
|
13912
|
+
|
13913
|
+
@redo_log_storage_size_in_gbs.setter
|
13914
|
+
def redo_log_storage_size_in_gbs(self, value: Optional[pulumi.Input[_builtins.int]]):
|
13915
|
+
pulumi.set(self, "redo_log_storage_size_in_gbs", value)
|
13916
|
+
|
13917
|
+
|
13631
13918
|
if not MYPY:
|
13632
13919
|
class DbSystemDataCollectionOptionsArgsDict(TypedDict):
|
13633
13920
|
is_diagnostics_events_enabled: NotRequired[pulumi.Input[_builtins.bool]]
|
@@ -14758,13 +15045,11 @@ if not MYPY:
|
|
14758
15045
|
"""
|
14759
15046
|
is_remote: NotRequired[pulumi.Input[_builtins.bool]]
|
14760
15047
|
"""
|
14761
|
-
Indicates whether the backup destination is cross-region or local
|
15048
|
+
Indicates whether the backup destination is cross-region or local.
|
14762
15049
|
"""
|
14763
15050
|
remote_region: NotRequired[pulumi.Input[_builtins.str]]
|
14764
15051
|
"""
|
14765
|
-
The name of the remote region where the remote automatic incremental backups will be stored.
|
14766
|
-
|
14767
|
-
For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
|
15052
|
+
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).
|
14768
15053
|
"""
|
14769
15054
|
type: NotRequired[pulumi.Input[_builtins.str]]
|
14770
15055
|
"""
|
@@ -14784,10 +15069,8 @@ class DbSystemDbHomeDatabaseDbBackupConfigBackupDestinationDetailArgs:
|
|
14784
15069
|
"""
|
14785
15070
|
:param pulumi.Input[_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.
|
14786
15071
|
:param pulumi.Input[_builtins.str] id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup destination.
|
14787
|
-
:param pulumi.Input[_builtins.bool] is_remote: Indicates whether the backup destination is cross-region or local
|
14788
|
-
:param pulumi.Input[_builtins.str] remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
|
14789
|
-
|
14790
|
-
For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
|
15072
|
+
:param pulumi.Input[_builtins.bool] is_remote: Indicates whether the backup destination is cross-region or local.
|
15073
|
+
:param pulumi.Input[_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).
|
14791
15074
|
:param pulumi.Input[_builtins.str] type: Type of the database backup destination.
|
14792
15075
|
"""
|
14793
15076
|
if dbrs_policy_id is not None:
|
@@ -14829,7 +15112,7 @@ class DbSystemDbHomeDatabaseDbBackupConfigBackupDestinationDetailArgs:
|
|
14829
15112
|
@pulumi.getter(name="isRemote")
|
14830
15113
|
def is_remote(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
14831
15114
|
"""
|
14832
|
-
Indicates whether the backup destination is cross-region or local
|
15115
|
+
Indicates whether the backup destination is cross-region or local.
|
14833
15116
|
"""
|
14834
15117
|
return pulumi.get(self, "is_remote")
|
14835
15118
|
|
@@ -14841,9 +15124,7 @@ class DbSystemDbHomeDatabaseDbBackupConfigBackupDestinationDetailArgs:
|
|
14841
15124
|
@pulumi.getter(name="remoteRegion")
|
14842
15125
|
def remote_region(self) -> Optional[pulumi.Input[_builtins.str]]:
|
14843
15126
|
"""
|
14844
|
-
The name of the remote region where the remote automatic incremental backups will be stored.
|
14845
|
-
|
14846
|
-
For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
|
15127
|
+
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).
|
14847
15128
|
"""
|
14848
15129
|
return pulumi.get(self, "remote_region")
|
14849
15130
|
|
@@ -19318,6 +19599,10 @@ if not MYPY:
|
|
19318
19599
|
"""
|
19319
19600
|
The name of the database that is associated with the key store.
|
19320
19601
|
"""
|
19602
|
+
db_unique_name: NotRequired[pulumi.Input[_builtins.str]]
|
19603
|
+
"""
|
19604
|
+
The unique name of the database that is associated with the key store.
|
19605
|
+
"""
|
19321
19606
|
id: NotRequired[pulumi.Input[_builtins.str]]
|
19322
19607
|
"""
|
19323
19608
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
|
@@ -19329,13 +19614,17 @@ elif False:
|
|
19329
19614
|
class KeyStoreAssociatedDatabaseArgs:
|
19330
19615
|
def __init__(__self__, *,
|
19331
19616
|
db_name: Optional[pulumi.Input[_builtins.str]] = None,
|
19617
|
+
db_unique_name: Optional[pulumi.Input[_builtins.str]] = None,
|
19332
19618
|
id: Optional[pulumi.Input[_builtins.str]] = None):
|
19333
19619
|
"""
|
19334
19620
|
:param pulumi.Input[_builtins.str] db_name: The name of the database that is associated with the key store.
|
19621
|
+
:param pulumi.Input[_builtins.str] db_unique_name: The unique name of the database that is associated with the key store.
|
19335
19622
|
:param pulumi.Input[_builtins.str] id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
|
19336
19623
|
"""
|
19337
19624
|
if db_name is not None:
|
19338
19625
|
pulumi.set(__self__, "db_name", db_name)
|
19626
|
+
if db_unique_name is not None:
|
19627
|
+
pulumi.set(__self__, "db_unique_name", db_unique_name)
|
19339
19628
|
if id is not None:
|
19340
19629
|
pulumi.set(__self__, "id", id)
|
19341
19630
|
|
@@ -19351,6 +19640,18 @@ class KeyStoreAssociatedDatabaseArgs:
|
|
19351
19640
|
def db_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
19352
19641
|
pulumi.set(self, "db_name", value)
|
19353
19642
|
|
19643
|
+
@_builtins.property
|
19644
|
+
@pulumi.getter(name="dbUniqueName")
|
19645
|
+
def db_unique_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
19646
|
+
"""
|
19647
|
+
The unique name of the database that is associated with the key store.
|
19648
|
+
"""
|
19649
|
+
return pulumi.get(self, "db_unique_name")
|
19650
|
+
|
19651
|
+
@db_unique_name.setter
|
19652
|
+
def db_unique_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
19653
|
+
pulumi.set(self, "db_unique_name", value)
|
19654
|
+
|
19354
19655
|
@_builtins.property
|
19355
19656
|
@pulumi.getter
|
19356
19657
|
def id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -19893,6 +20194,10 @@ if not MYPY:
|
|
19893
20194
|
"""
|
19894
20195
|
The DB system administrator password of the source Container Database.
|
19895
20196
|
"""
|
20197
|
+
source_pluggable_database_snapshot_id: NotRequired[pulumi.Input[_builtins.str]]
|
20198
|
+
"""
|
20199
|
+
The OCID of the Source Pluggable Database Snapshot id.
|
20200
|
+
"""
|
19896
20201
|
elif False:
|
19897
20202
|
PluggableDatabasePdbCreationTypeDetailsArgsDict: TypeAlias = Mapping[str, Any]
|
19898
20203
|
|
@@ -19905,7 +20210,8 @@ class PluggableDatabasePdbCreationTypeDetailsArgs:
|
|
19905
20210
|
dblink_username: Optional[pulumi.Input[_builtins.str]] = None,
|
19906
20211
|
is_thin_clone: Optional[pulumi.Input[_builtins.bool]] = None,
|
19907
20212
|
refreshable_clone_details: Optional[pulumi.Input['PluggableDatabasePdbCreationTypeDetailsRefreshableCloneDetailsArgs']] = None,
|
19908
|
-
source_container_database_admin_password: Optional[pulumi.Input[_builtins.str]] = None
|
20213
|
+
source_container_database_admin_password: Optional[pulumi.Input[_builtins.str]] = None,
|
20214
|
+
source_pluggable_database_snapshot_id: Optional[pulumi.Input[_builtins.str]] = None):
|
19909
20215
|
"""
|
19910
20216
|
:param pulumi.Input[_builtins.str] creation_type: The Pluggable Database creation type.
|
19911
20217
|
:param pulumi.Input[_builtins.str] source_pluggable_database_id: The OCID of the Source Pluggable Database.
|
@@ -19914,6 +20220,7 @@ class PluggableDatabasePdbCreationTypeDetailsArgs:
|
|
19914
20220
|
:param pulumi.Input[_builtins.bool] is_thin_clone: True if Pluggable Database needs to be thin cloned and false if Pluggable Database needs to be thick cloned.
|
19915
20221
|
:param pulumi.Input['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.
|
19916
20222
|
:param pulumi.Input[_builtins.str] source_container_database_admin_password: The DB system administrator password of the source Container Database.
|
20223
|
+
:param pulumi.Input[_builtins.str] source_pluggable_database_snapshot_id: The OCID of the Source Pluggable Database Snapshot id.
|
19917
20224
|
"""
|
19918
20225
|
pulumi.set(__self__, "creation_type", creation_type)
|
19919
20226
|
pulumi.set(__self__, "source_pluggable_database_id", source_pluggable_database_id)
|
@@ -19927,6 +20234,8 @@ class PluggableDatabasePdbCreationTypeDetailsArgs:
|
|
19927
20234
|
pulumi.set(__self__, "refreshable_clone_details", refreshable_clone_details)
|
19928
20235
|
if source_container_database_admin_password is not None:
|
19929
20236
|
pulumi.set(__self__, "source_container_database_admin_password", source_container_database_admin_password)
|
20237
|
+
if source_pluggable_database_snapshot_id is not None:
|
20238
|
+
pulumi.set(__self__, "source_pluggable_database_snapshot_id", source_pluggable_database_snapshot_id)
|
19930
20239
|
|
19931
20240
|
@_builtins.property
|
19932
20241
|
@pulumi.getter(name="creationType")
|
@@ -20012,6 +20321,18 @@ class PluggableDatabasePdbCreationTypeDetailsArgs:
|
|
20012
20321
|
def source_container_database_admin_password(self, value: Optional[pulumi.Input[_builtins.str]]):
|
20013
20322
|
pulumi.set(self, "source_container_database_admin_password", value)
|
20014
20323
|
|
20324
|
+
@_builtins.property
|
20325
|
+
@pulumi.getter(name="sourcePluggableDatabaseSnapshotId")
|
20326
|
+
def source_pluggable_database_snapshot_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
20327
|
+
"""
|
20328
|
+
The OCID of the Source Pluggable Database Snapshot id.
|
20329
|
+
"""
|
20330
|
+
return pulumi.get(self, "source_pluggable_database_snapshot_id")
|
20331
|
+
|
20332
|
+
@source_pluggable_database_snapshot_id.setter
|
20333
|
+
def source_pluggable_database_snapshot_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
20334
|
+
pulumi.set(self, "source_pluggable_database_snapshot_id", value)
|
20335
|
+
|
20015
20336
|
|
20016
20337
|
if not MYPY:
|
20017
20338
|
class PluggableDatabasePdbCreationTypeDetailsRefreshableCloneDetailsArgsDict(TypedDict):
|
@@ -25577,6 +25898,62 @@ class GetOneoffPatchesFilterArgs:
|
|
25577
25898
|
pulumi.set(self, "regex", value)
|
25578
25899
|
|
25579
25900
|
|
25901
|
+
if not MYPY:
|
25902
|
+
class GetPluggableDatabaseSnapshotsFilterArgsDict(TypedDict):
|
25903
|
+
name: _builtins.str
|
25904
|
+
"""
|
25905
|
+
A filter to return only resources that match the entire name given. The match is not case sensitive.
|
25906
|
+
"""
|
25907
|
+
values: Sequence[_builtins.str]
|
25908
|
+
regex: NotRequired[_builtins.bool]
|
25909
|
+
elif False:
|
25910
|
+
GetPluggableDatabaseSnapshotsFilterArgsDict: TypeAlias = Mapping[str, Any]
|
25911
|
+
|
25912
|
+
@pulumi.input_type
|
25913
|
+
class GetPluggableDatabaseSnapshotsFilterArgs:
|
25914
|
+
def __init__(__self__, *,
|
25915
|
+
name: _builtins.str,
|
25916
|
+
values: Sequence[_builtins.str],
|
25917
|
+
regex: Optional[_builtins.bool] = None):
|
25918
|
+
"""
|
25919
|
+
:param _builtins.str name: A filter to return only resources that match the entire name given. The match is not case sensitive.
|
25920
|
+
"""
|
25921
|
+
pulumi.set(__self__, "name", name)
|
25922
|
+
pulumi.set(__self__, "values", values)
|
25923
|
+
if regex is not None:
|
25924
|
+
pulumi.set(__self__, "regex", regex)
|
25925
|
+
|
25926
|
+
@_builtins.property
|
25927
|
+
@pulumi.getter
|
25928
|
+
def name(self) -> _builtins.str:
|
25929
|
+
"""
|
25930
|
+
A filter to return only resources that match the entire name given. The match is not case sensitive.
|
25931
|
+
"""
|
25932
|
+
return pulumi.get(self, "name")
|
25933
|
+
|
25934
|
+
@name.setter
|
25935
|
+
def name(self, value: _builtins.str):
|
25936
|
+
pulumi.set(self, "name", value)
|
25937
|
+
|
25938
|
+
@_builtins.property
|
25939
|
+
@pulumi.getter
|
25940
|
+
def values(self) -> Sequence[_builtins.str]:
|
25941
|
+
return pulumi.get(self, "values")
|
25942
|
+
|
25943
|
+
@values.setter
|
25944
|
+
def values(self, value: Sequence[_builtins.str]):
|
25945
|
+
pulumi.set(self, "values", value)
|
25946
|
+
|
25947
|
+
@_builtins.property
|
25948
|
+
@pulumi.getter
|
25949
|
+
def regex(self) -> Optional[_builtins.bool]:
|
25950
|
+
return pulumi.get(self, "regex")
|
25951
|
+
|
25952
|
+
@regex.setter
|
25953
|
+
def regex(self, value: Optional[_builtins.bool]):
|
25954
|
+
pulumi.set(self, "regex", value)
|
25955
|
+
|
25956
|
+
|
25580
25957
|
if not MYPY:
|
25581
25958
|
class GetPluggableDatabasesFilterArgsDict(TypedDict):
|
25582
25959
|
name: _builtins.str
|