pulumi-oci 2.26.0a1741847591__py3-none-any.whl → 2.27.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +211 -0
- pulumi_oci/containerengine/_inputs.py +43 -44
- pulumi_oci/containerengine/cluster.py +2 -0
- pulumi_oci/containerengine/container_instance.py +2 -4
- pulumi_oci/containerengine/outputs.py +128 -43
- pulumi_oci/containerinstances/outputs.py +0 -14
- pulumi_oci/core/__init__.py +7 -0
- pulumi_oci/core/_inputs.py +168 -33
- pulumi_oci/core/compute_gpu_memory_cluster.py +706 -0
- pulumi_oci/core/compute_gpu_memory_fabric.py +667 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster.py +281 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster_instances.py +144 -0
- pulumi_oci/core/get_compute_gpu_memory_clusters.py +232 -0
- pulumi_oci/core/get_compute_gpu_memory_fabric.py +309 -0
- pulumi_oci/core/get_compute_gpu_memory_fabrics.py +289 -0
- pulumi_oci/core/outputs.py +595 -21
- pulumi_oci/database/__init__.py +3 -0
- pulumi_oci/database/_inputs.py +4116 -1225
- pulumi_oci/database/application_vip.py +59 -10
- pulumi_oci/database/autonomous_container_database.py +305 -52
- pulumi_oci/database/autonomous_container_database_add_standby.py +2183 -0
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +80 -40
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +322 -0
- pulumi_oci/database/autonomous_database.py +7 -28
- pulumi_oci/database/backup.py +153 -5
- pulumi_oci/database/cloud_exadata_infrastructure.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +163 -30
- pulumi_oci/database/db_node.py +64 -8
- pulumi_oci/database/exadata_infrastructure.py +157 -3
- pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py +1615 -0
- pulumi_oci/database/exadb_vm_cluster.py +84 -7
- pulumi_oci/database/exascale_db_storage_vault.py +147 -0
- pulumi_oci/database/external_container_database.py +4 -4
- pulumi_oci/database/external_non_container_database.py +4 -4
- pulumi_oci/database/external_pluggable_database.py +4 -4
- pulumi_oci/database/get_application_vip.py +16 -2
- pulumi_oci/database/get_autonomous_container_database.py +103 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +12 -1
- pulumi_oci/database/get_autonomous_container_databases.py +1 -1
- pulumi_oci/database/get_autonomous_database.py +0 -3
- pulumi_oci/database/get_backups.py +136 -10
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +43 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +59 -3
- pulumi_oci/database/get_cloud_vm_clusters.py +28 -6
- pulumi_oci/database/get_database_software_images.py +20 -1
- pulumi_oci/database/get_db_node.py +31 -4
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +57 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +29 -1
- pulumi_oci/database/get_exadb_vm_clusters.py +25 -3
- pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
- pulumi_oci/database/get_exascale_db_storage_vaults.py +47 -3
- pulumi_oci/database/get_external_container_database.py +1 -1
- pulumi_oci/database/get_external_non_container_database.py +1 -1
- pulumi_oci/database/get_external_pluggable_database.py +1 -1
- pulumi_oci/database/get_flex_components.py +28 -6
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/get_vm_cluster.py +60 -4
- pulumi_oci/database/get_vm_clusters.py +25 -3
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/outputs.py +3831 -267
- pulumi_oci/database/pluggable_database.py +13 -13
- pulumi_oci/database/vm_cluster.py +172 -18
- pulumi_oci/database/vm_cluster_add_virtual_network.py +114 -2
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +114 -2
- pulumi_oci/datasafe/__init__.py +7 -0
- pulumi_oci/datasafe/_inputs.py +301 -0
- pulumi_oci/datasafe/discovery_mod.py +49 -0
- pulumi_oci/datasafe/get_discovery_job.py +15 -1
- pulumi_oci/datasafe/get_masking_report.py +46 -4
- pulumi_oci/datasafe/get_masking_report_masking_errors.py +166 -0
- pulumi_oci/datasafe/get_security_assessment_finding.py +31 -1
- pulumi_oci/datasafe/get_security_assessment_findings.py +43 -3
- pulumi_oci/datasafe/get_sensitive_column_analytics.py +370 -0
- pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
- pulumi_oci/datasafe/get_sensitive_type_group.py +253 -0
- pulumi_oci/datasafe/get_sensitive_type_group_grouped_sensitive_types.py +166 -0
- pulumi_oci/datasafe/get_sensitive_type_groups.py +294 -0
- pulumi_oci/datasafe/outputs.py +676 -3
- pulumi_oci/datasafe/sensitive_data_model.py +49 -0
- pulumi_oci/datasafe/sensitive_type_group.py +563 -0
- pulumi_oci/datasafe/sensitive_type_group_grouped_sensitive_type.py +287 -0
- pulumi_oci/datascience/__init__.py +4 -0
- pulumi_oci/datascience/_inputs.py +1160 -41
- pulumi_oci/datascience/get_model.py +29 -1
- pulumi_oci/datascience/get_model_custom_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_defined_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_version_set.py +15 -1
- pulumi_oci/datascience/get_model_version_sets.py +25 -3
- pulumi_oci/datascience/get_models.py +25 -3
- pulumi_oci/datascience/get_pipeline.py +15 -1
- pulumi_oci/datascience/model.py +64 -0
- pulumi_oci/datascience/model_custom_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_defined_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_version_set.py +28 -0
- pulumi_oci/datascience/outputs.py +4343 -2164
- pulumi_oci/datascience/pipeline.py +48 -141
- pulumi_oci/datascience/pipeline_run.py +32 -0
- pulumi_oci/dblm/__init__.py +17 -0
- pulumi_oci/dblm/_inputs.py +275 -0
- pulumi_oci/dblm/get_vulnerability.py +242 -0
- pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py +220 -0
- pulumi_oci/dblm/get_vulnerability_notifications.py +144 -0
- pulumi_oci/dblm/get_vulnerability_resources.py +258 -0
- pulumi_oci/dblm/get_vulnerability_scan.py +267 -0
- pulumi_oci/dblm/get_vulnerability_scans.py +270 -0
- pulumi_oci/dblm/get_vulnerability_vulnerabilities.py +258 -0
- pulumi_oci/dblm/outputs.py +1294 -0
- pulumi_oci/dblm/vulnerability_scan.py +521 -0
- pulumi_oci/email/dkim.py +120 -20
- pulumi_oci/email/get_dkim.py +40 -1
- pulumi_oci/email/outputs.py +29 -0
- pulumi_oci/filestorage/__init__.py +3 -0
- pulumi_oci/filestorage/_inputs.py +49 -0
- pulumi_oci/filestorage/file_system.py +105 -0
- pulumi_oci/filestorage/file_system_quota_rule.py +593 -0
- pulumi_oci/filestorage/get_file_system_quota_rule.py +248 -0
- pulumi_oci/filestorage/get_file_system_quota_rules.py +210 -0
- pulumi_oci/filestorage/outputs.py +186 -0
- pulumi_oci/goldengate/_inputs.py +128 -0
- pulumi_oci/goldengate/deployment.py +103 -0
- pulumi_oci/goldengate/deployment_backup.py +28 -0
- pulumi_oci/goldengate/get_deployment.py +43 -1
- pulumi_oci/goldengate/get_deployment_backup.py +15 -1
- pulumi_oci/goldengate/outputs.py +289 -0
- pulumi_oci/mysql/_inputs.py +1239 -10
- pulumi_oci/mysql/channel.py +28 -0
- pulumi_oci/mysql/get_channel.py +15 -1
- pulumi_oci/mysql/get_mysql_backup.py +15 -1
- pulumi_oci/mysql/get_mysql_configuration.py +15 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +28 -0
- pulumi_oci/mysql/mysql_configuration.py +106 -0
- pulumi_oci/mysql/mysql_db_system.py +36 -0
- pulumi_oci/mysql/outputs.py +2008 -35
- pulumi_oci/opensearch/__init__.py +3 -0
- pulumi_oci/opensearch/_inputs.py +101 -0
- pulumi_oci/opensearch/cluster.py +76 -29
- pulumi_oci/opensearch/get_opensearch_cluster.py +12 -1
- pulumi_oci/opensearch/get_opensearch_cluster_pipeline.py +433 -0
- pulumi_oci/opensearch/get_opensearch_cluster_pipelines.py +218 -0
- pulumi_oci/opensearch/opensearch_cluster_pipeline.py +1172 -0
- pulumi_oci/opensearch/outputs.py +425 -0
- pulumi_oci/osmanagementhub/__init__.py +18 -0
- pulumi_oci/osmanagementhub/_inputs.py +677 -12
- pulumi_oci/osmanagementhub/event.py +8 -0
- pulumi_oci/osmanagementhub/get_entitlements.py +2 -2
- pulumi_oci/osmanagementhub/get_event.py +2 -0
- pulumi_oci/osmanagementhub/get_events.py +2 -0
- pulumi_oci/osmanagementhub/get_managed_instance.py +30 -2
- pulumi_oci/osmanagementhub/get_managed_instances.py +75 -63
- pulumi_oci/osmanagementhub/get_management_station.py +116 -4
- pulumi_oci/osmanagementhub/get_management_station_mirrors.py +1 -1
- pulumi_oci/osmanagementhub/get_management_stations.py +47 -4
- pulumi_oci/osmanagementhub/get_profile.py +32 -4
- pulumi_oci/osmanagementhub/get_profile_available_software_sources.py +207 -0
- pulumi_oci/osmanagementhub/get_profile_version.py +388 -0
- pulumi_oci/osmanagementhub/get_profiles.py +63 -3
- pulumi_oci/osmanagementhub/get_scheduled_job.py +15 -1
- pulumi_oci/osmanagementhub/get_software_package.py +2 -2
- pulumi_oci/osmanagementhub/get_software_package_software_source.py +7 -7
- pulumi_oci/osmanagementhub/get_software_source.py +89 -5
- pulumi_oci/osmanagementhub/get_software_source_available_software_packages.py +209 -0
- pulumi_oci/osmanagementhub/get_software_source_manifest.py +127 -0
- pulumi_oci/osmanagementhub/get_software_sources.py +30 -8
- pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance.py +56 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +49 -0
- pulumi_oci/osmanagementhub/managed_instance_group_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance_reboot_management.py +299 -0
- pulumi_oci/osmanagementhub/management_station.py +251 -4
- pulumi_oci/osmanagementhub/management_station_associate_managed_instances_management.py +298 -0
- pulumi_oci/osmanagementhub/management_station_refresh_management.py +2 -2
- pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +9 -9
- pulumi_oci/osmanagementhub/outputs.py +1349 -50
- pulumi_oci/osmanagementhub/profile.py +70 -14
- pulumi_oci/osmanagementhub/profile_attach_lifecycle_stage_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_managed_instance_group_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_management_station_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_detach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/scheduled_job.py +72 -21
- pulumi_oci/osmanagementhub/software_source.py +365 -26
- pulumi_oci/osmanagementhub/software_source_add_packages_management.py +67 -10
- pulumi_oci/osmanagementhub/software_source_generate_metadata_management.py +217 -0
- pulumi_oci/osmanagementhub/software_source_manifest.py +268 -0
- pulumi_oci/osmanagementhub/software_source_remove_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/software_source_replace_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/work_request_rerun_management.py +325 -0
- pulumi_oci/psql/_inputs.py +258 -0
- pulumi_oci/psql/backup.py +129 -28
- pulumi_oci/psql/db_system.py +10 -0
- pulumi_oci/psql/get_backup.py +47 -2
- pulumi_oci/psql/get_backups.py +3 -0
- pulumi_oci/psql/get_configurations.py +23 -1
- pulumi_oci/psql/get_db_system.py +1 -1
- pulumi_oci/psql/get_db_systems.py +1 -1
- pulumi_oci/psql/outputs.py +541 -5
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/redis_cluster.py +7 -7
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/METADATA +2 -2
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/RECORD +206 -150
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/top_level.txt +0 -0
@@ -27,13 +27,16 @@ class GetExascaleDbStorageVaultResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getExascaleDbStorageVault.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, additional_flash_cache_in_percent=None, availability_domain=None, compartment_id=None, defined_tags=None, description=None, display_name=None, exascale_db_storage_vault_id=None, freeform_tags=None, high_capacity_database_storages=None, id=None, lifecycle_details=None, state=None, system_tags=None, time_created=None, time_zone=None, vm_cluster_count=None, vm_cluster_ids=None):
|
30
|
+
def __init__(__self__, additional_flash_cache_in_percent=None, availability_domain=None, cluster_placement_group_id=None, compartment_id=None, defined_tags=None, description=None, display_name=None, exadata_infrastructure_id=None, exascale_db_storage_vault_id=None, freeform_tags=None, high_capacity_database_storages=None, id=None, lifecycle_details=None, state=None, subscription_id=None, system_tags=None, time_created=None, time_zone=None, vm_cluster_count=None, vm_cluster_ids=None):
|
31
31
|
if additional_flash_cache_in_percent and not isinstance(additional_flash_cache_in_percent, int):
|
32
32
|
raise TypeError("Expected argument 'additional_flash_cache_in_percent' to be a int")
|
33
33
|
pulumi.set(__self__, "additional_flash_cache_in_percent", additional_flash_cache_in_percent)
|
34
34
|
if availability_domain and not isinstance(availability_domain, str):
|
35
35
|
raise TypeError("Expected argument 'availability_domain' to be a str")
|
36
36
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
37
|
+
if cluster_placement_group_id and not isinstance(cluster_placement_group_id, str):
|
38
|
+
raise TypeError("Expected argument 'cluster_placement_group_id' to be a str")
|
39
|
+
pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
|
37
40
|
if compartment_id and not isinstance(compartment_id, str):
|
38
41
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
39
42
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -46,6 +49,9 @@ class GetExascaleDbStorageVaultResult:
|
|
46
49
|
if display_name and not isinstance(display_name, str):
|
47
50
|
raise TypeError("Expected argument 'display_name' to be a str")
|
48
51
|
pulumi.set(__self__, "display_name", display_name)
|
52
|
+
if exadata_infrastructure_id and not isinstance(exadata_infrastructure_id, str):
|
53
|
+
raise TypeError("Expected argument 'exadata_infrastructure_id' to be a str")
|
54
|
+
pulumi.set(__self__, "exadata_infrastructure_id", exadata_infrastructure_id)
|
49
55
|
if exascale_db_storage_vault_id and not isinstance(exascale_db_storage_vault_id, str):
|
50
56
|
raise TypeError("Expected argument 'exascale_db_storage_vault_id' to be a str")
|
51
57
|
pulumi.set(__self__, "exascale_db_storage_vault_id", exascale_db_storage_vault_id)
|
@@ -64,6 +70,9 @@ class GetExascaleDbStorageVaultResult:
|
|
64
70
|
if state and not isinstance(state, str):
|
65
71
|
raise TypeError("Expected argument 'state' to be a str")
|
66
72
|
pulumi.set(__self__, "state", state)
|
73
|
+
if subscription_id and not isinstance(subscription_id, str):
|
74
|
+
raise TypeError("Expected argument 'subscription_id' to be a str")
|
75
|
+
pulumi.set(__self__, "subscription_id", subscription_id)
|
67
76
|
if system_tags and not isinstance(system_tags, dict):
|
68
77
|
raise TypeError("Expected argument 'system_tags' to be a dict")
|
69
78
|
pulumi.set(__self__, "system_tags", system_tags)
|
@@ -96,6 +105,14 @@ class GetExascaleDbStorageVaultResult:
|
|
96
105
|
"""
|
97
106
|
return pulumi.get(self, "availability_domain")
|
98
107
|
|
108
|
+
@property
|
109
|
+
@pulumi.getter(name="clusterPlacementGroupId")
|
110
|
+
def cluster_placement_group_id(self) -> str:
|
111
|
+
"""
|
112
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group of the Exadata Infrastructure.
|
113
|
+
"""
|
114
|
+
return pulumi.get(self, "cluster_placement_group_id")
|
115
|
+
|
99
116
|
@property
|
100
117
|
@pulumi.getter(name="compartmentId")
|
101
118
|
def compartment_id(self) -> str:
|
@@ -128,6 +145,14 @@ class GetExascaleDbStorageVaultResult:
|
|
128
145
|
"""
|
129
146
|
return pulumi.get(self, "display_name")
|
130
147
|
|
148
|
+
@property
|
149
|
+
@pulumi.getter(name="exadataInfrastructureId")
|
150
|
+
def exadata_infrastructure_id(self) -> str:
|
151
|
+
"""
|
152
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata infrastructure.
|
153
|
+
"""
|
154
|
+
return pulumi.get(self, "exadata_infrastructure_id")
|
155
|
+
|
131
156
|
@property
|
132
157
|
@pulumi.getter(name="exascaleDbStorageVaultId")
|
133
158
|
def exascale_db_storage_vault_id(self) -> str:
|
@@ -173,6 +198,14 @@ class GetExascaleDbStorageVaultResult:
|
|
173
198
|
"""
|
174
199
|
return pulumi.get(self, "state")
|
175
200
|
|
201
|
+
@property
|
202
|
+
@pulumi.getter(name="subscriptionId")
|
203
|
+
def subscription_id(self) -> str:
|
204
|
+
"""
|
205
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
|
206
|
+
"""
|
207
|
+
return pulumi.get(self, "subscription_id")
|
208
|
+
|
176
209
|
@property
|
177
210
|
@pulumi.getter(name="systemTags")
|
178
211
|
def system_tags(self) -> Mapping[str, str]:
|
@@ -222,16 +255,19 @@ class AwaitableGetExascaleDbStorageVaultResult(GetExascaleDbStorageVaultResult):
|
|
222
255
|
return GetExascaleDbStorageVaultResult(
|
223
256
|
additional_flash_cache_in_percent=self.additional_flash_cache_in_percent,
|
224
257
|
availability_domain=self.availability_domain,
|
258
|
+
cluster_placement_group_id=self.cluster_placement_group_id,
|
225
259
|
compartment_id=self.compartment_id,
|
226
260
|
defined_tags=self.defined_tags,
|
227
261
|
description=self.description,
|
228
262
|
display_name=self.display_name,
|
263
|
+
exadata_infrastructure_id=self.exadata_infrastructure_id,
|
229
264
|
exascale_db_storage_vault_id=self.exascale_db_storage_vault_id,
|
230
265
|
freeform_tags=self.freeform_tags,
|
231
266
|
high_capacity_database_storages=self.high_capacity_database_storages,
|
232
267
|
id=self.id,
|
233
268
|
lifecycle_details=self.lifecycle_details,
|
234
269
|
state=self.state,
|
270
|
+
subscription_id=self.subscription_id,
|
235
271
|
system_tags=self.system_tags,
|
236
272
|
time_created=self.time_created,
|
237
273
|
time_zone=self.time_zone,
|
@@ -266,16 +302,19 @@ def get_exascale_db_storage_vault(exascale_db_storage_vault_id: Optional[str] =
|
|
266
302
|
return AwaitableGetExascaleDbStorageVaultResult(
|
267
303
|
additional_flash_cache_in_percent=pulumi.get(__ret__, 'additional_flash_cache_in_percent'),
|
268
304
|
availability_domain=pulumi.get(__ret__, 'availability_domain'),
|
305
|
+
cluster_placement_group_id=pulumi.get(__ret__, 'cluster_placement_group_id'),
|
269
306
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
270
307
|
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
271
308
|
description=pulumi.get(__ret__, 'description'),
|
272
309
|
display_name=pulumi.get(__ret__, 'display_name'),
|
310
|
+
exadata_infrastructure_id=pulumi.get(__ret__, 'exadata_infrastructure_id'),
|
273
311
|
exascale_db_storage_vault_id=pulumi.get(__ret__, 'exascale_db_storage_vault_id'),
|
274
312
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
275
313
|
high_capacity_database_storages=pulumi.get(__ret__, 'high_capacity_database_storages'),
|
276
314
|
id=pulumi.get(__ret__, 'id'),
|
277
315
|
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
278
316
|
state=pulumi.get(__ret__, 'state'),
|
317
|
+
subscription_id=pulumi.get(__ret__, 'subscription_id'),
|
279
318
|
system_tags=pulumi.get(__ret__, 'system_tags'),
|
280
319
|
time_created=pulumi.get(__ret__, 'time_created'),
|
281
320
|
time_zone=pulumi.get(__ret__, 'time_zone'),
|
@@ -307,16 +346,19 @@ def get_exascale_db_storage_vault_output(exascale_db_storage_vault_id: Optional[
|
|
307
346
|
return __ret__.apply(lambda __response__: GetExascaleDbStorageVaultResult(
|
308
347
|
additional_flash_cache_in_percent=pulumi.get(__response__, 'additional_flash_cache_in_percent'),
|
309
348
|
availability_domain=pulumi.get(__response__, 'availability_domain'),
|
349
|
+
cluster_placement_group_id=pulumi.get(__response__, 'cluster_placement_group_id'),
|
310
350
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
311
351
|
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
312
352
|
description=pulumi.get(__response__, 'description'),
|
313
353
|
display_name=pulumi.get(__response__, 'display_name'),
|
354
|
+
exadata_infrastructure_id=pulumi.get(__response__, 'exadata_infrastructure_id'),
|
314
355
|
exascale_db_storage_vault_id=pulumi.get(__response__, 'exascale_db_storage_vault_id'),
|
315
356
|
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
316
357
|
high_capacity_database_storages=pulumi.get(__response__, 'high_capacity_database_storages'),
|
317
358
|
id=pulumi.get(__response__, 'id'),
|
318
359
|
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
319
360
|
state=pulumi.get(__response__, 'state'),
|
361
|
+
subscription_id=pulumi.get(__response__, 'subscription_id'),
|
320
362
|
system_tags=pulumi.get(__response__, 'system_tags'),
|
321
363
|
time_created=pulumi.get(__response__, 'time_created'),
|
322
364
|
time_zone=pulumi.get(__response__, 'time_zone'),
|
@@ -28,13 +28,19 @@ class GetExascaleDbStorageVaultsResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getExascaleDbStorageVaults.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, compartment_id=None, display_name=None, exascale_db_storage_vaults=None, filters=None, id=None, state=None):
|
31
|
+
def __init__(__self__, cluster_placement_group_id=None, compartment_id=None, display_name=None, exadata_infrastructure_id=None, exascale_db_storage_vaults=None, filters=None, id=None, state=None):
|
32
|
+
if cluster_placement_group_id and not isinstance(cluster_placement_group_id, str):
|
33
|
+
raise TypeError("Expected argument 'cluster_placement_group_id' to be a str")
|
34
|
+
pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
|
32
35
|
if compartment_id and not isinstance(compartment_id, str):
|
33
36
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
34
37
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
35
38
|
if display_name and not isinstance(display_name, str):
|
36
39
|
raise TypeError("Expected argument 'display_name' to be a str")
|
37
40
|
pulumi.set(__self__, "display_name", display_name)
|
41
|
+
if exadata_infrastructure_id and not isinstance(exadata_infrastructure_id, str):
|
42
|
+
raise TypeError("Expected argument 'exadata_infrastructure_id' to be a str")
|
43
|
+
pulumi.set(__self__, "exadata_infrastructure_id", exadata_infrastructure_id)
|
38
44
|
if exascale_db_storage_vaults and not isinstance(exascale_db_storage_vaults, list):
|
39
45
|
raise TypeError("Expected argument 'exascale_db_storage_vaults' to be a list")
|
40
46
|
pulumi.set(__self__, "exascale_db_storage_vaults", exascale_db_storage_vaults)
|
@@ -48,6 +54,14 @@ class GetExascaleDbStorageVaultsResult:
|
|
48
54
|
raise TypeError("Expected argument 'state' to be a str")
|
49
55
|
pulumi.set(__self__, "state", state)
|
50
56
|
|
57
|
+
@property
|
58
|
+
@pulumi.getter(name="clusterPlacementGroupId")
|
59
|
+
def cluster_placement_group_id(self) -> Optional[str]:
|
60
|
+
"""
|
61
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group of the Exadata Infrastructure.
|
62
|
+
"""
|
63
|
+
return pulumi.get(self, "cluster_placement_group_id")
|
64
|
+
|
51
65
|
@property
|
52
66
|
@pulumi.getter(name="compartmentId")
|
53
67
|
def compartment_id(self) -> str:
|
@@ -64,6 +78,14 @@ class GetExascaleDbStorageVaultsResult:
|
|
64
78
|
"""
|
65
79
|
return pulumi.get(self, "display_name")
|
66
80
|
|
81
|
+
@property
|
82
|
+
@pulumi.getter(name="exadataInfrastructureId")
|
83
|
+
def exadata_infrastructure_id(self) -> Optional[str]:
|
84
|
+
"""
|
85
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata infrastructure.
|
86
|
+
"""
|
87
|
+
return pulumi.get(self, "exadata_infrastructure_id")
|
88
|
+
|
67
89
|
@property
|
68
90
|
@pulumi.getter(name="exascaleDbStorageVaults")
|
69
91
|
def exascale_db_storage_vaults(self) -> Sequence['outputs.GetExascaleDbStorageVaultsExascaleDbStorageVaultResult']:
|
@@ -100,16 +122,20 @@ class AwaitableGetExascaleDbStorageVaultsResult(GetExascaleDbStorageVaultsResult
|
|
100
122
|
if False:
|
101
123
|
yield self
|
102
124
|
return GetExascaleDbStorageVaultsResult(
|
125
|
+
cluster_placement_group_id=self.cluster_placement_group_id,
|
103
126
|
compartment_id=self.compartment_id,
|
104
127
|
display_name=self.display_name,
|
128
|
+
exadata_infrastructure_id=self.exadata_infrastructure_id,
|
105
129
|
exascale_db_storage_vaults=self.exascale_db_storage_vaults,
|
106
130
|
filters=self.filters,
|
107
131
|
id=self.id,
|
108
132
|
state=self.state)
|
109
133
|
|
110
134
|
|
111
|
-
def get_exascale_db_storage_vaults(
|
135
|
+
def get_exascale_db_storage_vaults(cluster_placement_group_id: Optional[str] = None,
|
136
|
+
compartment_id: Optional[str] = None,
|
112
137
|
display_name: Optional[str] = None,
|
138
|
+
exadata_infrastructure_id: Optional[str] = None,
|
113
139
|
filters: Optional[Sequence[Union['GetExascaleDbStorageVaultsFilterArgs', 'GetExascaleDbStorageVaultsFilterArgsDict']]] = None,
|
114
140
|
state: Optional[str] = None,
|
115
141
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetExascaleDbStorageVaultsResult:
|
@@ -125,32 +151,42 @@ def get_exascale_db_storage_vaults(compartment_id: Optional[str] = None,
|
|
125
151
|
import pulumi_oci as oci
|
126
152
|
|
127
153
|
test_exascale_db_storage_vaults = oci.Database.get_exascale_db_storage_vaults(compartment_id=compartment_id,
|
154
|
+
cluster_placement_group_id=test_cluster_placement_group["id"],
|
128
155
|
display_name=exascale_db_storage_vault_display_name,
|
156
|
+
exadata_infrastructure_id=test_exadata_infrastructure["id"],
|
129
157
|
state=exascale_db_storage_vault_state)
|
130
158
|
```
|
131
159
|
|
132
160
|
|
161
|
+
:param str cluster_placement_group_id: A filter to return only resources that match the given cluster placement group ID exactly.
|
133
162
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
134
163
|
:param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
164
|
+
:param str exadata_infrastructure_id: A filter to return only list of Vaults that are linked to the exadata infrastructure Id.
|
135
165
|
:param str state: A filter to return only Exadata Database Storage Vaults that match the given lifecycle state exactly.
|
136
166
|
"""
|
137
167
|
__args__ = dict()
|
168
|
+
__args__['clusterPlacementGroupId'] = cluster_placement_group_id
|
138
169
|
__args__['compartmentId'] = compartment_id
|
139
170
|
__args__['displayName'] = display_name
|
171
|
+
__args__['exadataInfrastructureId'] = exadata_infrastructure_id
|
140
172
|
__args__['filters'] = filters
|
141
173
|
__args__['state'] = state
|
142
174
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
143
175
|
__ret__ = pulumi.runtime.invoke('oci:Database/getExascaleDbStorageVaults:getExascaleDbStorageVaults', __args__, opts=opts, typ=GetExascaleDbStorageVaultsResult).value
|
144
176
|
|
145
177
|
return AwaitableGetExascaleDbStorageVaultsResult(
|
178
|
+
cluster_placement_group_id=pulumi.get(__ret__, 'cluster_placement_group_id'),
|
146
179
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
147
180
|
display_name=pulumi.get(__ret__, 'display_name'),
|
181
|
+
exadata_infrastructure_id=pulumi.get(__ret__, 'exadata_infrastructure_id'),
|
148
182
|
exascale_db_storage_vaults=pulumi.get(__ret__, 'exascale_db_storage_vaults'),
|
149
183
|
filters=pulumi.get(__ret__, 'filters'),
|
150
184
|
id=pulumi.get(__ret__, 'id'),
|
151
185
|
state=pulumi.get(__ret__, 'state'))
|
152
|
-
def get_exascale_db_storage_vaults_output(
|
186
|
+
def get_exascale_db_storage_vaults_output(cluster_placement_group_id: Optional[pulumi.Input[Optional[str]]] = None,
|
187
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
153
188
|
display_name: Optional[pulumi.Input[Optional[str]]] = None,
|
189
|
+
exadata_infrastructure_id: Optional[pulumi.Input[Optional[str]]] = None,
|
154
190
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetExascaleDbStorageVaultsFilterArgs', 'GetExascaleDbStorageVaultsFilterArgsDict']]]]] = None,
|
155
191
|
state: Optional[pulumi.Input[Optional[str]]] = None,
|
156
192
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetExascaleDbStorageVaultsResult]:
|
@@ -166,25 +202,33 @@ def get_exascale_db_storage_vaults_output(compartment_id: Optional[pulumi.Input[
|
|
166
202
|
import pulumi_oci as oci
|
167
203
|
|
168
204
|
test_exascale_db_storage_vaults = oci.Database.get_exascale_db_storage_vaults(compartment_id=compartment_id,
|
205
|
+
cluster_placement_group_id=test_cluster_placement_group["id"],
|
169
206
|
display_name=exascale_db_storage_vault_display_name,
|
207
|
+
exadata_infrastructure_id=test_exadata_infrastructure["id"],
|
170
208
|
state=exascale_db_storage_vault_state)
|
171
209
|
```
|
172
210
|
|
173
211
|
|
212
|
+
:param str cluster_placement_group_id: A filter to return only resources that match the given cluster placement group ID exactly.
|
174
213
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
175
214
|
:param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
215
|
+
:param str exadata_infrastructure_id: A filter to return only list of Vaults that are linked to the exadata infrastructure Id.
|
176
216
|
:param str state: A filter to return only Exadata Database Storage Vaults that match the given lifecycle state exactly.
|
177
217
|
"""
|
178
218
|
__args__ = dict()
|
219
|
+
__args__['clusterPlacementGroupId'] = cluster_placement_group_id
|
179
220
|
__args__['compartmentId'] = compartment_id
|
180
221
|
__args__['displayName'] = display_name
|
222
|
+
__args__['exadataInfrastructureId'] = exadata_infrastructure_id
|
181
223
|
__args__['filters'] = filters
|
182
224
|
__args__['state'] = state
|
183
225
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
184
226
|
__ret__ = pulumi.runtime.invoke_output('oci:Database/getExascaleDbStorageVaults:getExascaleDbStorageVaults', __args__, opts=opts, typ=GetExascaleDbStorageVaultsResult)
|
185
227
|
return __ret__.apply(lambda __response__: GetExascaleDbStorageVaultsResult(
|
228
|
+
cluster_placement_group_id=pulumi.get(__response__, 'cluster_placement_group_id'),
|
186
229
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
187
230
|
display_name=pulumi.get(__response__, 'display_name'),
|
231
|
+
exadata_infrastructure_id=pulumi.get(__response__, 'exadata_infrastructure_id'),
|
188
232
|
exascale_db_storage_vaults=pulumi.get(__response__, 'exascale_db_storage_vaults'),
|
189
233
|
filters=pulumi.get(__response__, 'filters'),
|
190
234
|
id=pulumi.get(__response__, 'id'),
|
@@ -117,7 +117,7 @@ class GetExternalContainerDatabaseResult:
|
|
117
117
|
@pulumi.getter(name="databaseEdition")
|
118
118
|
def database_edition(self) -> str:
|
119
119
|
"""
|
120
|
-
The Oracle Database
|
120
|
+
The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
|
121
121
|
"""
|
122
122
|
return pulumi.get(self, "database_edition")
|
123
123
|
|
@@ -120,7 +120,7 @@ class GetExternalNonContainerDatabaseResult:
|
|
120
120
|
@pulumi.getter(name="databaseEdition")
|
121
121
|
def database_edition(self) -> str:
|
122
122
|
"""
|
123
|
-
The Oracle Database
|
123
|
+
The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
|
124
124
|
"""
|
125
125
|
return pulumi.get(self, "database_edition")
|
126
126
|
|
@@ -126,7 +126,7 @@ class GetExternalPluggableDatabaseResult:
|
|
126
126
|
@pulumi.getter(name="databaseEdition")
|
127
127
|
def database_edition(self) -> str:
|
128
128
|
"""
|
129
|
-
The Oracle Database
|
129
|
+
The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
|
130
130
|
"""
|
131
131
|
return pulumi.get(self, "database_edition")
|
132
132
|
|
@@ -28,7 +28,7 @@ class GetFlexComponentsResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getFlexComponents.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, compartment_id=None, filters=None, flex_component_collections=None, id=None, name=None):
|
31
|
+
def __init__(__self__, compartment_id=None, filters=None, flex_component_collections=None, id=None, name=None, shape=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)
|
@@ -44,6 +44,9 @@ class GetFlexComponentsResult:
|
|
44
44
|
if name and not isinstance(name, str):
|
45
45
|
raise TypeError("Expected argument 'name' to be a str")
|
46
46
|
pulumi.set(__self__, "name", name)
|
47
|
+
if shape and not isinstance(shape, str):
|
48
|
+
raise TypeError("Expected argument 'shape' to be a str")
|
49
|
+
pulumi.set(__self__, "shape", shape)
|
47
50
|
|
48
51
|
@property
|
49
52
|
@pulumi.getter(name="compartmentId")
|
@@ -79,6 +82,14 @@ class GetFlexComponentsResult:
|
|
79
82
|
"""
|
80
83
|
return pulumi.get(self, "name")
|
81
84
|
|
85
|
+
@property
|
86
|
+
@pulumi.getter
|
87
|
+
def shape(self) -> Optional[str]:
|
88
|
+
"""
|
89
|
+
The name of the DB system shape for this Flex Component.
|
90
|
+
"""
|
91
|
+
return pulumi.get(self, "shape")
|
92
|
+
|
82
93
|
|
83
94
|
class AwaitableGetFlexComponentsResult(GetFlexComponentsResult):
|
84
95
|
# pylint: disable=using-constant-test
|
@@ -90,12 +101,14 @@ class AwaitableGetFlexComponentsResult(GetFlexComponentsResult):
|
|
90
101
|
filters=self.filters,
|
91
102
|
flex_component_collections=self.flex_component_collections,
|
92
103
|
id=self.id,
|
93
|
-
name=self.name
|
104
|
+
name=self.name,
|
105
|
+
shape=self.shape)
|
94
106
|
|
95
107
|
|
96
108
|
def get_flex_components(compartment_id: Optional[str] = None,
|
97
109
|
filters: Optional[Sequence[Union['GetFlexComponentsFilterArgs', 'GetFlexComponentsFilterArgsDict']]] = None,
|
98
110
|
name: Optional[str] = None,
|
111
|
+
shape: Optional[str] = None,
|
99
112
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFlexComponentsResult:
|
100
113
|
"""
|
101
114
|
This data source provides the list of Flex Components in Oracle Cloud Infrastructure Database service.
|
@@ -109,17 +122,20 @@ def get_flex_components(compartment_id: Optional[str] = None,
|
|
109
122
|
import pulumi_oci as oci
|
110
123
|
|
111
124
|
test_flex_components = oci.Database.get_flex_components(compartment_id=compartment_id,
|
112
|
-
name=flex_component_name
|
125
|
+
name=flex_component_name,
|
126
|
+
shape=flex_component_shape)
|
113
127
|
```
|
114
128
|
|
115
129
|
|
116
130
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
117
131
|
:param str name: A filter to return only resources that match the entire name given. The match is not case sensitive.
|
132
|
+
:param str shape: A filter to return only resources that belong to the entire shape name given. The match is not case sensitive.
|
118
133
|
"""
|
119
134
|
__args__ = dict()
|
120
135
|
__args__['compartmentId'] = compartment_id
|
121
136
|
__args__['filters'] = filters
|
122
137
|
__args__['name'] = name
|
138
|
+
__args__['shape'] = shape
|
123
139
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
124
140
|
__ret__ = pulumi.runtime.invoke('oci:Database/getFlexComponents:getFlexComponents', __args__, opts=opts, typ=GetFlexComponentsResult).value
|
125
141
|
|
@@ -128,10 +144,12 @@ def get_flex_components(compartment_id: Optional[str] = None,
|
|
128
144
|
filters=pulumi.get(__ret__, 'filters'),
|
129
145
|
flex_component_collections=pulumi.get(__ret__, 'flex_component_collections'),
|
130
146
|
id=pulumi.get(__ret__, 'id'),
|
131
|
-
name=pulumi.get(__ret__, 'name')
|
147
|
+
name=pulumi.get(__ret__, 'name'),
|
148
|
+
shape=pulumi.get(__ret__, 'shape'))
|
132
149
|
def get_flex_components_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
133
150
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetFlexComponentsFilterArgs', 'GetFlexComponentsFilterArgsDict']]]]] = None,
|
134
151
|
name: Optional[pulumi.Input[Optional[str]]] = None,
|
152
|
+
shape: Optional[pulumi.Input[Optional[str]]] = None,
|
135
153
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFlexComponentsResult]:
|
136
154
|
"""
|
137
155
|
This data source provides the list of Flex Components in Oracle Cloud Infrastructure Database service.
|
@@ -145,17 +163,20 @@ def get_flex_components_output(compartment_id: Optional[pulumi.Input[str]] = Non
|
|
145
163
|
import pulumi_oci as oci
|
146
164
|
|
147
165
|
test_flex_components = oci.Database.get_flex_components(compartment_id=compartment_id,
|
148
|
-
name=flex_component_name
|
166
|
+
name=flex_component_name,
|
167
|
+
shape=flex_component_shape)
|
149
168
|
```
|
150
169
|
|
151
170
|
|
152
171
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
153
172
|
:param str name: A filter to return only resources that match the entire name given. The match is not case sensitive.
|
173
|
+
:param str shape: A filter to return only resources that belong to the entire shape name given. The match is not case sensitive.
|
154
174
|
"""
|
155
175
|
__args__ = dict()
|
156
176
|
__args__['compartmentId'] = compartment_id
|
157
177
|
__args__['filters'] = filters
|
158
178
|
__args__['name'] = name
|
179
|
+
__args__['shape'] = shape
|
159
180
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
160
181
|
__ret__ = pulumi.runtime.invoke_output('oci:Database/getFlexComponents:getFlexComponents', __args__, opts=opts, typ=GetFlexComponentsResult)
|
161
182
|
return __ret__.apply(lambda __response__: GetFlexComponentsResult(
|
@@ -163,4 +184,5 @@ def get_flex_components_output(compartment_id: Optional[pulumi.Input[str]] = Non
|
|
163
184
|
filters=pulumi.get(__response__, 'filters'),
|
164
185
|
flex_component_collections=pulumi.get(__response__, 'flex_component_collections'),
|
165
186
|
id=pulumi.get(__response__, 'id'),
|
166
|
-
name=pulumi.get(__response__, 'name')
|
187
|
+
name=pulumi.get(__response__, 'name'),
|
188
|
+
shape=pulumi.get(__response__, 'shape')))
|
@@ -27,7 +27,7 @@ class GetMaintenanceRunResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getMaintenanceRun.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, compartment_id=None, current_custom_action_timeout_in_mins=None, current_patching_component=None, custom_action_timeout_in_mins=None, database_software_image_id=None, description=None, display_name=None, estimated_component_patching_start_time=None, estimated_patching_times=None, id=None, is_custom_action_timeout_enabled=None, is_dst_file_update_enabled=None, is_maintenance_run_granular=None, lifecycle_details=None, maintenance_run_id=None, maintenance_subtype=None, maintenance_type=None, patch_failure_count=None, patch_id=None, patch_type=None, patching_end_time=None, patching_mode=None, patching_start_time=None, patching_status=None, peer_maintenance_run_id=None, state=None, target_db_server_version=None, target_resource_id=None, target_resource_type=None, target_storage_server_version=None, time_ended=None, time_scheduled=None, time_started=None, total_time_taken_in_mins=None):
|
30
|
+
def __init__(__self__, compartment_id=None, current_custom_action_timeout_in_mins=None, current_patching_component=None, custom_action_timeout_in_mins=None, database_software_image_id=None, description=None, display_name=None, estimated_component_patching_start_time=None, estimated_patching_times=None, id=None, is_custom_action_timeout_enabled=None, is_dst_file_update_enabled=None, is_maintenance_run_granular=None, lifecycle_details=None, maintenance_run_id=None, maintenance_subtype=None, maintenance_type=None, patch_failure_count=None, patch_id=None, patch_type=None, patching_end_time=None, patching_mode=None, patching_start_time=None, patching_status=None, peer_maintenance_run_id=None, peer_maintenance_run_ids=None, state=None, target_db_server_version=None, target_resource_id=None, target_resource_type=None, target_storage_server_version=None, time_ended=None, time_scheduled=None, time_started=None, total_time_taken_in_mins=None):
|
31
31
|
if compartment_id and not isinstance(compartment_id, str):
|
32
32
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
33
33
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -103,6 +103,9 @@ class GetMaintenanceRunResult:
|
|
103
103
|
if peer_maintenance_run_id and not isinstance(peer_maintenance_run_id, str):
|
104
104
|
raise TypeError("Expected argument 'peer_maintenance_run_id' to be a str")
|
105
105
|
pulumi.set(__self__, "peer_maintenance_run_id", peer_maintenance_run_id)
|
106
|
+
if peer_maintenance_run_ids and not isinstance(peer_maintenance_run_ids, list):
|
107
|
+
raise TypeError("Expected argument 'peer_maintenance_run_ids' to be a list")
|
108
|
+
pulumi.set(__self__, "peer_maintenance_run_ids", peer_maintenance_run_ids)
|
106
109
|
if state and not isinstance(state, str):
|
107
110
|
raise TypeError("Expected argument 'state' to be a str")
|
108
111
|
pulumi.set(__self__, "state", state)
|
@@ -325,6 +328,14 @@ class GetMaintenanceRunResult:
|
|
325
328
|
"""
|
326
329
|
return pulumi.get(self, "peer_maintenance_run_id")
|
327
330
|
|
331
|
+
@property
|
332
|
+
@pulumi.getter(name="peerMaintenanceRunIds")
|
333
|
+
def peer_maintenance_run_ids(self) -> Sequence[str]:
|
334
|
+
"""
|
335
|
+
The list of OCIDs for the maintenance runs associated with their Autonomous Data Guard peer container databases.
|
336
|
+
"""
|
337
|
+
return pulumi.get(self, "peer_maintenance_run_ids")
|
338
|
+
|
328
339
|
@property
|
329
340
|
@pulumi.getter
|
330
341
|
def state(self) -> str:
|
@@ -429,6 +440,7 @@ class AwaitableGetMaintenanceRunResult(GetMaintenanceRunResult):
|
|
429
440
|
patching_start_time=self.patching_start_time,
|
430
441
|
patching_status=self.patching_status,
|
431
442
|
peer_maintenance_run_id=self.peer_maintenance_run_id,
|
443
|
+
peer_maintenance_run_ids=self.peer_maintenance_run_ids,
|
432
444
|
state=self.state,
|
433
445
|
target_db_server_version=self.target_db_server_version,
|
434
446
|
target_resource_id=self.target_resource_id,
|
@@ -490,6 +502,7 @@ def get_maintenance_run(maintenance_run_id: Optional[str] = None,
|
|
490
502
|
patching_start_time=pulumi.get(__ret__, 'patching_start_time'),
|
491
503
|
patching_status=pulumi.get(__ret__, 'patching_status'),
|
492
504
|
peer_maintenance_run_id=pulumi.get(__ret__, 'peer_maintenance_run_id'),
|
505
|
+
peer_maintenance_run_ids=pulumi.get(__ret__, 'peer_maintenance_run_ids'),
|
493
506
|
state=pulumi.get(__ret__, 'state'),
|
494
507
|
target_db_server_version=pulumi.get(__ret__, 'target_db_server_version'),
|
495
508
|
target_resource_id=pulumi.get(__ret__, 'target_resource_id'),
|
@@ -548,6 +561,7 @@ def get_maintenance_run_output(maintenance_run_id: Optional[pulumi.Input[str]] =
|
|
548
561
|
patching_start_time=pulumi.get(__response__, 'patching_start_time'),
|
549
562
|
patching_status=pulumi.get(__response__, 'patching_status'),
|
550
563
|
peer_maintenance_run_id=pulumi.get(__response__, 'peer_maintenance_run_id'),
|
564
|
+
peer_maintenance_run_ids=pulumi.get(__response__, 'peer_maintenance_run_ids'),
|
551
565
|
state=pulumi.get(__response__, 'state'),
|
552
566
|
target_db_server_version=pulumi.get(__response__, 'target_db_server_version'),
|
553
567
|
target_resource_id=pulumi.get(__response__, 'target_resource_id'),
|