pulumi-oci 2.26.0a1741415311__py3-none-any.whl → 2.26.0a1741943394__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +67 -0
- pulumi_oci/containerengine/_inputs.py +34 -35
- pulumi_oci/containerengine/cluster.py +2 -0
- pulumi_oci/containerengine/container_instance.py +2 -4
- pulumi_oci/containerengine/outputs.py +110 -21
- pulumi_oci/containerinstances/outputs.py +0 -14
- pulumi_oci/core/_inputs.py +21 -33
- pulumi_oci/core/outputs.py +13 -21
- pulumi_oci/database/__init__.py +1 -0
- pulumi_oci/database/_inputs.py +704 -0
- pulumi_oci/database/application_vip.py +59 -10
- pulumi_oci/database/autonomous_database.py +7 -28
- pulumi_oci/database/backup.py +153 -5
- pulumi_oci/database/cloud_exadata_infrastructure.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +163 -30
- pulumi_oci/database/db_node.py +64 -8
- pulumi_oci/database/exadata_infrastructure.py +157 -3
- pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py +1615 -0
- pulumi_oci/database/exadb_vm_cluster.py +84 -7
- pulumi_oci/database/exascale_db_storage_vault.py +147 -0
- pulumi_oci/database/external_container_database.py +4 -4
- pulumi_oci/database/external_non_container_database.py +4 -4
- pulumi_oci/database/external_pluggable_database.py +4 -4
- pulumi_oci/database/get_application_vip.py +16 -2
- pulumi_oci/database/get_autonomous_database.py +0 -3
- pulumi_oci/database/get_backups.py +136 -10
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +43 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +59 -3
- pulumi_oci/database/get_cloud_vm_clusters.py +28 -6
- pulumi_oci/database/get_database_software_images.py +20 -1
- pulumi_oci/database/get_db_node.py +31 -4
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +57 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +29 -1
- pulumi_oci/database/get_exadb_vm_clusters.py +25 -3
- pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
- pulumi_oci/database/get_exascale_db_storage_vaults.py +47 -3
- pulumi_oci/database/get_external_container_database.py +1 -1
- pulumi_oci/database/get_external_non_container_database.py +1 -1
- pulumi_oci/database/get_external_pluggable_database.py +1 -1
- pulumi_oci/database/get_flex_components.py +28 -6
- pulumi_oci/database/get_vm_cluster.py +60 -4
- pulumi_oci/database/get_vm_clusters.py +25 -3
- pulumi_oci/database/outputs.py +1084 -42
- pulumi_oci/database/pluggable_database.py +13 -13
- pulumi_oci/database/vm_cluster.py +172 -18
- pulumi_oci/database/vm_cluster_add_virtual_network.py +114 -2
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +114 -2
- pulumi_oci/datasafe/__init__.py +7 -0
- pulumi_oci/datasafe/_inputs.py +301 -0
- pulumi_oci/datasafe/discovery_mod.py +49 -0
- pulumi_oci/datasafe/get_discovery_job.py +15 -1
- pulumi_oci/datasafe/get_masking_report.py +46 -4
- pulumi_oci/datasafe/get_masking_report_masking_errors.py +166 -0
- pulumi_oci/datasafe/get_security_assessment_finding.py +31 -1
- pulumi_oci/datasafe/get_security_assessment_findings.py +43 -3
- pulumi_oci/datasafe/get_sensitive_column_analytics.py +370 -0
- pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
- pulumi_oci/datasafe/get_sensitive_type_group.py +253 -0
- pulumi_oci/datasafe/get_sensitive_type_group_grouped_sensitive_types.py +166 -0
- pulumi_oci/datasafe/get_sensitive_type_groups.py +294 -0
- pulumi_oci/datasafe/outputs.py +676 -3
- pulumi_oci/datasafe/sensitive_data_model.py +49 -0
- pulumi_oci/datasafe/sensitive_type_group.py +563 -0
- pulumi_oci/datasafe/sensitive_type_group_grouped_sensitive_type.py +287 -0
- pulumi_oci/datascience/__init__.py +4 -0
- pulumi_oci/datascience/_inputs.py +1160 -41
- pulumi_oci/datascience/get_model.py +29 -1
- pulumi_oci/datascience/get_model_custom_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_defined_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_version_set.py +15 -1
- pulumi_oci/datascience/get_model_version_sets.py +25 -3
- pulumi_oci/datascience/get_models.py +25 -3
- pulumi_oci/datascience/get_pipeline.py +15 -1
- pulumi_oci/datascience/model.py +64 -0
- pulumi_oci/datascience/model_custom_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_defined_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_version_set.py +28 -0
- pulumi_oci/datascience/outputs.py +4343 -2164
- pulumi_oci/datascience/pipeline.py +48 -141
- pulumi_oci/datascience/pipeline_run.py +32 -0
- pulumi_oci/dblm/__init__.py +17 -0
- pulumi_oci/dblm/_inputs.py +275 -0
- pulumi_oci/dblm/get_vulnerability.py +242 -0
- pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py +220 -0
- pulumi_oci/dblm/get_vulnerability_notifications.py +144 -0
- pulumi_oci/dblm/get_vulnerability_resources.py +258 -0
- pulumi_oci/dblm/get_vulnerability_scan.py +267 -0
- pulumi_oci/dblm/get_vulnerability_scans.py +270 -0
- pulumi_oci/dblm/get_vulnerability_vulnerabilities.py +258 -0
- pulumi_oci/dblm/outputs.py +1294 -0
- pulumi_oci/dblm/vulnerability_scan.py +521 -0
- pulumi_oci/email/dkim.py +120 -20
- pulumi_oci/email/get_dkim.py +40 -1
- pulumi_oci/email/outputs.py +29 -0
- pulumi_oci/filestorage/__init__.py +3 -0
- pulumi_oci/filestorage/_inputs.py +49 -0
- pulumi_oci/filestorage/file_system.py +105 -0
- pulumi_oci/filestorage/file_system_quota_rule.py +593 -0
- pulumi_oci/filestorage/get_file_system_quota_rule.py +248 -0
- pulumi_oci/filestorage/get_file_system_quota_rules.py +210 -0
- pulumi_oci/filestorage/outputs.py +186 -0
- pulumi_oci/mysql/_inputs.py +1239 -10
- pulumi_oci/mysql/channel.py +28 -0
- pulumi_oci/mysql/get_channel.py +15 -1
- pulumi_oci/mysql/get_mysql_backup.py +15 -1
- pulumi_oci/mysql/get_mysql_configuration.py +15 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +28 -0
- pulumi_oci/mysql/mysql_configuration.py +106 -0
- pulumi_oci/mysql/mysql_db_system.py +36 -0
- pulumi_oci/mysql/outputs.py +2008 -35
- pulumi_oci/opensearch/__init__.py +3 -0
- pulumi_oci/opensearch/_inputs.py +101 -0
- pulumi_oci/opensearch/cluster.py +76 -29
- pulumi_oci/opensearch/get_opensearch_cluster.py +12 -1
- pulumi_oci/opensearch/get_opensearch_cluster_pipeline.py +433 -0
- pulumi_oci/opensearch/get_opensearch_cluster_pipelines.py +218 -0
- pulumi_oci/opensearch/opensearch_cluster_pipeline.py +1172 -0
- pulumi_oci/opensearch/outputs.py +425 -0
- pulumi_oci/psql/_inputs.py +258 -0
- pulumi_oci/psql/backup.py +129 -28
- pulumi_oci/psql/db_system.py +10 -0
- pulumi_oci/psql/get_backup.py +47 -2
- pulumi_oci/psql/get_backups.py +3 -0
- pulumi_oci/psql/get_configurations.py +23 -1
- pulumi_oci/psql/get_db_system.py +1 -1
- pulumi_oci/psql/get_db_systems.py +1 -1
- pulumi_oci/psql/outputs.py +541 -5
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/redis_cluster.py +7 -7
- {pulumi_oci-2.26.0a1741415311.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/METADATA +1 -1
- {pulumi_oci-2.26.0a1741415311.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/RECORD +135 -106
- {pulumi_oci-2.26.0a1741415311.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.26.0a1741415311.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/top_level.txt +0 -0
@@ -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'),
|
@@ -27,13 +27,16 @@ class GetExascaleDbStorageVaultResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getExascaleDbStorageVault.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, additional_flash_cache_in_percent=None, availability_domain=None, compartment_id=None, defined_tags=None, description=None, display_name=None, exascale_db_storage_vault_id=None, freeform_tags=None, high_capacity_database_storages=None, id=None, lifecycle_details=None, state=None, system_tags=None, time_created=None, time_zone=None, vm_cluster_count=None, vm_cluster_ids=None):
|
30
|
+
def __init__(__self__, additional_flash_cache_in_percent=None, availability_domain=None, cluster_placement_group_id=None, compartment_id=None, defined_tags=None, description=None, display_name=None, exadata_infrastructure_id=None, exascale_db_storage_vault_id=None, freeform_tags=None, high_capacity_database_storages=None, id=None, lifecycle_details=None, state=None, subscription_id=None, system_tags=None, time_created=None, time_zone=None, vm_cluster_count=None, vm_cluster_ids=None):
|
31
31
|
if additional_flash_cache_in_percent and not isinstance(additional_flash_cache_in_percent, int):
|
32
32
|
raise TypeError("Expected argument 'additional_flash_cache_in_percent' to be a int")
|
33
33
|
pulumi.set(__self__, "additional_flash_cache_in_percent", additional_flash_cache_in_percent)
|
34
34
|
if availability_domain and not isinstance(availability_domain, str):
|
35
35
|
raise TypeError("Expected argument 'availability_domain' to be a str")
|
36
36
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
37
|
+
if cluster_placement_group_id and not isinstance(cluster_placement_group_id, str):
|
38
|
+
raise TypeError("Expected argument 'cluster_placement_group_id' to be a str")
|
39
|
+
pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
|
37
40
|
if compartment_id and not isinstance(compartment_id, str):
|
38
41
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
39
42
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -46,6 +49,9 @@ class GetExascaleDbStorageVaultResult:
|
|
46
49
|
if display_name and not isinstance(display_name, str):
|
47
50
|
raise TypeError("Expected argument 'display_name' to be a str")
|
48
51
|
pulumi.set(__self__, "display_name", display_name)
|
52
|
+
if exadata_infrastructure_id and not isinstance(exadata_infrastructure_id, str):
|
53
|
+
raise TypeError("Expected argument 'exadata_infrastructure_id' to be a str")
|
54
|
+
pulumi.set(__self__, "exadata_infrastructure_id", exadata_infrastructure_id)
|
49
55
|
if exascale_db_storage_vault_id and not isinstance(exascale_db_storage_vault_id, str):
|
50
56
|
raise TypeError("Expected argument 'exascale_db_storage_vault_id' to be a str")
|
51
57
|
pulumi.set(__self__, "exascale_db_storage_vault_id", exascale_db_storage_vault_id)
|
@@ -64,6 +70,9 @@ class GetExascaleDbStorageVaultResult:
|
|
64
70
|
if state and not isinstance(state, str):
|
65
71
|
raise TypeError("Expected argument 'state' to be a str")
|
66
72
|
pulumi.set(__self__, "state", state)
|
73
|
+
if subscription_id and not isinstance(subscription_id, str):
|
74
|
+
raise TypeError("Expected argument 'subscription_id' to be a str")
|
75
|
+
pulumi.set(__self__, "subscription_id", subscription_id)
|
67
76
|
if system_tags and not isinstance(system_tags, dict):
|
68
77
|
raise TypeError("Expected argument 'system_tags' to be a dict")
|
69
78
|
pulumi.set(__self__, "system_tags", system_tags)
|
@@ -96,6 +105,14 @@ class GetExascaleDbStorageVaultResult:
|
|
96
105
|
"""
|
97
106
|
return pulumi.get(self, "availability_domain")
|
98
107
|
|
108
|
+
@property
|
109
|
+
@pulumi.getter(name="clusterPlacementGroupId")
|
110
|
+
def cluster_placement_group_id(self) -> str:
|
111
|
+
"""
|
112
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group of the Exadata Infrastructure.
|
113
|
+
"""
|
114
|
+
return pulumi.get(self, "cluster_placement_group_id")
|
115
|
+
|
99
116
|
@property
|
100
117
|
@pulumi.getter(name="compartmentId")
|
101
118
|
def compartment_id(self) -> str:
|
@@ -128,6 +145,14 @@ class GetExascaleDbStorageVaultResult:
|
|
128
145
|
"""
|
129
146
|
return pulumi.get(self, "display_name")
|
130
147
|
|
148
|
+
@property
|
149
|
+
@pulumi.getter(name="exadataInfrastructureId")
|
150
|
+
def exadata_infrastructure_id(self) -> str:
|
151
|
+
"""
|
152
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata infrastructure.
|
153
|
+
"""
|
154
|
+
return pulumi.get(self, "exadata_infrastructure_id")
|
155
|
+
|
131
156
|
@property
|
132
157
|
@pulumi.getter(name="exascaleDbStorageVaultId")
|
133
158
|
def exascale_db_storage_vault_id(self) -> str:
|
@@ -173,6 +198,14 @@ class GetExascaleDbStorageVaultResult:
|
|
173
198
|
"""
|
174
199
|
return pulumi.get(self, "state")
|
175
200
|
|
201
|
+
@property
|
202
|
+
@pulumi.getter(name="subscriptionId")
|
203
|
+
def subscription_id(self) -> str:
|
204
|
+
"""
|
205
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
|
206
|
+
"""
|
207
|
+
return pulumi.get(self, "subscription_id")
|
208
|
+
|
176
209
|
@property
|
177
210
|
@pulumi.getter(name="systemTags")
|
178
211
|
def system_tags(self) -> Mapping[str, str]:
|
@@ -222,16 +255,19 @@ class AwaitableGetExascaleDbStorageVaultResult(GetExascaleDbStorageVaultResult):
|
|
222
255
|
return GetExascaleDbStorageVaultResult(
|
223
256
|
additional_flash_cache_in_percent=self.additional_flash_cache_in_percent,
|
224
257
|
availability_domain=self.availability_domain,
|
258
|
+
cluster_placement_group_id=self.cluster_placement_group_id,
|
225
259
|
compartment_id=self.compartment_id,
|
226
260
|
defined_tags=self.defined_tags,
|
227
261
|
description=self.description,
|
228
262
|
display_name=self.display_name,
|
263
|
+
exadata_infrastructure_id=self.exadata_infrastructure_id,
|
229
264
|
exascale_db_storage_vault_id=self.exascale_db_storage_vault_id,
|
230
265
|
freeform_tags=self.freeform_tags,
|
231
266
|
high_capacity_database_storages=self.high_capacity_database_storages,
|
232
267
|
id=self.id,
|
233
268
|
lifecycle_details=self.lifecycle_details,
|
234
269
|
state=self.state,
|
270
|
+
subscription_id=self.subscription_id,
|
235
271
|
system_tags=self.system_tags,
|
236
272
|
time_created=self.time_created,
|
237
273
|
time_zone=self.time_zone,
|
@@ -266,16 +302,19 @@ def get_exascale_db_storage_vault(exascale_db_storage_vault_id: Optional[str] =
|
|
266
302
|
return AwaitableGetExascaleDbStorageVaultResult(
|
267
303
|
additional_flash_cache_in_percent=pulumi.get(__ret__, 'additional_flash_cache_in_percent'),
|
268
304
|
availability_domain=pulumi.get(__ret__, 'availability_domain'),
|
305
|
+
cluster_placement_group_id=pulumi.get(__ret__, 'cluster_placement_group_id'),
|
269
306
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
270
307
|
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
271
308
|
description=pulumi.get(__ret__, 'description'),
|
272
309
|
display_name=pulumi.get(__ret__, 'display_name'),
|
310
|
+
exadata_infrastructure_id=pulumi.get(__ret__, 'exadata_infrastructure_id'),
|
273
311
|
exascale_db_storage_vault_id=pulumi.get(__ret__, 'exascale_db_storage_vault_id'),
|
274
312
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
275
313
|
high_capacity_database_storages=pulumi.get(__ret__, 'high_capacity_database_storages'),
|
276
314
|
id=pulumi.get(__ret__, 'id'),
|
277
315
|
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
278
316
|
state=pulumi.get(__ret__, 'state'),
|
317
|
+
subscription_id=pulumi.get(__ret__, 'subscription_id'),
|
279
318
|
system_tags=pulumi.get(__ret__, 'system_tags'),
|
280
319
|
time_created=pulumi.get(__ret__, 'time_created'),
|
281
320
|
time_zone=pulumi.get(__ret__, 'time_zone'),
|
@@ -307,16 +346,19 @@ def get_exascale_db_storage_vault_output(exascale_db_storage_vault_id: Optional[
|
|
307
346
|
return __ret__.apply(lambda __response__: GetExascaleDbStorageVaultResult(
|
308
347
|
additional_flash_cache_in_percent=pulumi.get(__response__, 'additional_flash_cache_in_percent'),
|
309
348
|
availability_domain=pulumi.get(__response__, 'availability_domain'),
|
349
|
+
cluster_placement_group_id=pulumi.get(__response__, 'cluster_placement_group_id'),
|
310
350
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
311
351
|
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
312
352
|
description=pulumi.get(__response__, 'description'),
|
313
353
|
display_name=pulumi.get(__response__, 'display_name'),
|
354
|
+
exadata_infrastructure_id=pulumi.get(__response__, 'exadata_infrastructure_id'),
|
314
355
|
exascale_db_storage_vault_id=pulumi.get(__response__, 'exascale_db_storage_vault_id'),
|
315
356
|
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
316
357
|
high_capacity_database_storages=pulumi.get(__response__, 'high_capacity_database_storages'),
|
317
358
|
id=pulumi.get(__response__, 'id'),
|
318
359
|
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
319
360
|
state=pulumi.get(__response__, 'state'),
|
361
|
+
subscription_id=pulumi.get(__response__, 'subscription_id'),
|
320
362
|
system_tags=pulumi.get(__response__, 'system_tags'),
|
321
363
|
time_created=pulumi.get(__response__, 'time_created'),
|
322
364
|
time_zone=pulumi.get(__response__, 'time_zone'),
|
@@ -28,13 +28,19 @@ class GetExascaleDbStorageVaultsResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getExascaleDbStorageVaults.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, compartment_id=None, display_name=None, exascale_db_storage_vaults=None, filters=None, id=None, state=None):
|
31
|
+
def __init__(__self__, cluster_placement_group_id=None, compartment_id=None, display_name=None, exadata_infrastructure_id=None, exascale_db_storage_vaults=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)
|
35
38
|
if display_name and not isinstance(display_name, str):
|
36
39
|
raise TypeError("Expected argument 'display_name' to be a str")
|
37
40
|
pulumi.set(__self__, "display_name", display_name)
|
41
|
+
if exadata_infrastructure_id and not isinstance(exadata_infrastructure_id, str):
|
42
|
+
raise TypeError("Expected argument 'exadata_infrastructure_id' to be a str")
|
43
|
+
pulumi.set(__self__, "exadata_infrastructure_id", exadata_infrastructure_id)
|
38
44
|
if exascale_db_storage_vaults and not isinstance(exascale_db_storage_vaults, list):
|
39
45
|
raise TypeError("Expected argument 'exascale_db_storage_vaults' to be a list")
|
40
46
|
pulumi.set(__self__, "exascale_db_storage_vaults", exascale_db_storage_vaults)
|
@@ -48,6 +54,14 @@ class GetExascaleDbStorageVaultsResult:
|
|
48
54
|
raise TypeError("Expected argument 'state' to be a str")
|
49
55
|
pulumi.set(__self__, "state", state)
|
50
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
|
+
|
51
65
|
@property
|
52
66
|
@pulumi.getter(name="compartmentId")
|
53
67
|
def compartment_id(self) -> str:
|
@@ -64,6 +78,14 @@ class GetExascaleDbStorageVaultsResult:
|
|
64
78
|
"""
|
65
79
|
return pulumi.get(self, "display_name")
|
66
80
|
|
81
|
+
@property
|
82
|
+
@pulumi.getter(name="exadataInfrastructureId")
|
83
|
+
def exadata_infrastructure_id(self) -> Optional[str]:
|
84
|
+
"""
|
85
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata infrastructure.
|
86
|
+
"""
|
87
|
+
return pulumi.get(self, "exadata_infrastructure_id")
|
88
|
+
|
67
89
|
@property
|
68
90
|
@pulumi.getter(name="exascaleDbStorageVaults")
|
69
91
|
def exascale_db_storage_vaults(self) -> Sequence['outputs.GetExascaleDbStorageVaultsExascaleDbStorageVaultResult']:
|
@@ -100,16 +122,20 @@ class AwaitableGetExascaleDbStorageVaultsResult(GetExascaleDbStorageVaultsResult
|
|
100
122
|
if False:
|
101
123
|
yield self
|
102
124
|
return GetExascaleDbStorageVaultsResult(
|
125
|
+
cluster_placement_group_id=self.cluster_placement_group_id,
|
103
126
|
compartment_id=self.compartment_id,
|
104
127
|
display_name=self.display_name,
|
128
|
+
exadata_infrastructure_id=self.exadata_infrastructure_id,
|
105
129
|
exascale_db_storage_vaults=self.exascale_db_storage_vaults,
|
106
130
|
filters=self.filters,
|
107
131
|
id=self.id,
|
108
132
|
state=self.state)
|
109
133
|
|
110
134
|
|
111
|
-
def get_exascale_db_storage_vaults(
|
135
|
+
def get_exascale_db_storage_vaults(cluster_placement_group_id: Optional[str] = None,
|
136
|
+
compartment_id: Optional[str] = None,
|
112
137
|
display_name: Optional[str] = None,
|
138
|
+
exadata_infrastructure_id: Optional[str] = None,
|
113
139
|
filters: Optional[Sequence[Union['GetExascaleDbStorageVaultsFilterArgs', 'GetExascaleDbStorageVaultsFilterArgsDict']]] = None,
|
114
140
|
state: Optional[str] = None,
|
115
141
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetExascaleDbStorageVaultsResult:
|
@@ -125,32 +151,42 @@ def get_exascale_db_storage_vaults(compartment_id: Optional[str] = None,
|
|
125
151
|
import pulumi_oci as oci
|
126
152
|
|
127
153
|
test_exascale_db_storage_vaults = oci.Database.get_exascale_db_storage_vaults(compartment_id=compartment_id,
|
154
|
+
cluster_placement_group_id=test_cluster_placement_group["id"],
|
128
155
|
display_name=exascale_db_storage_vault_display_name,
|
156
|
+
exadata_infrastructure_id=test_exadata_infrastructure["id"],
|
129
157
|
state=exascale_db_storage_vault_state)
|
130
158
|
```
|
131
159
|
|
132
160
|
|
161
|
+
:param str cluster_placement_group_id: A filter to return only resources that match the given cluster placement group ID exactly.
|
133
162
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
134
163
|
:param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
164
|
+
:param str exadata_infrastructure_id: A filter to return only list of Vaults that are linked to the exadata infrastructure Id.
|
135
165
|
:param str state: A filter to return only Exadata Database Storage Vaults that match the given lifecycle state exactly.
|
136
166
|
"""
|
137
167
|
__args__ = dict()
|
168
|
+
__args__['clusterPlacementGroupId'] = cluster_placement_group_id
|
138
169
|
__args__['compartmentId'] = compartment_id
|
139
170
|
__args__['displayName'] = display_name
|
171
|
+
__args__['exadataInfrastructureId'] = exadata_infrastructure_id
|
140
172
|
__args__['filters'] = filters
|
141
173
|
__args__['state'] = state
|
142
174
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
143
175
|
__ret__ = pulumi.runtime.invoke('oci:Database/getExascaleDbStorageVaults:getExascaleDbStorageVaults', __args__, opts=opts, typ=GetExascaleDbStorageVaultsResult).value
|
144
176
|
|
145
177
|
return AwaitableGetExascaleDbStorageVaultsResult(
|
178
|
+
cluster_placement_group_id=pulumi.get(__ret__, 'cluster_placement_group_id'),
|
146
179
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
147
180
|
display_name=pulumi.get(__ret__, 'display_name'),
|
181
|
+
exadata_infrastructure_id=pulumi.get(__ret__, 'exadata_infrastructure_id'),
|
148
182
|
exascale_db_storage_vaults=pulumi.get(__ret__, 'exascale_db_storage_vaults'),
|
149
183
|
filters=pulumi.get(__ret__, 'filters'),
|
150
184
|
id=pulumi.get(__ret__, 'id'),
|
151
185
|
state=pulumi.get(__ret__, 'state'))
|
152
|
-
def get_exascale_db_storage_vaults_output(
|
186
|
+
def get_exascale_db_storage_vaults_output(cluster_placement_group_id: Optional[pulumi.Input[Optional[str]]] = None,
|
187
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
153
188
|
display_name: Optional[pulumi.Input[Optional[str]]] = None,
|
189
|
+
exadata_infrastructure_id: Optional[pulumi.Input[Optional[str]]] = None,
|
154
190
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetExascaleDbStorageVaultsFilterArgs', 'GetExascaleDbStorageVaultsFilterArgsDict']]]]] = None,
|
155
191
|
state: Optional[pulumi.Input[Optional[str]]] = None,
|
156
192
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetExascaleDbStorageVaultsResult]:
|
@@ -166,25 +202,33 @@ def get_exascale_db_storage_vaults_output(compartment_id: Optional[pulumi.Input[
|
|
166
202
|
import pulumi_oci as oci
|
167
203
|
|
168
204
|
test_exascale_db_storage_vaults = oci.Database.get_exascale_db_storage_vaults(compartment_id=compartment_id,
|
205
|
+
cluster_placement_group_id=test_cluster_placement_group["id"],
|
169
206
|
display_name=exascale_db_storage_vault_display_name,
|
207
|
+
exadata_infrastructure_id=test_exadata_infrastructure["id"],
|
170
208
|
state=exascale_db_storage_vault_state)
|
171
209
|
```
|
172
210
|
|
173
211
|
|
212
|
+
:param str cluster_placement_group_id: A filter to return only resources that match the given cluster placement group ID exactly.
|
174
213
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
175
214
|
:param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
215
|
+
:param str exadata_infrastructure_id: A filter to return only list of Vaults that are linked to the exadata infrastructure Id.
|
176
216
|
:param str state: A filter to return only Exadata Database Storage Vaults that match the given lifecycle state exactly.
|
177
217
|
"""
|
178
218
|
__args__ = dict()
|
219
|
+
__args__['clusterPlacementGroupId'] = cluster_placement_group_id
|
179
220
|
__args__['compartmentId'] = compartment_id
|
180
221
|
__args__['displayName'] = display_name
|
222
|
+
__args__['exadataInfrastructureId'] = exadata_infrastructure_id
|
181
223
|
__args__['filters'] = filters
|
182
224
|
__args__['state'] = state
|
183
225
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
184
226
|
__ret__ = pulumi.runtime.invoke_output('oci:Database/getExascaleDbStorageVaults:getExascaleDbStorageVaults', __args__, opts=opts, typ=GetExascaleDbStorageVaultsResult)
|
185
227
|
return __ret__.apply(lambda __response__: GetExascaleDbStorageVaultsResult(
|
228
|
+
cluster_placement_group_id=pulumi.get(__response__, 'cluster_placement_group_id'),
|
186
229
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
187
230
|
display_name=pulumi.get(__response__, 'display_name'),
|
231
|
+
exadata_infrastructure_id=pulumi.get(__response__, 'exadata_infrastructure_id'),
|
188
232
|
exascale_db_storage_vaults=pulumi.get(__response__, 'exascale_db_storage_vaults'),
|
189
233
|
filters=pulumi.get(__response__, 'filters'),
|
190
234
|
id=pulumi.get(__response__, 'id'),
|
@@ -117,7 +117,7 @@ class GetExternalContainerDatabaseResult:
|
|
117
117
|
@pulumi.getter(name="databaseEdition")
|
118
118
|
def database_edition(self) -> str:
|
119
119
|
"""
|
120
|
-
The Oracle Database
|
120
|
+
The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
|
121
121
|
"""
|
122
122
|
return pulumi.get(self, "database_edition")
|
123
123
|
|
@@ -120,7 +120,7 @@ class GetExternalNonContainerDatabaseResult:
|
|
120
120
|
@pulumi.getter(name="databaseEdition")
|
121
121
|
def database_edition(self) -> str:
|
122
122
|
"""
|
123
|
-
The Oracle Database
|
123
|
+
The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
|
124
124
|
"""
|
125
125
|
return pulumi.get(self, "database_edition")
|
126
126
|
|
@@ -126,7 +126,7 @@ class GetExternalPluggableDatabaseResult:
|
|
126
126
|
@pulumi.getter(name="databaseEdition")
|
127
127
|
def database_edition(self) -> str:
|
128
128
|
"""
|
129
|
-
The Oracle Database
|
129
|
+
The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
|
130
130
|
"""
|
131
131
|
return pulumi.get(self, "database_edition")
|
132
132
|
|