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
pulumi_oci/database/db_node.py
CHANGED
@@ -84,6 +84,7 @@ class _DbNodeState:
|
|
84
84
|
def __init__(__self__, *,
|
85
85
|
additional_details: Optional[pulumi.Input[str]] = None,
|
86
86
|
backup_ip_id: Optional[pulumi.Input[str]] = None,
|
87
|
+
backup_ipv6id: Optional[pulumi.Input[str]] = None,
|
87
88
|
backup_vnic2id: Optional[pulumi.Input[str]] = None,
|
88
89
|
backup_vnic_id: Optional[pulumi.Input[str]] = None,
|
89
90
|
cpu_core_count: Optional[pulumi.Input[int]] = None,
|
@@ -95,6 +96,7 @@ class _DbNodeState:
|
|
95
96
|
fault_domain: Optional[pulumi.Input[str]] = None,
|
96
97
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
97
98
|
host_ip_id: Optional[pulumi.Input[str]] = None,
|
99
|
+
host_ipv6id: Optional[pulumi.Input[str]] = None,
|
98
100
|
hostname: Optional[pulumi.Input[str]] = None,
|
99
101
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
100
102
|
maintenance_type: Optional[pulumi.Input[str]] = None,
|
@@ -110,7 +112,8 @@ class _DbNodeState:
|
|
110
112
|
"""
|
111
113
|
Input properties used for looking up and filtering DbNode resources.
|
112
114
|
:param pulumi.Input[str] additional_details: Additional information about the planned maintenance.
|
113
|
-
:param pulumi.Input[str] backup_ip_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup
|
115
|
+
:param pulumi.Input[str] backup_ip_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IPv4 address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IPv4 address needed to make a database connection.
|
116
|
+
:param pulumi.Input[str] backup_ipv6id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IPv6 address associated with the database node. Use this OCID with the [GetIpv6](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6) API to get the IPv6 address needed to make a database connection.
|
114
117
|
:param pulumi.Input[str] backup_vnic2id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the second backup VNIC.
|
115
118
|
:param pulumi.Input[str] backup_vnic_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup VNIC.
|
116
119
|
:param pulumi.Input[int] cpu_core_count: The number of CPU cores enabled on the Db node.
|
@@ -125,7 +128,8 @@ class _DbNodeState:
|
|
125
128
|
|
126
129
|
** IMPORTANT **
|
127
130
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
128
|
-
:param pulumi.Input[str] host_ip_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host
|
131
|
+
:param pulumi.Input[str] host_ip_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IPv4 address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IPv4 address needed to make a database connection.
|
132
|
+
:param pulumi.Input[str] host_ipv6id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IPv6 address associated with the database node. Use this OCID with the [GetIpv6](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6) API to get the IPv6 address needed to make a database connection.
|
129
133
|
:param pulumi.Input[str] hostname: The host name for the database node.
|
130
134
|
:param pulumi.Input[str] lifecycle_details: Information about the current lifecycle state.
|
131
135
|
:param pulumi.Input[str] maintenance_type: The type of database node maintenance.
|
@@ -143,6 +147,8 @@ class _DbNodeState:
|
|
143
147
|
pulumi.set(__self__, "additional_details", additional_details)
|
144
148
|
if backup_ip_id is not None:
|
145
149
|
pulumi.set(__self__, "backup_ip_id", backup_ip_id)
|
150
|
+
if backup_ipv6id is not None:
|
151
|
+
pulumi.set(__self__, "backup_ipv6id", backup_ipv6id)
|
146
152
|
if backup_vnic2id is not None:
|
147
153
|
pulumi.set(__self__, "backup_vnic2id", backup_vnic2id)
|
148
154
|
if backup_vnic_id is not None:
|
@@ -165,6 +171,8 @@ class _DbNodeState:
|
|
165
171
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
166
172
|
if host_ip_id is not None:
|
167
173
|
pulumi.set(__self__, "host_ip_id", host_ip_id)
|
174
|
+
if host_ipv6id is not None:
|
175
|
+
pulumi.set(__self__, "host_ipv6id", host_ipv6id)
|
168
176
|
if hostname is not None:
|
169
177
|
pulumi.set(__self__, "hostname", hostname)
|
170
178
|
if lifecycle_details is not None:
|
@@ -206,7 +214,7 @@ class _DbNodeState:
|
|
206
214
|
@pulumi.getter(name="backupIpId")
|
207
215
|
def backup_ip_id(self) -> Optional[pulumi.Input[str]]:
|
208
216
|
"""
|
209
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup
|
217
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IPv4 address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IPv4 address needed to make a database connection.
|
210
218
|
"""
|
211
219
|
return pulumi.get(self, "backup_ip_id")
|
212
220
|
|
@@ -214,6 +222,18 @@ class _DbNodeState:
|
|
214
222
|
def backup_ip_id(self, value: Optional[pulumi.Input[str]]):
|
215
223
|
pulumi.set(self, "backup_ip_id", value)
|
216
224
|
|
225
|
+
@property
|
226
|
+
@pulumi.getter(name="backupIpv6id")
|
227
|
+
def backup_ipv6id(self) -> Optional[pulumi.Input[str]]:
|
228
|
+
"""
|
229
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IPv6 address associated with the database node. Use this OCID with the [GetIpv6](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6) API to get the IPv6 address needed to make a database connection.
|
230
|
+
"""
|
231
|
+
return pulumi.get(self, "backup_ipv6id")
|
232
|
+
|
233
|
+
@backup_ipv6id.setter
|
234
|
+
def backup_ipv6id(self, value: Optional[pulumi.Input[str]]):
|
235
|
+
pulumi.set(self, "backup_ipv6id", value)
|
236
|
+
|
217
237
|
@property
|
218
238
|
@pulumi.getter(name="backupVnic2id")
|
219
239
|
def backup_vnic2id(self) -> Optional[pulumi.Input[str]]:
|
@@ -342,7 +362,7 @@ class _DbNodeState:
|
|
342
362
|
@pulumi.getter(name="hostIpId")
|
343
363
|
def host_ip_id(self) -> Optional[pulumi.Input[str]]:
|
344
364
|
"""
|
345
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host
|
365
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IPv4 address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IPv4 address needed to make a database connection.
|
346
366
|
"""
|
347
367
|
return pulumi.get(self, "host_ip_id")
|
348
368
|
|
@@ -350,6 +370,18 @@ class _DbNodeState:
|
|
350
370
|
def host_ip_id(self, value: Optional[pulumi.Input[str]]):
|
351
371
|
pulumi.set(self, "host_ip_id", value)
|
352
372
|
|
373
|
+
@property
|
374
|
+
@pulumi.getter(name="hostIpv6id")
|
375
|
+
def host_ipv6id(self) -> Optional[pulumi.Input[str]]:
|
376
|
+
"""
|
377
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IPv6 address associated with the database node. Use this OCID with the [GetIpv6](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6) API to get the IPv6 address needed to make a database connection.
|
378
|
+
"""
|
379
|
+
return pulumi.get(self, "host_ipv6id")
|
380
|
+
|
381
|
+
@host_ipv6id.setter
|
382
|
+
def host_ipv6id(self, value: Optional[pulumi.Input[str]]):
|
383
|
+
pulumi.set(self, "host_ipv6id", value)
|
384
|
+
|
353
385
|
@property
|
354
386
|
@pulumi.getter
|
355
387
|
def hostname(self) -> Optional[pulumi.Input[str]]:
|
@@ -580,6 +612,7 @@ class DbNode(pulumi.CustomResource):
|
|
580
612
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
581
613
|
__props__.__dict__["additional_details"] = None
|
582
614
|
__props__.__dict__["backup_ip_id"] = None
|
615
|
+
__props__.__dict__["backup_ipv6id"] = None
|
583
616
|
__props__.__dict__["backup_vnic2id"] = None
|
584
617
|
__props__.__dict__["backup_vnic_id"] = None
|
585
618
|
__props__.__dict__["cpu_core_count"] = None
|
@@ -588,6 +621,7 @@ class DbNode(pulumi.CustomResource):
|
|
588
621
|
__props__.__dict__["db_system_id"] = None
|
589
622
|
__props__.__dict__["fault_domain"] = None
|
590
623
|
__props__.__dict__["host_ip_id"] = None
|
624
|
+
__props__.__dict__["host_ipv6id"] = None
|
591
625
|
__props__.__dict__["hostname"] = None
|
592
626
|
__props__.__dict__["lifecycle_details"] = None
|
593
627
|
__props__.__dict__["maintenance_type"] = None
|
@@ -612,6 +646,7 @@ class DbNode(pulumi.CustomResource):
|
|
612
646
|
opts: Optional[pulumi.ResourceOptions] = None,
|
613
647
|
additional_details: Optional[pulumi.Input[str]] = None,
|
614
648
|
backup_ip_id: Optional[pulumi.Input[str]] = None,
|
649
|
+
backup_ipv6id: Optional[pulumi.Input[str]] = None,
|
615
650
|
backup_vnic2id: Optional[pulumi.Input[str]] = None,
|
616
651
|
backup_vnic_id: Optional[pulumi.Input[str]] = None,
|
617
652
|
cpu_core_count: Optional[pulumi.Input[int]] = None,
|
@@ -623,6 +658,7 @@ class DbNode(pulumi.CustomResource):
|
|
623
658
|
fault_domain: Optional[pulumi.Input[str]] = None,
|
624
659
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
625
660
|
host_ip_id: Optional[pulumi.Input[str]] = None,
|
661
|
+
host_ipv6id: Optional[pulumi.Input[str]] = None,
|
626
662
|
hostname: Optional[pulumi.Input[str]] = None,
|
627
663
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
628
664
|
maintenance_type: Optional[pulumi.Input[str]] = None,
|
@@ -643,7 +679,8 @@ class DbNode(pulumi.CustomResource):
|
|
643
679
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
644
680
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
645
681
|
:param pulumi.Input[str] additional_details: Additional information about the planned maintenance.
|
646
|
-
:param pulumi.Input[str] backup_ip_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup
|
682
|
+
:param pulumi.Input[str] backup_ip_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IPv4 address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IPv4 address needed to make a database connection.
|
683
|
+
:param pulumi.Input[str] backup_ipv6id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IPv6 address associated with the database node. Use this OCID with the [GetIpv6](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6) API to get the IPv6 address needed to make a database connection.
|
647
684
|
:param pulumi.Input[str] backup_vnic2id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the second backup VNIC.
|
648
685
|
:param pulumi.Input[str] backup_vnic_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup VNIC.
|
649
686
|
:param pulumi.Input[int] cpu_core_count: The number of CPU cores enabled on the Db node.
|
@@ -658,7 +695,8 @@ class DbNode(pulumi.CustomResource):
|
|
658
695
|
|
659
696
|
** IMPORTANT **
|
660
697
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
661
|
-
:param pulumi.Input[str] host_ip_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host
|
698
|
+
:param pulumi.Input[str] host_ip_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IPv4 address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IPv4 address needed to make a database connection.
|
699
|
+
:param pulumi.Input[str] host_ipv6id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IPv6 address associated with the database node. Use this OCID with the [GetIpv6](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6) API to get the IPv6 address needed to make a database connection.
|
662
700
|
:param pulumi.Input[str] hostname: The host name for the database node.
|
663
701
|
:param pulumi.Input[str] lifecycle_details: Information about the current lifecycle state.
|
664
702
|
:param pulumi.Input[str] maintenance_type: The type of database node maintenance.
|
@@ -678,6 +716,7 @@ class DbNode(pulumi.CustomResource):
|
|
678
716
|
|
679
717
|
__props__.__dict__["additional_details"] = additional_details
|
680
718
|
__props__.__dict__["backup_ip_id"] = backup_ip_id
|
719
|
+
__props__.__dict__["backup_ipv6id"] = backup_ipv6id
|
681
720
|
__props__.__dict__["backup_vnic2id"] = backup_vnic2id
|
682
721
|
__props__.__dict__["backup_vnic_id"] = backup_vnic_id
|
683
722
|
__props__.__dict__["cpu_core_count"] = cpu_core_count
|
@@ -689,6 +728,7 @@ class DbNode(pulumi.CustomResource):
|
|
689
728
|
__props__.__dict__["fault_domain"] = fault_domain
|
690
729
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
691
730
|
__props__.__dict__["host_ip_id"] = host_ip_id
|
731
|
+
__props__.__dict__["host_ipv6id"] = host_ipv6id
|
692
732
|
__props__.__dict__["hostname"] = hostname
|
693
733
|
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
694
734
|
__props__.__dict__["maintenance_type"] = maintenance_type
|
@@ -715,10 +755,18 @@ class DbNode(pulumi.CustomResource):
|
|
715
755
|
@pulumi.getter(name="backupIpId")
|
716
756
|
def backup_ip_id(self) -> pulumi.Output[str]:
|
717
757
|
"""
|
718
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup
|
758
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IPv4 address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IPv4 address needed to make a database connection.
|
719
759
|
"""
|
720
760
|
return pulumi.get(self, "backup_ip_id")
|
721
761
|
|
762
|
+
@property
|
763
|
+
@pulumi.getter(name="backupIpv6id")
|
764
|
+
def backup_ipv6id(self) -> pulumi.Output[str]:
|
765
|
+
"""
|
766
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IPv6 address associated with the database node. Use this OCID with the [GetIpv6](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6) API to get the IPv6 address needed to make a database connection.
|
767
|
+
"""
|
768
|
+
return pulumi.get(self, "backup_ipv6id")
|
769
|
+
|
722
770
|
@property
|
723
771
|
@pulumi.getter(name="backupVnic2id")
|
724
772
|
def backup_vnic2id(self) -> pulumi.Output[str]:
|
@@ -807,10 +855,18 @@ class DbNode(pulumi.CustomResource):
|
|
807
855
|
@pulumi.getter(name="hostIpId")
|
808
856
|
def host_ip_id(self) -> pulumi.Output[str]:
|
809
857
|
"""
|
810
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host
|
858
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IPv4 address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IPv4 address needed to make a database connection.
|
811
859
|
"""
|
812
860
|
return pulumi.get(self, "host_ip_id")
|
813
861
|
|
862
|
+
@property
|
863
|
+
@pulumi.getter(name="hostIpv6id")
|
864
|
+
def host_ipv6id(self) -> pulumi.Output[str]:
|
865
|
+
"""
|
866
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IPv6 address associated with the database node. Use this OCID with the [GetIpv6](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6) API to get the IPv6 address needed to make a database connection.
|
867
|
+
"""
|
868
|
+
return pulumi.get(self, "host_ipv6id")
|
869
|
+
|
814
870
|
@property
|
815
871
|
@pulumi.getter
|
816
872
|
def hostname(self) -> pulumi.Output[str]:
|