pulumi-oci 3.5.0a1756363728__py3-none-any.whl → 3.6.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.
Files changed (194) hide show
  1. pulumi_oci/__init__.py +128 -0
  2. pulumi_oci/aivision/__init__.py +12 -0
  3. pulumi_oci/aivision/_inputs.py +787 -51
  4. pulumi_oci/aivision/get_model.py +4 -4
  5. pulumi_oci/aivision/get_models.py +11 -11
  6. pulumi_oci/aivision/get_project.py +15 -15
  7. pulumi_oci/aivision/get_projects.py +10 -10
  8. pulumi_oci/aivision/get_stream_group.py +268 -0
  9. pulumi_oci/aivision/get_stream_groups.py +177 -0
  10. pulumi_oci/aivision/get_stream_job.py +296 -0
  11. pulumi_oci/aivision/get_stream_jobs.py +199 -0
  12. pulumi_oci/aivision/get_stream_source.py +240 -0
  13. pulumi_oci/aivision/get_stream_sources.py +199 -0
  14. pulumi_oci/aivision/get_vision_private_endpoint.py +267 -0
  15. pulumi_oci/aivision/get_vision_private_endpoints.py +199 -0
  16. pulumi_oci/aivision/model.py +149 -157
  17. pulumi_oci/aivision/outputs.py +1920 -116
  18. pulumi_oci/aivision/project.py +61 -69
  19. pulumi_oci/aivision/stream_group.py +632 -0
  20. pulumi_oci/aivision/stream_job.py +744 -0
  21. pulumi_oci/aivision/stream_source.py +519 -0
  22. pulumi_oci/aivision/vision_private_endpoint.py +606 -0
  23. pulumi_oci/cloudguard/_inputs.py +1198 -72
  24. pulumi_oci/cloudguard/get_managed_list.py +15 -1
  25. pulumi_oci/cloudguard/managed_list.py +47 -0
  26. pulumi_oci/cloudguard/outputs.py +2104 -67
  27. pulumi_oci/config/__init__.pyi +12 -17
  28. pulumi_oci/config/vars.py +12 -17
  29. pulumi_oci/core/compute_gpu_memory_fabric.py +28 -0
  30. pulumi_oci/core/get_compute_gpu_memory_fabric.py +15 -1
  31. pulumi_oci/core/outputs.py +11 -0
  32. pulumi_oci/database/_inputs.py +298 -13
  33. pulumi_oci/database/data_guard_association.py +98 -0
  34. pulumi_oci/database/database.py +28 -0
  35. pulumi_oci/database/db_node.py +56 -0
  36. pulumi_oci/database/db_system.py +108 -14
  37. pulumi_oci/database/exadb_vm_cluster.py +49 -0
  38. pulumi_oci/database/exascale_db_storage_vault.py +126 -0
  39. pulumi_oci/database/get_data_guard_association.py +23 -1
  40. pulumi_oci/database/get_database.py +15 -1
  41. pulumi_oci/database/get_db_node.py +29 -1
  42. pulumi_oci/database/get_db_system_shapes.py +25 -6
  43. pulumi_oci/database/get_db_system_storage_performances.py +20 -3
  44. pulumi_oci/database/get_db_versions.py +20 -1
  45. pulumi_oci/database/get_exadb_vm_cluster.py +15 -1
  46. pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
  47. pulumi_oci/database/get_exascale_db_storage_vaults.py +87 -8
  48. pulumi_oci/database/get_gi_versions.py +25 -6
  49. pulumi_oci/database/outputs.py +696 -13
  50. pulumi_oci/datasafe/__init__.py +24 -0
  51. pulumi_oci/datasafe/_inputs.py +3669 -1537
  52. pulumi_oci/datasafe/attribute_set.py +693 -0
  53. pulumi_oci/datasafe/audit_profile.py +356 -95
  54. pulumi_oci/datasafe/audit_profile_management.py +389 -129
  55. pulumi_oci/datasafe/audit_trail.py +47 -0
  56. pulumi_oci/datasafe/audit_trail_management.py +49 -0
  57. pulumi_oci/datasafe/get_alerts.py +2 -2
  58. pulumi_oci/datasafe/get_attribute_set.py +295 -0
  59. pulumi_oci/datasafe/get_attribute_set_associated_resources.py +188 -0
  60. pulumi_oci/datasafe/get_attribute_sets.py +340 -0
  61. pulumi_oci/datasafe/get_audit_archive_retrievals.py +20 -1
  62. pulumi_oci/datasafe/get_audit_events.py +2 -2
  63. pulumi_oci/datasafe/get_audit_policies.py +20 -1
  64. pulumi_oci/datasafe/get_audit_profile.py +78 -8
  65. pulumi_oci/datasafe/get_audit_profile_target_overrides.py +163 -0
  66. pulumi_oci/datasafe/get_audit_profiles.py +50 -9
  67. pulumi_oci/datasafe/get_audit_trail.py +15 -1
  68. pulumi_oci/datasafe/get_audit_trails.py +20 -1
  69. pulumi_oci/datasafe/get_database_security_configs.py +20 -1
  70. pulumi_oci/datasafe/get_discovery_analytics.py +39 -1
  71. pulumi_oci/datasafe/get_masking_analytics.py +42 -1
  72. pulumi_oci/datasafe/get_onprem_connectors.py +26 -23
  73. pulumi_oci/datasafe/get_report.py +43 -1
  74. pulumi_oci/datasafe/get_reports.py +23 -1
  75. pulumi_oci/datasafe/get_security_assessment.py +116 -2
  76. pulumi_oci/datasafe/get_security_assessment_checks.py +264 -0
  77. pulumi_oci/datasafe/get_security_assessment_finding.py +64 -4
  78. pulumi_oci/datasafe/get_security_assessment_findings.py +73 -6
  79. pulumi_oci/datasafe/get_security_assessment_template_analytics.py +362 -0
  80. pulumi_oci/datasafe/get_security_assessment_template_association_analytics.py +298 -0
  81. pulumi_oci/datasafe/get_security_assessment_template_baseline_comparison.py +347 -0
  82. pulumi_oci/datasafe/get_security_assessments.py +68 -2
  83. pulumi_oci/datasafe/get_security_policies.py +23 -1
  84. pulumi_oci/datasafe/get_security_policy.py +15 -1
  85. pulumi_oci/datasafe/get_security_policy_config.py +296 -0
  86. pulumi_oci/datasafe/get_security_policy_configs.py +342 -0
  87. pulumi_oci/datasafe/get_security_policy_deployment.py +52 -2
  88. pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_state.py +49 -4
  89. pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_states.py +47 -6
  90. pulumi_oci/datasafe/get_security_policy_deployments.py +29 -7
  91. pulumi_oci/datasafe/get_sensitive_column_analytics.py +20 -1
  92. pulumi_oci/datasafe/get_sql_collection_analytics.py +20 -1
  93. pulumi_oci/datasafe/get_sql_collections.py +20 -1
  94. pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +2 -2
  95. pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +2 -2
  96. pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +2 -2
  97. pulumi_oci/datasafe/get_sql_firewall_violations.py +2 -2
  98. pulumi_oci/datasafe/get_target_alert_policy_associations.py +0 -34
  99. pulumi_oci/datasafe/get_target_database_group.py +296 -0
  100. pulumi_oci/datasafe/get_target_database_group_group_member.py +146 -0
  101. pulumi_oci/datasafe/get_target_database_groups.py +313 -0
  102. pulumi_oci/datasafe/get_unified_audit_policies.py +386 -0
  103. pulumi_oci/datasafe/get_unified_audit_policy.py +338 -0
  104. pulumi_oci/datasafe/get_unified_audit_policy_definition.py +309 -0
  105. pulumi_oci/datasafe/get_unified_audit_policy_definitions.py +334 -0
  106. pulumi_oci/datasafe/get_user_assessment.py +29 -1
  107. pulumi_oci/datasafe/get_user_assessments.py +45 -1
  108. pulumi_oci/datasafe/outputs.py +6964 -192
  109. pulumi_oci/datasafe/report.py +84 -0
  110. pulumi_oci/datasafe/report_definition.py +4 -0
  111. pulumi_oci/datasafe/security_assessment.py +425 -82
  112. pulumi_oci/datasafe/security_assessment_check.py +456 -0
  113. pulumi_oci/datasafe/security_assessment_finding.py +818 -0
  114. pulumi_oci/datasafe/security_policy.py +94 -77
  115. pulumi_oci/datasafe/security_policy_config.py +698 -0
  116. pulumi_oci/datasafe/security_policy_deployment.py +272 -67
  117. pulumi_oci/datasafe/security_policy_deployment_management.py +266 -42
  118. pulumi_oci/datasafe/security_policy_management.py +87 -30
  119. pulumi_oci/datasafe/target_alert_policy_association.py +7 -77
  120. pulumi_oci/datasafe/target_database.py +4 -0
  121. pulumi_oci/datasafe/target_database_group.py +679 -0
  122. pulumi_oci/datasafe/target_database_peer_target_database.py +2 -0
  123. pulumi_oci/datasafe/unified_audit_policy.py +836 -0
  124. pulumi_oci/datasafe/unified_audit_policy_definition.py +687 -0
  125. pulumi_oci/datasafe/user_assessment.py +105 -28
  126. pulumi_oci/disasterrecovery/_inputs.py +231 -3
  127. pulumi_oci/disasterrecovery/dr_protection_group.py +24 -0
  128. pulumi_oci/disasterrecovery/outputs.py +446 -12
  129. pulumi_oci/generativeai/_inputs.py +572 -63
  130. pulumi_oci/generativeai/agent_data_ingestion_job.py +48 -0
  131. pulumi_oci/generativeai/agent_data_source.py +7 -81
  132. pulumi_oci/generativeai/agent_knowledge_base.py +35 -25
  133. pulumi_oci/generativeai/agent_tool.py +172 -0
  134. pulumi_oci/generativeai/get_agent_data_ingestion_job.py +26 -1
  135. pulumi_oci/generativeai/get_agent_data_source.py +1 -5
  136. pulumi_oci/generativeai/get_agent_data_sources.py +0 -4
  137. pulumi_oci/generativeai/get_agent_knowledge_base.py +16 -6
  138. pulumi_oci/generativeai/get_agent_knowledge_bases.py +0 -4
  139. pulumi_oci/generativeai/outputs.py +1128 -106
  140. pulumi_oci/goldengate/deployment.py +94 -0
  141. pulumi_oci/goldengate/get_deployment.py +29 -1
  142. pulumi_oci/goldengate/get_deployments.py +23 -1
  143. pulumi_oci/goldengate/outputs.py +35 -2
  144. pulumi_oci/mysql/_inputs.py +221 -0
  145. pulumi_oci/mysql/get_mysql_backup.py +40 -4
  146. pulumi_oci/mysql/get_mysql_backups.py +2 -2
  147. pulumi_oci/mysql/mysql_backup.py +119 -3
  148. pulumi_oci/mysql/outputs.py +343 -957
  149. pulumi_oci/oci/__init__.py +17 -0
  150. pulumi_oci/oci/_inputs.py +676 -15
  151. pulumi_oci/oci/dbmulticloud_multi_cloud_resource_discovery.py +103 -54
  152. pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_container.py +45 -45
  153. pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_mount.py +42 -44
  154. pulumi_oci/oci/dbmulticloud_oracle_db_azure_connector.py +100 -72
  155. pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault.py +74 -74
  156. pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault_association.py +50 -50
  157. pulumi_oci/oci/dbmulticloud_oracle_db_gcp_identity_connector.py +924 -0
  158. pulumi_oci/oci/dbmulticloud_oracle_db_gcp_key_ring.py +762 -0
  159. pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discoveries.py +37 -15
  160. pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discovery.py +26 -12
  161. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_container.py +12 -12
  162. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_containers.py +15 -15
  163. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mount.py +12 -12
  164. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mounts.py +15 -15
  165. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connector.py +30 -16
  166. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connectors.py +11 -11
  167. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_key.py +41 -13
  168. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_keys.py +12 -12
  169. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault.py +17 -17
  170. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_association.py +14 -14
  171. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_associations.py +15 -15
  172. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vaults.py +14 -14
  173. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_identity_connector.py +366 -0
  174. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_identity_connectors.py +213 -0
  175. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_key.py +295 -0
  176. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_key_ring.py +309 -0
  177. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_key_rings.py +229 -0
  178. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_keys.py +232 -0
  179. pulumi_oci/oci/get_managed_kafka_kafka_cluster.py +380 -0
  180. pulumi_oci/oci/get_managed_kafka_kafka_cluster_config.py +254 -0
  181. pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_version.py +177 -0
  182. pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_versions.py +144 -0
  183. pulumi_oci/oci/get_managed_kafka_kafka_cluster_configs.py +199 -0
  184. pulumi_oci/oci/get_managed_kafka_kafka_clusters.py +199 -0
  185. pulumi_oci/oci/managed_kafka_kafka_cluster.py +984 -0
  186. pulumi_oci/oci/managed_kafka_kafka_cluster_config.py +549 -0
  187. pulumi_oci/oci/managed_kafka_kafka_cluster_superusers_management.py +352 -0
  188. pulumi_oci/oci/outputs.py +2051 -142
  189. pulumi_oci/provider.py +44 -63
  190. pulumi_oci/pulumi-plugin.json +1 -1
  191. {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.6.0.dist-info}/METADATA +1 -1
  192. {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.6.0.dist-info}/RECORD +194 -141
  193. {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.6.0.dist-info}/WHEEL +0 -0
  194. {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.6.0.dist-info}/top_level.txt +0 -0
