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/psql/configuration.py
CHANGED
@@ -25,13 +25,14 @@ class ConfigurationArgs:
|
|
25
25
|
db_configuration_overrides: pulumi.Input['ConfigurationDbConfigurationOverridesArgs'],
|
26
26
|
db_version: pulumi.Input[_builtins.str],
|
27
27
|
display_name: pulumi.Input[_builtins.str],
|
28
|
-
|
28
|
+
compatible_shapes: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
29
29
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
30
30
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
31
31
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
32
32
|
instance_memory_size_in_gbs: Optional[pulumi.Input[_builtins.int]] = None,
|
33
33
|
instance_ocpu_count: Optional[pulumi.Input[_builtins.int]] = None,
|
34
34
|
is_flexible: Optional[pulumi.Input[_builtins.bool]] = None,
|
35
|
+
shape: Optional[pulumi.Input[_builtins.str]] = None,
|
35
36
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
|
36
37
|
"""
|
37
38
|
The set of arguments for constructing a Configuration resource.
|
@@ -39,7 +40,7 @@ class ConfigurationArgs:
|
|
39
40
|
:param pulumi.Input['ConfigurationDbConfigurationOverridesArgs'] db_configuration_overrides: Configuration overrides for a PostgreSQL instance.
|
40
41
|
:param pulumi.Input[_builtins.str] db_version: Version of the PostgreSQL database.
|
41
42
|
:param pulumi.Input[_builtins.str] display_name: (Updatable) A user-friendly display name for the configuration. Avoid entering confidential information.
|
42
|
-
:param pulumi.Input[_builtins.str]
|
43
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] compatible_shapes: (Updatable) Indicates the collection of compatible shapes for this configuration.
|
43
44
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
44
45
|
:param pulumi.Input[_builtins.str] description: (Updatable) Details about the configuration set.
|
45
46
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
@@ -50,6 +51,9 @@ class ConfigurationArgs:
|
|
50
51
|
|
51
52
|
Skip or set it's value to 0 if configuration is for a flexible shape.
|
52
53
|
:param pulumi.Input[_builtins.bool] is_flexible: Whether the configuration supports flexible shapes.
|
54
|
+
:param pulumi.Input[_builtins.str] shape: The name of the shape for the configuration.
|
55
|
+
|
56
|
+
For multi-shape enabled configurations, it is set to PostgreSQL.X86 or similar. Please use compatibleShapes property to set the list of supported shapes.
|
53
57
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
54
58
|
|
55
59
|
|
@@ -60,7 +64,8 @@ class ConfigurationArgs:
|
|
60
64
|
pulumi.set(__self__, "db_configuration_overrides", db_configuration_overrides)
|
61
65
|
pulumi.set(__self__, "db_version", db_version)
|
62
66
|
pulumi.set(__self__, "display_name", display_name)
|
63
|
-
|
67
|
+
if compatible_shapes is not None:
|
68
|
+
pulumi.set(__self__, "compatible_shapes", compatible_shapes)
|
64
69
|
if defined_tags is not None:
|
65
70
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
66
71
|
if description is not None:
|
@@ -73,6 +78,8 @@ class ConfigurationArgs:
|
|
73
78
|
pulumi.set(__self__, "instance_ocpu_count", instance_ocpu_count)
|
74
79
|
if is_flexible is not None:
|
75
80
|
pulumi.set(__self__, "is_flexible", is_flexible)
|
81
|
+
if shape is not None:
|
82
|
+
pulumi.set(__self__, "shape", shape)
|
76
83
|
if system_tags is not None:
|
77
84
|
pulumi.set(__self__, "system_tags", system_tags)
|
78
85
|
|
@@ -125,16 +132,16 @@ class ConfigurationArgs:
|
|
125
132
|
pulumi.set(self, "display_name", value)
|
126
133
|
|
127
134
|
@_builtins.property
|
128
|
-
@pulumi.getter
|
129
|
-
def
|
135
|
+
@pulumi.getter(name="compatibleShapes")
|
136
|
+
def compatible_shapes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
130
137
|
"""
|
131
|
-
|
138
|
+
(Updatable) Indicates the collection of compatible shapes for this configuration.
|
132
139
|
"""
|
133
|
-
return pulumi.get(self, "
|
140
|
+
return pulumi.get(self, "compatible_shapes")
|
134
141
|
|
135
|
-
@
|
136
|
-
def
|
137
|
-
pulumi.set(self, "
|
142
|
+
@compatible_shapes.setter
|
143
|
+
def compatible_shapes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
144
|
+
pulumi.set(self, "compatible_shapes", value)
|
138
145
|
|
139
146
|
@_builtins.property
|
140
147
|
@pulumi.getter(name="definedTags")
|
@@ -212,6 +219,20 @@ class ConfigurationArgs:
|
|
212
219
|
def is_flexible(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
213
220
|
pulumi.set(self, "is_flexible", value)
|
214
221
|
|
222
|
+
@_builtins.property
|
223
|
+
@pulumi.getter
|
224
|
+
def shape(self) -> Optional[pulumi.Input[_builtins.str]]:
|
225
|
+
"""
|
226
|
+
The name of the shape for the configuration.
|
227
|
+
|
228
|
+
For multi-shape enabled configurations, it is set to PostgreSQL.X86 or similar. Please use compatibleShapes property to set the list of supported shapes.
|
229
|
+
"""
|
230
|
+
return pulumi.get(self, "shape")
|
231
|
+
|
232
|
+
@shape.setter
|
233
|
+
def shape(self, value: Optional[pulumi.Input[_builtins.str]]):
|
234
|
+
pulumi.set(self, "shape", value)
|
235
|
+
|
215
236
|
@_builtins.property
|
216
237
|
@pulumi.getter(name="systemTags")
|
217
238
|
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
@@ -233,10 +254,12 @@ class ConfigurationArgs:
|
|
233
254
|
class _ConfigurationState:
|
234
255
|
def __init__(__self__, *,
|
235
256
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
257
|
+
compatible_shapes: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
236
258
|
config_type: Optional[pulumi.Input[_builtins.str]] = None,
|
237
259
|
configuration_details: Optional[pulumi.Input[Sequence[pulumi.Input['ConfigurationConfigurationDetailArgs']]]] = None,
|
238
260
|
db_configuration_overrides: Optional[pulumi.Input['ConfigurationDbConfigurationOverridesArgs']] = None,
|
239
261
|
db_version: Optional[pulumi.Input[_builtins.str]] = None,
|
262
|
+
default_config_id: Optional[pulumi.Input[_builtins.str]] = None,
|
240
263
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
241
264
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
242
265
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -252,10 +275,12 @@ class _ConfigurationState:
|
|
252
275
|
"""
|
253
276
|
Input properties used for looking up and filtering Configuration resources.
|
254
277
|
:param pulumi.Input[_builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the configuration.
|
278
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] compatible_shapes: (Updatable) Indicates the collection of compatible shapes for this configuration.
|
255
279
|
:param pulumi.Input[_builtins.str] config_type: The type of configuration. Either user-created or a default configuration.
|
256
280
|
:param pulumi.Input[Sequence[pulumi.Input['ConfigurationConfigurationDetailArgs']]] configuration_details: List of configuration details.
|
257
281
|
:param pulumi.Input['ConfigurationDbConfigurationOverridesArgs'] db_configuration_overrides: Configuration overrides for a PostgreSQL instance.
|
258
282
|
:param pulumi.Input[_builtins.str] db_version: Version of the PostgreSQL database.
|
283
|
+
:param pulumi.Input[_builtins.str] default_config_id: The Default configuration used for this configuration.
|
259
284
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
260
285
|
:param pulumi.Input[_builtins.str] description: (Updatable) Details about the configuration set.
|
261
286
|
:param pulumi.Input[_builtins.str] display_name: (Updatable) A user-friendly display name for the configuration. Avoid entering confidential information.
|
@@ -268,7 +293,9 @@ class _ConfigurationState:
|
|
268
293
|
Skip or set it's value to 0 if configuration is for a flexible shape.
|
269
294
|
:param pulumi.Input[_builtins.bool] is_flexible: Whether the configuration supports flexible shapes.
|
270
295
|
:param pulumi.Input[_builtins.str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
271
|
-
:param pulumi.Input[_builtins.str] shape: The name of the shape for the configuration.
|
296
|
+
:param pulumi.Input[_builtins.str] shape: The name of the shape for the configuration.
|
297
|
+
|
298
|
+
For multi-shape enabled configurations, it is set to PostgreSQL.X86 or similar. Please use compatibleShapes property to set the list of supported shapes.
|
272
299
|
:param pulumi.Input[_builtins.str] state: The current state of the configuration.
|
273
300
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
274
301
|
|
@@ -279,6 +306,8 @@ class _ConfigurationState:
|
|
279
306
|
"""
|
280
307
|
if compartment_id is not None:
|
281
308
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
309
|
+
if compatible_shapes is not None:
|
310
|
+
pulumi.set(__self__, "compatible_shapes", compatible_shapes)
|
282
311
|
if config_type is not None:
|
283
312
|
pulumi.set(__self__, "config_type", config_type)
|
284
313
|
if configuration_details is not None:
|
@@ -287,6 +316,8 @@ class _ConfigurationState:
|
|
287
316
|
pulumi.set(__self__, "db_configuration_overrides", db_configuration_overrides)
|
288
317
|
if db_version is not None:
|
289
318
|
pulumi.set(__self__, "db_version", db_version)
|
319
|
+
if default_config_id is not None:
|
320
|
+
pulumi.set(__self__, "default_config_id", default_config_id)
|
290
321
|
if defined_tags is not None:
|
291
322
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
292
323
|
if description is not None:
|
@@ -324,6 +355,18 @@ class _ConfigurationState:
|
|
324
355
|
def compartment_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
325
356
|
pulumi.set(self, "compartment_id", value)
|
326
357
|
|
358
|
+
@_builtins.property
|
359
|
+
@pulumi.getter(name="compatibleShapes")
|
360
|
+
def compatible_shapes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
361
|
+
"""
|
362
|
+
(Updatable) Indicates the collection of compatible shapes for this configuration.
|
363
|
+
"""
|
364
|
+
return pulumi.get(self, "compatible_shapes")
|
365
|
+
|
366
|
+
@compatible_shapes.setter
|
367
|
+
def compatible_shapes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
368
|
+
pulumi.set(self, "compatible_shapes", value)
|
369
|
+
|
327
370
|
@_builtins.property
|
328
371
|
@pulumi.getter(name="configType")
|
329
372
|
def config_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -372,6 +415,18 @@ class _ConfigurationState:
|
|
372
415
|
def db_version(self, value: Optional[pulumi.Input[_builtins.str]]):
|
373
416
|
pulumi.set(self, "db_version", value)
|
374
417
|
|
418
|
+
@_builtins.property
|
419
|
+
@pulumi.getter(name="defaultConfigId")
|
420
|
+
def default_config_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
421
|
+
"""
|
422
|
+
The Default configuration used for this configuration.
|
423
|
+
"""
|
424
|
+
return pulumi.get(self, "default_config_id")
|
425
|
+
|
426
|
+
@default_config_id.setter
|
427
|
+
def default_config_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
428
|
+
pulumi.set(self, "default_config_id", value)
|
429
|
+
|
375
430
|
@_builtins.property
|
376
431
|
@pulumi.getter(name="definedTags")
|
377
432
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
@@ -476,7 +531,9 @@ class _ConfigurationState:
|
|
476
531
|
@pulumi.getter
|
477
532
|
def shape(self) -> Optional[pulumi.Input[_builtins.str]]:
|
478
533
|
"""
|
479
|
-
The name of the shape for the configuration.
|
534
|
+
The name of the shape for the configuration.
|
535
|
+
|
536
|
+
For multi-shape enabled configurations, it is set to PostgreSQL.X86 or similar. Please use compatibleShapes property to set the list of supported shapes.
|
480
537
|
"""
|
481
538
|
return pulumi.get(self, "shape")
|
482
539
|
|
@@ -532,6 +589,7 @@ class Configuration(pulumi.CustomResource):
|
|
532
589
|
resource_name: str,
|
533
590
|
opts: Optional[pulumi.ResourceOptions] = None,
|
534
591
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
592
|
+
compatible_shapes: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
535
593
|
db_configuration_overrides: Optional[pulumi.Input[Union['ConfigurationDbConfigurationOverridesArgs', 'ConfigurationDbConfigurationOverridesArgsDict']]] = None,
|
536
594
|
db_version: Optional[pulumi.Input[_builtins.str]] = None,
|
537
595
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
@@ -565,7 +623,7 @@ class Configuration(pulumi.CustomResource):
|
|
565
623
|
},
|
566
624
|
db_version=configuration_db_version,
|
567
625
|
display_name=configuration_display_name,
|
568
|
-
|
626
|
+
compatible_shapes=configuration_compatible_shapes,
|
569
627
|
defined_tags={
|
570
628
|
"foo-namespace.bar-key": "value",
|
571
629
|
},
|
@@ -576,6 +634,7 @@ class Configuration(pulumi.CustomResource):
|
|
576
634
|
instance_memory_size_in_gbs=configuration_instance_memory_size_in_gbs,
|
577
635
|
instance_ocpu_count=configuration_instance_ocpu_count,
|
578
636
|
is_flexible=configuration_is_flexible,
|
637
|
+
shape=configuration_shape,
|
579
638
|
system_tags=configuration_system_tags)
|
580
639
|
```
|
581
640
|
|
@@ -590,6 +649,7 @@ class Configuration(pulumi.CustomResource):
|
|
590
649
|
:param str resource_name: The name of the resource.
|
591
650
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
592
651
|
:param pulumi.Input[_builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the configuration.
|
652
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] compatible_shapes: (Updatable) Indicates the collection of compatible shapes for this configuration.
|
593
653
|
:param pulumi.Input[Union['ConfigurationDbConfigurationOverridesArgs', 'ConfigurationDbConfigurationOverridesArgsDict']] db_configuration_overrides: Configuration overrides for a PostgreSQL instance.
|
594
654
|
:param pulumi.Input[_builtins.str] db_version: Version of the PostgreSQL database.
|
595
655
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
@@ -603,7 +663,9 @@ class Configuration(pulumi.CustomResource):
|
|
603
663
|
|
604
664
|
Skip or set it's value to 0 if configuration is for a flexible shape.
|
605
665
|
:param pulumi.Input[_builtins.bool] is_flexible: Whether the configuration supports flexible shapes.
|
606
|
-
:param pulumi.Input[_builtins.str] shape: The name of the shape for the configuration.
|
666
|
+
:param pulumi.Input[_builtins.str] shape: The name of the shape for the configuration.
|
667
|
+
|
668
|
+
For multi-shape enabled configurations, it is set to PostgreSQL.X86 or similar. Please use compatibleShapes property to set the list of supported shapes.
|
607
669
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
608
670
|
|
609
671
|
|
@@ -637,7 +699,7 @@ class Configuration(pulumi.CustomResource):
|
|
637
699
|
},
|
638
700
|
db_version=configuration_db_version,
|
639
701
|
display_name=configuration_display_name,
|
640
|
-
|
702
|
+
compatible_shapes=configuration_compatible_shapes,
|
641
703
|
defined_tags={
|
642
704
|
"foo-namespace.bar-key": "value",
|
643
705
|
},
|
@@ -648,6 +710,7 @@ class Configuration(pulumi.CustomResource):
|
|
648
710
|
instance_memory_size_in_gbs=configuration_instance_memory_size_in_gbs,
|
649
711
|
instance_ocpu_count=configuration_instance_ocpu_count,
|
650
712
|
is_flexible=configuration_is_flexible,
|
713
|
+
shape=configuration_shape,
|
651
714
|
system_tags=configuration_system_tags)
|
652
715
|
```
|
653
716
|
|
@@ -675,6 +738,7 @@ class Configuration(pulumi.CustomResource):
|
|
675
738
|
resource_name: str,
|
676
739
|
opts: Optional[pulumi.ResourceOptions] = None,
|
677
740
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
741
|
+
compatible_shapes: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
678
742
|
db_configuration_overrides: Optional[pulumi.Input[Union['ConfigurationDbConfigurationOverridesArgs', 'ConfigurationDbConfigurationOverridesArgsDict']]] = None,
|
679
743
|
db_version: Optional[pulumi.Input[_builtins.str]] = None,
|
680
744
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
@@ -698,6 +762,7 @@ class Configuration(pulumi.CustomResource):
|
|
698
762
|
if compartment_id is None and not opts.urn:
|
699
763
|
raise TypeError("Missing required property 'compartment_id'")
|
700
764
|
__props__.__dict__["compartment_id"] = compartment_id
|
765
|
+
__props__.__dict__["compatible_shapes"] = compatible_shapes
|
701
766
|
if db_configuration_overrides is None and not opts.urn:
|
702
767
|
raise TypeError("Missing required property 'db_configuration_overrides'")
|
703
768
|
__props__.__dict__["db_configuration_overrides"] = db_configuration_overrides
|
@@ -713,12 +778,11 @@ class Configuration(pulumi.CustomResource):
|
|
713
778
|
__props__.__dict__["instance_memory_size_in_gbs"] = instance_memory_size_in_gbs
|
714
779
|
__props__.__dict__["instance_ocpu_count"] = instance_ocpu_count
|
715
780
|
__props__.__dict__["is_flexible"] = is_flexible
|
716
|
-
if shape is None and not opts.urn:
|
717
|
-
raise TypeError("Missing required property 'shape'")
|
718
781
|
__props__.__dict__["shape"] = shape
|
719
782
|
__props__.__dict__["system_tags"] = system_tags
|
720
783
|
__props__.__dict__["config_type"] = None
|
721
784
|
__props__.__dict__["configuration_details"] = None
|
785
|
+
__props__.__dict__["default_config_id"] = None
|
722
786
|
__props__.__dict__["lifecycle_details"] = None
|
723
787
|
__props__.__dict__["state"] = None
|
724
788
|
__props__.__dict__["time_created"] = None
|
@@ -733,10 +797,12 @@ class Configuration(pulumi.CustomResource):
|
|
733
797
|
id: pulumi.Input[str],
|
734
798
|
opts: Optional[pulumi.ResourceOptions] = None,
|
735
799
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
800
|
+
compatible_shapes: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
736
801
|
config_type: Optional[pulumi.Input[_builtins.str]] = None,
|
737
802
|
configuration_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConfigurationConfigurationDetailArgs', 'ConfigurationConfigurationDetailArgsDict']]]]] = None,
|
738
803
|
db_configuration_overrides: Optional[pulumi.Input[Union['ConfigurationDbConfigurationOverridesArgs', 'ConfigurationDbConfigurationOverridesArgsDict']]] = None,
|
739
804
|
db_version: Optional[pulumi.Input[_builtins.str]] = None,
|
805
|
+
default_config_id: Optional[pulumi.Input[_builtins.str]] = None,
|
740
806
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
741
807
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
742
808
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -757,10 +823,12 @@ class Configuration(pulumi.CustomResource):
|
|
757
823
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
758
824
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
759
825
|
:param pulumi.Input[_builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the configuration.
|
826
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] compatible_shapes: (Updatable) Indicates the collection of compatible shapes for this configuration.
|
760
827
|
:param pulumi.Input[_builtins.str] config_type: The type of configuration. Either user-created or a default configuration.
|
761
828
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ConfigurationConfigurationDetailArgs', 'ConfigurationConfigurationDetailArgsDict']]]] configuration_details: List of configuration details.
|
762
829
|
:param pulumi.Input[Union['ConfigurationDbConfigurationOverridesArgs', 'ConfigurationDbConfigurationOverridesArgsDict']] db_configuration_overrides: Configuration overrides for a PostgreSQL instance.
|
763
830
|
:param pulumi.Input[_builtins.str] db_version: Version of the PostgreSQL database.
|
831
|
+
:param pulumi.Input[_builtins.str] default_config_id: The Default configuration used for this configuration.
|
764
832
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
765
833
|
:param pulumi.Input[_builtins.str] description: (Updatable) Details about the configuration set.
|
766
834
|
:param pulumi.Input[_builtins.str] display_name: (Updatable) A user-friendly display name for the configuration. Avoid entering confidential information.
|
@@ -773,7 +841,9 @@ class Configuration(pulumi.CustomResource):
|
|
773
841
|
Skip or set it's value to 0 if configuration is for a flexible shape.
|
774
842
|
:param pulumi.Input[_builtins.bool] is_flexible: Whether the configuration supports flexible shapes.
|
775
843
|
:param pulumi.Input[_builtins.str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
776
|
-
:param pulumi.Input[_builtins.str] shape: The name of the shape for the configuration.
|
844
|
+
:param pulumi.Input[_builtins.str] shape: The name of the shape for the configuration.
|
845
|
+
|
846
|
+
For multi-shape enabled configurations, it is set to PostgreSQL.X86 or similar. Please use compatibleShapes property to set the list of supported shapes.
|
777
847
|
:param pulumi.Input[_builtins.str] state: The current state of the configuration.
|
778
848
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
779
849
|
|
@@ -787,10 +857,12 @@ class Configuration(pulumi.CustomResource):
|
|
787
857
|
__props__ = _ConfigurationState.__new__(_ConfigurationState)
|
788
858
|
|
789
859
|
__props__.__dict__["compartment_id"] = compartment_id
|
860
|
+
__props__.__dict__["compatible_shapes"] = compatible_shapes
|
790
861
|
__props__.__dict__["config_type"] = config_type
|
791
862
|
__props__.__dict__["configuration_details"] = configuration_details
|
792
863
|
__props__.__dict__["db_configuration_overrides"] = db_configuration_overrides
|
793
864
|
__props__.__dict__["db_version"] = db_version
|
865
|
+
__props__.__dict__["default_config_id"] = default_config_id
|
794
866
|
__props__.__dict__["defined_tags"] = defined_tags
|
795
867
|
__props__.__dict__["description"] = description
|
796
868
|
__props__.__dict__["display_name"] = display_name
|
@@ -813,6 +885,14 @@ class Configuration(pulumi.CustomResource):
|
|
813
885
|
"""
|
814
886
|
return pulumi.get(self, "compartment_id")
|
815
887
|
|
888
|
+
@_builtins.property
|
889
|
+
@pulumi.getter(name="compatibleShapes")
|
890
|
+
def compatible_shapes(self) -> pulumi.Output[Sequence[_builtins.str]]:
|
891
|
+
"""
|
892
|
+
(Updatable) Indicates the collection of compatible shapes for this configuration.
|
893
|
+
"""
|
894
|
+
return pulumi.get(self, "compatible_shapes")
|
895
|
+
|
816
896
|
@_builtins.property
|
817
897
|
@pulumi.getter(name="configType")
|
818
898
|
def config_type(self) -> pulumi.Output[_builtins.str]:
|
@@ -845,6 +925,14 @@ class Configuration(pulumi.CustomResource):
|
|
845
925
|
"""
|
846
926
|
return pulumi.get(self, "db_version")
|
847
927
|
|
928
|
+
@_builtins.property
|
929
|
+
@pulumi.getter(name="defaultConfigId")
|
930
|
+
def default_config_id(self) -> pulumi.Output[_builtins.str]:
|
931
|
+
"""
|
932
|
+
The Default configuration used for this configuration.
|
933
|
+
"""
|
934
|
+
return pulumi.get(self, "default_config_id")
|
935
|
+
|
848
936
|
@_builtins.property
|
849
937
|
@pulumi.getter(name="definedTags")
|
850
938
|
def defined_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
|
@@ -917,7 +1005,9 @@ class Configuration(pulumi.CustomResource):
|
|
917
1005
|
@pulumi.getter
|
918
1006
|
def shape(self) -> pulumi.Output[_builtins.str]:
|
919
1007
|
"""
|
920
|
-
The name of the shape for the configuration.
|
1008
|
+
The name of the shape for the configuration.
|
1009
|
+
|
1010
|
+
For multi-shape enabled configurations, it is set to PostgreSQL.X86 or similar. Please use compatibleShapes property to set the list of supported shapes.
|
921
1011
|
"""
|
922
1012
|
return pulumi.get(self, "shape")
|
923
1013
|
|
pulumi_oci/psql/db_system.py
CHANGED
@@ -61,7 +61,7 @@ class DbSystemArgs:
|
|
61
61
|
:param pulumi.Input[Sequence[pulumi.Input['DbSystemInstancesDetailArgs']]] instances_details: Details of database instances nodes to be created. This parameter is optional. If specified, its size must match `instanceCount`.
|
62
62
|
:param pulumi.Input['DbSystemManagementPolicyArgs'] management_policy: (Updatable) PostgreSQL database system management policy update details.
|
63
63
|
:param pulumi.Input[Sequence[pulumi.Input['DbSystemPatchOperationArgs']]] patch_operations: (Updatable) For adding and removing from read replica database instances. Please remove the patch_operations after it is applied. Update the instance_count arrodrandly. Cannot be specified when creating the resource.
|
64
|
-
:param pulumi.Input['DbSystemSourceArgs'] source: The source
|
64
|
+
:param pulumi.Input['DbSystemSourceArgs'] source: The source of the database system.
|
65
65
|
:param pulumi.Input[_builtins.str] system_type: Type of the database system.
|
66
66
|
|
67
67
|
|
@@ -323,7 +323,7 @@ class DbSystemArgs:
|
|
323
323
|
@pulumi.getter
|
324
324
|
def source(self) -> Optional[pulumi.Input['DbSystemSourceArgs']]:
|
325
325
|
"""
|
326
|
-
The source
|
326
|
+
The source of the database system.
|
327
327
|
"""
|
328
328
|
return pulumi.get(self, "source")
|
329
329
|
|
@@ -400,7 +400,7 @@ class _DbSystemState:
|
|
400
400
|
:param pulumi.Input['DbSystemNetworkDetailsArgs'] network_details: (Updatable) Network details for the database system.
|
401
401
|
:param pulumi.Input[Sequence[pulumi.Input['DbSystemPatchOperationArgs']]] patch_operations: (Updatable) For adding and removing from read replica database instances. Please remove the patch_operations after it is applied. Update the instance_count arrodrandly. Cannot be specified when creating the resource.
|
402
402
|
:param pulumi.Input[_builtins.str] shape: (Updatable) The name of the shape for the database instance node. Use the /shapes API for accepted shapes. Example: `VM.Standard.E4.Flex`
|
403
|
-
:param pulumi.Input['DbSystemSourceArgs'] source: The source
|
403
|
+
:param pulumi.Input['DbSystemSourceArgs'] source: The source of the database system.
|
404
404
|
:param pulumi.Input[_builtins.str] state: The current state of the database system.
|
405
405
|
:param pulumi.Input['DbSystemStorageDetailsArgs'] storage_details: (Updatable) Storage details of the database system.
|
406
406
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
@@ -711,7 +711,7 @@ class _DbSystemState:
|
|
711
711
|
@pulumi.getter
|
712
712
|
def source(self) -> Optional[pulumi.Input['DbSystemSourceArgs']]:
|
713
713
|
"""
|
714
|
-
The source
|
714
|
+
The source of the database system.
|
715
715
|
"""
|
716
716
|
return pulumi.get(self, "source")
|
717
717
|
|
@@ -931,7 +931,7 @@ class DbSystem(pulumi.CustomResource):
|
|
931
931
|
:param pulumi.Input[Union['DbSystemNetworkDetailsArgs', 'DbSystemNetworkDetailsArgsDict']] network_details: (Updatable) Network details for the database system.
|
932
932
|
:param pulumi.Input[Sequence[pulumi.Input[Union['DbSystemPatchOperationArgs', 'DbSystemPatchOperationArgsDict']]]] patch_operations: (Updatable) For adding and removing from read replica database instances. Please remove the patch_operations after it is applied. Update the instance_count arrodrandly. Cannot be specified when creating the resource.
|
933
933
|
:param pulumi.Input[_builtins.str] shape: (Updatable) The name of the shape for the database instance node. Use the /shapes API for accepted shapes. Example: `VM.Standard.E4.Flex`
|
934
|
-
:param pulumi.Input[Union['DbSystemSourceArgs', 'DbSystemSourceArgsDict']] source: The source
|
934
|
+
:param pulumi.Input[Union['DbSystemSourceArgs', 'DbSystemSourceArgsDict']] source: The source of the database system.
|
935
935
|
:param pulumi.Input[Union['DbSystemStorageDetailsArgs', 'DbSystemStorageDetailsArgsDict']] storage_details: (Updatable) Storage details of the database system.
|
936
936
|
:param pulumi.Input[_builtins.str] system_type: Type of the database system.
|
937
937
|
|
@@ -1181,7 +1181,7 @@ class DbSystem(pulumi.CustomResource):
|
|
1181
1181
|
:param pulumi.Input[Union['DbSystemNetworkDetailsArgs', 'DbSystemNetworkDetailsArgsDict']] network_details: (Updatable) Network details for the database system.
|
1182
1182
|
:param pulumi.Input[Sequence[pulumi.Input[Union['DbSystemPatchOperationArgs', 'DbSystemPatchOperationArgsDict']]]] patch_operations: (Updatable) For adding and removing from read replica database instances. Please remove the patch_operations after it is applied. Update the instance_count arrodrandly. Cannot be specified when creating the resource.
|
1183
1183
|
:param pulumi.Input[_builtins.str] shape: (Updatable) The name of the shape for the database instance node. Use the /shapes API for accepted shapes. Example: `VM.Standard.E4.Flex`
|
1184
|
-
:param pulumi.Input[Union['DbSystemSourceArgs', 'DbSystemSourceArgsDict']] source: The source
|
1184
|
+
:param pulumi.Input[Union['DbSystemSourceArgs', 'DbSystemSourceArgsDict']] source: The source of the database system.
|
1185
1185
|
:param pulumi.Input[_builtins.str] state: The current state of the database system.
|
1186
1186
|
:param pulumi.Input[Union['DbSystemStorageDetailsArgs', 'DbSystemStorageDetailsArgsDict']] storage_details: (Updatable) Storage details of the database system.
|
1187
1187
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
@@ -1390,7 +1390,7 @@ class DbSystem(pulumi.CustomResource):
|
|
1390
1390
|
@pulumi.getter
|
1391
1391
|
def source(self) -> pulumi.Output['outputs.DbSystemSource']:
|
1392
1392
|
"""
|
1393
|
-
The source
|
1393
|
+
The source of the database system.
|
1394
1394
|
"""
|
1395
1395
|
return pulumi.get(self, "source")
|
1396
1396
|
|
@@ -27,10 +27,13 @@ class GetConfigurationResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getConfiguration.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, compartment_id=None, config_type=None, configuration_details=None, configuration_id=None, db_configuration_overrides=None, db_version=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, instance_memory_size_in_gbs=None, instance_ocpu_count=None, is_flexible=None, lifecycle_details=None, shape=None, state=None, system_tags=None, time_created=None):
|
30
|
+
def __init__(__self__, compartment_id=None, compatible_shapes=None, config_type=None, configuration_details=None, configuration_id=None, db_configuration_overrides=None, db_version=None, default_config_id=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, instance_memory_size_in_gbs=None, instance_ocpu_count=None, is_flexible=None, lifecycle_details=None, shape=None, state=None, system_tags=None, time_created=None):
|
31
31
|
if compartment_id and not isinstance(compartment_id, str):
|
32
32
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
33
33
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
34
|
+
if compatible_shapes and not isinstance(compatible_shapes, list):
|
35
|
+
raise TypeError("Expected argument 'compatible_shapes' to be a list")
|
36
|
+
pulumi.set(__self__, "compatible_shapes", compatible_shapes)
|
34
37
|
if config_type and not isinstance(config_type, str):
|
35
38
|
raise TypeError("Expected argument 'config_type' to be a str")
|
36
39
|
pulumi.set(__self__, "config_type", config_type)
|
@@ -46,6 +49,9 @@ class GetConfigurationResult:
|
|
46
49
|
if db_version and not isinstance(db_version, str):
|
47
50
|
raise TypeError("Expected argument 'db_version' to be a str")
|
48
51
|
pulumi.set(__self__, "db_version", db_version)
|
52
|
+
if default_config_id and not isinstance(default_config_id, str):
|
53
|
+
raise TypeError("Expected argument 'default_config_id' to be a str")
|
54
|
+
pulumi.set(__self__, "default_config_id", default_config_id)
|
49
55
|
if defined_tags and not isinstance(defined_tags, dict):
|
50
56
|
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
51
57
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
@@ -94,6 +100,14 @@ class GetConfigurationResult:
|
|
94
100
|
"""
|
95
101
|
return pulumi.get(self, "compartment_id")
|
96
102
|
|
103
|
+
@_builtins.property
|
104
|
+
@pulumi.getter(name="compatibleShapes")
|
105
|
+
def compatible_shapes(self) -> Sequence[_builtins.str]:
|
106
|
+
"""
|
107
|
+
Indicates the collection of compatible shapes for this configuration.
|
108
|
+
"""
|
109
|
+
return pulumi.get(self, "compatible_shapes")
|
110
|
+
|
97
111
|
@_builtins.property
|
98
112
|
@pulumi.getter(name="configType")
|
99
113
|
def config_type(self) -> _builtins.str:
|
@@ -128,6 +142,14 @@ class GetConfigurationResult:
|
|
128
142
|
"""
|
129
143
|
return pulumi.get(self, "db_version")
|
130
144
|
|
145
|
+
@_builtins.property
|
146
|
+
@pulumi.getter(name="defaultConfigId")
|
147
|
+
def default_config_id(self) -> _builtins.str:
|
148
|
+
"""
|
149
|
+
The Default configuration used for this configuration.
|
150
|
+
"""
|
151
|
+
return pulumi.get(self, "default_config_id")
|
152
|
+
|
131
153
|
@_builtins.property
|
132
154
|
@pulumi.getter(name="definedTags")
|
133
155
|
def defined_tags(self) -> Mapping[str, _builtins.str]:
|
@@ -204,7 +226,7 @@ class GetConfigurationResult:
|
|
204
226
|
@pulumi.getter
|
205
227
|
def shape(self) -> _builtins.str:
|
206
228
|
"""
|
207
|
-
The name of the shape for the configuration.
|
229
|
+
The name of the shape for the configuration.
|
208
230
|
"""
|
209
231
|
return pulumi.get(self, "shape")
|
210
232
|
|
@@ -240,11 +262,13 @@ class AwaitableGetConfigurationResult(GetConfigurationResult):
|
|
240
262
|
yield self
|
241
263
|
return GetConfigurationResult(
|
242
264
|
compartment_id=self.compartment_id,
|
265
|
+
compatible_shapes=self.compatible_shapes,
|
243
266
|
config_type=self.config_type,
|
244
267
|
configuration_details=self.configuration_details,
|
245
268
|
configuration_id=self.configuration_id,
|
246
269
|
db_configuration_overrides=self.db_configuration_overrides,
|
247
270
|
db_version=self.db_version,
|
271
|
+
default_config_id=self.default_config_id,
|
248
272
|
defined_tags=self.defined_tags,
|
249
273
|
description=self.description,
|
250
274
|
display_name=self.display_name,
|
@@ -286,11 +310,13 @@ def get_configuration(configuration_id: Optional[_builtins.str] = None,
|
|
286
310
|
|
287
311
|
return AwaitableGetConfigurationResult(
|
288
312
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
313
|
+
compatible_shapes=pulumi.get(__ret__, 'compatible_shapes'),
|
289
314
|
config_type=pulumi.get(__ret__, 'config_type'),
|
290
315
|
configuration_details=pulumi.get(__ret__, 'configuration_details'),
|
291
316
|
configuration_id=pulumi.get(__ret__, 'configuration_id'),
|
292
317
|
db_configuration_overrides=pulumi.get(__ret__, 'db_configuration_overrides'),
|
293
318
|
db_version=pulumi.get(__ret__, 'db_version'),
|
319
|
+
default_config_id=pulumi.get(__ret__, 'default_config_id'),
|
294
320
|
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
295
321
|
description=pulumi.get(__ret__, 'description'),
|
296
322
|
display_name=pulumi.get(__ret__, 'display_name'),
|
@@ -329,11 +355,13 @@ def get_configuration_output(configuration_id: Optional[pulumi.Input[_builtins.s
|
|
329
355
|
__ret__ = pulumi.runtime.invoke_output('oci:Psql/getConfiguration:getConfiguration', __args__, opts=opts, typ=GetConfigurationResult)
|
330
356
|
return __ret__.apply(lambda __response__: GetConfigurationResult(
|
331
357
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
358
|
+
compatible_shapes=pulumi.get(__response__, 'compatible_shapes'),
|
332
359
|
config_type=pulumi.get(__response__, 'config_type'),
|
333
360
|
configuration_details=pulumi.get(__response__, 'configuration_details'),
|
334
361
|
configuration_id=pulumi.get(__response__, 'configuration_id'),
|
335
362
|
db_configuration_overrides=pulumi.get(__response__, 'db_configuration_overrides'),
|
336
363
|
db_version=pulumi.get(__response__, 'db_version'),
|
364
|
+
default_config_id=pulumi.get(__response__, 'default_config_id'),
|
337
365
|
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
338
366
|
description=pulumi.get(__response__, 'description'),
|
339
367
|
display_name=pulumi.get(__response__, 'display_name'),
|