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
@@ -0,0 +1,761 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import builtins as _builtins
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
|
17
|
+
__all__ = ['CloudDbNodeArgs', 'CloudDbNode']
|
18
|
+
|
19
|
+
@pulumi.input_type
|
20
|
+
class CloudDbNodeArgs:
|
21
|
+
def __init__(__self__, *,
|
22
|
+
cloud_db_node_id: pulumi.Input[_builtins.str],
|
23
|
+
cloud_connector_id: Optional[pulumi.Input[_builtins.str]] = None,
|
24
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
25
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
|
26
|
+
"""
|
27
|
+
The set of arguments for constructing a CloudDbNode resource.
|
28
|
+
:param pulumi.Input[_builtins.str] cloud_db_node_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud database node.
|
29
|
+
:param pulumi.Input[_builtins.str] cloud_connector_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud connector.
|
30
|
+
: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. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
31
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
32
|
+
|
33
|
+
|
34
|
+
** IMPORTANT **
|
35
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
36
|
+
"""
|
37
|
+
pulumi.set(__self__, "cloud_db_node_id", cloud_db_node_id)
|
38
|
+
if cloud_connector_id is not None:
|
39
|
+
pulumi.set(__self__, "cloud_connector_id", cloud_connector_id)
|
40
|
+
if defined_tags is not None:
|
41
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
42
|
+
if freeform_tags is not None:
|
43
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
44
|
+
|
45
|
+
@_builtins.property
|
46
|
+
@pulumi.getter(name="cloudDbNodeId")
|
47
|
+
def cloud_db_node_id(self) -> pulumi.Input[_builtins.str]:
|
48
|
+
"""
|
49
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud database node.
|
50
|
+
"""
|
51
|
+
return pulumi.get(self, "cloud_db_node_id")
|
52
|
+
|
53
|
+
@cloud_db_node_id.setter
|
54
|
+
def cloud_db_node_id(self, value: pulumi.Input[_builtins.str]):
|
55
|
+
pulumi.set(self, "cloud_db_node_id", value)
|
56
|
+
|
57
|
+
@_builtins.property
|
58
|
+
@pulumi.getter(name="cloudConnectorId")
|
59
|
+
def cloud_connector_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
60
|
+
"""
|
61
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud connector.
|
62
|
+
"""
|
63
|
+
return pulumi.get(self, "cloud_connector_id")
|
64
|
+
|
65
|
+
@cloud_connector_id.setter
|
66
|
+
def cloud_connector_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
67
|
+
pulumi.set(self, "cloud_connector_id", value)
|
68
|
+
|
69
|
+
@_builtins.property
|
70
|
+
@pulumi.getter(name="definedTags")
|
71
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
72
|
+
"""
|
73
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
74
|
+
"""
|
75
|
+
return pulumi.get(self, "defined_tags")
|
76
|
+
|
77
|
+
@defined_tags.setter
|
78
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
79
|
+
pulumi.set(self, "defined_tags", value)
|
80
|
+
|
81
|
+
@_builtins.property
|
82
|
+
@pulumi.getter(name="freeformTags")
|
83
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
84
|
+
"""
|
85
|
+
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
86
|
+
|
87
|
+
|
88
|
+
** IMPORTANT **
|
89
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
90
|
+
"""
|
91
|
+
return pulumi.get(self, "freeform_tags")
|
92
|
+
|
93
|
+
@freeform_tags.setter
|
94
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
95
|
+
pulumi.set(self, "freeform_tags", value)
|
96
|
+
|
97
|
+
|
98
|
+
@pulumi.input_type
|
99
|
+
class _CloudDbNodeState:
|
100
|
+
def __init__(__self__, *,
|
101
|
+
additional_details: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
102
|
+
cloud_connector_id: Optional[pulumi.Input[_builtins.str]] = None,
|
103
|
+
cloud_db_node_id: Optional[pulumi.Input[_builtins.str]] = None,
|
104
|
+
cloud_db_system_id: Optional[pulumi.Input[_builtins.str]] = None,
|
105
|
+
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
106
|
+
component_name: Optional[pulumi.Input[_builtins.str]] = None,
|
107
|
+
cpu_core_count: Optional[pulumi.Input[_builtins.float]] = None,
|
108
|
+
dbaas_id: Optional[pulumi.Input[_builtins.str]] = None,
|
109
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
110
|
+
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
111
|
+
domain_name: Optional[pulumi.Input[_builtins.str]] = None,
|
112
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
113
|
+
host_name: Optional[pulumi.Input[_builtins.str]] = None,
|
114
|
+
lifecycle_details: Optional[pulumi.Input[_builtins.str]] = None,
|
115
|
+
memory_size_in_gbs: Optional[pulumi.Input[_builtins.float]] = None,
|
116
|
+
state: Optional[pulumi.Input[_builtins.str]] = None,
|
117
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
118
|
+
time_created: Optional[pulumi.Input[_builtins.str]] = None,
|
119
|
+
time_updated: Optional[pulumi.Input[_builtins.str]] = None):
|
120
|
+
"""
|
121
|
+
Input properties used for looking up and filtering CloudDbNode resources.
|
122
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] additional_details: The additional details of the cloud DB node defined in `{"key": "value"}` format. Example: `{"bar-key": "value"}`
|
123
|
+
:param pulumi.Input[_builtins.str] cloud_connector_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud connector.
|
124
|
+
:param pulumi.Input[_builtins.str] cloud_db_node_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud database node.
|
125
|
+
:param pulumi.Input[_builtins.str] cloud_db_system_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB system that the DB node is a part of.
|
126
|
+
:param pulumi.Input[_builtins.str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
127
|
+
:param pulumi.Input[_builtins.str] component_name: The name of the cloud DB node.
|
128
|
+
:param pulumi.Input[_builtins.float] cpu_core_count: The number of CPU cores available on the DB node.
|
129
|
+
:param pulumi.Input[_builtins.str] dbaas_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB node in DBaas service.
|
130
|
+
: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. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
131
|
+
:param pulumi.Input[_builtins.str] display_name: The user-friendly name for the cloud DB node. The name does not have to be unique.
|
132
|
+
:param pulumi.Input[_builtins.str] domain_name: Name of the domain.
|
133
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
134
|
+
|
135
|
+
|
136
|
+
** IMPORTANT **
|
137
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
138
|
+
:param pulumi.Input[_builtins.str] host_name: The host name for the DB node.
|
139
|
+
:param pulumi.Input[_builtins.str] lifecycle_details: Additional information about the current lifecycle state.
|
140
|
+
:param pulumi.Input[_builtins.float] memory_size_in_gbs: The total memory in gigabytes (GB) on the DB node.
|
141
|
+
:param pulumi.Input[_builtins.str] state: The current lifecycle state of the cloud DB node.
|
142
|
+
: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. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
143
|
+
:param pulumi.Input[_builtins.str] time_created: The date and time the cloud DB node was created.
|
144
|
+
:param pulumi.Input[_builtins.str] time_updated: The date and time the cloud DB node was last updated.
|
145
|
+
"""
|
146
|
+
if additional_details is not None:
|
147
|
+
pulumi.set(__self__, "additional_details", additional_details)
|
148
|
+
if cloud_connector_id is not None:
|
149
|
+
pulumi.set(__self__, "cloud_connector_id", cloud_connector_id)
|
150
|
+
if cloud_db_node_id is not None:
|
151
|
+
pulumi.set(__self__, "cloud_db_node_id", cloud_db_node_id)
|
152
|
+
if cloud_db_system_id is not None:
|
153
|
+
pulumi.set(__self__, "cloud_db_system_id", cloud_db_system_id)
|
154
|
+
if compartment_id is not None:
|
155
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
156
|
+
if component_name is not None:
|
157
|
+
pulumi.set(__self__, "component_name", component_name)
|
158
|
+
if cpu_core_count is not None:
|
159
|
+
pulumi.set(__self__, "cpu_core_count", cpu_core_count)
|
160
|
+
if dbaas_id is not None:
|
161
|
+
pulumi.set(__self__, "dbaas_id", dbaas_id)
|
162
|
+
if defined_tags is not None:
|
163
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
164
|
+
if display_name is not None:
|
165
|
+
pulumi.set(__self__, "display_name", display_name)
|
166
|
+
if domain_name is not None:
|
167
|
+
pulumi.set(__self__, "domain_name", domain_name)
|
168
|
+
if freeform_tags is not None:
|
169
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
170
|
+
if host_name is not None:
|
171
|
+
pulumi.set(__self__, "host_name", host_name)
|
172
|
+
if lifecycle_details is not None:
|
173
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
174
|
+
if memory_size_in_gbs is not None:
|
175
|
+
pulumi.set(__self__, "memory_size_in_gbs", memory_size_in_gbs)
|
176
|
+
if state is not None:
|
177
|
+
pulumi.set(__self__, "state", state)
|
178
|
+
if system_tags is not None:
|
179
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
180
|
+
if time_created is not None:
|
181
|
+
pulumi.set(__self__, "time_created", time_created)
|
182
|
+
if time_updated is not None:
|
183
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
184
|
+
|
185
|
+
@_builtins.property
|
186
|
+
@pulumi.getter(name="additionalDetails")
|
187
|
+
def additional_details(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
188
|
+
"""
|
189
|
+
The additional details of the cloud DB node defined in `{"key": "value"}` format. Example: `{"bar-key": "value"}`
|
190
|
+
"""
|
191
|
+
return pulumi.get(self, "additional_details")
|
192
|
+
|
193
|
+
@additional_details.setter
|
194
|
+
def additional_details(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
195
|
+
pulumi.set(self, "additional_details", value)
|
196
|
+
|
197
|
+
@_builtins.property
|
198
|
+
@pulumi.getter(name="cloudConnectorId")
|
199
|
+
def cloud_connector_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
200
|
+
"""
|
201
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud connector.
|
202
|
+
"""
|
203
|
+
return pulumi.get(self, "cloud_connector_id")
|
204
|
+
|
205
|
+
@cloud_connector_id.setter
|
206
|
+
def cloud_connector_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
207
|
+
pulumi.set(self, "cloud_connector_id", value)
|
208
|
+
|
209
|
+
@_builtins.property
|
210
|
+
@pulumi.getter(name="cloudDbNodeId")
|
211
|
+
def cloud_db_node_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
212
|
+
"""
|
213
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud database node.
|
214
|
+
"""
|
215
|
+
return pulumi.get(self, "cloud_db_node_id")
|
216
|
+
|
217
|
+
@cloud_db_node_id.setter
|
218
|
+
def cloud_db_node_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
219
|
+
pulumi.set(self, "cloud_db_node_id", value)
|
220
|
+
|
221
|
+
@_builtins.property
|
222
|
+
@pulumi.getter(name="cloudDbSystemId")
|
223
|
+
def cloud_db_system_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
224
|
+
"""
|
225
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB system that the DB node is a part of.
|
226
|
+
"""
|
227
|
+
return pulumi.get(self, "cloud_db_system_id")
|
228
|
+
|
229
|
+
@cloud_db_system_id.setter
|
230
|
+
def cloud_db_system_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
231
|
+
pulumi.set(self, "cloud_db_system_id", value)
|
232
|
+
|
233
|
+
@_builtins.property
|
234
|
+
@pulumi.getter(name="compartmentId")
|
235
|
+
def compartment_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
236
|
+
"""
|
237
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
238
|
+
"""
|
239
|
+
return pulumi.get(self, "compartment_id")
|
240
|
+
|
241
|
+
@compartment_id.setter
|
242
|
+
def compartment_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
243
|
+
pulumi.set(self, "compartment_id", value)
|
244
|
+
|
245
|
+
@_builtins.property
|
246
|
+
@pulumi.getter(name="componentName")
|
247
|
+
def component_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
248
|
+
"""
|
249
|
+
The name of the cloud DB node.
|
250
|
+
"""
|
251
|
+
return pulumi.get(self, "component_name")
|
252
|
+
|
253
|
+
@component_name.setter
|
254
|
+
def component_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
255
|
+
pulumi.set(self, "component_name", value)
|
256
|
+
|
257
|
+
@_builtins.property
|
258
|
+
@pulumi.getter(name="cpuCoreCount")
|
259
|
+
def cpu_core_count(self) -> Optional[pulumi.Input[_builtins.float]]:
|
260
|
+
"""
|
261
|
+
The number of CPU cores available on the DB node.
|
262
|
+
"""
|
263
|
+
return pulumi.get(self, "cpu_core_count")
|
264
|
+
|
265
|
+
@cpu_core_count.setter
|
266
|
+
def cpu_core_count(self, value: Optional[pulumi.Input[_builtins.float]]):
|
267
|
+
pulumi.set(self, "cpu_core_count", value)
|
268
|
+
|
269
|
+
@_builtins.property
|
270
|
+
@pulumi.getter(name="dbaasId")
|
271
|
+
def dbaas_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
272
|
+
"""
|
273
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB node in DBaas service.
|
274
|
+
"""
|
275
|
+
return pulumi.get(self, "dbaas_id")
|
276
|
+
|
277
|
+
@dbaas_id.setter
|
278
|
+
def dbaas_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
279
|
+
pulumi.set(self, "dbaas_id", value)
|
280
|
+
|
281
|
+
@_builtins.property
|
282
|
+
@pulumi.getter(name="definedTags")
|
283
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
284
|
+
"""
|
285
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
286
|
+
"""
|
287
|
+
return pulumi.get(self, "defined_tags")
|
288
|
+
|
289
|
+
@defined_tags.setter
|
290
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
291
|
+
pulumi.set(self, "defined_tags", value)
|
292
|
+
|
293
|
+
@_builtins.property
|
294
|
+
@pulumi.getter(name="displayName")
|
295
|
+
def display_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
296
|
+
"""
|
297
|
+
The user-friendly name for the cloud DB node. The name does not have to be unique.
|
298
|
+
"""
|
299
|
+
return pulumi.get(self, "display_name")
|
300
|
+
|
301
|
+
@display_name.setter
|
302
|
+
def display_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
303
|
+
pulumi.set(self, "display_name", value)
|
304
|
+
|
305
|
+
@_builtins.property
|
306
|
+
@pulumi.getter(name="domainName")
|
307
|
+
def domain_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
308
|
+
"""
|
309
|
+
Name of the domain.
|
310
|
+
"""
|
311
|
+
return pulumi.get(self, "domain_name")
|
312
|
+
|
313
|
+
@domain_name.setter
|
314
|
+
def domain_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
315
|
+
pulumi.set(self, "domain_name", value)
|
316
|
+
|
317
|
+
@_builtins.property
|
318
|
+
@pulumi.getter(name="freeformTags")
|
319
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
320
|
+
"""
|
321
|
+
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
322
|
+
|
323
|
+
|
324
|
+
** IMPORTANT **
|
325
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
326
|
+
"""
|
327
|
+
return pulumi.get(self, "freeform_tags")
|
328
|
+
|
329
|
+
@freeform_tags.setter
|
330
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
331
|
+
pulumi.set(self, "freeform_tags", value)
|
332
|
+
|
333
|
+
@_builtins.property
|
334
|
+
@pulumi.getter(name="hostName")
|
335
|
+
def host_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
336
|
+
"""
|
337
|
+
The host name for the DB node.
|
338
|
+
"""
|
339
|
+
return pulumi.get(self, "host_name")
|
340
|
+
|
341
|
+
@host_name.setter
|
342
|
+
def host_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
343
|
+
pulumi.set(self, "host_name", value)
|
344
|
+
|
345
|
+
@_builtins.property
|
346
|
+
@pulumi.getter(name="lifecycleDetails")
|
347
|
+
def lifecycle_details(self) -> Optional[pulumi.Input[_builtins.str]]:
|
348
|
+
"""
|
349
|
+
Additional information about the current lifecycle state.
|
350
|
+
"""
|
351
|
+
return pulumi.get(self, "lifecycle_details")
|
352
|
+
|
353
|
+
@lifecycle_details.setter
|
354
|
+
def lifecycle_details(self, value: Optional[pulumi.Input[_builtins.str]]):
|
355
|
+
pulumi.set(self, "lifecycle_details", value)
|
356
|
+
|
357
|
+
@_builtins.property
|
358
|
+
@pulumi.getter(name="memorySizeInGbs")
|
359
|
+
def memory_size_in_gbs(self) -> Optional[pulumi.Input[_builtins.float]]:
|
360
|
+
"""
|
361
|
+
The total memory in gigabytes (GB) on the DB node.
|
362
|
+
"""
|
363
|
+
return pulumi.get(self, "memory_size_in_gbs")
|
364
|
+
|
365
|
+
@memory_size_in_gbs.setter
|
366
|
+
def memory_size_in_gbs(self, value: Optional[pulumi.Input[_builtins.float]]):
|
367
|
+
pulumi.set(self, "memory_size_in_gbs", value)
|
368
|
+
|
369
|
+
@_builtins.property
|
370
|
+
@pulumi.getter
|
371
|
+
def state(self) -> Optional[pulumi.Input[_builtins.str]]:
|
372
|
+
"""
|
373
|
+
The current lifecycle state of the cloud DB node.
|
374
|
+
"""
|
375
|
+
return pulumi.get(self, "state")
|
376
|
+
|
377
|
+
@state.setter
|
378
|
+
def state(self, value: Optional[pulumi.Input[_builtins.str]]):
|
379
|
+
pulumi.set(self, "state", value)
|
380
|
+
|
381
|
+
@_builtins.property
|
382
|
+
@pulumi.getter(name="systemTags")
|
383
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
384
|
+
"""
|
385
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
386
|
+
"""
|
387
|
+
return pulumi.get(self, "system_tags")
|
388
|
+
|
389
|
+
@system_tags.setter
|
390
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
391
|
+
pulumi.set(self, "system_tags", value)
|
392
|
+
|
393
|
+
@_builtins.property
|
394
|
+
@pulumi.getter(name="timeCreated")
|
395
|
+
def time_created(self) -> Optional[pulumi.Input[_builtins.str]]:
|
396
|
+
"""
|
397
|
+
The date and time the cloud DB node was created.
|
398
|
+
"""
|
399
|
+
return pulumi.get(self, "time_created")
|
400
|
+
|
401
|
+
@time_created.setter
|
402
|
+
def time_created(self, value: Optional[pulumi.Input[_builtins.str]]):
|
403
|
+
pulumi.set(self, "time_created", value)
|
404
|
+
|
405
|
+
@_builtins.property
|
406
|
+
@pulumi.getter(name="timeUpdated")
|
407
|
+
def time_updated(self) -> Optional[pulumi.Input[_builtins.str]]:
|
408
|
+
"""
|
409
|
+
The date and time the cloud DB node was last updated.
|
410
|
+
"""
|
411
|
+
return pulumi.get(self, "time_updated")
|
412
|
+
|
413
|
+
@time_updated.setter
|
414
|
+
def time_updated(self, value: Optional[pulumi.Input[_builtins.str]]):
|
415
|
+
pulumi.set(self, "time_updated", value)
|
416
|
+
|
417
|
+
|
418
|
+
@pulumi.type_token("oci:DatabaseManagement/cloudDbNode:CloudDbNode")
|
419
|
+
class CloudDbNode(pulumi.CustomResource):
|
420
|
+
@overload
|
421
|
+
def __init__(__self__,
|
422
|
+
resource_name: str,
|
423
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
424
|
+
cloud_connector_id: Optional[pulumi.Input[_builtins.str]] = None,
|
425
|
+
cloud_db_node_id: Optional[pulumi.Input[_builtins.str]] = None,
|
426
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
427
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
428
|
+
__props__=None):
|
429
|
+
"""
|
430
|
+
This resource provides the Cloud Db Node resource in Oracle Cloud Infrastructure Database Management service.
|
431
|
+
|
432
|
+
Updates the cloud DB node specified by `cloudDbNodeId`.
|
433
|
+
|
434
|
+
## Import
|
435
|
+
|
436
|
+
CloudDbNodes can be imported using the `id`, e.g.
|
437
|
+
|
438
|
+
```sh
|
439
|
+
$ pulumi import oci:DatabaseManagement/cloudDbNode:CloudDbNode test_cloud_db_node "id"
|
440
|
+
```
|
441
|
+
|
442
|
+
:param str resource_name: The name of the resource.
|
443
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
444
|
+
:param pulumi.Input[_builtins.str] cloud_connector_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud connector.
|
445
|
+
:param pulumi.Input[_builtins.str] cloud_db_node_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud database node.
|
446
|
+
: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. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
447
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
448
|
+
|
449
|
+
|
450
|
+
** IMPORTANT **
|
451
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
452
|
+
"""
|
453
|
+
...
|
454
|
+
@overload
|
455
|
+
def __init__(__self__,
|
456
|
+
resource_name: str,
|
457
|
+
args: CloudDbNodeArgs,
|
458
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
459
|
+
"""
|
460
|
+
This resource provides the Cloud Db Node resource in Oracle Cloud Infrastructure Database Management service.
|
461
|
+
|
462
|
+
Updates the cloud DB node specified by `cloudDbNodeId`.
|
463
|
+
|
464
|
+
## Import
|
465
|
+
|
466
|
+
CloudDbNodes can be imported using the `id`, e.g.
|
467
|
+
|
468
|
+
```sh
|
469
|
+
$ pulumi import oci:DatabaseManagement/cloudDbNode:CloudDbNode test_cloud_db_node "id"
|
470
|
+
```
|
471
|
+
|
472
|
+
:param str resource_name: The name of the resource.
|
473
|
+
:param CloudDbNodeArgs args: The arguments to use to populate this resource's properties.
|
474
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
475
|
+
"""
|
476
|
+
...
|
477
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
478
|
+
resource_args, opts = _utilities.get_resource_args_opts(CloudDbNodeArgs, pulumi.ResourceOptions, *args, **kwargs)
|
479
|
+
if resource_args is not None:
|
480
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
481
|
+
else:
|
482
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
483
|
+
|
484
|
+
def _internal_init(__self__,
|
485
|
+
resource_name: str,
|
486
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
487
|
+
cloud_connector_id: Optional[pulumi.Input[_builtins.str]] = None,
|
488
|
+
cloud_db_node_id: Optional[pulumi.Input[_builtins.str]] = None,
|
489
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
490
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
491
|
+
__props__=None):
|
492
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
493
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
494
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
495
|
+
if opts.id is None:
|
496
|
+
if __props__ is not None:
|
497
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
498
|
+
__props__ = CloudDbNodeArgs.__new__(CloudDbNodeArgs)
|
499
|
+
|
500
|
+
__props__.__dict__["cloud_connector_id"] = cloud_connector_id
|
501
|
+
if cloud_db_node_id is None and not opts.urn:
|
502
|
+
raise TypeError("Missing required property 'cloud_db_node_id'")
|
503
|
+
__props__.__dict__["cloud_db_node_id"] = cloud_db_node_id
|
504
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
505
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
506
|
+
__props__.__dict__["additional_details"] = None
|
507
|
+
__props__.__dict__["cloud_db_system_id"] = None
|
508
|
+
__props__.__dict__["compartment_id"] = None
|
509
|
+
__props__.__dict__["component_name"] = None
|
510
|
+
__props__.__dict__["cpu_core_count"] = None
|
511
|
+
__props__.__dict__["dbaas_id"] = None
|
512
|
+
__props__.__dict__["display_name"] = None
|
513
|
+
__props__.__dict__["domain_name"] = None
|
514
|
+
__props__.__dict__["host_name"] = None
|
515
|
+
__props__.__dict__["lifecycle_details"] = None
|
516
|
+
__props__.__dict__["memory_size_in_gbs"] = None
|
517
|
+
__props__.__dict__["state"] = None
|
518
|
+
__props__.__dict__["system_tags"] = None
|
519
|
+
__props__.__dict__["time_created"] = None
|
520
|
+
__props__.__dict__["time_updated"] = None
|
521
|
+
super(CloudDbNode, __self__).__init__(
|
522
|
+
'oci:DatabaseManagement/cloudDbNode:CloudDbNode',
|
523
|
+
resource_name,
|
524
|
+
__props__,
|
525
|
+
opts)
|
526
|
+
|
527
|
+
@staticmethod
|
528
|
+
def get(resource_name: str,
|
529
|
+
id: pulumi.Input[str],
|
530
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
531
|
+
additional_details: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
532
|
+
cloud_connector_id: Optional[pulumi.Input[_builtins.str]] = None,
|
533
|
+
cloud_db_node_id: Optional[pulumi.Input[_builtins.str]] = None,
|
534
|
+
cloud_db_system_id: Optional[pulumi.Input[_builtins.str]] = None,
|
535
|
+
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
536
|
+
component_name: Optional[pulumi.Input[_builtins.str]] = None,
|
537
|
+
cpu_core_count: Optional[pulumi.Input[_builtins.float]] = None,
|
538
|
+
dbaas_id: Optional[pulumi.Input[_builtins.str]] = None,
|
539
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
540
|
+
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
541
|
+
domain_name: Optional[pulumi.Input[_builtins.str]] = None,
|
542
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
543
|
+
host_name: Optional[pulumi.Input[_builtins.str]] = None,
|
544
|
+
lifecycle_details: Optional[pulumi.Input[_builtins.str]] = None,
|
545
|
+
memory_size_in_gbs: Optional[pulumi.Input[_builtins.float]] = None,
|
546
|
+
state: Optional[pulumi.Input[_builtins.str]] = None,
|
547
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
548
|
+
time_created: Optional[pulumi.Input[_builtins.str]] = None,
|
549
|
+
time_updated: Optional[pulumi.Input[_builtins.str]] = None) -> 'CloudDbNode':
|
550
|
+
"""
|
551
|
+
Get an existing CloudDbNode resource's state with the given name, id, and optional extra
|
552
|
+
properties used to qualify the lookup.
|
553
|
+
|
554
|
+
:param str resource_name: The unique name of the resulting resource.
|
555
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
556
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
557
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] additional_details: The additional details of the cloud DB node defined in `{"key": "value"}` format. Example: `{"bar-key": "value"}`
|
558
|
+
:param pulumi.Input[_builtins.str] cloud_connector_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud connector.
|
559
|
+
:param pulumi.Input[_builtins.str] cloud_db_node_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud database node.
|
560
|
+
:param pulumi.Input[_builtins.str] cloud_db_system_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB system that the DB node is a part of.
|
561
|
+
:param pulumi.Input[_builtins.str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
562
|
+
:param pulumi.Input[_builtins.str] component_name: The name of the cloud DB node.
|
563
|
+
:param pulumi.Input[_builtins.float] cpu_core_count: The number of CPU cores available on the DB node.
|
564
|
+
:param pulumi.Input[_builtins.str] dbaas_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB node in DBaas service.
|
565
|
+
: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. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
566
|
+
:param pulumi.Input[_builtins.str] display_name: The user-friendly name for the cloud DB node. The name does not have to be unique.
|
567
|
+
:param pulumi.Input[_builtins.str] domain_name: Name of the domain.
|
568
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
569
|
+
|
570
|
+
|
571
|
+
** IMPORTANT **
|
572
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
573
|
+
:param pulumi.Input[_builtins.str] host_name: The host name for the DB node.
|
574
|
+
:param pulumi.Input[_builtins.str] lifecycle_details: Additional information about the current lifecycle state.
|
575
|
+
:param pulumi.Input[_builtins.float] memory_size_in_gbs: The total memory in gigabytes (GB) on the DB node.
|
576
|
+
:param pulumi.Input[_builtins.str] state: The current lifecycle state of the cloud DB node.
|
577
|
+
: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. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
578
|
+
:param pulumi.Input[_builtins.str] time_created: The date and time the cloud DB node was created.
|
579
|
+
:param pulumi.Input[_builtins.str] time_updated: The date and time the cloud DB node was last updated.
|
580
|
+
"""
|
581
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
582
|
+
|
583
|
+
__props__ = _CloudDbNodeState.__new__(_CloudDbNodeState)
|
584
|
+
|
585
|
+
__props__.__dict__["additional_details"] = additional_details
|
586
|
+
__props__.__dict__["cloud_connector_id"] = cloud_connector_id
|
587
|
+
__props__.__dict__["cloud_db_node_id"] = cloud_db_node_id
|
588
|
+
__props__.__dict__["cloud_db_system_id"] = cloud_db_system_id
|
589
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
590
|
+
__props__.__dict__["component_name"] = component_name
|
591
|
+
__props__.__dict__["cpu_core_count"] = cpu_core_count
|
592
|
+
__props__.__dict__["dbaas_id"] = dbaas_id
|
593
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
594
|
+
__props__.__dict__["display_name"] = display_name
|
595
|
+
__props__.__dict__["domain_name"] = domain_name
|
596
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
597
|
+
__props__.__dict__["host_name"] = host_name
|
598
|
+
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
599
|
+
__props__.__dict__["memory_size_in_gbs"] = memory_size_in_gbs
|
600
|
+
__props__.__dict__["state"] = state
|
601
|
+
__props__.__dict__["system_tags"] = system_tags
|
602
|
+
__props__.__dict__["time_created"] = time_created
|
603
|
+
__props__.__dict__["time_updated"] = time_updated
|
604
|
+
return CloudDbNode(resource_name, opts=opts, __props__=__props__)
|
605
|
+
|
606
|
+
@_builtins.property
|
607
|
+
@pulumi.getter(name="additionalDetails")
|
608
|
+
def additional_details(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
|
609
|
+
"""
|
610
|
+
The additional details of the cloud DB node defined in `{"key": "value"}` format. Example: `{"bar-key": "value"}`
|
611
|
+
"""
|
612
|
+
return pulumi.get(self, "additional_details")
|
613
|
+
|
614
|
+
@_builtins.property
|
615
|
+
@pulumi.getter(name="cloudConnectorId")
|
616
|
+
def cloud_connector_id(self) -> pulumi.Output[_builtins.str]:
|
617
|
+
"""
|
618
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud connector.
|
619
|
+
"""
|
620
|
+
return pulumi.get(self, "cloud_connector_id")
|
621
|
+
|
622
|
+
@_builtins.property
|
623
|
+
@pulumi.getter(name="cloudDbNodeId")
|
624
|
+
def cloud_db_node_id(self) -> pulumi.Output[_builtins.str]:
|
625
|
+
"""
|
626
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud database node.
|
627
|
+
"""
|
628
|
+
return pulumi.get(self, "cloud_db_node_id")
|
629
|
+
|
630
|
+
@_builtins.property
|
631
|
+
@pulumi.getter(name="cloudDbSystemId")
|
632
|
+
def cloud_db_system_id(self) -> pulumi.Output[_builtins.str]:
|
633
|
+
"""
|
634
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB system that the DB node is a part of.
|
635
|
+
"""
|
636
|
+
return pulumi.get(self, "cloud_db_system_id")
|
637
|
+
|
638
|
+
@_builtins.property
|
639
|
+
@pulumi.getter(name="compartmentId")
|
640
|
+
def compartment_id(self) -> pulumi.Output[_builtins.str]:
|
641
|
+
"""
|
642
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
643
|
+
"""
|
644
|
+
return pulumi.get(self, "compartment_id")
|
645
|
+
|
646
|
+
@_builtins.property
|
647
|
+
@pulumi.getter(name="componentName")
|
648
|
+
def component_name(self) -> pulumi.Output[_builtins.str]:
|
649
|
+
"""
|
650
|
+
The name of the cloud DB node.
|
651
|
+
"""
|
652
|
+
return pulumi.get(self, "component_name")
|
653
|
+
|
654
|
+
@_builtins.property
|
655
|
+
@pulumi.getter(name="cpuCoreCount")
|
656
|
+
def cpu_core_count(self) -> pulumi.Output[_builtins.float]:
|
657
|
+
"""
|
658
|
+
The number of CPU cores available on the DB node.
|
659
|
+
"""
|
660
|
+
return pulumi.get(self, "cpu_core_count")
|
661
|
+
|
662
|
+
@_builtins.property
|
663
|
+
@pulumi.getter(name="dbaasId")
|
664
|
+
def dbaas_id(self) -> pulumi.Output[_builtins.str]:
|
665
|
+
"""
|
666
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB node in DBaas service.
|
667
|
+
"""
|
668
|
+
return pulumi.get(self, "dbaas_id")
|
669
|
+
|
670
|
+
@_builtins.property
|
671
|
+
@pulumi.getter(name="definedTags")
|
672
|
+
def defined_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
|
673
|
+
"""
|
674
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
675
|
+
"""
|
676
|
+
return pulumi.get(self, "defined_tags")
|
677
|
+
|
678
|
+
@_builtins.property
|
679
|
+
@pulumi.getter(name="displayName")
|
680
|
+
def display_name(self) -> pulumi.Output[_builtins.str]:
|
681
|
+
"""
|
682
|
+
The user-friendly name for the cloud DB node. The name does not have to be unique.
|
683
|
+
"""
|
684
|
+
return pulumi.get(self, "display_name")
|
685
|
+
|
686
|
+
@_builtins.property
|
687
|
+
@pulumi.getter(name="domainName")
|
688
|
+
def domain_name(self) -> pulumi.Output[_builtins.str]:
|
689
|
+
"""
|
690
|
+
Name of the domain.
|
691
|
+
"""
|
692
|
+
return pulumi.get(self, "domain_name")
|
693
|
+
|
694
|
+
@_builtins.property
|
695
|
+
@pulumi.getter(name="freeformTags")
|
696
|
+
def freeform_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
|
697
|
+
"""
|
698
|
+
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
699
|
+
|
700
|
+
|
701
|
+
** IMPORTANT **
|
702
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
703
|
+
"""
|
704
|
+
return pulumi.get(self, "freeform_tags")
|
705
|
+
|
706
|
+
@_builtins.property
|
707
|
+
@pulumi.getter(name="hostName")
|
708
|
+
def host_name(self) -> pulumi.Output[_builtins.str]:
|
709
|
+
"""
|
710
|
+
The host name for the DB node.
|
711
|
+
"""
|
712
|
+
return pulumi.get(self, "host_name")
|
713
|
+
|
714
|
+
@_builtins.property
|
715
|
+
@pulumi.getter(name="lifecycleDetails")
|
716
|
+
def lifecycle_details(self) -> pulumi.Output[_builtins.str]:
|
717
|
+
"""
|
718
|
+
Additional information about the current lifecycle state.
|
719
|
+
"""
|
720
|
+
return pulumi.get(self, "lifecycle_details")
|
721
|
+
|
722
|
+
@_builtins.property
|
723
|
+
@pulumi.getter(name="memorySizeInGbs")
|
724
|
+
def memory_size_in_gbs(self) -> pulumi.Output[_builtins.float]:
|
725
|
+
"""
|
726
|
+
The total memory in gigabytes (GB) on the DB node.
|
727
|
+
"""
|
728
|
+
return pulumi.get(self, "memory_size_in_gbs")
|
729
|
+
|
730
|
+
@_builtins.property
|
731
|
+
@pulumi.getter
|
732
|
+
def state(self) -> pulumi.Output[_builtins.str]:
|
733
|
+
"""
|
734
|
+
The current lifecycle state of the cloud DB node.
|
735
|
+
"""
|
736
|
+
return pulumi.get(self, "state")
|
737
|
+
|
738
|
+
@_builtins.property
|
739
|
+
@pulumi.getter(name="systemTags")
|
740
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
|
741
|
+
"""
|
742
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
743
|
+
"""
|
744
|
+
return pulumi.get(self, "system_tags")
|
745
|
+
|
746
|
+
@_builtins.property
|
747
|
+
@pulumi.getter(name="timeCreated")
|
748
|
+
def time_created(self) -> pulumi.Output[_builtins.str]:
|
749
|
+
"""
|
750
|
+
The date and time the cloud DB node was created.
|
751
|
+
"""
|
752
|
+
return pulumi.get(self, "time_created")
|
753
|
+
|
754
|
+
@_builtins.property
|
755
|
+
@pulumi.getter(name="timeUpdated")
|
756
|
+
def time_updated(self) -> pulumi.Output[_builtins.str]:
|
757
|
+
"""
|
758
|
+
The date and time the cloud DB node was last updated.
|
759
|
+
"""
|
760
|
+
return pulumi.get(self, "time_updated")
|
761
|
+
|