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
@@ -28,7 +28,7 @@ class GetCloudVmClustersResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getCloudVmClusters.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, cloud_exadata_infrastructure_id=None, cloud_vm_clusters=None, compartment_id=None, display_name=None, filters=None, id=None, state=None):
|
31
|
+
def __init__(__self__, cloud_exadata_infrastructure_id=None, cloud_vm_clusters=None, compartment_id=None, display_name=None, filters=None, id=None, state=None, vm_cluster_type=None):
|
32
32
|
if cloud_exadata_infrastructure_id and not isinstance(cloud_exadata_infrastructure_id, str):
|
33
33
|
raise TypeError("Expected argument 'cloud_exadata_infrastructure_id' to be a str")
|
34
34
|
pulumi.set(__self__, "cloud_exadata_infrastructure_id", cloud_exadata_infrastructure_id)
|
@@ -50,6 +50,9 @@ class GetCloudVmClustersResult:
|
|
50
50
|
if state and not isinstance(state, str):
|
51
51
|
raise TypeError("Expected argument 'state' to be a str")
|
52
52
|
pulumi.set(__self__, "state", state)
|
53
|
+
if vm_cluster_type and not isinstance(vm_cluster_type, str):
|
54
|
+
raise TypeError("Expected argument 'vm_cluster_type' to be a str")
|
55
|
+
pulumi.set(__self__, "vm_cluster_type", vm_cluster_type)
|
53
56
|
|
54
57
|
@property
|
55
58
|
@pulumi.getter(name="cloudExadataInfrastructureId")
|
@@ -104,6 +107,14 @@ class GetCloudVmClustersResult:
|
|
104
107
|
"""
|
105
108
|
return pulumi.get(self, "state")
|
106
109
|
|
110
|
+
@property
|
111
|
+
@pulumi.getter(name="vmClusterType")
|
112
|
+
def vm_cluster_type(self) -> Optional[str]:
|
113
|
+
"""
|
114
|
+
The vmcluster type for the VM cluster/Cloud VM cluster.
|
115
|
+
"""
|
116
|
+
return pulumi.get(self, "vm_cluster_type")
|
117
|
+
|
107
118
|
|
108
119
|
class AwaitableGetCloudVmClustersResult(GetCloudVmClustersResult):
|
109
120
|
# pylint: disable=using-constant-test
|
@@ -117,7 +128,8 @@ class AwaitableGetCloudVmClustersResult(GetCloudVmClustersResult):
|
|
117
128
|
display_name=self.display_name,
|
118
129
|
filters=self.filters,
|
119
130
|
id=self.id,
|
120
|
-
state=self.state
|
131
|
+
state=self.state,
|
132
|
+
vm_cluster_type=self.vm_cluster_type)
|
121
133
|
|
122
134
|
|
123
135
|
def get_cloud_vm_clusters(cloud_exadata_infrastructure_id: Optional[str] = None,
|
@@ -125,6 +137,7 @@ def get_cloud_vm_clusters(cloud_exadata_infrastructure_id: Optional[str] = None,
|
|
125
137
|
display_name: Optional[str] = None,
|
126
138
|
filters: Optional[Sequence[Union['GetCloudVmClustersFilterArgs', 'GetCloudVmClustersFilterArgsDict']]] = None,
|
127
139
|
state: Optional[str] = None,
|
140
|
+
vm_cluster_type: Optional[str] = None,
|
128
141
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetCloudVmClustersResult:
|
129
142
|
"""
|
130
143
|
This data source provides the list of Cloud Vm Clusters in Oracle Cloud Infrastructure Database service.
|
@@ -140,7 +153,8 @@ def get_cloud_vm_clusters(cloud_exadata_infrastructure_id: Optional[str] = None,
|
|
140
153
|
test_cloud_vm_clusters = oci.Database.get_cloud_vm_clusters(compartment_id=compartment_id,
|
141
154
|
cloud_exadata_infrastructure_id=test_cloud_exadata_infrastructure["id"],
|
142
155
|
display_name=cloud_vm_cluster_display_name,
|
143
|
-
state=cloud_vm_cluster_state
|
156
|
+
state=cloud_vm_cluster_state,
|
157
|
+
vm_cluster_type=cloud_vm_cluster_vm_cluster_type)
|
144
158
|
```
|
145
159
|
|
146
160
|
|
@@ -148,6 +162,7 @@ def get_cloud_vm_clusters(cloud_exadata_infrastructure_id: Optional[str] = None,
|
|
148
162
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
149
163
|
:param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
150
164
|
:param str state: A filter to return only cloud VM clusters that match the given lifecycle state exactly.
|
165
|
+
:param str vm_cluster_type: A filter to return only cloud vmclusters that match the given cloud vmcluster type exactly.
|
151
166
|
"""
|
152
167
|
__args__ = dict()
|
153
168
|
__args__['cloudExadataInfrastructureId'] = cloud_exadata_infrastructure_id
|
@@ -155,6 +170,7 @@ def get_cloud_vm_clusters(cloud_exadata_infrastructure_id: Optional[str] = None,
|
|
155
170
|
__args__['displayName'] = display_name
|
156
171
|
__args__['filters'] = filters
|
157
172
|
__args__['state'] = state
|
173
|
+
__args__['vmClusterType'] = vm_cluster_type
|
158
174
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
159
175
|
__ret__ = pulumi.runtime.invoke('oci:Database/getCloudVmClusters:getCloudVmClusters', __args__, opts=opts, typ=GetCloudVmClustersResult).value
|
160
176
|
|
@@ -165,12 +181,14 @@ def get_cloud_vm_clusters(cloud_exadata_infrastructure_id: Optional[str] = None,
|
|
165
181
|
display_name=pulumi.get(__ret__, 'display_name'),
|
166
182
|
filters=pulumi.get(__ret__, 'filters'),
|
167
183
|
id=pulumi.get(__ret__, 'id'),
|
168
|
-
state=pulumi.get(__ret__, 'state')
|
184
|
+
state=pulumi.get(__ret__, 'state'),
|
185
|
+
vm_cluster_type=pulumi.get(__ret__, 'vm_cluster_type'))
|
169
186
|
def get_cloud_vm_clusters_output(cloud_exadata_infrastructure_id: Optional[pulumi.Input[Optional[str]]] = None,
|
170
187
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
171
188
|
display_name: Optional[pulumi.Input[Optional[str]]] = None,
|
172
189
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetCloudVmClustersFilterArgs', 'GetCloudVmClustersFilterArgsDict']]]]] = None,
|
173
190
|
state: Optional[pulumi.Input[Optional[str]]] = None,
|
191
|
+
vm_cluster_type: Optional[pulumi.Input[Optional[str]]] = None,
|
174
192
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetCloudVmClustersResult]:
|
175
193
|
"""
|
176
194
|
This data source provides the list of Cloud Vm Clusters in Oracle Cloud Infrastructure Database service.
|
@@ -186,7 +204,8 @@ def get_cloud_vm_clusters_output(cloud_exadata_infrastructure_id: Optional[pulum
|
|
186
204
|
test_cloud_vm_clusters = oci.Database.get_cloud_vm_clusters(compartment_id=compartment_id,
|
187
205
|
cloud_exadata_infrastructure_id=test_cloud_exadata_infrastructure["id"],
|
188
206
|
display_name=cloud_vm_cluster_display_name,
|
189
|
-
state=cloud_vm_cluster_state
|
207
|
+
state=cloud_vm_cluster_state,
|
208
|
+
vm_cluster_type=cloud_vm_cluster_vm_cluster_type)
|
190
209
|
```
|
191
210
|
|
192
211
|
|
@@ -194,6 +213,7 @@ def get_cloud_vm_clusters_output(cloud_exadata_infrastructure_id: Optional[pulum
|
|
194
213
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
195
214
|
:param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
196
215
|
:param str state: A filter to return only cloud VM clusters that match the given lifecycle state exactly.
|
216
|
+
:param str vm_cluster_type: A filter to return only cloud vmclusters that match the given cloud vmcluster type exactly.
|
197
217
|
"""
|
198
218
|
__args__ = dict()
|
199
219
|
__args__['cloudExadataInfrastructureId'] = cloud_exadata_infrastructure_id
|
@@ -201,6 +221,7 @@ def get_cloud_vm_clusters_output(cloud_exadata_infrastructure_id: Optional[pulum
|
|
201
221
|
__args__['displayName'] = display_name
|
202
222
|
__args__['filters'] = filters
|
203
223
|
__args__['state'] = state
|
224
|
+
__args__['vmClusterType'] = vm_cluster_type
|
204
225
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
205
226
|
__ret__ = pulumi.runtime.invoke_output('oci:Database/getCloudVmClusters:getCloudVmClusters', __args__, opts=opts, typ=GetCloudVmClustersResult)
|
206
227
|
return __ret__.apply(lambda __response__: GetCloudVmClustersResult(
|
@@ -210,4 +231,5 @@ def get_cloud_vm_clusters_output(cloud_exadata_infrastructure_id: Optional[pulum
|
|
210
231
|
display_name=pulumi.get(__response__, 'display_name'),
|
211
232
|
filters=pulumi.get(__response__, 'filters'),
|
212
233
|
id=pulumi.get(__response__, 'id'),
|
213
|
-
state=pulumi.get(__response__, 'state')
|
234
|
+
state=pulumi.get(__response__, 'state'),
|
235
|
+
vm_cluster_type=pulumi.get(__response__, 'vm_cluster_type')))
|
@@ -28,13 +28,16 @@ class GetDatabaseSoftwareImagesResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getDatabaseSoftwareImages.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, compartment_id=None, database_software_images=None, display_name=None, filters=None, id=None, image_shape_family=None, image_type=None, is_upgrade_supported=None, state=None):
|
31
|
+
def __init__(__self__, compartment_id=None, database_software_images=None, db_system_id=None, display_name=None, filters=None, id=None, image_shape_family=None, image_type=None, is_upgrade_supported=None, state=None):
|
32
32
|
if compartment_id and not isinstance(compartment_id, str):
|
33
33
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
34
34
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
35
35
|
if database_software_images and not isinstance(database_software_images, list):
|
36
36
|
raise TypeError("Expected argument 'database_software_images' to be a list")
|
37
37
|
pulumi.set(__self__, "database_software_images", database_software_images)
|
38
|
+
if db_system_id and not isinstance(db_system_id, str):
|
39
|
+
raise TypeError("Expected argument 'db_system_id' to be a str")
|
40
|
+
pulumi.set(__self__, "db_system_id", db_system_id)
|
38
41
|
if display_name and not isinstance(display_name, str):
|
39
42
|
raise TypeError("Expected argument 'display_name' to be a str")
|
40
43
|
pulumi.set(__self__, "display_name", display_name)
|
@@ -73,6 +76,11 @@ class GetDatabaseSoftwareImagesResult:
|
|
73
76
|
"""
|
74
77
|
return pulumi.get(self, "database_software_images")
|
75
78
|
|
79
|
+
@property
|
80
|
+
@pulumi.getter(name="dbSystemId")
|
81
|
+
def db_system_id(self) -> Optional[str]:
|
82
|
+
return pulumi.get(self, "db_system_id")
|
83
|
+
|
76
84
|
@property
|
77
85
|
@pulumi.getter(name="displayName")
|
78
86
|
def display_name(self) -> Optional[str]:
|
@@ -135,6 +143,7 @@ class AwaitableGetDatabaseSoftwareImagesResult(GetDatabaseSoftwareImagesResult):
|
|
135
143
|
return GetDatabaseSoftwareImagesResult(
|
136
144
|
compartment_id=self.compartment_id,
|
137
145
|
database_software_images=self.database_software_images,
|
146
|
+
db_system_id=self.db_system_id,
|
138
147
|
display_name=self.display_name,
|
139
148
|
filters=self.filters,
|
140
149
|
id=self.id,
|
@@ -145,6 +154,7 @@ class AwaitableGetDatabaseSoftwareImagesResult(GetDatabaseSoftwareImagesResult):
|
|
145
154
|
|
146
155
|
|
147
156
|
def get_database_software_images(compartment_id: Optional[str] = None,
|
157
|
+
db_system_id: Optional[str] = None,
|
148
158
|
display_name: Optional[str] = None,
|
149
159
|
filters: Optional[Sequence[Union['GetDatabaseSoftwareImagesFilterArgs', 'GetDatabaseSoftwareImagesFilterArgsDict']]] = None,
|
150
160
|
image_shape_family: Optional[str] = None,
|
@@ -164,6 +174,7 @@ def get_database_software_images(compartment_id: Optional[str] = None,
|
|
164
174
|
import pulumi_oci as oci
|
165
175
|
|
166
176
|
test_database_software_images = oci.Database.get_database_software_images(compartment_id=compartment_id,
|
177
|
+
db_system_id=test_db_system["id"],
|
167
178
|
display_name=database_software_image_display_name,
|
168
179
|
image_shape_family=database_software_image_image_shape_family,
|
169
180
|
image_type=database_software_image_image_type,
|
@@ -173,6 +184,7 @@ def get_database_software_images(compartment_id: Optional[str] = None,
|
|
173
184
|
|
174
185
|
|
175
186
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
187
|
+
:param str db_system_id: The DB system [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). If provided, filters the results to the set of database versions which are supported for the DB system.
|
176
188
|
:param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
177
189
|
:param str image_shape_family: A filter to return only resources that match the given image shape family exactly.
|
178
190
|
:param str image_type: A filter to return only resources that match the given image type exactly.
|
@@ -181,6 +193,7 @@ def get_database_software_images(compartment_id: Optional[str] = None,
|
|
181
193
|
"""
|
182
194
|
__args__ = dict()
|
183
195
|
__args__['compartmentId'] = compartment_id
|
196
|
+
__args__['dbSystemId'] = db_system_id
|
184
197
|
__args__['displayName'] = display_name
|
185
198
|
__args__['filters'] = filters
|
186
199
|
__args__['imageShapeFamily'] = image_shape_family
|
@@ -193,6 +206,7 @@ def get_database_software_images(compartment_id: Optional[str] = None,
|
|
193
206
|
return AwaitableGetDatabaseSoftwareImagesResult(
|
194
207
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
195
208
|
database_software_images=pulumi.get(__ret__, 'database_software_images'),
|
209
|
+
db_system_id=pulumi.get(__ret__, 'db_system_id'),
|
196
210
|
display_name=pulumi.get(__ret__, 'display_name'),
|
197
211
|
filters=pulumi.get(__ret__, 'filters'),
|
198
212
|
id=pulumi.get(__ret__, 'id'),
|
@@ -201,6 +215,7 @@ def get_database_software_images(compartment_id: Optional[str] = None,
|
|
201
215
|
is_upgrade_supported=pulumi.get(__ret__, 'is_upgrade_supported'),
|
202
216
|
state=pulumi.get(__ret__, 'state'))
|
203
217
|
def get_database_software_images_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
218
|
+
db_system_id: Optional[pulumi.Input[Optional[str]]] = None,
|
204
219
|
display_name: Optional[pulumi.Input[Optional[str]]] = None,
|
205
220
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetDatabaseSoftwareImagesFilterArgs', 'GetDatabaseSoftwareImagesFilterArgsDict']]]]] = None,
|
206
221
|
image_shape_family: Optional[pulumi.Input[Optional[str]]] = None,
|
@@ -220,6 +235,7 @@ def get_database_software_images_output(compartment_id: Optional[pulumi.Input[st
|
|
220
235
|
import pulumi_oci as oci
|
221
236
|
|
222
237
|
test_database_software_images = oci.Database.get_database_software_images(compartment_id=compartment_id,
|
238
|
+
db_system_id=test_db_system["id"],
|
223
239
|
display_name=database_software_image_display_name,
|
224
240
|
image_shape_family=database_software_image_image_shape_family,
|
225
241
|
image_type=database_software_image_image_type,
|
@@ -229,6 +245,7 @@ def get_database_software_images_output(compartment_id: Optional[pulumi.Input[st
|
|
229
245
|
|
230
246
|
|
231
247
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
248
|
+
:param str db_system_id: The DB system [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). If provided, filters the results to the set of database versions which are supported for the DB system.
|
232
249
|
:param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
233
250
|
:param str image_shape_family: A filter to return only resources that match the given image shape family exactly.
|
234
251
|
:param str image_type: A filter to return only resources that match the given image type exactly.
|
@@ -237,6 +254,7 @@ def get_database_software_images_output(compartment_id: Optional[pulumi.Input[st
|
|
237
254
|
"""
|
238
255
|
__args__ = dict()
|
239
256
|
__args__['compartmentId'] = compartment_id
|
257
|
+
__args__['dbSystemId'] = db_system_id
|
240
258
|
__args__['displayName'] = display_name
|
241
259
|
__args__['filters'] = filters
|
242
260
|
__args__['imageShapeFamily'] = image_shape_family
|
@@ -248,6 +266,7 @@ def get_database_software_images_output(compartment_id: Optional[pulumi.Input[st
|
|
248
266
|
return __ret__.apply(lambda __response__: GetDatabaseSoftwareImagesResult(
|
249
267
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
250
268
|
database_software_images=pulumi.get(__response__, 'database_software_images'),
|
269
|
+
db_system_id=pulumi.get(__response__, 'db_system_id'),
|
251
270
|
display_name=pulumi.get(__response__, 'display_name'),
|
252
271
|
filters=pulumi.get(__response__, 'filters'),
|
253
272
|
id=pulumi.get(__response__, 'id'),
|
@@ -26,13 +26,16 @@ class GetDbNodeResult:
|
|
26
26
|
"""
|
27
27
|
A collection of values returned by getDbNode.
|
28
28
|
"""
|
29
|
-
def __init__(__self__, additional_details=None, backup_ip_id=None, backup_vnic2id=None, backup_vnic_id=None, cpu_core_count=None, db_node_id=None, db_node_storage_size_in_gbs=None, db_server_id=None, db_system_id=None, defined_tags=None, fault_domain=None, freeform_tags=None, host_ip_id=None, hostname=None, id=None, lifecycle_details=None, maintenance_type=None, memory_size_in_gbs=None, software_storage_size_in_gb=None, state=None, time_created=None, time_maintenance_window_end=None, time_maintenance_window_start=None, total_cpu_core_count=None, vnic2id=None, vnic_id=None):
|
29
|
+
def __init__(__self__, additional_details=None, backup_ip_id=None, backup_ipv6id=None, backup_vnic2id=None, backup_vnic_id=None, cpu_core_count=None, db_node_id=None, db_node_storage_size_in_gbs=None, db_server_id=None, db_system_id=None, defined_tags=None, fault_domain=None, freeform_tags=None, host_ip_id=None, host_ipv6id=None, hostname=None, id=None, lifecycle_details=None, maintenance_type=None, memory_size_in_gbs=None, software_storage_size_in_gb=None, state=None, time_created=None, time_maintenance_window_end=None, time_maintenance_window_start=None, total_cpu_core_count=None, vnic2id=None, vnic_id=None):
|
30
30
|
if additional_details and not isinstance(additional_details, str):
|
31
31
|
raise TypeError("Expected argument 'additional_details' to be a str")
|
32
32
|
pulumi.set(__self__, "additional_details", additional_details)
|
33
33
|
if backup_ip_id and not isinstance(backup_ip_id, str):
|
34
34
|
raise TypeError("Expected argument 'backup_ip_id' to be a str")
|
35
35
|
pulumi.set(__self__, "backup_ip_id", backup_ip_id)
|
36
|
+
if backup_ipv6id and not isinstance(backup_ipv6id, str):
|
37
|
+
raise TypeError("Expected argument 'backup_ipv6id' to be a str")
|
38
|
+
pulumi.set(__self__, "backup_ipv6id", backup_ipv6id)
|
36
39
|
if backup_vnic2id and not isinstance(backup_vnic2id, str):
|
37
40
|
raise TypeError("Expected argument 'backup_vnic2id' to be a str")
|
38
41
|
pulumi.set(__self__, "backup_vnic2id", backup_vnic2id)
|
@@ -66,6 +69,9 @@ class GetDbNodeResult:
|
|
66
69
|
if host_ip_id and not isinstance(host_ip_id, str):
|
67
70
|
raise TypeError("Expected argument 'host_ip_id' to be a str")
|
68
71
|
pulumi.set(__self__, "host_ip_id", host_ip_id)
|
72
|
+
if host_ipv6id and not isinstance(host_ipv6id, str):
|
73
|
+
raise TypeError("Expected argument 'host_ipv6id' to be a str")
|
74
|
+
pulumi.set(__self__, "host_ipv6id", host_ipv6id)
|
69
75
|
if hostname and not isinstance(hostname, str):
|
70
76
|
raise TypeError("Expected argument 'hostname' to be a str")
|
71
77
|
pulumi.set(__self__, "hostname", hostname)
|
@@ -118,10 +124,18 @@ class GetDbNodeResult:
|
|
118
124
|
@pulumi.getter(name="backupIpId")
|
119
125
|
def backup_ip_id(self) -> str:
|
120
126
|
"""
|
121
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup
|
127
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IPv4 address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IPv4 address needed to make a database connection.
|
122
128
|
"""
|
123
129
|
return pulumi.get(self, "backup_ip_id")
|
124
130
|
|
131
|
+
@property
|
132
|
+
@pulumi.getter(name="backupIpv6id")
|
133
|
+
def backup_ipv6id(self) -> str:
|
134
|
+
"""
|
135
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IPv6 address associated with the database node. Use this OCID with the [GetIpv6](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6) API to get the IPv6 address needed to make a database connection.
|
136
|
+
"""
|
137
|
+
return pulumi.get(self, "backup_ipv6id")
|
138
|
+
|
125
139
|
@property
|
126
140
|
@pulumi.getter(name="backupVnic2id")
|
127
141
|
def backup_vnic2id(self) -> str:
|
@@ -203,11 +217,18 @@ class GetDbNodeResult:
|
|
203
217
|
@pulumi.getter(name="hostIpId")
|
204
218
|
def host_ip_id(self) -> str:
|
205
219
|
"""
|
206
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host
|
207
|
-
**Note:** Applies only to Exadata Cloud Service.
|
220
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IPv4 address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IPv4 address needed to make a database connection.
|
208
221
|
"""
|
209
222
|
return pulumi.get(self, "host_ip_id")
|
210
223
|
|
224
|
+
@property
|
225
|
+
@pulumi.getter(name="hostIpv6id")
|
226
|
+
def host_ipv6id(self) -> str:
|
227
|
+
"""
|
228
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IPv6 address associated with the database node. Use this OCID with the [GetIpv6](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6) API to get the IPv6 address needed to make a database connection.
|
229
|
+
"""
|
230
|
+
return pulumi.get(self, "host_ipv6id")
|
231
|
+
|
211
232
|
@property
|
212
233
|
@pulumi.getter
|
213
234
|
def hostname(self) -> str:
|
@@ -321,6 +342,7 @@ class AwaitableGetDbNodeResult(GetDbNodeResult):
|
|
321
342
|
return GetDbNodeResult(
|
322
343
|
additional_details=self.additional_details,
|
323
344
|
backup_ip_id=self.backup_ip_id,
|
345
|
+
backup_ipv6id=self.backup_ipv6id,
|
324
346
|
backup_vnic2id=self.backup_vnic2id,
|
325
347
|
backup_vnic_id=self.backup_vnic_id,
|
326
348
|
cpu_core_count=self.cpu_core_count,
|
@@ -332,6 +354,7 @@ class AwaitableGetDbNodeResult(GetDbNodeResult):
|
|
332
354
|
fault_domain=self.fault_domain,
|
333
355
|
freeform_tags=self.freeform_tags,
|
334
356
|
host_ip_id=self.host_ip_id,
|
357
|
+
host_ipv6id=self.host_ipv6id,
|
335
358
|
hostname=self.hostname,
|
336
359
|
id=self.id,
|
337
360
|
lifecycle_details=self.lifecycle_details,
|
@@ -374,6 +397,7 @@ def get_db_node(db_node_id: Optional[str] = None,
|
|
374
397
|
return AwaitableGetDbNodeResult(
|
375
398
|
additional_details=pulumi.get(__ret__, 'additional_details'),
|
376
399
|
backup_ip_id=pulumi.get(__ret__, 'backup_ip_id'),
|
400
|
+
backup_ipv6id=pulumi.get(__ret__, 'backup_ipv6id'),
|
377
401
|
backup_vnic2id=pulumi.get(__ret__, 'backup_vnic2id'),
|
378
402
|
backup_vnic_id=pulumi.get(__ret__, 'backup_vnic_id'),
|
379
403
|
cpu_core_count=pulumi.get(__ret__, 'cpu_core_count'),
|
@@ -385,6 +409,7 @@ def get_db_node(db_node_id: Optional[str] = None,
|
|
385
409
|
fault_domain=pulumi.get(__ret__, 'fault_domain'),
|
386
410
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
387
411
|
host_ip_id=pulumi.get(__ret__, 'host_ip_id'),
|
412
|
+
host_ipv6id=pulumi.get(__ret__, 'host_ipv6id'),
|
388
413
|
hostname=pulumi.get(__ret__, 'hostname'),
|
389
414
|
id=pulumi.get(__ret__, 'id'),
|
390
415
|
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
@@ -424,6 +449,7 @@ def get_db_node_output(db_node_id: Optional[pulumi.Input[str]] = None,
|
|
424
449
|
return __ret__.apply(lambda __response__: GetDbNodeResult(
|
425
450
|
additional_details=pulumi.get(__response__, 'additional_details'),
|
426
451
|
backup_ip_id=pulumi.get(__response__, 'backup_ip_id'),
|
452
|
+
backup_ipv6id=pulumi.get(__response__, 'backup_ipv6id'),
|
427
453
|
backup_vnic2id=pulumi.get(__response__, 'backup_vnic2id'),
|
428
454
|
backup_vnic_id=pulumi.get(__response__, 'backup_vnic_id'),
|
429
455
|
cpu_core_count=pulumi.get(__response__, 'cpu_core_count'),
|
@@ -435,6 +461,7 @@ def get_db_node_output(db_node_id: Optional[pulumi.Input[str]] = None,
|
|
435
461
|
fault_domain=pulumi.get(__response__, 'fault_domain'),
|
436
462
|
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
437
463
|
host_ip_id=pulumi.get(__response__, 'host_ip_id'),
|
464
|
+
host_ipv6id=pulumi.get(__response__, 'host_ipv6id'),
|
438
465
|
hostname=pulumi.get(__response__, 'hostname'),
|
439
466
|
id=pulumi.get(__response__, 'id'),
|
440
467
|
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
@@ -27,7 +27,7 @@ class GetDbServerResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getDbServer.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, autonomous_virtual_machine_ids=None, autonomous_vm_cluster_ids=None, compartment_id=None, cpu_core_count=None, db_node_ids=None, db_node_storage_size_in_gbs=None, db_server_id=None, db_server_patching_details=None, defined_tags=None, display_name=None, exadata_infrastructure_id=None, freeform_tags=None, id=None, lifecycle_details=None, max_cpu_count=None, max_db_node_storage_in_gbs=None, max_memory_in_gbs=None, memory_size_in_gbs=None, shape=None, state=None, time_created=None, vm_cluster_ids=None):
|
30
|
+
def __init__(__self__, autonomous_virtual_machine_ids=None, autonomous_vm_cluster_ids=None, compartment_id=None, compute_model=None, cpu_core_count=None, db_node_ids=None, db_node_storage_size_in_gbs=None, db_server_id=None, db_server_patching_details=None, defined_tags=None, display_name=None, exadata_infrastructure_id=None, freeform_tags=None, id=None, lifecycle_details=None, max_cpu_count=None, max_db_node_storage_in_gbs=None, max_memory_in_gbs=None, memory_size_in_gbs=None, shape=None, state=None, time_created=None, vm_cluster_ids=None):
|
31
31
|
if autonomous_virtual_machine_ids and not isinstance(autonomous_virtual_machine_ids, list):
|
32
32
|
raise TypeError("Expected argument 'autonomous_virtual_machine_ids' to be a list")
|
33
33
|
pulumi.set(__self__, "autonomous_virtual_machine_ids", autonomous_virtual_machine_ids)
|
@@ -37,6 +37,9 @@ class GetDbServerResult:
|
|
37
37
|
if compartment_id and not isinstance(compartment_id, str):
|
38
38
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
39
39
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
40
|
+
if compute_model and not isinstance(compute_model, str):
|
41
|
+
raise TypeError("Expected argument 'compute_model' to be a str")
|
42
|
+
pulumi.set(__self__, "compute_model", compute_model)
|
40
43
|
if cpu_core_count and not isinstance(cpu_core_count, int):
|
41
44
|
raise TypeError("Expected argument 'cpu_core_count' to be a int")
|
42
45
|
pulumi.set(__self__, "cpu_core_count", cpu_core_count)
|
@@ -119,6 +122,14 @@ class GetDbServerResult:
|
|
119
122
|
"""
|
120
123
|
return pulumi.get(self, "compartment_id")
|
121
124
|
|
125
|
+
@property
|
126
|
+
@pulumi.getter(name="computeModel")
|
127
|
+
def compute_model(self) -> str:
|
128
|
+
"""
|
129
|
+
The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
|
130
|
+
"""
|
131
|
+
return pulumi.get(self, "compute_model")
|
132
|
+
|
122
133
|
@property
|
123
134
|
@pulumi.getter(name="cpuCoreCount")
|
124
135
|
def cpu_core_count(self) -> int:
|
@@ -278,6 +289,7 @@ class AwaitableGetDbServerResult(GetDbServerResult):
|
|
278
289
|
autonomous_virtual_machine_ids=self.autonomous_virtual_machine_ids,
|
279
290
|
autonomous_vm_cluster_ids=self.autonomous_vm_cluster_ids,
|
280
291
|
compartment_id=self.compartment_id,
|
292
|
+
compute_model=self.compute_model,
|
281
293
|
cpu_core_count=self.cpu_core_count,
|
282
294
|
db_node_ids=self.db_node_ids,
|
283
295
|
db_node_storage_size_in_gbs=self.db_node_storage_size_in_gbs,
|
@@ -331,6 +343,7 @@ def get_db_server(db_server_id: Optional[str] = None,
|
|
331
343
|
autonomous_virtual_machine_ids=pulumi.get(__ret__, 'autonomous_virtual_machine_ids'),
|
332
344
|
autonomous_vm_cluster_ids=pulumi.get(__ret__, 'autonomous_vm_cluster_ids'),
|
333
345
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
346
|
+
compute_model=pulumi.get(__ret__, 'compute_model'),
|
334
347
|
cpu_core_count=pulumi.get(__ret__, 'cpu_core_count'),
|
335
348
|
db_node_ids=pulumi.get(__ret__, 'db_node_ids'),
|
336
349
|
db_node_storage_size_in_gbs=pulumi.get(__ret__, 'db_node_storage_size_in_gbs'),
|
@@ -381,6 +394,7 @@ def get_db_server_output(db_server_id: Optional[pulumi.Input[str]] = None,
|
|
381
394
|
autonomous_virtual_machine_ids=pulumi.get(__response__, 'autonomous_virtual_machine_ids'),
|
382
395
|
autonomous_vm_cluster_ids=pulumi.get(__response__, 'autonomous_vm_cluster_ids'),
|
383
396
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
397
|
+
compute_model=pulumi.get(__response__, 'compute_model'),
|
384
398
|
cpu_core_count=pulumi.get(__response__, 'cpu_core_count'),
|
385
399
|
db_node_ids=pulumi.get(__response__, 'db_node_ids'),
|
386
400
|
db_node_storage_size_in_gbs=pulumi.get(__response__, 'db_node_storage_size_in_gbs'),
|
@@ -27,7 +27,7 @@ class GetExadataInfrastructureResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getExadataInfrastructure.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, activated_storage_count=None, activation_file=None, additional_compute_count=None, additional_compute_system_model=None, additional_storage_count=None, admin_network_cidr=None, availability_domain=None, cloud_control_plane_server1=None, cloud_control_plane_server2=None, compartment_id=None, compute_count=None, contacts=None, corporate_proxy=None, cpus_enabled=None, create_async=None, csi_number=None, data_storage_size_in_tbs=None, db_node_storage_size_in_gbs=None, db_server_version=None, defined_file_system_configurations=None, defined_tags=None, display_name=None, dns_servers=None, exadata_infrastructure_id=None, freeform_tags=None, gateway=None, id=None, infini_band_network_cidr=None, is_cps_offline_report_enabled=None, is_multi_rack_deployment=None, is_scheduling_policy_associated=None, lifecycle_details=None, maintenance_slo_status=None, maintenance_windows=None, max_cpu_count=None, max_data_storage_in_tbs=None, max_db_node_storage_in_gbs=None, max_memory_in_gbs=None, memory_size_in_gbs=None, monthly_db_server_version=None, multi_rack_configuration_file=None, netmask=None, network_bonding_mode_details=None, ntp_servers=None, rack_serial_number=None, shape=None, state=None, storage_count=None, storage_server_version=None, time_created=None, time_zone=None):
|
30
|
+
def __init__(__self__, activated_storage_count=None, activation_file=None, additional_compute_count=None, additional_compute_system_model=None, additional_storage_count=None, admin_network_cidr=None, availability_domain=None, cloud_control_plane_server1=None, cloud_control_plane_server2=None, compartment_id=None, compute_count=None, compute_model=None, contacts=None, corporate_proxy=None, cpus_enabled=None, create_async=None, csi_number=None, data_storage_size_in_tbs=None, database_server_type=None, db_node_storage_size_in_gbs=None, db_server_version=None, defined_file_system_configurations=None, defined_tags=None, display_name=None, dns_servers=None, exadata_infrastructure_id=None, exascale_configs=None, freeform_tags=None, gateway=None, id=None, infini_band_network_cidr=None, is_cps_offline_report_enabled=None, is_multi_rack_deployment=None, is_scheduling_policy_associated=None, lifecycle_details=None, maintenance_slo_status=None, maintenance_windows=None, max_cpu_count=None, max_data_storage_in_tbs=None, max_db_node_storage_in_gbs=None, max_memory_in_gbs=None, memory_size_in_gbs=None, monthly_db_server_version=None, multi_rack_configuration_file=None, netmask=None, network_bonding_mode_details=None, ntp_servers=None, rack_serial_number=None, shape=None, state=None, storage_count=None, storage_server_type=None, storage_server_version=None, time_created=None, time_zone=None):
|
31
31
|
if activated_storage_count and not isinstance(activated_storage_count, int):
|
32
32
|
raise TypeError("Expected argument 'activated_storage_count' to be a int")
|
33
33
|
pulumi.set(__self__, "activated_storage_count", activated_storage_count)
|
@@ -61,6 +61,9 @@ class GetExadataInfrastructureResult:
|
|
61
61
|
if compute_count and not isinstance(compute_count, int):
|
62
62
|
raise TypeError("Expected argument 'compute_count' to be a int")
|
63
63
|
pulumi.set(__self__, "compute_count", compute_count)
|
64
|
+
if compute_model and not isinstance(compute_model, str):
|
65
|
+
raise TypeError("Expected argument 'compute_model' to be a str")
|
66
|
+
pulumi.set(__self__, "compute_model", compute_model)
|
64
67
|
if contacts and not isinstance(contacts, list):
|
65
68
|
raise TypeError("Expected argument 'contacts' to be a list")
|
66
69
|
pulumi.set(__self__, "contacts", contacts)
|
@@ -79,6 +82,9 @@ class GetExadataInfrastructureResult:
|
|
79
82
|
if data_storage_size_in_tbs and not isinstance(data_storage_size_in_tbs, float):
|
80
83
|
raise TypeError("Expected argument 'data_storage_size_in_tbs' to be a float")
|
81
84
|
pulumi.set(__self__, "data_storage_size_in_tbs", data_storage_size_in_tbs)
|
85
|
+
if database_server_type and not isinstance(database_server_type, str):
|
86
|
+
raise TypeError("Expected argument 'database_server_type' to be a str")
|
87
|
+
pulumi.set(__self__, "database_server_type", database_server_type)
|
82
88
|
if db_node_storage_size_in_gbs and not isinstance(db_node_storage_size_in_gbs, int):
|
83
89
|
raise TypeError("Expected argument 'db_node_storage_size_in_gbs' to be a int")
|
84
90
|
pulumi.set(__self__, "db_node_storage_size_in_gbs", db_node_storage_size_in_gbs)
|
@@ -100,6 +106,9 @@ class GetExadataInfrastructureResult:
|
|
100
106
|
if exadata_infrastructure_id and not isinstance(exadata_infrastructure_id, str):
|
101
107
|
raise TypeError("Expected argument 'exadata_infrastructure_id' to be a str")
|
102
108
|
pulumi.set(__self__, "exadata_infrastructure_id", exadata_infrastructure_id)
|
109
|
+
if exascale_configs and not isinstance(exascale_configs, list):
|
110
|
+
raise TypeError("Expected argument 'exascale_configs' to be a list")
|
111
|
+
pulumi.set(__self__, "exascale_configs", exascale_configs)
|
103
112
|
if freeform_tags and not isinstance(freeform_tags, dict):
|
104
113
|
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
105
114
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
@@ -172,6 +181,9 @@ class GetExadataInfrastructureResult:
|
|
172
181
|
if storage_count and not isinstance(storage_count, int):
|
173
182
|
raise TypeError("Expected argument 'storage_count' to be a int")
|
174
183
|
pulumi.set(__self__, "storage_count", storage_count)
|
184
|
+
if storage_server_type and not isinstance(storage_server_type, str):
|
185
|
+
raise TypeError("Expected argument 'storage_server_type' to be a str")
|
186
|
+
pulumi.set(__self__, "storage_server_type", storage_server_type)
|
175
187
|
if storage_server_version and not isinstance(storage_server_version, str):
|
176
188
|
raise TypeError("Expected argument 'storage_server_version' to be a str")
|
177
189
|
pulumi.set(__self__, "storage_server_version", storage_server_version)
|
@@ -267,6 +279,14 @@ class GetExadataInfrastructureResult:
|
|
267
279
|
"""
|
268
280
|
return pulumi.get(self, "compute_count")
|
269
281
|
|
282
|
+
@property
|
283
|
+
@pulumi.getter(name="computeModel")
|
284
|
+
def compute_model(self) -> str:
|
285
|
+
"""
|
286
|
+
The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
|
287
|
+
"""
|
288
|
+
return pulumi.get(self, "compute_model")
|
289
|
+
|
270
290
|
@property
|
271
291
|
@pulumi.getter
|
272
292
|
def contacts(self) -> Sequence['outputs.GetExadataInfrastructureContactResult']:
|
@@ -312,6 +332,14 @@ class GetExadataInfrastructureResult:
|
|
312
332
|
"""
|
313
333
|
return pulumi.get(self, "data_storage_size_in_tbs")
|
314
334
|
|
335
|
+
@property
|
336
|
+
@pulumi.getter(name="databaseServerType")
|
337
|
+
def database_server_type(self) -> str:
|
338
|
+
"""
|
339
|
+
The database server type of the Exadata infrastructure.
|
340
|
+
"""
|
341
|
+
return pulumi.get(self, "database_server_type")
|
342
|
+
|
315
343
|
@property
|
316
344
|
@pulumi.getter(name="dbNodeStorageSizeInGbs")
|
317
345
|
def db_node_storage_size_in_gbs(self) -> int:
|
@@ -365,6 +393,14 @@ class GetExadataInfrastructureResult:
|
|
365
393
|
def exadata_infrastructure_id(self) -> str:
|
366
394
|
return pulumi.get(self, "exadata_infrastructure_id")
|
367
395
|
|
396
|
+
@property
|
397
|
+
@pulumi.getter(name="exascaleConfigs")
|
398
|
+
def exascale_configs(self) -> Sequence['outputs.GetExadataInfrastructureExascaleConfigResult']:
|
399
|
+
"""
|
400
|
+
The exascale config response details for the Exadata Cloud@Customer infrastructure or cloud Exadata infrastructure . Applies to both Exadata Cloud@Customer instances and Exadata Cloud Service instances.
|
401
|
+
"""
|
402
|
+
return pulumi.get(self, "exascale_configs")
|
403
|
+
|
368
404
|
@property
|
369
405
|
@pulumi.getter(name="freeformTags")
|
370
406
|
def freeform_tags(self) -> Mapping[str, str]:
|
@@ -557,6 +593,14 @@ class GetExadataInfrastructureResult:
|
|
557
593
|
"""
|
558
594
|
return pulumi.get(self, "storage_count")
|
559
595
|
|
596
|
+
@property
|
597
|
+
@pulumi.getter(name="storageServerType")
|
598
|
+
def storage_server_type(self) -> str:
|
599
|
+
"""
|
600
|
+
The storage server type of the Exadata infrastructure.
|
601
|
+
"""
|
602
|
+
return pulumi.get(self, "storage_server_type")
|
603
|
+
|
560
604
|
@property
|
561
605
|
@pulumi.getter(name="storageServerVersion")
|
562
606
|
def storage_server_version(self) -> str:
|
@@ -599,12 +643,14 @@ class AwaitableGetExadataInfrastructureResult(GetExadataInfrastructureResult):
|
|
599
643
|
cloud_control_plane_server2=self.cloud_control_plane_server2,
|
600
644
|
compartment_id=self.compartment_id,
|
601
645
|
compute_count=self.compute_count,
|
646
|
+
compute_model=self.compute_model,
|
602
647
|
contacts=self.contacts,
|
603
648
|
corporate_proxy=self.corporate_proxy,
|
604
649
|
cpus_enabled=self.cpus_enabled,
|
605
650
|
create_async=self.create_async,
|
606
651
|
csi_number=self.csi_number,
|
607
652
|
data_storage_size_in_tbs=self.data_storage_size_in_tbs,
|
653
|
+
database_server_type=self.database_server_type,
|
608
654
|
db_node_storage_size_in_gbs=self.db_node_storage_size_in_gbs,
|
609
655
|
db_server_version=self.db_server_version,
|
610
656
|
defined_file_system_configurations=self.defined_file_system_configurations,
|
@@ -612,6 +658,7 @@ class AwaitableGetExadataInfrastructureResult(GetExadataInfrastructureResult):
|
|
612
658
|
display_name=self.display_name,
|
613
659
|
dns_servers=self.dns_servers,
|
614
660
|
exadata_infrastructure_id=self.exadata_infrastructure_id,
|
661
|
+
exascale_configs=self.exascale_configs,
|
615
662
|
freeform_tags=self.freeform_tags,
|
616
663
|
gateway=self.gateway,
|
617
664
|
id=self.id,
|
@@ -636,6 +683,7 @@ class AwaitableGetExadataInfrastructureResult(GetExadataInfrastructureResult):
|
|
636
683
|
shape=self.shape,
|
637
684
|
state=self.state,
|
638
685
|
storage_count=self.storage_count,
|
686
|
+
storage_server_type=self.storage_server_type,
|
639
687
|
storage_server_version=self.storage_server_version,
|
640
688
|
time_created=self.time_created,
|
641
689
|
time_zone=self.time_zone)
|
@@ -669,12 +717,14 @@ def get_exadata_infrastructure(exadata_infrastructure_id: Optional[str] = None,
|
|
669
717
|
cloud_control_plane_server2=pulumi.get(__ret__, 'cloud_control_plane_server2'),
|
670
718
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
671
719
|
compute_count=pulumi.get(__ret__, 'compute_count'),
|
720
|
+
compute_model=pulumi.get(__ret__, 'compute_model'),
|
672
721
|
contacts=pulumi.get(__ret__, 'contacts'),
|
673
722
|
corporate_proxy=pulumi.get(__ret__, 'corporate_proxy'),
|
674
723
|
cpus_enabled=pulumi.get(__ret__, 'cpus_enabled'),
|
675
724
|
create_async=pulumi.get(__ret__, 'create_async'),
|
676
725
|
csi_number=pulumi.get(__ret__, 'csi_number'),
|
677
726
|
data_storage_size_in_tbs=pulumi.get(__ret__, 'data_storage_size_in_tbs'),
|
727
|
+
database_server_type=pulumi.get(__ret__, 'database_server_type'),
|
678
728
|
db_node_storage_size_in_gbs=pulumi.get(__ret__, 'db_node_storage_size_in_gbs'),
|
679
729
|
db_server_version=pulumi.get(__ret__, 'db_server_version'),
|
680
730
|
defined_file_system_configurations=pulumi.get(__ret__, 'defined_file_system_configurations'),
|
@@ -682,6 +732,7 @@ def get_exadata_infrastructure(exadata_infrastructure_id: Optional[str] = None,
|
|
682
732
|
display_name=pulumi.get(__ret__, 'display_name'),
|
683
733
|
dns_servers=pulumi.get(__ret__, 'dns_servers'),
|
684
734
|
exadata_infrastructure_id=pulumi.get(__ret__, 'exadata_infrastructure_id'),
|
735
|
+
exascale_configs=pulumi.get(__ret__, 'exascale_configs'),
|
685
736
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
686
737
|
gateway=pulumi.get(__ret__, 'gateway'),
|
687
738
|
id=pulumi.get(__ret__, 'id'),
|
@@ -706,6 +757,7 @@ def get_exadata_infrastructure(exadata_infrastructure_id: Optional[str] = None,
|
|
706
757
|
shape=pulumi.get(__ret__, 'shape'),
|
707
758
|
state=pulumi.get(__ret__, 'state'),
|
708
759
|
storage_count=pulumi.get(__ret__, 'storage_count'),
|
760
|
+
storage_server_type=pulumi.get(__ret__, 'storage_server_type'),
|
709
761
|
storage_server_version=pulumi.get(__ret__, 'storage_server_version'),
|
710
762
|
time_created=pulumi.get(__ret__, 'time_created'),
|
711
763
|
time_zone=pulumi.get(__ret__, 'time_zone'))
|
@@ -736,12 +788,14 @@ def get_exadata_infrastructure_output(exadata_infrastructure_id: Optional[pulumi
|
|
736
788
|
cloud_control_plane_server2=pulumi.get(__response__, 'cloud_control_plane_server2'),
|
737
789
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
738
790
|
compute_count=pulumi.get(__response__, 'compute_count'),
|
791
|
+
compute_model=pulumi.get(__response__, 'compute_model'),
|
739
792
|
contacts=pulumi.get(__response__, 'contacts'),
|
740
793
|
corporate_proxy=pulumi.get(__response__, 'corporate_proxy'),
|
741
794
|
cpus_enabled=pulumi.get(__response__, 'cpus_enabled'),
|
742
795
|
create_async=pulumi.get(__response__, 'create_async'),
|
743
796
|
csi_number=pulumi.get(__response__, 'csi_number'),
|
744
797
|
data_storage_size_in_tbs=pulumi.get(__response__, 'data_storage_size_in_tbs'),
|
798
|
+
database_server_type=pulumi.get(__response__, 'database_server_type'),
|
745
799
|
db_node_storage_size_in_gbs=pulumi.get(__response__, 'db_node_storage_size_in_gbs'),
|
746
800
|
db_server_version=pulumi.get(__response__, 'db_server_version'),
|
747
801
|
defined_file_system_configurations=pulumi.get(__response__, 'defined_file_system_configurations'),
|
@@ -749,6 +803,7 @@ def get_exadata_infrastructure_output(exadata_infrastructure_id: Optional[pulumi
|
|
749
803
|
display_name=pulumi.get(__response__, 'display_name'),
|
750
804
|
dns_servers=pulumi.get(__response__, 'dns_servers'),
|
751
805
|
exadata_infrastructure_id=pulumi.get(__response__, 'exadata_infrastructure_id'),
|
806
|
+
exascale_configs=pulumi.get(__response__, 'exascale_configs'),
|
752
807
|
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
753
808
|
gateway=pulumi.get(__response__, 'gateway'),
|
754
809
|
id=pulumi.get(__response__, 'id'),
|
@@ -773,6 +828,7 @@ def get_exadata_infrastructure_output(exadata_infrastructure_id: Optional[pulumi
|
|
773
828
|
shape=pulumi.get(__response__, 'shape'),
|
774
829
|
state=pulumi.get(__response__, 'state'),
|
775
830
|
storage_count=pulumi.get(__response__, 'storage_count'),
|
831
|
+
storage_server_type=pulumi.get(__response__, 'storage_server_type'),
|
776
832
|
storage_server_version=pulumi.get(__response__, 'storage_server_version'),
|
777
833
|
time_created=pulumi.get(__response__, 'time_created'),
|
778
834
|
time_zone=pulumi.get(__response__, 'time_zone')))
|