pulumi-oci 2.26.0a1741847591__py3-none-any.whl → 2.27.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +211 -0
- pulumi_oci/containerengine/_inputs.py +43 -44
- pulumi_oci/containerengine/cluster.py +2 -0
- pulumi_oci/containerengine/container_instance.py +2 -4
- pulumi_oci/containerengine/outputs.py +128 -43
- pulumi_oci/containerinstances/outputs.py +0 -14
- pulumi_oci/core/__init__.py +7 -0
- pulumi_oci/core/_inputs.py +168 -33
- pulumi_oci/core/compute_gpu_memory_cluster.py +706 -0
- pulumi_oci/core/compute_gpu_memory_fabric.py +667 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster.py +281 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster_instances.py +144 -0
- pulumi_oci/core/get_compute_gpu_memory_clusters.py +232 -0
- pulumi_oci/core/get_compute_gpu_memory_fabric.py +309 -0
- pulumi_oci/core/get_compute_gpu_memory_fabrics.py +289 -0
- pulumi_oci/core/outputs.py +595 -21
- pulumi_oci/database/__init__.py +3 -0
- pulumi_oci/database/_inputs.py +4116 -1225
- pulumi_oci/database/application_vip.py +59 -10
- pulumi_oci/database/autonomous_container_database.py +305 -52
- pulumi_oci/database/autonomous_container_database_add_standby.py +2183 -0
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +80 -40
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +322 -0
- 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_container_database.py +103 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +12 -1
- pulumi_oci/database/get_autonomous_container_databases.py +1 -1
- 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_maintenance_run.py +15 -1
- pulumi_oci/database/get_vm_cluster.py +60 -4
- pulumi_oci/database/get_vm_clusters.py +25 -3
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/outputs.py +3831 -267
- 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/goldengate/_inputs.py +128 -0
- pulumi_oci/goldengate/deployment.py +103 -0
- pulumi_oci/goldengate/deployment_backup.py +28 -0
- pulumi_oci/goldengate/get_deployment.py +43 -1
- pulumi_oci/goldengate/get_deployment_backup.py +15 -1
- pulumi_oci/goldengate/outputs.py +289 -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/osmanagementhub/__init__.py +18 -0
- pulumi_oci/osmanagementhub/_inputs.py +677 -12
- pulumi_oci/osmanagementhub/event.py +8 -0
- pulumi_oci/osmanagementhub/get_entitlements.py +2 -2
- pulumi_oci/osmanagementhub/get_event.py +2 -0
- pulumi_oci/osmanagementhub/get_events.py +2 -0
- pulumi_oci/osmanagementhub/get_managed_instance.py +30 -2
- pulumi_oci/osmanagementhub/get_managed_instances.py +75 -63
- pulumi_oci/osmanagementhub/get_management_station.py +116 -4
- pulumi_oci/osmanagementhub/get_management_station_mirrors.py +1 -1
- pulumi_oci/osmanagementhub/get_management_stations.py +47 -4
- pulumi_oci/osmanagementhub/get_profile.py +32 -4
- pulumi_oci/osmanagementhub/get_profile_available_software_sources.py +207 -0
- pulumi_oci/osmanagementhub/get_profile_version.py +388 -0
- pulumi_oci/osmanagementhub/get_profiles.py +63 -3
- pulumi_oci/osmanagementhub/get_scheduled_job.py +15 -1
- pulumi_oci/osmanagementhub/get_software_package.py +2 -2
- pulumi_oci/osmanagementhub/get_software_package_software_source.py +7 -7
- pulumi_oci/osmanagementhub/get_software_source.py +89 -5
- pulumi_oci/osmanagementhub/get_software_source_available_software_packages.py +209 -0
- pulumi_oci/osmanagementhub/get_software_source_manifest.py +127 -0
- pulumi_oci/osmanagementhub/get_software_sources.py +30 -8
- pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance.py +56 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +49 -0
- pulumi_oci/osmanagementhub/managed_instance_group_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance_reboot_management.py +299 -0
- pulumi_oci/osmanagementhub/management_station.py +251 -4
- pulumi_oci/osmanagementhub/management_station_associate_managed_instances_management.py +298 -0
- pulumi_oci/osmanagementhub/management_station_refresh_management.py +2 -2
- pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +9 -9
- pulumi_oci/osmanagementhub/outputs.py +1349 -50
- pulumi_oci/osmanagementhub/profile.py +70 -14
- pulumi_oci/osmanagementhub/profile_attach_lifecycle_stage_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_managed_instance_group_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_management_station_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_detach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/scheduled_job.py +72 -21
- pulumi_oci/osmanagementhub/software_source.py +365 -26
- pulumi_oci/osmanagementhub/software_source_add_packages_management.py +67 -10
- pulumi_oci/osmanagementhub/software_source_generate_metadata_management.py +217 -0
- pulumi_oci/osmanagementhub/software_source_manifest.py +268 -0
- pulumi_oci/osmanagementhub/software_source_remove_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/software_source_replace_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/work_request_rerun_management.py +325 -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.0.dist-info}/METADATA +2 -2
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/RECORD +206 -150
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/top_level.txt +0 -0
@@ -26,13 +26,16 @@ class GetDbNodeResult:
|
|
26
26
|
"""
|
27
27
|
A collection of values returned by getDbNode.
|
28
28
|
"""
|
29
|
-
def __init__(__self__, additional_details=None, backup_ip_id=None, backup_vnic2id=None, backup_vnic_id=None, cpu_core_count=None, db_node_id=None, db_node_storage_size_in_gbs=None, db_server_id=None, db_system_id=None, defined_tags=None, fault_domain=None, freeform_tags=None, host_ip_id=None, hostname=None, id=None, lifecycle_details=None, maintenance_type=None, memory_size_in_gbs=None, software_storage_size_in_gb=None, state=None, time_created=None, time_maintenance_window_end=None, time_maintenance_window_start=None, total_cpu_core_count=None, vnic2id=None, vnic_id=None):
|
29
|
+
def __init__(__self__, additional_details=None, backup_ip_id=None, backup_ipv6id=None, backup_vnic2id=None, backup_vnic_id=None, cpu_core_count=None, db_node_id=None, db_node_storage_size_in_gbs=None, db_server_id=None, db_system_id=None, defined_tags=None, fault_domain=None, freeform_tags=None, host_ip_id=None, host_ipv6id=None, hostname=None, id=None, lifecycle_details=None, maintenance_type=None, memory_size_in_gbs=None, software_storage_size_in_gb=None, state=None, time_created=None, time_maintenance_window_end=None, time_maintenance_window_start=None, total_cpu_core_count=None, vnic2id=None, vnic_id=None):
|
30
30
|
if additional_details and not isinstance(additional_details, str):
|
31
31
|
raise TypeError("Expected argument 'additional_details' to be a str")
|
32
32
|
pulumi.set(__self__, "additional_details", additional_details)
|
33
33
|
if backup_ip_id and not isinstance(backup_ip_id, str):
|
34
34
|
raise TypeError("Expected argument 'backup_ip_id' to be a str")
|
35
35
|
pulumi.set(__self__, "backup_ip_id", backup_ip_id)
|
36
|
+
if backup_ipv6id and not isinstance(backup_ipv6id, str):
|
37
|
+
raise TypeError("Expected argument 'backup_ipv6id' to be a str")
|
38
|
+
pulumi.set(__self__, "backup_ipv6id", backup_ipv6id)
|
36
39
|
if backup_vnic2id and not isinstance(backup_vnic2id, str):
|
37
40
|
raise TypeError("Expected argument 'backup_vnic2id' to be a str")
|
38
41
|
pulumi.set(__self__, "backup_vnic2id", backup_vnic2id)
|
@@ -66,6 +69,9 @@ class GetDbNodeResult:
|
|
66
69
|
if host_ip_id and not isinstance(host_ip_id, str):
|
67
70
|
raise TypeError("Expected argument 'host_ip_id' to be a str")
|
68
71
|
pulumi.set(__self__, "host_ip_id", host_ip_id)
|
72
|
+
if host_ipv6id and not isinstance(host_ipv6id, str):
|
73
|
+
raise TypeError("Expected argument 'host_ipv6id' to be a str")
|
74
|
+
pulumi.set(__self__, "host_ipv6id", host_ipv6id)
|
69
75
|
if hostname and not isinstance(hostname, str):
|
70
76
|
raise TypeError("Expected argument 'hostname' to be a str")
|
71
77
|
pulumi.set(__self__, "hostname", hostname)
|
@@ -118,10 +124,18 @@ class GetDbNodeResult:
|
|
118
124
|
@pulumi.getter(name="backupIpId")
|
119
125
|
def backup_ip_id(self) -> str:
|
120
126
|
"""
|
121
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup
|
127
|
+
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.
|
122
128
|
"""
|
123
129
|
return pulumi.get(self, "backup_ip_id")
|
124
130
|
|
131
|
+
@property
|
132
|
+
@pulumi.getter(name="backupIpv6id")
|
133
|
+
def backup_ipv6id(self) -> str:
|
134
|
+
"""
|
135
|
+
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.
|
136
|
+
"""
|
137
|
+
return pulumi.get(self, "backup_ipv6id")
|
138
|
+
|
125
139
|
@property
|
126
140
|
@pulumi.getter(name="backupVnic2id")
|
127
141
|
def backup_vnic2id(self) -> str:
|
@@ -203,11 +217,18 @@ class GetDbNodeResult:
|
|
203
217
|
@pulumi.getter(name="hostIpId")
|
204
218
|
def host_ip_id(self) -> str:
|
205
219
|
"""
|
206
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host
|
207
|
-
**Note:** Applies only to Exadata Cloud Service.
|
220
|
+
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.
|
208
221
|
"""
|
209
222
|
return pulumi.get(self, "host_ip_id")
|
210
223
|
|
224
|
+
@property
|
225
|
+
@pulumi.getter(name="hostIpv6id")
|
226
|
+
def host_ipv6id(self) -> str:
|
227
|
+
"""
|
228
|
+
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.
|
229
|
+
"""
|
230
|
+
return pulumi.get(self, "host_ipv6id")
|
231
|
+
|
211
232
|
@property
|
212
233
|
@pulumi.getter
|
213
234
|
def hostname(self) -> str:
|
@@ -321,6 +342,7 @@ class AwaitableGetDbNodeResult(GetDbNodeResult):
|
|
321
342
|
return GetDbNodeResult(
|
322
343
|
additional_details=self.additional_details,
|
323
344
|
backup_ip_id=self.backup_ip_id,
|
345
|
+
backup_ipv6id=self.backup_ipv6id,
|
324
346
|
backup_vnic2id=self.backup_vnic2id,
|
325
347
|
backup_vnic_id=self.backup_vnic_id,
|
326
348
|
cpu_core_count=self.cpu_core_count,
|
@@ -332,6 +354,7 @@ class AwaitableGetDbNodeResult(GetDbNodeResult):
|
|
332
354
|
fault_domain=self.fault_domain,
|
333
355
|
freeform_tags=self.freeform_tags,
|
334
356
|
host_ip_id=self.host_ip_id,
|
357
|
+
host_ipv6id=self.host_ipv6id,
|
335
358
|
hostname=self.hostname,
|
336
359
|
id=self.id,
|
337
360
|
lifecycle_details=self.lifecycle_details,
|
@@ -374,6 +397,7 @@ def get_db_node(db_node_id: Optional[str] = None,
|
|
374
397
|
return AwaitableGetDbNodeResult(
|
375
398
|
additional_details=pulumi.get(__ret__, 'additional_details'),
|
376
399
|
backup_ip_id=pulumi.get(__ret__, 'backup_ip_id'),
|
400
|
+
backup_ipv6id=pulumi.get(__ret__, 'backup_ipv6id'),
|
377
401
|
backup_vnic2id=pulumi.get(__ret__, 'backup_vnic2id'),
|
378
402
|
backup_vnic_id=pulumi.get(__ret__, 'backup_vnic_id'),
|
379
403
|
cpu_core_count=pulumi.get(__ret__, 'cpu_core_count'),
|
@@ -385,6 +409,7 @@ def get_db_node(db_node_id: Optional[str] = None,
|
|
385
409
|
fault_domain=pulumi.get(__ret__, 'fault_domain'),
|
386
410
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
387
411
|
host_ip_id=pulumi.get(__ret__, 'host_ip_id'),
|
412
|
+
host_ipv6id=pulumi.get(__ret__, 'host_ipv6id'),
|
388
413
|
hostname=pulumi.get(__ret__, 'hostname'),
|
389
414
|
id=pulumi.get(__ret__, 'id'),
|
390
415
|
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
@@ -424,6 +449,7 @@ def get_db_node_output(db_node_id: Optional[pulumi.Input[str]] = None,
|
|
424
449
|
return __ret__.apply(lambda __response__: GetDbNodeResult(
|
425
450
|
additional_details=pulumi.get(__response__, 'additional_details'),
|
426
451
|
backup_ip_id=pulumi.get(__response__, 'backup_ip_id'),
|
452
|
+
backup_ipv6id=pulumi.get(__response__, 'backup_ipv6id'),
|
427
453
|
backup_vnic2id=pulumi.get(__response__, 'backup_vnic2id'),
|
428
454
|
backup_vnic_id=pulumi.get(__response__, 'backup_vnic_id'),
|
429
455
|
cpu_core_count=pulumi.get(__response__, 'cpu_core_count'),
|
@@ -435,6 +461,7 @@ def get_db_node_output(db_node_id: Optional[pulumi.Input[str]] = None,
|
|
435
461
|
fault_domain=pulumi.get(__response__, 'fault_domain'),
|
436
462
|
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
437
463
|
host_ip_id=pulumi.get(__response__, 'host_ip_id'),
|
464
|
+
host_ipv6id=pulumi.get(__response__, 'host_ipv6id'),
|
438
465
|
hostname=pulumi.get(__response__, 'hostname'),
|
439
466
|
id=pulumi.get(__response__, 'id'),
|
440
467
|
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
@@ -27,7 +27,7 @@ class GetDbServerResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getDbServer.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, autonomous_virtual_machine_ids=None, autonomous_vm_cluster_ids=None, compartment_id=None, cpu_core_count=None, db_node_ids=None, db_node_storage_size_in_gbs=None, db_server_id=None, db_server_patching_details=None, defined_tags=None, display_name=None, exadata_infrastructure_id=None, freeform_tags=None, id=None, lifecycle_details=None, max_cpu_count=None, max_db_node_storage_in_gbs=None, max_memory_in_gbs=None, memory_size_in_gbs=None, shape=None, state=None, time_created=None, vm_cluster_ids=None):
|
30
|
+
def __init__(__self__, autonomous_virtual_machine_ids=None, autonomous_vm_cluster_ids=None, compartment_id=None, compute_model=None, cpu_core_count=None, db_node_ids=None, db_node_storage_size_in_gbs=None, db_server_id=None, db_server_patching_details=None, defined_tags=None, display_name=None, exadata_infrastructure_id=None, freeform_tags=None, id=None, lifecycle_details=None, max_cpu_count=None, max_db_node_storage_in_gbs=None, max_memory_in_gbs=None, memory_size_in_gbs=None, shape=None, state=None, time_created=None, vm_cluster_ids=None):
|
31
31
|
if autonomous_virtual_machine_ids and not isinstance(autonomous_virtual_machine_ids, list):
|
32
32
|
raise TypeError("Expected argument 'autonomous_virtual_machine_ids' to be a list")
|
33
33
|
pulumi.set(__self__, "autonomous_virtual_machine_ids", autonomous_virtual_machine_ids)
|
@@ -37,6 +37,9 @@ class GetDbServerResult:
|
|
37
37
|
if compartment_id and not isinstance(compartment_id, str):
|
38
38
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
39
39
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
40
|
+
if compute_model and not isinstance(compute_model, str):
|
41
|
+
raise TypeError("Expected argument 'compute_model' to be a str")
|
42
|
+
pulumi.set(__self__, "compute_model", compute_model)
|
40
43
|
if cpu_core_count and not isinstance(cpu_core_count, int):
|
41
44
|
raise TypeError("Expected argument 'cpu_core_count' to be a int")
|
42
45
|
pulumi.set(__self__, "cpu_core_count", cpu_core_count)
|
@@ -119,6 +122,14 @@ class GetDbServerResult:
|
|
119
122
|
"""
|
120
123
|
return pulumi.get(self, "compartment_id")
|
121
124
|
|
125
|
+
@property
|
126
|
+
@pulumi.getter(name="computeModel")
|
127
|
+
def compute_model(self) -> str:
|
128
|
+
"""
|
129
|
+
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.
|
130
|
+
"""
|
131
|
+
return pulumi.get(self, "compute_model")
|
132
|
+
|
122
133
|
@property
|
123
134
|
@pulumi.getter(name="cpuCoreCount")
|
124
135
|
def cpu_core_count(self) -> int:
|
@@ -278,6 +289,7 @@ class AwaitableGetDbServerResult(GetDbServerResult):
|
|
278
289
|
autonomous_virtual_machine_ids=self.autonomous_virtual_machine_ids,
|
279
290
|
autonomous_vm_cluster_ids=self.autonomous_vm_cluster_ids,
|
280
291
|
compartment_id=self.compartment_id,
|
292
|
+
compute_model=self.compute_model,
|
281
293
|
cpu_core_count=self.cpu_core_count,
|
282
294
|
db_node_ids=self.db_node_ids,
|
283
295
|
db_node_storage_size_in_gbs=self.db_node_storage_size_in_gbs,
|
@@ -331,6 +343,7 @@ def get_db_server(db_server_id: Optional[str] = None,
|
|
331
343
|
autonomous_virtual_machine_ids=pulumi.get(__ret__, 'autonomous_virtual_machine_ids'),
|
332
344
|
autonomous_vm_cluster_ids=pulumi.get(__ret__, 'autonomous_vm_cluster_ids'),
|
333
345
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
346
|
+
compute_model=pulumi.get(__ret__, 'compute_model'),
|
334
347
|
cpu_core_count=pulumi.get(__ret__, 'cpu_core_count'),
|
335
348
|
db_node_ids=pulumi.get(__ret__, 'db_node_ids'),
|
336
349
|
db_node_storage_size_in_gbs=pulumi.get(__ret__, 'db_node_storage_size_in_gbs'),
|
@@ -381,6 +394,7 @@ def get_db_server_output(db_server_id: Optional[pulumi.Input[str]] = None,
|
|
381
394
|
autonomous_virtual_machine_ids=pulumi.get(__response__, 'autonomous_virtual_machine_ids'),
|
382
395
|
autonomous_vm_cluster_ids=pulumi.get(__response__, 'autonomous_vm_cluster_ids'),
|
383
396
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
397
|
+
compute_model=pulumi.get(__response__, 'compute_model'),
|
384
398
|
cpu_core_count=pulumi.get(__response__, 'cpu_core_count'),
|
385
399
|
db_node_ids=pulumi.get(__response__, 'db_node_ids'),
|
386
400
|
db_node_storage_size_in_gbs=pulumi.get(__response__, 'db_node_storage_size_in_gbs'),
|
@@ -27,7 +27,7 @@ class GetExadataInfrastructureResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getExadataInfrastructure.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, activated_storage_count=None, activation_file=None, additional_compute_count=None, additional_compute_system_model=None, additional_storage_count=None, admin_network_cidr=None, availability_domain=None, cloud_control_plane_server1=None, cloud_control_plane_server2=None, compartment_id=None, compute_count=None, contacts=None, corporate_proxy=None, cpus_enabled=None, create_async=None, csi_number=None, data_storage_size_in_tbs=None, db_node_storage_size_in_gbs=None, db_server_version=None, defined_file_system_configurations=None, defined_tags=None, display_name=None, dns_servers=None, exadata_infrastructure_id=None, freeform_tags=None, gateway=None, id=None, infini_band_network_cidr=None, is_cps_offline_report_enabled=None, is_multi_rack_deployment=None, is_scheduling_policy_associated=None, lifecycle_details=None, maintenance_slo_status=None, maintenance_windows=None, max_cpu_count=None, max_data_storage_in_tbs=None, max_db_node_storage_in_gbs=None, max_memory_in_gbs=None, memory_size_in_gbs=None, monthly_db_server_version=None, multi_rack_configuration_file=None, netmask=None, network_bonding_mode_details=None, ntp_servers=None, rack_serial_number=None, shape=None, state=None, storage_count=None, storage_server_version=None, time_created=None, time_zone=None):
|
30
|
+
def __init__(__self__, activated_storage_count=None, activation_file=None, additional_compute_count=None, additional_compute_system_model=None, additional_storage_count=None, admin_network_cidr=None, availability_domain=None, cloud_control_plane_server1=None, cloud_control_plane_server2=None, compartment_id=None, compute_count=None, compute_model=None, contacts=None, corporate_proxy=None, cpus_enabled=None, create_async=None, csi_number=None, data_storage_size_in_tbs=None, database_server_type=None, db_node_storage_size_in_gbs=None, db_server_version=None, defined_file_system_configurations=None, defined_tags=None, display_name=None, dns_servers=None, exadata_infrastructure_id=None, exascale_configs=None, freeform_tags=None, gateway=None, id=None, infini_band_network_cidr=None, is_cps_offline_report_enabled=None, is_multi_rack_deployment=None, is_scheduling_policy_associated=None, lifecycle_details=None, maintenance_slo_status=None, maintenance_windows=None, max_cpu_count=None, max_data_storage_in_tbs=None, max_db_node_storage_in_gbs=None, max_memory_in_gbs=None, memory_size_in_gbs=None, monthly_db_server_version=None, multi_rack_configuration_file=None, netmask=None, network_bonding_mode_details=None, ntp_servers=None, rack_serial_number=None, shape=None, state=None, storage_count=None, storage_server_type=None, storage_server_version=None, time_created=None, time_zone=None):
|
31
31
|
if activated_storage_count and not isinstance(activated_storage_count, int):
|
32
32
|
raise TypeError("Expected argument 'activated_storage_count' to be a int")
|
33
33
|
pulumi.set(__self__, "activated_storage_count", activated_storage_count)
|
@@ -61,6 +61,9 @@ class GetExadataInfrastructureResult:
|
|
61
61
|
if compute_count and not isinstance(compute_count, int):
|
62
62
|
raise TypeError("Expected argument 'compute_count' to be a int")
|
63
63
|
pulumi.set(__self__, "compute_count", compute_count)
|
64
|
+
if compute_model and not isinstance(compute_model, str):
|
65
|
+
raise TypeError("Expected argument 'compute_model' to be a str")
|
66
|
+
pulumi.set(__self__, "compute_model", compute_model)
|
64
67
|
if contacts and not isinstance(contacts, list):
|
65
68
|
raise TypeError("Expected argument 'contacts' to be a list")
|
66
69
|
pulumi.set(__self__, "contacts", contacts)
|
@@ -79,6 +82,9 @@ class GetExadataInfrastructureResult:
|
|
79
82
|
if data_storage_size_in_tbs and not isinstance(data_storage_size_in_tbs, float):
|
80
83
|
raise TypeError("Expected argument 'data_storage_size_in_tbs' to be a float")
|
81
84
|
pulumi.set(__self__, "data_storage_size_in_tbs", data_storage_size_in_tbs)
|
85
|
+
if database_server_type and not isinstance(database_server_type, str):
|
86
|
+
raise TypeError("Expected argument 'database_server_type' to be a str")
|
87
|
+
pulumi.set(__self__, "database_server_type", database_server_type)
|
82
88
|
if db_node_storage_size_in_gbs and not isinstance(db_node_storage_size_in_gbs, int):
|
83
89
|
raise TypeError("Expected argument 'db_node_storage_size_in_gbs' to be a int")
|
84
90
|
pulumi.set(__self__, "db_node_storage_size_in_gbs", db_node_storage_size_in_gbs)
|
@@ -100,6 +106,9 @@ class GetExadataInfrastructureResult:
|
|
100
106
|
if exadata_infrastructure_id and not isinstance(exadata_infrastructure_id, str):
|
101
107
|
raise TypeError("Expected argument 'exadata_infrastructure_id' to be a str")
|
102
108
|
pulumi.set(__self__, "exadata_infrastructure_id", exadata_infrastructure_id)
|
109
|
+
if exascale_configs and not isinstance(exascale_configs, list):
|
110
|
+
raise TypeError("Expected argument 'exascale_configs' to be a list")
|
111
|
+
pulumi.set(__self__, "exascale_configs", exascale_configs)
|
103
112
|
if freeform_tags and not isinstance(freeform_tags, dict):
|
104
113
|
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
105
114
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
@@ -172,6 +181,9 @@ class GetExadataInfrastructureResult:
|
|
172
181
|
if storage_count and not isinstance(storage_count, int):
|
173
182
|
raise TypeError("Expected argument 'storage_count' to be a int")
|
174
183
|
pulumi.set(__self__, "storage_count", storage_count)
|
184
|
+
if storage_server_type and not isinstance(storage_server_type, str):
|
185
|
+
raise TypeError("Expected argument 'storage_server_type' to be a str")
|
186
|
+
pulumi.set(__self__, "storage_server_type", storage_server_type)
|
175
187
|
if storage_server_version and not isinstance(storage_server_version, str):
|
176
188
|
raise TypeError("Expected argument 'storage_server_version' to be a str")
|
177
189
|
pulumi.set(__self__, "storage_server_version", storage_server_version)
|
@@ -267,6 +279,14 @@ class GetExadataInfrastructureResult:
|
|
267
279
|
"""
|
268
280
|
return pulumi.get(self, "compute_count")
|
269
281
|
|
282
|
+
@property
|
283
|
+
@pulumi.getter(name="computeModel")
|
284
|
+
def compute_model(self) -> str:
|
285
|
+
"""
|
286
|
+
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.
|
287
|
+
"""
|
288
|
+
return pulumi.get(self, "compute_model")
|
289
|
+
|
270
290
|
@property
|
271
291
|
@pulumi.getter
|
272
292
|
def contacts(self) -> Sequence['outputs.GetExadataInfrastructureContactResult']:
|
@@ -312,6 +332,14 @@ class GetExadataInfrastructureResult:
|
|
312
332
|
"""
|
313
333
|
return pulumi.get(self, "data_storage_size_in_tbs")
|
314
334
|
|
335
|
+
@property
|
336
|
+
@pulumi.getter(name="databaseServerType")
|
337
|
+
def database_server_type(self) -> str:
|
338
|
+
"""
|
339
|
+
The database server type of the Exadata infrastructure.
|
340
|
+
"""
|
341
|
+
return pulumi.get(self, "database_server_type")
|
342
|
+
|
315
343
|
@property
|
316
344
|
@pulumi.getter(name="dbNodeStorageSizeInGbs")
|
317
345
|
def db_node_storage_size_in_gbs(self) -> int:
|
@@ -365,6 +393,14 @@ class GetExadataInfrastructureResult:
|
|
365
393
|
def exadata_infrastructure_id(self) -> str:
|
366
394
|
return pulumi.get(self, "exadata_infrastructure_id")
|
367
395
|
|
396
|
+
@property
|
397
|
+
@pulumi.getter(name="exascaleConfigs")
|
398
|
+
def exascale_configs(self) -> Sequence['outputs.GetExadataInfrastructureExascaleConfigResult']:
|
399
|
+
"""
|
400
|
+
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.
|
401
|
+
"""
|
402
|
+
return pulumi.get(self, "exascale_configs")
|
403
|
+
|
368
404
|
@property
|
369
405
|
@pulumi.getter(name="freeformTags")
|
370
406
|
def freeform_tags(self) -> Mapping[str, str]:
|
@@ -557,6 +593,14 @@ class GetExadataInfrastructureResult:
|
|
557
593
|
"""
|
558
594
|
return pulumi.get(self, "storage_count")
|
559
595
|
|
596
|
+
@property
|
597
|
+
@pulumi.getter(name="storageServerType")
|
598
|
+
def storage_server_type(self) -> str:
|
599
|
+
"""
|
600
|
+
The storage server type of the Exadata infrastructure.
|
601
|
+
"""
|
602
|
+
return pulumi.get(self, "storage_server_type")
|
603
|
+
|
560
604
|
@property
|
561
605
|
@pulumi.getter(name="storageServerVersion")
|
562
606
|
def storage_server_version(self) -> str:
|
@@ -599,12 +643,14 @@ class AwaitableGetExadataInfrastructureResult(GetExadataInfrastructureResult):
|
|
599
643
|
cloud_control_plane_server2=self.cloud_control_plane_server2,
|
600
644
|
compartment_id=self.compartment_id,
|
601
645
|
compute_count=self.compute_count,
|
646
|
+
compute_model=self.compute_model,
|
602
647
|
contacts=self.contacts,
|
603
648
|
corporate_proxy=self.corporate_proxy,
|
604
649
|
cpus_enabled=self.cpus_enabled,
|
605
650
|
create_async=self.create_async,
|
606
651
|
csi_number=self.csi_number,
|
607
652
|
data_storage_size_in_tbs=self.data_storage_size_in_tbs,
|
653
|
+
database_server_type=self.database_server_type,
|
608
654
|
db_node_storage_size_in_gbs=self.db_node_storage_size_in_gbs,
|
609
655
|
db_server_version=self.db_server_version,
|
610
656
|
defined_file_system_configurations=self.defined_file_system_configurations,
|
@@ -612,6 +658,7 @@ class AwaitableGetExadataInfrastructureResult(GetExadataInfrastructureResult):
|
|
612
658
|
display_name=self.display_name,
|
613
659
|
dns_servers=self.dns_servers,
|
614
660
|
exadata_infrastructure_id=self.exadata_infrastructure_id,
|
661
|
+
exascale_configs=self.exascale_configs,
|
615
662
|
freeform_tags=self.freeform_tags,
|
616
663
|
gateway=self.gateway,
|
617
664
|
id=self.id,
|
@@ -636,6 +683,7 @@ class AwaitableGetExadataInfrastructureResult(GetExadataInfrastructureResult):
|
|
636
683
|
shape=self.shape,
|
637
684
|
state=self.state,
|
638
685
|
storage_count=self.storage_count,
|
686
|
+
storage_server_type=self.storage_server_type,
|
639
687
|
storage_server_version=self.storage_server_version,
|
640
688
|
time_created=self.time_created,
|
641
689
|
time_zone=self.time_zone)
|
@@ -669,12 +717,14 @@ def get_exadata_infrastructure(exadata_infrastructure_id: Optional[str] = None,
|
|
669
717
|
cloud_control_plane_server2=pulumi.get(__ret__, 'cloud_control_plane_server2'),
|
670
718
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
671
719
|
compute_count=pulumi.get(__ret__, 'compute_count'),
|
720
|
+
compute_model=pulumi.get(__ret__, 'compute_model'),
|
672
721
|
contacts=pulumi.get(__ret__, 'contacts'),
|
673
722
|
corporate_proxy=pulumi.get(__ret__, 'corporate_proxy'),
|
674
723
|
cpus_enabled=pulumi.get(__ret__, 'cpus_enabled'),
|
675
724
|
create_async=pulumi.get(__ret__, 'create_async'),
|
676
725
|
csi_number=pulumi.get(__ret__, 'csi_number'),
|
677
726
|
data_storage_size_in_tbs=pulumi.get(__ret__, 'data_storage_size_in_tbs'),
|
727
|
+
database_server_type=pulumi.get(__ret__, 'database_server_type'),
|
678
728
|
db_node_storage_size_in_gbs=pulumi.get(__ret__, 'db_node_storage_size_in_gbs'),
|
679
729
|
db_server_version=pulumi.get(__ret__, 'db_server_version'),
|
680
730
|
defined_file_system_configurations=pulumi.get(__ret__, 'defined_file_system_configurations'),
|
@@ -682,6 +732,7 @@ def get_exadata_infrastructure(exadata_infrastructure_id: Optional[str] = None,
|
|
682
732
|
display_name=pulumi.get(__ret__, 'display_name'),
|
683
733
|
dns_servers=pulumi.get(__ret__, 'dns_servers'),
|
684
734
|
exadata_infrastructure_id=pulumi.get(__ret__, 'exadata_infrastructure_id'),
|
735
|
+
exascale_configs=pulumi.get(__ret__, 'exascale_configs'),
|
685
736
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
686
737
|
gateway=pulumi.get(__ret__, 'gateway'),
|
687
738
|
id=pulumi.get(__ret__, 'id'),
|
@@ -706,6 +757,7 @@ def get_exadata_infrastructure(exadata_infrastructure_id: Optional[str] = None,
|
|
706
757
|
shape=pulumi.get(__ret__, 'shape'),
|
707
758
|
state=pulumi.get(__ret__, 'state'),
|
708
759
|
storage_count=pulumi.get(__ret__, 'storage_count'),
|
760
|
+
storage_server_type=pulumi.get(__ret__, 'storage_server_type'),
|
709
761
|
storage_server_version=pulumi.get(__ret__, 'storage_server_version'),
|
710
762
|
time_created=pulumi.get(__ret__, 'time_created'),
|
711
763
|
time_zone=pulumi.get(__ret__, 'time_zone'))
|
@@ -736,12 +788,14 @@ def get_exadata_infrastructure_output(exadata_infrastructure_id: Optional[pulumi
|
|
736
788
|
cloud_control_plane_server2=pulumi.get(__response__, 'cloud_control_plane_server2'),
|
737
789
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
738
790
|
compute_count=pulumi.get(__response__, 'compute_count'),
|
791
|
+
compute_model=pulumi.get(__response__, 'compute_model'),
|
739
792
|
contacts=pulumi.get(__response__, 'contacts'),
|
740
793
|
corporate_proxy=pulumi.get(__response__, 'corporate_proxy'),
|
741
794
|
cpus_enabled=pulumi.get(__response__, 'cpus_enabled'),
|
742
795
|
create_async=pulumi.get(__response__, 'create_async'),
|
743
796
|
csi_number=pulumi.get(__response__, 'csi_number'),
|
744
797
|
data_storage_size_in_tbs=pulumi.get(__response__, 'data_storage_size_in_tbs'),
|
798
|
+
database_server_type=pulumi.get(__response__, 'database_server_type'),
|
745
799
|
db_node_storage_size_in_gbs=pulumi.get(__response__, 'db_node_storage_size_in_gbs'),
|
746
800
|
db_server_version=pulumi.get(__response__, 'db_server_version'),
|
747
801
|
defined_file_system_configurations=pulumi.get(__response__, 'defined_file_system_configurations'),
|
@@ -749,6 +803,7 @@ def get_exadata_infrastructure_output(exadata_infrastructure_id: Optional[pulumi
|
|
749
803
|
display_name=pulumi.get(__response__, 'display_name'),
|
750
804
|
dns_servers=pulumi.get(__response__, 'dns_servers'),
|
751
805
|
exadata_infrastructure_id=pulumi.get(__response__, 'exadata_infrastructure_id'),
|
806
|
+
exascale_configs=pulumi.get(__response__, 'exascale_configs'),
|
752
807
|
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
753
808
|
gateway=pulumi.get(__response__, 'gateway'),
|
754
809
|
id=pulumi.get(__response__, 'id'),
|
@@ -773,6 +828,7 @@ def get_exadata_infrastructure_output(exadata_infrastructure_id: Optional[pulumi
|
|
773
828
|
shape=pulumi.get(__response__, 'shape'),
|
774
829
|
state=pulumi.get(__response__, 'state'),
|
775
830
|
storage_count=pulumi.get(__response__, 'storage_count'),
|
831
|
+
storage_server_type=pulumi.get(__response__, 'storage_server_type'),
|
776
832
|
storage_server_version=pulumi.get(__response__, 'storage_server_version'),
|
777
833
|
time_created=pulumi.get(__response__, 'time_created'),
|
778
834
|
time_zone=pulumi.get(__response__, 'time_zone')))
|
@@ -27,7 +27,7 @@ class GetExadbVmClusterResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getExadbVmCluster.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, availability_domain=None, backup_network_nsg_ids=None, backup_subnet_id=None, cluster_name=None, compartment_id=None, data_collection_options=None, defined_tags=None, display_name=None, domain=None, exadb_vm_cluster_id=None, exascale_db_storage_vault_id=None, freeform_tags=None, gi_version=None, grid_image_id=None, grid_image_type=None, hostname=None, id=None, iorm_config_caches=None, last_update_history_entry_id=None, license_model=None, lifecycle_details=None, listener_port=None, node_configs=None, node_resources=None, nsg_ids=None, private_zone_id=None, scan_dns_name=None, scan_dns_record_id=None, scan_ip_ids=None, scan_listener_port_tcp=None, scan_listener_port_tcp_ssl=None, security_attributes=None, shape=None, ssh_public_keys=None, state=None, subnet_id=None, system_tags=None, system_version=None, time_created=None, time_zone=None, vip_ids=None, zone_id=None):
|
30
|
+
def __init__(__self__, availability_domain=None, backup_network_nsg_ids=None, backup_subnet_id=None, cluster_name=None, cluster_placement_group_id=None, compartment_id=None, data_collection_options=None, defined_tags=None, display_name=None, domain=None, exadb_vm_cluster_id=None, exascale_db_storage_vault_id=None, freeform_tags=None, gi_version=None, grid_image_id=None, grid_image_type=None, hostname=None, id=None, iorm_config_caches=None, last_update_history_entry_id=None, license_model=None, lifecycle_details=None, listener_port=None, node_configs=None, node_resources=None, nsg_ids=None, private_zone_id=None, scan_dns_name=None, scan_dns_record_id=None, scan_ip_ids=None, scan_listener_port_tcp=None, scan_listener_port_tcp_ssl=None, security_attributes=None, shape=None, ssh_public_keys=None, state=None, subnet_id=None, subscription_id=None, system_tags=None, system_version=None, time_created=None, time_zone=None, vip_ids=None, zone_id=None):
|
31
31
|
if availability_domain and not isinstance(availability_domain, str):
|
32
32
|
raise TypeError("Expected argument 'availability_domain' to be a str")
|
33
33
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -40,6 +40,9 @@ class GetExadbVmClusterResult:
|
|
40
40
|
if cluster_name and not isinstance(cluster_name, str):
|
41
41
|
raise TypeError("Expected argument 'cluster_name' to be a str")
|
42
42
|
pulumi.set(__self__, "cluster_name", cluster_name)
|
43
|
+
if cluster_placement_group_id and not isinstance(cluster_placement_group_id, str):
|
44
|
+
raise TypeError("Expected argument 'cluster_placement_group_id' to be a str")
|
45
|
+
pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
|
43
46
|
if compartment_id and not isinstance(compartment_id, str):
|
44
47
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
45
48
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -136,6 +139,9 @@ class GetExadbVmClusterResult:
|
|
136
139
|
if subnet_id and not isinstance(subnet_id, str):
|
137
140
|
raise TypeError("Expected argument 'subnet_id' to be a str")
|
138
141
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
142
|
+
if subscription_id and not isinstance(subscription_id, str):
|
143
|
+
raise TypeError("Expected argument 'subscription_id' to be a str")
|
144
|
+
pulumi.set(__self__, "subscription_id", subscription_id)
|
139
145
|
if system_tags and not isinstance(system_tags, dict):
|
140
146
|
raise TypeError("Expected argument 'system_tags' to be a dict")
|
141
147
|
pulumi.set(__self__, "system_tags", system_tags)
|
@@ -187,6 +193,14 @@ class GetExadbVmClusterResult:
|
|
187
193
|
"""
|
188
194
|
return pulumi.get(self, "cluster_name")
|
189
195
|
|
196
|
+
@property
|
197
|
+
@pulumi.getter(name="clusterPlacementGroupId")
|
198
|
+
def cluster_placement_group_id(self) -> str:
|
199
|
+
"""
|
200
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group of the Exadata Infrastructure.
|
201
|
+
"""
|
202
|
+
return pulumi.get(self, "cluster_placement_group_id")
|
203
|
+
|
190
204
|
@property
|
191
205
|
@pulumi.getter(name="compartmentId")
|
192
206
|
def compartment_id(self) -> str:
|
@@ -441,6 +455,14 @@ class GetExadbVmClusterResult:
|
|
441
455
|
"""
|
442
456
|
return pulumi.get(self, "subnet_id")
|
443
457
|
|
458
|
+
@property
|
459
|
+
@pulumi.getter(name="subscriptionId")
|
460
|
+
def subscription_id(self) -> str:
|
461
|
+
"""
|
462
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
|
463
|
+
"""
|
464
|
+
return pulumi.get(self, "subscription_id")
|
465
|
+
|
444
466
|
@property
|
445
467
|
@pulumi.getter(name="systemTags")
|
446
468
|
def system_tags(self) -> Mapping[str, str]:
|
@@ -500,6 +522,7 @@ class AwaitableGetExadbVmClusterResult(GetExadbVmClusterResult):
|
|
500
522
|
backup_network_nsg_ids=self.backup_network_nsg_ids,
|
501
523
|
backup_subnet_id=self.backup_subnet_id,
|
502
524
|
cluster_name=self.cluster_name,
|
525
|
+
cluster_placement_group_id=self.cluster_placement_group_id,
|
503
526
|
compartment_id=self.compartment_id,
|
504
527
|
data_collection_options=self.data_collection_options,
|
505
528
|
defined_tags=self.defined_tags,
|
@@ -532,6 +555,7 @@ class AwaitableGetExadbVmClusterResult(GetExadbVmClusterResult):
|
|
532
555
|
ssh_public_keys=self.ssh_public_keys,
|
533
556
|
state=self.state,
|
534
557
|
subnet_id=self.subnet_id,
|
558
|
+
subscription_id=self.subscription_id,
|
535
559
|
system_tags=self.system_tags,
|
536
560
|
system_version=self.system_version,
|
537
561
|
time_created=self.time_created,
|
@@ -569,6 +593,7 @@ def get_exadb_vm_cluster(exadb_vm_cluster_id: Optional[str] = None,
|
|
569
593
|
backup_network_nsg_ids=pulumi.get(__ret__, 'backup_network_nsg_ids'),
|
570
594
|
backup_subnet_id=pulumi.get(__ret__, 'backup_subnet_id'),
|
571
595
|
cluster_name=pulumi.get(__ret__, 'cluster_name'),
|
596
|
+
cluster_placement_group_id=pulumi.get(__ret__, 'cluster_placement_group_id'),
|
572
597
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
573
598
|
data_collection_options=pulumi.get(__ret__, 'data_collection_options'),
|
574
599
|
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
@@ -601,6 +626,7 @@ def get_exadb_vm_cluster(exadb_vm_cluster_id: Optional[str] = None,
|
|
601
626
|
ssh_public_keys=pulumi.get(__ret__, 'ssh_public_keys'),
|
602
627
|
state=pulumi.get(__ret__, 'state'),
|
603
628
|
subnet_id=pulumi.get(__ret__, 'subnet_id'),
|
629
|
+
subscription_id=pulumi.get(__ret__, 'subscription_id'),
|
604
630
|
system_tags=pulumi.get(__ret__, 'system_tags'),
|
605
631
|
system_version=pulumi.get(__ret__, 'system_version'),
|
606
632
|
time_created=pulumi.get(__ret__, 'time_created'),
|
@@ -635,6 +661,7 @@ def get_exadb_vm_cluster_output(exadb_vm_cluster_id: Optional[pulumi.Input[str]]
|
|
635
661
|
backup_network_nsg_ids=pulumi.get(__response__, 'backup_network_nsg_ids'),
|
636
662
|
backup_subnet_id=pulumi.get(__response__, 'backup_subnet_id'),
|
637
663
|
cluster_name=pulumi.get(__response__, 'cluster_name'),
|
664
|
+
cluster_placement_group_id=pulumi.get(__response__, 'cluster_placement_group_id'),
|
638
665
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
639
666
|
data_collection_options=pulumi.get(__response__, 'data_collection_options'),
|
640
667
|
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
@@ -667,6 +694,7 @@ def get_exadb_vm_cluster_output(exadb_vm_cluster_id: Optional[pulumi.Input[str]]
|
|
667
694
|
ssh_public_keys=pulumi.get(__response__, 'ssh_public_keys'),
|
668
695
|
state=pulumi.get(__response__, 'state'),
|
669
696
|
subnet_id=pulumi.get(__response__, 'subnet_id'),
|
697
|
+
subscription_id=pulumi.get(__response__, 'subscription_id'),
|
670
698
|
system_tags=pulumi.get(__response__, 'system_tags'),
|
671
699
|
system_version=pulumi.get(__response__, 'system_version'),
|
672
700
|
time_created=pulumi.get(__response__, 'time_created'),
|
@@ -28,7 +28,10 @@ class GetExadbVmClustersResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getExadbVmClusters.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, compartment_id=None, display_name=None, exadb_vm_clusters=None, exascale_db_storage_vault_id=None, filters=None, id=None, state=None):
|
31
|
+
def __init__(__self__, cluster_placement_group_id=None, compartment_id=None, display_name=None, exadb_vm_clusters=None, exascale_db_storage_vault_id=None, filters=None, id=None, state=None):
|
32
|
+
if cluster_placement_group_id and not isinstance(cluster_placement_group_id, str):
|
33
|
+
raise TypeError("Expected argument 'cluster_placement_group_id' to be a str")
|
34
|
+
pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
|
32
35
|
if compartment_id and not isinstance(compartment_id, str):
|
33
36
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
34
37
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -51,6 +54,14 @@ class GetExadbVmClustersResult:
|
|
51
54
|
raise TypeError("Expected argument 'state' to be a str")
|
52
55
|
pulumi.set(__self__, "state", state)
|
53
56
|
|
57
|
+
@property
|
58
|
+
@pulumi.getter(name="clusterPlacementGroupId")
|
59
|
+
def cluster_placement_group_id(self) -> Optional[str]:
|
60
|
+
"""
|
61
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group of the Exadata Infrastructure.
|
62
|
+
"""
|
63
|
+
return pulumi.get(self, "cluster_placement_group_id")
|
64
|
+
|
54
65
|
@property
|
55
66
|
@pulumi.getter(name="compartmentId")
|
56
67
|
def compartment_id(self) -> str:
|
@@ -111,6 +122,7 @@ class AwaitableGetExadbVmClustersResult(GetExadbVmClustersResult):
|
|
111
122
|
if False:
|
112
123
|
yield self
|
113
124
|
return GetExadbVmClustersResult(
|
125
|
+
cluster_placement_group_id=self.cluster_placement_group_id,
|
114
126
|
compartment_id=self.compartment_id,
|
115
127
|
display_name=self.display_name,
|
116
128
|
exadb_vm_clusters=self.exadb_vm_clusters,
|
@@ -120,7 +132,8 @@ class AwaitableGetExadbVmClustersResult(GetExadbVmClustersResult):
|
|
120
132
|
state=self.state)
|
121
133
|
|
122
134
|
|
123
|
-
def get_exadb_vm_clusters(
|
135
|
+
def get_exadb_vm_clusters(cluster_placement_group_id: Optional[str] = None,
|
136
|
+
compartment_id: Optional[str] = None,
|
124
137
|
display_name: Optional[str] = None,
|
125
138
|
exascale_db_storage_vault_id: Optional[str] = None,
|
126
139
|
filters: Optional[Sequence[Union['GetExadbVmClustersFilterArgs', 'GetExadbVmClustersFilterArgsDict']]] = None,
|
@@ -138,18 +151,21 @@ def get_exadb_vm_clusters(compartment_id: Optional[str] = None,
|
|
138
151
|
import pulumi_oci as oci
|
139
152
|
|
140
153
|
test_exadb_vm_clusters = oci.Database.get_exadb_vm_clusters(compartment_id=compartment_id,
|
154
|
+
cluster_placement_group_id=test_cluster_placement_group["id"],
|
141
155
|
display_name=exadb_vm_cluster_display_name,
|
142
156
|
exascale_db_storage_vault_id=test_exascale_db_storage_vault["id"],
|
143
157
|
state=exadb_vm_cluster_state)
|
144
158
|
```
|
145
159
|
|
146
160
|
|
161
|
+
:param str cluster_placement_group_id: A filter to return only resources that match the given cluster placement group ID exactly.
|
147
162
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
148
163
|
:param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
149
164
|
:param str exascale_db_storage_vault_id: A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
|
150
165
|
:param str state: A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
|
151
166
|
"""
|
152
167
|
__args__ = dict()
|
168
|
+
__args__['clusterPlacementGroupId'] = cluster_placement_group_id
|
153
169
|
__args__['compartmentId'] = compartment_id
|
154
170
|
__args__['displayName'] = display_name
|
155
171
|
__args__['exascaleDbStorageVaultId'] = exascale_db_storage_vault_id
|
@@ -159,6 +175,7 @@ def get_exadb_vm_clusters(compartment_id: Optional[str] = None,
|
|
159
175
|
__ret__ = pulumi.runtime.invoke('oci:Database/getExadbVmClusters:getExadbVmClusters', __args__, opts=opts, typ=GetExadbVmClustersResult).value
|
160
176
|
|
161
177
|
return AwaitableGetExadbVmClustersResult(
|
178
|
+
cluster_placement_group_id=pulumi.get(__ret__, 'cluster_placement_group_id'),
|
162
179
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
163
180
|
display_name=pulumi.get(__ret__, 'display_name'),
|
164
181
|
exadb_vm_clusters=pulumi.get(__ret__, 'exadb_vm_clusters'),
|
@@ -166,7 +183,8 @@ def get_exadb_vm_clusters(compartment_id: Optional[str] = None,
|
|
166
183
|
filters=pulumi.get(__ret__, 'filters'),
|
167
184
|
id=pulumi.get(__ret__, 'id'),
|
168
185
|
state=pulumi.get(__ret__, 'state'))
|
169
|
-
def get_exadb_vm_clusters_output(
|
186
|
+
def get_exadb_vm_clusters_output(cluster_placement_group_id: Optional[pulumi.Input[Optional[str]]] = None,
|
187
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
170
188
|
display_name: Optional[pulumi.Input[Optional[str]]] = None,
|
171
189
|
exascale_db_storage_vault_id: Optional[pulumi.Input[Optional[str]]] = None,
|
172
190
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetExadbVmClustersFilterArgs', 'GetExadbVmClustersFilterArgsDict']]]]] = None,
|
@@ -184,18 +202,21 @@ def get_exadb_vm_clusters_output(compartment_id: Optional[pulumi.Input[str]] = N
|
|
184
202
|
import pulumi_oci as oci
|
185
203
|
|
186
204
|
test_exadb_vm_clusters = oci.Database.get_exadb_vm_clusters(compartment_id=compartment_id,
|
205
|
+
cluster_placement_group_id=test_cluster_placement_group["id"],
|
187
206
|
display_name=exadb_vm_cluster_display_name,
|
188
207
|
exascale_db_storage_vault_id=test_exascale_db_storage_vault["id"],
|
189
208
|
state=exadb_vm_cluster_state)
|
190
209
|
```
|
191
210
|
|
192
211
|
|
212
|
+
:param str cluster_placement_group_id: A filter to return only resources that match the given cluster placement group ID exactly.
|
193
213
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
194
214
|
:param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
195
215
|
:param str exascale_db_storage_vault_id: A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
|
196
216
|
:param str state: A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
|
197
217
|
"""
|
198
218
|
__args__ = dict()
|
219
|
+
__args__['clusterPlacementGroupId'] = cluster_placement_group_id
|
199
220
|
__args__['compartmentId'] = compartment_id
|
200
221
|
__args__['displayName'] = display_name
|
201
222
|
__args__['exascaleDbStorageVaultId'] = exascale_db_storage_vault_id
|
@@ -204,6 +225,7 @@ def get_exadb_vm_clusters_output(compartment_id: Optional[pulumi.Input[str]] = N
|
|
204
225
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
205
226
|
__ret__ = pulumi.runtime.invoke_output('oci:Database/getExadbVmClusters:getExadbVmClusters', __args__, opts=opts, typ=GetExadbVmClustersResult)
|
206
227
|
return __ret__.apply(lambda __response__: GetExadbVmClustersResult(
|
228
|
+
cluster_placement_group_id=pulumi.get(__response__, 'cluster_placement_group_id'),
|
207
229
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
208
230
|
display_name=pulumi.get(__response__, 'display_name'),
|
209
231
|
exadb_vm_clusters=pulumi.get(__response__, 'exadb_vm_clusters'),
|