pulumi-oci 2.26.0a1741847591__py3-none-any.whl → 2.27.0a1742000109__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.27.0a1742000109.dist-info}/METADATA +1 -1
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0a1742000109.dist-info}/RECORD +135 -106
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0a1742000109.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0a1742000109.dist-info}/top_level.txt +0 -0
@@ -70,6 +70,7 @@ class _VmClusterAddVirtualNetworkState:
|
|
70
70
|
availability_domain: Optional[pulumi.Input[str]] = None,
|
71
71
|
cloud_automation_update_details: Optional[pulumi.Input[Sequence[pulumi.Input['VmClusterAddVirtualNetworkCloudAutomationUpdateDetailArgs']]]] = None,
|
72
72
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
73
|
+
compute_model: Optional[pulumi.Input[str]] = None,
|
73
74
|
cpus_enabled: Optional[pulumi.Input[int]] = None,
|
74
75
|
data_collection_options: Optional[pulumi.Input[Sequence[pulumi.Input['VmClusterAddVirtualNetworkDataCollectionOptionArgs']]]] = None,
|
75
76
|
data_storage_size_in_gb: Optional[pulumi.Input[float]] = None,
|
@@ -79,6 +80,7 @@ class _VmClusterAddVirtualNetworkState:
|
|
79
80
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
80
81
|
display_name: Optional[pulumi.Input[str]] = None,
|
81
82
|
exadata_infrastructure_id: Optional[pulumi.Input[str]] = None,
|
83
|
+
exascale_db_storage_vault_id: Optional[pulumi.Input[str]] = None,
|
82
84
|
file_system_configuration_details: Optional[pulumi.Input[Sequence[pulumi.Input['VmClusterAddVirtualNetworkFileSystemConfigurationDetailArgs']]]] = None,
|
83
85
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
84
86
|
gi_version: Optional[pulumi.Input[str]] = None,
|
@@ -92,16 +94,19 @@ class _VmClusterAddVirtualNetworkState:
|
|
92
94
|
shape: Optional[pulumi.Input[str]] = None,
|
93
95
|
ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
94
96
|
state: Optional[pulumi.Input[str]] = None,
|
97
|
+
storage_management_type: Optional[pulumi.Input[str]] = None,
|
95
98
|
system_version: Optional[pulumi.Input[str]] = None,
|
96
99
|
time_created: Optional[pulumi.Input[str]] = None,
|
97
100
|
time_zone: Optional[pulumi.Input[str]] = None,
|
98
101
|
vm_cluster_id: Optional[pulumi.Input[str]] = None,
|
99
|
-
vm_cluster_network_id: Optional[pulumi.Input[str]] = None
|
102
|
+
vm_cluster_network_id: Optional[pulumi.Input[str]] = None,
|
103
|
+
vm_cluster_type: Optional[pulumi.Input[str]] = None):
|
100
104
|
"""
|
101
105
|
Input properties used for looking up and filtering VmClusterAddVirtualNetwork resources.
|
102
106
|
:param pulumi.Input[str] availability_domain: The name of the availability domain that the VM cluster is located in.
|
103
107
|
:param pulumi.Input[Sequence[pulumi.Input['VmClusterAddVirtualNetworkCloudAutomationUpdateDetailArgs']]] cloud_automation_update_details: Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
|
104
108
|
:param pulumi.Input[str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
109
|
+
: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.
|
105
110
|
:param pulumi.Input[int] cpus_enabled: The number of enabled CPU cores.
|
106
111
|
:param pulumi.Input[Sequence[pulumi.Input['VmClusterAddVirtualNetworkDataCollectionOptionArgs']]] data_collection_options: Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
|
107
112
|
:param pulumi.Input[float] data_storage_size_in_gb: Size of the DATA disk group in GBs.
|
@@ -111,6 +116,7 @@ class _VmClusterAddVirtualNetworkState:
|
|
111
116
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: 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).
|
112
117
|
:param pulumi.Input[str] display_name: The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
|
113
118
|
:param pulumi.Input[str] exadata_infrastructure_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata infrastructure.
|
119
|
+
:param pulumi.Input[str] exascale_db_storage_vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Database Storage Vault.
|
114
120
|
:param pulumi.Input[Sequence[pulumi.Input['VmClusterAddVirtualNetworkFileSystemConfigurationDetailArgs']]] file_system_configuration_details: Details of the file system configuration of the VM cluster.
|
115
121
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: 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"}`
|
116
122
|
:param pulumi.Input[str] gi_version: The Oracle Grid Infrastructure software version for the VM cluster.
|
@@ -123,6 +129,7 @@ class _VmClusterAddVirtualNetworkState:
|
|
123
129
|
: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.
|
124
130
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ssh_public_keys: The public key portion of one or more key pairs used for SSH access to the VM cluster.
|
125
131
|
:param pulumi.Input[str] state: The current state of the VM cluster.
|
132
|
+
:param pulumi.Input[str] storage_management_type: Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
|
126
133
|
:param pulumi.Input[str] system_version: Operating system version of the image.
|
127
134
|
:param pulumi.Input[str] time_created: The date and time that the VM cluster was created.
|
128
135
|
:param pulumi.Input[str] time_zone: 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).
|
@@ -132,6 +139,7 @@ class _VmClusterAddVirtualNetworkState:
|
|
132
139
|
** IMPORTANT **
|
133
140
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
134
141
|
:param pulumi.Input[str] vm_cluster_network_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster network.
|
142
|
+
:param pulumi.Input[str] vm_cluster_type: The vmcluster type for the VM cluster/Cloud VM cluster.
|
135
143
|
"""
|
136
144
|
if availability_domain is not None:
|
137
145
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -139,6 +147,8 @@ class _VmClusterAddVirtualNetworkState:
|
|
139
147
|
pulumi.set(__self__, "cloud_automation_update_details", cloud_automation_update_details)
|
140
148
|
if compartment_id is not None:
|
141
149
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
150
|
+
if compute_model is not None:
|
151
|
+
pulumi.set(__self__, "compute_model", compute_model)
|
142
152
|
if cpus_enabled is not None:
|
143
153
|
pulumi.set(__self__, "cpus_enabled", cpus_enabled)
|
144
154
|
if data_collection_options is not None:
|
@@ -157,6 +167,8 @@ class _VmClusterAddVirtualNetworkState:
|
|
157
167
|
pulumi.set(__self__, "display_name", display_name)
|
158
168
|
if exadata_infrastructure_id is not None:
|
159
169
|
pulumi.set(__self__, "exadata_infrastructure_id", exadata_infrastructure_id)
|
170
|
+
if exascale_db_storage_vault_id is not None:
|
171
|
+
pulumi.set(__self__, "exascale_db_storage_vault_id", exascale_db_storage_vault_id)
|
160
172
|
if file_system_configuration_details is not None:
|
161
173
|
pulumi.set(__self__, "file_system_configuration_details", file_system_configuration_details)
|
162
174
|
if freeform_tags is not None:
|
@@ -183,6 +195,8 @@ class _VmClusterAddVirtualNetworkState:
|
|
183
195
|
pulumi.set(__self__, "ssh_public_keys", ssh_public_keys)
|
184
196
|
if state is not None:
|
185
197
|
pulumi.set(__self__, "state", state)
|
198
|
+
if storage_management_type is not None:
|
199
|
+
pulumi.set(__self__, "storage_management_type", storage_management_type)
|
186
200
|
if system_version is not None:
|
187
201
|
pulumi.set(__self__, "system_version", system_version)
|
188
202
|
if time_created is not None:
|
@@ -193,6 +207,8 @@ class _VmClusterAddVirtualNetworkState:
|
|
193
207
|
pulumi.set(__self__, "vm_cluster_id", vm_cluster_id)
|
194
208
|
if vm_cluster_network_id is not None:
|
195
209
|
pulumi.set(__self__, "vm_cluster_network_id", vm_cluster_network_id)
|
210
|
+
if vm_cluster_type is not None:
|
211
|
+
pulumi.set(__self__, "vm_cluster_type", vm_cluster_type)
|
196
212
|
|
197
213
|
@property
|
198
214
|
@pulumi.getter(name="availabilityDomain")
|
@@ -230,6 +246,18 @@ class _VmClusterAddVirtualNetworkState:
|
|
230
246
|
def compartment_id(self, value: Optional[pulumi.Input[str]]):
|
231
247
|
pulumi.set(self, "compartment_id", value)
|
232
248
|
|
249
|
+
@property
|
250
|
+
@pulumi.getter(name="computeModel")
|
251
|
+
def compute_model(self) -> Optional[pulumi.Input[str]]:
|
252
|
+
"""
|
253
|
+
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.
|
254
|
+
"""
|
255
|
+
return pulumi.get(self, "compute_model")
|
256
|
+
|
257
|
+
@compute_model.setter
|
258
|
+
def compute_model(self, value: Optional[pulumi.Input[str]]):
|
259
|
+
pulumi.set(self, "compute_model", value)
|
260
|
+
|
233
261
|
@property
|
234
262
|
@pulumi.getter(name="cpusEnabled")
|
235
263
|
def cpus_enabled(self) -> Optional[pulumi.Input[int]]:
|
@@ -338,6 +366,18 @@ class _VmClusterAddVirtualNetworkState:
|
|
338
366
|
def exadata_infrastructure_id(self, value: Optional[pulumi.Input[str]]):
|
339
367
|
pulumi.set(self, "exadata_infrastructure_id", value)
|
340
368
|
|
369
|
+
@property
|
370
|
+
@pulumi.getter(name="exascaleDbStorageVaultId")
|
371
|
+
def exascale_db_storage_vault_id(self) -> Optional[pulumi.Input[str]]:
|
372
|
+
"""
|
373
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Database Storage Vault.
|
374
|
+
"""
|
375
|
+
return pulumi.get(self, "exascale_db_storage_vault_id")
|
376
|
+
|
377
|
+
@exascale_db_storage_vault_id.setter
|
378
|
+
def exascale_db_storage_vault_id(self, value: Optional[pulumi.Input[str]]):
|
379
|
+
pulumi.set(self, "exascale_db_storage_vault_id", value)
|
380
|
+
|
341
381
|
@property
|
342
382
|
@pulumi.getter(name="fileSystemConfigurationDetails")
|
343
383
|
def file_system_configuration_details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VmClusterAddVirtualNetworkFileSystemConfigurationDetailArgs']]]]:
|
@@ -491,6 +531,18 @@ class _VmClusterAddVirtualNetworkState:
|
|
491
531
|
def state(self, value: Optional[pulumi.Input[str]]):
|
492
532
|
pulumi.set(self, "state", value)
|
493
533
|
|
534
|
+
@property
|
535
|
+
@pulumi.getter(name="storageManagementType")
|
536
|
+
def storage_management_type(self) -> Optional[pulumi.Input[str]]:
|
537
|
+
"""
|
538
|
+
Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
|
539
|
+
"""
|
540
|
+
return pulumi.get(self, "storage_management_type")
|
541
|
+
|
542
|
+
@storage_management_type.setter
|
543
|
+
def storage_management_type(self, value: Optional[pulumi.Input[str]]):
|
544
|
+
pulumi.set(self, "storage_management_type", value)
|
545
|
+
|
494
546
|
@property
|
495
547
|
@pulumi.getter(name="systemVersion")
|
496
548
|
def system_version(self) -> Optional[pulumi.Input[str]]:
|
@@ -555,6 +607,18 @@ class _VmClusterAddVirtualNetworkState:
|
|
555
607
|
def vm_cluster_network_id(self, value: Optional[pulumi.Input[str]]):
|
556
608
|
pulumi.set(self, "vm_cluster_network_id", value)
|
557
609
|
|
610
|
+
@property
|
611
|
+
@pulumi.getter(name="vmClusterType")
|
612
|
+
def vm_cluster_type(self) -> Optional[pulumi.Input[str]]:
|
613
|
+
"""
|
614
|
+
The vmcluster type for the VM cluster/Cloud VM cluster.
|
615
|
+
"""
|
616
|
+
return pulumi.get(self, "vm_cluster_type")
|
617
|
+
|
618
|
+
@vm_cluster_type.setter
|
619
|
+
def vm_cluster_type(self, value: Optional[pulumi.Input[str]]):
|
620
|
+
pulumi.set(self, "vm_cluster_type", value)
|
621
|
+
|
558
622
|
|
559
623
|
class VmClusterAddVirtualNetwork(pulumi.CustomResource):
|
560
624
|
@overload
|
@@ -670,6 +734,7 @@ class VmClusterAddVirtualNetwork(pulumi.CustomResource):
|
|
670
734
|
__props__.__dict__["availability_domain"] = None
|
671
735
|
__props__.__dict__["cloud_automation_update_details"] = None
|
672
736
|
__props__.__dict__["compartment_id"] = None
|
737
|
+
__props__.__dict__["compute_model"] = None
|
673
738
|
__props__.__dict__["cpus_enabled"] = None
|
674
739
|
__props__.__dict__["data_collection_options"] = None
|
675
740
|
__props__.__dict__["data_storage_size_in_gb"] = None
|
@@ -678,6 +743,7 @@ class VmClusterAddVirtualNetwork(pulumi.CustomResource):
|
|
678
743
|
__props__.__dict__["defined_tags"] = None
|
679
744
|
__props__.__dict__["display_name"] = None
|
680
745
|
__props__.__dict__["exadata_infrastructure_id"] = None
|
746
|
+
__props__.__dict__["exascale_db_storage_vault_id"] = None
|
681
747
|
__props__.__dict__["file_system_configuration_details"] = None
|
682
748
|
__props__.__dict__["freeform_tags"] = None
|
683
749
|
__props__.__dict__["gi_version"] = None
|
@@ -691,10 +757,12 @@ class VmClusterAddVirtualNetwork(pulumi.CustomResource):
|
|
691
757
|
__props__.__dict__["shape"] = None
|
692
758
|
__props__.__dict__["ssh_public_keys"] = None
|
693
759
|
__props__.__dict__["state"] = None
|
760
|
+
__props__.__dict__["storage_management_type"] = None
|
694
761
|
__props__.__dict__["system_version"] = None
|
695
762
|
__props__.__dict__["time_created"] = None
|
696
763
|
__props__.__dict__["time_zone"] = None
|
697
764
|
__props__.__dict__["vm_cluster_network_id"] = None
|
765
|
+
__props__.__dict__["vm_cluster_type"] = None
|
698
766
|
super(VmClusterAddVirtualNetwork, __self__).__init__(
|
699
767
|
'oci:Database/vmClusterAddVirtualNetwork:VmClusterAddVirtualNetwork',
|
700
768
|
resource_name,
|
@@ -708,6 +776,7 @@ class VmClusterAddVirtualNetwork(pulumi.CustomResource):
|
|
708
776
|
availability_domain: Optional[pulumi.Input[str]] = None,
|
709
777
|
cloud_automation_update_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VmClusterAddVirtualNetworkCloudAutomationUpdateDetailArgs', 'VmClusterAddVirtualNetworkCloudAutomationUpdateDetailArgsDict']]]]] = None,
|
710
778
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
779
|
+
compute_model: Optional[pulumi.Input[str]] = None,
|
711
780
|
cpus_enabled: Optional[pulumi.Input[int]] = None,
|
712
781
|
data_collection_options: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VmClusterAddVirtualNetworkDataCollectionOptionArgs', 'VmClusterAddVirtualNetworkDataCollectionOptionArgsDict']]]]] = None,
|
713
782
|
data_storage_size_in_gb: Optional[pulumi.Input[float]] = None,
|
@@ -717,6 +786,7 @@ class VmClusterAddVirtualNetwork(pulumi.CustomResource):
|
|
717
786
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
718
787
|
display_name: Optional[pulumi.Input[str]] = None,
|
719
788
|
exadata_infrastructure_id: Optional[pulumi.Input[str]] = None,
|
789
|
+
exascale_db_storage_vault_id: Optional[pulumi.Input[str]] = None,
|
720
790
|
file_system_configuration_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VmClusterAddVirtualNetworkFileSystemConfigurationDetailArgs', 'VmClusterAddVirtualNetworkFileSystemConfigurationDetailArgsDict']]]]] = None,
|
721
791
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
722
792
|
gi_version: Optional[pulumi.Input[str]] = None,
|
@@ -730,11 +800,13 @@ class VmClusterAddVirtualNetwork(pulumi.CustomResource):
|
|
730
800
|
shape: Optional[pulumi.Input[str]] = None,
|
731
801
|
ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
732
802
|
state: Optional[pulumi.Input[str]] = None,
|
803
|
+
storage_management_type: Optional[pulumi.Input[str]] = None,
|
733
804
|
system_version: Optional[pulumi.Input[str]] = None,
|
734
805
|
time_created: Optional[pulumi.Input[str]] = None,
|
735
806
|
time_zone: Optional[pulumi.Input[str]] = None,
|
736
807
|
vm_cluster_id: Optional[pulumi.Input[str]] = None,
|
737
|
-
vm_cluster_network_id: Optional[pulumi.Input[str]] = None
|
808
|
+
vm_cluster_network_id: Optional[pulumi.Input[str]] = None,
|
809
|
+
vm_cluster_type: Optional[pulumi.Input[str]] = None) -> 'VmClusterAddVirtualNetwork':
|
738
810
|
"""
|
739
811
|
Get an existing VmClusterAddVirtualNetwork resource's state with the given name, id, and optional extra
|
740
812
|
properties used to qualify the lookup.
|
@@ -745,6 +817,7 @@ class VmClusterAddVirtualNetwork(pulumi.CustomResource):
|
|
745
817
|
:param pulumi.Input[str] availability_domain: The name of the availability domain that the VM cluster is located in.
|
746
818
|
:param pulumi.Input[Sequence[pulumi.Input[Union['VmClusterAddVirtualNetworkCloudAutomationUpdateDetailArgs', 'VmClusterAddVirtualNetworkCloudAutomationUpdateDetailArgsDict']]]] cloud_automation_update_details: Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
|
747
819
|
:param pulumi.Input[str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
820
|
+
: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.
|
748
821
|
:param pulumi.Input[int] cpus_enabled: The number of enabled CPU cores.
|
749
822
|
:param pulumi.Input[Sequence[pulumi.Input[Union['VmClusterAddVirtualNetworkDataCollectionOptionArgs', 'VmClusterAddVirtualNetworkDataCollectionOptionArgsDict']]]] data_collection_options: Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
|
750
823
|
:param pulumi.Input[float] data_storage_size_in_gb: Size of the DATA disk group in GBs.
|
@@ -754,6 +827,7 @@ class VmClusterAddVirtualNetwork(pulumi.CustomResource):
|
|
754
827
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: 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).
|
755
828
|
:param pulumi.Input[str] display_name: The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
|
756
829
|
:param pulumi.Input[str] exadata_infrastructure_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata infrastructure.
|
830
|
+
:param pulumi.Input[str] exascale_db_storage_vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Database Storage Vault.
|
757
831
|
:param pulumi.Input[Sequence[pulumi.Input[Union['VmClusterAddVirtualNetworkFileSystemConfigurationDetailArgs', 'VmClusterAddVirtualNetworkFileSystemConfigurationDetailArgsDict']]]] file_system_configuration_details: Details of the file system configuration of the VM cluster.
|
758
832
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: 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"}`
|
759
833
|
:param pulumi.Input[str] gi_version: The Oracle Grid Infrastructure software version for the VM cluster.
|
@@ -766,6 +840,7 @@ class VmClusterAddVirtualNetwork(pulumi.CustomResource):
|
|
766
840
|
: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.
|
767
841
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ssh_public_keys: The public key portion of one or more key pairs used for SSH access to the VM cluster.
|
768
842
|
:param pulumi.Input[str] state: The current state of the VM cluster.
|
843
|
+
:param pulumi.Input[str] storage_management_type: Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
|
769
844
|
:param pulumi.Input[str] system_version: Operating system version of the image.
|
770
845
|
:param pulumi.Input[str] time_created: The date and time that the VM cluster was created.
|
771
846
|
:param pulumi.Input[str] time_zone: 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).
|
@@ -775,6 +850,7 @@ class VmClusterAddVirtualNetwork(pulumi.CustomResource):
|
|
775
850
|
** IMPORTANT **
|
776
851
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
777
852
|
:param pulumi.Input[str] vm_cluster_network_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster network.
|
853
|
+
:param pulumi.Input[str] vm_cluster_type: The vmcluster type for the VM cluster/Cloud VM cluster.
|
778
854
|
"""
|
779
855
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
780
856
|
|
@@ -783,6 +859,7 @@ class VmClusterAddVirtualNetwork(pulumi.CustomResource):
|
|
783
859
|
__props__.__dict__["availability_domain"] = availability_domain
|
784
860
|
__props__.__dict__["cloud_automation_update_details"] = cloud_automation_update_details
|
785
861
|
__props__.__dict__["compartment_id"] = compartment_id
|
862
|
+
__props__.__dict__["compute_model"] = compute_model
|
786
863
|
__props__.__dict__["cpus_enabled"] = cpus_enabled
|
787
864
|
__props__.__dict__["data_collection_options"] = data_collection_options
|
788
865
|
__props__.__dict__["data_storage_size_in_gb"] = data_storage_size_in_gb
|
@@ -792,6 +869,7 @@ class VmClusterAddVirtualNetwork(pulumi.CustomResource):
|
|
792
869
|
__props__.__dict__["defined_tags"] = defined_tags
|
793
870
|
__props__.__dict__["display_name"] = display_name
|
794
871
|
__props__.__dict__["exadata_infrastructure_id"] = exadata_infrastructure_id
|
872
|
+
__props__.__dict__["exascale_db_storage_vault_id"] = exascale_db_storage_vault_id
|
795
873
|
__props__.__dict__["file_system_configuration_details"] = file_system_configuration_details
|
796
874
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
797
875
|
__props__.__dict__["gi_version"] = gi_version
|
@@ -805,11 +883,13 @@ class VmClusterAddVirtualNetwork(pulumi.CustomResource):
|
|
805
883
|
__props__.__dict__["shape"] = shape
|
806
884
|
__props__.__dict__["ssh_public_keys"] = ssh_public_keys
|
807
885
|
__props__.__dict__["state"] = state
|
886
|
+
__props__.__dict__["storage_management_type"] = storage_management_type
|
808
887
|
__props__.__dict__["system_version"] = system_version
|
809
888
|
__props__.__dict__["time_created"] = time_created
|
810
889
|
__props__.__dict__["time_zone"] = time_zone
|
811
890
|
__props__.__dict__["vm_cluster_id"] = vm_cluster_id
|
812
891
|
__props__.__dict__["vm_cluster_network_id"] = vm_cluster_network_id
|
892
|
+
__props__.__dict__["vm_cluster_type"] = vm_cluster_type
|
813
893
|
return VmClusterAddVirtualNetwork(resource_name, opts=opts, __props__=__props__)
|
814
894
|
|
815
895
|
@property
|
@@ -836,6 +916,14 @@ class VmClusterAddVirtualNetwork(pulumi.CustomResource):
|
|
836
916
|
"""
|
837
917
|
return pulumi.get(self, "compartment_id")
|
838
918
|
|
919
|
+
@property
|
920
|
+
@pulumi.getter(name="computeModel")
|
921
|
+
def compute_model(self) -> pulumi.Output[str]:
|
922
|
+
"""
|
923
|
+
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.
|
924
|
+
"""
|
925
|
+
return pulumi.get(self, "compute_model")
|
926
|
+
|
839
927
|
@property
|
840
928
|
@pulumi.getter(name="cpusEnabled")
|
841
929
|
def cpus_enabled(self) -> pulumi.Output[int]:
|
@@ -908,6 +996,14 @@ class VmClusterAddVirtualNetwork(pulumi.CustomResource):
|
|
908
996
|
"""
|
909
997
|
return pulumi.get(self, "exadata_infrastructure_id")
|
910
998
|
|
999
|
+
@property
|
1000
|
+
@pulumi.getter(name="exascaleDbStorageVaultId")
|
1001
|
+
def exascale_db_storage_vault_id(self) -> pulumi.Output[str]:
|
1002
|
+
"""
|
1003
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Database Storage Vault.
|
1004
|
+
"""
|
1005
|
+
return pulumi.get(self, "exascale_db_storage_vault_id")
|
1006
|
+
|
911
1007
|
@property
|
912
1008
|
@pulumi.getter(name="fileSystemConfigurationDetails")
|
913
1009
|
def file_system_configuration_details(self) -> pulumi.Output[Sequence['outputs.VmClusterAddVirtualNetworkFileSystemConfigurationDetail']]:
|
@@ -1009,6 +1105,14 @@ class VmClusterAddVirtualNetwork(pulumi.CustomResource):
|
|
1009
1105
|
"""
|
1010
1106
|
return pulumi.get(self, "state")
|
1011
1107
|
|
1108
|
+
@property
|
1109
|
+
@pulumi.getter(name="storageManagementType")
|
1110
|
+
def storage_management_type(self) -> pulumi.Output[str]:
|
1111
|
+
"""
|
1112
|
+
Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
|
1113
|
+
"""
|
1114
|
+
return pulumi.get(self, "storage_management_type")
|
1115
|
+
|
1012
1116
|
@property
|
1013
1117
|
@pulumi.getter(name="systemVersion")
|
1014
1118
|
def system_version(self) -> pulumi.Output[str]:
|
@@ -1053,3 +1157,11 @@ class VmClusterAddVirtualNetwork(pulumi.CustomResource):
|
|
1053
1157
|
"""
|
1054
1158
|
return pulumi.get(self, "vm_cluster_network_id")
|
1055
1159
|
|
1160
|
+
@property
|
1161
|
+
@pulumi.getter(name="vmClusterType")
|
1162
|
+
def vm_cluster_type(self) -> pulumi.Output[str]:
|
1163
|
+
"""
|
1164
|
+
The vmcluster type for the VM cluster/Cloud VM cluster.
|
1165
|
+
"""
|
1166
|
+
return pulumi.get(self, "vm_cluster_type")
|
1167
|
+
|