@@ -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 2-node RAC virtual machine DB system. Specify either 1 or 2.
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 2-node RAC virtual machine DB system. Specify either 1 or 2.
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 2-node RAC virtual machine DB system. Specify either 1 or 2.
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 2-node RAC virtual machine DB system. Specify either 1 or 2.
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 2-node RAC virtual machine DB system. Specify either 1 or 2.
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 2-node RAC virtual machine DB system. Specify either 1 or 2.
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 2-node RAC virtual machine DB system. Specify either 1 or 2.
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
 
@@ -45,6 +45,7 @@ class ExadbVmClusterArgs:
45
45
  scan_listener_port_tcp: Optional[pulumi.Input[_builtins.int]] = None,
46
46
  scan_listener_port_tcp_ssl: Optional[pulumi.Input[_builtins.int]] = None,
47
47
  security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
48
+ shape_attribute: Optional[pulumi.Input[_builtins.str]] = None,
48
49
  subscription_id: Optional[pulumi.Input[_builtins.str]] = None,
49
50
  system_version: Optional[pulumi.Input[_builtins.str]] = None,
50
51
  time_zone: Optional[pulumi.Input[_builtins.str]] = None):
@@ -81,6 +82,7 @@ class ExadbVmClusterArgs:
81
82
  :param pulumi.Input[_builtins.int] scan_listener_port_tcp: The TCP Single Client Access Name (SCAN) port. The default port is 1521.
