pulumi-oci 2.27.0a1742279484__py3-none-any.whl → 2.27.0a1742444119__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.
Files changed (84) hide show
  1. pulumi_oci/__init__.py +144 -0
  2. pulumi_oci/containerengine/_inputs.py +9 -9
  3. pulumi_oci/containerengine/outputs.py +18 -22
  4. pulumi_oci/core/__init__.py +7 -0
  5. pulumi_oci/core/_inputs.py +147 -0
  6. pulumi_oci/core/compute_gpu_memory_cluster.py +706 -0
  7. pulumi_oci/core/compute_gpu_memory_fabric.py +667 -0
  8. pulumi_oci/core/get_compute_gpu_memory_cluster.py +281 -0
  9. pulumi_oci/core/get_compute_gpu_memory_cluster_instances.py +144 -0
  10. pulumi_oci/core/get_compute_gpu_memory_clusters.py +232 -0
  11. pulumi_oci/core/get_compute_gpu_memory_fabric.py +309 -0
  12. pulumi_oci/core/get_compute_gpu_memory_fabrics.py +289 -0
  13. pulumi_oci/core/outputs.py +582 -0
  14. pulumi_oci/database/__init__.py +2 -0
  15. pulumi_oci/database/_inputs.py +2211 -24
  16. pulumi_oci/database/autonomous_container_database.py +305 -52
  17. pulumi_oci/database/autonomous_container_database_add_standby.py +2183 -0
  18. pulumi_oci/database/autonomous_container_database_dataguard_association.py +80 -40
  19. pulumi_oci/database/autonomous_container_database_snapshot_standby.py +322 -0
  20. pulumi_oci/database/get_autonomous_container_database.py +103 -2
  21. pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +12 -1
  22. pulumi_oci/database/get_autonomous_container_databases.py +1 -1
  23. pulumi_oci/database/get_maintenance_run.py +15 -1
  24. pulumi_oci/database/maintenance_run.py +28 -0
  25. pulumi_oci/database/outputs.py +2747 -225
  26. pulumi_oci/goldengate/_inputs.py +128 -0
  27. pulumi_oci/goldengate/deployment.py +103 -0
  28. pulumi_oci/goldengate/deployment_backup.py +28 -0
  29. pulumi_oci/goldengate/get_deployment.py +43 -1
  30. pulumi_oci/goldengate/get_deployment_backup.py +15 -1
  31. pulumi_oci/goldengate/outputs.py +289 -0
  32. pulumi_oci/osmanagementhub/__init__.py +18 -0
  33. pulumi_oci/osmanagementhub/_inputs.py +677 -12
  34. pulumi_oci/osmanagementhub/event.py +8 -0
  35. pulumi_oci/osmanagementhub/get_entitlements.py +2 -2
  36. pulumi_oci/osmanagementhub/get_event.py +2 -0
  37. pulumi_oci/osmanagementhub/get_events.py +2 -0
  38. pulumi_oci/osmanagementhub/get_managed_instance.py +30 -2
  39. pulumi_oci/osmanagementhub/get_managed_instances.py +75 -63
  40. pulumi_oci/osmanagementhub/get_management_station.py +116 -4
  41. pulumi_oci/osmanagementhub/get_management_station_mirrors.py +1 -1
  42. pulumi_oci/osmanagementhub/get_management_stations.py +47 -4
  43. pulumi_oci/osmanagementhub/get_profile.py +32 -4
  44. pulumi_oci/osmanagementhub/get_profile_available_software_sources.py +207 -0
  45. pulumi_oci/osmanagementhub/get_profile_version.py +388 -0
  46. pulumi_oci/osmanagementhub/get_profiles.py +63 -3
  47. pulumi_oci/osmanagementhub/get_scheduled_job.py +15 -1
  48. pulumi_oci/osmanagementhub/get_software_package.py +2 -2
  49. pulumi_oci/osmanagementhub/get_software_package_software_source.py +7 -7
  50. pulumi_oci/osmanagementhub/get_software_source.py +89 -5
  51. pulumi_oci/osmanagementhub/get_software_source_available_software_packages.py +209 -0
  52. pulumi_oci/osmanagementhub/get_software_source_manifest.py +127 -0
  53. pulumi_oci/osmanagementhub/get_software_sources.py +30 -8
  54. pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +6 -39
  55. pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +6 -39
  56. pulumi_oci/osmanagementhub/lifecycle_stage_reboot_management.py +297 -0
  57. pulumi_oci/osmanagementhub/managed_instance.py +56 -0
  58. pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +49 -0
  59. pulumi_oci/osmanagementhub/managed_instance_group_reboot_management.py +297 -0
  60. pulumi_oci/osmanagementhub/managed_instance_reboot_management.py +299 -0
  61. pulumi_oci/osmanagementhub/management_station.py +251 -4
  62. pulumi_oci/osmanagementhub/management_station_associate_managed_instances_management.py +298 -0
  63. pulumi_oci/osmanagementhub/management_station_refresh_management.py +2 -2
  64. pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +9 -9
  65. pulumi_oci/osmanagementhub/outputs.py +1349 -50
  66. pulumi_oci/osmanagementhub/profile.py +70 -14
  67. pulumi_oci/osmanagementhub/profile_attach_lifecycle_stage_management.py +269 -0
  68. pulumi_oci/osmanagementhub/profile_attach_managed_instance_group_management.py +269 -0
  69. pulumi_oci/osmanagementhub/profile_attach_management_station_management.py +269 -0
  70. pulumi_oci/osmanagementhub/profile_attach_software_sources_management.py +269 -0
  71. pulumi_oci/osmanagementhub/profile_detach_software_sources_management.py +269 -0
  72. pulumi_oci/osmanagementhub/scheduled_job.py +72 -21
  73. pulumi_oci/osmanagementhub/software_source.py +365 -26
  74. pulumi_oci/osmanagementhub/software_source_add_packages_management.py +67 -10
  75. pulumi_oci/osmanagementhub/software_source_generate_metadata_management.py +217 -0
  76. pulumi_oci/osmanagementhub/software_source_manifest.py +268 -0
  77. pulumi_oci/osmanagementhub/software_source_remove_packages_management.py +277 -0
  78. pulumi_oci/osmanagementhub/software_source_replace_packages_management.py +277 -0
  79. pulumi_oci/osmanagementhub/work_request_rerun_management.py +325 -0
  80. pulumi_oci/pulumi-plugin.json +1 -1
  81. {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.27.0a1742444119.dist-info}/METADATA +2 -2
  82. {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.27.0a1742444119.dist-info}/RECORD +84 -57
  83. {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.27.0a1742444119.dist-info}/WHEEL +1 -1
  84. {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.27.0a1742444119.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] fast_start_fail_over_lag_limit_in_seconds: (Updatable) The lag time for my preference based on data loss tolerance in seconds.
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
+