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
@@ -82,13 +82,16 @@ class GetAutonomousDatabasesResult:
|
|
82
82
|
@pulumi.getter(name="autonomousContainerDatabaseId")
|
83
83
|
def autonomous_container_database_id(self) -> Optional[_builtins.str]:
|
84
84
|
"""
|
85
|
-
The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
85
|
+
The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Used only by Autonomous Database on Dedicated Exadata Infrastructure.
|
86
86
|
"""
|
87
87
|
return pulumi.get(self, "autonomous_container_database_id")
|
88
88
|
|
89
89
|
@_builtins.property
|
90
90
|
@pulumi.getter(name="autonomousDatabases")
|
91
91
|
def autonomous_databases(self) -> Sequence['outputs.GetAutonomousDatabasesAutonomousDatabaseResult']:
|
92
|
+
"""
|
93
|
+
The list of autonomous_databases.
|
94
|
+
"""
|
92
95
|
return pulumi.get(self, "autonomous_databases")
|
93
96
|
|
94
97
|
@_builtins.property
|
@@ -275,6 +278,7 @@ def get_autonomous_databases(autonomous_container_database_id: Optional[_builtin
|
|
275
278
|
:param _builtins.bool is_free_tier: Filter on the value of the resource's 'isFreeTier' property. A value of `true` returns only Always Free resources. A value of `false` excludes Always Free resources from the returned results. Omitting this parameter returns both Always Free and paid resources.
|
276
279
|
:param _builtins.bool is_refreshable_clone: Filter on the value of the resource's 'isRefreshableClone' property. A value of `true` returns only refreshable clones. A value of `false` excludes refreshable clones from the returned results. Omitting this parameter returns both refreshable clones and databases that are not refreshable clones.
|
277
280
|
:param _builtins.bool is_resource_pool_leader: Filter if the resource is the resource pool leader. A value of `true` returns only resource pool leader.
|
281
|
+
:param _builtins.str lifecycle_state_not_equal_to: A filter to return only resources that not match the given lifecycle state.
|
278
282
|
:param _builtins.str resource_pool_leader_id: The database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the resourcepool Leader Autonomous Database.
|
279
283
|
:param _builtins.str state: A filter to return only resources that match the given lifecycle state exactly.
|
280
284
|
"""
|
@@ -365,6 +369,7 @@ def get_autonomous_databases_output(autonomous_container_database_id: Optional[p
|
|
365
369
|
:param _builtins.bool is_free_tier: Filter on the value of the resource's 'isFreeTier' property. A value of `true` returns only Always Free resources. A value of `false` excludes Always Free resources from the returned results. Omitting this parameter returns both Always Free and paid resources.
|
366
370
|
:param _builtins.bool is_refreshable_clone: Filter on the value of the resource's 'isRefreshableClone' property. A value of `true` returns only refreshable clones. A value of `false` excludes refreshable clones from the returned results. Omitting this parameter returns both refreshable clones and databases that are not refreshable clones.
|
367
371
|
:param _builtins.bool is_resource_pool_leader: Filter if the resource is the resource pool leader. A value of `true` returns only resource pool leader.
|
372
|
+
:param _builtins.str lifecycle_state_not_equal_to: A filter to return only resources that not match the given lifecycle state.
|
368
373
|
:param _builtins.str resource_pool_leader_id: The database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the resourcepool Leader Autonomous Database.
|
369
374
|
:param _builtins.str state: A filter to return only resources that match the given lifecycle state exactly.
|
370
375
|
"""
|
@@ -27,7 +27,7 @@ class GetDataGuardAssociationResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getDataGuardAssociation.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, apply_lag=None, apply_rate=None, availability_domain=None, backup_network_nsg_ids=None, cpu_core_count=None, create_async=None, creation_type=None, data_collection_options=None, data_guard_association_id=None, database_admin_password=None, database_defined_tags=None, database_freeform_tags=None, database_id=None, database_software_image_id=None, db_system_defined_tags=None, db_system_freeform_tags=None, db_system_security_attributes=None, delete_standby_db_home_on_delete=None, display_name=None, domain=None, fault_domains=None, hostname=None, id=None, is_active_data_guard_enabled=None, license_model=None, lifecycle_details=None, migrate_trigger=None, node_count=None, nsg_ids=None, peer_data_guard_association_id=None, peer_database_id=None, peer_db_home_id=None, peer_db_system_id=None, peer_db_unique_name=None, peer_role=None, peer_sid_prefix=None, peer_vm_cluster_id=None, private_ip=None, private_ip_v6=None, protection_mode=None, role=None, shape=None, state=None, storage_volume_performance_mode=None, subnet_id=None, time_created=None, time_zone=None, transport_type=None):
|
30
|
+
def __init__(__self__, apply_lag=None, apply_rate=None, availability_domain=None, backup_network_nsg_ids=None, compute_count=None, compute_model=None, cpu_core_count=None, create_async=None, creation_type=None, data_collection_options=None, data_guard_association_id=None, database_admin_password=None, database_defined_tags=None, database_freeform_tags=None, database_id=None, database_software_image_id=None, db_system_defined_tags=None, db_system_freeform_tags=None, db_system_security_attributes=None, delete_standby_db_home_on_delete=None, display_name=None, domain=None, fault_domains=None, hostname=None, id=None, is_active_data_guard_enabled=None, license_model=None, lifecycle_details=None, migrate_trigger=None, node_count=None, nsg_ids=None, peer_data_guard_association_id=None, peer_database_id=None, peer_db_home_id=None, peer_db_system_id=None, peer_db_unique_name=None, peer_role=None, peer_sid_prefix=None, peer_vm_cluster_id=None, private_ip=None, private_ip_v6=None, protection_mode=None, role=None, shape=None, state=None, storage_volume_performance_mode=None, subnet_id=None, time_created=None, time_zone=None, transport_type=None):
|
31
31
|
if apply_lag and not isinstance(apply_lag, str):
|
32
32
|
raise TypeError("Expected argument 'apply_lag' to be a str")
|
33
33
|
pulumi.set(__self__, "apply_lag", apply_lag)
|
@@ -40,6 +40,12 @@ class GetDataGuardAssociationResult:
|
|
40
40
|
if backup_network_nsg_ids and not isinstance(backup_network_nsg_ids, list):
|
41
41
|
raise TypeError("Expected argument 'backup_network_nsg_ids' to be a list")
|
42
42
|
pulumi.set(__self__, "backup_network_nsg_ids", backup_network_nsg_ids)
|
43
|
+
if compute_count and not isinstance(compute_count, int):
|
44
|
+
raise TypeError("Expected argument 'compute_count' to be a int")
|
45
|
+
pulumi.set(__self__, "compute_count", compute_count)
|
46
|
+
if compute_model and not isinstance(compute_model, str):
|
47
|
+
raise TypeError("Expected argument 'compute_model' to be a str")
|
48
|
+
pulumi.set(__self__, "compute_model", compute_model)
|
43
49
|
if cpu_core_count and not isinstance(cpu_core_count, int):
|
44
50
|
raise TypeError("Expected argument 'cpu_core_count' to be a int")
|
45
51
|
pulumi.set(__self__, "cpu_core_count", cpu_core_count)
|
@@ -199,6 +205,16 @@ class GetDataGuardAssociationResult:
|
|
199
205
|
def backup_network_nsg_ids(self) -> Sequence[_builtins.str]:
|
200
206
|
return pulumi.get(self, "backup_network_nsg_ids")
|
201
207
|
|
208
|
+
@_builtins.property
|
209
|
+
@pulumi.getter(name="computeCount")
|
210
|
+
def compute_count(self) -> _builtins.int:
|
211
|
+
return pulumi.get(self, "compute_count")
|
212
|
+
|
213
|
+
@_builtins.property
|
214
|
+
@pulumi.getter(name="computeModel")
|
215
|
+
def compute_model(self) -> _builtins.str:
|
216
|
+
return pulumi.get(self, "compute_model")
|
217
|
+
|
202
218
|
@_builtins.property
|
203
219
|
@pulumi.getter(name="cpuCoreCount")
|
204
220
|
def cpu_core_count(self) -> _builtins.int:
|
@@ -472,6 +488,8 @@ class AwaitableGetDataGuardAssociationResult(GetDataGuardAssociationResult):
|
|
472
488
|
apply_rate=self.apply_rate,
|
473
489
|
availability_domain=self.availability_domain,
|
474
490
|
backup_network_nsg_ids=self.backup_network_nsg_ids,
|
491
|
+
compute_count=self.compute_count,
|
492
|
+
compute_model=self.compute_model,
|
475
493
|
cpu_core_count=self.cpu_core_count,
|
476
494
|
create_async=self.create_async,
|
477
495
|
creation_type=self.creation_type,
|
@@ -551,6 +569,8 @@ def get_data_guard_association(data_guard_association_id: Optional[_builtins.str
|
|
551
569
|
apply_rate=pulumi.get(__ret__, 'apply_rate'),
|
552
570
|
availability_domain=pulumi.get(__ret__, 'availability_domain'),
|
553
571
|
backup_network_nsg_ids=pulumi.get(__ret__, 'backup_network_nsg_ids'),
|
572
|
+
compute_count=pulumi.get(__ret__, 'compute_count'),
|
573
|
+
compute_model=pulumi.get(__ret__, 'compute_model'),
|
554
574
|
cpu_core_count=pulumi.get(__ret__, 'cpu_core_count'),
|
555
575
|
create_async=pulumi.get(__ret__, 'create_async'),
|
556
576
|
creation_type=pulumi.get(__ret__, 'creation_type'),
|
@@ -627,6 +647,8 @@ def get_data_guard_association_output(data_guard_association_id: Optional[pulumi
|
|
627
647
|
apply_rate=pulumi.get(__response__, 'apply_rate'),
|
628
648
|
availability_domain=pulumi.get(__response__, 'availability_domain'),
|
629
649
|
backup_network_nsg_ids=pulumi.get(__response__, 'backup_network_nsg_ids'),
|
650
|
+
compute_count=pulumi.get(__response__, 'compute_count'),
|
651
|
+
compute_model=pulumi.get(__response__, 'compute_model'),
|
630
652
|
cpu_core_count=pulumi.get(__response__, 'cpu_core_count'),
|
631
653
|
create_async=pulumi.get(__response__, 'create_async'),
|
632
654
|
creation_type=pulumi.get(__response__, 'creation_type'),
|
@@ -27,7 +27,7 @@ class GetDatabaseResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getDatabase.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, action_trigger=None, character_set=None, compartment_id=None, connection_strings=None, data_guard_action=None, data_guard_groups=None, database_id=None, database_management_configs=None, database_software_image_id=None, databases=None, db_backup_configs=None, db_home_id=None, db_name=None, db_system_id=None, db_unique_name=None, db_version=None, db_workload=None, defined_tags=None, freeform_tags=None, id=None, is_cdb=None, key_store_id=None, key_store_wallet_name=None, kms_key_id=None, kms_key_migration=None, kms_key_rotation=None, kms_key_version_id=None, last_backup_duration_in_seconds=None, last_backup_timestamp=None, last_failed_backup_timestamp=None, lifecycle_details=None, ncharacter_set=None, pdb_name=None, sid_prefix=None, source=None, source_database_point_in_time_recovery_timestamp=None, state=None, system_tags=None, time_created=None, vault_id=None, vm_cluster_id=None):
|
30
|
+
def __init__(__self__, action_trigger=None, character_set=None, compartment_id=None, connection_strings=None, data_guard_action=None, data_guard_groups=None, database_id=None, database_management_configs=None, database_software_image_id=None, databases=None, db_backup_configs=None, db_home_id=None, db_name=None, db_system_id=None, db_unique_name=None, db_version=None, db_workload=None, defined_tags=None, freeform_tags=None, id=None, is_cdb=None, key_store_id=None, key_store_wallet_name=None, kms_key_id=None, kms_key_migration=None, kms_key_rotation=None, kms_key_version_id=None, last_backup_duration_in_seconds=None, last_backup_timestamp=None, last_failed_backup_timestamp=None, lifecycle_details=None, ncharacter_set=None, pdb_name=None, sid_prefix=None, source=None, source_database_point_in_time_recovery_timestamp=None, state=None, storage_size_details=None, system_tags=None, time_created=None, vault_id=None, vm_cluster_id=None):
|
31
31
|
if action_trigger and not isinstance(action_trigger, int):
|
32
32
|
raise TypeError("Expected argument 'action_trigger' to be a int")
|
33
33
|
pulumi.set(__self__, "action_trigger", action_trigger)
|
@@ -139,6 +139,9 @@ class GetDatabaseResult:
|
|
139
139
|
if state and not isinstance(state, str):
|
140
140
|
raise TypeError("Expected argument 'state' to be a str")
|
141
141
|
pulumi.set(__self__, "state", state)
|
142
|
+
if storage_size_details and not isinstance(storage_size_details, list):
|
143
|
+
raise TypeError("Expected argument 'storage_size_details' to be a list")
|
144
|
+
pulumi.set(__self__, "storage_size_details", storage_size_details)
|
142
145
|
if system_tags and not isinstance(system_tags, dict):
|
143
146
|
raise TypeError("Expected argument 'system_tags' to be a dict")
|
144
147
|
pulumi.set(__self__, "system_tags", system_tags)
|
@@ -427,6 +430,14 @@ class GetDatabaseResult:
|
|
427
430
|
"""
|
428
431
|
return pulumi.get(self, "state")
|
429
432
|
|
433
|
+
@_builtins.property
|
434
|
+
@pulumi.getter(name="storageSizeDetails")
|
435
|
+
def storage_size_details(self) -> Sequence['outputs.GetDatabaseStorageSizeDetailResult']:
|
436
|
+
"""
|
437
|
+
The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
|
438
|
+
"""
|
439
|
+
return pulumi.get(self, "storage_size_details")
|
440
|
+
|
430
441
|
@_builtins.property
|
431
442
|
@pulumi.getter(name="systemTags")
|
432
443
|
def system_tags(self) -> Mapping[str, _builtins.str]:
|
@@ -503,6 +514,7 @@ class AwaitableGetDatabaseResult(GetDatabaseResult):
|
|
503
514
|
source=self.source,
|
504
515
|
source_database_point_in_time_recovery_timestamp=self.source_database_point_in_time_recovery_timestamp,
|
505
516
|
state=self.state,
|
517
|
+
storage_size_details=self.storage_size_details,
|
506
518
|
system_tags=self.system_tags,
|
507
519
|
time_created=self.time_created,
|
508
520
|
vault_id=self.vault_id,
|
@@ -571,6 +583,7 @@ def get_database(database_id: Optional[_builtins.str] = None,
|
|
571
583
|
source=pulumi.get(__ret__, 'source'),
|
572
584
|
source_database_point_in_time_recovery_timestamp=pulumi.get(__ret__, 'source_database_point_in_time_recovery_timestamp'),
|
573
585
|
state=pulumi.get(__ret__, 'state'),
|
586
|
+
storage_size_details=pulumi.get(__ret__, 'storage_size_details'),
|
574
587
|
system_tags=pulumi.get(__ret__, 'system_tags'),
|
575
588
|
time_created=pulumi.get(__ret__, 'time_created'),
|
576
589
|
vault_id=pulumi.get(__ret__, 'vault_id'),
|
@@ -636,6 +649,7 @@ def get_database_output(database_id: Optional[pulumi.Input[_builtins.str]] = Non
|
|
636
649
|
source=pulumi.get(__response__, 'source'),
|
637
650
|
source_database_point_in_time_recovery_timestamp=pulumi.get(__response__, 'source_database_point_in_time_recovery_timestamp'),
|
638
651
|
state=pulumi.get(__response__, 'state'),
|
652
|
+
storage_size_details=pulumi.get(__response__, 'storage_size_details'),
|
639
653
|
system_tags=pulumi.get(__response__, 'system_tags'),
|
640
654
|
time_created=pulumi.get(__response__, 'time_created'),
|
641
655
|
vault_id=pulumi.get(__response__, 'vault_id'),
|
@@ -26,7 +26,7 @@ class GetDbNodeResult:
|
|
26
26
|
"""
|
27
27
|
A collection of values returned by getDbNode.
|
28
28
|
"""
|
29
|
-
def __init__(__self__, additional_details=None, backup_ip_id=None, backup_ipv6id=None, backup_vnic2id=None, backup_vnic_id=None, cpu_core_count=None, db_node_id=None, db_node_storage_size_in_gbs=None, db_server_id=None, db_system_id=None, defined_tags=None, fault_domain=None, freeform_tags=None, host_ip_id=None, host_ipv6id=None, hostname=None, id=None, lifecycle_details=None, maintenance_type=None, memory_size_in_gbs=None, software_storage_size_in_gb=None, state=None, system_tags=None, time_created=None, time_maintenance_window_end=None, time_maintenance_window_start=None, total_cpu_core_count=None, vnic2id=None, vnic_id=None):
|
29
|
+
def __init__(__self__, additional_details=None, backup_ip_id=None, backup_ipv6id=None, backup_vnic2id=None, backup_vnic_id=None, compute_count=None, compute_model=None, cpu_core_count=None, db_node_id=None, db_node_storage_size_in_gbs=None, db_server_id=None, db_system_id=None, defined_tags=None, fault_domain=None, freeform_tags=None, host_ip_id=None, host_ipv6id=None, hostname=None, id=None, lifecycle_details=None, maintenance_type=None, memory_size_in_gbs=None, software_storage_size_in_gb=None, state=None, system_tags=None, time_created=None, time_maintenance_window_end=None, time_maintenance_window_start=None, total_cpu_core_count=None, vnic2id=None, vnic_id=None):
|
30
30
|
if additional_details and not isinstance(additional_details, str):
|
31
31
|
raise TypeError("Expected argument 'additional_details' to be a str")
|
32
32
|
pulumi.set(__self__, "additional_details", additional_details)
|
@@ -42,6 +42,12 @@ class GetDbNodeResult:
|
|
42
42
|
if backup_vnic_id and not isinstance(backup_vnic_id, str):
|
43
43
|
raise TypeError("Expected argument 'backup_vnic_id' to be a str")
|
44
44
|
pulumi.set(__self__, "backup_vnic_id", backup_vnic_id)
|
45
|
+
if compute_count and not isinstance(compute_count, int):
|
46
|
+
raise TypeError("Expected argument 'compute_count' to be a int")
|
47
|
+
pulumi.set(__self__, "compute_count", compute_count)
|
48
|
+
if compute_model and not isinstance(compute_model, str):
|
49
|
+
raise TypeError("Expected argument 'compute_model' to be a str")
|
50
|
+
pulumi.set(__self__, "compute_model", compute_model)
|
45
51
|
if cpu_core_count and not isinstance(cpu_core_count, int):
|
46
52
|
raise TypeError("Expected argument 'cpu_core_count' to be a int")
|
47
53
|
pulumi.set(__self__, "cpu_core_count", cpu_core_count)
|
@@ -155,6 +161,22 @@ class GetDbNodeResult:
|
|
155
161
|
"""
|
156
162
|
return pulumi.get(self, "backup_vnic_id")
|
157
163
|
|
164
|
+
@_builtins.property
|
165
|
+
@pulumi.getter(name="computeCount")
|
166
|
+
def compute_count(self) -> _builtins.int:
|
167
|
+
"""
|
168
|
+
The number of compute servers for the DB system.
|
169
|
+
"""
|
170
|
+
return pulumi.get(self, "compute_count")
|
171
|
+
|
172
|
+
@_builtins.property
|
173
|
+
@pulumi.getter(name="computeModel")
|
174
|
+
def compute_model(self) -> _builtins.str:
|
175
|
+
"""
|
176
|
+
The compute model for Base Database Service. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. The ECPU compute model is the recommended model, and the OCPU compute model is legacy.
|
177
|
+
"""
|
178
|
+
return pulumi.get(self, "compute_model")
|
179
|
+
|
158
180
|
@_builtins.property
|
159
181
|
@pulumi.getter(name="cpuCoreCount")
|
160
182
|
def cpu_core_count(self) -> _builtins.int:
|
@@ -356,6 +378,8 @@ class AwaitableGetDbNodeResult(GetDbNodeResult):
|
|
356
378
|
backup_ipv6id=self.backup_ipv6id,
|
357
379
|
backup_vnic2id=self.backup_vnic2id,
|
358
380
|
backup_vnic_id=self.backup_vnic_id,
|
381
|
+
compute_count=self.compute_count,
|
382
|
+
compute_model=self.compute_model,
|
359
383
|
cpu_core_count=self.cpu_core_count,
|
360
384
|
db_node_id=self.db_node_id,
|
361
385
|
db_node_storage_size_in_gbs=self.db_node_storage_size_in_gbs,
|
@@ -412,6 +436,8 @@ def get_db_node(db_node_id: Optional[_builtins.str] = None,
|
|
412
436
|
backup_ipv6id=pulumi.get(__ret__, 'backup_ipv6id'),
|
413
437
|
backup_vnic2id=pulumi.get(__ret__, 'backup_vnic2id'),
|
414
438
|
backup_vnic_id=pulumi.get(__ret__, 'backup_vnic_id'),
|
439
|
+
compute_count=pulumi.get(__ret__, 'compute_count'),
|
440
|
+
compute_model=pulumi.get(__ret__, 'compute_model'),
|
415
441
|
cpu_core_count=pulumi.get(__ret__, 'cpu_core_count'),
|
416
442
|
db_node_id=pulumi.get(__ret__, 'db_node_id'),
|
417
443
|
db_node_storage_size_in_gbs=pulumi.get(__ret__, 'db_node_storage_size_in_gbs'),
|
@@ -465,6 +491,8 @@ def get_db_node_output(db_node_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
465
491
|
backup_ipv6id=pulumi.get(__response__, 'backup_ipv6id'),
|
466
492
|
backup_vnic2id=pulumi.get(__response__, 'backup_vnic2id'),
|
467
493
|
backup_vnic_id=pulumi.get(__response__, 'backup_vnic_id'),
|
494
|
+
compute_count=pulumi.get(__response__, 'compute_count'),
|
495
|
+
compute_model=pulumi.get(__response__, 'compute_model'),
|
468
496
|
cpu_core_count=pulumi.get(__response__, 'cpu_core_count'),
|
469
497
|
db_node_id=pulumi.get(__response__, 'db_node_id'),
|
470
498
|
db_node_storage_size_in_gbs=pulumi.get(__response__, 'db_node_storage_size_in_gbs'),
|
@@ -28,7 +28,7 @@ class GetDbSystemShapesResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getDbSystemShapes.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, availability_domain=None, compartment_id=None, db_system_shapes=None, filters=None, id=None):
|
31
|
+
def __init__(__self__, availability_domain=None, compartment_id=None, db_system_shapes=None, filters=None, id=None, shape_attribute=None):
|
32
32
|
if availability_domain and not isinstance(availability_domain, str):
|
33
33
|
raise TypeError("Expected argument 'availability_domain' to be a str")
|
34
34
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -44,6 +44,9 @@ class GetDbSystemShapesResult:
|
|
44
44
|
if id and not isinstance(id, str):
|
45
45
|
raise TypeError("Expected argument 'id' to be a str")
|
46
46
|
pulumi.set(__self__, "id", id)
|
47
|
+
if shape_attribute and not isinstance(shape_attribute, str):
|
48
|
+
raise TypeError("Expected argument 'shape_attribute' to be a str")
|
49
|
+
pulumi.set(__self__, "shape_attribute", shape_attribute)
|
47
50
|
|
48
51
|
@_builtins.property
|
49
52
|
@pulumi.getter(name="availabilityDomain")
|
@@ -76,6 +79,11 @@ class GetDbSystemShapesResult:
|
|
76
79
|
"""
|
77
80
|
return pulumi.get(self, "id")
|
78
81
|
|
82
|
+
@_builtins.property
|
83
|
+
@pulumi.getter(name="shapeAttribute")
|
84
|
+
def shape_attribute(self) -> Optional[_builtins.str]:
|
85
|
+
return pulumi.get(self, "shape_attribute")
|
86
|
+
|
79
87
|
|
80
88
|
class AwaitableGetDbSystemShapesResult(GetDbSystemShapesResult):
|
81
89
|
# pylint: disable=using-constant-test
|
@@ -87,12 +95,14 @@ class AwaitableGetDbSystemShapesResult(GetDbSystemShapesResult):
|
|
87
95
|
compartment_id=self.compartment_id,
|
88
96
|
db_system_shapes=self.db_system_shapes,
|
89
97
|
filters=self.filters,
|
90
|
-
id=self.id
|
98
|
+
id=self.id,
|
99
|
+
shape_attribute=self.shape_attribute)
|
91
100
|
|
92
101
|
|
93
102
|
def get_db_system_shapes(availability_domain: Optional[_builtins.str] = None,
|
94
103
|
compartment_id: Optional[_builtins.str] = None,
|
95
104
|
filters: Optional[Sequence[Union['GetDbSystemShapesFilterArgs', 'GetDbSystemShapesFilterArgsDict']]] = None,
|
105
|
+
shape_attribute: Optional[_builtins.str] = None,
|
96
106
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDbSystemShapesResult:
|
97
107
|
"""
|
98
108
|
This data source provides the list of Db System Shapes in Oracle Cloud Infrastructure Database service.
|
@@ -106,17 +116,20 @@ def get_db_system_shapes(availability_domain: Optional[_builtins.str] = None,
|
|
106
116
|
import pulumi_oci as oci
|
107
117
|
|
108
118
|
test_db_system_shapes = oci.Database.get_db_system_shapes(compartment_id=compartment_id,
|
109
|
-
availability_domain=db_system_shape_availability_domain
|
119
|
+
availability_domain=db_system_shape_availability_domain,
|
120
|
+
shape_attribute=db_system_shape_shape_attribute)
|
110
121
|
```
|
111
122
|
|
112
123
|
|
113
124
|
:param _builtins.str availability_domain: The name of the Availability Domain.
|
114
125
|
:param _builtins.str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
126
|
+
:param _builtins.str shape_attribute: If provided and applicable, return DB System shape parameters based on the shapeAttribute provided
|
115
127
|
"""
|
116
128
|
__args__ = dict()
|
117
129
|
__args__['availabilityDomain'] = availability_domain
|
118
130
|
__args__['compartmentId'] = compartment_id
|
119
131
|
__args__['filters'] = filters
|
132
|
+
__args__['shapeAttribute'] = shape_attribute
|
120
133
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
121
134
|
__ret__ = pulumi.runtime.invoke('oci:Database/getDbSystemShapes:getDbSystemShapes', __args__, opts=opts, typ=GetDbSystemShapesResult).value
|
122
135
|
|
@@ -125,10 +138,12 @@ def get_db_system_shapes(availability_domain: Optional[_builtins.str] = None,
|
|
125
138
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
126
139
|
db_system_shapes=pulumi.get(__ret__, 'db_system_shapes'),
|
127
140
|
filters=pulumi.get(__ret__, 'filters'),
|
128
|
-
id=pulumi.get(__ret__, 'id')
|
141
|
+
id=pulumi.get(__ret__, 'id'),
|
142
|
+
shape_attribute=pulumi.get(__ret__, 'shape_attribute'))
|
129
143
|
def get_db_system_shapes_output(availability_domain: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
130
144
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
131
145
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetDbSystemShapesFilterArgs', 'GetDbSystemShapesFilterArgsDict']]]]] = None,
|
146
|
+
shape_attribute: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
132
147
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDbSystemShapesResult]:
|
133
148
|
"""
|
134
149
|
This data source provides the list of Db System Shapes in Oracle Cloud Infrastructure Database service.
|
@@ -142,17 +157,20 @@ def get_db_system_shapes_output(availability_domain: Optional[pulumi.Input[Optio
|
|
142
157
|
import pulumi_oci as oci
|
143
158
|
|
144
159
|
test_db_system_shapes = oci.Database.get_db_system_shapes(compartment_id=compartment_id,
|
145
|
-
availability_domain=db_system_shape_availability_domain
|
160
|
+
availability_domain=db_system_shape_availability_domain,
|
161
|
+
shape_attribute=db_system_shape_shape_attribute)
|
146
162
|
```
|
147
163
|
|
148
164
|
|
149
165
|
:param _builtins.str availability_domain: The name of the Availability Domain.
|
150
166
|
:param _builtins.str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
167
|
+
:param _builtins.str shape_attribute: If provided and applicable, return DB System shape parameters based on the shapeAttribute provided
|
151
168
|
"""
|
152
169
|
__args__ = dict()
|
153
170
|
__args__['availabilityDomain'] = availability_domain
|
154
171
|
__args__['compartmentId'] = compartment_id
|
155
172
|
__args__['filters'] = filters
|
173
|
+
__args__['shapeAttribute'] = shape_attribute
|
156
174
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
157
175
|
__ret__ = pulumi.runtime.invoke_output('oci:Database/getDbSystemShapes:getDbSystemShapes', __args__, opts=opts, typ=GetDbSystemShapesResult)
|
158
176
|
return __ret__.apply(lambda __response__: GetDbSystemShapesResult(
|
@@ -160,4 +178,5 @@ def get_db_system_shapes_output(availability_domain: Optional[pulumi.Input[Optio
|
|
160
178
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
161
179
|
db_system_shapes=pulumi.get(__response__, 'db_system_shapes'),
|
162
180
|
filters=pulumi.get(__response__, 'filters'),
|
163
|
-
id=pulumi.get(__response__, 'id')
|
181
|
+
id=pulumi.get(__response__, 'id'),
|
182
|
+
shape_attribute=pulumi.get(__response__, 'shape_attribute')))
|
@@ -28,7 +28,10 @@ class GetDbSystemStoragePerformancesResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getDbSystemStoragePerformances.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, database_edition=None, db_system_storage_performances=None, filters=None, id=None, shape_type=None, storage_management=None):
|
31
|
+
def __init__(__self__, compartment_id=None, database_edition=None, db_system_storage_performances=None, filters=None, id=None, shape_type=None, storage_management=None):
|
32
|
+
if compartment_id and not isinstance(compartment_id, str):
|
33
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
34
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
32
35
|
if database_edition and not isinstance(database_edition, str):
|
33
36
|
raise TypeError("Expected argument 'database_edition' to be a str")
|
34
37
|
pulumi.set(__self__, "database_edition", database_edition)
|
@@ -48,6 +51,11 @@ class GetDbSystemStoragePerformancesResult:
|
|
48
51
|
raise TypeError("Expected argument 'storage_management' to be a str")
|
49
52
|
pulumi.set(__self__, "storage_management", storage_management)
|
50
53
|
|
54
|
+
@_builtins.property
|
55
|
+
@pulumi.getter(name="compartmentId")
|
56
|
+
def compartment_id(self) -> Optional[_builtins.str]:
|
57
|
+
return pulumi.get(self, "compartment_id")
|
58
|
+
|
51
59
|
@_builtins.property
|
52
60
|
@pulumi.getter(name="databaseEdition")
|
53
61
|
def database_edition(self) -> Optional[_builtins.str]:
|
@@ -94,6 +102,7 @@ class AwaitableGetDbSystemStoragePerformancesResult(GetDbSystemStoragePerformanc
|
|
94
102
|
if False:
|
95
103
|
yield self
|
96
104
|
return GetDbSystemStoragePerformancesResult(
|
105
|
+
compartment_id=self.compartment_id,
|
97
106
|
database_edition=self.database_edition,
|
98
107
|
db_system_storage_performances=self.db_system_storage_performances,
|
99
108
|
filters=self.filters,
|
@@ -102,7 +111,8 @@ class AwaitableGetDbSystemStoragePerformancesResult(GetDbSystemStoragePerformanc
|
|
102
111
|
storage_management=self.storage_management)
|
103
112
|
|
104
113
|
|
105
|
-
def get_db_system_storage_performances(
|
114
|
+
def get_db_system_storage_performances(compartment_id: Optional[_builtins.str] = None,
|
115
|
+
database_edition: Optional[_builtins.str] = None,
|
106
116
|
filters: Optional[Sequence[Union['GetDbSystemStoragePerformancesFilterArgs', 'GetDbSystemStoragePerformancesFilterArgsDict']]] = None,
|
107
117
|
shape_type: Optional[_builtins.str] = None,
|
108
118
|
storage_management: Optional[_builtins.str] = None,
|
@@ -113,6 +123,7 @@ def get_db_system_storage_performances(database_edition: Optional[_builtins.str]
|
|
113
123
|
Gets a list of possible expected storage performance parameters of a VMDB System based on Configuration.
|
114
124
|
|
115
125
|
|
126
|
+
:param _builtins.str compartment_id: Optional. The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
116
127
|
:param _builtins.str database_edition: Optional. Filters the performance results by database edition. Valid values are:
|
117
128
|
* STANDARD_EDITION
|
118
129
|
* ENTERPRISE_EDITION
|
@@ -125,6 +136,7 @@ def get_db_system_storage_performances(database_edition: Optional[_builtins.str]
|
|
125
136
|
* LVM specifies logical volume manager, sometimes called logical disk manager.
|
126
137
|
"""
|
127
138
|
__args__ = dict()
|
139
|
+
__args__['compartmentId'] = compartment_id
|
128
140
|
__args__['databaseEdition'] = database_edition
|
129
141
|
__args__['filters'] = filters
|
130
142
|
__args__['shapeType'] = shape_type
|
@@ -133,13 +145,15 @@ def get_db_system_storage_performances(database_edition: Optional[_builtins.str]
|
|
133
145
|
__ret__ = pulumi.runtime.invoke('oci:Database/getDbSystemStoragePerformances:getDbSystemStoragePerformances', __args__, opts=opts, typ=GetDbSystemStoragePerformancesResult).value
|
134
146
|
|
135
147
|
return AwaitableGetDbSystemStoragePerformancesResult(
|
148
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
136
149
|
database_edition=pulumi.get(__ret__, 'database_edition'),
|
137
150
|
db_system_storage_performances=pulumi.get(__ret__, 'db_system_storage_performances'),
|
138
151
|
filters=pulumi.get(__ret__, 'filters'),
|
139
152
|
id=pulumi.get(__ret__, 'id'),
|
140
153
|
shape_type=pulumi.get(__ret__, 'shape_type'),
|
141
154
|
storage_management=pulumi.get(__ret__, 'storage_management'))
|
142
|
-
def get_db_system_storage_performances_output(
|
155
|
+
def get_db_system_storage_performances_output(compartment_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
156
|
+
database_edition: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
143
157
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetDbSystemStoragePerformancesFilterArgs', 'GetDbSystemStoragePerformancesFilterArgsDict']]]]] = None,
|
144
158
|
shape_type: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
145
159
|
storage_management: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -150,6 +164,7 @@ def get_db_system_storage_performances_output(database_edition: Optional[pulumi.
|
|
150
164
|
Gets a list of possible expected storage performance parameters of a VMDB System based on Configuration.
|
151
165
|
|
152
166
|
|
167
|
+
:param _builtins.str compartment_id: Optional. The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
153
168
|
:param _builtins.str database_edition: Optional. Filters the performance results by database edition. Valid values are:
|
154
169
|
* STANDARD_EDITION
|
155
170
|
* ENTERPRISE_EDITION
|
@@ -162,6 +177,7 @@ def get_db_system_storage_performances_output(database_edition: Optional[pulumi.
|
|
162
177
|
* LVM specifies logical volume manager, sometimes called logical disk manager.
|
163
178
|
"""
|
164
179
|
__args__ = dict()
|
180
|
+
__args__['compartmentId'] = compartment_id
|
165
181
|
__args__['databaseEdition'] = database_edition
|
166
182
|
__args__['filters'] = filters
|
167
183
|
__args__['shapeType'] = shape_type
|
@@ -169,6 +185,7 @@ def get_db_system_storage_performances_output(database_edition: Optional[pulumi.
|
|
169
185
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
170
186
|
__ret__ = pulumi.runtime.invoke_output('oci:Database/getDbSystemStoragePerformances:getDbSystemStoragePerformances', __args__, opts=opts, typ=GetDbSystemStoragePerformancesResult)
|
171
187
|
return __ret__.apply(lambda __response__: GetDbSystemStoragePerformancesResult(
|
188
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
172
189
|
database_edition=pulumi.get(__response__, 'database_edition'),
|
173
190
|
db_system_storage_performances=pulumi.get(__response__, 'db_system_storage_performances'),
|
174
191
|
filters=pulumi.get(__response__, 'filters'),
|
@@ -28,7 +28,7 @@ class GetDbVersionsResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getDbVersions.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, compartment_id=None, db_system_id=None, db_system_shape=None, db_versions=None, filters=None, id=None, is_database_software_image_supported=None, is_upgrade_supported=None, storage_management=None):
|
31
|
+
def __init__(__self__, compartment_id=None, db_system_id=None, db_system_shape=None, db_versions=None, filters=None, id=None, is_database_software_image_supported=None, is_upgrade_supported=None, shape_attribute=None, storage_management=None):
|
32
32
|
if compartment_id and not isinstance(compartment_id, str):
|
33
33
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
34
34
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -53,6 +53,9 @@ class GetDbVersionsResult:
|
|
53
53
|
if is_upgrade_supported and not isinstance(is_upgrade_supported, bool):
|
54
54
|
raise TypeError("Expected argument 'is_upgrade_supported' to be a bool")
|
55
55
|
pulumi.set(__self__, "is_upgrade_supported", is_upgrade_supported)
|
56
|
+
if shape_attribute and not isinstance(shape_attribute, str):
|
57
|
+
raise TypeError("Expected argument 'shape_attribute' to be a str")
|
58
|
+
pulumi.set(__self__, "shape_attribute", shape_attribute)
|
56
59
|
if storage_management and not isinstance(storage_management, str):
|
57
60
|
raise TypeError("Expected argument 'storage_management' to be a str")
|
58
61
|
pulumi.set(__self__, "storage_management", storage_management)
|
@@ -106,6 +109,11 @@ class GetDbVersionsResult:
|
|
106
109
|
"""
|
107
110
|
return pulumi.get(self, "is_upgrade_supported")
|
108
111
|
|
112
|
+
@_builtins.property
|
113
|
+
@pulumi.getter(name="shapeAttribute")
|
114
|
+
def shape_attribute(self) -> Optional[_builtins.str]:
|
115
|
+
return pulumi.get(self, "shape_attribute")
|
116
|
+
|
109
117
|
@_builtins.property
|
110
118
|
@pulumi.getter(name="storageManagement")
|
111
119
|
def storage_management(self) -> Optional[_builtins.str]:
|
@@ -126,6 +134,7 @@ class AwaitableGetDbVersionsResult(GetDbVersionsResult):
|
|
126
134
|
id=self.id,
|
127
135
|
is_database_software_image_supported=self.is_database_software_image_supported,
|
128
136
|
is_upgrade_supported=self.is_upgrade_supported,
|
137
|
+
shape_attribute=self.shape_attribute,
|
129
138
|
storage_management=self.storage_management)
|
130
139
|
|
131
140
|
|
@@ -135,6 +144,7 @@ def get_db_versions(compartment_id: Optional[_builtins.str] = None,
|
|
135
144
|
filters: Optional[Sequence[Union['GetDbVersionsFilterArgs', 'GetDbVersionsFilterArgsDict']]] = None,
|
136
145
|
is_database_software_image_supported: Optional[_builtins.bool] = None,
|
137
146
|
is_upgrade_supported: Optional[_builtins.bool] = None,
|
147
|
+
shape_attribute: Optional[_builtins.str] = None,
|
138
148
|
storage_management: Optional[_builtins.str] = None,
|
139
149
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDbVersionsResult:
|
140
150
|
"""
|
@@ -153,6 +163,7 @@ def get_db_versions(compartment_id: Optional[_builtins.str] = None,
|
|
153
163
|
db_system_shape=db_version_db_system_shape,
|
154
164
|
is_database_software_image_supported=db_version_is_database_software_image_supported,
|
155
165
|
is_upgrade_supported=db_version_is_upgrade_supported,
|
166
|
+
shape_attribute=db_version_shape_attribute,
|
156
167
|
storage_management=db_version_storage_management)
|
157
168
|
```
|
158
169
|
|
@@ -162,6 +173,7 @@ def get_db_versions(compartment_id: Optional[_builtins.str] = None,
|
|
162
173
|
:param _builtins.str db_system_shape: If provided, filters the results to the set of database versions which are supported for the given shape.
|
163
174
|
:param _builtins.bool is_database_software_image_supported: If true, filters the results to the set of Oracle Database versions that are supported for Oracle Cloud Infrastructure database software images.
|
164
175
|
:param _builtins.bool is_upgrade_supported: If provided, filters the results to the set of database versions which are supported for Upgrade.
|
176
|
+
:param _builtins.str shape_attribute: If provided and applicable, return the results based on the shapeAttribute provided
|
165
177
|
:param _builtins.str storage_management: The DB system storage management option. Used to list database versions available for that storage manager. Valid values are `ASM` and `LVM`.
|
166
178
|
* ASM specifies Oracle Automatic Storage Management
|
167
179
|
* LVM specifies logical volume manager, sometimes called logical disk manager.
|
@@ -173,6 +185,7 @@ def get_db_versions(compartment_id: Optional[_builtins.str] = None,
|
|
173
185
|
__args__['filters'] = filters
|
174
186
|
__args__['isDatabaseSoftwareImageSupported'] = is_database_software_image_supported
|
175
187
|
__args__['isUpgradeSupported'] = is_upgrade_supported
|
188
|
+
__args__['shapeAttribute'] = shape_attribute
|
176
189
|
__args__['storageManagement'] = storage_management
|
177
190
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
178
191
|
__ret__ = pulumi.runtime.invoke('oci:Database/getDbVersions:getDbVersions', __args__, opts=opts, typ=GetDbVersionsResult).value
|
@@ -186,6 +199,7 @@ def get_db_versions(compartment_id: Optional[_builtins.str] = None,
|
|
186
199
|
id=pulumi.get(__ret__, 'id'),
|
187
200
|
is_database_software_image_supported=pulumi.get(__ret__, 'is_database_software_image_supported'),
|
188
201
|
is_upgrade_supported=pulumi.get(__ret__, 'is_upgrade_supported'),
|
202
|
+
shape_attribute=pulumi.get(__ret__, 'shape_attribute'),
|
189
203
|
storage_management=pulumi.get(__ret__, 'storage_management'))
|
190
204
|
def get_db_versions_output(compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
191
205
|
db_system_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
@@ -193,6 +207,7 @@ def get_db_versions_output(compartment_id: Optional[pulumi.Input[_builtins.str]]
|
|
193
207
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetDbVersionsFilterArgs', 'GetDbVersionsFilterArgsDict']]]]] = None,
|
194
208
|
is_database_software_image_supported: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
|
195
209
|
is_upgrade_supported: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
|
210
|
+
shape_attribute: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
196
211
|
storage_management: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
197
212
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDbVersionsResult]:
|
198
213
|
"""
|
@@ -211,6 +226,7 @@ def get_db_versions_output(compartment_id: Optional[pulumi.Input[_builtins.str]]
|
|
211
226
|
db_system_shape=db_version_db_system_shape,
|
212
227
|
is_database_software_image_supported=db_version_is_database_software_image_supported,
|
213
228
|
is_upgrade_supported=db_version_is_upgrade_supported,
|
229
|
+
shape_attribute=db_version_shape_attribute,
|
214
230
|
storage_management=db_version_storage_management)
|
215
231
|
```
|
216
232
|
|
@@ -220,6 +236,7 @@ def get_db_versions_output(compartment_id: Optional[pulumi.Input[_builtins.str]]
|
|
220
236
|
:param _builtins.str db_system_shape: If provided, filters the results to the set of database versions which are supported for the given shape.
|
221
237
|
:param _builtins.bool is_database_software_image_supported: If true, filters the results to the set of Oracle Database versions that are supported for Oracle Cloud Infrastructure database software images.
|
222
238
|
:param _builtins.bool is_upgrade_supported: If provided, filters the results to the set of database versions which are supported for Upgrade.
|
239
|
+
:param _builtins.str shape_attribute: If provided and applicable, return the results based on the shapeAttribute provided
|
223
240
|
:param _builtins.str storage_management: The DB system storage management option. Used to list database versions available for that storage manager. Valid values are `ASM` and `LVM`.
|
224
241
|
* ASM specifies Oracle Automatic Storage Management
|
225
242
|
* LVM specifies logical volume manager, sometimes called logical disk manager.
|
@@ -231,6 +248,7 @@ def get_db_versions_output(compartment_id: Optional[pulumi.Input[_builtins.str]]
|
|
231
248
|
__args__['filters'] = filters
|
232
249
|
__args__['isDatabaseSoftwareImageSupported'] = is_database_software_image_supported
|
233
250
|
__args__['isUpgradeSupported'] = is_upgrade_supported
|
251
|
+
__args__['shapeAttribute'] = shape_attribute
|
234
252
|
__args__['storageManagement'] = storage_management
|
235
253
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
236
254
|
__ret__ = pulumi.runtime.invoke_output('oci:Database/getDbVersions:getDbVersions', __args__, opts=opts, typ=GetDbVersionsResult)
|
@@ -243,4 +261,5 @@ def get_db_versions_output(compartment_id: Optional[pulumi.Input[_builtins.str]]
|
|
243
261
|
id=pulumi.get(__response__, 'id'),
|
244
262
|
is_database_software_image_supported=pulumi.get(__response__, 'is_database_software_image_supported'),
|
245
263
|
is_upgrade_supported=pulumi.get(__response__, 'is_upgrade_supported'),
|
264
|
+
shape_attribute=pulumi.get(__response__, 'shape_attribute'),
|
246
265
|
storage_management=pulumi.get(__response__, 'storage_management')))
|
@@ -27,7 +27,7 @@ class GetExadbVmClusterResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getExadbVmCluster.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, availability_domain=None, backup_network_nsg_ids=None, backup_subnet_id=None, cluster_name=None, cluster_placement_group_id=None, compartment_id=None, data_collection_options=None, defined_tags=None, display_name=None, domain=None, exadb_vm_cluster_id=None, exascale_db_storage_vault_id=None, freeform_tags=None, gi_version=None, grid_image_id=None, grid_image_type=None, hostname=None, id=None, iorm_config_caches=None, last_update_history_entry_id=None, license_model=None, lifecycle_details=None, listener_port=None, node_configs=None, node_resources=None, nsg_ids=None, private_zone_id=None, scan_dns_name=None, scan_dns_record_id=None, scan_ip_ids=None, scan_listener_port_tcp=None, scan_listener_port_tcp_ssl=None, security_attributes=None, shape=None, ssh_public_keys=None, state=None, subnet_id=None, subscription_id=None, system_tags=None, system_version=None, time_created=None, time_zone=None, vip_ids=None, zone_id=None):
|
30
|
+
def __init__(__self__, availability_domain=None, backup_network_nsg_ids=None, backup_subnet_id=None, cluster_name=None, cluster_placement_group_id=None, compartment_id=None, data_collection_options=None, defined_tags=None, display_name=None, domain=None, exadb_vm_cluster_id=None, exascale_db_storage_vault_id=None, freeform_tags=None, gi_version=None, grid_image_id=None, grid_image_type=None, hostname=None, id=None, iorm_config_caches=None, last_update_history_entry_id=None, license_model=None, lifecycle_details=None, listener_port=None, node_configs=None, node_resources=None, nsg_ids=None, private_zone_id=None, scan_dns_name=None, scan_dns_record_id=None, scan_ip_ids=None, scan_listener_port_tcp=None, scan_listener_port_tcp_ssl=None, security_attributes=None, shape=None, shape_attribute=None, ssh_public_keys=None, state=None, subnet_id=None, subscription_id=None, system_tags=None, system_version=None, time_created=None, time_zone=None, vip_ids=None, zone_id=None):
|
31
31
|
if availability_domain and not isinstance(availability_domain, str):
|
32
32
|
raise TypeError("Expected argument 'availability_domain' to be a str")
|
33
33
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -130,6 +130,9 @@ class GetExadbVmClusterResult:
|
|
130
130
|
if shape and not isinstance(shape, str):
|
131
131
|
raise TypeError("Expected argument 'shape' to be a str")
|
132
132
|
pulumi.set(__self__, "shape", shape)
|
133
|
+
if shape_attribute and not isinstance(shape_attribute, str):
|
134
|
+
raise TypeError("Expected argument 'shape_attribute' to be a str")
|
135
|
+
pulumi.set(__self__, "shape_attribute", shape_attribute)
|
133
136
|
if ssh_public_keys and not isinstance(ssh_public_keys, list):
|
134
137
|
raise TypeError("Expected argument 'ssh_public_keys' to be a list")
|
135
138
|
pulumi.set(__self__, "ssh_public_keys", ssh_public_keys)
|
@@ -431,6 +434,14 @@ class GetExadbVmClusterResult:
|
|
431
434
|
"""
|
432
435
|
return pulumi.get(self, "shape")
|
433
436
|
|
437
|
+
@_builtins.property
|
438
|
+
@pulumi.getter(name="shapeAttribute")
|
439
|
+
def shape_attribute(self) -> _builtins.str:
|
440
|
+
"""
|
441
|
+
The type of Exascale storage used for Exadata VM cluster. The default is SMART_STORAGE which supports Oracle Database 23ai and later
|
442
|
+
"""
|
443
|
+
return pulumi.get(self, "shape_attribute")
|
444
|
+
|
434
445
|
@_builtins.property
|
435
446
|
@pulumi.getter(name="sshPublicKeys")
|
436
447
|
def ssh_public_keys(self) -> Sequence[_builtins.str]:
|
@@ -552,6 +563,7 @@ class AwaitableGetExadbVmClusterResult(GetExadbVmClusterResult):
|
|
552
563
|
scan_listener_port_tcp_ssl=self.scan_listener_port_tcp_ssl,
|
553
564
|
security_attributes=self.security_attributes,
|
554
565
|
shape=self.shape,
|
566
|
+
shape_attribute=self.shape_attribute,
|
555
567
|
ssh_public_keys=self.ssh_public_keys,
|
556
568
|
state=self.state,
|
557
569
|
subnet_id=self.subnet_id,
|
@@ -623,6 +635,7 @@ def get_exadb_vm_cluster(exadb_vm_cluster_id: Optional[_builtins.str] = None,
|
|
623
635
|
scan_listener_port_tcp_ssl=pulumi.get(__ret__, 'scan_listener_port_tcp_ssl'),
|
624
636
|
security_attributes=pulumi.get(__ret__, 'security_attributes'),
|
625
637
|
shape=pulumi.get(__ret__, 'shape'),
|
638
|
+
shape_attribute=pulumi.get(__ret__, 'shape_attribute'),
|
626
639
|
ssh_public_keys=pulumi.get(__ret__, 'ssh_public_keys'),
|
627
640
|
state=pulumi.get(__ret__, 'state'),
|
628
641
|
subnet_id=pulumi.get(__ret__, 'subnet_id'),
|
@@ -691,6 +704,7 @@ def get_exadb_vm_cluster_output(exadb_vm_cluster_id: Optional[pulumi.Input[_buil
|
|
691
704
|
scan_listener_port_tcp_ssl=pulumi.get(__response__, 'scan_listener_port_tcp_ssl'),
|
692
705
|
security_attributes=pulumi.get(__response__, 'security_attributes'),
|
693
706
|
shape=pulumi.get(__response__, 'shape'),
|
707
|
+
shape_attribute=pulumi.get(__response__, 'shape_attribute'),
|
694
708
|
ssh_public_keys=pulumi.get(__response__, 'ssh_public_keys'),
|
695
709
|
state=pulumi.get(__response__, 'state'),
|
696
710
|
subnet_id=pulumi.get(__response__, 'subnet_id'),
|