82
83
  :param pulumi.Input[_builtins.int] scan_listener_port_tcp_ssl: The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
83
84
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] security_attributes: (Updatable) Security Attributes 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: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
85
+ :param pulumi.Input[_builtins.str] shape_attribute: The type of Exascale storage used for Exadata VM cluster. The default is SMART_STORAGE which supports Oracle Database 23ai and later
84
86
  :param pulumi.Input[_builtins.str] subscription_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
85
87
  :param pulumi.Input[_builtins.str] system_version: (Updatable) Operating system version of the image.
86
88
  :param pulumi.Input[_builtins.str] time_zone: The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
@@ -126,6 +128,8 @@ class ExadbVmClusterArgs:
126
128
  pulumi.set(__self__, "scan_listener_port_tcp_ssl", scan_listener_port_tcp_ssl)
127
129
  if security_attributes is not None:
128
130
  pulumi.set(__self__, "security_attributes", security_attributes)
131
+ if shape_attribute is not None:
132
+ pulumi.set(__self__, "shape_attribute", shape_attribute)
129
133
  if subscription_id is not None:
130
134
  pulumi.set(__self__, "subscription_id", subscription_id)
131
135
  if system_version is not None:
@@ -428,6 +432,18 @@ class ExadbVmClusterArgs:
428
432
  def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
