pulumi-oci 2.25.0a1740032973__py3-none-any.whl → 2.26.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 (218) hide show
  1. pulumi_oci/__init__.py +102 -0
  2. pulumi_oci/config/__init__.pyi +2 -0
  3. pulumi_oci/config/vars.py +4 -0
  4. pulumi_oci/containerengine/_inputs.py +74 -35
  5. pulumi_oci/containerengine/cluster.py +4 -0
  6. pulumi_oci/containerengine/container_instance.py +2 -4
  7. pulumi_oci/containerengine/outputs.py +180 -21
  8. pulumi_oci/containerinstances/outputs.py +0 -14
  9. pulumi_oci/core/_inputs.py +21 -33
  10. pulumi_oci/core/outputs.py +13 -21
  11. pulumi_oci/database/__init__.py +1 -0
  12. pulumi_oci/database/_inputs.py +1246 -57
  13. pulumi_oci/database/application_vip.py +59 -10
  14. pulumi_oci/database/autonomous_container_database.py +92 -0
  15. pulumi_oci/database/autonomous_database.py +90 -22
  16. pulumi_oci/database/backup.py +153 -5
  17. pulumi_oci/database/backup_destination.py +84 -0
  18. pulumi_oci/database/cloud_exadata_infrastructure.py +126 -0
  19. pulumi_oci/database/cloud_vm_cluster.py +163 -30
  20. pulumi_oci/database/data_guard_association.py +49 -0
  21. pulumi_oci/database/db_node.py +64 -8
  22. pulumi_oci/database/db_system.py +111 -8
  23. pulumi_oci/database/exadata_infrastructure.py +157 -3
  24. pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py +1615 -0
  25. pulumi_oci/database/exadb_vm_cluster.py +84 -7
  26. pulumi_oci/database/exascale_db_storage_vault.py +147 -0
  27. pulumi_oci/database/external_container_database.py +4 -4
  28. pulumi_oci/database/external_non_container_database.py +4 -4
  29. pulumi_oci/database/external_pluggable_database.py +4 -4
  30. pulumi_oci/database/get_application_vip.py +16 -2
  31. pulumi_oci/database/get_autonomous_container_database.py +43 -1
  32. pulumi_oci/database/get_autonomous_database.py +29 -1
  33. pulumi_oci/database/get_autonomous_databases.py +0 -26
  34. pulumi_oci/database/get_backup_destination.py +43 -1
  35. pulumi_oci/database/get_backups.py +136 -10
  36. pulumi_oci/database/get_cloud_exadata_infrastructure.py +43 -1
  37. pulumi_oci/database/get_cloud_vm_cluster.py +59 -3
  38. pulumi_oci/database/get_cloud_vm_clusters.py +28 -6
  39. pulumi_oci/database/get_data_guard_association.py +12 -1
  40. pulumi_oci/database/get_database_software_images.py +20 -1
  41. pulumi_oci/database/get_db_node.py +31 -4
  42. pulumi_oci/database/get_db_server.py +15 -1
  43. pulumi_oci/database/get_exadata_infrastructure.py +57 -1
  44. pulumi_oci/database/get_exadb_vm_cluster.py +29 -1
  45. pulumi_oci/database/get_exadb_vm_clusters.py +25 -3
  46. pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
  47. pulumi_oci/database/get_exascale_db_storage_vaults.py +47 -3
  48. pulumi_oci/database/get_external_container_database.py +1 -1
  49. pulumi_oci/database/get_external_non_container_database.py +1 -1
  50. pulumi_oci/database/get_external_pluggable_database.py +1 -1
  51. pulumi_oci/database/get_flex_components.py +28 -6
  52. pulumi_oci/database/get_maintenance_runs.py +20 -1
  53. pulumi_oci/database/get_vm_cluster.py +60 -4
  54. pulumi_oci/database/get_vm_clusters.py +25 -3
  55. pulumi_oci/database/outputs.py +2260 -87
  56. pulumi_oci/database/pluggable_database.py +13 -13
  57. pulumi_oci/database/vm_cluster.py +172 -18
  58. pulumi_oci/database/vm_cluster_add_virtual_network.py +114 -2
  59. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +114 -2
  60. pulumi_oci/datasafe/__init__.py +7 -0
  61. pulumi_oci/datasafe/_inputs.py +301 -0
  62. pulumi_oci/datasafe/discovery_mod.py +49 -0
  63. pulumi_oci/datasafe/get_discovery_job.py +15 -1
  64. pulumi_oci/datasafe/get_masking_report.py +46 -4
  65. pulumi_oci/datasafe/get_masking_report_masking_errors.py +166 -0
  66. pulumi_oci/datasafe/get_security_assessment_finding.py +31 -1
  67. pulumi_oci/datasafe/get_security_assessment_findings.py +43 -3
  68. pulumi_oci/datasafe/get_sensitive_column_analytics.py +370 -0
  69. pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
  70. pulumi_oci/datasafe/get_sensitive_type_group.py +253 -0
  71. pulumi_oci/datasafe/get_sensitive_type_group_grouped_sensitive_types.py +166 -0
  72. pulumi_oci/datasafe/get_sensitive_type_groups.py +294 -0
  73. pulumi_oci/datasafe/outputs.py +676 -3
  74. pulumi_oci/datasafe/sensitive_data_model.py +49 -0
  75. pulumi_oci/datasafe/sensitive_type_group.py +563 -0
  76. pulumi_oci/datasafe/sensitive_type_group_grouped_sensitive_type.py +287 -0
  77. pulumi_oci/datascience/__init__.py +4 -0
  78. pulumi_oci/datascience/_inputs.py +1160 -41
  79. pulumi_oci/datascience/get_model.py +29 -1
  80. pulumi_oci/datascience/get_model_custom_metadata_artifact_content.py +151 -0
  81. pulumi_oci/datascience/get_model_defined_metadata_artifact_content.py +151 -0
  82. pulumi_oci/datascience/get_model_version_set.py +15 -1
  83. pulumi_oci/datascience/get_model_version_sets.py +25 -3
  84. pulumi_oci/datascience/get_models.py +25 -3
  85. pulumi_oci/datascience/get_pipeline.py +15 -1
  86. pulumi_oci/datascience/model.py +64 -0
  87. pulumi_oci/datascience/model_custom_metadata_artifact.py +418 -0
  88. pulumi_oci/datascience/model_defined_metadata_artifact.py +418 -0
  89. pulumi_oci/datascience/model_version_set.py +28 -0
  90. pulumi_oci/datascience/outputs.py +4343 -2164
  91. pulumi_oci/datascience/pipeline.py +48 -141
  92. pulumi_oci/datascience/pipeline_run.py +32 -0
  93. pulumi_oci/dblm/__init__.py +17 -0
  94. pulumi_oci/dblm/_inputs.py +275 -0
  95. pulumi_oci/dblm/get_vulnerability.py +242 -0
  96. pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py +220 -0
  97. pulumi_oci/dblm/get_vulnerability_notifications.py +144 -0
  98. pulumi_oci/dblm/get_vulnerability_resources.py +258 -0
  99. pulumi_oci/dblm/get_vulnerability_scan.py +267 -0
  100. pulumi_oci/dblm/get_vulnerability_scans.py +270 -0
  101. pulumi_oci/dblm/get_vulnerability_vulnerabilities.py +258 -0
  102. pulumi_oci/dblm/outputs.py +1294 -0
  103. pulumi_oci/dblm/vulnerability_scan.py +521 -0
  104. pulumi_oci/email/dkim.py +120 -20
  105. pulumi_oci/email/get_dkim.py +40 -1
  106. pulumi_oci/email/outputs.py +29 -0
  107. pulumi_oci/filestorage/__init__.py +3 -0
  108. pulumi_oci/filestorage/_inputs.py +49 -0
  109. pulumi_oci/filestorage/file_system.py +133 -0
  110. pulumi_oci/filestorage/file_system_quota_rule.py +593 -0
  111. pulumi_oci/filestorage/filesystem_snapshot_policy.py +28 -0
  112. pulumi_oci/filestorage/get_file_system_quota_rule.py +248 -0
  113. pulumi_oci/filestorage/get_file_system_quota_rules.py +210 -0
  114. pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +15 -1
  115. pulumi_oci/filestorage/get_outbound_connector.py +15 -1
  116. pulumi_oci/filestorage/get_replication.py +15 -1
  117. pulumi_oci/filestorage/get_replication_target.py +15 -1
  118. pulumi_oci/filestorage/get_snapshot.py +15 -1
  119. pulumi_oci/filestorage/mount_target.py +28 -0
  120. pulumi_oci/filestorage/outbound_connector.py +28 -0
  121. pulumi_oci/filestorage/outputs.py +263 -0
  122. pulumi_oci/filestorage/replication.py +28 -0
  123. pulumi_oci/filestorage/snapshot.py +28 -0
  124. pulumi_oci/goldengate/connection.py +561 -162
  125. pulumi_oci/goldengate/database_registration.py +14 -14
  126. pulumi_oci/goldengate/get_connection.py +117 -6
  127. pulumi_oci/goldengate/outputs.py +96 -10
  128. pulumi_oci/jms/__init__.py +4 -0
  129. pulumi_oci/jms/_inputs.py +196 -0
  130. pulumi_oci/jms/get_fleet_error_analytics.py +163 -0
  131. pulumi_oci/jms/get_fleet_errors.py +264 -0
  132. pulumi_oci/jms/get_fleet_performance_tuning_analysis_results.py +23 -1
  133. pulumi_oci/jms/get_jms_plugins.py +23 -1
  134. pulumi_oci/jms/get_plugin_error_analytics.py +163 -0
  135. pulumi_oci/jms/get_plugin_errors.py +264 -0
  136. pulumi_oci/jms/outputs.py +566 -6
  137. pulumi_oci/mysql/_inputs.py +1239 -10
  138. pulumi_oci/mysql/channel.py +28 -0
  139. pulumi_oci/mysql/get_channel.py +15 -1
  140. pulumi_oci/mysql/get_mysql_backup.py +15 -1
  141. pulumi_oci/mysql/get_mysql_configuration.py +15 -1
  142. pulumi_oci/mysql/get_mysql_db_system.py +15 -1
  143. pulumi_oci/mysql/mysql_backup.py +28 -0
  144. pulumi_oci/mysql/mysql_configuration.py +106 -0
  145. pulumi_oci/mysql/mysql_db_system.py +36 -0
  146. pulumi_oci/mysql/outputs.py +2008 -35
  147. pulumi_oci/opensearch/__init__.py +3 -0
  148. pulumi_oci/opensearch/_inputs.py +101 -0
  149. pulumi_oci/opensearch/cluster.py +76 -29
  150. pulumi_oci/opensearch/get_opensearch_cluster.py +12 -1
  151. pulumi_oci/opensearch/get_opensearch_cluster_pipeline.py +433 -0
  152. pulumi_oci/opensearch/get_opensearch_cluster_pipelines.py +218 -0
  153. pulumi_oci/opensearch/opensearch_cluster_pipeline.py +1172 -0
  154. pulumi_oci/opensearch/outputs.py +425 -0
  155. pulumi_oci/provider.py +20 -0
  156. pulumi_oci/psql/_inputs.py +258 -0
  157. pulumi_oci/psql/backup.py +129 -28
  158. pulumi_oci/psql/db_system.py +10 -0
  159. pulumi_oci/psql/get_backup.py +47 -2
  160. pulumi_oci/psql/get_backups.py +3 -0
  161. pulumi_oci/psql/get_configurations.py +23 -1
  162. pulumi_oci/psql/get_db_system.py +1 -1
  163. pulumi_oci/psql/get_db_systems.py +1 -1
  164. pulumi_oci/psql/outputs.py +541 -5
  165. pulumi_oci/pulumi-plugin.json +1 -1
  166. pulumi_oci/redis/redis_cluster.py +7 -7
  167. pulumi_oci/stackmonitoring/__init__.py +8 -0
  168. pulumi_oci/stackmonitoring/_inputs.py +372 -1
  169. pulumi_oci/stackmonitoring/get_defined_monitoring_templates.py +185 -0
  170. pulumi_oci/stackmonitoring/get_metric_extension.py +1 -1
  171. pulumi_oci/stackmonitoring/get_monitored_resource_type.py +15 -1
  172. pulumi_oci/stackmonitoring/get_monitoring_template.py +380 -0
  173. pulumi_oci/stackmonitoring/get_monitoring_template_alarm_condition.py +318 -0
  174. pulumi_oci/stackmonitoring/get_monitoring_template_alarm_conditions.py +262 -0
  175. pulumi_oci/stackmonitoring/get_monitoring_templates.py +289 -0
  176. pulumi_oci/stackmonitoring/metric_extension.py +4 -4
  177. pulumi_oci/stackmonitoring/monitored_resource_type.py +30 -0
  178. pulumi_oci/stackmonitoring/monitoring_template.py +954 -0
  179. pulumi_oci/stackmonitoring/monitoring_template_alarm_condition.py +780 -0
  180. pulumi_oci/stackmonitoring/monitoring_template_monitoring_template_on_given_resources_management.py +253 -0
  181. pulumi_oci/stackmonitoring/outputs.py +1305 -118
  182. pulumi_oci/tenantmanagercontrolplane/__init__.py +33 -0
  183. pulumi_oci/tenantmanagercontrolplane/_inputs.py +685 -0
  184. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription.py +478 -0
  185. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription_line_items.py +144 -0
  186. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscriptions.py +188 -0
  187. pulumi_oci/tenantmanagercontrolplane/get_domain.py +253 -0
  188. pulumi_oci/tenantmanagercontrolplane/get_domain_governance.py +281 -0
  189. pulumi_oci/tenantmanagercontrolplane/get_domain_governances.py +226 -0
  190. pulumi_oci/tenantmanagercontrolplane/get_domains.py +226 -0
  191. pulumi_oci/tenantmanagercontrolplane/get_link.py +197 -0
  192. pulumi_oci/tenantmanagercontrolplane/get_links.py +191 -0
  193. pulumi_oci/tenantmanagercontrolplane/get_organization.py +211 -0
  194. pulumi_oci/tenantmanagercontrolplane/get_organization_tenancies.py +144 -0
  195. pulumi_oci/tenantmanagercontrolplane/get_organization_tenancy.py +233 -0
  196. pulumi_oci/tenantmanagercontrolplane/get_organizations.py +147 -0
  197. pulumi_oci/tenantmanagercontrolplane/get_recipient_invitation.py +295 -0
  198. pulumi_oci/tenantmanagercontrolplane/get_recipient_invitations.py +213 -0
  199. pulumi_oci/tenantmanagercontrolplane/get_sender_invitation.py +295 -0
  200. pulumi_oci/tenantmanagercontrolplane/get_sender_invitations.py +235 -0
  201. pulumi_oci/tenantmanagercontrolplane/get_subscription.py +464 -0
  202. pulumi_oci/tenantmanagercontrolplane/get_subscription_available_regions.py +144 -0
  203. pulumi_oci/tenantmanagercontrolplane/get_subscription_line_items.py +144 -0
  204. pulumi_oci/tenantmanagercontrolplane/get_subscription_mapping.py +211 -0
  205. pulumi_oci/tenantmanagercontrolplane/get_subscription_mappings.py +210 -0
  206. pulumi_oci/tenantmanagercontrolplane/get_subscriptions.py +188 -0
  207. pulumi_oci/tenantmanagercontrolplane/outputs.py +3257 -0
  208. pulumi_oci/tenantmanagercontrolplane/subscription_mapping.py +409 -0
  209. pulumi_oci/vault/__init__.py +1 -1
  210. pulumi_oci/vault/_inputs.py +92 -0
  211. pulumi_oci/vault/get_secret.py +40 -1
  212. pulumi_oci/vault/{get_secret_version.py → get_secret_version_sdk_v2.py} +32 -77
  213. pulumi_oci/vault/outputs.py +210 -0
  214. pulumi_oci/vault/secret.py +122 -0
  215. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/METADATA +1 -1
  216. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/RECORD +218 -150
  217. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/WHEEL +1 -1
  218. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/top_level.txt +0 -0
