pulumi-oci 3.5.0a1756363728__py3-none-any.whl → 3.5.0a1756440723__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 +80 -0
- pulumi_oci/core/compute_gpu_memory_fabric.py +28 -0
- pulumi_oci/core/get_compute_gpu_memory_fabric.py +15 -1
- pulumi_oci/core/outputs.py +11 -0
- pulumi_oci/database/_inputs.py +257 -12
- pulumi_oci/database/data_guard_association.py +98 -0
- pulumi_oci/database/database.py +28 -0
- pulumi_oci/database/db_node.py +56 -0
- pulumi_oci/database/db_system.py +108 -14
- pulumi_oci/database/exadb_vm_cluster.py +49 -0
- pulumi_oci/database/exascale_db_storage_vault.py +28 -0
- pulumi_oci/database/get_data_guard_association.py +23 -1
- pulumi_oci/database/get_database.py +15 -1
- pulumi_oci/database/get_db_node.py +29 -1
- pulumi_oci/database/get_db_system_shapes.py +25 -6
- pulumi_oci/database/get_db_system_storage_performances.py +20 -3
- pulumi_oci/database/get_db_versions.py +20 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +15 -1
- pulumi_oci/database/get_exascale_db_storage_vault.py +15 -1
- pulumi_oci/database/get_exascale_db_storage_vaults.py +87 -8
- pulumi_oci/database/get_gi_versions.py +25 -6
- pulumi_oci/database/outputs.py +575 -8
- pulumi_oci/datasafe/__init__.py +24 -0
- pulumi_oci/datasafe/_inputs.py +3669 -1537
- pulumi_oci/datasafe/attribute_set.py +693 -0
- pulumi_oci/datasafe/audit_profile.py +356 -95
- pulumi_oci/datasafe/audit_profile_management.py +389 -129
- pulumi_oci/datasafe/audit_trail.py +47 -0
- pulumi_oci/datasafe/audit_trail_management.py +49 -0
- pulumi_oci/datasafe/get_alerts.py +2 -2
- pulumi_oci/datasafe/get_attribute_set.py +295 -0
- pulumi_oci/datasafe/get_attribute_set_associated_resources.py +188 -0
- pulumi_oci/datasafe/get_attribute_sets.py +340 -0
- pulumi_oci/datasafe/get_audit_archive_retrievals.py +20 -1
- pulumi_oci/datasafe/get_audit_events.py +2 -2
- pulumi_oci/datasafe/get_audit_policies.py +20 -1
- pulumi_oci/datasafe/get_audit_profile.py +78 -8
- pulumi_oci/datasafe/get_audit_profile_target_overrides.py +163 -0
- pulumi_oci/datasafe/get_audit_profiles.py +50 -9
- pulumi_oci/datasafe/get_audit_trail.py +15 -1
- pulumi_oci/datasafe/get_audit_trails.py +20 -1
- pulumi_oci/datasafe/get_database_security_configs.py +20 -1
- pulumi_oci/datasafe/get_discovery_analytics.py +39 -1
- pulumi_oci/datasafe/get_masking_analytics.py +42 -1
- pulumi_oci/datasafe/get_onprem_connectors.py +26 -23
- pulumi_oci/datasafe/get_report.py +43 -1
- pulumi_oci/datasafe/get_reports.py +23 -1
- pulumi_oci/datasafe/get_security_assessment.py +116 -2
- pulumi_oci/datasafe/get_security_assessment_checks.py +264 -0
- pulumi_oci/datasafe/get_security_assessment_finding.py +64 -4
- pulumi_oci/datasafe/get_security_assessment_findings.py +73 -6
- pulumi_oci/datasafe/get_security_assessment_template_analytics.py +362 -0
- pulumi_oci/datasafe/get_security_assessment_template_association_analytics.py +298 -0
- pulumi_oci/datasafe/get_security_assessment_template_baseline_comparison.py +347 -0
- pulumi_oci/datasafe/get_security_assessments.py +68 -2
- pulumi_oci/datasafe/get_security_policies.py +23 -1
- pulumi_oci/datasafe/get_security_policy.py +15 -1
- pulumi_oci/datasafe/get_security_policy_config.py +296 -0
- pulumi_oci/datasafe/get_security_policy_configs.py +342 -0
- pulumi_oci/datasafe/get_security_policy_deployment.py +52 -2
- pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_state.py +49 -4
- pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_states.py +47 -6
- pulumi_oci/datasafe/get_security_policy_deployments.py +29 -7
- pulumi_oci/datasafe/get_sensitive_column_analytics.py +20 -1
- pulumi_oci/datasafe/get_sql_collection_analytics.py +20 -1
- pulumi_oci/datasafe/get_sql_collections.py +20 -1
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_violations.py +2 -2
- pulumi_oci/datasafe/get_target_alert_policy_associations.py +0 -34
- pulumi_oci/datasafe/get_target_database_group.py +296 -0
- pulumi_oci/datasafe/get_target_database_group_group_member.py +146 -0
- pulumi_oci/datasafe/get_target_database_groups.py +313 -0
- pulumi_oci/datasafe/get_unified_audit_policies.py +386 -0
- pulumi_oci/datasafe/get_unified_audit_policy.py +338 -0
- pulumi_oci/datasafe/get_unified_audit_policy_definition.py +309 -0
- pulumi_oci/datasafe/get_unified_audit_policy_definitions.py +334 -0
- pulumi_oci/datasafe/get_user_assessment.py +29 -1
- pulumi_oci/datasafe/get_user_assessments.py +45 -1
- pulumi_oci/datasafe/outputs.py +6964 -192
- pulumi_oci/datasafe/report.py +84 -0
- pulumi_oci/datasafe/report_definition.py +4 -0
- pulumi_oci/datasafe/security_assessment.py +425 -82
- pulumi_oci/datasafe/security_assessment_check.py +456 -0
- pulumi_oci/datasafe/security_assessment_finding.py +818 -0
- pulumi_oci/datasafe/security_policy.py +94 -77
- pulumi_oci/datasafe/security_policy_config.py +698 -0
- pulumi_oci/datasafe/security_policy_deployment.py +272 -67
- pulumi_oci/datasafe/security_policy_deployment_management.py +266 -42
- pulumi_oci/datasafe/security_policy_management.py +87 -30
- pulumi_oci/datasafe/target_alert_policy_association.py +7 -77
- pulumi_oci/datasafe/target_database.py +4 -0
- pulumi_oci/datasafe/target_database_group.py +679 -0
- pulumi_oci/datasafe/target_database_peer_target_database.py +2 -0
- pulumi_oci/datasafe/unified_audit_policy.py +836 -0
- pulumi_oci/datasafe/unified_audit_policy_definition.py +687 -0
- pulumi_oci/datasafe/user_assessment.py +105 -28
- pulumi_oci/disasterrecovery/_inputs.py +231 -3
- pulumi_oci/disasterrecovery/dr_protection_group.py +24 -0
- pulumi_oci/disasterrecovery/outputs.py +446 -12
- pulumi_oci/generativeai/_inputs.py +572 -63
- pulumi_oci/generativeai/agent_data_ingestion_job.py +48 -0
- pulumi_oci/generativeai/agent_data_source.py +7 -81
- pulumi_oci/generativeai/agent_knowledge_base.py +35 -25
- pulumi_oci/generativeai/agent_tool.py +172 -0
- pulumi_oci/generativeai/get_agent_data_ingestion_job.py +26 -1
- pulumi_oci/generativeai/get_agent_data_source.py +1 -5
- pulumi_oci/generativeai/get_agent_data_sources.py +0 -4
- pulumi_oci/generativeai/get_agent_knowledge_base.py +16 -6
- pulumi_oci/generativeai/get_agent_knowledge_bases.py +0 -4
- pulumi_oci/generativeai/outputs.py +1128 -106
- pulumi_oci/goldengate/deployment.py +94 -0
- pulumi_oci/goldengate/get_deployment.py +29 -1
- pulumi_oci/goldengate/get_deployments.py +23 -1
- pulumi_oci/goldengate/outputs.py +35 -2
- pulumi_oci/oci/__init__.py +9 -0
- pulumi_oci/oci/_inputs.py +420 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster.py +380 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_config.py +254 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_version.py +177 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_versions.py +144 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_configs.py +199 -0
- pulumi_oci/oci/get_managed_kafka_kafka_clusters.py +199 -0
- pulumi_oci/oci/managed_kafka_kafka_cluster.py +984 -0
- pulumi_oci/oci/managed_kafka_kafka_cluster_config.py +549 -0
- pulumi_oci/oci/managed_kafka_kafka_cluster_superusers_management.py +352 -0
- pulumi_oci/oci/outputs.py +1009 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.5.0a1756440723.dist-info}/METADATA +1 -1
- {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.5.0a1756440723.dist-info}/RECORD +133 -100
- {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.5.0a1756440723.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.5.0a1756440723.dist-info}/top_level.txt +0 -0
@@ -28,7 +28,10 @@ class GetDbSystemStoragePerformancesResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getDbSystemStoragePerformances.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, database_edition=None, db_system_storage_performances=None, filters=None, id=None, shape_type=None, storage_management=None):
|
31
|
+
def __init__(__self__, compartment_id=None, database_edition=None, db_system_storage_performances=None, filters=None, id=None, shape_type=None, storage_management=None):
|
32
|
+
if compartment_id and not isinstance(compartment_id, str):
|
33
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
34
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
32
35
|
if database_edition and not isinstance(database_edition, str):
|
33
36
|
raise TypeError("Expected argument 'database_edition' to be a str")
|
34
37
|
pulumi.set(__self__, "database_edition", database_edition)
|
@@ -48,6 +51,11 @@ class GetDbSystemStoragePerformancesResult:
|
|
48
51
|
raise TypeError("Expected argument 'storage_management' to be a str")
|
49
52
|
pulumi.set(__self__, "storage_management", storage_management)
|
50
53
|
|
54
|
+
@_builtins.property
|
55
|
+
@pulumi.getter(name="compartmentId")
|
56
|
+
def compartment_id(self) -> Optional[_builtins.str]:
|
57
|
+
return pulumi.get(self, "compartment_id")
|
58
|
+
|
51
59
|
@_builtins.property
|
52
60
|
@pulumi.getter(name="databaseEdition")
|
53
61
|
def database_edition(self) -> Optional[_builtins.str]:
|
@@ -94,6 +102,7 @@ class AwaitableGetDbSystemStoragePerformancesResult(GetDbSystemStoragePerformanc
|
|
94
102
|
if False:
|
95
103
|
yield self
|
96
104
|
return GetDbSystemStoragePerformancesResult(
|
105
|
+
compartment_id=self.compartment_id,
|
97
106
|
database_edition=self.database_edition,
|
98
107
|
db_system_storage_performances=self.db_system_storage_performances,
|
99
108
|
filters=self.filters,
|
@@ -102,7 +111,8 @@ class AwaitableGetDbSystemStoragePerformancesResult(GetDbSystemStoragePerformanc
|
|
102
111
|
storage_management=self.storage_management)
|
103
112
|
|
104
113
|
|
105
|
-
def get_db_system_storage_performances(
|
114
|
+
def get_db_system_storage_performances(compartment_id: Optional[_builtins.str] = None,
|
115
|
+
database_edition: Optional[_builtins.str] = None,
|
106
116
|
filters: Optional[Sequence[Union['GetDbSystemStoragePerformancesFilterArgs', 'GetDbSystemStoragePerformancesFilterArgsDict']]] = None,
|
107
117
|
shape_type: Optional[_builtins.str] = None,
|
108
118
|
storage_management: Optional[_builtins.str] = None,
|
@@ -113,6 +123,7 @@ def get_db_system_storage_performances(database_edition: Optional[_builtins.str]
|
|
113
123
|
Gets a list of possible expected storage performance parameters of a VMDB System based on Configuration.
|
114
124
|
|
115
125
|
|
126
|
+
:param _builtins.str compartment_id: Optional. The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
116
127
|
:param _builtins.str database_edition: Optional. Filters the performance results by database edition. Valid values are:
|
117
128
|
* STANDARD_EDITION
|
118
129
|
* ENTERPRISE_EDITION
|
@@ -125,6 +136,7 @@ def get_db_system_storage_performances(database_edition: Optional[_builtins.str]
|
|
125
136
|
* LVM specifies logical volume manager, sometimes called logical disk manager.
|
126
137
|
"""
|
127
138
|
__args__ = dict()
|
139
|
+
__args__['compartmentId'] = compartment_id
|
128
140
|
__args__['databaseEdition'] = database_edition
|
129
141
|
__args__['filters'] = filters
|
130
142
|
__args__['shapeType'] = shape_type
|
@@ -133,13 +145,15 @@ def get_db_system_storage_performances(database_edition: Optional[_builtins.str]
|
|
133
145
|
__ret__ = pulumi.runtime.invoke('oci:Database/getDbSystemStoragePerformances:getDbSystemStoragePerformances', __args__, opts=opts, typ=GetDbSystemStoragePerformancesResult).value
|
134
146
|
|
135
147
|
return AwaitableGetDbSystemStoragePerformancesResult(
|
148
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
136
149
|
database_edition=pulumi.get(__ret__, 'database_edition'),
|
137
150
|
db_system_storage_performances=pulumi.get(__ret__, 'db_system_storage_performances'),
|
138
151
|
filters=pulumi.get(__ret__, 'filters'),
|
139
152
|
id=pulumi.get(__ret__, 'id'),
|
140
153
|
shape_type=pulumi.get(__ret__, 'shape_type'),
|
141
154
|
storage_management=pulumi.get(__ret__, 'storage_management'))
|
142
|
-
def get_db_system_storage_performances_output(
|
155
|
+
def get_db_system_storage_performances_output(compartment_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
156
|
+
database_edition: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
143
157
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetDbSystemStoragePerformancesFilterArgs', 'GetDbSystemStoragePerformancesFilterArgsDict']]]]] = None,
|
144
158
|
shape_type: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
145
159
|
storage_management: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -150,6 +164,7 @@ def get_db_system_storage_performances_output(database_edition: Optional[pulumi.
|
|
150
164
|
Gets a list of possible expected storage performance parameters of a VMDB System based on Configuration.
|
151
165
|
|
152
166
|
|
167
|
+
:param _builtins.str compartment_id: Optional. The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
153
168
|
:param _builtins.str database_edition: Optional. Filters the performance results by database edition. Valid values are:
|
154
169
|
* STANDARD_EDITION
|
155
170
|
* ENTERPRISE_EDITION
|
@@ -162,6 +177,7 @@ def get_db_system_storage_performances_output(database_edition: Optional[pulumi.
|
|
162
177
|
* LVM specifies logical volume manager, sometimes called logical disk manager.
|
163
178
|
"""
|
164
179
|
__args__ = dict()
|
180
|
+
__args__['compartmentId'] = compartment_id
|
165
181
|
__args__['databaseEdition'] = database_edition
|
166
182
|
__args__['filters'] = filters
|
167
183
|
__args__['shapeType'] = shape_type
|
@@ -169,6 +185,7 @@ def get_db_system_storage_performances_output(database_edition: Optional[pulumi.
|
|
169
185
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
170
186
|
__ret__ = pulumi.runtime.invoke_output('oci:Database/getDbSystemStoragePerformances:getDbSystemStoragePerformances', __args__, opts=opts, typ=GetDbSystemStoragePerformancesResult)
|
171
187
|
return __ret__.apply(lambda __response__: GetDbSystemStoragePerformancesResult(
|
188
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
172
189
|
database_edition=pulumi.get(__response__, 'database_edition'),
|
173
190
|
db_system_storage_performances=pulumi.get(__response__, 'db_system_storage_performances'),
|
174
191
|
filters=pulumi.get(__response__, 'filters'),
|
@@ -28,7 +28,7 @@ class GetDbVersionsResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getDbVersions.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, compartment_id=None, db_system_id=None, db_system_shape=None, db_versions=None, filters=None, id=None, is_database_software_image_supported=None, is_upgrade_supported=None, storage_management=None):
|
31
|
+
def __init__(__self__, compartment_id=None, db_system_id=None, db_system_shape=None, db_versions=None, filters=None, id=None, is_database_software_image_supported=None, is_upgrade_supported=None, shape_attribute=None, storage_management=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)
|
@@ -53,6 +53,9 @@ class GetDbVersionsResult:
|
|
53
53
|
if is_upgrade_supported and not isinstance(is_upgrade_supported, bool):
|
54
54
|
raise TypeError("Expected argument 'is_upgrade_supported' to be a bool")
|
55
55
|
pulumi.set(__self__, "is_upgrade_supported", is_upgrade_supported)
|
56
|
+
if shape_attribute and not isinstance(shape_attribute, str):
|
57
|
+
raise TypeError("Expected argument 'shape_attribute' to be a str")
|
58
|
+
pulumi.set(__self__, "shape_attribute", shape_attribute)
|
56
59
|
if storage_management and not isinstance(storage_management, str):
|
57
60
|
raise TypeError("Expected argument 'storage_management' to be a str")
|
58
61
|
pulumi.set(__self__, "storage_management", storage_management)
|
@@ -106,6 +109,11 @@ class GetDbVersionsResult:
|
|
106
109
|
"""
|
107
110
|
return pulumi.get(self, "is_upgrade_supported")
|
108
111
|
|
112
|
+
@_builtins.property
|
113
|
+
@pulumi.getter(name="shapeAttribute")
|
114
|
+
def shape_attribute(self) -> Optional[_builtins.str]:
|
115
|
+
return pulumi.get(self, "shape_attribute")
|
116
|
+
|
109
117
|
@_builtins.property
|
110
118
|
@pulumi.getter(name="storageManagement")
|
111
119
|
def storage_management(self) -> Optional[_builtins.str]:
|
@@ -126,6 +134,7 @@ class AwaitableGetDbVersionsResult(GetDbVersionsResult):
|
|
126
134
|
id=self.id,
|
127
135
|
is_database_software_image_supported=self.is_database_software_image_supported,
|
128
136
|
is_upgrade_supported=self.is_upgrade_supported,
|
137
|
+
shape_attribute=self.shape_attribute,
|
129
138
|
storage_management=self.storage_management)
|
130
139
|
|
131
140
|
|
@@ -135,6 +144,7 @@ def get_db_versions(compartment_id: Optional[_builtins.str] = None,
|
|
135
144
|
filters: Optional[Sequence[Union['GetDbVersionsFilterArgs', 'GetDbVersionsFilterArgsDict']]] = None,
|
136
145
|
is_database_software_image_supported: Optional[_builtins.bool] = None,
|
137
146
|
is_upgrade_supported: Optional[_builtins.bool] = None,
|
147
|
+
shape_attribute: Optional[_builtins.str] = None,
|
138
148
|
storage_management: Optional[_builtins.str] = None,
|
139
149
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDbVersionsResult:
|
140
150
|
"""
|
@@ -153,6 +163,7 @@ def get_db_versions(compartment_id: Optional[_builtins.str] = None,
|
|
153
163
|
db_system_shape=db_version_db_system_shape,
|
154
164
|
is_database_software_image_supported=db_version_is_database_software_image_supported,
|
155
165
|
is_upgrade_supported=db_version_is_upgrade_supported,
|
166
|
+
shape_attribute=db_version_shape_attribute,
|
156
167
|
storage_management=db_version_storage_management)
|
157
168
|
```
|
158
169
|
|
@@ -162,6 +173,7 @@ def get_db_versions(compartment_id: Optional[_builtins.str] = None,
|
|
162
173
|
:param _builtins.str db_system_shape: If provided, filters the results to the set of database versions which are supported for the given shape.
|
163
174
|
:param _builtins.bool is_database_software_image_supported: If true, filters the results to the set of Oracle Database versions that are supported for Oracle Cloud Infrastructure database software images.
|
164
175
|
:param _builtins.bool is_upgrade_supported: If provided, filters the results to the set of database versions which are supported for Upgrade.
|
176
|
+
:param _builtins.str shape_attribute: If provided and applicable, return the results based on the shapeAttribute provided
|
165
177
|
:param _builtins.str storage_management: The DB system storage management option. Used to list database versions available for that storage manager. Valid values are `ASM` and `LVM`.
|
166
178
|
* ASM specifies Oracle Automatic Storage Management
|
167
179
|
* LVM specifies logical volume manager, sometimes called logical disk manager.
|
@@ -173,6 +185,7 @@ def get_db_versions(compartment_id: Optional[_builtins.str] = None,
|
|
173
185
|
__args__['filters'] = filters
|
174
186
|
__args__['isDatabaseSoftwareImageSupported'] = is_database_software_image_supported
|
175
187
|
__args__['isUpgradeSupported'] = is_upgrade_supported
|
188
|
+
__args__['shapeAttribute'] = shape_attribute
|
176
189
|
__args__['storageManagement'] = storage_management
|
177
190
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
178
191
|
__ret__ = pulumi.runtime.invoke('oci:Database/getDbVersions:getDbVersions', __args__, opts=opts, typ=GetDbVersionsResult).value
|
@@ -186,6 +199,7 @@ def get_db_versions(compartment_id: Optional[_builtins.str] = None,
|
|
186
199
|
id=pulumi.get(__ret__, 'id'),
|
187
200
|
is_database_software_image_supported=pulumi.get(__ret__, 'is_database_software_image_supported'),
|
188
201
|
is_upgrade_supported=pulumi.get(__ret__, 'is_upgrade_supported'),
|
202
|
+
shape_attribute=pulumi.get(__ret__, 'shape_attribute'),
|
189
203
|
storage_management=pulumi.get(__ret__, 'storage_management'))
|
190
204
|
def get_db_versions_output(compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
191
205
|
db_system_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
@@ -193,6 +207,7 @@ def get_db_versions_output(compartment_id: Optional[pulumi.Input[_builtins.str]]
|
|
193
207
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetDbVersionsFilterArgs', 'GetDbVersionsFilterArgsDict']]]]] = None,
|
194
208
|
is_database_software_image_supported: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
|
195
209
|
is_upgrade_supported: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
|
210
|
+
shape_attribute: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
196
211
|
storage_management: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
197
212
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDbVersionsResult]:
|
198
213
|
"""
|
@@ -211,6 +226,7 @@ def get_db_versions_output(compartment_id: Optional[pulumi.Input[_builtins.str]]
|
|
211
226
|
db_system_shape=db_version_db_system_shape,
|
212
227
|
is_database_software_image_supported=db_version_is_database_software_image_supported,
|
213
228
|
is_upgrade_supported=db_version_is_upgrade_supported,
|
229
|
+
shape_attribute=db_version_shape_attribute,
|
214
230
|
storage_management=db_version_storage_management)
|
215
231
|
```
|
216
232
|
|
@@ -220,6 +236,7 @@ def get_db_versions_output(compartment_id: Optional[pulumi.Input[_builtins.str]]
|
|
220
236
|
:param _builtins.str db_system_shape: If provided, filters the results to the set of database versions which are supported for the given shape.
|
221
237
|
:param _builtins.bool is_database_software_image_supported: If true, filters the results to the set of Oracle Database versions that are supported for Oracle Cloud Infrastructure database software images.
|
222
238
|
:param _builtins.bool is_upgrade_supported: If provided, filters the results to the set of database versions which are supported for Upgrade.
|
239
|
+
:param _builtins.str shape_attribute: If provided and applicable, return the results based on the shapeAttribute provided
|
223
240
|
:param _builtins.str storage_management: The DB system storage management option. Used to list database versions available for that storage manager. Valid values are `ASM` and `LVM`.
|
224
241
|
* ASM specifies Oracle Automatic Storage Management
|
225
242
|
* LVM specifies logical volume manager, sometimes called logical disk manager.
|
@@ -231,6 +248,7 @@ def get_db_versions_output(compartment_id: Optional[pulumi.Input[_builtins.str]]
|
|
231
248
|
__args__['filters'] = filters
|
232
249
|
__args__['isDatabaseSoftwareImageSupported'] = is_database_software_image_supported
|
233
250
|
__args__['isUpgradeSupported'] = is_upgrade_supported
|
251
|
+
__args__['shapeAttribute'] = shape_attribute
|
234
252
|
__args__['storageManagement'] = storage_management
|
235
253
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
236
254
|
__ret__ = pulumi.runtime.invoke_output('oci:Database/getDbVersions:getDbVersions', __args__, opts=opts, typ=GetDbVersionsResult)
|
@@ -243,4 +261,5 @@ def get_db_versions_output(compartment_id: Optional[pulumi.Input[_builtins.str]]
|
|
243
261
|
id=pulumi.get(__response__, 'id'),
|
244
262
|
is_database_software_image_supported=pulumi.get(__response__, 'is_database_software_image_supported'),
|
245
263
|
is_upgrade_supported=pulumi.get(__response__, 'is_upgrade_supported'),
|
264
|
+
shape_attribute=pulumi.get(__response__, 'shape_attribute'),
|
246
265
|
storage_management=pulumi.get(__response__, 'storage_management')))
|
@@ -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, 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):
|
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, shape_attribute=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)
|
@@ -130,6 +130,9 @@ class GetExadbVmClusterResult:
|
|
130
130
|
if shape and not isinstance(shape, str):
|
131
131
|
raise TypeError("Expected argument 'shape' to be a str")
|
132
132
|
pulumi.set(__self__, "shape", shape)
|
133
|
+
if shape_attribute and not isinstance(shape_attribute, str):
|
134
|
+
raise TypeError("Expected argument 'shape_attribute' to be a str")
|
135
|
+
pulumi.set(__self__, "shape_attribute", shape_attribute)
|
133
136
|
if ssh_public_keys and not isinstance(ssh_public_keys, list):
|
134
137
|
raise TypeError("Expected argument 'ssh_public_keys' to be a list")
|
135
138
|
pulumi.set(__self__, "ssh_public_keys", ssh_public_keys)
|
@@ -431,6 +434,14 @@ class GetExadbVmClusterResult:
|
|
431
434
|
"""
|
432
435
|
return pulumi.get(self, "shape")
|
433
436
|
|
437
|
+
@_builtins.property
|
438
|
+
@pulumi.getter(name="shapeAttribute")
|
439
|
+
def shape_attribute(self) -> _builtins.str:
|
440
|
+
"""
|
441
|
+
The type of Exascale storage used for Exadata VM cluster. The default is SMART_STORAGE which supports Oracle Database 23ai and later
|
442
|
+
"""
|
443
|
+
return pulumi.get(self, "shape_attribute")
|
444
|
+
|
434
445
|
@_builtins.property
|
435
446
|
@pulumi.getter(name="sshPublicKeys")
|
436
447
|
def ssh_public_keys(self) -> Sequence[_builtins.str]:
|
@@ -552,6 +563,7 @@ class AwaitableGetExadbVmClusterResult(GetExadbVmClusterResult):
|
|
552
563
|
scan_listener_port_tcp_ssl=self.scan_listener_port_tcp_ssl,
|
553
564
|
security_attributes=self.security_attributes,
|
554
565
|
shape=self.shape,
|
566
|
+
shape_attribute=self.shape_attribute,
|
555
567
|
ssh_public_keys=self.ssh_public_keys,
|
556
568
|
state=self.state,
|
557
569
|
subnet_id=self.subnet_id,
|
@@ -623,6 +635,7 @@ def get_exadb_vm_cluster(exadb_vm_cluster_id: Optional[_builtins.str] = None,
|
|
623
635
|
scan_listener_port_tcp_ssl=pulumi.get(__ret__, 'scan_listener_port_tcp_ssl'),
|
624
636
|
security_attributes=pulumi.get(__ret__, 'security_attributes'),
|
625
637
|
shape=pulumi.get(__ret__, 'shape'),
|
638
|
+
shape_attribute=pulumi.get(__ret__, 'shape_attribute'),
|
626
639
|
ssh_public_keys=pulumi.get(__ret__, 'ssh_public_keys'),
|
627
640
|
state=pulumi.get(__ret__, 'state'),
|
628
641
|
subnet_id=pulumi.get(__ret__, 'subnet_id'),
|
@@ -691,6 +704,7 @@ def get_exadb_vm_cluster_output(exadb_vm_cluster_id: Optional[pulumi.Input[_buil
|
|
691
704
|
scan_listener_port_tcp_ssl=pulumi.get(__response__, 'scan_listener_port_tcp_ssl'),
|
692
705
|
security_attributes=pulumi.get(__response__, 'security_attributes'),
|
693
706
|
shape=pulumi.get(__response__, 'shape'),
|
707
|
+
shape_attribute=pulumi.get(__response__, 'shape_attribute'),
|
694
708
|
ssh_public_keys=pulumi.get(__response__, 'ssh_public_keys'),
|
695
709
|
state=pulumi.get(__response__, 'state'),
|
696
710
|
subnet_id=pulumi.get(__response__, 'subnet_id'),
|
@@ -27,10 +27,13 @@ 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, 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):
|
30
|
+
def __init__(__self__, additional_flash_cache_in_percent=None, attached_shape_attributes=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
|
+
if attached_shape_attributes and not isinstance(attached_shape_attributes, list):
|
35
|
+
raise TypeError("Expected argument 'attached_shape_attributes' to be a list")
|
36
|
+
pulumi.set(__self__, "attached_shape_attributes", attached_shape_attributes)
|
34
37
|
if availability_domain and not isinstance(availability_domain, str):
|
35
38
|
raise TypeError("Expected argument 'availability_domain' to be a str")
|
36
39
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -97,6 +100,14 @@ class GetExascaleDbStorageVaultResult:
|
|
97
100
|
"""
|
98
101
|
return pulumi.get(self, "additional_flash_cache_in_percent")
|
99
102
|
|
103
|
+
@_builtins.property
|
104
|
+
@pulumi.getter(name="attachedShapeAttributes")
|
105
|
+
def attached_shape_attributes(self) -> Sequence[_builtins.str]:
|
106
|
+
"""
|
107
|
+
The shapeAttribute of the Exadata VM cluster(s) associated with the Exadata Database Storage Vault.
|
108
|
+
"""
|
109
|
+
return pulumi.get(self, "attached_shape_attributes")
|
110
|
+
|
100
111
|
@_builtins.property
|
101
112
|
@pulumi.getter(name="availabilityDomain")
|
102
113
|
def availability_domain(self) -> _builtins.str:
|
@@ -254,6 +265,7 @@ class AwaitableGetExascaleDbStorageVaultResult(GetExascaleDbStorageVaultResult):
|
|
254
265
|
yield self
|
255
266
|
return GetExascaleDbStorageVaultResult(
|
256
267
|
additional_flash_cache_in_percent=self.additional_flash_cache_in_percent,
|
268
|
+
attached_shape_attributes=self.attached_shape_attributes,
|
257
269
|
availability_domain=self.availability_domain,
|
258
270
|
cluster_placement_group_id=self.cluster_placement_group_id,
|
259
271
|
compartment_id=self.compartment_id,
|
@@ -301,6 +313,7 @@ def get_exascale_db_storage_vault(exascale_db_storage_vault_id: Optional[_builti
|
|
301
313
|
|
302
314
|
return AwaitableGetExascaleDbStorageVaultResult(
|
303
315
|
additional_flash_cache_in_percent=pulumi.get(__ret__, 'additional_flash_cache_in_percent'),
|
316
|
+
attached_shape_attributes=pulumi.get(__ret__, 'attached_shape_attributes'),
|
304
317
|
availability_domain=pulumi.get(__ret__, 'availability_domain'),
|
305
318
|
cluster_placement_group_id=pulumi.get(__ret__, 'cluster_placement_group_id'),
|
306
319
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
@@ -345,6 +358,7 @@ def get_exascale_db_storage_vault_output(exascale_db_storage_vault_id: Optional[
|
|
345
358
|
__ret__ = pulumi.runtime.invoke_output('oci:Database/getExascaleDbStorageVault:getExascaleDbStorageVault', __args__, opts=opts, typ=GetExascaleDbStorageVaultResult)
|
346
359
|
return __ret__.apply(lambda __response__: GetExascaleDbStorageVaultResult(
|
347
360
|
additional_flash_cache_in_percent=pulumi.get(__response__, 'additional_flash_cache_in_percent'),
|
361
|
+
attached_shape_attributes=pulumi.get(__response__, 'attached_shape_attributes'),
|
348
362
|
availability_domain=pulumi.get(__response__, 'availability_domain'),
|
349
363
|
cluster_placement_group_id=pulumi.get(__response__, 'cluster_placement_group_id'),
|
350
364
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
@@ -28,7 +28,13 @@ class GetExascaleDbStorageVaultsResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getExascaleDbStorageVaults.
|
30
30
|
"""
|
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):
|
31
|
+
def __init__(__self__, attached_shape_attributes=None, attached_shape_attributes_not_equal_to=None, 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, vm_cluster_count_greater_than_or_equal_to=None, vm_cluster_count_less_than_or_equal_to=None):
|
32
|
+
if attached_shape_attributes and not isinstance(attached_shape_attributes, str):
|
33
|
+
raise TypeError("Expected argument 'attached_shape_attributes' to be a str")
|
34
|
+
pulumi.set(__self__, "attached_shape_attributes", attached_shape_attributes)
|
35
|
+
if attached_shape_attributes_not_equal_to and not isinstance(attached_shape_attributes_not_equal_to, str):
|
36
|
+
raise TypeError("Expected argument 'attached_shape_attributes_not_equal_to' to be a str")
|
37
|
+
pulumi.set(__self__, "attached_shape_attributes_not_equal_to", attached_shape_attributes_not_equal_to)
|
32
38
|
if cluster_placement_group_id and not isinstance(cluster_placement_group_id, str):
|
33
39
|
raise TypeError("Expected argument 'cluster_placement_group_id' to be a str")
|
34
40
|
pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
|
@@ -53,6 +59,25 @@ class GetExascaleDbStorageVaultsResult:
|
|
53
59
|
if state and not isinstance(state, str):
|
54
60
|
raise TypeError("Expected argument 'state' to be a str")
|
55
61
|
pulumi.set(__self__, "state", state)
|
62
|
+
if vm_cluster_count_greater_than_or_equal_to and not isinstance(vm_cluster_count_greater_than_or_equal_to, int):
|
63
|
+
raise TypeError("Expected argument 'vm_cluster_count_greater_than_or_equal_to' to be a int")
|
64
|
+
pulumi.set(__self__, "vm_cluster_count_greater_than_or_equal_to", vm_cluster_count_greater_than_or_equal_to)
|
65
|
+
if vm_cluster_count_less_than_or_equal_to and not isinstance(vm_cluster_count_less_than_or_equal_to, int):
|
66
|
+
raise TypeError("Expected argument 'vm_cluster_count_less_than_or_equal_to' to be a int")
|
67
|
+
pulumi.set(__self__, "vm_cluster_count_less_than_or_equal_to", vm_cluster_count_less_than_or_equal_to)
|
68
|
+
|
69
|
+
@_builtins.property
|
70
|
+
@pulumi.getter(name="attachedShapeAttributes")
|
71
|
+
def attached_shape_attributes(self) -> Optional[_builtins.str]:
|
72
|
+
"""
|
73
|
+
The shapeAttribute of the Exadata VM cluster(s) associated with the Exadata Database Storage Vault.
|
74
|
+
"""
|
75
|
+
return pulumi.get(self, "attached_shape_attributes")
|
76
|
+
|
77
|
+
@_builtins.property
|
78
|
+
@pulumi.getter(name="attachedShapeAttributesNotEqualTo")
|
79
|
+
def attached_shape_attributes_not_equal_to(self) -> Optional[_builtins.str]:
|
80
|
+
return pulumi.get(self, "attached_shape_attributes_not_equal_to")
|
56
81
|
|
57
82
|
@_builtins.property
|
58
83
|
@pulumi.getter(name="clusterPlacementGroupId")
|
@@ -115,6 +140,16 @@ class GetExascaleDbStorageVaultsResult:
|
|
115
140
|
"""
|
116
141
|
return pulumi.get(self, "state")
|
117
142
|
|
143
|
+
@_builtins.property
|
144
|
+
@pulumi.getter(name="vmClusterCountGreaterThanOrEqualTo")
|
145
|
+
def vm_cluster_count_greater_than_or_equal_to(self) -> Optional[_builtins.int]:
|
146
|
+
return pulumi.get(self, "vm_cluster_count_greater_than_or_equal_to")
|
147
|
+
|
148
|
+
@_builtins.property
|
149
|
+
@pulumi.getter(name="vmClusterCountLessThanOrEqualTo")
|
150
|
+
def vm_cluster_count_less_than_or_equal_to(self) -> Optional[_builtins.int]:
|
151
|
+
return pulumi.get(self, "vm_cluster_count_less_than_or_equal_to")
|
152
|
+
|
118
153
|
|
119
154
|
class AwaitableGetExascaleDbStorageVaultsResult(GetExascaleDbStorageVaultsResult):
|
120
155
|
# pylint: disable=using-constant-test
|
@@ -122,6 +157,8 @@ class AwaitableGetExascaleDbStorageVaultsResult(GetExascaleDbStorageVaultsResult
|
|
122
157
|
if False:
|
123
158
|
yield self
|
124
159
|
return GetExascaleDbStorageVaultsResult(
|
160
|
+
attached_shape_attributes=self.attached_shape_attributes,
|
161
|
+
attached_shape_attributes_not_equal_to=self.attached_shape_attributes_not_equal_to,
|
125
162
|
cluster_placement_group_id=self.cluster_placement_group_id,
|
126
163
|
compartment_id=self.compartment_id,
|
127
164
|
display_name=self.display_name,
|
@@ -129,15 +166,21 @@ class AwaitableGetExascaleDbStorageVaultsResult(GetExascaleDbStorageVaultsResult
|
|
129
166
|
exascale_db_storage_vaults=self.exascale_db_storage_vaults,
|
130
167
|
filters=self.filters,
|
131
168
|
id=self.id,
|
132
|
-
state=self.state
|
169
|
+
state=self.state,
|
170
|
+
vm_cluster_count_greater_than_or_equal_to=self.vm_cluster_count_greater_than_or_equal_to,
|
171
|
+
vm_cluster_count_less_than_or_equal_to=self.vm_cluster_count_less_than_or_equal_to)
|
133
172
|
|
134
173
|
|
135
|
-
def get_exascale_db_storage_vaults(
|
174
|
+
def get_exascale_db_storage_vaults(attached_shape_attributes: Optional[_builtins.str] = None,
|
175
|
+
attached_shape_attributes_not_equal_to: Optional[_builtins.str] = None,
|
176
|
+
cluster_placement_group_id: Optional[_builtins.str] = None,
|
136
177
|
compartment_id: Optional[_builtins.str] = None,
|
137
178
|
display_name: Optional[_builtins.str] = None,
|
138
179
|
exadata_infrastructure_id: Optional[_builtins.str] = None,
|
139
180
|
filters: Optional[Sequence[Union['GetExascaleDbStorageVaultsFilterArgs', 'GetExascaleDbStorageVaultsFilterArgsDict']]] = None,
|
140
181
|
state: Optional[_builtins.str] = None,
|
182
|
+
vm_cluster_count_greater_than_or_equal_to: Optional[_builtins.int] = None,
|
183
|
+
vm_cluster_count_less_than_or_equal_to: Optional[_builtins.int] = None,
|
141
184
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetExascaleDbStorageVaultsResult:
|
142
185
|
"""
|
143
186
|
This data source provides the list of Exascale Db Storage Vaults in Oracle Cloud Infrastructure Database service.
|
@@ -151,30 +194,44 @@ def get_exascale_db_storage_vaults(cluster_placement_group_id: Optional[_builtin
|
|
151
194
|
import pulumi_oci as oci
|
152
195
|
|
153
196
|
test_exascale_db_storage_vaults = oci.Database.get_exascale_db_storage_vaults(compartment_id=compartment_id,
|
197
|
+
attached_shape_attributes=exascale_db_storage_vault_attached_shape_attributes,
|
198
|
+
attached_shape_attributes_not_equal_to=exascale_db_storage_vault_attached_shape_attributes_not_equal_to,
|
154
199
|
cluster_placement_group_id=test_cluster_placement_group["id"],
|
155
200
|
display_name=exascale_db_storage_vault_display_name,
|
156
201
|
exadata_infrastructure_id=test_exadata_infrastructure["id"],
|
157
|
-
state=exascale_db_storage_vault_state
|
202
|
+
state=exascale_db_storage_vault_state,
|
203
|
+
vm_cluster_count_greater_than_or_equal_to=exascale_db_storage_vault_vm_cluster_count_greater_than_or_equal_to,
|
204
|
+
vm_cluster_count_less_than_or_equal_to=exascale_db_storage_vault_vm_cluster_count_less_than_or_equal_to)
|
158
205
|
```
|
159
206
|
|
160
207
|
|
208
|
+
:param _builtins.str attached_shape_attributes: A filter to return only Exadata Database Storage Vaults which match the given attachedShapeAttributes or has null attachedShapeAttributes
|
209
|
+
:param _builtins.str attached_shape_attributes_not_equal_to: A filter to return only Exadata Database Storage Vaults which do not match the given attachedShapeAttributes
|
161
210
|
:param _builtins.str cluster_placement_group_id: A filter to return only resources that match the given cluster placement group ID exactly.
|
162
211
|
:param _builtins.str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
163
212
|
:param _builtins.str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
164
213
|
:param _builtins.str exadata_infrastructure_id: A filter to return only list of Vaults that are linked to the exadata infrastructure Id.
|
165
214
|
:param _builtins.str state: A filter to return only Exadata Database Storage Vaults that match the given lifecycle state exactly.
|
215
|
+
:param _builtins.int vm_cluster_count_greater_than_or_equal_to: A filter to return only Exadata Database Storage Vaults with associated Exadata VM Clusters greater than or equal to the given count
|
216
|
+
:param _builtins.int vm_cluster_count_less_than_or_equal_to: A filter to return only Exadata Database Storage Vaults with associated Exadata VM Clusters less than or equal to the given count
|
166
217
|
"""
|
167
218
|
__args__ = dict()
|
219
|
+
__args__['attachedShapeAttributes'] = attached_shape_attributes
|
220
|
+
__args__['attachedShapeAttributesNotEqualTo'] = attached_shape_attributes_not_equal_to
|
168
221
|
__args__['clusterPlacementGroupId'] = cluster_placement_group_id
|
169
222
|
__args__['compartmentId'] = compartment_id
|
170
223
|
__args__['displayName'] = display_name
|
171
224
|
__args__['exadataInfrastructureId'] = exadata_infrastructure_id
|
172
225
|
__args__['filters'] = filters
|
173
226
|
__args__['state'] = state
|
227
|
+
__args__['vmClusterCountGreaterThanOrEqualTo'] = vm_cluster_count_greater_than_or_equal_to
|
228
|
+
__args__['vmClusterCountLessThanOrEqualTo'] = vm_cluster_count_less_than_or_equal_to
|
174
229
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
175
230
|
__ret__ = pulumi.runtime.invoke('oci:Database/getExascaleDbStorageVaults:getExascaleDbStorageVaults', __args__, opts=opts, typ=GetExascaleDbStorageVaultsResult).value
|
176
231
|
|
177
232
|
return AwaitableGetExascaleDbStorageVaultsResult(
|
233
|
+
attached_shape_attributes=pulumi.get(__ret__, 'attached_shape_attributes'),
|
234
|
+
attached_shape_attributes_not_equal_to=pulumi.get(__ret__, 'attached_shape_attributes_not_equal_to'),
|
178
235
|
cluster_placement_group_id=pulumi.get(__ret__, 'cluster_placement_group_id'),
|
179
236
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
180
237
|
display_name=pulumi.get(__ret__, 'display_name'),
|
@@ -182,13 +239,19 @@ def get_exascale_db_storage_vaults(cluster_placement_group_id: Optional[_builtin
|
|
182
239
|
exascale_db_storage_vaults=pulumi.get(__ret__, 'exascale_db_storage_vaults'),
|
183
240
|
filters=pulumi.get(__ret__, 'filters'),
|
184
241
|
id=pulumi.get(__ret__, 'id'),
|
185
|
-
state=pulumi.get(__ret__, 'state')
|
186
|
-
|
242
|
+
state=pulumi.get(__ret__, 'state'),
|
243
|
+
vm_cluster_count_greater_than_or_equal_to=pulumi.get(__ret__, 'vm_cluster_count_greater_than_or_equal_to'),
|
244
|
+
vm_cluster_count_less_than_or_equal_to=pulumi.get(__ret__, 'vm_cluster_count_less_than_or_equal_to'))
|
245
|
+
def get_exascale_db_storage_vaults_output(attached_shape_attributes: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
246
|
+
attached_shape_attributes_not_equal_to: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
247
|
+
cluster_placement_group_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
187
248
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
188
249
|
display_name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
189
250
|
exadata_infrastructure_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
190
251
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetExascaleDbStorageVaultsFilterArgs', 'GetExascaleDbStorageVaultsFilterArgsDict']]]]] = None,
|
191
252
|
state: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
253
|
+
vm_cluster_count_greater_than_or_equal_to: Optional[pulumi.Input[Optional[_builtins.int]]] = None,
|
254
|
+
vm_cluster_count_less_than_or_equal_to: Optional[pulumi.Input[Optional[_builtins.int]]] = None,
|
192
255
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetExascaleDbStorageVaultsResult]:
|
193
256
|
"""
|
194
257
|
This data source provides the list of Exascale Db Storage Vaults in Oracle Cloud Infrastructure Database service.
|
@@ -202,29 +265,43 @@ def get_exascale_db_storage_vaults_output(cluster_placement_group_id: Optional[p
|
|
202
265
|
import pulumi_oci as oci
|
203
266
|
|
204
267
|
test_exascale_db_storage_vaults = oci.Database.get_exascale_db_storage_vaults(compartment_id=compartment_id,
|
268
|
+
attached_shape_attributes=exascale_db_storage_vault_attached_shape_attributes,
|
269
|
+
attached_shape_attributes_not_equal_to=exascale_db_storage_vault_attached_shape_attributes_not_equal_to,
|
205
270
|
cluster_placement_group_id=test_cluster_placement_group["id"],
|
206
271
|
display_name=exascale_db_storage_vault_display_name,
|
207
272
|
exadata_infrastructure_id=test_exadata_infrastructure["id"],
|
208
|
-
state=exascale_db_storage_vault_state
|
273
|
+
state=exascale_db_storage_vault_state,
|
274
|
+
vm_cluster_count_greater_than_or_equal_to=exascale_db_storage_vault_vm_cluster_count_greater_than_or_equal_to,
|
275
|
+
vm_cluster_count_less_than_or_equal_to=exascale_db_storage_vault_vm_cluster_count_less_than_or_equal_to)
|
209
276
|
```
|
210
277
|
|
211
278
|
|
279
|
+
:param _builtins.str attached_shape_attributes: A filter to return only Exadata Database Storage Vaults which match the given attachedShapeAttributes or has null attachedShapeAttributes
|
280
|
+
:param _builtins.str attached_shape_attributes_not_equal_to: A filter to return only Exadata Database Storage Vaults which do not match the given attachedShapeAttributes
|
212
281
|
:param _builtins.str cluster_placement_group_id: A filter to return only resources that match the given cluster placement group ID exactly.
|
213
282
|
:param _builtins.str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
214
283
|
:param _builtins.str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
215
284
|
:param _builtins.str exadata_infrastructure_id: A filter to return only list of Vaults that are linked to the exadata infrastructure Id.
|
216
285
|
:param _builtins.str state: A filter to return only Exadata Database Storage Vaults that match the given lifecycle state exactly.
|
286
|
+
:param _builtins.int vm_cluster_count_greater_than_or_equal_to: A filter to return only Exadata Database Storage Vaults with associated Exadata VM Clusters greater than or equal to the given count
|
287
|
+
:param _builtins.int vm_cluster_count_less_than_or_equal_to: A filter to return only Exadata Database Storage Vaults with associated Exadata VM Clusters less than or equal to the given count
|
217
288
|
"""
|
218
289
|
__args__ = dict()
|
290
|
+
__args__['attachedShapeAttributes'] = attached_shape_attributes
|
291
|
+
__args__['attachedShapeAttributesNotEqualTo'] = attached_shape_attributes_not_equal_to
|
219
292
|
__args__['clusterPlacementGroupId'] = cluster_placement_group_id
|
220
293
|
__args__['compartmentId'] = compartment_id
|
221
294
|
__args__['displayName'] = display_name
|
222
295
|
__args__['exadataInfrastructureId'] = exadata_infrastructure_id
|
223
296
|
__args__['filters'] = filters
|
224
297
|
__args__['state'] = state
|
298
|
+
__args__['vmClusterCountGreaterThanOrEqualTo'] = vm_cluster_count_greater_than_or_equal_to
|
299
|
+
__args__['vmClusterCountLessThanOrEqualTo'] = vm_cluster_count_less_than_or_equal_to
|
225
300
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
226
301
|
__ret__ = pulumi.runtime.invoke_output('oci:Database/getExascaleDbStorageVaults:getExascaleDbStorageVaults', __args__, opts=opts, typ=GetExascaleDbStorageVaultsResult)
|
227
302
|
return __ret__.apply(lambda __response__: GetExascaleDbStorageVaultsResult(
|
303
|
+
attached_shape_attributes=pulumi.get(__response__, 'attached_shape_attributes'),
|
304
|
+
attached_shape_attributes_not_equal_to=pulumi.get(__response__, 'attached_shape_attributes_not_equal_to'),
|
228
305
|
cluster_placement_group_id=pulumi.get(__response__, 'cluster_placement_group_id'),
|
229
306
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
230
307
|
display_name=pulumi.get(__response__, 'display_name'),
|
@@ -232,4 +309,6 @@ def get_exascale_db_storage_vaults_output(cluster_placement_group_id: Optional[p
|
|
232
309
|
exascale_db_storage_vaults=pulumi.get(__response__, 'exascale_db_storage_vaults'),
|
233
310
|
filters=pulumi.get(__response__, 'filters'),
|
234
311
|
id=pulumi.get(__response__, 'id'),
|
235
|
-
state=pulumi.get(__response__, 'state')
|
312
|
+
state=pulumi.get(__response__, 'state'),
|
313
|
+
vm_cluster_count_greater_than_or_equal_to=pulumi.get(__response__, 'vm_cluster_count_greater_than_or_equal_to'),
|
314
|
+
vm_cluster_count_less_than_or_equal_to=pulumi.get(__response__, 'vm_cluster_count_less_than_or_equal_to')))
|