pulumi-oci 3.4.0a1755714728__py3-none-any.whl → 3.5.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +248 -43
- pulumi_oci/aidocument/__init__.py +1 -0
- pulumi_oci/aidocument/_inputs.py +476 -6
- pulumi_oci/aidocument/get_model.py +63 -2
- pulumi_oci/aidocument/get_model_type.py +179 -0
- pulumi_oci/aidocument/get_models.py +1 -1
- pulumi_oci/aidocument/get_project.py +17 -2
- pulumi_oci/aidocument/get_projects.py +1 -1
- pulumi_oci/aidocument/model.py +188 -0
- pulumi_oci/aidocument/outputs.py +883 -8
- pulumi_oci/aidocument/processor_job.py +22 -4
- pulumi_oci/aidocument/project.py +50 -1
- pulumi_oci/apigateway/_inputs.py +608 -12
- pulumi_oci/apigateway/api.py +127 -38
- pulumi_oci/apigateway/certificate.py +122 -3
- pulumi_oci/apigateway/deployment.py +120 -3
- pulumi_oci/apigateway/gateway.py +124 -7
- pulumi_oci/apigateway/get_api.py +40 -1
- pulumi_oci/apigateway/get_certificate.py +41 -1
- pulumi_oci/apigateway/get_deployment.py +40 -1
- pulumi_oci/apigateway/get_gateway.py +40 -1
- pulumi_oci/apigateway/get_subscriber.py +40 -1
- pulumi_oci/apigateway/get_usage_plan.py +40 -1
- pulumi_oci/apigateway/outputs.py +1413 -39
- pulumi_oci/apigateway/subscriber.py +120 -3
- pulumi_oci/apigateway/usage_plan.py +127 -38
- pulumi_oci/apmconfig/_inputs.py +199 -15
- pulumi_oci/apmconfig/config.py +535 -17
- pulumi_oci/apmconfig/get_config.py +141 -1
- pulumi_oci/apmconfig/get_configs.py +2 -2
- pulumi_oci/apmconfig/outputs.py +509 -13
- pulumi_oci/apmtraces/__init__.py +5 -0
- pulumi_oci/apmtraces/_inputs.py +413 -0
- pulumi_oci/apmtraces/get_attribute_auto_activate_status.py +160 -0
- pulumi_oci/apmtraces/get_log.py +356 -0
- pulumi_oci/apmtraces/get_scheduled_queries.py +163 -0
- pulumi_oci/apmtraces/get_scheduled_query.py +368 -0
- pulumi_oci/apmtraces/get_trace.py +4 -4
- pulumi_oci/apmtraces/outputs.py +971 -0
- pulumi_oci/apmtraces/scheduled_query.py +925 -0
- pulumi_oci/autoscaling/_inputs.py +177 -13
- pulumi_oci/autoscaling/auto_scaling_configuration.py +12 -0
- pulumi_oci/autoscaling/outputs.py +269 -23
- pulumi_oci/core/_inputs.py +184 -0
- pulumi_oci/core/compute_gpu_memory_fabric.py +28 -0
- pulumi_oci/core/get_compute_gpu_memory_fabric.py +15 -1
- pulumi_oci/core/get_ipv6.py +15 -1
- pulumi_oci/core/ipv6.py +49 -0
- pulumi_oci/core/outputs.py +376 -0
- pulumi_oci/database/__init__.py +3 -0
- pulumi_oci/database/_inputs.py +396 -19
- pulumi_oci/database/autonomous_container_database.py +94 -0
- pulumi_oci/database/autonomous_container_database_add_standby.py +28 -0
- pulumi_oci/database/autonomous_database.py +578 -568
- pulumi_oci/database/autonomous_database_saas_admin_user.py +43 -60
- pulumi_oci/database/data_guard_association.py +98 -0
- pulumi_oci/database/database.py +28 -0
- pulumi_oci/database/db_node.py +56 -0
- pulumi_oci/database/db_system.py +108 -14
- pulumi_oci/database/exadb_vm_cluster.py +49 -0
- pulumi_oci/database/exascale_db_storage_vault.py +28 -0
- pulumi_oci/database/get_autonomous_container_database.py +29 -1
- pulumi_oci/database/get_autonomous_database.py +65 -1
- pulumi_oci/database/get_autonomous_databases.py +6 -1
- pulumi_oci/database/get_data_guard_association.py +23 -1
- pulumi_oci/database/get_database.py +15 -1
- pulumi_oci/database/get_db_node.py +29 -1
- pulumi_oci/database/get_db_system_shapes.py +25 -6
- pulumi_oci/database/get_db_system_storage_performances.py +20 -3
- pulumi_oci/database/get_db_versions.py +20 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +15 -1
- pulumi_oci/database/get_exascale_db_storage_vault.py +15 -1
- pulumi_oci/database/get_exascale_db_storage_vaults.py +87 -8
- pulumi_oci/database/get_gi_versions.py +25 -6
- pulumi_oci/database/get_pluggable_database_snapshot.py +253 -0
- pulumi_oci/database/get_pluggable_database_snapshots.py +235 -0
- pulumi_oci/database/outputs.py +1045 -83
- pulumi_oci/database/pluggable_database.py +0 -14
- pulumi_oci/database/pluggable_database_snapshot.py +539 -0
- pulumi_oci/databasemanagement/__init__.py +37 -0
- pulumi_oci/databasemanagement/_inputs.py +9516 -3414
- pulumi_oci/databasemanagement/cloud_asm.py +791 -0
- pulumi_oci/databasemanagement/cloud_asm_instance.py +686 -0
- pulumi_oci/databasemanagement/cloud_cluster.py +847 -0
- pulumi_oci/databasemanagement/cloud_cluster_instance.py +789 -0
- pulumi_oci/databasemanagement/cloud_db_home.py +630 -0
- pulumi_oci/databasemanagement/cloud_db_node.py +761 -0
- pulumi_oci/databasemanagement/cloud_db_system.py +789 -0
- pulumi_oci/databasemanagement/cloud_db_system_cloud_database_managements_management.py +354 -0
- pulumi_oci/databasemanagement/cloud_db_system_cloud_stack_monitorings_management.py +354 -0
- pulumi_oci/databasemanagement/cloud_db_system_connector.py +761 -0
- pulumi_oci/databasemanagement/cloud_db_system_discovery.py +754 -0
- pulumi_oci/databasemanagement/cloud_listener.py +1043 -0
- pulumi_oci/databasemanagement/get_cloud_asm.py +380 -0
- pulumi_oci/databasemanagement/get_cloud_asm_configuration.py +147 -0
- pulumi_oci/databasemanagement/get_cloud_asm_disk_groups.py +163 -0
- pulumi_oci/databasemanagement/get_cloud_asm_instance.py +337 -0
- pulumi_oci/databasemanagement/get_cloud_asm_instances.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_asm_users.py +163 -0
- pulumi_oci/databasemanagement/get_cloud_asms.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_cluster.py +408 -0
- pulumi_oci/databasemanagement/get_cloud_cluster_instance.py +379 -0
- pulumi_oci/databasemanagement/get_cloud_cluster_instances.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_clusters.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_databases.py +188 -0
- pulumi_oci/databasemanagement/get_cloud_db_home.py +309 -0
- pulumi_oci/databasemanagement/get_cloud_db_homes.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_db_node.py +365 -0
- pulumi_oci/databasemanagement/get_cloud_db_nodes.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_db_system.py +352 -0
- pulumi_oci/databasemanagement/get_cloud_db_system_connector.py +338 -0
- pulumi_oci/databasemanagement/get_cloud_db_system_connectors.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_db_system_discoveries.py +169 -0
- pulumi_oci/databasemanagement/get_cloud_db_system_discovery.py +335 -0
- pulumi_oci/databasemanagement/get_cloud_db_systems.py +235 -0
- pulumi_oci/databasemanagement/get_cloud_listener.py +506 -0
- pulumi_oci/databasemanagement/get_cloud_listener_services.py +187 -0
- pulumi_oci/databasemanagement/get_cloud_listeners.py +191 -0
- pulumi_oci/databasemanagement/get_managed_database.py +2 -2
- pulumi_oci/databasemanagement/get_managed_database_group.py +2 -2
- pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +6 -6
- pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +5 -5
- pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +2 -2
- pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +2 -2
- pulumi_oci/databasemanagement/outputs.py +18049 -4222
- pulumi_oci/datasafe/__init__.py +24 -0
- pulumi_oci/datasafe/_inputs.py +3669 -1537
- pulumi_oci/datasafe/attribute_set.py +693 -0
- pulumi_oci/datasafe/audit_profile.py +356 -95
- pulumi_oci/datasafe/audit_profile_management.py +389 -129
- pulumi_oci/datasafe/audit_trail.py +47 -0
- pulumi_oci/datasafe/audit_trail_management.py +49 -0
- pulumi_oci/datasafe/get_alerts.py +2 -2
- pulumi_oci/datasafe/get_attribute_set.py +295 -0
- pulumi_oci/datasafe/get_attribute_set_associated_resources.py +188 -0
- pulumi_oci/datasafe/get_attribute_sets.py +340 -0
- pulumi_oci/datasafe/get_audit_archive_retrievals.py +20 -1
- pulumi_oci/datasafe/get_audit_events.py +2 -2
- pulumi_oci/datasafe/get_audit_policies.py +20 -1
- pulumi_oci/datasafe/get_audit_profile.py +78 -8
- pulumi_oci/datasafe/get_audit_profile_target_overrides.py +163 -0
- pulumi_oci/datasafe/get_audit_profiles.py +50 -9
- pulumi_oci/datasafe/get_audit_trail.py +15 -1
- pulumi_oci/datasafe/get_audit_trails.py +20 -1
- pulumi_oci/datasafe/get_database_security_configs.py +20 -1
- pulumi_oci/datasafe/get_discovery_analytics.py +39 -1
- pulumi_oci/datasafe/get_masking_analytics.py +42 -1
- pulumi_oci/datasafe/get_onprem_connectors.py +26 -23
- pulumi_oci/datasafe/get_report.py +43 -1
- pulumi_oci/datasafe/get_reports.py +23 -1
- pulumi_oci/datasafe/get_security_assessment.py +116 -2
- pulumi_oci/datasafe/get_security_assessment_checks.py +264 -0
- pulumi_oci/datasafe/get_security_assessment_finding.py +64 -4
- pulumi_oci/datasafe/get_security_assessment_finding_analytics.py +22 -1
- pulumi_oci/datasafe/get_security_assessment_findings.py +75 -8
- pulumi_oci/datasafe/get_security_assessment_template_analytics.py +362 -0
- pulumi_oci/datasafe/get_security_assessment_template_association_analytics.py +298 -0
- pulumi_oci/datasafe/get_security_assessment_template_baseline_comparison.py +347 -0
- pulumi_oci/datasafe/get_security_assessments.py +70 -4
- pulumi_oci/datasafe/get_security_policies.py +23 -1
- pulumi_oci/datasafe/get_security_policy.py +15 -1
- pulumi_oci/datasafe/get_security_policy_config.py +296 -0
- pulumi_oci/datasafe/get_security_policy_configs.py +342 -0
- pulumi_oci/datasafe/get_security_policy_deployment.py +52 -2
- pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_state.py +49 -4
- pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_states.py +47 -6
- pulumi_oci/datasafe/get_security_policy_deployments.py +29 -7
- pulumi_oci/datasafe/get_sensitive_column_analytics.py +20 -1
- pulumi_oci/datasafe/get_sql_collection_analytics.py +20 -1
- pulumi_oci/datasafe/get_sql_collections.py +20 -1
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_violations.py +2 -2
- pulumi_oci/datasafe/get_target_alert_policy_associations.py +0 -34
- pulumi_oci/datasafe/get_target_database_group.py +296 -0
- pulumi_oci/datasafe/get_target_database_group_group_member.py +146 -0
- pulumi_oci/datasafe/get_target_database_groups.py +313 -0
- pulumi_oci/datasafe/get_unified_audit_policies.py +386 -0
- pulumi_oci/datasafe/get_unified_audit_policy.py +338 -0
- pulumi_oci/datasafe/get_unified_audit_policy_definition.py +309 -0
- pulumi_oci/datasafe/get_unified_audit_policy_definitions.py +334 -0
- pulumi_oci/datasafe/get_user_assessment.py +29 -1
- pulumi_oci/datasafe/get_user_assessments.py +45 -1
- pulumi_oci/datasafe/outputs.py +7975 -1013
- pulumi_oci/datasafe/report.py +84 -0
- pulumi_oci/datasafe/report_definition.py +4 -0
- pulumi_oci/datasafe/security_assessment.py +425 -82
- pulumi_oci/datasafe/security_assessment_check.py +456 -0
- pulumi_oci/datasafe/security_assessment_finding.py +818 -0
- pulumi_oci/datasafe/security_policy.py +94 -77
- pulumi_oci/datasafe/security_policy_config.py +698 -0
- pulumi_oci/datasafe/security_policy_deployment.py +272 -67
- pulumi_oci/datasafe/security_policy_deployment_management.py +266 -42
- pulumi_oci/datasafe/security_policy_management.py +87 -30
- pulumi_oci/datasafe/target_alert_policy_association.py +7 -77
- pulumi_oci/datasafe/target_database.py +4 -0
- pulumi_oci/datasafe/target_database_group.py +679 -0
- pulumi_oci/datasafe/target_database_peer_target_database.py +2 -0
- pulumi_oci/datasafe/unified_audit_policy.py +836 -0
- pulumi_oci/datasafe/unified_audit_policy_definition.py +687 -0
- pulumi_oci/datasafe/user_assessment.py +105 -28
- pulumi_oci/datascience/__init__.py +10 -0
- pulumi_oci/datascience/_inputs.py +6760 -2206
- pulumi_oci/datascience/get_job.py +15 -1
- pulumi_oci/datascience/get_job_run.py +44 -2
- pulumi_oci/datascience/get_model_deployment_model_states.py +251 -0
- pulumi_oci/datascience/get_model_group.py +405 -0
- pulumi_oci/datascience/get_model_group_artifact_content.py +132 -0
- pulumi_oci/datascience/get_model_group_models.py +240 -0
- pulumi_oci/datascience/get_model_group_version_histories.py +243 -0
- pulumi_oci/{aianomalydetection/get_detection_model.py → datascience/get_model_group_version_history.py} +73 -74
- pulumi_oci/datascience/get_model_groups.py +265 -0
- pulumi_oci/datascience/get_pipeline_run.py +15 -1
- pulumi_oci/datascience/job.py +81 -154
- pulumi_oci/datascience/job_run.py +250 -4
- pulumi_oci/datascience/model_group.py +1111 -0
- pulumi_oci/datascience/model_group_artifact.py +369 -0
- pulumi_oci/{aianomalydetection/model.py → datascience/model_group_version_history.py} +172 -187
- pulumi_oci/datascience/notebook_session.py +4 -0
- pulumi_oci/datascience/outputs.py +17168 -8021
- pulumi_oci/datascience/pipeline_run.py +87 -0
- pulumi_oci/disasterrecovery/_inputs.py +231 -3
- pulumi_oci/disasterrecovery/dr_protection_group.py +24 -0
- pulumi_oci/disasterrecovery/outputs.py +446 -12
- pulumi_oci/generativeai/_inputs.py +572 -63
- pulumi_oci/generativeai/agent_data_ingestion_job.py +48 -0
- pulumi_oci/generativeai/agent_data_source.py +7 -81
- pulumi_oci/generativeai/agent_knowledge_base.py +35 -25
- pulumi_oci/generativeai/agent_tool.py +172 -0
- pulumi_oci/generativeai/get_agent_data_ingestion_job.py +26 -1
- pulumi_oci/generativeai/get_agent_data_source.py +1 -5
- pulumi_oci/generativeai/get_agent_data_sources.py +0 -4
- pulumi_oci/generativeai/get_agent_knowledge_base.py +16 -6
- pulumi_oci/generativeai/get_agent_knowledge_bases.py +0 -4
- pulumi_oci/generativeai/outputs.py +1128 -106
- pulumi_oci/goldengate/_inputs.py +3 -3
- pulumi_oci/goldengate/connection.py +175 -56
- pulumi_oci/goldengate/deployment.py +94 -0
- pulumi_oci/goldengate/get_connection.py +20 -4
- pulumi_oci/goldengate/get_deployment.py +29 -1
- pulumi_oci/goldengate/get_deployments.py +23 -1
- pulumi_oci/goldengate/outputs.py +62 -10
- pulumi_oci/managementagent/__init__.py +4 -0
- pulumi_oci/managementagent/_inputs.py +129 -0
- pulumi_oci/managementagent/get_management_agent.py +26 -1
- pulumi_oci/managementagent/get_management_agent_install_key.py +43 -1
- pulumi_oci/managementagent/get_management_agent_named_credentials_metadata.py +147 -0
- pulumi_oci/managementagent/get_named_credential.py +268 -0
- pulumi_oci/managementagent/get_named_credentials.py +221 -0
- pulumi_oci/managementagent/management_agent.py +48 -0
- pulumi_oci/managementagent/management_agent_install_key.py +84 -0
- pulumi_oci/managementagent/named_credential.py +706 -0
- pulumi_oci/managementagent/outputs.py +515 -0
- pulumi_oci/managementdashboard/management_dashboards_import.py +178 -20
- pulumi_oci/oci/__init__.py +12 -0
- pulumi_oci/oci/_inputs.py +566 -0
- pulumi_oci/{aianomalydetection/project.py → oci/api_platform_api_platform_instance.py} +204 -118
- pulumi_oci/oci/get_api_platform_api_platform_instance.py +282 -0
- pulumi_oci/oci/get_api_platform_api_platform_instances.py +199 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster.py +380 -0
- pulumi_oci/{aianomalydetection/get_ai_private_endpoint.py → oci/get_managed_kafka_kafka_cluster_config.py} +63 -90
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_version.py +177 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_versions.py +144 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_configs.py +199 -0
- pulumi_oci/oci/get_managed_kafka_kafka_clusters.py +199 -0
- pulumi_oci/oci/managed_kafka_kafka_cluster.py +984 -0
- pulumi_oci/{aianomalydetection/ai_private_endpoint.py → oci/managed_kafka_kafka_cluster_config.py} +138 -232
- pulumi_oci/oci/managed_kafka_kafka_cluster_superusers_management.py +352 -0
- pulumi_oci/oci/outputs.py +1540 -164
- pulumi_oci/opsi/_inputs.py +1001 -149
- pulumi_oci/opsi/database_insight.py +22 -3
- pulumi_oci/opsi/exadata_insight.py +86 -6
- pulumi_oci/opsi/outputs.py +1438 -178
- pulumi_oci/psql/configuration.py +109 -19
- pulumi_oci/psql/db_system.py +7 -7
- pulumi_oci/psql/get_configuration.py +30 -2
- pulumi_oci/psql/get_configurations.py +49 -5
- pulumi_oci/psql/get_db_system.py +1 -1
- pulumi_oci/psql/get_default_configuration.py +30 -4
- pulumi_oci/psql/get_default_configurations.py +49 -5
- pulumi_oci/psql/outputs.py +47 -14
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/__init__.py +6 -0
- pulumi_oci/redis/_inputs.py +217 -0
- pulumi_oci/{aianomalydetection/get_detection_data_asset.py → redis/get_oci_cache_config_set.py} +74 -74
- pulumi_oci/redis/get_oci_cache_config_sets.py +221 -0
- pulumi_oci/redis/get_oci_cache_default_config_set.py +217 -0
- pulumi_oci/redis/get_oci_cache_default_config_sets.py +218 -0
- pulumi_oci/redis/get_redis_cluster.py +15 -1
- pulumi_oci/{aianomalydetection/data_asset.py → redis/oci_cache_config_set.py} +190 -254
- pulumi_oci/redis/oci_cache_config_setlist_associated_oci_cache_cluster.py +240 -0
- pulumi_oci/redis/outputs.py +713 -0
- pulumi_oci/redis/redis_cluster.py +49 -0
- pulumi_oci/vault/_inputs.py +198 -0
- pulumi_oci/vault/get_secret.py +43 -1
- pulumi_oci/vault/outputs.py +434 -0
- pulumi_oci/vault/secret.py +103 -0
- {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0.dist-info}/METADATA +1 -1
- {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0.dist-info}/RECORD +302 -218
- pulumi_oci/aianomalydetection/__init__.py +0 -25
- pulumi_oci/aianomalydetection/_inputs.py +0 -1742
- pulumi_oci/aianomalydetection/detect_anomaly_job.py +0 -739
- pulumi_oci/aianomalydetection/get_ai_private_endpoints.py +0 -199
- pulumi_oci/aianomalydetection/get_detect_anomaly_job.py +0 -338
- pulumi_oci/aianomalydetection/get_detect_anomaly_jobs.py +0 -254
- pulumi_oci/aianomalydetection/get_detection_data_assets.py +0 -213
- pulumi_oci/aianomalydetection/get_detection_models.py +0 -213
- pulumi_oci/aianomalydetection/get_detection_project.py +0 -239
- pulumi_oci/aianomalydetection/get_detection_projects.py +0 -191
- pulumi_oci/aianomalydetection/outputs.py +0 -3699
- {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0.dist-info}/top_level.txt +0 -0
pulumi_oci/database/db_node.py
CHANGED
@@ -87,6 +87,8 @@ class _DbNodeState:
|
|
87
87
|
backup_ipv6id: Optional[pulumi.Input[_builtins.str]] = None,
|
88
88
|
backup_vnic2id: Optional[pulumi.Input[_builtins.str]] = None,
|
89
89
|
backup_vnic_id: Optional[pulumi.Input[_builtins.str]] = None,
|
90
|
+
compute_count: Optional[pulumi.Input[_builtins.int]] = None,
|
91
|
+
compute_model: Optional[pulumi.Input[_builtins.str]] = None,
|
90
92
|
cpu_core_count: Optional[pulumi.Input[_builtins.int]] = None,
|
91
93
|
db_node_id: Optional[pulumi.Input[_builtins.str]] = None,
|
92
94
|
db_node_storage_size_in_gbs: Optional[pulumi.Input[_builtins.int]] = None,
|
@@ -117,6 +119,8 @@ class _DbNodeState:
|
|
117
119
|
:param pulumi.Input[_builtins.str] backup_ipv6id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IPv6 address associated with the database node. Use this OCID with the [GetIpv6](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6) API to get the IPv6 address needed to make a database connection.
|
118
120
|
:param pulumi.Input[_builtins.str] backup_vnic2id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the second backup VNIC.
|
119
121
|
:param pulumi.Input[_builtins.str] backup_vnic_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup VNIC.
|
122
|
+
:param pulumi.Input[_builtins.int] compute_count: The number of compute servers for the DB system.
|
123
|
+
:param pulumi.Input[_builtins.str] compute_model: The compute model for Base Database Service. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. The ECPU compute model is the recommended model, and the OCPU compute model is legacy.
|
120
124
|
:param pulumi.Input[_builtins.int] cpu_core_count: The number of CPU cores enabled on the Db node.
|
121
125
|
:param pulumi.Input[_builtins.str] db_node_id: The database node [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
122
126
|
:param pulumi.Input[_builtins.int] db_node_storage_size_in_gbs: The allocated local node storage in GBs on the Db node.
|
@@ -155,6 +159,10 @@ class _DbNodeState:
|
|
155
159
|
pulumi.set(__self__, "backup_vnic2id", backup_vnic2id)
|
156
160
|
if backup_vnic_id is not None:
|
157
161
|
pulumi.set(__self__, "backup_vnic_id", backup_vnic_id)
|
162
|
+
if compute_count is not None:
|
163
|
+
pulumi.set(__self__, "compute_count", compute_count)
|
164
|
+
if compute_model is not None:
|
165
|
+
pulumi.set(__self__, "compute_model", compute_model)
|
158
166
|
if cpu_core_count is not None:
|
159
167
|
pulumi.set(__self__, "cpu_core_count", cpu_core_count)
|
160
168
|
if db_node_id is not None:
|
@@ -262,6 +270,30 @@ class _DbNodeState:
|
|
262
270
|
def backup_vnic_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
263
271
|
pulumi.set(self, "backup_vnic_id", value)
|
264
272
|
|
273
|
+
@_builtins.property
|
274
|
+
@pulumi.getter(name="computeCount")
|
275
|
+
def compute_count(self) -> Optional[pulumi.Input[_builtins.int]]:
|
276
|
+
"""
|
277
|
+
The number of compute servers for the DB system.
|
278
|
+
"""
|
279
|
+
return pulumi.get(self, "compute_count")
|
280
|
+
|
281
|
+
@compute_count.setter
|
282
|
+
def compute_count(self, value: Optional[pulumi.Input[_builtins.int]]):
|
283
|
+
pulumi.set(self, "compute_count", value)
|
284
|
+
|
285
|
+
@_builtins.property
|
286
|
+
@pulumi.getter(name="computeModel")
|
287
|
+
def compute_model(self) -> Optional[pulumi.Input[_builtins.str]]:
|
288
|
+
"""
|
289
|
+
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.
|
290
|
+
"""
|
291
|
+
return pulumi.get(self, "compute_model")
|
292
|
+
|
293
|
+
@compute_model.setter
|
294
|
+
def compute_model(self, value: Optional[pulumi.Input[_builtins.str]]):
|
295
|
+
pulumi.set(self, "compute_model", value)
|
296
|
+
|
265
297
|
@_builtins.property
|
266
298
|
@pulumi.getter(name="cpuCoreCount")
|
267
299
|
def cpu_core_count(self) -> Optional[pulumi.Input[_builtins.int]]:
|
@@ -632,6 +664,8 @@ class DbNode(pulumi.CustomResource):
|
|
632
664
|
__props__.__dict__["backup_ipv6id"] = None
|
633
665
|
__props__.__dict__["backup_vnic2id"] = None
|
634
666
|
__props__.__dict__["backup_vnic_id"] = None
|
667
|
+
__props__.__dict__["compute_count"] = None
|
668
|
+
__props__.__dict__["compute_model"] = None
|
635
669
|
__props__.__dict__["cpu_core_count"] = None
|
636
670
|
__props__.__dict__["db_node_storage_size_in_gbs"] = None
|
637
671
|
__props__.__dict__["db_server_id"] = None
|
@@ -667,6 +701,8 @@ class DbNode(pulumi.CustomResource):
|
|
667
701
|
backup_ipv6id: Optional[pulumi.Input[_builtins.str]] = None,
|
668
702
|
backup_vnic2id: Optional[pulumi.Input[_builtins.str]] = None,
|
669
703
|
backup_vnic_id: Optional[pulumi.Input[_builtins.str]] = None,
|
704
|
+
compute_count: Optional[pulumi.Input[_builtins.int]] = None,
|
705
|
+
compute_model: Optional[pulumi.Input[_builtins.str]] = None,
|
670
706
|
cpu_core_count: Optional[pulumi.Input[_builtins.int]] = None,
|
671
707
|
db_node_id: Optional[pulumi.Input[_builtins.str]] = None,
|
672
708
|
db_node_storage_size_in_gbs: Optional[pulumi.Input[_builtins.int]] = None,
|
@@ -702,6 +738,8 @@ class DbNode(pulumi.CustomResource):
|
|
702
738
|
:param pulumi.Input[_builtins.str] backup_ipv6id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IPv6 address associated with the database node. Use this OCID with the [GetIpv6](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6) API to get the IPv6 address needed to make a database connection.
|
703
739
|
:param pulumi.Input[_builtins.str] backup_vnic2id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the second backup VNIC.
|
704
740
|
:param pulumi.Input[_builtins.str] backup_vnic_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup VNIC.
|
741
|
+
:param pulumi.Input[_builtins.int] compute_count: The number of compute servers for the DB system.
|
742
|
+
:param pulumi.Input[_builtins.str] compute_model: The compute model for Base Database Service. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. The ECPU compute model is the recommended model, and the OCPU compute model is legacy.
|
705
743
|
:param pulumi.Input[_builtins.int] cpu_core_count: The number of CPU cores enabled on the Db node.
|
706
744
|
:param pulumi.Input[_builtins.str] db_node_id: The database node [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
707
745
|
:param pulumi.Input[_builtins.int] db_node_storage_size_in_gbs: The allocated local node storage in GBs on the Db node.
|
@@ -739,6 +777,8 @@ class DbNode(pulumi.CustomResource):
|
|
739
777
|
__props__.__dict__["backup_ipv6id"] = backup_ipv6id
|
740
778
|
__props__.__dict__["backup_vnic2id"] = backup_vnic2id
|
741
779
|
__props__.__dict__["backup_vnic_id"] = backup_vnic_id
|
780
|
+
__props__.__dict__["compute_count"] = compute_count
|
781
|
+
__props__.__dict__["compute_model"] = compute_model
|
742
782
|
__props__.__dict__["cpu_core_count"] = cpu_core_count
|
743
783
|
__props__.__dict__["db_node_id"] = db_node_id
|
744
784
|
__props__.__dict__["db_node_storage_size_in_gbs"] = db_node_storage_size_in_gbs
|
@@ -804,6 +844,22 @@ class DbNode(pulumi.CustomResource):
|
|
804
844
|
"""
|
805
845
|
return pulumi.get(self, "backup_vnic_id")
|
806
846
|
|
847
|
+
@_builtins.property
|
848
|
+
@pulumi.getter(name="computeCount")
|
849
|
+
def compute_count(self) -> pulumi.Output[_builtins.int]:
|
850
|
+
"""
|
851
|
+
The number of compute servers for the DB system.
|
852
|
+
"""
|
853
|
+
return pulumi.get(self, "compute_count")
|
854
|
+
|
855
|
+
@_builtins.property
|
856
|
+
@pulumi.getter(name="computeModel")
|
857
|
+
def compute_model(self) -> pulumi.Output[_builtins.str]:
|
858
|
+
"""
|
859
|
+
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.
|
860
|
+
"""
|
861
|
+
return pulumi.get(self, "compute_model")
|
862
|
+
|
807
863
|
@_builtins.property
|
808
864
|
@pulumi.getter(name="cpuCoreCount")
|
809
865
|
def cpu_core_count(self) -> pulumi.Output[_builtins.int]:
|
pulumi_oci/database/db_system.py
CHANGED
@@ -31,6 +31,8 @@ class DbSystemArgs:
|
|
31
31
|
backup_network_nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
32
32
|
backup_subnet_id: Optional[pulumi.Input[_builtins.str]] = None,
|
33
33
|
cluster_name: Optional[pulumi.Input[_builtins.str]] = None,
|
34
|
+
compute_count: Optional[pulumi.Input[_builtins.int]] = None,
|
35
|
+
compute_model: Optional[pulumi.Input[_builtins.str]] = None,
|
34
36
|
cpu_core_count: Optional[pulumi.Input[_builtins.int]] = None,
|
35
37
|
data_collection_options: Optional[pulumi.Input['DbSystemDataCollectionOptionsArgs']] = None,
|
36
38
|
data_storage_percentage: Optional[pulumi.Input[_builtins.int]] = None,
|
@@ -88,6 +90,8 @@ class DbSystemArgs:
|
|
88
90
|
|
89
91
|
**Subnet Restrictions:** See the subnet restrictions information for **subnetId**.
|
90
92
|
:param pulumi.Input[_builtins.str] cluster_name: The cluster name for Exadata and 2-node RAC virtual machine DB systems. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
|
93
|
+
:param pulumi.Input[_builtins.int] compute_count: (Updatable) The number of compute servers for the DB system.
|
94
|
+
:param pulumi.Input[_builtins.str] compute_model: (Updatable) 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.
|
91
95
|
:param pulumi.Input[_builtins.int] cpu_core_count: (Updatable) The number of CPU cores to enable for a bare metal or Exadata DB system or AMD VMDB Systems. The valid values depend on the specified shape:
|
92
96
|
* BM.DenseIO1.36 - Specify a multiple of 2, from 2 to 36.
|
93
97
|
* BM.DenseIO2.52 - Specify a multiple of 2, from 2 to 52.
|
@@ -103,7 +107,7 @@ class DbSystemArgs:
|
|
103
107
|
This parameter is not used for INTEL virtual machine DB systems because virtual machine DB systems have a set number of cores for each shape. For information about the number of cores for a virtual machine DB system shape, see [Virtual Machine DB Systems](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/overview.htm#virtualmachine)
|
104
108
|
:param pulumi.Input['DbSystemDataCollectionOptionsArgs'] data_collection_options: (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
|
105
109
|
:param pulumi.Input[_builtins.int] data_storage_percentage: The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Specify 80 or 40. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems. Required for BMDBs.
|
106
|
-
:param pulumi.Input[_builtins.int] data_storage_size_in_gb: (Updatable) Size (in GB) of the initial data volume that will be created and attached to a virtual machine DB system. You can scale up storage after provisioning, as needed. Note that the total storage size attached will be more than the amount you specify to allow for REDO/RECO space and software volume. Required for VMDBs.
|
110
|
+
:param pulumi.Input[_builtins.int] data_storage_size_in_gb: (Updatable) Size (in GB) of the initial data volume that will be created and attached to a virtual machine DB system. You can scale up storage after provisioning, as needed. Note that the total storage size attached will be more than the amount you specify to allow for REDO/RECO space and software volume. By default this will be set to 256. Required for VMDBs.
|
107
111
|
:param pulumi.Input[_builtins.str] database_edition: The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
|
108
112
|
:param pulumi.Input['DbSystemDbSystemOptionsArgs'] db_system_options: The DB system options.
|
109
113
|
: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).
|
@@ -124,7 +128,7 @@ class DbSystemArgs:
|
|
124
128
|
:param pulumi.Input[_builtins.str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
|
125
129
|
:param pulumi.Input[_builtins.str] license_model: (Updatable) The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
|
126
130
|
:param pulumi.Input['DbSystemMaintenanceWindowDetailsArgs'] maintenance_window_details: (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
|
127
|
-
:param pulumi.Input[_builtins.int] node_count: The number of nodes to launch for a
|
131
|
+
:param pulumi.Input[_builtins.int] node_count: The number of nodes to launch for a virtual machine DB system. Specify either 1 or 2. By default this will be set to 1.
|
128
132
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] nsg_ids: (Updatable) The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). **NsgIds restrictions:**
|
129
133
|
* A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
|
130
134
|
:param pulumi.Input[_builtins.str] private_ip: A private IP address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. Supported for VM BM shape.
|
@@ -154,6 +158,10 @@ class DbSystemArgs:
|
|
154
158
|
pulumi.set(__self__, "backup_subnet_id", backup_subnet_id)
|
155
159
|
if cluster_name is not None:
|
156
160
|
pulumi.set(__self__, "cluster_name", cluster_name)
|
161
|
+
if compute_count is not None:
|
162
|
+
pulumi.set(__self__, "compute_count", compute_count)
|
163
|
+
if compute_model is not None:
|
164
|
+
pulumi.set(__self__, "compute_model", compute_model)
|
157
165
|
if cpu_core_count is not None:
|
158
166
|
pulumi.set(__self__, "cpu_core_count", cpu_core_count)
|
159
167
|
if data_collection_options is not None:
|
@@ -347,6 +355,30 @@ class DbSystemArgs:
|
|
347
355
|
def cluster_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
348
356
|
pulumi.set(self, "cluster_name", value)
|
349
357
|
|
358
|
+
@_builtins.property
|
359
|
+
@pulumi.getter(name="computeCount")
|
360
|
+
def compute_count(self) -> Optional[pulumi.Input[_builtins.int]]:
|
361
|
+
"""
|
362
|
+
(Updatable) The number of compute servers for the DB system.
|
363
|
+
"""
|
364
|
+
return pulumi.get(self, "compute_count")
|
365
|
+
|
366
|
+
@compute_count.setter
|
367
|
+
def compute_count(self, value: Optional[pulumi.Input[_builtins.int]]):
|
368
|
+
pulumi.set(self, "compute_count", value)
|
369
|
+
|
370
|
+
@_builtins.property
|
371
|
+
@pulumi.getter(name="computeModel")
|
372
|
+
def compute_model(self) -> Optional[pulumi.Input[_builtins.str]]:
|
373
|
+
"""
|
374
|
+
(Updatable) 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.
|
375
|
+
"""
|
376
|
+
return pulumi.get(self, "compute_model")
|
377
|
+
|
378
|
+
@compute_model.setter
|
379
|
+
def compute_model(self, value: Optional[pulumi.Input[_builtins.str]]):
|
380
|
+
pulumi.set(self, "compute_model", value)
|
381
|
+
|
350
382
|
@_builtins.property
|
351
383
|
@pulumi.getter(name="cpuCoreCount")
|
352
384
|
def cpu_core_count(self) -> Optional[pulumi.Input[_builtins.int]]:
|
@@ -399,7 +431,7 @@ class DbSystemArgs:
|
|
399
431
|
@pulumi.getter(name="dataStorageSizeInGb")
|
400
432
|
def data_storage_size_in_gb(self) -> Optional[pulumi.Input[_builtins.int]]:
|
401
433
|
"""
|
402
|
-
(Updatable) Size (in GB) of the initial data volume that will be created and attached to a virtual machine DB system. You can scale up storage after provisioning, as needed. Note that the total storage size attached will be more than the amount you specify to allow for REDO/RECO space and software volume. Required for VMDBs.
|
434
|
+
(Updatable) Size (in GB) of the initial data volume that will be created and attached to a virtual machine DB system. You can scale up storage after provisioning, as needed. Note that the total storage size attached will be more than the amount you specify to allow for REDO/RECO space and software volume. By default this will be set to 256. Required for VMDBs.
|
403
435
|
"""
|
404
436
|
return pulumi.get(self, "data_storage_size_in_gb")
|
405
437
|
|
@@ -563,7 +595,7 @@ class DbSystemArgs:
|
|
563
595
|
@pulumi.getter(name="nodeCount")
|
564
596
|
def node_count(self) -> Optional[pulumi.Input[_builtins.int]]:
|
565
597
|
"""
|
566
|
-
The number of nodes to launch for a
|
598
|
+
The number of nodes to launch for a virtual machine DB system. Specify either 1 or 2. By default this will be set to 1.
|
567
599
|
"""
|
568
600
|
return pulumi.get(self, "node_count")
|
569
601
|
|
@@ -705,6 +737,8 @@ class _DbSystemState:
|
|
705
737
|
backup_subnet_id: Optional[pulumi.Input[_builtins.str]] = None,
|
706
738
|
cluster_name: Optional[pulumi.Input[_builtins.str]] = None,
|
707
739
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
740
|
+
compute_count: Optional[pulumi.Input[_builtins.int]] = None,
|
741
|
+
compute_model: Optional[pulumi.Input[_builtins.str]] = None,
|
708
742
|
cpu_core_count: Optional[pulumi.Input[_builtins.int]] = None,
|
709
743
|
data_collection_options: Optional[pulumi.Input['DbSystemDataCollectionOptionsArgs']] = None,
|
710
744
|
data_storage_percentage: Optional[pulumi.Input[_builtins.int]] = None,
|
@@ -767,6 +801,8 @@ class _DbSystemState:
|
|
767
801
|
**Subnet Restrictions:** See the subnet restrictions information for **subnetId**.
|
768
802
|
:param pulumi.Input[_builtins.str] cluster_name: The cluster name for Exadata and 2-node RAC virtual machine DB systems. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
|
769
803
|
:param pulumi.Input[_builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment the DB system belongs in.
|
804
|
+
:param pulumi.Input[_builtins.int] compute_count: (Updatable) The number of compute servers for the DB system.
|
805
|
+
:param pulumi.Input[_builtins.str] compute_model: (Updatable) 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.
|
770
806
|
:param pulumi.Input[_builtins.int] cpu_core_count: (Updatable) The number of CPU cores to enable for a bare metal or Exadata DB system or AMD VMDB Systems. The valid values depend on the specified shape:
|
771
807
|
* BM.DenseIO1.36 - Specify a multiple of 2, from 2 to 36.
|
772
808
|
* BM.DenseIO2.52 - Specify a multiple of 2, from 2 to 52.
|
@@ -782,7 +818,7 @@ class _DbSystemState:
|
|
782
818
|
This parameter is not used for INTEL virtual machine DB systems because virtual machine DB systems have a set number of cores for each shape. For information about the number of cores for a virtual machine DB system shape, see [Virtual Machine DB Systems](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/overview.htm#virtualmachine)
|
783
819
|
:param pulumi.Input['DbSystemDataCollectionOptionsArgs'] data_collection_options: (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
|
784
820
|
:param pulumi.Input[_builtins.int] data_storage_percentage: The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Specify 80 or 40. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems. Required for BMDBs.
|
785
|
-
:param pulumi.Input[_builtins.int] data_storage_size_in_gb: (Updatable) Size (in GB) of the initial data volume that will be created and attached to a virtual machine DB system. You can scale up storage after provisioning, as needed. Note that the total storage size attached will be more than the amount you specify to allow for REDO/RECO space and software volume. Required for VMDBs.
|
821
|
+
:param pulumi.Input[_builtins.int] data_storage_size_in_gb: (Updatable) Size (in GB) of the initial data volume that will be created and attached to a virtual machine DB system. You can scale up storage after provisioning, as needed. Note that the total storage size attached will be more than the amount you specify to allow for REDO/RECO space and software volume. By default this will be set to 256. Required for VMDBs.
|
786
822
|
:param pulumi.Input[_builtins.str] database_edition: The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
|
787
823
|
:param pulumi.Input['DbSystemDbHomeArgs'] db_home: (Updatable) Details for creating a Database Home if you are creating a database by restoring from a database backup.
|
788
824
|
|
@@ -819,7 +855,7 @@ class _DbSystemState:
|
|
819
855
|
:param pulumi.Input[Sequence[pulumi.Input['DbSystemMaintenanceWindowArgs']]] maintenance_windows: The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
|
820
856
|
:param pulumi.Input[_builtins.int] memory_size_in_gbs: Memory allocated to the DB system, in gigabytes.
|
821
857
|
:param pulumi.Input[_builtins.str] next_maintenance_run_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the next maintenance run.
|
822
|
-
:param pulumi.Input[_builtins.int] node_count: The number of nodes to launch for a
|
858
|
+
:param pulumi.Input[_builtins.int] node_count: The number of nodes to launch for a virtual machine DB system. Specify either 1 or 2. By default this will be set to 1.
|
823
859
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] nsg_ids: (Updatable) The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). **NsgIds restrictions:**
|
824
860
|
* A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
|
825
861
|
:param pulumi.Input[_builtins.str] os_version: The most recent OS Patch Version applied on the DB system.
|
@@ -872,6 +908,10 @@ class _DbSystemState:
|
|
872
908
|
pulumi.set(__self__, "cluster_name", cluster_name)
|
873
909
|
if compartment_id is not None:
|
874
910
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
911
|
+
if compute_count is not None:
|
912
|
+
pulumi.set(__self__, "compute_count", compute_count)
|
913
|
+
if compute_model is not None:
|
914
|
+
pulumi.set(__self__, "compute_model", compute_model)
|
875
915
|
if cpu_core_count is not None:
|
876
916
|
pulumi.set(__self__, "cpu_core_count", cpu_core_count)
|
877
917
|
if data_collection_options is not None:
|
@@ -1041,6 +1081,30 @@ class _DbSystemState:
|
|
1041
1081
|
def compartment_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
1042
1082
|
pulumi.set(self, "compartment_id", value)
|
1043
1083
|
|
1084
|
+
@_builtins.property
|
1085
|
+
@pulumi.getter(name="computeCount")
|
1086
|
+
def compute_count(self) -> Optional[pulumi.Input[_builtins.int]]:
|
1087
|
+
"""
|
1088
|
+
(Updatable) The number of compute servers for the DB system.
|
1089
|
+
"""
|
1090
|
+
return pulumi.get(self, "compute_count")
|
1091
|
+
|
1092
|
+
@compute_count.setter
|
1093
|
+
def compute_count(self, value: Optional[pulumi.Input[_builtins.int]]):
|
1094
|
+
pulumi.set(self, "compute_count", value)
|
1095
|
+
|
1096
|
+
@_builtins.property
|
1097
|
+
@pulumi.getter(name="computeModel")
|
1098
|
+
def compute_model(self) -> Optional[pulumi.Input[_builtins.str]]:
|
1099
|
+
"""
|
1100
|
+
(Updatable) 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.
|
1101
|
+
"""
|
1102
|
+
return pulumi.get(self, "compute_model")
|
1103
|
+
|
1104
|
+
@compute_model.setter
|
1105
|
+
def compute_model(self, value: Optional[pulumi.Input[_builtins.str]]):
|
1106
|
+
pulumi.set(self, "compute_model", value)
|
1107
|
+
|
1044
1108
|
@_builtins.property
|
1045
1109
|
@pulumi.getter(name="cpuCoreCount")
|
1046
1110
|
def cpu_core_count(self) -> Optional[pulumi.Input[_builtins.int]]:
|
@@ -1093,7 +1157,7 @@ class _DbSystemState:
|
|
1093
1157
|
@pulumi.getter(name="dataStorageSizeInGb")
|
1094
1158
|
def data_storage_size_in_gb(self) -> Optional[pulumi.Input[_builtins.int]]:
|
1095
1159
|
"""
|
1096
|
-
(Updatable) Size (in GB) of the initial data volume that will be created and attached to a virtual machine DB system. You can scale up storage after provisioning, as needed. Note that the total storage size attached will be more than the amount you specify to allow for REDO/RECO space and software volume. Required for VMDBs.
|
1160
|
+
(Updatable) Size (in GB) of the initial data volume that will be created and attached to a virtual machine DB system. You can scale up storage after provisioning, as needed. Note that the total storage size attached will be more than the amount you specify to allow for REDO/RECO space and software volume. By default this will be set to 256. Required for VMDBs.
|
1097
1161
|
"""
|
1098
1162
|
return pulumi.get(self, "data_storage_size_in_gb")
|
1099
1163
|
|
@@ -1383,7 +1447,7 @@ class _DbSystemState:
|
|
1383
1447
|
@pulumi.getter(name="nodeCount")
|
1384
1448
|
def node_count(self) -> Optional[pulumi.Input[_builtins.int]]:
|
1385
1449
|
"""
|
1386
|
-
The number of nodes to launch for a
|
1450
|
+
The number of nodes to launch for a virtual machine DB system. Specify either 1 or 2. By default this will be set to 1.
|
1387
1451
|
"""
|
1388
1452
|
return pulumi.get(self, "node_count")
|
1389
1453
|
|
@@ -1730,6 +1794,8 @@ class DbSystem(pulumi.CustomResource):
|
|
1730
1794
|
backup_subnet_id: Optional[pulumi.Input[_builtins.str]] = None,
|
1731
1795
|
cluster_name: Optional[pulumi.Input[_builtins.str]] = None,
|
1732
1796
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
1797
|
+
compute_count: Optional[pulumi.Input[_builtins.int]] = None,
|
1798
|
+
compute_model: Optional[pulumi.Input[_builtins.str]] = None,
|
1733
1799
|
cpu_core_count: Optional[pulumi.Input[_builtins.int]] = None,
|
1734
1800
|
data_collection_options: Optional[pulumi.Input[Union['DbSystemDataCollectionOptionsArgs', 'DbSystemDataCollectionOptionsArgsDict']]] = None,
|
1735
1801
|
data_storage_percentage: Optional[pulumi.Input[_builtins.int]] = None,
|
@@ -1825,6 +1891,8 @@ class DbSystem(pulumi.CustomResource):
|
|
1825
1891
|
**Subnet Restrictions:** See the subnet restrictions information for **subnetId**.
|
1826
1892
|
:param pulumi.Input[_builtins.str] cluster_name: The cluster name for Exadata and 2-node RAC virtual machine DB systems. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
|
1827
1893
|
:param pulumi.Input[_builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment the DB system belongs in.
|
1894
|
+
:param pulumi.Input[_builtins.int] compute_count: (Updatable) The number of compute servers for the DB system.
|
1895
|
+
:param pulumi.Input[_builtins.str] compute_model: (Updatable) 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.
|
1828
1896
|
:param pulumi.Input[_builtins.int] cpu_core_count: (Updatable) The number of CPU cores to enable for a bare metal or Exadata DB system or AMD VMDB Systems. The valid values depend on the specified shape:
|
1829
1897
|
* BM.DenseIO1.36 - Specify a multiple of 2, from 2 to 36.
|
1830
1898
|
* BM.DenseIO2.52 - Specify a multiple of 2, from 2 to 52.
|
@@ -1840,7 +1908,7 @@ class DbSystem(pulumi.CustomResource):
|
|
1840
1908
|
This parameter is not used for INTEL virtual machine DB systems because virtual machine DB systems have a set number of cores for each shape. For information about the number of cores for a virtual machine DB system shape, see [Virtual Machine DB Systems](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/overview.htm#virtualmachine)
|
1841
1909
|
:param pulumi.Input[Union['DbSystemDataCollectionOptionsArgs', 'DbSystemDataCollectionOptionsArgsDict']] data_collection_options: (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
|
1842
1910
|
:param pulumi.Input[_builtins.int] data_storage_percentage: The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Specify 80 or 40. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems. Required for BMDBs.
|
1843
|
-
:param pulumi.Input[_builtins.int] data_storage_size_in_gb: (Updatable) Size (in GB) of the initial data volume that will be created and attached to a virtual machine DB system. You can scale up storage after provisioning, as needed. Note that the total storage size attached will be more than the amount you specify to allow for REDO/RECO space and software volume. Required for VMDBs.
|
1911
|
+
:param pulumi.Input[_builtins.int] data_storage_size_in_gb: (Updatable) Size (in GB) of the initial data volume that will be created and attached to a virtual machine DB system. You can scale up storage after provisioning, as needed. Note that the total storage size attached will be more than the amount you specify to allow for REDO/RECO space and software volume. By default this will be set to 256. Required for VMDBs.
|
1844
1912
|
:param pulumi.Input[_builtins.str] database_edition: The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
|
1845
1913
|
:param pulumi.Input[Union['DbSystemDbHomeArgs', 'DbSystemDbHomeArgsDict']] db_home: (Updatable) Details for creating a Database Home if you are creating a database by restoring from a database backup.
|
1846
1914
|
|
@@ -1869,7 +1937,7 @@ class DbSystem(pulumi.CustomResource):
|
|
1869
1937
|
:param pulumi.Input[_builtins.str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
|
1870
1938
|
:param pulumi.Input[_builtins.str] license_model: (Updatable) The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
|
1871
1939
|
:param pulumi.Input[Union['DbSystemMaintenanceWindowDetailsArgs', 'DbSystemMaintenanceWindowDetailsArgsDict']] maintenance_window_details: (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
|
1872
|
-
:param pulumi.Input[_builtins.int] node_count: The number of nodes to launch for a
|
1940
|
+
:param pulumi.Input[_builtins.int] node_count: The number of nodes to launch for a virtual machine DB system. Specify either 1 or 2. By default this will be set to 1.
|
1873
1941
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] nsg_ids: (Updatable) The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). **NsgIds restrictions:**
|
1874
1942
|
* A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
|
1875
1943
|
:param pulumi.Input[_builtins.str] private_ip: A private IP address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. Supported for VM BM shape.
|
@@ -1978,6 +2046,8 @@ class DbSystem(pulumi.CustomResource):
|
|
1978
2046
|
backup_subnet_id: Optional[pulumi.Input[_builtins.str]] = None,
|
1979
2047
|
cluster_name: Optional[pulumi.Input[_builtins.str]] = None,
|
1980
2048
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
2049
|
+
compute_count: Optional[pulumi.Input[_builtins.int]] = None,
|
2050
|
+
compute_model: Optional[pulumi.Input[_builtins.str]] = None,
|
1981
2051
|
cpu_core_count: Optional[pulumi.Input[_builtins.int]] = None,
|
1982
2052
|
data_collection_options: Optional[pulumi.Input[Union['DbSystemDataCollectionOptionsArgs', 'DbSystemDataCollectionOptionsArgsDict']]] = None,
|
1983
2053
|
data_storage_percentage: Optional[pulumi.Input[_builtins.int]] = None,
|
@@ -2028,6 +2098,8 @@ class DbSystem(pulumi.CustomResource):
|
|
2028
2098
|
if compartment_id is None and not opts.urn:
|
2029
2099
|
raise TypeError("Missing required property 'compartment_id'")
|
2030
2100
|
__props__.__dict__["compartment_id"] = compartment_id
|
2101
|
+
__props__.__dict__["compute_count"] = compute_count
|
2102
|
+
__props__.__dict__["compute_model"] = compute_model
|
2031
2103
|
__props__.__dict__["cpu_core_count"] = cpu_core_count
|
2032
2104
|
__props__.__dict__["data_collection_options"] = data_collection_options
|
2033
2105
|
__props__.__dict__["data_storage_percentage"] = data_storage_percentage
|
@@ -2106,6 +2178,8 @@ class DbSystem(pulumi.CustomResource):
|
|
2106
2178
|
backup_subnet_id: Optional[pulumi.Input[_builtins.str]] = None,
|
2107
2179
|
cluster_name: Optional[pulumi.Input[_builtins.str]] = None,
|
2108
2180
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
2181
|
+
compute_count: Optional[pulumi.Input[_builtins.int]] = None,
|
2182
|
+
compute_model: Optional[pulumi.Input[_builtins.str]] = None,
|
2109
2183
|
cpu_core_count: Optional[pulumi.Input[_builtins.int]] = None,
|
2110
2184
|
data_collection_options: Optional[pulumi.Input[Union['DbSystemDataCollectionOptionsArgs', 'DbSystemDataCollectionOptionsArgsDict']]] = None,
|
2111
2185
|
data_storage_percentage: Optional[pulumi.Input[_builtins.int]] = None,
|
@@ -2173,6 +2247,8 @@ class DbSystem(pulumi.CustomResource):
|
|
2173
2247
|
**Subnet Restrictions:** See the subnet restrictions information for **subnetId**.
|
2174
2248
|
:param pulumi.Input[_builtins.str] cluster_name: The cluster name for Exadata and 2-node RAC virtual machine DB systems. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
|
2175
2249
|
:param pulumi.Input[_builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment the DB system belongs in.
|
2250
|
+
:param pulumi.Input[_builtins.int] compute_count: (Updatable) The number of compute servers for the DB system.
|
2251
|
+
:param pulumi.Input[_builtins.str] compute_model: (Updatable) 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.
|
2176
2252
|
:param pulumi.Input[_builtins.int] cpu_core_count: (Updatable) The number of CPU cores to enable for a bare metal or Exadata DB system or AMD VMDB Systems. The valid values depend on the specified shape:
|
2177
2253
|
* BM.DenseIO1.36 - Specify a multiple of 2, from 2 to 36.
|
2178
2254
|
* BM.DenseIO2.52 - Specify a multiple of 2, from 2 to 52.
|
@@ -2188,7 +2264,7 @@ class DbSystem(pulumi.CustomResource):
|
|
2188
2264
|
This parameter is not used for INTEL virtual machine DB systems because virtual machine DB systems have a set number of cores for each shape. For information about the number of cores for a virtual machine DB system shape, see [Virtual Machine DB Systems](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/overview.htm#virtualmachine)
|
2189
2265
|
:param pulumi.Input[Union['DbSystemDataCollectionOptionsArgs', 'DbSystemDataCollectionOptionsArgsDict']] data_collection_options: (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
|
2190
2266
|
:param pulumi.Input[_builtins.int] data_storage_percentage: The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Specify 80 or 40. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems. Required for BMDBs.
|
2191
|
-
:param pulumi.Input[_builtins.int] data_storage_size_in_gb: (Updatable) Size (in GB) of the initial data volume that will be created and attached to a virtual machine DB system. You can scale up storage after provisioning, as needed. Note that the total storage size attached will be more than the amount you specify to allow for REDO/RECO space and software volume. Required for VMDBs.
|
2267
|
+
:param pulumi.Input[_builtins.int] data_storage_size_in_gb: (Updatable) Size (in GB) of the initial data volume that will be created and attached to a virtual machine DB system. You can scale up storage after provisioning, as needed. Note that the total storage size attached will be more than the amount you specify to allow for REDO/RECO space and software volume. By default this will be set to 256. Required for VMDBs.
|
2192
2268
|
:param pulumi.Input[_builtins.str] database_edition: The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
|
2193
2269
|
:param pulumi.Input[Union['DbSystemDbHomeArgs', 'DbSystemDbHomeArgsDict']] db_home: (Updatable) Details for creating a Database Home if you are creating a database by restoring from a database backup.
|
2194
2270
|
|
@@ -2225,7 +2301,7 @@ class DbSystem(pulumi.CustomResource):
|
|
2225
2301
|
:param pulumi.Input[Sequence[pulumi.Input[Union['DbSystemMaintenanceWindowArgs', 'DbSystemMaintenanceWindowArgsDict']]]] maintenance_windows: The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
|
2226
2302
|
:param pulumi.Input[_builtins.int] memory_size_in_gbs: Memory allocated to the DB system, in gigabytes.
|
2227
2303
|
:param pulumi.Input[_builtins.str] next_maintenance_run_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the next maintenance run.
|
2228
|
-
:param pulumi.Input[_builtins.int] node_count: The number of nodes to launch for a
|
2304
|
+
:param pulumi.Input[_builtins.int] node_count: The number of nodes to launch for a virtual machine DB system. Specify either 1 or 2. By default this will be set to 1.
|
2229
2305
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] nsg_ids: (Updatable) The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). **NsgIds restrictions:**
|
2230
2306
|
* A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
|
2231
2307
|
:param pulumi.Input[_builtins.str] os_version: The most recent OS Patch Version applied on the DB system.
|
@@ -2277,6 +2353,8 @@ class DbSystem(pulumi.CustomResource):
|
|
2277
2353
|
__props__.__dict__["backup_subnet_id"] = backup_subnet_id
|
2278
2354
|
__props__.__dict__["cluster_name"] = cluster_name
|
2279
2355
|
__props__.__dict__["compartment_id"] = compartment_id
|
2356
|
+
__props__.__dict__["compute_count"] = compute_count
|
2357
|
+
__props__.__dict__["compute_model"] = compute_model
|
2280
2358
|
__props__.__dict__["cpu_core_count"] = cpu_core_count
|
2281
2359
|
__props__.__dict__["data_collection_options"] = data_collection_options
|
2282
2360
|
__props__.__dict__["data_storage_percentage"] = data_storage_percentage
|
@@ -2374,6 +2452,22 @@ class DbSystem(pulumi.CustomResource):
|
|
2374
2452
|
"""
|
2375
2453
|
return pulumi.get(self, "compartment_id")
|
2376
2454
|
|
2455
|
+
@_builtins.property
|
2456
|
+
@pulumi.getter(name="computeCount")
|
2457
|
+
def compute_count(self) -> pulumi.Output[_builtins.int]:
|
2458
|
+
"""
|
2459
|
+
(Updatable) The number of compute servers for the DB system.
|
2460
|
+
"""
|
2461
|
+
return pulumi.get(self, "compute_count")
|
2462
|
+
|
2463
|
+
@_builtins.property
|
2464
|
+
@pulumi.getter(name="computeModel")
|
2465
|
+
def compute_model(self) -> pulumi.Output[_builtins.str]:
|
2466
|
+
"""
|
2467
|
+
(Updatable) 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.
|
2468
|
+
"""
|
2469
|
+
return pulumi.get(self, "compute_model")
|
2470
|
+
|
2377
2471
|
@_builtins.property
|
2378
2472
|
@pulumi.getter(name="cpuCoreCount")
|
2379
2473
|
def cpu_core_count(self) -> pulumi.Output[_builtins.int]:
|
@@ -2414,7 +2508,7 @@ class DbSystem(pulumi.CustomResource):
|
|
2414
2508
|
@pulumi.getter(name="dataStorageSizeInGb")
|
2415
2509
|
def data_storage_size_in_gb(self) -> pulumi.Output[_builtins.int]:
|
2416
2510
|
"""
|
2417
|
-
(Updatable) Size (in GB) of the initial data volume that will be created and attached to a virtual machine DB system. You can scale up storage after provisioning, as needed. Note that the total storage size attached will be more than the amount you specify to allow for REDO/RECO space and software volume. Required for VMDBs.
|
2511
|
+
(Updatable) Size (in GB) of the initial data volume that will be created and attached to a virtual machine DB system. You can scale up storage after provisioning, as needed. Note that the total storage size attached will be more than the amount you specify to allow for REDO/RECO space and software volume. By default this will be set to 256. Required for VMDBs.
|
2418
2512
|
"""
|
2419
2513
|
return pulumi.get(self, "data_storage_size_in_gb")
|
2420
2514
|
|
@@ -2612,7 +2706,7 @@ class DbSystem(pulumi.CustomResource):
|
|
2612
2706
|
@pulumi.getter(name="nodeCount")
|
2613
2707
|
def node_count(self) -> pulumi.Output[_builtins.int]:
|
2614
2708
|
"""
|
2615
|
-
The number of nodes to launch for a
|
2709
|
+
The number of nodes to launch for a virtual machine DB system. Specify either 1 or 2. By default this will be set to 1.
|
2616
2710
|
"""
|
2617
2711
|
return pulumi.get(self, "node_count")
|
2618
2712
|
|