@@ -55,7 +55,8 @@ class CloudVmClusterArgs:
55
55
  security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
56
56
  subscription_id: Optional[pulumi.Input[str]] = None,
57
57
  system_version: Optional[pulumi.Input[str]] = None,
58
- time_zone: Optional[pulumi.Input[str]] = None):
58
+ time_zone: Optional[pulumi.Input[str]] = None,
59
+ vm_cluster_type: Optional[pulumi.Input[str]] = None):
59
60
  """
60
61
  The set of arguments for constructing a CloudVmCluster resource.
61
62
  :param pulumi.Input[str] backup_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup network subnet associated with the cloud VM cluster.
@@ -103,7 +104,8 @@ class CloudVmClusterArgs:
103
104
  :param pulumi.Input[Mapping[str, pulumi.Input[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"}}}`
104
105
  :param pulumi.Input[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.
105
106
  :param pulumi.Input[str] system_version: Operating system version of the image.
106
- :param pulumi.Input[str] time_zone: The time zone to use for the cloud VM cluster. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
107
+ :param pulumi.Input[str] time_zone: The time zone to use for the cloud VM cluster. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
108
+ :param pulumi.Input[str] vm_cluster_type: The vmcluster type for the VM cluster/Cloud VM cluster.
107
109
 
108
110
 
109
111
  ** IMPORTANT **
@@ -170,6 +172,8 @@ class CloudVmClusterArgs:
170
172
  pulumi.set(__self__, "system_version", system_version)
171
173
  if time_zone is not None:
172
174
  pulumi.set(__self__, "time_zone", time_zone)
175
+ if vm_cluster_type is not None:
176
+ pulumi.set(__self__, "vm_cluster_type", vm_cluster_type)
173
177
 
174
178
  @property
175
179
  @pulumi.getter(name="backupSubnetId")
@@ -592,11 +596,7 @@ class CloudVmClusterArgs:
592
596
  @pulumi.getter(name="timeZone")
593
597
  def time_zone(self) -> Optional[pulumi.Input[str]]:
594
598
  """