429
433
  pulumi.set(self, "security_attributes", value)
430
434
 
435
+ @_builtins.property
436
+ @pulumi.getter(name="shapeAttribute")
437
+ def shape_attribute(self) -> Optional[pulumi.Input[_builtins.str]]:
438
+ """
439
+ The type of Exascale storage used for Exadata VM cluster. The default is SMART_STORAGE which supports Oracle Database 23ai and later
440
+ """
441
+ return pulumi.get(self, "shape_attribute")
442
+
443
+ @shape_attribute.setter
444
+ def shape_attribute(self, value: Optional[pulumi.Input[_builtins.str]]):
445
+ pulumi.set(self, "shape_attribute", value)
446
+
431
447
  @_builtins.property
432
448
  @pulumi.getter(name="subscriptionId")
433
449
  def subscription_id(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -504,6 +520,7 @@ class _ExadbVmClusterState:
504
520
  scan_listener_port_tcp_ssl: Optional[pulumi.Input[_builtins.int]] = None,
505
521
  security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
506
522
  shape: Optional[pulumi.Input[_builtins.str]] = None,
523
+ shape_attribute: Optional[pulumi.Input[_builtins.str]] = None,
507
524
  ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
508
525
  state: Optional[pulumi.Input[_builtins.str]] = None,
509
526
  subnet_id: Optional[pulumi.Input[_builtins.str]] = None,
@@ -555,6 +572,7 @@ class _ExadbVmClusterState:
555
572
  :param pulumi.Input[_builtins.int] scan_listener_port_tcp_ssl: The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
556
573
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] security_attributes: (Updatable) Security Attributes 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: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
557
574
  :param pulumi.Input[_builtins.str] shape: The shape of the Exadata VM cluster on Exascale Infrastructure resource
