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
@@ -27,7 +27,7 @@ class GetCloudExadataInfrastructureResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getCloudExadataInfrastructure.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, activated_storage_count=None, additional_storage_count=None, availability_domain=None, available_storage_size_in_gbs=None, cloud_exadata_infrastructure_id=None, cluster_placement_group_id=None, compartment_id=None, compute_count=None, cpu_count=None, customer_contacts=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, freeform_tags=None, id=None, is_scheduling_policy_associated=None, last_maintenance_run_id=None, lifecycle_details=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, monthly_storage_server_version=None, next_maintenance_run_id=None, shape=None, state=None, storage_count=None, storage_server_version=None, subscription_id=None, system_tags=None, time_created=None, total_storage_size_in_gbs=None):
|
30
|
+
def __init__(__self__, activated_storage_count=None, additional_storage_count=None, availability_domain=None, available_storage_size_in_gbs=None, cloud_exadata_infrastructure_id=None, cluster_placement_group_id=None, compartment_id=None, compute_count=None, compute_model=None, cpu_count=None, customer_contacts=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, freeform_tags=None, id=None, is_scheduling_policy_associated=None, last_maintenance_run_id=None, lifecycle_details=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, monthly_storage_server_version=None, next_maintenance_run_id=None, shape=None, state=None, storage_count=None, storage_server_type=None, storage_server_version=None, subscription_id=None, system_tags=None, time_created=None, total_storage_size_in_gbs=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)
|
@@ -52,6 +52,9 @@ class GetCloudExadataInfrastructureResult:
|
|
52
52
|
if compute_count and not isinstance(compute_count, int):
|
53
53
|
raise TypeError("Expected argument 'compute_count' to be a int")
|
54
54
|
pulumi.set(__self__, "compute_count", compute_count)
|
55
|
+
if compute_model and not isinstance(compute_model, str):
|
56
|
+
raise TypeError("Expected argument 'compute_model' to be a str")
|
57
|
+
pulumi.set(__self__, "compute_model", compute_model)
|
55
58
|
if cpu_count and not isinstance(cpu_count, int):
|
56
59
|
raise TypeError("Expected argument 'cpu_count' to be a int")
|
57
60
|
pulumi.set(__self__, "cpu_count", cpu_count)
|
@@ -61,6 +64,9 @@ class GetCloudExadataInfrastructureResult:
|
|
61
64
|
if data_storage_size_in_tbs and not isinstance(data_storage_size_in_tbs, float):
|
62
65
|
raise TypeError("Expected argument 'data_storage_size_in_tbs' to be a float")
|
63
66
|
pulumi.set(__self__, "data_storage_size_in_tbs", data_storage_size_in_tbs)
|
67
|
+
if database_server_type and not isinstance(database_server_type, str):
|
68
|
+
raise TypeError("Expected argument 'database_server_type' to be a str")
|
69
|
+
pulumi.set(__self__, "database_server_type", database_server_type)
|
64
70
|
if db_node_storage_size_in_gbs and not isinstance(db_node_storage_size_in_gbs, int):
|
65
71
|
raise TypeError("Expected argument 'db_node_storage_size_in_gbs' to be a int")
|
66
72
|
pulumi.set(__self__, "db_node_storage_size_in_gbs", db_node_storage_size_in_gbs)
|
@@ -127,6 +133,9 @@ class GetCloudExadataInfrastructureResult:
|
|
127
133
|
if storage_count and not isinstance(storage_count, int):
|
128
134
|
raise TypeError("Expected argument 'storage_count' to be a int")
|
129
135
|
pulumi.set(__self__, "storage_count", storage_count)
|
136
|
+
if storage_server_type and not isinstance(storage_server_type, str):
|
137
|
+
raise TypeError("Expected argument 'storage_server_type' to be a str")
|
138
|
+
pulumi.set(__self__, "storage_server_type", storage_server_type)
|
130
139
|
if storage_server_version and not isinstance(storage_server_version, str):
|
131
140
|
raise TypeError("Expected argument 'storage_server_version' to be a str")
|
132
141
|
pulumi.set(__self__, "storage_server_version", storage_server_version)
|
@@ -204,6 +213,14 @@ class GetCloudExadataInfrastructureResult:
|
|
204
213
|
"""
|
205
214
|
return pulumi.get(self, "compute_count")
|
206
215
|
|
216
|
+
@property
|
217
|
+
@pulumi.getter(name="computeModel")
|
218
|
+
def compute_model(self) -> str:
|
219
|
+
"""
|
220
|
+
The compute model of the Exadata infrastructure.
|
221
|
+
"""
|
222
|
+
return pulumi.get(self, "compute_model")
|
223
|
+
|
207
224
|
@property
|
208
225
|
@pulumi.getter(name="cpuCount")
|
209
226
|
def cpu_count(self) -> int:
|
@@ -228,6 +245,14 @@ class GetCloudExadataInfrastructureResult:
|
|
228
245
|
"""
|
229
246
|
return pulumi.get(self, "data_storage_size_in_tbs")
|
230
247
|
|
248
|
+
@property
|
249
|
+
@pulumi.getter(name="databaseServerType")
|
250
|
+
def database_server_type(self) -> str:
|
251
|
+
"""
|
252
|
+
The database server type of the Exadata infrastructure.
|
253
|
+
"""
|
254
|
+
return pulumi.get(self, "database_server_type")
|
255
|
+
|
231
256
|
@property
|
232
257
|
@pulumi.getter(name="dbNodeStorageSizeInGbs")
|
233
258
|
def db_node_storage_size_in_gbs(self) -> int:
|
@@ -404,6 +429,14 @@ class GetCloudExadataInfrastructureResult:
|
|
404
429
|
"""
|
405
430
|
return pulumi.get(self, "storage_count")
|
406
431
|
|
432
|
+
@property
|
433
|
+
@pulumi.getter(name="storageServerType")
|
434
|
+
def storage_server_type(self) -> str:
|
435
|
+
"""
|
436
|
+
The storage server type of the Exadata infrastructure.
|
437
|
+
"""
|
438
|
+
return pulumi.get(self, "storage_server_type")
|
439
|
+
|
407
440
|
@property
|
408
441
|
@pulumi.getter(name="storageServerVersion")
|
409
442
|
def storage_server_version(self) -> str:
|
@@ -459,9 +492,11 @@ class AwaitableGetCloudExadataInfrastructureResult(GetCloudExadataInfrastructure
|
|
459
492
|
cluster_placement_group_id=self.cluster_placement_group_id,
|
460
493
|
compartment_id=self.compartment_id,
|
461
494
|
compute_count=self.compute_count,
|
495
|
+
compute_model=self.compute_model,
|
462
496
|
cpu_count=self.cpu_count,
|
463
497
|
customer_contacts=self.customer_contacts,
|
464
498
|
data_storage_size_in_tbs=self.data_storage_size_in_tbs,
|
499
|
+
database_server_type=self.database_server_type,
|
465
500
|
db_node_storage_size_in_gbs=self.db_node_storage_size_in_gbs,
|
466
501
|
db_server_version=self.db_server_version,
|
467
502
|
defined_file_system_configurations=self.defined_file_system_configurations,
|
@@ -484,6 +519,7 @@ class AwaitableGetCloudExadataInfrastructureResult(GetCloudExadataInfrastructure
|
|
484
519
|
shape=self.shape,
|
485
520
|
state=self.state,
|
486
521
|
storage_count=self.storage_count,
|
522
|
+
storage_server_type=self.storage_server_type,
|
487
523
|
storage_server_version=self.storage_server_version,
|
488
524
|
subscription_id=self.subscription_id,
|
489
525
|
system_tags=self.system_tags,
|
@@ -524,9 +560,11 @@ def get_cloud_exadata_infrastructure(cloud_exadata_infrastructure_id: Optional[s
|
|
524
560
|
cluster_placement_group_id=pulumi.get(__ret__, 'cluster_placement_group_id'),
|
525
561
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
526
562
|
compute_count=pulumi.get(__ret__, 'compute_count'),
|
563
|
+
compute_model=pulumi.get(__ret__, 'compute_model'),
|
527
564
|
cpu_count=pulumi.get(__ret__, 'cpu_count'),
|
528
565
|
customer_contacts=pulumi.get(__ret__, 'customer_contacts'),
|
529
566
|
data_storage_size_in_tbs=pulumi.get(__ret__, 'data_storage_size_in_tbs'),
|
567
|
+
database_server_type=pulumi.get(__ret__, 'database_server_type'),
|
530
568
|
db_node_storage_size_in_gbs=pulumi.get(__ret__, 'db_node_storage_size_in_gbs'),
|
531
569
|
db_server_version=pulumi.get(__ret__, 'db_server_version'),
|
532
570
|
defined_file_system_configurations=pulumi.get(__ret__, 'defined_file_system_configurations'),
|
@@ -549,6 +587,7 @@ def get_cloud_exadata_infrastructure(cloud_exadata_infrastructure_id: Optional[s
|
|
549
587
|
shape=pulumi.get(__ret__, 'shape'),
|
550
588
|
state=pulumi.get(__ret__, 'state'),
|
551
589
|
storage_count=pulumi.get(__ret__, 'storage_count'),
|
590
|
+
storage_server_type=pulumi.get(__ret__, 'storage_server_type'),
|
552
591
|
storage_server_version=pulumi.get(__ret__, 'storage_server_version'),
|
553
592
|
subscription_id=pulumi.get(__ret__, 'subscription_id'),
|
554
593
|
system_tags=pulumi.get(__ret__, 'system_tags'),
|
@@ -586,9 +625,11 @@ def get_cloud_exadata_infrastructure_output(cloud_exadata_infrastructure_id: Opt
|
|
586
625
|
cluster_placement_group_id=pulumi.get(__response__, 'cluster_placement_group_id'),
|
587
626
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
588
627
|
compute_count=pulumi.get(__response__, 'compute_count'),
|
628
|
+
compute_model=pulumi.get(__response__, 'compute_model'),
|
589
629
|
cpu_count=pulumi.get(__response__, 'cpu_count'),
|
590
630
|
customer_contacts=pulumi.get(__response__, 'customer_contacts'),
|
591
631
|
data_storage_size_in_tbs=pulumi.get(__response__, 'data_storage_size_in_tbs'),
|
632
|
+
database_server_type=pulumi.get(__response__, 'database_server_type'),
|
592
633
|
db_node_storage_size_in_gbs=pulumi.get(__response__, 'db_node_storage_size_in_gbs'),
|
593
634
|
db_server_version=pulumi.get(__response__, 'db_server_version'),
|
594
635
|
defined_file_system_configurations=pulumi.get(__response__, 'defined_file_system_configurations'),
|
@@ -611,6 +652,7 @@ def get_cloud_exadata_infrastructure_output(cloud_exadata_infrastructure_id: Opt
|
|
611
652
|
shape=pulumi.get(__response__, 'shape'),
|
612
653
|
state=pulumi.get(__response__, 'state'),
|
613
654
|
storage_count=pulumi.get(__response__, 'storage_count'),
|
655
|
+
storage_server_type=pulumi.get(__response__, 'storage_server_type'),
|
614
656
|
storage_server_version=pulumi.get(__response__, 'storage_server_version'),
|
615
657
|
subscription_id=pulumi.get(__response__, 'subscription_id'),
|
616
658
|
system_tags=pulumi.get(__response__, 'system_tags'),
|
@@ -27,7 +27,7 @@ class GetCloudVmClusterResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getCloudVmCluster.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, availability_domain=None, backup_network_nsg_ids=None, backup_subnet_id=None, cloud_automation_update_details=None, cloud_exadata_infrastructure_id=None, cloud_vm_cluster_id=None, cluster_name=None, compartment_id=None, cpu_core_count=None, create_async=None, data_collection_options=None, data_storage_percentage=None, data_storage_size_in_tbs=None, db_node_storage_size_in_gbs=None, db_servers=None, defined_tags=None, disk_redundancy=None, display_name=None, domain=None, file_system_configuration_details=None, freeform_tags=None, gi_version=None, hostname=None, id=None, iorm_config_caches=None, is_local_backup_enabled=None, is_sparse_diskgroup_enabled=None, last_update_history_entry_id=None, license_model=None, lifecycle_details=None, listener_port=None, memory_size_in_gbs=None, node_count=None, nsg_ids=None, ocpu_count=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, storage_size_in_gbs=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):
|
30
|
+
def __init__(__self__, availability_domain=None, backup_network_nsg_ids=None, backup_subnet_id=None, cloud_automation_update_details=None, cloud_exadata_infrastructure_id=None, cloud_vm_cluster_id=None, cluster_name=None, compartment_id=None, compute_model=None, cpu_core_count=None, create_async=None, data_collection_options=None, data_storage_percentage=None, data_storage_size_in_tbs=None, db_node_storage_size_in_gbs=None, db_servers=None, defined_tags=None, disk_redundancy=None, display_name=None, domain=None, file_system_configuration_details=None, freeform_tags=None, gi_version=None, hostname=None, id=None, iorm_config_caches=None, is_local_backup_enabled=None, is_sparse_diskgroup_enabled=None, last_update_history_entry_id=None, license_model=None, lifecycle_details=None, listener_port=None, memory_size_in_gbs=None, node_count=None, nsg_ids=None, ocpu_count=None, private_zone_id=None, scan_dns_name=None, scan_dns_record_id=None, scan_ip_ids=None, scan_ipv6ids=None, scan_listener_port_tcp=None, scan_listener_port_tcp_ssl=None, security_attributes=None, shape=None, ssh_public_keys=None, state=None, storage_size_in_gbs=None, subnet_id=None, subscription_id=None, system_tags=None, system_version=None, time_created=None, time_zone=None, vip_ids=None, vipv6ids=None, vm_cluster_type=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)
|
@@ -52,6 +52,9 @@ class GetCloudVmClusterResult:
|
|
52
52
|
if compartment_id and not isinstance(compartment_id, str):
|
53
53
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
54
54
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
55
|
+
if compute_model and not isinstance(compute_model, str):
|
56
|
+
raise TypeError("Expected argument 'compute_model' to be a str")
|
57
|
+
pulumi.set(__self__, "compute_model", compute_model)
|
55
58
|
if cpu_core_count and not isinstance(cpu_core_count, int):
|
56
59
|
raise TypeError("Expected argument 'cpu_core_count' to be a int")
|
57
60
|
pulumi.set(__self__, "cpu_core_count", cpu_core_count)
|
@@ -145,6 +148,9 @@ class GetCloudVmClusterResult:
|
|
145
148
|
if scan_ip_ids and not isinstance(scan_ip_ids, list):
|
146
149
|
raise TypeError("Expected argument 'scan_ip_ids' to be a list")
|
147
150
|
pulumi.set(__self__, "scan_ip_ids", scan_ip_ids)
|
151
|
+
if scan_ipv6ids and not isinstance(scan_ipv6ids, list):
|
152
|
+
raise TypeError("Expected argument 'scan_ipv6ids' to be a list")
|
153
|
+
pulumi.set(__self__, "scan_ipv6ids", scan_ipv6ids)
|
148
154
|
if scan_listener_port_tcp and not isinstance(scan_listener_port_tcp, int):
|
149
155
|
raise TypeError("Expected argument 'scan_listener_port_tcp' to be a int")
|
150
156
|
pulumi.set(__self__, "scan_listener_port_tcp", scan_listener_port_tcp)
|
@@ -187,6 +193,12 @@ class GetCloudVmClusterResult:
|
|
187
193
|
if vip_ids and not isinstance(vip_ids, list):
|
188
194
|
raise TypeError("Expected argument 'vip_ids' to be a list")
|
189
195
|
pulumi.set(__self__, "vip_ids", vip_ids)
|
196
|
+
if vipv6ids and not isinstance(vipv6ids, list):
|
197
|
+
raise TypeError("Expected argument 'vipv6ids' to be a list")
|
198
|
+
pulumi.set(__self__, "vipv6ids", vipv6ids)
|
199
|
+
if vm_cluster_type and not isinstance(vm_cluster_type, str):
|
200
|
+
raise TypeError("Expected argument 'vm_cluster_type' to be a str")
|
201
|
+
pulumi.set(__self__, "vm_cluster_type", vm_cluster_type)
|
190
202
|
if zone_id and not isinstance(zone_id, str):
|
191
203
|
raise TypeError("Expected argument 'zone_id' to be a str")
|
192
204
|
pulumi.set(__self__, "zone_id", zone_id)
|
@@ -252,6 +264,14 @@ class GetCloudVmClusterResult:
|
|
252
264
|
"""
|
253
265
|
return pulumi.get(self, "compartment_id")
|
254
266
|
|
267
|
+
@property
|
268
|
+
@pulumi.getter(name="computeModel")
|
269
|
+
def compute_model(self) -> str:
|
270
|
+
"""
|
271
|
+
The compute model of the cloud VM cluster.
|
272
|
+
"""
|
273
|
+
return pulumi.get(self, "compute_model")
|
274
|
+
|
255
275
|
@property
|
256
276
|
@pulumi.getter(name="cpuCoreCount")
|
257
277
|
def cpu_core_count(self) -> int:
|
@@ -491,10 +511,18 @@ class GetCloudVmClusterResult:
|
|
491
511
|
@pulumi.getter(name="scanIpIds")
|
492
512
|
def scan_ip_ids(self) -> Sequence[str]:
|
493
513
|
"""
|
494
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN)
|
514
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv4 addresses associated with the cloud VM cluster. SCAN IPv4 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
|
495
515
|
"""
|
496
516
|
return pulumi.get(self, "scan_ip_ids")
|
497
517
|
|
518
|
+
@property
|
519
|
+
@pulumi.getter(name="scanIpv6ids")
|
520
|
+
def scan_ipv6ids(self) -> Sequence[str]:
|
521
|
+
"""
|
522
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv6 addresses associated with the cloud VM cluster. SCAN IPv6 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
|
523
|
+
"""
|
524
|
+
return pulumi.get(self, "scan_ipv6ids")
|
525
|
+
|
498
526
|
@property
|
499
527
|
@pulumi.getter(name="scanListenerPortTcp")
|
500
528
|
def scan_listener_port_tcp(self) -> int:
|
@@ -603,10 +631,26 @@ class GetCloudVmClusterResult:
|
|
603
631
|
@pulumi.getter(name="vipIds")
|
604
632
|
def vip_ids(self) -> Sequence[str]:
|
605
633
|
"""
|
606
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
|
634
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) IPv4 addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP IPv4 address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
|
607
635
|
"""
|
608
636
|
return pulumi.get(self, "vip_ids")
|
609
637
|
|
638
|
+
@property
|
639
|
+
@pulumi.getter
|
640
|
+
def vipv6ids(self) -> Sequence[str]:
|
641
|
+
"""
|
642
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) IPv6 addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP IPv6 address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
|
643
|
+
"""
|
644
|
+
return pulumi.get(self, "vipv6ids")
|
645
|
+
|
646
|
+
@property
|
647
|
+
@pulumi.getter(name="vmClusterType")
|
648
|
+
def vm_cluster_type(self) -> str:
|
649
|
+
"""
|
650
|
+
The vmcluster type for the VM cluster/Cloud VM cluster.
|
651
|
+
"""
|
652
|
+
return pulumi.get(self, "vm_cluster_type")
|
653
|
+
|
610
654
|
@property
|
611
655
|
@pulumi.getter(name="zoneId")
|
612
656
|
def zone_id(self) -> str:
|
@@ -630,6 +674,7 @@ class AwaitableGetCloudVmClusterResult(GetCloudVmClusterResult):
|
|
630
674
|
cloud_vm_cluster_id=self.cloud_vm_cluster_id,
|
631
675
|
cluster_name=self.cluster_name,
|
632
676
|
compartment_id=self.compartment_id,
|
677
|
+
compute_model=self.compute_model,
|
633
678
|
cpu_core_count=self.cpu_core_count,
|
634
679
|
create_async=self.create_async,
|
635
680
|
data_collection_options=self.data_collection_options,
|
@@ -661,6 +706,7 @@ class AwaitableGetCloudVmClusterResult(GetCloudVmClusterResult):
|
|
661
706
|
scan_dns_name=self.scan_dns_name,
|
662
707
|
scan_dns_record_id=self.scan_dns_record_id,
|
663
708
|
scan_ip_ids=self.scan_ip_ids,
|
709
|
+
scan_ipv6ids=self.scan_ipv6ids,
|
664
710
|
scan_listener_port_tcp=self.scan_listener_port_tcp,
|
665
711
|
scan_listener_port_tcp_ssl=self.scan_listener_port_tcp_ssl,
|
666
712
|
security_attributes=self.security_attributes,
|
@@ -675,6 +721,8 @@ class AwaitableGetCloudVmClusterResult(GetCloudVmClusterResult):
|
|
675
721
|
time_created=self.time_created,
|
676
722
|
time_zone=self.time_zone,
|
677
723
|
vip_ids=self.vip_ids,
|
724
|
+
vipv6ids=self.vipv6ids,
|
725
|
+
vm_cluster_type=self.vm_cluster_type,
|
678
726
|
zone_id=self.zone_id)
|
679
727
|
|
680
728
|
|
@@ -711,6 +759,7 @@ def get_cloud_vm_cluster(cloud_vm_cluster_id: Optional[str] = None,
|
|
711
759
|
cloud_vm_cluster_id=pulumi.get(__ret__, 'cloud_vm_cluster_id'),
|
712
760
|
cluster_name=pulumi.get(__ret__, 'cluster_name'),
|
713
761
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
762
|
+
compute_model=pulumi.get(__ret__, 'compute_model'),
|
714
763
|
cpu_core_count=pulumi.get(__ret__, 'cpu_core_count'),
|
715
764
|
create_async=pulumi.get(__ret__, 'create_async'),
|
716
765
|
data_collection_options=pulumi.get(__ret__, 'data_collection_options'),
|
@@ -742,6 +791,7 @@ def get_cloud_vm_cluster(cloud_vm_cluster_id: Optional[str] = None,
|
|
742
791
|
scan_dns_name=pulumi.get(__ret__, 'scan_dns_name'),
|
743
792
|
scan_dns_record_id=pulumi.get(__ret__, 'scan_dns_record_id'),
|
744
793
|
scan_ip_ids=pulumi.get(__ret__, 'scan_ip_ids'),
|
794
|
+
scan_ipv6ids=pulumi.get(__ret__, 'scan_ipv6ids'),
|
745
795
|
scan_listener_port_tcp=pulumi.get(__ret__, 'scan_listener_port_tcp'),
|
746
796
|
scan_listener_port_tcp_ssl=pulumi.get(__ret__, 'scan_listener_port_tcp_ssl'),
|
747
797
|
security_attributes=pulumi.get(__ret__, 'security_attributes'),
|
@@ -756,6 +806,8 @@ def get_cloud_vm_cluster(cloud_vm_cluster_id: Optional[str] = None,
|
|
756
806
|
time_created=pulumi.get(__ret__, 'time_created'),
|
757
807
|
time_zone=pulumi.get(__ret__, 'time_zone'),
|
758
808
|
vip_ids=pulumi.get(__ret__, 'vip_ids'),
|
809
|
+
vipv6ids=pulumi.get(__ret__, 'vipv6ids'),
|
810
|
+
vm_cluster_type=pulumi.get(__ret__, 'vm_cluster_type'),
|
759
811
|
zone_id=pulumi.get(__ret__, 'zone_id'))
|
760
812
|
def get_cloud_vm_cluster_output(cloud_vm_cluster_id: Optional[pulumi.Input[str]] = None,
|
761
813
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetCloudVmClusterResult]:
|
@@ -789,6 +841,7 @@ def get_cloud_vm_cluster_output(cloud_vm_cluster_id: Optional[pulumi.Input[str]]
|
|
789
841
|
cloud_vm_cluster_id=pulumi.get(__response__, 'cloud_vm_cluster_id'),
|
790
842
|
cluster_name=pulumi.get(__response__, 'cluster_name'),
|
791
843
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
844
|
+
compute_model=pulumi.get(__response__, 'compute_model'),
|
792
845
|
cpu_core_count=pulumi.get(__response__, 'cpu_core_count'),
|
793
846
|
create_async=pulumi.get(__response__, 'create_async'),
|
794
847
|
data_collection_options=pulumi.get(__response__, 'data_collection_options'),
|
@@ -820,6 +873,7 @@ def get_cloud_vm_cluster_output(cloud_vm_cluster_id: Optional[pulumi.Input[str]]
|
|
820
873
|
scan_dns_name=pulumi.get(__response__, 'scan_dns_name'),
|
821
874
|
scan_dns_record_id=pulumi.get(__response__, 'scan_dns_record_id'),
|
822
875
|
scan_ip_ids=pulumi.get(__response__, 'scan_ip_ids'),
|
876
|
+
scan_ipv6ids=pulumi.get(__response__, 'scan_ipv6ids'),
|
823
877
|
scan_listener_port_tcp=pulumi.get(__response__, 'scan_listener_port_tcp'),
|
824
878
|
scan_listener_port_tcp_ssl=pulumi.get(__response__, 'scan_listener_port_tcp_ssl'),
|
825
879
|
security_attributes=pulumi.get(__response__, 'security_attributes'),
|
@@ -834,4 +888,6 @@ def get_cloud_vm_cluster_output(cloud_vm_cluster_id: Optional[pulumi.Input[str]]
|
|
834
888
|
time_created=pulumi.get(__response__, 'time_created'),
|
835
889
|
time_zone=pulumi.get(__response__, 'time_zone'),
|
836
890
|
vip_ids=pulumi.get(__response__, 'vip_ids'),
|
891
|
+
vipv6ids=pulumi.get(__response__, 'vipv6ids'),
|
892
|
+
vm_cluster_type=pulumi.get(__response__, 'vm_cluster_type'),
|
837
893
|
zone_id=pulumi.get(__response__, 'zone_id')))
|
@@ -28,7 +28,7 @@ class GetCloudVmClustersResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getCloudVmClusters.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, cloud_exadata_infrastructure_id=None, cloud_vm_clusters=None, compartment_id=None, display_name=None, filters=None, id=None, state=None):
|
31
|
+
def __init__(__self__, cloud_exadata_infrastructure_id=None, cloud_vm_clusters=None, compartment_id=None, display_name=None, filters=None, id=None, state=None, vm_cluster_type=None):
|
32
32
|
if cloud_exadata_infrastructure_id and not isinstance(cloud_exadata_infrastructure_id, str):
|
33
33
|
raise TypeError("Expected argument 'cloud_exadata_infrastructure_id' to be a str")
|
34
34
|
pulumi.set(__self__, "cloud_exadata_infrastructure_id", cloud_exadata_infrastructure_id)
|
@@ -50,6 +50,9 @@ class GetCloudVmClustersResult:
|
|
50
50
|
if state and not isinstance(state, str):
|
51
51
|
raise TypeError("Expected argument 'state' to be a str")
|
52
52
|
pulumi.set(__self__, "state", state)
|
53
|
+
if vm_cluster_type and not isinstance(vm_cluster_type, str):
|
54
|
+
raise TypeError("Expected argument 'vm_cluster_type' to be a str")
|
55
|
+
pulumi.set(__self__, "vm_cluster_type", vm_cluster_type)
|
53
56
|
|
54
57
|
@property
|
55
58
|
@pulumi.getter(name="cloudExadataInfrastructureId")
|
@@ -104,6 +107,14 @@ class GetCloudVmClustersResult:
|
|
104
107
|
"""
|
105
108
|
return pulumi.get(self, "state")
|
106
109
|
|
110
|
+
@property
|
111
|
+
@pulumi.getter(name="vmClusterType")
|
112
|
+
def vm_cluster_type(self) -> Optional[str]:
|
113
|
+
"""
|
114
|
+
The vmcluster type for the VM cluster/Cloud VM cluster.
|
115
|
+
"""
|
116
|
+
return pulumi.get(self, "vm_cluster_type")
|
117
|
+
|
107
118
|
|
108
119
|
class AwaitableGetCloudVmClustersResult(GetCloudVmClustersResult):
|
109
120
|
# pylint: disable=using-constant-test
|
@@ -117,7 +128,8 @@ class AwaitableGetCloudVmClustersResult(GetCloudVmClustersResult):
|
|
117
128
|
display_name=self.display_name,
|
118
129
|
filters=self.filters,
|
119
130
|
id=self.id,
|
120
|
-
state=self.state
|
131
|
+
state=self.state,
|
132
|
+
vm_cluster_type=self.vm_cluster_type)
|
121
133
|
|
122
134
|
|
123
135
|
def get_cloud_vm_clusters(cloud_exadata_infrastructure_id: Optional[str] = None,
|
@@ -125,6 +137,7 @@ def get_cloud_vm_clusters(cloud_exadata_infrastructure_id: Optional[str] = None,
|
|
125
137
|
display_name: Optional[str] = None,
|
126
138
|
filters: Optional[Sequence[Union['GetCloudVmClustersFilterArgs', 'GetCloudVmClustersFilterArgsDict']]] = None,
|
127
139
|
state: Optional[str] = None,
|
140
|
+
vm_cluster_type: Optional[str] = None,
|
128
141
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetCloudVmClustersResult:
|
129
142
|
"""
|
130
143
|
This data source provides the list of Cloud Vm Clusters in Oracle Cloud Infrastructure Database service.
|
@@ -140,7 +153,8 @@ def get_cloud_vm_clusters(cloud_exadata_infrastructure_id: Optional[str] = None,
|
|
140
153
|
test_cloud_vm_clusters = oci.Database.get_cloud_vm_clusters(compartment_id=compartment_id,
|
141
154
|
cloud_exadata_infrastructure_id=test_cloud_exadata_infrastructure["id"],
|
142
155
|
display_name=cloud_vm_cluster_display_name,
|
143
|
-
state=cloud_vm_cluster_state
|
156
|
+
state=cloud_vm_cluster_state,
|
157
|
+
vm_cluster_type=cloud_vm_cluster_vm_cluster_type)
|
144
158
|
```
|
145
159
|
|
146
160
|
|
@@ -148,6 +162,7 @@ def get_cloud_vm_clusters(cloud_exadata_infrastructure_id: Optional[str] = None,
|
|
148
162
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
149
163
|
:param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
150
164
|
:param str state: A filter to return only cloud VM clusters that match the given lifecycle state exactly.
|
165
|
+
:param str vm_cluster_type: A filter to return only cloud vmclusters that match the given cloud vmcluster type exactly.
|
151
166
|
"""
|
152
167
|
__args__ = dict()
|
153
168
|
__args__['cloudExadataInfrastructureId'] = cloud_exadata_infrastructure_id
|
@@ -155,6 +170,7 @@ def get_cloud_vm_clusters(cloud_exadata_infrastructure_id: Optional[str] = None,
|
|
155
170
|
__args__['displayName'] = display_name
|
156
171
|
__args__['filters'] = filters
|
157
172
|
__args__['state'] = state
|
173
|
+
__args__['vmClusterType'] = vm_cluster_type
|
158
174
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
159
175
|
__ret__ = pulumi.runtime.invoke('oci:Database/getCloudVmClusters:getCloudVmClusters', __args__, opts=opts, typ=GetCloudVmClustersResult).value
|
160
176
|
|
@@ -165,12 +181,14 @@ def get_cloud_vm_clusters(cloud_exadata_infrastructure_id: Optional[str] = None,
|
|
165
181
|
display_name=pulumi.get(__ret__, 'display_name'),
|
166
182
|
filters=pulumi.get(__ret__, 'filters'),
|
167
183
|
id=pulumi.get(__ret__, 'id'),
|
168
|
-
state=pulumi.get(__ret__, 'state')
|
184
|
+
state=pulumi.get(__ret__, 'state'),
|
185
|
+
vm_cluster_type=pulumi.get(__ret__, 'vm_cluster_type'))
|
169
186
|
def get_cloud_vm_clusters_output(cloud_exadata_infrastructure_id: Optional[pulumi.Input[Optional[str]]] = None,
|
170
187
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
171
188
|
display_name: Optional[pulumi.Input[Optional[str]]] = None,
|
172
189
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetCloudVmClustersFilterArgs', 'GetCloudVmClustersFilterArgsDict']]]]] = None,
|
173
190
|
state: Optional[pulumi.Input[Optional[str]]] = None,
|
191
|
+
vm_cluster_type: Optional[pulumi.Input[Optional[str]]] = None,
|
174
192
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetCloudVmClustersResult]:
|
175
193
|
"""
|
176
194
|
This data source provides the list of Cloud Vm Clusters in Oracle Cloud Infrastructure Database service.
|
@@ -186,7 +204,8 @@ def get_cloud_vm_clusters_output(cloud_exadata_infrastructure_id: Optional[pulum
|
|
186
204
|
test_cloud_vm_clusters = oci.Database.get_cloud_vm_clusters(compartment_id=compartment_id,
|
187
205
|
cloud_exadata_infrastructure_id=test_cloud_exadata_infrastructure["id"],
|
188
206
|
display_name=cloud_vm_cluster_display_name,
|
189
|
-
state=cloud_vm_cluster_state
|
207
|
+
state=cloud_vm_cluster_state,
|
208
|
+
vm_cluster_type=cloud_vm_cluster_vm_cluster_type)
|
190
209
|
```
|
191
210
|
|
192
211
|
|
@@ -194,6 +213,7 @@ def get_cloud_vm_clusters_output(cloud_exadata_infrastructure_id: Optional[pulum
|
|
194
213
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
195
214
|
:param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
196
215
|
:param str state: A filter to return only cloud VM clusters that match the given lifecycle state exactly.
|
216
|
+
:param str vm_cluster_type: A filter to return only cloud vmclusters that match the given cloud vmcluster type exactly.
|
197
217
|
"""
|
198
218
|
__args__ = dict()
|
199
219
|
__args__['cloudExadataInfrastructureId'] = cloud_exadata_infrastructure_id
|
@@ -201,6 +221,7 @@ def get_cloud_vm_clusters_output(cloud_exadata_infrastructure_id: Optional[pulum
|
|
201
221
|
__args__['displayName'] = display_name
|
202
222
|
__args__['filters'] = filters
|
203
223
|
__args__['state'] = state
|
224
|
+
__args__['vmClusterType'] = vm_cluster_type
|
204
225
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
205
226
|
__ret__ = pulumi.runtime.invoke_output('oci:Database/getCloudVmClusters:getCloudVmClusters', __args__, opts=opts, typ=GetCloudVmClustersResult)
|
206
227
|
return __ret__.apply(lambda __response__: GetCloudVmClustersResult(
|
@@ -210,4 +231,5 @@ def get_cloud_vm_clusters_output(cloud_exadata_infrastructure_id: Optional[pulum
|
|
210
231
|
display_name=pulumi.get(__response__, 'display_name'),
|
211
232
|
filters=pulumi.get(__response__, 'filters'),
|
212
233
|
id=pulumi.get(__response__, 'id'),
|
213
|
-
state=pulumi.get(__response__, 'state')
|
234
|
+
state=pulumi.get(__response__, 'state'),
|
235
|
+
vm_cluster_type=pulumi.get(__response__, 'vm_cluster_type')))
|
@@ -28,13 +28,16 @@ class GetDatabaseSoftwareImagesResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getDatabaseSoftwareImages.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, compartment_id=None, database_software_images=None, display_name=None, filters=None, id=None, image_shape_family=None, image_type=None, is_upgrade_supported=None, state=None):
|
31
|
+
def __init__(__self__, compartment_id=None, database_software_images=None, db_system_id=None, display_name=None, filters=None, id=None, image_shape_family=None, image_type=None, is_upgrade_supported=None, state=None):
|
32
32
|
if compartment_id and not isinstance(compartment_id, str):
|
33
33
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
34
34
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
35
35
|
if database_software_images and not isinstance(database_software_images, list):
|
36
36
|
raise TypeError("Expected argument 'database_software_images' to be a list")
|
37
37
|
pulumi.set(__self__, "database_software_images", database_software_images)
|
38
|
+
if db_system_id and not isinstance(db_system_id, str):
|
39
|
+
raise TypeError("Expected argument 'db_system_id' to be a str")
|
40
|
+
pulumi.set(__self__, "db_system_id", db_system_id)
|
38
41
|
if display_name and not isinstance(display_name, str):
|
39
42
|
raise TypeError("Expected argument 'display_name' to be a str")
|
40
43
|
pulumi.set(__self__, "display_name", display_name)
|
@@ -73,6 +76,11 @@ class GetDatabaseSoftwareImagesResult:
|
|
73
76
|
"""
|
74
77
|
return pulumi.get(self, "database_software_images")
|
75
78
|
|
79
|
+
@property
|
80
|
+
@pulumi.getter(name="dbSystemId")
|
81
|
+
def db_system_id(self) -> Optional[str]:
|
82
|
+
return pulumi.get(self, "db_system_id")
|
83
|
+
|
76
84
|
@property
|
77
85
|
@pulumi.getter(name="displayName")
|
78
86
|
def display_name(self) -> Optional[str]:
|
@@ -135,6 +143,7 @@ class AwaitableGetDatabaseSoftwareImagesResult(GetDatabaseSoftwareImagesResult):
|
|
135
143
|
return GetDatabaseSoftwareImagesResult(
|
136
144
|
compartment_id=self.compartment_id,
|
137
145
|
database_software_images=self.database_software_images,
|
146
|
+
db_system_id=self.db_system_id,
|
138
147
|
display_name=self.display_name,
|
139
148
|
filters=self.filters,
|
140
149
|
id=self.id,
|
@@ -145,6 +154,7 @@ class AwaitableGetDatabaseSoftwareImagesResult(GetDatabaseSoftwareImagesResult):
|
|
145
154
|
|
146
155
|
|
147
156
|
def get_database_software_images(compartment_id: Optional[str] = None,
|
157
|
+
db_system_id: Optional[str] = None,
|
148
158
|
display_name: Optional[str] = None,
|
149
159
|
filters: Optional[Sequence[Union['GetDatabaseSoftwareImagesFilterArgs', 'GetDatabaseSoftwareImagesFilterArgsDict']]] = None,
|
150
160
|
image_shape_family: Optional[str] = None,
|
@@ -164,6 +174,7 @@ def get_database_software_images(compartment_id: Optional[str] = None,
|
|
164
174
|
import pulumi_oci as oci
|
165
175
|
|
166
176
|
test_database_software_images = oci.Database.get_database_software_images(compartment_id=compartment_id,
|
177
|
+
db_system_id=test_db_system["id"],
|
167
178
|
display_name=database_software_image_display_name,
|
168
179
|
image_shape_family=database_software_image_image_shape_family,
|
169
180
|
image_type=database_software_image_image_type,
|
@@ -173,6 +184,7 @@ def get_database_software_images(compartment_id: Optional[str] = None,
|
|
173
184
|
|
174
185
|
|
175
186
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
187
|
+
:param str db_system_id: The DB system [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). If provided, filters the results to the set of database versions which are supported for the DB system.
|
176
188
|
:param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
177
189
|
:param str image_shape_family: A filter to return only resources that match the given image shape family exactly.
|
178
190
|
:param str image_type: A filter to return only resources that match the given image type exactly.
|
@@ -181,6 +193,7 @@ def get_database_software_images(compartment_id: Optional[str] = None,
|
|
181
193
|
"""
|
182
194
|
__args__ = dict()
|
183
195
|
__args__['compartmentId'] = compartment_id
|
196
|
+
__args__['dbSystemId'] = db_system_id
|
184
197
|
__args__['displayName'] = display_name
|
185
198
|
__args__['filters'] = filters
|
186
199
|
__args__['imageShapeFamily'] = image_shape_family
|
@@ -193,6 +206,7 @@ def get_database_software_images(compartment_id: Optional[str] = None,
|
|
193
206
|
return AwaitableGetDatabaseSoftwareImagesResult(
|
194
207
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
195
208
|
database_software_images=pulumi.get(__ret__, 'database_software_images'),
|
209
|
+
db_system_id=pulumi.get(__ret__, 'db_system_id'),
|
196
210
|
display_name=pulumi.get(__ret__, 'display_name'),
|
197
211
|
filters=pulumi.get(__ret__, 'filters'),
|
198
212
|
id=pulumi.get(__ret__, 'id'),
|
@@ -201,6 +215,7 @@ def get_database_software_images(compartment_id: Optional[str] = None,
|
|
201
215
|
is_upgrade_supported=pulumi.get(__ret__, 'is_upgrade_supported'),
|
202
216
|
state=pulumi.get(__ret__, 'state'))
|
203
217
|
def get_database_software_images_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
218
|
+
db_system_id: Optional[pulumi.Input[Optional[str]]] = None,
|
204
219
|
display_name: Optional[pulumi.Input[Optional[str]]] = None,
|
205
220
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetDatabaseSoftwareImagesFilterArgs', 'GetDatabaseSoftwareImagesFilterArgsDict']]]]] = None,
|
206
221
|
image_shape_family: Optional[pulumi.Input[Optional[str]]] = None,
|
@@ -220,6 +235,7 @@ def get_database_software_images_output(compartment_id: Optional[pulumi.Input[st
|
|
220
235
|
import pulumi_oci as oci
|
221
236
|
|
222
237
|
test_database_software_images = oci.Database.get_database_software_images(compartment_id=compartment_id,
|
238
|
+
db_system_id=test_db_system["id"],
|
223
239
|
display_name=database_software_image_display_name,
|
224
240
|
image_shape_family=database_software_image_image_shape_family,
|
225
241
|
image_type=database_software_image_image_type,
|
@@ -229,6 +245,7 @@ def get_database_software_images_output(compartment_id: Optional[pulumi.Input[st
|
|
229
245
|
|
230
246
|
|
231
247
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
248
|
+
:param str db_system_id: The DB system [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). If provided, filters the results to the set of database versions which are supported for the DB system.
|
232
249
|
:param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
233
250
|
:param str image_shape_family: A filter to return only resources that match the given image shape family exactly.
|
234
251
|
:param str image_type: A filter to return only resources that match the given image type exactly.
|
@@ -237,6 +254,7 @@ def get_database_software_images_output(compartment_id: Optional[pulumi.Input[st
|
|
237
254
|
"""
|
238
255
|
__args__ = dict()
|
239
256
|
__args__['compartmentId'] = compartment_id
|
257
|
+
__args__['dbSystemId'] = db_system_id
|
240
258
|
__args__['displayName'] = display_name
|
241
259
|
__args__['filters'] = filters
|
242
260
|
__args__['imageShapeFamily'] = image_shape_family
|
@@ -248,6 +266,7 @@ def get_database_software_images_output(compartment_id: Optional[pulumi.Input[st
|
|
248
266
|
return __ret__.apply(lambda __response__: GetDatabaseSoftwareImagesResult(
|
249
267
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
250
268
|
database_software_images=pulumi.get(__response__, 'database_software_images'),
|
269
|
+
db_system_id=pulumi.get(__response__, 'db_system_id'),
|
251
270
|
display_name=pulumi.get(__response__, 'display_name'),
|
252
271
|
filters=pulumi.get(__response__, 'filters'),
|
253
272
|
id=pulumi.get(__response__, 'id'),
|