595
- The time zone to use for the cloud VM cluster. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
596
-
597
-
598
- ** IMPORTANT **
599
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
599
+ The time zone to use for the cloud VM cluster. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
600
600
  """
601
601
  return pulumi.get(self, "time_zone")
602
602
 
@@ -604,6 +604,22 @@ class CloudVmClusterArgs:
604
604
  def time_zone(self, value: Optional[pulumi.Input[str]]):
605
605
  pulumi.set(self, "time_zone", value)
606
606
 
607
+ @property
608
+ @pulumi.getter(name="vmClusterType")
609
+ def vm_cluster_type(self) -> Optional[pulumi.Input[str]]:
610
+ """
611
+ The vmcluster type for the VM cluster/Cloud VM cluster.
612
+
613
+
614
+ ** IMPORTANT **
615
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
616
+ """
617
+ return pulumi.get(self, "vm_cluster_type")
618
+
619
+ @vm_cluster_type.setter
620
+ def vm_cluster_type(self, value: Optional[pulumi.Input[str]]):
621
+ pulumi.set(self, "vm_cluster_type", value)
622
+
607
623
 
608
624
  @pulumi.input_type
609
625
  class _CloudVmClusterState:
@@ -615,6 +631,7 @@ class _CloudVmClusterState:
615
631
  cloud_exadata_infrastructure_id: Optional[pulumi.Input[str]] = None,
616
632
  cluster_name: Optional[pulumi.Input[str]] = None,
617
633
  compartment_id: Optional[pulumi.Input[str]] = None,
634
+ compute_model: Optional[pulumi.Input[str]] = None,
618
635
  cpu_core_count: Optional[pulumi.Input[int]] = None,
619
636
  create_async: Optional[pulumi.Input[bool]] = None,
620
637
  data_collection_options: Optional[pulumi.Input['CloudVmClusterDataCollectionOptionsArgs']] = None,
@@ -645,6 +662,7 @@ class _CloudVmClusterState:
645
662
  scan_dns_name: Optional[pulumi.Input[str]] = None,
646
663
  scan_dns_record_id: Optional[pulumi.Input[str]] = None,
647
664
  scan_ip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
665
+ scan_ipv6ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
648
666
  scan_listener_port_tcp: Optional[pulumi.Input[int]] = None,
649
667
  scan_listener_port_tcp_ssl: Optional[pulumi.Input[int]] = None,
650
668
  security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
@@ -659,6 +677,8 @@ class _CloudVmClusterState:
659
677
  time_created: Optional[pulumi.Input[str]] = None,
660
678
  time_zone: Optional[pulumi.Input[str]] = None,
661
679
  vip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
680
+ vipv6ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
681
+ vm_cluster_type: Optional[pulumi.Input[str]] = None,
662
682
  zone_id: Optional[pulumi.Input[str]] = None):
663
683
  """