575
+ :param pulumi.Input[_builtins.str] shape_attribute: The type of Exascale storage used for Exadata VM cluster. The default is SMART_STORAGE which supports Oracle Database 23ai and later
558
576
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] ssh_public_keys: (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
559
577
  :param pulumi.Input[_builtins.str] state: The current state of the Exadata VM cluster on Exascale Infrastructure.
560
578
  :param pulumi.Input[_builtins.str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
@@ -634,6 +652,8 @@ class _ExadbVmClusterState:
634
652
  pulumi.set(__self__, "security_attributes", security_attributes)
635
653
  if shape is not None:
636
654
  pulumi.set(__self__, "shape", shape)
655
+ if shape_attribute is not None:
656
+ pulumi.set(__self__, "shape_attribute", shape_attribute)
637
657
  if ssh_public_keys is not None:
638
658
  pulumi.set(__self__, "ssh_public_keys", ssh_public_keys)
639
659
  if state is not None:
@@ -1046,6 +1066,18 @@ class _ExadbVmClusterState:
1046
1066
  def shape(self, value: Optional[pulumi.Input[_builtins.str]]):
1047
1067
  pulumi.set(self, "shape", value)
1048
1068
 
1069
+ @_builtins.property
1070
+ @pulumi.getter(name="shapeAttribute")
1071
+ def shape_attribute(self) -> Optional[pulumi.Input[_builtins.str]]:
1072
+ """
1073
+ The type of Exascale storage used for Exadata VM cluster. The default is SMART_STORAGE which supports Oracle Database 23ai and later
1074
+ """
1075
+ return pulumi.get(self, "shape_attribute")
1076
+
1077
+ @shape_attribute.setter
1078
+ def shape_attribute(self, value: Optional[pulumi.Input[_builtins.str]]):
1079
+ pulumi.set(self, "shape_attribute", value)
1080
+
1049
1081
  @_builtins.property
1050
1082
  @pulumi.getter(name="sshPublicKeys")
1051
1083
  def ssh_public_keys(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
@@ -1199,6 +1231,7 @@ class ExadbVmCluster(pulumi.CustomResource):
1199
1231
  scan_listener_port_tcp_ssl: Optional[pulumi.Input[_builtins.int]] = None,
1200
1232
  security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
1201
1233
  shape: Optional[pulumi.Input[_builtins.str]] = None,
1234
+ shape_attribute: Optional[pulumi.Input[_builtins.str]] = None,
1202
1235
  ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
1203
1236
  subnet_id: Optional[pulumi.Input[_builtins.str]] = None,
1204
1237
  subscription_id: Optional[pulumi.Input[_builtins.str]] = None,
@@ -1258,6 +1291,7 @@ class ExadbVmCluster(pulumi.CustomResource):
1258
1291
  scan_listener_port_tcp=exadb_vm_cluster_scan_listener_port_tcp,
1259
1292
  scan_listener_port_tcp_ssl=exadb_vm_cluster_scan_listener_port_tcp_ssl,
1260
1293
  security_attributes=exadb_vm_cluster_security_attributes,
1294
+ shape_attribute=exadb_vm_cluster_shape_attribute,
1261
1295
  subscription_id=tenant_subscription_id,
1262
1296
  system_version=exadb_vm_cluster_system_version,
1263
1297
  time_zone=exadb_vm_cluster_time_zone)
@@ -1302,6 +1336,7 @@ class ExadbVmCluster(pulumi.CustomResource):
1302
1336
  :param pulumi.Input[_builtins.int] scan_listener_port_tcp_ssl: The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
1303
1337
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] security_attributes: (Updatable) Security Attributes 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: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
1304
1338
  :param pulumi.Input[_builtins.str] shape: The shape of the Exadata VM cluster on Exascale Infrastructure resource
1339
+ :param pulumi.Input[_builtins.str] shape_attribute: The type of Exascale storage used for Exadata VM cluster. The default is SMART_STORAGE which supports Oracle Database 23ai and later
1305
1340
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] ssh_public_keys: (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
1306
1341
  :param pulumi.Input[_builtins.str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
1307
1342
  :param pulumi.Input[_builtins.str] subscription_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
@@ -1371,6 +1406,7 @@ class ExadbVmCluster(pulumi.CustomResource):
1371
1406
  scan_listener_port_tcp=exadb_vm_cluster_scan_listener_port_tcp,
1372
1407
  scan_listener_port_tcp_ssl=exadb_vm_cluster_scan_listener_port_tcp_ssl,
1373
1408
  security_attributes=exadb_vm_cluster_security_attributes,
1409
+ shape_attribute=exadb_vm_cluster_shape_attribute,
1374
1410
  subscription_id=tenant_subscription_id,
1375
1411
  system_version=exadb_vm_cluster_system_version,
1376
1412
  time_zone=exadb_vm_cluster_time_zone)
@@ -1421,6 +1457,7 @@ class ExadbVmCluster(pulumi.CustomResource):
1421
1457
  scan_listener_port_tcp_ssl: Optional[pulumi.Input[_builtins.int]] = None,
1422
1458
  security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
1423
1459
  shape: Optional[pulumi.Input[_builtins.str]] = None,
1460
+ shape_attribute: Optional[pulumi.Input[_builtins.str]] = None,
1424
1461
  ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
1425
1462
  subnet_id: Optional[pulumi.Input[_builtins.str]] = None,
1426
1463
  subscription_id: Optional[pulumi.Input[_builtins.str]] = None,
@@ -1475,6 +1512,7 @@ class ExadbVmCluster(pulumi.CustomResource):
1475
1512
  if shape is None and not opts.urn:
1476
1513
  raise TypeError("Missing required property 'shape'")
1477
1514
  __props__.__dict__["shape"] = shape
1515
+ __props__.__dict__["shape_attribute"] = shape_attribute
1478
1516
  if ssh_public_keys is None and not opts.urn:
1479
1517
  raise TypeError("Missing required property 'ssh_public_keys'")
1480
1518
  __props__.__dict__["ssh_public_keys"] = ssh_public_keys
@@ -1541,6 +1579,7 @@ class ExadbVmCluster(pulumi.CustomResource):
1541
1579
  scan_listener_port_tcp_ssl: Optional[pulumi.Input[_builtins.int]] = None,
1542
1580
  security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
1543
1581
  shape: Optional[pulumi.Input[_builtins.str]] = None,
1582
+ shape_attribute: Optional[pulumi.Input[_builtins.str]] = None,
1544
1583
  ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
1545
1584
  state: Optional[pulumi.Input[_builtins.str]] = None,
1546
1585
  subnet_id: Optional[pulumi.Input[_builtins.str]] = None,
@@ -1597,6 +1636,7 @@ class ExadbVmCluster(pulumi.CustomResource):
1597
1636
  :param pulumi.Input[_builtins.int] scan_listener_port_tcp_ssl: The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
1598
1637
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] security_attributes: (Updatable) Security Attributes 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: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
1599
1638
  :param pulumi.Input[_builtins.str] shape: The shape of the Exadata VM cluster on Exascale Infrastructure resource
