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,6 +27,7 @@ class AutonomousContainerDatabaseDataguardAssociationArgs:
|
|
27
27
|
autonomous_container_database_dataguard_association_id: Optional[pulumi.Input[str]] = None,
|
28
28
|
fast_start_fail_over_lag_limit_in_seconds: Optional[pulumi.Input[int]] = None,
|
29
29
|
is_automatic_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
30
|
+
migrate_trigger: Optional[pulumi.Input[int]] = None,
|
30
31
|
peer_autonomous_container_database_backup_config: Optional[pulumi.Input['AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgs']] = None,
|
31
32
|
peer_autonomous_container_database_compartment_id: Optional[pulumi.Input[str]] = None,
|
32
33
|
peer_autonomous_vm_cluster_id: Optional[pulumi.Input[str]] = None,
|
@@ -37,14 +38,14 @@ class AutonomousContainerDatabaseDataguardAssociationArgs:
|
|
37
38
|
The set of arguments for constructing a AutonomousContainerDatabaseDataguardAssociation resource.
|
38
39
|
:param pulumi.Input[str] autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
39
40
|
:param pulumi.Input[str] peer_autonomous_container_database_display_name: The display name for the peer Autonomous Container Database.
|
40
|
-
:param pulumi.Input[str] protection_mode: (Updatable) The protection mode of this Autonomous Data Guard association. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
|
41
|
-
|
41
|
+
:param pulumi.Input[str] protection_mode: (Updatable) The protection mode of this Autonomous Data Guard association. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
|
42
|
+
:param pulumi.Input[int] fast_start_fail_over_lag_limit_in_seconds: (Updatable) The lag time for my preference based on data loss tolerance in seconds.
|
43
|
+
:param pulumi.Input[bool] is_automatic_failover_enabled: (Updatable) Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association. Input DataType: boolean. Example : `is_automatic_failover_enabled = true`.
|
42
44
|
|
43
45
|
|
44
46
|
** IMPORTANT **
|
45
47
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
46
|
-
:param pulumi.Input[int]
|
47
|
-
:param pulumi.Input[bool] is_automatic_failover_enabled: (Updatable) Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association. Input DataType: boolean. Example : `is_automatic_failover_enabled = true`.
|
48
|
+
:param pulumi.Input[int] migrate_trigger: (Updatable) An optional property when incremented triggers Migrate. Could be set to any integer value.
|
48
49
|
:param pulumi.Input['AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgs'] peer_autonomous_container_database_backup_config: Backup options for the standby Autonomous Container Database.
|
49
50
|
:param pulumi.Input[str] peer_autonomous_container_database_compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment where the standby Autonomous Container Database will be created.
|
50
51
|
:param pulumi.Input[str] peer_autonomous_vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the peer Autonomous Exadata VM Cluster.
|
@@ -61,6 +62,8 @@ class AutonomousContainerDatabaseDataguardAssociationArgs:
|
|
61
62
|
pulumi.set(__self__, "fast_start_fail_over_lag_limit_in_seconds", fast_start_fail_over_lag_limit_in_seconds)
|
62
63
|
if is_automatic_failover_enabled is not None:
|
63
64
|
pulumi.set(__self__, "is_automatic_failover_enabled", is_automatic_failover_enabled)
|
65
|
+
if migrate_trigger is not None:
|
66
|
+
pulumi.set(__self__, "migrate_trigger", migrate_trigger)
|
64
67
|
if peer_autonomous_container_database_backup_config is not None:
|
65
68
|
pulumi.set(__self__, "peer_autonomous_container_database_backup_config", peer_autonomous_container_database_backup_config)
|
66
69
|
if peer_autonomous_container_database_compartment_id is not None:
|
@@ -102,12 +105,7 @@ class AutonomousContainerDatabaseDataguardAssociationArgs:
|
|
102
105
|
@pulumi.getter(name="protectionMode")
|
103
106
|
def protection_mode(self) -> pulumi.Input[str]:
|
104
107
|
"""
|
105
|
-
(Updatable) The protection mode of this Autonomous Data Guard association. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
** IMPORTANT **
|
110
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
108
|
+
(Updatable) The protection mode of this Autonomous Data Guard association. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
|
111
109
|
"""
|
112
110
|
return pulumi.get(self, "protection_mode")
|
113
111
|
|
@@ -141,6 +139,10 @@ class AutonomousContainerDatabaseDataguardAssociationArgs:
|
|
141
139
|
def is_automatic_failover_enabled(self) -> Optional[pulumi.Input[bool]]:
|
142
140
|
"""
|
143
141
|
(Updatable) Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association. Input DataType: boolean. Example : `is_automatic_failover_enabled = true`.
|
142
|
+
|
143
|
+
|
144
|
+
** IMPORTANT **
|
145
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
144
146
|
"""
|
145
147
|
return pulumi.get(self, "is_automatic_failover_enabled")
|
146
148
|
|
@@ -148,6 +150,18 @@ class AutonomousContainerDatabaseDataguardAssociationArgs:
|
|
148
150
|
def is_automatic_failover_enabled(self, value: Optional[pulumi.Input[bool]]):
|
149
151
|
pulumi.set(self, "is_automatic_failover_enabled", value)
|
150
152
|
|
153
|
+
@property
|
154
|
+
@pulumi.getter(name="migrateTrigger")
|
155
|
+
def migrate_trigger(self) -> Optional[pulumi.Input[int]]:
|
156
|
+
"""
|
157
|
+
(Updatable) An optional property when incremented triggers Migrate. Could be set to any integer value.
|
158
|
+
"""
|
159
|
+
return pulumi.get(self, "migrate_trigger")
|
160
|
+
|
161
|
+
@migrate_trigger.setter
|
162
|
+
def migrate_trigger(self, value: Optional[pulumi.Input[int]]):
|
163
|
+
pulumi.set(self, "migrate_trigger", value)
|
164
|
+
|
151
165
|
@property
|
152
166
|
@pulumi.getter(name="peerAutonomousContainerDatabaseBackupConfig")
|
153
167
|
def peer_autonomous_container_database_backup_config(self) -> Optional[pulumi.Input['AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgs']]:
|
@@ -231,6 +245,7 @@ class _AutonomousContainerDatabaseDataguardAssociationState:
|
|
231
245
|
fast_start_fail_over_lag_limit_in_seconds: Optional[pulumi.Input[int]] = None,
|
232
246
|
is_automatic_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
233
247
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
248
|
+
migrate_trigger: Optional[pulumi.Input[int]] = None,
|
234
249
|
peer_autonomous_container_database_backup_config: Optional[pulumi.Input['AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgs']] = None,
|
235
250
|
peer_autonomous_container_database_compartment_id: Optional[pulumi.Input[str]] = None,
|
236
251
|
peer_autonomous_container_database_dataguard_association_id: Optional[pulumi.Input[str]] = None,
|
@@ -256,7 +271,12 @@ class _AutonomousContainerDatabaseDataguardAssociationState:
|
|
256
271
|
:param pulumi.Input[str] autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
257
272
|
:param pulumi.Input[int] fast_start_fail_over_lag_limit_in_seconds: (Updatable) The lag time for my preference based on data loss tolerance in seconds.
|
258
273
|
:param pulumi.Input[bool] is_automatic_failover_enabled: (Updatable) Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association. Input DataType: boolean. Example : `is_automatic_failover_enabled = true`.
|
274
|
+
|
275
|
+
|
276
|
+
** IMPORTANT **
|
277
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
259
278
|
:param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycleState, if available.
|
279
|
+
:param pulumi.Input[int] migrate_trigger: (Updatable) An optional property when incremented triggers Migrate. Could be set to any integer value.
|
260
280
|
:param pulumi.Input['AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgs'] peer_autonomous_container_database_backup_config: Backup options for the standby Autonomous Container Database.
|
261
281
|
:param pulumi.Input[str] peer_autonomous_container_database_compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment where the standby Autonomous Container Database will be created.
|
262
282
|
:param pulumi.Input[str] peer_autonomous_container_database_dataguard_association_id: The OCID of the peer Autonomous Container Database-Autonomous Data Guard association.
|
@@ -267,12 +287,7 @@ class _AutonomousContainerDatabaseDataguardAssociationState:
|
|
267
287
|
:param pulumi.Input[str] peer_db_unique_name: Specifies the `DB_UNIQUE_NAME` of the peer database to be created.
|
268
288
|
:param pulumi.Input[str] peer_lifecycle_state: The current state of the Autonomous Container Database.
|
269
289
|
:param pulumi.Input[str] peer_role: The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
|
270
|
-
:param pulumi.Input[str] protection_mode: (Updatable) The protection mode of this Autonomous Data Guard association. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
** IMPORTANT **
|
275
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
290
|
+
:param pulumi.Input[str] protection_mode: (Updatable) The protection mode of this Autonomous Data Guard association. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
|
276
291
|
:param pulumi.Input[str] role: The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
|
277
292
|
:param pulumi.Input[int] standby_maintenance_buffer_in_days: The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before scheduled maintenance of the primary database.
|
278
293
|
:param pulumi.Input[str] state: The current state of Autonomous Data Guard.
|
@@ -295,6 +310,8 @@ class _AutonomousContainerDatabaseDataguardAssociationState:
|
|
295
310
|
pulumi.set(__self__, "is_automatic_failover_enabled", is_automatic_failover_enabled)
|
296
311
|
if lifecycle_details is not None:
|
297
312
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
313
|
+
if migrate_trigger is not None:
|
314
|
+
pulumi.set(__self__, "migrate_trigger", migrate_trigger)
|
298
315
|
if peer_autonomous_container_database_backup_config is not None:
|
299
316
|
pulumi.set(__self__, "peer_autonomous_container_database_backup_config", peer_autonomous_container_database_backup_config)
|
300
317
|
if peer_autonomous_container_database_compartment_id is not None:
|
@@ -394,6 +411,10 @@ class _AutonomousContainerDatabaseDataguardAssociationState:
|
|
394
411
|
def is_automatic_failover_enabled(self) -> Optional[pulumi.Input[bool]]:
|
395
412
|
"""
|
396
413
|
(Updatable) Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association. Input DataType: boolean. Example : `is_automatic_failover_enabled = true`.
|
414
|
+
|
415
|
+
|
416
|
+
** IMPORTANT **
|
417
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
397
418
|
"""
|
398
419
|
return pulumi.get(self, "is_automatic_failover_enabled")
|
399
420
|
|
@@ -413,6 +434,18 @@ class _AutonomousContainerDatabaseDataguardAssociationState:
|
|
413
434
|
def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
|
414
435
|
pulumi.set(self, "lifecycle_details", value)
|
415
436
|
|
437
|
+
@property
|
438
|
+
@pulumi.getter(name="migrateTrigger")
|
439
|
+
def migrate_trigger(self) -> Optional[pulumi.Input[int]]:
|
440
|
+
"""
|
441
|
+
(Updatable) An optional property when incremented triggers Migrate. Could be set to any integer value.
|
442
|
+
"""
|
443
|
+
return pulumi.get(self, "migrate_trigger")
|
444
|
+
|
445
|
+
@migrate_trigger.setter
|
446
|
+
def migrate_trigger(self, value: Optional[pulumi.Input[int]]):
|
447
|
+
pulumi.set(self, "migrate_trigger", value)
|
448
|
+
|
416
449
|
@property
|
417
450
|
@pulumi.getter(name="peerAutonomousContainerDatabaseBackupConfig")
|
418
451
|
def peer_autonomous_container_database_backup_config(self) -> Optional[pulumi.Input['AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgs']]:
|
@@ -537,12 +570,7 @@ class _AutonomousContainerDatabaseDataguardAssociationState:
|
|
537
570
|
@pulumi.getter(name="protectionMode")
|
538
571
|
def protection_mode(self) -> Optional[pulumi.Input[str]]:
|
539
572
|
"""
|
540
|
-
(Updatable) The protection mode of this Autonomous Data Guard association. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
** IMPORTANT **
|
545
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
573
|
+
(Updatable) The protection mode of this Autonomous Data Guard association. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
|
546
574
|
"""
|
547
575
|
return pulumi.get(self, "protection_mode")
|
548
576
|
|
@@ -644,6 +672,7 @@ class AutonomousContainerDatabaseDataguardAssociation(pulumi.CustomResource):
|
|
644
672
|
autonomous_container_database_id: Optional[pulumi.Input[str]] = None,
|
645
673
|
fast_start_fail_over_lag_limit_in_seconds: Optional[pulumi.Input[int]] = None,
|
646
674
|
is_automatic_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
675
|
+
migrate_trigger: Optional[pulumi.Input[int]] = None,
|
647
676
|
peer_autonomous_container_database_backup_config: Optional[pulumi.Input[Union['AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgs', 'AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgsDict']]] = None,
|
648
677
|
peer_autonomous_container_database_compartment_id: Optional[pulumi.Input[str]] = None,
|
649
678
|
peer_autonomous_container_database_display_name: Optional[pulumi.Input[str]] = None,
|
@@ -708,18 +737,18 @@ class AutonomousContainerDatabaseDataguardAssociation(pulumi.CustomResource):
|
|
708
737
|
:param pulumi.Input[str] autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
709
738
|
:param pulumi.Input[int] fast_start_fail_over_lag_limit_in_seconds: (Updatable) The lag time for my preference based on data loss tolerance in seconds.
|
710
739
|
:param pulumi.Input[bool] is_automatic_failover_enabled: (Updatable) Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association. Input DataType: boolean. Example : `is_automatic_failover_enabled = true`.
|
740
|
+
|
741
|
+
|
742
|
+
** IMPORTANT **
|
743
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
744
|
+
:param pulumi.Input[int] migrate_trigger: (Updatable) An optional property when incremented triggers Migrate. Could be set to any integer value.
|
711
745
|
:param pulumi.Input[Union['AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgs', 'AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgsDict']] peer_autonomous_container_database_backup_config: Backup options for the standby Autonomous Container Database.
|
712
746
|
:param pulumi.Input[str] peer_autonomous_container_database_compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment where the standby Autonomous Container Database will be created.
|
713
747
|
:param pulumi.Input[str] peer_autonomous_container_database_display_name: The display name for the peer Autonomous Container Database.
|
714
748
|
:param pulumi.Input[str] peer_autonomous_vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the peer Autonomous Exadata VM Cluster.
|
715
749
|
:param pulumi.Input[str] peer_cloud_autonomous_vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the peer cloud Autonomous Exadata VM Cluster.
|
716
750
|
:param pulumi.Input[str] peer_db_unique_name: Specifies the `DB_UNIQUE_NAME` of the peer database to be created.
|
717
|
-
:param pulumi.Input[str] protection_mode: (Updatable) The protection mode of this Autonomous Data Guard association. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
** IMPORTANT **
|
722
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
751
|
+
:param pulumi.Input[str] protection_mode: (Updatable) The protection mode of this Autonomous Data Guard association. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
|
723
752
|
:param pulumi.Input[int] standby_maintenance_buffer_in_days: The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before scheduled maintenance of the primary database.
|
724
753
|
"""
|
725
754
|
...
|
@@ -797,6 +826,7 @@ class AutonomousContainerDatabaseDataguardAssociation(pulumi.CustomResource):
|
|
797
826
|
autonomous_container_database_id: Optional[pulumi.Input[str]] = None,
|
798
827
|
fast_start_fail_over_lag_limit_in_seconds: Optional[pulumi.Input[int]] = None,
|
799
828
|
is_automatic_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
829
|
+
migrate_trigger: Optional[pulumi.Input[int]] = None,
|
800
830
|
peer_autonomous_container_database_backup_config: Optional[pulumi.Input[Union['AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgs', 'AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgsDict']]] = None,
|
801
831
|
peer_autonomous_container_database_compartment_id: Optional[pulumi.Input[str]] = None,
|
802
832
|
peer_autonomous_container_database_display_name: Optional[pulumi.Input[str]] = None,
|
@@ -820,6 +850,7 @@ class AutonomousContainerDatabaseDataguardAssociation(pulumi.CustomResource):
|
|
820
850
|
__props__.__dict__["autonomous_container_database_id"] = autonomous_container_database_id
|
821
851
|
__props__.__dict__["fast_start_fail_over_lag_limit_in_seconds"] = fast_start_fail_over_lag_limit_in_seconds
|
822
852
|
__props__.__dict__["is_automatic_failover_enabled"] = is_automatic_failover_enabled
|
853
|
+
__props__.__dict__["migrate_trigger"] = migrate_trigger
|
823
854
|
__props__.__dict__["peer_autonomous_container_database_backup_config"] = peer_autonomous_container_database_backup_config
|
824
855
|
__props__.__dict__["peer_autonomous_container_database_compartment_id"] = peer_autonomous_container_database_compartment_id
|
825
856
|
if peer_autonomous_container_database_display_name is None and not opts.urn:
|
@@ -862,6 +893,7 @@ class AutonomousContainerDatabaseDataguardAssociation(pulumi.CustomResource):
|
|
862
893
|
fast_start_fail_over_lag_limit_in_seconds: Optional[pulumi.Input[int]] = None,
|
863
894
|
is_automatic_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
864
895
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
896
|
+
migrate_trigger: Optional[pulumi.Input[int]] = None,
|
865
897
|
peer_autonomous_container_database_backup_config: Optional[pulumi.Input[Union['AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgs', 'AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgsDict']]] = None,
|
866
898
|
peer_autonomous_container_database_compartment_id: Optional[pulumi.Input[str]] = None,
|
867
899
|
peer_autonomous_container_database_dataguard_association_id: Optional[pulumi.Input[str]] = None,
|
@@ -892,7 +924,12 @@ class AutonomousContainerDatabaseDataguardAssociation(pulumi.CustomResource):
|
|
892
924
|
:param pulumi.Input[str] autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
893
925
|
:param pulumi.Input[int] fast_start_fail_over_lag_limit_in_seconds: (Updatable) The lag time for my preference based on data loss tolerance in seconds.
|
894
926
|
:param pulumi.Input[bool] is_automatic_failover_enabled: (Updatable) Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association. Input DataType: boolean. Example : `is_automatic_failover_enabled = true`.
|
927
|
+
|
928
|
+
|
929
|
+
** IMPORTANT **
|
930
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
895
931
|
:param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycleState, if available.
|
932
|
+
:param pulumi.Input[int] migrate_trigger: (Updatable) An optional property when incremented triggers Migrate. Could be set to any integer value.
|
896
933
|
:param pulumi.Input[Union['AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgs', 'AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgsDict']] peer_autonomous_container_database_backup_config: Backup options for the standby Autonomous Container Database.
|
897
934
|
:param pulumi.Input[str] peer_autonomous_container_database_compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment where the standby Autonomous Container Database will be created.
|
898
935
|
:param pulumi.Input[str] peer_autonomous_container_database_dataguard_association_id: The OCID of the peer Autonomous Container Database-Autonomous Data Guard association.
|
@@ -903,12 +940,7 @@ class AutonomousContainerDatabaseDataguardAssociation(pulumi.CustomResource):
|
|
903
940
|
:param pulumi.Input[str] peer_db_unique_name: Specifies the `DB_UNIQUE_NAME` of the peer database to be created.
|
904
941
|
:param pulumi.Input[str] peer_lifecycle_state: The current state of the Autonomous Container Database.
|
905
942
|
:param pulumi.Input[str] peer_role: The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
|
906
|
-
:param pulumi.Input[str] protection_mode: (Updatable) The protection mode of this Autonomous Data Guard association. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
|
907
|
-
|
908
|
-
|
909
|
-
|
910
|
-
** IMPORTANT **
|
911
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
943
|
+
:param pulumi.Input[str] protection_mode: (Updatable) The protection mode of this Autonomous Data Guard association. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
|
912
944
|
:param pulumi.Input[str] role: The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
|
913
945
|
:param pulumi.Input[int] standby_maintenance_buffer_in_days: The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before scheduled maintenance of the primary database.
|
914
946
|
:param pulumi.Input[str] state: The current state of Autonomous Data Guard.
|
@@ -928,6 +960,7 @@ class AutonomousContainerDatabaseDataguardAssociation(pulumi.CustomResource):
|
|
928
960
|
__props__.__dict__["fast_start_fail_over_lag_limit_in_seconds"] = fast_start_fail_over_lag_limit_in_seconds
|
929
961
|
__props__.__dict__["is_automatic_failover_enabled"] = is_automatic_failover_enabled
|
930
962
|
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
963
|
+
__props__.__dict__["migrate_trigger"] = migrate_trigger
|
931
964
|
__props__.__dict__["peer_autonomous_container_database_backup_config"] = peer_autonomous_container_database_backup_config
|
932
965
|
__props__.__dict__["peer_autonomous_container_database_compartment_id"] = peer_autonomous_container_database_compartment_id
|
933
966
|
__props__.__dict__["peer_autonomous_container_database_dataguard_association_id"] = peer_autonomous_container_database_dataguard_association_id
|
@@ -990,6 +1023,10 @@ class AutonomousContainerDatabaseDataguardAssociation(pulumi.CustomResource):
|
|
990
1023
|
def is_automatic_failover_enabled(self) -> pulumi.Output[bool]:
|
991
1024
|
"""
|
992
1025
|
(Updatable) Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association. Input DataType: boolean. Example : `is_automatic_failover_enabled = true`.
|
1026
|
+
|
1027
|
+
|
1028
|
+
** IMPORTANT **
|
1029
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
993
1030
|
"""
|
994
1031
|
return pulumi.get(self, "is_automatic_failover_enabled")
|
995
1032
|
|
@@ -1001,6 +1038,14 @@ class AutonomousContainerDatabaseDataguardAssociation(pulumi.CustomResource):
|
|
1001
1038
|
"""
|
1002
1039
|
return pulumi.get(self, "lifecycle_details")
|
1003
1040
|
|
1041
|
+
@property
|
1042
|
+
@pulumi.getter(name="migrateTrigger")
|
1043
|
+
def migrate_trigger(self) -> pulumi.Output[Optional[int]]:
|
1044
|
+
"""
|
1045
|
+
(Updatable) An optional property when incremented triggers Migrate. Could be set to any integer value.
|
1046
|
+
"""
|
1047
|
+
return pulumi.get(self, "migrate_trigger")
|
1048
|
+
|
1004
1049
|
@property
|
1005
1050
|
@pulumi.getter(name="peerAutonomousContainerDatabaseBackupConfig")
|
1006
1051
|
def peer_autonomous_container_database_backup_config(self) -> pulumi.Output['outputs.AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfig']:
|
@@ -1085,12 +1130,7 @@ class AutonomousContainerDatabaseDataguardAssociation(pulumi.CustomResource):
|
|
1085
1130
|
@pulumi.getter(name="protectionMode")
|
1086
1131
|
def protection_mode(self) -> pulumi.Output[str]:
|
1087
1132
|
"""
|
1088
|
-
(Updatable) The protection mode of this Autonomous Data Guard association. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
|
1089
|
-
|
1090
|
-
|
1091
|
-
|
1092
|
-
** IMPORTANT **
|
1093
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1133
|
+
(Updatable) The protection mode of this Autonomous Data Guard association. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
|
1094
1134
|
"""
|
1095
1135
|
return pulumi.get(self, "protection_mode")
|
1096
1136
|
|
@@ -0,0 +1,322 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
|
17
|
+
__all__ = ['AutonomousContainerDatabaseSnapshotStandbyArgs', 'AutonomousContainerDatabaseSnapshotStandby']
|
18
|
+
|
19
|
+
@pulumi.input_type
|
20
|
+
class AutonomousContainerDatabaseSnapshotStandbyArgs:
|
21
|
+
def __init__(__self__, *,
|
22
|
+
autonomous_container_database_id: pulumi.Input[str],
|
23
|
+
role: pulumi.Input[str],
|
24
|
+
connection_strings_type: Optional[pulumi.Input[str]] = None):
|
25
|
+
"""
|
26
|
+
The set of arguments for constructing a AutonomousContainerDatabaseSnapshotStandby resource.
|
27
|
+
:param pulumi.Input[str] autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
28
|
+
:param pulumi.Input[str] role: The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
|
29
|
+
|
30
|
+
|
31
|
+
** IMPORTANT **
|
32
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
33
|
+
:param pulumi.Input[str] connection_strings_type: type of connection strings when converting database to snapshot mode
|
34
|
+
"""
|
35
|
+
pulumi.set(__self__, "autonomous_container_database_id", autonomous_container_database_id)
|
36
|
+
pulumi.set(__self__, "role", role)
|
37
|
+
if connection_strings_type is not None:
|
38
|
+
pulumi.set(__self__, "connection_strings_type", connection_strings_type)
|
39
|
+
|
40
|
+
@property
|
41
|
+
@pulumi.getter(name="autonomousContainerDatabaseId")
|
42
|
+
def autonomous_container_database_id(self) -> pulumi.Input[str]:
|
43
|
+
"""
|
44
|
+
The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
45
|
+
"""
|
46
|
+
return pulumi.get(self, "autonomous_container_database_id")
|
47
|
+
|
48
|
+
@autonomous_container_database_id.setter
|
49
|
+
def autonomous_container_database_id(self, value: pulumi.Input[str]):
|
50
|
+
pulumi.set(self, "autonomous_container_database_id", value)
|
51
|
+
|
52
|
+
@property
|
53
|
+
@pulumi.getter
|
54
|
+
def role(self) -> pulumi.Input[str]:
|
55
|
+
"""
|
56
|
+
The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
|
57
|
+
|
58
|
+
|
59
|
+
** IMPORTANT **
|
60
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
61
|
+
"""
|
62
|
+
return pulumi.get(self, "role")
|
63
|
+
|
64
|
+
@role.setter
|
65
|
+
def role(self, value: pulumi.Input[str]):
|
66
|
+
pulumi.set(self, "role", value)
|
67
|
+
|
68
|
+
@property
|
69
|
+
@pulumi.getter(name="connectionStringsType")
|
70
|
+
def connection_strings_type(self) -> Optional[pulumi.Input[str]]:
|
71
|
+
"""
|
72
|
+
type of connection strings when converting database to snapshot mode
|
73
|
+
"""
|
74
|
+
return pulumi.get(self, "connection_strings_type")
|
75
|
+
|
76
|
+
@connection_strings_type.setter
|
77
|
+
def connection_strings_type(self, value: Optional[pulumi.Input[str]]):
|
78
|
+
pulumi.set(self, "connection_strings_type", value)
|
79
|
+
|
80
|
+
|
81
|
+
@pulumi.input_type
|
82
|
+
class _AutonomousContainerDatabaseSnapshotStandbyState:
|
83
|
+
def __init__(__self__, *,
|
84
|
+
autonomous_container_database_id: Optional[pulumi.Input[str]] = None,
|
85
|
+
connection_strings_type: Optional[pulumi.Input[str]] = None,
|
86
|
+
role: Optional[pulumi.Input[str]] = None):
|
87
|
+
"""
|
88
|
+
Input properties used for looking up and filtering AutonomousContainerDatabaseSnapshotStandby resources.
|
89
|
+
:param pulumi.Input[str] autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
90
|
+
:param pulumi.Input[str] connection_strings_type: type of connection strings when converting database to snapshot mode
|
91
|
+
:param pulumi.Input[str] role: The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
|
92
|
+
|
93
|
+
|
94
|
+
** IMPORTANT **
|
95
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
96
|
+
"""
|
97
|
+
if autonomous_container_database_id is not None:
|
98
|
+
pulumi.set(__self__, "autonomous_container_database_id", autonomous_container_database_id)
|
99
|
+
if connection_strings_type is not None:
|
100
|
+
pulumi.set(__self__, "connection_strings_type", connection_strings_type)
|
101
|
+
if role is not None:
|
102
|
+
pulumi.set(__self__, "role", role)
|
103
|
+
|
104
|
+
@property
|
105
|
+
@pulumi.getter(name="autonomousContainerDatabaseId")
|
106
|
+
def autonomous_container_database_id(self) -> Optional[pulumi.Input[str]]:
|
107
|
+
"""
|
108
|
+
The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
109
|
+
"""
|
110
|
+
return pulumi.get(self, "autonomous_container_database_id")
|
111
|
+
|
112
|
+
@autonomous_container_database_id.setter
|
113
|
+
def autonomous_container_database_id(self, value: Optional[pulumi.Input[str]]):
|
114
|
+
pulumi.set(self, "autonomous_container_database_id", value)
|
115
|
+
|
116
|
+
@property
|
117
|
+
@pulumi.getter(name="connectionStringsType")
|
118
|
+
def connection_strings_type(self) -> Optional[pulumi.Input[str]]:
|
119
|
+
"""
|
120
|
+
type of connection strings when converting database to snapshot mode
|
121
|
+
"""
|
122
|
+
return pulumi.get(self, "connection_strings_type")
|
123
|
+
|
124
|
+
@connection_strings_type.setter
|
125
|
+
def connection_strings_type(self, value: Optional[pulumi.Input[str]]):
|
126
|
+
pulumi.set(self, "connection_strings_type", value)
|
127
|
+
|
128
|
+
@property
|
129
|
+
@pulumi.getter
|
130
|
+
def role(self) -> Optional[pulumi.Input[str]]:
|
131
|
+
"""
|
132
|
+
The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
|
133
|
+
|
134
|
+
|
135
|
+
** IMPORTANT **
|
136
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
137
|
+
"""
|
138
|
+
return pulumi.get(self, "role")
|
139
|
+
|
140
|
+
@role.setter
|
141
|
+
def role(self, value: Optional[pulumi.Input[str]]):
|
142
|
+
pulumi.set(self, "role", value)
|
143
|
+
|
144
|
+
|
145
|
+
class AutonomousContainerDatabaseSnapshotStandby(pulumi.CustomResource):
|
146
|
+
@overload
|
147
|
+
def __init__(__self__,
|
148
|
+
resource_name: str,
|
149
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
150
|
+
autonomous_container_database_id: Optional[pulumi.Input[str]] = None,
|
151
|
+
connection_strings_type: Optional[pulumi.Input[str]] = None,
|
152
|
+
role: Optional[pulumi.Input[str]] = None,
|
153
|
+
__props__=None):
|
154
|
+
"""
|
155
|
+
This resource provides the Autonomous Container Database Snapshot Standby resource in Oracle Cloud Infrastructure Database service.
|
156
|
+
|
157
|
+
Convert between and SnapshotStandby Standby Autonomous Container Database .
|
158
|
+
For more information about changing Autonomous Container Databases Add Standby, see
|
159
|
+
[Convert Standby Autonomous Container Database](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/adbcl/index.html#ADBCL-GUID-D3B503F1-0032-4B0D-9F00-ACAE8151AB80) and [Convert Snapshot Standby to Physical Standby](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/adbcl/index.html#ADBCL-GUID-E8D7E0EE-8244-467D-B33A-1BC6F969A0A4).
|
160
|
+
|
161
|
+
## Example Usage
|
162
|
+
|
163
|
+
```python
|
164
|
+
import pulumi
|
165
|
+
import pulumi_oci as oci
|
166
|
+
|
167
|
+
test_autonomous_container_database_snapshot_standby = oci.database.AutonomousContainerDatabaseSnapshotStandby("test_autonomous_container_database_snapshot_standby",
|
168
|
+
autonomous_container_database_id=test_autonomous_container_database["id"],
|
169
|
+
role=autonomous_container_database_snapshot_standby_role,
|
170
|
+
connection_strings_type=autonomous_container_database_snapshot_standby_connection_strings_type)
|
171
|
+
```
|
172
|
+
|
173
|
+
## Import
|
174
|
+
|
175
|
+
AutonomousContainerDatabaseSnapshotStandby can be imported using the `id`, e.g.
|
176
|
+
|
177
|
+
```sh
|
178
|
+
$ pulumi import oci:Database/autonomousContainerDatabaseSnapshotStandby:AutonomousContainerDatabaseSnapshotStandby test_autonomous_container_database_snapshot_standby "id"
|
179
|
+
```
|
180
|
+
|
181
|
+
:param str resource_name: The name of the resource.
|
182
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
183
|
+
:param pulumi.Input[str] autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
184
|
+
:param pulumi.Input[str] connection_strings_type: type of connection strings when converting database to snapshot mode
|
185
|
+
:param pulumi.Input[str] role: The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
|
186
|
+
|
187
|
+
|
188
|
+
** IMPORTANT **
|
189
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
190
|
+
"""
|
191
|
+
...
|
192
|
+
@overload
|
193
|
+
def __init__(__self__,
|
194
|
+
resource_name: str,
|
195
|
+
args: AutonomousContainerDatabaseSnapshotStandbyArgs,
|
196
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
197
|
+
"""
|
198
|
+
This resource provides the Autonomous Container Database Snapshot Standby resource in Oracle Cloud Infrastructure Database service.
|
199
|
+
|
200
|
+
Convert between and SnapshotStandby Standby Autonomous Container Database .
|
201
|
+
For more information about changing Autonomous Container Databases Add Standby, see
|
202
|
+
[Convert Standby Autonomous Container Database](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/adbcl/index.html#ADBCL-GUID-D3B503F1-0032-4B0D-9F00-ACAE8151AB80) and [Convert Snapshot Standby to Physical Standby](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/adbcl/index.html#ADBCL-GUID-E8D7E0EE-8244-467D-B33A-1BC6F969A0A4).
|
203
|
+
|
204
|
+
## Example Usage
|
205
|
+
|
206
|
+
```python
|
207
|
+
import pulumi
|
208
|
+
import pulumi_oci as oci
|
209
|
+
|
210
|
+
test_autonomous_container_database_snapshot_standby = oci.database.AutonomousContainerDatabaseSnapshotStandby("test_autonomous_container_database_snapshot_standby",
|
211
|
+
autonomous_container_database_id=test_autonomous_container_database["id"],
|
212
|
+
role=autonomous_container_database_snapshot_standby_role,
|
213
|
+
connection_strings_type=autonomous_container_database_snapshot_standby_connection_strings_type)
|
214
|
+
```
|
215
|
+
|
216
|
+
## Import
|
217
|
+
|
218
|
+
AutonomousContainerDatabaseSnapshotStandby can be imported using the `id`, e.g.
|
219
|
+
|
220
|
+
```sh
|
221
|
+
$ pulumi import oci:Database/autonomousContainerDatabaseSnapshotStandby:AutonomousContainerDatabaseSnapshotStandby test_autonomous_container_database_snapshot_standby "id"
|
222
|
+
```
|
223
|
+
|
224
|
+
:param str resource_name: The name of the resource.
|
225
|
+
:param AutonomousContainerDatabaseSnapshotStandbyArgs args: The arguments to use to populate this resource's properties.
|
226
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
227
|
+
"""
|
228
|
+
...
|
229
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
230
|
+
resource_args, opts = _utilities.get_resource_args_opts(AutonomousContainerDatabaseSnapshotStandbyArgs, pulumi.ResourceOptions, *args, **kwargs)
|
231
|
+
if resource_args is not None:
|
232
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
233
|
+
else:
|
234
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
235
|
+
|
236
|
+
def _internal_init(__self__,
|
237
|
+
resource_name: str,
|
238
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
239
|
+
autonomous_container_database_id: Optional[pulumi.Input[str]] = None,
|
240
|
+
connection_strings_type: Optional[pulumi.Input[str]] = None,
|
241
|
+
role: Optional[pulumi.Input[str]] = None,
|
242
|
+
__props__=None):
|
243
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
244
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
245
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
246
|
+
if opts.id is None:
|
247
|
+
if __props__ is not None:
|
248
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
249
|
+
__props__ = AutonomousContainerDatabaseSnapshotStandbyArgs.__new__(AutonomousContainerDatabaseSnapshotStandbyArgs)
|
250
|
+
|
251
|
+
if autonomous_container_database_id is None and not opts.urn:
|
252
|
+
raise TypeError("Missing required property 'autonomous_container_database_id'")
|
253
|
+
__props__.__dict__["autonomous_container_database_id"] = autonomous_container_database_id
|
254
|
+
__props__.__dict__["connection_strings_type"] = connection_strings_type
|
255
|
+
if role is None and not opts.urn:
|
256
|
+
raise TypeError("Missing required property 'role'")
|
257
|
+
__props__.__dict__["role"] = role
|
258
|
+
super(AutonomousContainerDatabaseSnapshotStandby, __self__).__init__(
|
259
|
+
'oci:Database/autonomousContainerDatabaseSnapshotStandby:AutonomousContainerDatabaseSnapshotStandby',
|
260
|
+
resource_name,
|
261
|
+
__props__,
|
262
|
+
opts)
|
263
|
+
|
264
|
+
@staticmethod
|
265
|
+
def get(resource_name: str,
|
266
|
+
id: pulumi.Input[str],
|
267
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
268
|
+
autonomous_container_database_id: Optional[pulumi.Input[str]] = None,
|
269
|
+
connection_strings_type: Optional[pulumi.Input[str]] = None,
|
270
|
+
role: Optional[pulumi.Input[str]] = None) -> 'AutonomousContainerDatabaseSnapshotStandby':
|
271
|
+
"""
|
272
|
+
Get an existing AutonomousContainerDatabaseSnapshotStandby resource's state with the given name, id, and optional extra
|
273
|
+
properties used to qualify the lookup.
|
274
|
+
|
275
|
+
:param str resource_name: The unique name of the resulting resource.
|
276
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
277
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
278
|
+
:param pulumi.Input[str] autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
279
|
+
:param pulumi.Input[str] connection_strings_type: type of connection strings when converting database to snapshot mode
|
280
|
+
:param pulumi.Input[str] role: The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
|
281
|
+
|
282
|
+
|
283
|
+
** IMPORTANT **
|
284
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
285
|
+
"""
|
286
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
287
|
+
|
288
|
+
__props__ = _AutonomousContainerDatabaseSnapshotStandbyState.__new__(_AutonomousContainerDatabaseSnapshotStandbyState)
|
289
|
+
|
290
|
+
__props__.__dict__["autonomous_container_database_id"] = autonomous_container_database_id
|
291
|
+
__props__.__dict__["connection_strings_type"] = connection_strings_type
|
292
|
+
__props__.__dict__["role"] = role
|
293
|
+
return AutonomousContainerDatabaseSnapshotStandby(resource_name, opts=opts, __props__=__props__)
|
294
|
+
|
295
|
+
@property
|
296
|
+
@pulumi.getter(name="autonomousContainerDatabaseId")
|
297
|
+
def autonomous_container_database_id(self) -> pulumi.Output[str]:
|
298
|
+
"""
|
299
|
+
The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
300
|
+
"""
|
301
|
+
return pulumi.get(self, "autonomous_container_database_id")
|
302
|
+
|
303
|
+
@property
|
304
|
+
@pulumi.getter(name="connectionStringsType")
|
305
|
+
def connection_strings_type(self) -> pulumi.Output[str]:
|
306
|
+
"""
|
307
|
+
type of connection strings when converting database to snapshot mode
|
308
|
+
"""
|
309
|
+
return pulumi.get(self, "connection_strings_type")
|
310
|
+
|
311
|
+
@property
|
312
|
+
@pulumi.getter
|
313
|
+
def role(self) -> pulumi.Output[str]:
|
314
|
+
"""
|
315
|
+
The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
|
316
|
+
|
317
|
+
|
318
|
+
** IMPORTANT **
|
319
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
320
|
+
"""
|
321
|
+
return pulumi.get(self, "role")
|
322
|
+
|