664
684
  Input properties used for looking up and filtering CloudVmCluster resources.
@@ -669,6 +689,7 @@ class _CloudVmClusterState:
669
689
  :param pulumi.Input[str] cloud_exadata_infrastructure_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud Exadata infrastructure resource.
670
690
  :param pulumi.Input[str] cluster_name: The cluster name for cloud VM cluster. 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.
671
691
  :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
692
+ :param pulumi.Input[str] compute_model: The compute model of the cloud VM cluster.
672
693
  :param pulumi.Input[int] cpu_core_count: (Updatable) The number of CPU cores to enable for a cloud VM cluster. Valid values depend on the specified shape:
673
694
  * Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
674
695
  * Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
@@ -709,7 +730,8 @@ class _CloudVmClusterState:
709
730
  :param pulumi.Input[str] private_zone_id: The private zone id in which DNS records need to be created.
710
731
  :param pulumi.Input[str] scan_dns_name: The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
711
732
  :param pulumi.Input[str] scan_dns_record_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
712
- :param pulumi.Input[Sequence[pulumi.Input[str]]] scan_ip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
733
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] scan_ip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv4 addresses associated with the cloud VM cluster. SCAN IPv4 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
734
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] scan_ipv6ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv6 addresses associated with the cloud VM cluster. SCAN IPv6 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
713
735
  :param pulumi.Input[int] scan_listener_port_tcp: The TCP Single Client Access Name (SCAN) port. The default port is 1521.
714
736
  :param pulumi.Input[int] scan_listener_port_tcp_ssl: The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
715
737
  :param pulumi.Input[Mapping[str, pulumi.Input[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"}}}`
@@ -722,12 +744,14 @@ class _CloudVmClusterState:
722
744
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
723
745
  :param pulumi.Input[str] system_version: Operating system version of the image.
724
746
  :param pulumi.Input[str] time_created: The date and time that the cloud VM cluster was created.
725
- :param pulumi.Input[str] time_zone: The time zone to use for the cloud VM cluster. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
747
+ :param pulumi.Input[str] time_zone: The time zone to use for the cloud VM cluster. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
748
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] vip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) IPv4 addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP IPv4 address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
749
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] vipv6ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) IPv6 addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP IPv6 address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
750
+ :param pulumi.Input[str] vm_cluster_type: The vmcluster type for the VM cluster/Cloud VM cluster.
726
751
 
727
752
 
728
753
  ** IMPORTANT **
729
754
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
730
- :param pulumi.Input[Sequence[pulumi.Input[str]]] vip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
731
755
  :param pulumi.Input[str] zone_id: The OCID of the zone the cloud VM cluster is associated with.
732
756
  """
733
757
  if availability_domain is not None:
@@ -744,6 +768,8 @@ class _CloudVmClusterState:
744
768
  pulumi.set(__self__, "cluster_name", cluster_name)
745
769
  if compartment_id is not None:
746
770
  pulumi.set(__self__, "compartment_id", compartment_id)
771
+ if compute_model is not None:
772
+ pulumi.set(__self__, "compute_model", compute_model)
747
773
  if cpu_core_count is not None:
748
774
  pulumi.set(__self__, "cpu_core_count", cpu_core_count)
749
775
  if create_async is not None:
@@ -804,6 +830,8 @@ class _CloudVmClusterState:
804
830
  pulumi.set(__self__, "scan_dns_record_id", scan_dns_record_id)
805
831
  if scan_ip_ids is not None:
806
832
  pulumi.set(__self__, "scan_ip_ids", scan_ip_ids)
833
+ if scan_ipv6ids is not None:
834
+ pulumi.set(__self__, "scan_ipv6ids", scan_ipv6ids)
807
835
  if scan_listener_port_tcp is not None:
808
836
  pulumi.set(__self__, "scan_listener_port_tcp", scan_listener_port_tcp)
809
837
  if scan_listener_port_tcp_ssl is not None:
@@ -832,6 +860,10 @@ class _CloudVmClusterState:
832
860
  pulumi.set(__self__, "time_zone", time_zone)
833
861
  if vip_ids is not None:
834
862
  pulumi.set(__self__, "vip_ids", vip_ids)
863
+ if vipv6ids is not None:
864
+ pulumi.set(__self__, "vipv6ids", vipv6ids)
865
+ if vm_cluster_type is not None:
866
+ pulumi.set(__self__, "vm_cluster_type", vm_cluster_type)
835
867
  if zone_id is not None:
836
868
  pulumi.set(__self__, "zone_id", zone_id)
837
869
 
@@ -919,6 +951,18 @@ class _CloudVmClusterState:
919
951
  def compartment_id(self, value: Optional[pulumi.Input[str]]):
920
952
  pulumi.set(self, "compartment_id", value)
921
953
 
954
+ @property
955
+ @pulumi.getter(name="computeModel")
956
+ def compute_model(self) -> Optional[pulumi.Input[str]]:
957
+ """
958
+ The compute model of the cloud VM cluster.
959
+ """
960
+ return pulumi.get(self, "compute_model")
961
+
962
+ @compute_model.setter
963
+ def compute_model(self, value: Optional[pulumi.Input[str]]):
964
+ pulumi.set(self, "compute_model", value)
965
+
922
966
  @property
923
967
  @pulumi.getter(name="cpuCoreCount")
924
968
  def cpu_core_count(self) -> Optional[pulumi.Input[int]]:
@@ -1280,7 +1324,7 @@ class _CloudVmClusterState:
1280
1324
  @pulumi.getter(name="scanIpIds")
1281
1325
  def scan_ip_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1282
1326
  """
1283
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
1327
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv4 addresses associated with the cloud VM cluster. SCAN IPv4 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
1284
1328
  """
1285
1329
  return pulumi.get(self, "scan_ip_ids")
1286
1330
 
@@ -1288,6 +1332,18 @@ class _CloudVmClusterState:
1288
1332
  def scan_ip_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
1289
1333
  pulumi.set(self, "scan_ip_ids", value)
1290
1334
 
1335
+ @property
1336
+ @pulumi.getter(name="scanIpv6ids")
1337
+ def scan_ipv6ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1338
+ """
1339
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv6 addresses associated with the cloud VM cluster. SCAN IPv6 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
1340
+ """
1341
+ return pulumi.get(self, "scan_ipv6ids")
1342
+
1343
+ @scan_ipv6ids.setter
1344
+ def scan_ipv6ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
1345
+ pulumi.set(self, "scan_ipv6ids", value)
1346
+
1291
1347
  @property
1292
1348
  @pulumi.getter(name="scanListenerPortTcp")
1293
1349
  def scan_listener_port_tcp(self) -> Optional[pulumi.Input[int]]:
@@ -1436,11 +1492,7 @@ class _CloudVmClusterState:
1436
1492
  @pulumi.getter(name="timeZone")
1437
1493
  def time_zone(self) -> Optional[pulumi.Input[str]]:
1438
1494
  """
1439
- The time zone to use for the cloud VM cluster. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
1440
-
1441
-
1442
- ** IMPORTANT **
1443
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1495
+ The time zone to use for the cloud VM cluster. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
1444
1496
  """
1445
1497
  return pulumi.get(self, "time_zone")
1446
1498
 
@@ -1452,7 +1504,7 @@ class _CloudVmClusterState:
1452
1504
  @pulumi.getter(name="vipIds")
1453
1505
  def vip_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1454
1506
  """
1455
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
1507
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) IPv4 addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP IPv4 address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
1456
1508
  """
1457
1509
  return pulumi.get(self, "vip_ids")
1458
1510
 
@@ -1460,6 +1512,34 @@ class _CloudVmClusterState:
1460
1512
  def vip_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
1461
1513
  pulumi.set(self, "vip_ids", value)
1462
1514
 
1515
+ @property
1516
+ @pulumi.getter
1517
+ def vipv6ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1518
+ """
1519
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) IPv6 addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP IPv6 address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
1520
+ """
1521
+ return pulumi.get(self, "vipv6ids")
1522
+
1523
+ @vipv6ids.setter
1524
+ def vipv6ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
1525
+ pulumi.set(self, "vipv6ids", value)
1526
+
1527
+ @property
1528
+ @pulumi.getter(name="vmClusterType")
1529
+ def vm_cluster_type(self) -> Optional[pulumi.Input[str]]:
1530
+ """
1531
+ The vmcluster type for the VM cluster/Cloud VM cluster.
1532
+
1533
+
1534
+ ** IMPORTANT **
1535
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1536
+ """
1537
+ return pulumi.get(self, "vm_cluster_type")
1538
+
1539
+ @vm_cluster_type.setter
1540
+ def vm_cluster_type(self, value: Optional[pulumi.Input[str]]):
1541
+ pulumi.set(self, "vm_cluster_type", value)
1542
+
1463
1543
  @property
1464
1544
  @pulumi.getter(name="zoneId")
1465
1545
  def zone_id(self) -> Optional[pulumi.Input[str]]:
@@ -1513,6 +1593,7 @@ class CloudVmCluster(pulumi.CustomResource):
1513
1593
  subscription_id: Optional[pulumi.Input[str]] = None,
1514
1594
  system_version: Optional[pulumi.Input[str]] = None,
1515
1595
  time_zone: Optional[pulumi.Input[str]] = None,
1596
+ vm_cluster_type: Optional[pulumi.Input[str]] = None,
1516
1597
  __props__=None):
1517
1598
  """
1518
1599
  This resource provides the Cloud Vm Cluster resource in Oracle Cloud Infrastructure Database service.
@@ -1579,7 +1660,8 @@ class CloudVmCluster(pulumi.CustomResource):
1579
1660
  security_attributes=cloud_vm_cluster_security_attributes,
1580
1661
  subscription_id=tenant_subscription_id,
1581
1662
  system_version=cloud_vm_cluster_system_version,
1582
- time_zone=cloud_vm_cluster_time_zone)
1663
+ time_zone=cloud_vm_cluster_time_zone,
1664
+ vm_cluster_type=cloud_vm_cluster_vm_cluster_type)
1583
1665
  ```
1584
1666
 
1585
1667
  ## Import
@@ -1637,7 +1719,8 @@ class CloudVmCluster(pulumi.CustomResource):
1637
1719
  :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet associated with the cloud VM cluster.
1638
1720
  :param pulumi.Input[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.
1639
1721
  :param pulumi.Input[str] system_version: Operating system version of the image.
1640
- :param pulumi.Input[str] time_zone: The time zone to use for the cloud VM cluster. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
1722
+ :param pulumi.Input[str] time_zone: The time zone to use for the cloud VM cluster. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
1723
+ :param pulumi.Input[str] vm_cluster_type: The vmcluster type for the VM cluster/Cloud VM cluster.
1641
1724
 
1642
1725
 
1643
1726
  ** IMPORTANT **
@@ -1714,7 +1797,8 @@ class CloudVmCluster(pulumi.CustomResource):
1714
1797
  security_attributes=cloud_vm_cluster_security_attributes,
1715
1798
  subscription_id=tenant_subscription_id,
1716
1799
  system_version=cloud_vm_cluster_system_version,
1717
- time_zone=cloud_vm_cluster_time_zone)
1800
+ time_zone=cloud_vm_cluster_time_zone,
1801
+ vm_cluster_type=cloud_vm_cluster_vm_cluster_type)
1718
1802
  ```
1719
1803
 
1720
1804
  ## Import
@@ -1775,6 +1859,7 @@ class CloudVmCluster(pulumi.CustomResource):
1775
1859
  subscription_id: Optional[pulumi.Input[str]] = None,
1776
1860
  system_version: Optional[pulumi.Input[str]] = None,
1777
1861
  time_zone: Optional[pulumi.Input[str]] = None,
1862
+ vm_cluster_type: Optional[pulumi.Input[str]] = None,
1778
1863
  __props__=None):
1779
1864
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
1780
1865
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -1837,7 +1922,9 @@ class CloudVmCluster(pulumi.CustomResource):
1837
1922
  __props__.__dict__["subscription_id"] = subscription_id
1838
1923
  __props__.__dict__["system_version"] = system_version
1839
1924
  __props__.__dict__["time_zone"] = time_zone
1925
+ __props__.__dict__["vm_cluster_type"] = vm_cluster_type
1840
1926
  __props__.__dict__["availability_domain"] = None
1927
+ __props__.__dict__["compute_model"] = None
1841
1928
  __props__.__dict__["disk_redundancy"] = None
1842
1929
  __props__.__dict__["iorm_config_caches"] = None
1843
1930
  __props__.__dict__["last_update_history_entry_id"] = None
@@ -1847,12 +1934,14 @@ class CloudVmCluster(pulumi.CustomResource):
1847
1934
  __props__.__dict__["scan_dns_name"] = None
1848
1935
  __props__.__dict__["scan_dns_record_id"] = None
1849
1936
  __props__.__dict__["scan_ip_ids"] = None
1937
+ __props__.__dict__["scan_ipv6ids"] = None
1850
1938
  __props__.__dict__["shape"] = None
1851
1939
  __props__.__dict__["state"] = None
1852
1940
  __props__.__dict__["storage_size_in_gbs"] = None
1853
1941
  __props__.__dict__["system_tags"] = None
1854
1942
  __props__.__dict__["time_created"] = None
1855
1943
  __props__.__dict__["vip_ids"] = None
1944
+ __props__.__dict__["vipv6ids"] = None
1856
1945
  __props__.__dict__["zone_id"] = None
1857
1946
  super(CloudVmCluster, __self__).__init__(
1858
1947
  'oci:Database/cloudVmCluster:CloudVmCluster',
@@ -1871,6 +1960,7 @@ class CloudVmCluster(pulumi.CustomResource):
1871
1960
  cloud_exadata_infrastructure_id: Optional[pulumi.Input[str]] = None,
1872
1961
  cluster_name: Optional[pulumi.Input[str]] = None,
1873
1962
  compartment_id: Optional[pulumi.Input[str]] = None,
1963
+ compute_model: Optional[pulumi.Input[str]] = None,
1874
1964
  cpu_core_count: Optional[pulumi.Input[int]] = None,
1875
1965
  create_async: Optional[pulumi.Input[bool]] = None,
1876
1966
  data_collection_options: Optional[pulumi.Input[Union['CloudVmClusterDataCollectionOptionsArgs', 'CloudVmClusterDataCollectionOptionsArgsDict']]] = None,
@@ -1901,6 +1991,7 @@ class CloudVmCluster(pulumi.CustomResource):
1901
1991
  scan_dns_name: Optional[pulumi.Input[str]] = None,
1902
1992
  scan_dns_record_id: Optional[pulumi.Input[str]] = None,
1903
1993
  scan_ip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1994
+ scan_ipv6ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1904
1995
  scan_listener_port_tcp: Optional[pulumi.Input[int]] = None,
1905
1996
  scan_listener_port_tcp_ssl: Optional[pulumi.Input[int]] = None,
1906
1997
  security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
@@ -1915,6 +2006,8 @@ class CloudVmCluster(pulumi.CustomResource):
1915
2006
  time_created: Optional[pulumi.Input[str]] = None,
1916
2007
  time_zone: Optional[pulumi.Input[str]] = None,
1917
2008
  vip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2009
+ vipv6ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2010
+ vm_cluster_type: Optional[pulumi.Input[str]] = None,
1918
2011
  zone_id: Optional[pulumi.Input[str]] = None) -> 'CloudVmCluster':
1919
2012
  """
1920
2013
  Get an existing CloudVmCluster resource's state with the given name, id, and optional extra
@@ -1930,6 +2023,7 @@ class CloudVmCluster(pulumi.CustomResource):
1930
2023
  :param pulumi.Input[str] cloud_exadata_infrastructure_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud Exadata infrastructure resource.
1931
2024
  :param pulumi.Input[str] cluster_name: The cluster name for cloud VM cluster. 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.
1932
2025
  :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
2026
+ :param pulumi.Input[str] compute_model: The compute model of the cloud VM cluster.
1933
2027
  :param pulumi.Input[int] cpu_core_count: (Updatable) The number of CPU cores to enable for a cloud VM cluster. Valid values depend on the specified shape:
1934
2028
  * Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
1935
2029
  * Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
@@ -1970,7 +2064,8 @@ class CloudVmCluster(pulumi.CustomResource):
1970
2064
  :param pulumi.Input[str] private_zone_id: The private zone id in which DNS records need to be created.
1971
2065
  :param pulumi.Input[str] scan_dns_name: The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
1972
2066
  :param pulumi.Input[str] scan_dns_record_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
1973
- :param pulumi.Input[Sequence[pulumi.Input[str]]] scan_ip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
2067
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] scan_ip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv4 addresses associated with the cloud VM cluster. SCAN IPv4 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
2068
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] scan_ipv6ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv6 addresses associated with the cloud VM cluster. SCAN IPv6 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
1974
2069
  :param pulumi.Input[int] scan_listener_port_tcp: The TCP Single Client Access Name (SCAN) port. The default port is 1521.
1975
2070
  :param pulumi.Input[int] scan_listener_port_tcp_ssl: The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
1976
2071
  :param pulumi.Input[Mapping[str, pulumi.Input[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"}}}`
@@ -1983,12 +2078,14 @@ class CloudVmCluster(pulumi.CustomResource):
1983
2078
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
1984
2079
  :param pulumi.Input[str] system_version: Operating system version of the image.
1985
2080
  :param pulumi.Input[str] time_created: The date and time that the cloud VM cluster was created.
1986
- :param pulumi.Input[str] time_zone: The time zone to use for the cloud VM cluster. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
2081
+ :param pulumi.Input[str] time_zone: The time zone to use for the cloud VM cluster. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
2082
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] vip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) IPv4 addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP IPv4 address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
2083
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] vipv6ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) IPv6 addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP IPv6 address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
2084
+ :param pulumi.Input[str] vm_cluster_type: The vmcluster type for the VM cluster/Cloud VM cluster.
1987
2085
 
1988
2086
 
1989
2087
  ** IMPORTANT **
1990
2088
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1991
- :param pulumi.Input[Sequence[pulumi.Input[str]]] vip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
1992
2089
  :param pulumi.Input[str] zone_id: The OCID of the zone the cloud VM cluster is associated with.
1993
2090
  """
1994
2091
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -2002,6 +2099,7 @@ class CloudVmCluster(pulumi.CustomResource):
2002
2099
  __props__.__dict__["cloud_exadata_infrastructure_id"] = cloud_exadata_infrastructure_id
2003
2100
  __props__.__dict__["cluster_name"] = cluster_name
2004
2101
  __props__.__dict__["compartment_id"] = compartment_id
2102
+ __props__.__dict__["compute_model"] = compute_model
2005
2103
  __props__.__dict__["cpu_core_count"] = cpu_core_count
2006
2104
  __props__.__dict__["create_async"] = create_async
2007
2105
  __props__.__dict__["data_collection_options"] = data_collection_options
@@ -2032,6 +2130,7 @@ class CloudVmCluster(pulumi.CustomResource):
2032
2130
  __props__.__dict__["scan_dns_name"] = scan_dns_name
2033
2131
  __props__.__dict__["scan_dns_record_id"] = scan_dns_record_id
2034
2132
  __props__.__dict__["scan_ip_ids"] = scan_ip_ids
2133
+ __props__.__dict__["scan_ipv6ids"] = scan_ipv6ids
2035
2134
  __props__.__dict__["scan_listener_port_tcp"] = scan_listener_port_tcp
2036
2135
  __props__.__dict__["scan_listener_port_tcp_ssl"] = scan_listener_port_tcp_ssl
2037
2136
  __props__.__dict__["security_attributes"] = security_attributes
@@ -2046,6 +2145,8 @@ class CloudVmCluster(pulumi.CustomResource):
2046
2145
  __props__.__dict__["time_created"] = time_created
2047
2146
  __props__.__dict__["time_zone"] = time_zone
2048
2147
  __props__.__dict__["vip_ids"] = vip_ids
2148
+ __props__.__dict__["vipv6ids"] = vipv6ids
2149
+ __props__.__dict__["vm_cluster_type"] = vm_cluster_type
2049
2150
  __props__.__dict__["zone_id"] = zone_id
2050
2151
  return CloudVmCluster(resource_name, opts=opts, __props__=__props__)
2051
2152
 
@@ -2105,6 +2206,14 @@ class CloudVmCluster(pulumi.CustomResource):
2105
2206
  """
2106
2207
  return pulumi.get(self, "compartment_id")
2107
2208
 
2209
+ @property
2210
+ @pulumi.getter(name="computeModel")
2211
+ def compute_model(self) -> pulumi.Output[str]:
2212
+ """
2213
+ The compute model of the cloud VM cluster.
2214
+ """
2215
+ return pulumi.get(self, "compute_model")
2216
+
2108
2217
  @property
2109
2218
  @pulumi.getter(name="cpuCoreCount")
2110
2219
  def cpu_core_count(self) -> pulumi.Output[int]:
@@ -2350,10 +2459,18 @@ class CloudVmCluster(pulumi.CustomResource):
2350
2459
  @pulumi.getter(name="scanIpIds")
2351
2460
  def scan_ip_ids(self) -> pulumi.Output[Sequence[str]]:
2352
2461
  """
2353
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
2462
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv4 addresses associated with the cloud VM cluster. SCAN IPv4 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
2354
2463
  """
2355
2464
  return pulumi.get(self, "scan_ip_ids")
2356
2465
 
2466
+ @property
2467
+ @pulumi.getter(name="scanIpv6ids")
2468
+ def scan_ipv6ids(self) -> pulumi.Output[Sequence[str]]:
2469
+ """
2470
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv6 addresses associated with the cloud VM cluster. SCAN IPv6 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
2471
+ """
2472
+ return pulumi.get(self, "scan_ipv6ids")
2473
+
2357
2474
  @property
2358
2475
  @pulumi.getter(name="scanListenerPortTcp")
2359
2476
  def scan_listener_port_tcp(self) -> pulumi.Output[int]:
@@ -2454,11 +2571,7 @@ class CloudVmCluster(pulumi.CustomResource):
2454
2571
  @pulumi.getter(name="timeZone")
2455
2572
  def time_zone(self) -> pulumi.Output[str]:
2456
2573
  """
2457
- The time zone to use for the cloud VM cluster. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
2458
-
2459
-
2460
- ** IMPORTANT **
2461
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
2574
+ The time zone to use for the cloud VM cluster. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
2462
2575
  """
2463
2576
  return pulumi.get(self, "time_zone")
2464
2577
 
@@ -2466,10 +2579,30 @@ class CloudVmCluster(pulumi.CustomResource):
2466
2579
  @pulumi.getter(name="vipIds")
2467
2580
  def vip_ids(self) -> pulumi.Output[Sequence[str]]:
2468
2581
  """
2469
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
2582
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) IPv4 addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP IPv4 address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
2470
2583
  """
2471
2584
  return pulumi.get(self, "vip_ids")
2472
2585
 
2586
+ @property
2587
+ @pulumi.getter
2588
+ def vipv6ids(self) -> pulumi.Output[Sequence[str]]:
2589
+ """
2590
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) IPv6 addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP IPv6 address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
2591
+ """
2592
+ return pulumi.get(self, "vipv6ids")
2593
+
2594
+ @property
2595
+ @pulumi.getter(name="vmClusterType")
2596
+ def vm_cluster_type(self) -> pulumi.Output[str]:
2597
+ """
2598
+ The vmcluster type for the VM cluster/Cloud VM cluster.
2599
+
2600
+
2601
+ ** IMPORTANT **
2602
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
2603
+ """
2604
+ return pulumi.get(self, "vm_cluster_type")
2605
+
2473
2606
  @property
2474
2607
  @pulumi.getter(name="zoneId")
2475
2608
  def zone_id(self) -> pulumi.Output[str]: