pulumi-oci 2.26.0a1741847591__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.0a1741847591.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/METADATA +1 -1
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/RECORD +135 -106
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/top_level.txt +0 -0
@@ -39,6 +39,7 @@ class ExadataInfrastructureArgs:
|
|
39
39
|
contacts: Optional[pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureContactArgs']]]] = None,
|
40
40
|
corporate_proxy: Optional[pulumi.Input[str]] = None,
|
41
41
|
create_async: Optional[pulumi.Input[bool]] = None,
|
42
|
+
database_server_type: Optional[pulumi.Input[str]] = None,
|
42
43
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
43
44
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
44
45
|
is_cps_offline_report_enabled: Optional[pulumi.Input[bool]] = None,
|
@@ -46,7 +47,8 @@ class ExadataInfrastructureArgs:
|
|
46
47
|
maintenance_window: Optional[pulumi.Input['ExadataInfrastructureMaintenanceWindowArgs']] = None,
|
47
48
|
multi_rack_configuration_file: Optional[pulumi.Input[str]] = None,
|
48
49
|
network_bonding_mode_details: Optional[pulumi.Input['ExadataInfrastructureNetworkBondingModeDetailsArgs']] = None,
|
49
|
-
storage_count: Optional[pulumi.Input[int]] = None
|
50
|
+
storage_count: Optional[pulumi.Input[int]] = None,
|
51
|
+
storage_server_type: Optional[pulumi.Input[str]] = None):
|
50
52
|
"""
|
51
53
|
The set of arguments for constructing a ExadataInfrastructure resource.
|
52
54
|
:param pulumi.Input[str] admin_network_cidr: (Updatable) The CIDR block for the Exadata administration network.
|
@@ -69,6 +71,7 @@ class ExadataInfrastructureArgs:
|
|
69
71
|
:param pulumi.Input[int] compute_count: The number of compute servers for the Exadata infrastructure.
|
70
72
|
:param pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureContactArgs']]] contacts: (Updatable) The list of contacts for the Exadata infrastructure.
|
71
73
|
:param pulumi.Input[str] corporate_proxy: (Updatable) The corporate network proxy for access to the control plane network. Oracle recommends using an HTTPS proxy when possible for enhanced security.
|
74
|
+
:param pulumi.Input[str] database_server_type: The database server type of the Exadata infrastructure.
|
72
75
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
73
76
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
74
77
|
:param pulumi.Input[bool] is_cps_offline_report_enabled: (Updatable) Indicates whether cps offline diagnostic report is enabled for this Exadata infrastructure. This will allow a customer to quickly check status themselves and fix problems on their end, saving time and frustration for both Oracle and the customer when they find the CPS in a disconnected state.You can enable offline diagnostic report during Exadata infrastructure provisioning. You can also disable or enable it at any time using the UpdateExadatainfrastructure API.
|
@@ -77,6 +80,7 @@ class ExadataInfrastructureArgs:
|
|
77
80
|
:param pulumi.Input[str] multi_rack_configuration_file: (Updatable) The base64 encoded Multi-Rack configuration json file.
|
78
81
|
:param pulumi.Input['ExadataInfrastructureNetworkBondingModeDetailsArgs'] network_bonding_mode_details: (Updatable) Details of bonding mode for Client and Backup and DR networks of an Exadata infrastructure.
|
79
82
|
:param pulumi.Input[int] storage_count: The number of storage servers for the Exadata infrastructure.
|
83
|
+
:param pulumi.Input[str] storage_server_type: The storage server type of the Exadata infrastructure.
|
80
84
|
"""
|
81
85
|
pulumi.set(__self__, "admin_network_cidr", admin_network_cidr)
|
82
86
|
pulumi.set(__self__, "cloud_control_plane_server1", cloud_control_plane_server1)
|
@@ -102,6 +106,8 @@ class ExadataInfrastructureArgs:
|
|
102
106
|
pulumi.set(__self__, "corporate_proxy", corporate_proxy)
|
103
107
|
if create_async is not None:
|
104
108
|
pulumi.set(__self__, "create_async", create_async)
|
109
|
+
if database_server_type is not None:
|
110
|
+
pulumi.set(__self__, "database_server_type", database_server_type)
|
105
111
|
if defined_tags is not None:
|
106
112
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
107
113
|
if freeform_tags is not None:
|
@@ -118,6 +124,8 @@ class ExadataInfrastructureArgs:
|
|
118
124
|
pulumi.set(__self__, "network_bonding_mode_details", network_bonding_mode_details)
|
119
125
|
if storage_count is not None:
|
120
126
|
pulumi.set(__self__, "storage_count", storage_count)
|
127
|
+
if storage_server_type is not None:
|
128
|
+
pulumi.set(__self__, "storage_server_type", storage_server_type)
|
121
129
|
|
122
130
|
@property
|
123
131
|
@pulumi.getter(name="adminNetworkCidr")
|
@@ -335,6 +343,18 @@ class ExadataInfrastructureArgs:
|
|
335
343
|
def create_async(self, value: Optional[pulumi.Input[bool]]):
|
336
344
|
pulumi.set(self, "create_async", value)
|
337
345
|
|
346
|
+
@property
|
347
|
+
@pulumi.getter(name="databaseServerType")
|
348
|
+
def database_server_type(self) -> Optional[pulumi.Input[str]]:
|
349
|
+
"""
|
350
|
+
The database server type of the Exadata infrastructure.
|
351
|
+
"""
|
352
|
+
return pulumi.get(self, "database_server_type")
|
353
|
+
|
354
|
+
@database_server_type.setter
|
355
|
+
def database_server_type(self, value: Optional[pulumi.Input[str]]):
|
356
|
+
pulumi.set(self, "database_server_type", value)
|
357
|
+
|
338
358
|
@property
|
339
359
|
@pulumi.getter(name="definedTags")
|
340
360
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -431,6 +451,18 @@ class ExadataInfrastructureArgs:
|
|
431
451
|
def storage_count(self, value: Optional[pulumi.Input[int]]):
|
432
452
|
pulumi.set(self, "storage_count", value)
|
433
453
|
|
454
|
+
@property
|
455
|
+
@pulumi.getter(name="storageServerType")
|
456
|
+
def storage_server_type(self) -> Optional[pulumi.Input[str]]:
|
457
|
+
"""
|
458
|
+
The storage server type of the Exadata infrastructure.
|
459
|
+
"""
|
460
|
+
return pulumi.get(self, "storage_server_type")
|
461
|
+
|
462
|
+
@storage_server_type.setter
|
463
|
+
def storage_server_type(self, value: Optional[pulumi.Input[str]]):
|
464
|
+
pulumi.set(self, "storage_server_type", value)
|
465
|
+
|
434
466
|
|
435
467
|
@pulumi.input_type
|
436
468
|
class _ExadataInfrastructureState:
|
@@ -446,18 +478,21 @@ class _ExadataInfrastructureState:
|
|
446
478
|
cloud_control_plane_server2: Optional[pulumi.Input[str]] = None,
|
447
479
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
448
480
|
compute_count: Optional[pulumi.Input[int]] = None,
|
481
|
+
compute_model: Optional[pulumi.Input[str]] = None,
|
449
482
|
contacts: Optional[pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureContactArgs']]]] = None,
|
450
483
|
corporate_proxy: Optional[pulumi.Input[str]] = None,
|
451
484
|
cpus_enabled: Optional[pulumi.Input[int]] = None,
|
452
485
|
create_async: Optional[pulumi.Input[bool]] = None,
|
453
486
|
csi_number: Optional[pulumi.Input[str]] = None,
|
454
487
|
data_storage_size_in_tbs: Optional[pulumi.Input[float]] = None,
|
488
|
+
database_server_type: Optional[pulumi.Input[str]] = None,
|
455
489
|
db_node_storage_size_in_gbs: Optional[pulumi.Input[int]] = None,
|
456
490
|
db_server_version: Optional[pulumi.Input[str]] = None,
|
457
491
|
defined_file_system_configurations: Optional[pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureDefinedFileSystemConfigurationArgs']]]] = None,
|
458
492
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
459
493
|
display_name: Optional[pulumi.Input[str]] = None,
|
460
494
|
dns_servers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
495
|
+
exascale_configs: Optional[pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureExascaleConfigArgs']]]] = None,
|
461
496
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
462
497
|
gateway: Optional[pulumi.Input[str]] = None,
|
463
498
|
infini_band_network_cidr: Optional[pulumi.Input[str]] = None,
|
@@ -481,6 +516,7 @@ class _ExadataInfrastructureState:
|
|
481
516
|
shape: Optional[pulumi.Input[str]] = None,
|
482
517
|
state: Optional[pulumi.Input[str]] = None,
|
483
518
|
storage_count: Optional[pulumi.Input[int]] = None,
|
519
|
+
storage_server_type: Optional[pulumi.Input[str]] = None,
|
484
520
|
storage_server_version: Optional[pulumi.Input[str]] = None,
|
485
521
|
time_created: Optional[pulumi.Input[str]] = None,
|
486
522
|
time_zone: Optional[pulumi.Input[str]] = None):
|
@@ -500,17 +536,20 @@ class _ExadataInfrastructureState:
|
|
500
536
|
:param pulumi.Input[str] cloud_control_plane_server2: (Updatable) The IP address for the second control plane server.
|
501
537
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
502
538
|
:param pulumi.Input[int] compute_count: The number of compute servers for the Exadata infrastructure.
|
539
|
+
:param pulumi.Input[str] compute_model: The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
|
503
540
|
:param pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureContactArgs']]] contacts: (Updatable) The list of contacts for the Exadata infrastructure.
|
504
541
|
:param pulumi.Input[str] corporate_proxy: (Updatable) The corporate network proxy for access to the control plane network. Oracle recommends using an HTTPS proxy when possible for enhanced security.
|
505
542
|
:param pulumi.Input[int] cpus_enabled: The number of enabled CPU cores.
|
506
543
|
:param pulumi.Input[str] csi_number: The CSI Number of the Exadata infrastructure.
|
507
544
|
:param pulumi.Input[float] data_storage_size_in_tbs: Size, in terabytes, of the DATA disk group.
|
545
|
+
:param pulumi.Input[str] database_server_type: The database server type of the Exadata infrastructure.
|
508
546
|
:param pulumi.Input[int] db_node_storage_size_in_gbs: The local node storage allocated in GBs.
|
509
547
|
:param pulumi.Input[str] db_server_version: The software version of the database servers (dom0) in the Exadata infrastructure.
|
510
548
|
:param pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureDefinedFileSystemConfigurationArgs']]] defined_file_system_configurations: Details of the file system configuration of the Exadata infrastructure.
|
511
549
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
512
550
|
:param pulumi.Input[str] display_name: The user-friendly name for the Exadata infrastructure. The name does not need to be unique.
|
513
551
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] dns_servers: (Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.
|
552
|
+
:param pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureExascaleConfigArgs']]] exascale_configs: The exascale config response details for the Exadata Cloud@Customer infrastructure or cloud Exadata infrastructure . Applies to both Exadata Cloud@Customer instances and Exadata Cloud Service instances.
|
514
553
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
515
554
|
:param pulumi.Input[str] gateway: (Updatable) The gateway for the control plane network.
|
516
555
|
:param pulumi.Input[str] infini_band_network_cidr: (Updatable) The CIDR block for the Exadata InfiniBand interconnect.
|
@@ -534,6 +573,7 @@ class _ExadataInfrastructureState:
|
|
534
573
|
:param pulumi.Input[str] shape: The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
|
535
574
|
:param pulumi.Input[str] state: The current lifecycle state of the Exadata infrastructure.
|
536
575
|
:param pulumi.Input[int] storage_count: The number of storage servers for the Exadata infrastructure.
|
576
|
+
:param pulumi.Input[str] storage_server_type: The storage server type of the Exadata infrastructure.
|
537
577
|
:param pulumi.Input[str] storage_server_version: The software version of the storage servers (cells) in the Exadata infrastructure.
|
538
578
|
:param pulumi.Input[str] time_created: The date and time the Exadata infrastructure was created.
|
539
579
|
:param pulumi.Input[str] time_zone: (Updatable) The time zone of the Exadata infrastructure. For details, see [Exadata Infrastructure Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
@@ -560,6 +600,8 @@ class _ExadataInfrastructureState:
|
|
560
600
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
561
601
|
if compute_count is not None:
|
562
602
|
pulumi.set(__self__, "compute_count", compute_count)
|
603
|
+
if compute_model is not None:
|
604
|
+
pulumi.set(__self__, "compute_model", compute_model)
|
563
605
|
if contacts is not None:
|
564
606
|
pulumi.set(__self__, "contacts", contacts)
|
565
607
|
if corporate_proxy is not None:
|
@@ -572,6 +614,8 @@ class _ExadataInfrastructureState:
|
|
572
614
|
pulumi.set(__self__, "csi_number", csi_number)
|
573
615
|
if data_storage_size_in_tbs is not None:
|
574
616
|
pulumi.set(__self__, "data_storage_size_in_tbs", data_storage_size_in_tbs)
|
617
|
+
if database_server_type is not None:
|
618
|
+
pulumi.set(__self__, "database_server_type", database_server_type)
|
575
619
|
if db_node_storage_size_in_gbs is not None:
|
576
620
|
pulumi.set(__self__, "db_node_storage_size_in_gbs", db_node_storage_size_in_gbs)
|
577
621
|
if db_server_version is not None:
|
@@ -584,6 +628,8 @@ class _ExadataInfrastructureState:
|
|
584
628
|
pulumi.set(__self__, "display_name", display_name)
|
585
629
|
if dns_servers is not None:
|
586
630
|
pulumi.set(__self__, "dns_servers", dns_servers)
|
631
|
+
if exascale_configs is not None:
|
632
|
+
pulumi.set(__self__, "exascale_configs", exascale_configs)
|
587
633
|
if freeform_tags is not None:
|
588
634
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
589
635
|
if gateway is not None:
|
@@ -630,6 +676,8 @@ class _ExadataInfrastructureState:
|
|
630
676
|
pulumi.set(__self__, "state", state)
|
631
677
|
if storage_count is not None:
|
632
678
|
pulumi.set(__self__, "storage_count", storage_count)
|
679
|
+
if storage_server_type is not None:
|
680
|
+
pulumi.set(__self__, "storage_server_type", storage_server_type)
|
633
681
|
if storage_server_version is not None:
|
634
682
|
pulumi.set(__self__, "storage_server_version", storage_server_version)
|
635
683
|
if time_created is not None:
|
@@ -772,6 +820,18 @@ class _ExadataInfrastructureState:
|
|
772
820
|
def compute_count(self, value: Optional[pulumi.Input[int]]):
|
773
821
|
pulumi.set(self, "compute_count", value)
|
774
822
|
|
823
|
+
@property
|
824
|
+
@pulumi.getter(name="computeModel")
|
825
|
+
def compute_model(self) -> Optional[pulumi.Input[str]]:
|
826
|
+
"""
|
827
|
+
The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
|
828
|
+
"""
|
829
|
+
return pulumi.get(self, "compute_model")
|
830
|
+
|
831
|
+
@compute_model.setter
|
832
|
+
def compute_model(self, value: Optional[pulumi.Input[str]]):
|
833
|
+
pulumi.set(self, "compute_model", value)
|
834
|
+
|
775
835
|
@property
|
776
836
|
@pulumi.getter
|
777
837
|
def contacts(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureContactArgs']]]]:
|
@@ -841,6 +901,18 @@ class _ExadataInfrastructureState:
|
|
841
901
|
def data_storage_size_in_tbs(self, value: Optional[pulumi.Input[float]]):
|
842
902
|
pulumi.set(self, "data_storage_size_in_tbs", value)
|
843
903
|
|
904
|
+
@property
|
905
|
+
@pulumi.getter(name="databaseServerType")
|
906
|
+
def database_server_type(self) -> Optional[pulumi.Input[str]]:
|
907
|
+
"""
|
908
|
+
The database server type of the Exadata infrastructure.
|
909
|
+
"""
|
910
|
+
return pulumi.get(self, "database_server_type")
|
911
|
+
|
912
|
+
@database_server_type.setter
|
913
|
+
def database_server_type(self, value: Optional[pulumi.Input[str]]):
|
914
|
+
pulumi.set(self, "database_server_type", value)
|
915
|
+
|
844
916
|
@property
|
845
917
|
@pulumi.getter(name="dbNodeStorageSizeInGbs")
|
846
918
|
def db_node_storage_size_in_gbs(self) -> Optional[pulumi.Input[int]]:
|
@@ -913,6 +985,18 @@ class _ExadataInfrastructureState:
|
|
913
985
|
def dns_servers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
914
986
|
pulumi.set(self, "dns_servers", value)
|
915
987
|
|
988
|
+
@property
|
989
|
+
@pulumi.getter(name="exascaleConfigs")
|
990
|
+
def exascale_configs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureExascaleConfigArgs']]]]:
|
991
|
+
"""
|
992
|
+
The exascale config response details for the Exadata Cloud@Customer infrastructure or cloud Exadata infrastructure . Applies to both Exadata Cloud@Customer instances and Exadata Cloud Service instances.
|
993
|
+
"""
|
994
|
+
return pulumi.get(self, "exascale_configs")
|
995
|
+
|
996
|
+
@exascale_configs.setter
|
997
|
+
def exascale_configs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureExascaleConfigArgs']]]]):
|
998
|
+
pulumi.set(self, "exascale_configs", value)
|
999
|
+
|
916
1000
|
@property
|
917
1001
|
@pulumi.getter(name="freeformTags")
|
918
1002
|
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -1189,6 +1273,18 @@ class _ExadataInfrastructureState:
|
|
1189
1273
|
def storage_count(self, value: Optional[pulumi.Input[int]]):
|
1190
1274
|
pulumi.set(self, "storage_count", value)
|
1191
1275
|
|
1276
|
+
@property
|
1277
|
+
@pulumi.getter(name="storageServerType")
|
1278
|
+
def storage_server_type(self) -> Optional[pulumi.Input[str]]:
|
1279
|
+
"""
|
1280
|
+
The storage server type of the Exadata infrastructure.
|
1281
|
+
"""
|
1282
|
+
return pulumi.get(self, "storage_server_type")
|
1283
|
+
|
1284
|
+
@storage_server_type.setter
|
1285
|
+
def storage_server_type(self, value: Optional[pulumi.Input[str]]):
|
1286
|
+
pulumi.set(self, "storage_server_type", value)
|
1287
|
+
|
1192
1288
|
@property
|
1193
1289
|
@pulumi.getter(name="storageServerVersion")
|
1194
1290
|
def storage_server_version(self) -> Optional[pulumi.Input[str]]:
|
@@ -1241,6 +1337,7 @@ class ExadataInfrastructure(pulumi.CustomResource):
|
|
1241
1337
|
contacts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ExadataInfrastructureContactArgs', 'ExadataInfrastructureContactArgsDict']]]]] = None,
|
1242
1338
|
corporate_proxy: Optional[pulumi.Input[str]] = None,
|
1243
1339
|
create_async: Optional[pulumi.Input[bool]] = None,
|
1340
|
+
database_server_type: Optional[pulumi.Input[str]] = None,
|
1244
1341
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1245
1342
|
display_name: Optional[pulumi.Input[str]] = None,
|
1246
1343
|
dns_servers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
@@ -1256,6 +1353,7 @@ class ExadataInfrastructure(pulumi.CustomResource):
|
|
1256
1353
|
ntp_servers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1257
1354
|
shape: Optional[pulumi.Input[str]] = None,
|
1258
1355
|
storage_count: Optional[pulumi.Input[int]] = None,
|
1356
|
+
storage_server_type: Optional[pulumi.Input[str]] = None,
|
1259
1357
|
time_zone: Optional[pulumi.Input[str]] = None,
|
1260
1358
|
__props__=None):
|
1261
1359
|
"""
|
@@ -1293,6 +1391,7 @@ class ExadataInfrastructure(pulumi.CustomResource):
|
|
1293
1391
|
"phone_number": exadata_infrastructure_contacts_phone_number,
|
1294
1392
|
}],
|
1295
1393
|
corporate_proxy=exadata_infrastructure_corporate_proxy,
|
1394
|
+
database_server_type=exadata_infrastructure_database_server_type,
|
1296
1395
|
defined_tags=exadata_infrastructure_defined_tags,
|
1297
1396
|
freeform_tags={
|
1298
1397
|
"Department": "Finance",
|
@@ -1321,7 +1420,8 @@ class ExadataInfrastructure(pulumi.CustomResource):
|
|
1321
1420
|
"client_network_bonding_mode": exadata_infrastructure_network_bonding_mode_details_client_network_bonding_mode,
|
1322
1421
|
"dr_network_bonding_mode": exadata_infrastructure_network_bonding_mode_details_dr_network_bonding_mode,
|
1323
1422
|
},
|
1324
|
-
storage_count=exadata_infrastructure_storage_count
|
1423
|
+
storage_count=exadata_infrastructure_storage_count,
|
1424
|
+
storage_server_type=exadata_infrastructure_storage_server_type)
|
1325
1425
|
```
|
1326
1426
|
|
1327
1427
|
## Import
|
@@ -1346,6 +1446,7 @@ class ExadataInfrastructure(pulumi.CustomResource):
|
|
1346
1446
|
:param pulumi.Input[int] compute_count: The number of compute servers for the Exadata infrastructure.
|
1347
1447
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ExadataInfrastructureContactArgs', 'ExadataInfrastructureContactArgsDict']]]] contacts: (Updatable) The list of contacts for the Exadata infrastructure.
|
1348
1448
|
:param pulumi.Input[str] corporate_proxy: (Updatable) The corporate network proxy for access to the control plane network. Oracle recommends using an HTTPS proxy when possible for enhanced security.
|
1449
|
+
:param pulumi.Input[str] database_server_type: The database server type of the Exadata infrastructure.
|
1349
1450
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
1350
1451
|
:param pulumi.Input[str] display_name: The user-friendly name for the Exadata infrastructure. The name does not need to be unique.
|
1351
1452
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] dns_servers: (Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.
|
@@ -1361,6 +1462,7 @@ class ExadataInfrastructure(pulumi.CustomResource):
|
|
1361
1462
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ntp_servers: (Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.
|
1362
1463
|
:param pulumi.Input[str] shape: The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
|
1363
1464
|
:param pulumi.Input[int] storage_count: The number of storage servers for the Exadata infrastructure.
|
1465
|
+
:param pulumi.Input[str] storage_server_type: The storage server type of the Exadata infrastructure.
|
1364
1466
|
:param pulumi.Input[str] time_zone: (Updatable) The time zone of the Exadata infrastructure. For details, see [Exadata Infrastructure Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
1365
1467
|
"""
|
1366
1468
|
...
|
@@ -1404,6 +1506,7 @@ class ExadataInfrastructure(pulumi.CustomResource):
|
|
1404
1506
|
"phone_number": exadata_infrastructure_contacts_phone_number,
|
1405
1507
|
}],
|
1406
1508
|
corporate_proxy=exadata_infrastructure_corporate_proxy,
|
1509
|
+
database_server_type=exadata_infrastructure_database_server_type,
|
1407
1510
|
defined_tags=exadata_infrastructure_defined_tags,
|
1408
1511
|
freeform_tags={
|
1409
1512
|
"Department": "Finance",
|
@@ -1432,7 +1535,8 @@ class ExadataInfrastructure(pulumi.CustomResource):
|
|
1432
1535
|
"client_network_bonding_mode": exadata_infrastructure_network_bonding_mode_details_client_network_bonding_mode,
|
1433
1536
|
"dr_network_bonding_mode": exadata_infrastructure_network_bonding_mode_details_dr_network_bonding_mode,
|
1434
1537
|
},
|
1435
|
-
storage_count=exadata_infrastructure_storage_count
|
1538
|
+
storage_count=exadata_infrastructure_storage_count,
|
1539
|
+
storage_server_type=exadata_infrastructure_storage_server_type)
|
1436
1540
|
```
|
1437
1541
|
|
1438
1542
|
## Import
|
@@ -1468,6 +1572,7 @@ class ExadataInfrastructure(pulumi.CustomResource):
|
|
1468
1572
|
contacts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ExadataInfrastructureContactArgs', 'ExadataInfrastructureContactArgsDict']]]]] = None,
|
1469
1573
|
corporate_proxy: Optional[pulumi.Input[str]] = None,
|
1470
1574
|
create_async: Optional[pulumi.Input[bool]] = None,
|
1575
|
+
database_server_type: Optional[pulumi.Input[str]] = None,
|
1471
1576
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1472
1577
|
display_name: Optional[pulumi.Input[str]] = None,
|
1473
1578
|
dns_servers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
@@ -1483,6 +1588,7 @@ class ExadataInfrastructure(pulumi.CustomResource):
|
|
1483
1588
|
ntp_servers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1484
1589
|
shape: Optional[pulumi.Input[str]] = None,
|
1485
1590
|
storage_count: Optional[pulumi.Input[int]] = None,
|
1591
|
+
storage_server_type: Optional[pulumi.Input[str]] = None,
|
1486
1592
|
time_zone: Optional[pulumi.Input[str]] = None,
|
1487
1593
|
__props__=None):
|
1488
1594
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -1511,6 +1617,7 @@ class ExadataInfrastructure(pulumi.CustomResource):
|
|
1511
1617
|
__props__.__dict__["contacts"] = contacts
|
1512
1618
|
__props__.__dict__["corporate_proxy"] = corporate_proxy
|
1513
1619
|
__props__.__dict__["create_async"] = create_async
|
1620
|
+
__props__.__dict__["database_server_type"] = database_server_type
|
1514
1621
|
__props__.__dict__["defined_tags"] = defined_tags
|
1515
1622
|
if display_name is None and not opts.urn:
|
1516
1623
|
raise TypeError("Missing required property 'display_name'")
|
@@ -1540,6 +1647,7 @@ class ExadataInfrastructure(pulumi.CustomResource):
|
|
1540
1647
|
raise TypeError("Missing required property 'shape'")
|
1541
1648
|
__props__.__dict__["shape"] = shape
|
1542
1649
|
__props__.__dict__["storage_count"] = storage_count
|
1650
|
+
__props__.__dict__["storage_server_type"] = storage_server_type
|
1543
1651
|
if time_zone is None and not opts.urn:
|
1544
1652
|
raise TypeError("Missing required property 'time_zone'")
|
1545
1653
|
__props__.__dict__["time_zone"] = time_zone
|
@@ -1547,12 +1655,14 @@ class ExadataInfrastructure(pulumi.CustomResource):
|
|
1547
1655
|
__props__.__dict__["additional_compute_count"] = None
|
1548
1656
|
__props__.__dict__["additional_compute_system_model"] = None
|
1549
1657
|
__props__.__dict__["availability_domain"] = None
|
1658
|
+
__props__.__dict__["compute_model"] = None
|
1550
1659
|
__props__.__dict__["cpus_enabled"] = None
|
1551
1660
|
__props__.__dict__["csi_number"] = None
|
1552
1661
|
__props__.__dict__["data_storage_size_in_tbs"] = None
|
1553
1662
|
__props__.__dict__["db_node_storage_size_in_gbs"] = None
|
1554
1663
|
__props__.__dict__["db_server_version"] = None
|
1555
1664
|
__props__.__dict__["defined_file_system_configurations"] = None
|
1665
|
+
__props__.__dict__["exascale_configs"] = None
|
1556
1666
|
__props__.__dict__["is_scheduling_policy_associated"] = None
|
1557
1667
|
__props__.__dict__["lifecycle_details"] = None
|
1558
1668
|
__props__.__dict__["maintenance_slo_status"] = None
|
@@ -1587,18 +1697,21 @@ class ExadataInfrastructure(pulumi.CustomResource):
|
|
1587
1697
|
cloud_control_plane_server2: Optional[pulumi.Input[str]] = None,
|
1588
1698
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
1589
1699
|
compute_count: Optional[pulumi.Input[int]] = None,
|
1700
|
+
compute_model: Optional[pulumi.Input[str]] = None,
|
1590
1701
|
contacts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ExadataInfrastructureContactArgs', 'ExadataInfrastructureContactArgsDict']]]]] = None,
|
1591
1702
|
corporate_proxy: Optional[pulumi.Input[str]] = None,
|
1592
1703
|
cpus_enabled: Optional[pulumi.Input[int]] = None,
|
1593
1704
|
create_async: Optional[pulumi.Input[bool]] = None,
|
1594
1705
|
csi_number: Optional[pulumi.Input[str]] = None,
|
1595
1706
|
data_storage_size_in_tbs: Optional[pulumi.Input[float]] = None,
|
1707
|
+
database_server_type: Optional[pulumi.Input[str]] = None,
|
1596
1708
|
db_node_storage_size_in_gbs: Optional[pulumi.Input[int]] = None,
|
1597
1709
|
db_server_version: Optional[pulumi.Input[str]] = None,
|
1598
1710
|
defined_file_system_configurations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ExadataInfrastructureDefinedFileSystemConfigurationArgs', 'ExadataInfrastructureDefinedFileSystemConfigurationArgsDict']]]]] = None,
|
1599
1711
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1600
1712
|
display_name: Optional[pulumi.Input[str]] = None,
|
1601
1713
|
dns_servers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1714
|
+
exascale_configs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ExadataInfrastructureExascaleConfigArgs', 'ExadataInfrastructureExascaleConfigArgsDict']]]]] = None,
|
1602
1715
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1603
1716
|
gateway: Optional[pulumi.Input[str]] = None,
|
1604
1717
|
infini_band_network_cidr: Optional[pulumi.Input[str]] = None,
|
@@ -1622,6 +1735,7 @@ class ExadataInfrastructure(pulumi.CustomResource):
|
|
1622
1735
|
shape: Optional[pulumi.Input[str]] = None,
|
1623
1736
|
state: Optional[pulumi.Input[str]] = None,
|
1624
1737
|
storage_count: Optional[pulumi.Input[int]] = None,
|
1738
|
+
storage_server_type: Optional[pulumi.Input[str]] = None,
|
1625
1739
|
storage_server_version: Optional[pulumi.Input[str]] = None,
|
1626
1740
|
time_created: Optional[pulumi.Input[str]] = None,
|
1627
1741
|
time_zone: Optional[pulumi.Input[str]] = None) -> 'ExadataInfrastructure':
|
@@ -1646,17 +1760,20 @@ class ExadataInfrastructure(pulumi.CustomResource):
|
|
1646
1760
|
:param pulumi.Input[str] cloud_control_plane_server2: (Updatable) The IP address for the second control plane server.
|
1647
1761
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
1648
1762
|
:param pulumi.Input[int] compute_count: The number of compute servers for the Exadata infrastructure.
|
1763
|
+
:param pulumi.Input[str] compute_model: The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
|
1649
1764
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ExadataInfrastructureContactArgs', 'ExadataInfrastructureContactArgsDict']]]] contacts: (Updatable) The list of contacts for the Exadata infrastructure.
|
1650
1765
|
:param pulumi.Input[str] corporate_proxy: (Updatable) The corporate network proxy for access to the control plane network. Oracle recommends using an HTTPS proxy when possible for enhanced security.
|
1651
1766
|
:param pulumi.Input[int] cpus_enabled: The number of enabled CPU cores.
|
1652
1767
|
:param pulumi.Input[str] csi_number: The CSI Number of the Exadata infrastructure.
|
1653
1768
|
:param pulumi.Input[float] data_storage_size_in_tbs: Size, in terabytes, of the DATA disk group.
|
1769
|
+
:param pulumi.Input[str] database_server_type: The database server type of the Exadata infrastructure.
|
1654
1770
|
:param pulumi.Input[int] db_node_storage_size_in_gbs: The local node storage allocated in GBs.
|
1655
1771
|
:param pulumi.Input[str] db_server_version: The software version of the database servers (dom0) in the Exadata infrastructure.
|
1656
1772
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ExadataInfrastructureDefinedFileSystemConfigurationArgs', 'ExadataInfrastructureDefinedFileSystemConfigurationArgsDict']]]] defined_file_system_configurations: Details of the file system configuration of the Exadata infrastructure.
|
1657
1773
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
1658
1774
|
:param pulumi.Input[str] display_name: The user-friendly name for the Exadata infrastructure. The name does not need to be unique.
|
1659
1775
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] dns_servers: (Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.
|
1776
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ExadataInfrastructureExascaleConfigArgs', 'ExadataInfrastructureExascaleConfigArgsDict']]]] exascale_configs: The exascale config response details for the Exadata Cloud@Customer infrastructure or cloud Exadata infrastructure . Applies to both Exadata Cloud@Customer instances and Exadata Cloud Service instances.
|
1660
1777
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
1661
1778
|
:param pulumi.Input[str] gateway: (Updatable) The gateway for the control plane network.
|
1662
1779
|
:param pulumi.Input[str] infini_band_network_cidr: (Updatable) The CIDR block for the Exadata InfiniBand interconnect.
|
@@ -1680,6 +1797,7 @@ class ExadataInfrastructure(pulumi.CustomResource):
|
|
1680
1797
|
:param pulumi.Input[str] shape: The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
|
1681
1798
|
:param pulumi.Input[str] state: The current lifecycle state of the Exadata infrastructure.
|
1682
1799
|
:param pulumi.Input[int] storage_count: The number of storage servers for the Exadata infrastructure.
|
1800
|
+
:param pulumi.Input[str] storage_server_type: The storage server type of the Exadata infrastructure.
|
1683
1801
|
:param pulumi.Input[str] storage_server_version: The software version of the storage servers (cells) in the Exadata infrastructure.
|
1684
1802
|
:param pulumi.Input[str] time_created: The date and time the Exadata infrastructure was created.
|
1685
1803
|
:param pulumi.Input[str] time_zone: (Updatable) The time zone of the Exadata infrastructure. For details, see [Exadata Infrastructure Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
@@ -1699,18 +1817,21 @@ class ExadataInfrastructure(pulumi.CustomResource):
|
|
1699
1817
|
__props__.__dict__["cloud_control_plane_server2"] = cloud_control_plane_server2
|
1700
1818
|
__props__.__dict__["compartment_id"] = compartment_id
|
1701
1819
|
__props__.__dict__["compute_count"] = compute_count
|
1820
|
+
__props__.__dict__["compute_model"] = compute_model
|
1702
1821
|
__props__.__dict__["contacts"] = contacts
|
1703
1822
|
__props__.__dict__["corporate_proxy"] = corporate_proxy
|
1704
1823
|
__props__.__dict__["cpus_enabled"] = cpus_enabled
|
1705
1824
|
__props__.__dict__["create_async"] = create_async
|
1706
1825
|
__props__.__dict__["csi_number"] = csi_number
|
1707
1826
|
__props__.__dict__["data_storage_size_in_tbs"] = data_storage_size_in_tbs
|
1827
|
+
__props__.__dict__["database_server_type"] = database_server_type
|
1708
1828
|
__props__.__dict__["db_node_storage_size_in_gbs"] = db_node_storage_size_in_gbs
|
1709
1829
|
__props__.__dict__["db_server_version"] = db_server_version
|
1710
1830
|
__props__.__dict__["defined_file_system_configurations"] = defined_file_system_configurations
|
1711
1831
|
__props__.__dict__["defined_tags"] = defined_tags
|
1712
1832
|
__props__.__dict__["display_name"] = display_name
|
1713
1833
|
__props__.__dict__["dns_servers"] = dns_servers
|
1834
|
+
__props__.__dict__["exascale_configs"] = exascale_configs
|
1714
1835
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
1715
1836
|
__props__.__dict__["gateway"] = gateway
|
1716
1837
|
__props__.__dict__["infini_band_network_cidr"] = infini_band_network_cidr
|
@@ -1734,6 +1855,7 @@ class ExadataInfrastructure(pulumi.CustomResource):
|
|
1734
1855
|
__props__.__dict__["shape"] = shape
|
1735
1856
|
__props__.__dict__["state"] = state
|
1736
1857
|
__props__.__dict__["storage_count"] = storage_count
|
1858
|
+
__props__.__dict__["storage_server_type"] = storage_server_type
|
1737
1859
|
__props__.__dict__["storage_server_version"] = storage_server_version
|
1738
1860
|
__props__.__dict__["time_created"] = time_created
|
1739
1861
|
__props__.__dict__["time_zone"] = time_zone
|
@@ -1830,6 +1952,14 @@ class ExadataInfrastructure(pulumi.CustomResource):
|
|
1830
1952
|
"""
|
1831
1953
|
return pulumi.get(self, "compute_count")
|
1832
1954
|
|
1955
|
+
@property
|
1956
|
+
@pulumi.getter(name="computeModel")
|
1957
|
+
def compute_model(self) -> pulumi.Output[str]:
|
1958
|
+
"""
|
1959
|
+
The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
|
1960
|
+
"""
|
1961
|
+
return pulumi.get(self, "compute_model")
|
1962
|
+
|
1833
1963
|
@property
|
1834
1964
|
@pulumi.getter
|
1835
1965
|
def contacts(self) -> pulumi.Output[Optional[Sequence['outputs.ExadataInfrastructureContact']]]:
|
@@ -1875,6 +2005,14 @@ class ExadataInfrastructure(pulumi.CustomResource):
|
|
1875
2005
|
"""
|
1876
2006
|
return pulumi.get(self, "data_storage_size_in_tbs")
|
1877
2007
|
|
2008
|
+
@property
|
2009
|
+
@pulumi.getter(name="databaseServerType")
|
2010
|
+
def database_server_type(self) -> pulumi.Output[str]:
|
2011
|
+
"""
|
2012
|
+
The database server type of the Exadata infrastructure.
|
2013
|
+
"""
|
2014
|
+
return pulumi.get(self, "database_server_type")
|
2015
|
+
|
1878
2016
|
@property
|
1879
2017
|
@pulumi.getter(name="dbNodeStorageSizeInGbs")
|
1880
2018
|
def db_node_storage_size_in_gbs(self) -> pulumi.Output[int]:
|
@@ -1923,6 +2061,14 @@ class ExadataInfrastructure(pulumi.CustomResource):
|
|
1923
2061
|
"""
|
1924
2062
|
return pulumi.get(self, "dns_servers")
|
1925
2063
|
|
2064
|
+
@property
|
2065
|
+
@pulumi.getter(name="exascaleConfigs")
|
2066
|
+
def exascale_configs(self) -> pulumi.Output[Sequence['outputs.ExadataInfrastructureExascaleConfig']]:
|
2067
|
+
"""
|
2068
|
+
The exascale config response details for the Exadata Cloud@Customer infrastructure or cloud Exadata infrastructure . Applies to both Exadata Cloud@Customer instances and Exadata Cloud Service instances.
|
2069
|
+
"""
|
2070
|
+
return pulumi.get(self, "exascale_configs")
|
2071
|
+
|
1926
2072
|
@property
|
1927
2073
|
@pulumi.getter(name="freeformTags")
|
1928
2074
|
def freeform_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
@@ -2107,6 +2253,14 @@ class ExadataInfrastructure(pulumi.CustomResource):
|
|
2107
2253
|
"""
|
2108
2254
|
return pulumi.get(self, "storage_count")
|
2109
2255
|
|
2256
|
+
@property
|
2257
|
+
@pulumi.getter(name="storageServerType")
|
2258
|
+
def storage_server_type(self) -> pulumi.Output[str]:
|
2259
|
+
"""
|
2260
|
+
The storage server type of the Exadata infrastructure.
|
2261
|
+
"""
|
2262
|
+
return pulumi.get(self, "storage_server_type")
|
2263
|
+
|
2110
2264
|
@property
|
2111
2265
|
@pulumi.getter(name="storageServerVersion")
|
2112
2266
|
def storage_server_version(self) -> pulumi.Output[str]:
|