1639
+ :param pulumi.Input[_builtins.str] shape_attribute: The type of Exascale storage used for Exadata VM cluster. The default is SMART_STORAGE which supports Oracle Database 23ai and later
1600
1640
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] ssh_public_keys: (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
1601
1641
  :param pulumi.Input[_builtins.str] state: The current state of the Exadata VM cluster on Exascale Infrastructure.
1602
1642
  :param pulumi.Input[_builtins.str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
@@ -1648,6 +1688,7 @@ class ExadbVmCluster(pulumi.CustomResource):
1648
1688
  __props__.__dict__["scan_listener_port_tcp_ssl"] = scan_listener_port_tcp_ssl
1649
1689
  __props__.__dict__["security_attributes"] = security_attributes
1650
1690
  __props__.__dict__["shape"] = shape
1691
+ __props__.__dict__["shape_attribute"] = shape_attribute
1651
1692
  __props__.__dict__["ssh_public_keys"] = ssh_public_keys
1652
1693
  __props__.__dict__["state"] = state
1653
1694
  __props__.__dict__["subnet_id"] = subnet_id
@@ -1923,6 +1964,14 @@ class ExadbVmCluster(pulumi.CustomResource):
1923
1964
  """
1924
1965
  return pulumi.get(self, "shape")
1925
1966
 
1967
+ @_builtins.property
1968
+ @pulumi.getter(name="shapeAttribute")
1969
+ def shape_attribute(self) -> pulumi.Output[_builtins.str]:
1970
+ """
1971
+ The type of Exascale storage used for Exadata VM cluster. The default is SMART_STORAGE which supports Oracle Database 23ai and later
1972
+ """
1973
+ return pulumi.get(self, "shape_attribute")
1974
+
1926
1975
  @_builtins.property
1927
1976
  @pulumi.getter(name="sshPublicKeys")
1928
1977
  def ssh_public_keys(self) -> pulumi.Output[Sequence[_builtins.str]]: