pulumi-oci 2.26.0a1741415311__py3-none-any.whl → 2.26.0a1741943394__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +67 -0
- pulumi_oci/containerengine/_inputs.py +34 -35
- pulumi_oci/containerengine/cluster.py +2 -0
- pulumi_oci/containerengine/container_instance.py +2 -4
- pulumi_oci/containerengine/outputs.py +110 -21
- pulumi_oci/containerinstances/outputs.py +0 -14
- pulumi_oci/core/_inputs.py +21 -33
- pulumi_oci/core/outputs.py +13 -21
- pulumi_oci/database/__init__.py +1 -0
- pulumi_oci/database/_inputs.py +704 -0
- pulumi_oci/database/application_vip.py +59 -10
- pulumi_oci/database/autonomous_database.py +7 -28
- pulumi_oci/database/backup.py +153 -5
- pulumi_oci/database/cloud_exadata_infrastructure.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +163 -30
- pulumi_oci/database/db_node.py +64 -8
- pulumi_oci/database/exadata_infrastructure.py +157 -3
- pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py +1615 -0
- pulumi_oci/database/exadb_vm_cluster.py +84 -7
- pulumi_oci/database/exascale_db_storage_vault.py +147 -0
- pulumi_oci/database/external_container_database.py +4 -4
- pulumi_oci/database/external_non_container_database.py +4 -4
- pulumi_oci/database/external_pluggable_database.py +4 -4
- pulumi_oci/database/get_application_vip.py +16 -2
- pulumi_oci/database/get_autonomous_database.py +0 -3
- pulumi_oci/database/get_backups.py +136 -10
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +43 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +59 -3
- pulumi_oci/database/get_cloud_vm_clusters.py +28 -6
- pulumi_oci/database/get_database_software_images.py +20 -1
- pulumi_oci/database/get_db_node.py +31 -4
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +57 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +29 -1
- pulumi_oci/database/get_exadb_vm_clusters.py +25 -3
- pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
- pulumi_oci/database/get_exascale_db_storage_vaults.py +47 -3
- pulumi_oci/database/get_external_container_database.py +1 -1
- pulumi_oci/database/get_external_non_container_database.py +1 -1
- pulumi_oci/database/get_external_pluggable_database.py +1 -1
- pulumi_oci/database/get_flex_components.py +28 -6
- pulumi_oci/database/get_vm_cluster.py +60 -4
- pulumi_oci/database/get_vm_clusters.py +25 -3
- pulumi_oci/database/outputs.py +1084 -42
- pulumi_oci/database/pluggable_database.py +13 -13
- pulumi_oci/database/vm_cluster.py +172 -18
- pulumi_oci/database/vm_cluster_add_virtual_network.py +114 -2
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +114 -2
- pulumi_oci/datasafe/__init__.py +7 -0
- pulumi_oci/datasafe/_inputs.py +301 -0
- pulumi_oci/datasafe/discovery_mod.py +49 -0
- pulumi_oci/datasafe/get_discovery_job.py +15 -1
- pulumi_oci/datasafe/get_masking_report.py +46 -4
- pulumi_oci/datasafe/get_masking_report_masking_errors.py +166 -0
- pulumi_oci/datasafe/get_security_assessment_finding.py +31 -1
- pulumi_oci/datasafe/get_security_assessment_findings.py +43 -3
- pulumi_oci/datasafe/get_sensitive_column_analytics.py +370 -0
- pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
- pulumi_oci/datasafe/get_sensitive_type_group.py +253 -0
- pulumi_oci/datasafe/get_sensitive_type_group_grouped_sensitive_types.py +166 -0
- pulumi_oci/datasafe/get_sensitive_type_groups.py +294 -0
- pulumi_oci/datasafe/outputs.py +676 -3
- pulumi_oci/datasafe/sensitive_data_model.py +49 -0
- pulumi_oci/datasafe/sensitive_type_group.py +563 -0
- pulumi_oci/datasafe/sensitive_type_group_grouped_sensitive_type.py +287 -0
- pulumi_oci/datascience/__init__.py +4 -0
- pulumi_oci/datascience/_inputs.py +1160 -41
- pulumi_oci/datascience/get_model.py +29 -1
- pulumi_oci/datascience/get_model_custom_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_defined_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_version_set.py +15 -1
- pulumi_oci/datascience/get_model_version_sets.py +25 -3
- pulumi_oci/datascience/get_models.py +25 -3
- pulumi_oci/datascience/get_pipeline.py +15 -1
- pulumi_oci/datascience/model.py +64 -0
- pulumi_oci/datascience/model_custom_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_defined_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_version_set.py +28 -0
- pulumi_oci/datascience/outputs.py +4343 -2164
- pulumi_oci/datascience/pipeline.py +48 -141
- pulumi_oci/datascience/pipeline_run.py +32 -0
- pulumi_oci/dblm/__init__.py +17 -0
- pulumi_oci/dblm/_inputs.py +275 -0
- pulumi_oci/dblm/get_vulnerability.py +242 -0
- pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py +220 -0
- pulumi_oci/dblm/get_vulnerability_notifications.py +144 -0
- pulumi_oci/dblm/get_vulnerability_resources.py +258 -0
- pulumi_oci/dblm/get_vulnerability_scan.py +267 -0
- pulumi_oci/dblm/get_vulnerability_scans.py +270 -0
- pulumi_oci/dblm/get_vulnerability_vulnerabilities.py +258 -0
- pulumi_oci/dblm/outputs.py +1294 -0
- pulumi_oci/dblm/vulnerability_scan.py +521 -0
- pulumi_oci/email/dkim.py +120 -20
- pulumi_oci/email/get_dkim.py +40 -1
- pulumi_oci/email/outputs.py +29 -0
- pulumi_oci/filestorage/__init__.py +3 -0
- pulumi_oci/filestorage/_inputs.py +49 -0
- pulumi_oci/filestorage/file_system.py +105 -0
- pulumi_oci/filestorage/file_system_quota_rule.py +593 -0
- pulumi_oci/filestorage/get_file_system_quota_rule.py +248 -0
- pulumi_oci/filestorage/get_file_system_quota_rules.py +210 -0
- pulumi_oci/filestorage/outputs.py +186 -0
- pulumi_oci/mysql/_inputs.py +1239 -10
- pulumi_oci/mysql/channel.py +28 -0
- pulumi_oci/mysql/get_channel.py +15 -1
- pulumi_oci/mysql/get_mysql_backup.py +15 -1
- pulumi_oci/mysql/get_mysql_configuration.py +15 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +28 -0
- pulumi_oci/mysql/mysql_configuration.py +106 -0
- pulumi_oci/mysql/mysql_db_system.py +36 -0
- pulumi_oci/mysql/outputs.py +2008 -35
- pulumi_oci/opensearch/__init__.py +3 -0
- pulumi_oci/opensearch/_inputs.py +101 -0
- pulumi_oci/opensearch/cluster.py +76 -29
- pulumi_oci/opensearch/get_opensearch_cluster.py +12 -1
- pulumi_oci/opensearch/get_opensearch_cluster_pipeline.py +433 -0
- pulumi_oci/opensearch/get_opensearch_cluster_pipelines.py +218 -0
- pulumi_oci/opensearch/opensearch_cluster_pipeline.py +1172 -0
- pulumi_oci/opensearch/outputs.py +425 -0
- pulumi_oci/psql/_inputs.py +258 -0
- pulumi_oci/psql/backup.py +129 -28
- pulumi_oci/psql/db_system.py +10 -0
- pulumi_oci/psql/get_backup.py +47 -2
- pulumi_oci/psql/get_backups.py +3 -0
- pulumi_oci/psql/get_configurations.py +23 -1
- pulumi_oci/psql/get_db_system.py +1 -1
- pulumi_oci/psql/get_db_systems.py +1 -1
- pulumi_oci/psql/outputs.py +541 -5
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/redis_cluster.py +7 -7
- {pulumi_oci-2.26.0a1741415311.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/METADATA +1 -1
- {pulumi_oci-2.26.0a1741415311.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/RECORD +135 -106
- {pulumi_oci-2.26.0a1741415311.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.26.0a1741415311.dist-info → pulumi_oci-2.26.0a1741943394.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)
|
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)
|
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)
|
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)
|
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]:
|