pulumi-oci 1.23.0a1707980719__py3-none-any.whl → 1.24.0a1708066165__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/database/_inputs.py +49 -1
- pulumi_oci/database/autonomous_database.py +47 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/outputs.py +128 -4
- pulumi_oci/loganalytics/_inputs.py +80 -0
- pulumi_oci/loganalytics/get_log_analytics_entities.py +18 -1
- pulumi_oci/loganalytics/get_log_analytics_entity.py +28 -1
- pulumi_oci/loganalytics/get_log_analytics_entity_topology.py +19 -2
- pulumi_oci/loganalytics/get_log_analytics_object_collection_rule.py +27 -1
- pulumi_oci/loganalytics/get_namespace_rules.py +25 -5
- pulumi_oci/loganalytics/get_namespace_scheduled_tasks.py +18 -1
- pulumi_oci/loganalytics/log_analytics_entity.py +112 -0
- pulumi_oci/loganalytics/log_analytics_object_collection_rule.py +98 -0
- pulumi_oci/loganalytics/outputs.py +271 -4
- {pulumi_oci-1.23.0a1707980719.dist-info → pulumi_oci-1.24.0a1708066165.dist-info}/METADATA +1 -1
- {pulumi_oci-1.23.0a1707980719.dist-info → pulumi_oci-1.24.0a1708066165.dist-info}/RECORD +18 -18
- {pulumi_oci-1.23.0a1707980719.dist-info → pulumi_oci-1.24.0a1708066165.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.23.0a1707980719.dist-info → pulumi_oci-1.24.0a1708066165.dist-info}/top_level.txt +0 -0
pulumi_oci/database/_inputs.py
CHANGED
@@ -1997,12 +1997,24 @@ class AutonomousDatabaseLongTermBackupScheduleArgs:
|
|
1997
1997
|
@pulumi.input_type
|
1998
1998
|
class AutonomousDatabaseRemoteDisasterRecoveryConfigurationArgs:
|
1999
1999
|
def __init__(__self__, *,
|
2000
|
-
disaster_recovery_type: Optional[pulumi.Input[str]] = None
|
2000
|
+
disaster_recovery_type: Optional[pulumi.Input[str]] = None,
|
2001
|
+
is_replicate_automatic_backups: Optional[pulumi.Input[bool]] = None,
|
2002
|
+
is_snapshot_standby: Optional[pulumi.Input[bool]] = None,
|
2003
|
+
time_snapshot_standby_enabled_till: Optional[pulumi.Input[str]] = None):
|
2001
2004
|
"""
|
2002
2005
|
:param pulumi.Input[str] disaster_recovery_type: Indicates the disaster recovery (DR) type of the Shared Autonomous Database. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
|
2006
|
+
:param pulumi.Input[bool] is_replicate_automatic_backups: If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
2007
|
+
:param pulumi.Input[bool] is_snapshot_standby: Indicates if user wants to convert to a snapshot standby. For example, true would set a standby database to snapshot standby database. False would set a snapshot standby database back to regular standby database.
|
2008
|
+
:param pulumi.Input[str] time_snapshot_standby_enabled_till: Time and date stored as an RFC 3339 formatted timestamp string. For example, 2022-01-01T12:00:00.000Z would set a limit for the snapshot standby to be converted back to a cross-region standby database.
|
2003
2009
|
"""
|
2004
2010
|
if disaster_recovery_type is not None:
|
2005
2011
|
pulumi.set(__self__, "disaster_recovery_type", disaster_recovery_type)
|
2012
|
+
if is_replicate_automatic_backups is not None:
|
2013
|
+
pulumi.set(__self__, "is_replicate_automatic_backups", is_replicate_automatic_backups)
|
2014
|
+
if is_snapshot_standby is not None:
|
2015
|
+
pulumi.set(__self__, "is_snapshot_standby", is_snapshot_standby)
|
2016
|
+
if time_snapshot_standby_enabled_till is not None:
|
2017
|
+
pulumi.set(__self__, "time_snapshot_standby_enabled_till", time_snapshot_standby_enabled_till)
|
2006
2018
|
|
2007
2019
|
@property
|
2008
2020
|
@pulumi.getter(name="disasterRecoveryType")
|
@@ -2016,6 +2028,42 @@ class AutonomousDatabaseRemoteDisasterRecoveryConfigurationArgs:
|
|
2016
2028
|
def disaster_recovery_type(self, value: Optional[pulumi.Input[str]]):
|
2017
2029
|
pulumi.set(self, "disaster_recovery_type", value)
|
2018
2030
|
|
2031
|
+
@property
|
2032
|
+
@pulumi.getter(name="isReplicateAutomaticBackups")
|
2033
|
+
def is_replicate_automatic_backups(self) -> Optional[pulumi.Input[bool]]:
|
2034
|
+
"""
|
2035
|
+
If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
2036
|
+
"""
|
2037
|
+
return pulumi.get(self, "is_replicate_automatic_backups")
|
2038
|
+
|
2039
|
+
@is_replicate_automatic_backups.setter
|
2040
|
+
def is_replicate_automatic_backups(self, value: Optional[pulumi.Input[bool]]):
|
2041
|
+
pulumi.set(self, "is_replicate_automatic_backups", value)
|
2042
|
+
|
2043
|
+
@property
|
2044
|
+
@pulumi.getter(name="isSnapshotStandby")
|
2045
|
+
def is_snapshot_standby(self) -> Optional[pulumi.Input[bool]]:
|
2046
|
+
"""
|
2047
|
+
Indicates if user wants to convert to a snapshot standby. For example, true would set a standby database to snapshot standby database. False would set a snapshot standby database back to regular standby database.
|
2048
|
+
"""
|
2049
|
+
return pulumi.get(self, "is_snapshot_standby")
|
2050
|
+
|
2051
|
+
@is_snapshot_standby.setter
|
2052
|
+
def is_snapshot_standby(self, value: Optional[pulumi.Input[bool]]):
|
2053
|
+
pulumi.set(self, "is_snapshot_standby", value)
|
2054
|
+
|
2055
|
+
@property
|
2056
|
+
@pulumi.getter(name="timeSnapshotStandbyEnabledTill")
|
2057
|
+
def time_snapshot_standby_enabled_till(self) -> Optional[pulumi.Input[str]]:
|
2058
|
+
"""
|
2059
|
+
Time and date stored as an RFC 3339 formatted timestamp string. For example, 2022-01-01T12:00:00.000Z would set a limit for the snapshot standby to be converted back to a cross-region standby database.
|
2060
|
+
"""
|
2061
|
+
return pulumi.get(self, "time_snapshot_standby_enabled_till")
|
2062
|
+
|
2063
|
+
@time_snapshot_standby_enabled_till.setter
|
2064
|
+
def time_snapshot_standby_enabled_till(self, value: Optional[pulumi.Input[str]]):
|
2065
|
+
pulumi.set(self, "time_snapshot_standby_enabled_till", value)
|
2066
|
+
|
2019
2067
|
|
2020
2068
|
@pulumi.input_type
|
2021
2069
|
class AutonomousDatabaseResourcePoolSummaryArgs:
|
@@ -53,6 +53,7 @@ class AutonomousDatabaseArgs:
|
|
53
53
|
is_mtls_connection_required: Optional[pulumi.Input[bool]] = None,
|
54
54
|
is_preview_version_with_service_terms_accepted: Optional[pulumi.Input[bool]] = None,
|
55
55
|
is_refreshable_clone: Optional[pulumi.Input[bool]] = None,
|
56
|
+
is_replicate_automatic_backups: Optional[pulumi.Input[bool]] = None,
|
56
57
|
is_shrink_only: Optional[pulumi.Input[bool]] = None,
|
57
58
|
kms_key_id: Optional[pulumi.Input[str]] = None,
|
58
59
|
license_model: Optional[pulumi.Input[str]] = None,
|
@@ -152,6 +153,7 @@ class AutonomousDatabaseArgs:
|
|
152
153
|
:param pulumi.Input[bool] is_mtls_connection_required: (Updatable) Indicates whether the Autonomous Database requires mTLS connections.
|
153
154
|
:param pulumi.Input[bool] is_preview_version_with_service_terms_accepted: If set to `TRUE`, indicates that an Autonomous Database preview version is being provisioned, and that the preview version's terms of service have been accepted. Note that preview version software is only available for databases on [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
|
154
155
|
:param pulumi.Input[bool] is_refreshable_clone: (Updatable) True for creating a refreshable clone and False for detaching the clone from source Autonomous Database. Detaching is one time operation and clone becomes a regular Autonomous Database.
|
156
|
+
:param pulumi.Input[bool] is_replicate_automatic_backups: If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
155
157
|
:param pulumi.Input[bool] is_shrink_only: (Updatable) An optional property when enabled triggers the Shrinking of Autonomous Database once. To trigger Shrinking of ADB once again, this flag needs to be disabled and re-enabled again. It should not be passed during create database operation. It is only applicable on shared databases i.e. where `is_dedicated` is false.
|
156
158
|
|
157
159
|
** IMPORTANT **
|
@@ -295,6 +297,8 @@ class AutonomousDatabaseArgs:
|
|
295
297
|
pulumi.set(__self__, "is_preview_version_with_service_terms_accepted", is_preview_version_with_service_terms_accepted)
|
296
298
|
if is_refreshable_clone is not None:
|
297
299
|
pulumi.set(__self__, "is_refreshable_clone", is_refreshable_clone)
|
300
|
+
if is_replicate_automatic_backups is not None:
|
301
|
+
pulumi.set(__self__, "is_replicate_automatic_backups", is_replicate_automatic_backups)
|
298
302
|
if is_shrink_only is not None:
|
299
303
|
warnings.warn("""The 'is_shrink_only' field has been deprecated. Please use 'shrink_adb_trigger' instead.""", DeprecationWarning)
|
300
304
|
pulumi.log.warn("""is_shrink_only is deprecated: The 'is_shrink_only' field has been deprecated. Please use 'shrink_adb_trigger' instead.""")
|
@@ -837,6 +841,18 @@ class AutonomousDatabaseArgs:
|
|
837
841
|
def is_refreshable_clone(self, value: Optional[pulumi.Input[bool]]):
|
838
842
|
pulumi.set(self, "is_refreshable_clone", value)
|
839
843
|
|
844
|
+
@property
|
845
|
+
@pulumi.getter(name="isReplicateAutomaticBackups")
|
846
|
+
def is_replicate_automatic_backups(self) -> Optional[pulumi.Input[bool]]:
|
847
|
+
"""
|
848
|
+
If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
849
|
+
"""
|
850
|
+
return pulumi.get(self, "is_replicate_automatic_backups")
|
851
|
+
|
852
|
+
@is_replicate_automatic_backups.setter
|
853
|
+
def is_replicate_automatic_backups(self, value: Optional[pulumi.Input[bool]]):
|
854
|
+
pulumi.set(self, "is_replicate_automatic_backups", value)
|
855
|
+
|
840
856
|
@property
|
841
857
|
@pulumi.getter(name="isShrinkOnly")
|
842
858
|
def is_shrink_only(self) -> Optional[pulumi.Input[bool]]:
|
@@ -1334,6 +1350,7 @@ class _AutonomousDatabaseState:
|
|
1334
1350
|
is_reconnect_clone_enabled: Optional[pulumi.Input[bool]] = None,
|
1335
1351
|
is_refreshable_clone: Optional[pulumi.Input[bool]] = None,
|
1336
1352
|
is_remote_data_guard_enabled: Optional[pulumi.Input[bool]] = None,
|
1353
|
+
is_replicate_automatic_backups: Optional[pulumi.Input[bool]] = None,
|
1337
1354
|
is_shrink_only: Optional[pulumi.Input[bool]] = None,
|
1338
1355
|
key_history_entries: Optional[pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseKeyHistoryEntryArgs']]]] = None,
|
1339
1356
|
key_store_id: Optional[pulumi.Input[str]] = None,
|
@@ -1486,6 +1503,7 @@ class _AutonomousDatabaseState:
|
|
1486
1503
|
:param pulumi.Input[bool] is_reconnect_clone_enabled: Indicates if the refreshable clone can be reconnected to its source database.
|
1487
1504
|
:param pulumi.Input[bool] is_refreshable_clone: (Updatable) True for creating a refreshable clone and False for detaching the clone from source Autonomous Database. Detaching is one time operation and clone becomes a regular Autonomous Database.
|
1488
1505
|
:param pulumi.Input[bool] is_remote_data_guard_enabled: Indicates whether the Autonomous Database has Cross Region Data Guard enabled. Not applicable to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
1506
|
+
:param pulumi.Input[bool] is_replicate_automatic_backups: If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
1489
1507
|
:param pulumi.Input[bool] is_shrink_only: (Updatable) An optional property when enabled triggers the Shrinking of Autonomous Database once. To trigger Shrinking of ADB once again, this flag needs to be disabled and re-enabled again. It should not be passed during create database operation. It is only applicable on shared databases i.e. where `is_dedicated` is false.
|
1490
1508
|
|
1491
1509
|
** IMPORTANT **
|
@@ -1698,6 +1716,8 @@ class _AutonomousDatabaseState:
|
|
1698
1716
|
pulumi.set(__self__, "is_refreshable_clone", is_refreshable_clone)
|
1699
1717
|
if is_remote_data_guard_enabled is not None:
|
1700
1718
|
pulumi.set(__self__, "is_remote_data_guard_enabled", is_remote_data_guard_enabled)
|
1719
|
+
if is_replicate_automatic_backups is not None:
|
1720
|
+
pulumi.set(__self__, "is_replicate_automatic_backups", is_replicate_automatic_backups)
|
1701
1721
|
if is_shrink_only is not None:
|
1702
1722
|
warnings.warn("""The 'is_shrink_only' field has been deprecated. Please use 'shrink_adb_trigger' instead.""", DeprecationWarning)
|
1703
1723
|
pulumi.log.warn("""is_shrink_only is deprecated: The 'is_shrink_only' field has been deprecated. Please use 'shrink_adb_trigger' instead.""")
|
@@ -2496,6 +2516,18 @@ class _AutonomousDatabaseState:
|
|
2496
2516
|
def is_remote_data_guard_enabled(self, value: Optional[pulumi.Input[bool]]):
|
2497
2517
|
pulumi.set(self, "is_remote_data_guard_enabled", value)
|
2498
2518
|
|
2519
|
+
@property
|
2520
|
+
@pulumi.getter(name="isReplicateAutomaticBackups")
|
2521
|
+
def is_replicate_automatic_backups(self) -> Optional[pulumi.Input[bool]]:
|
2522
|
+
"""
|
2523
|
+
If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
2524
|
+
"""
|
2525
|
+
return pulumi.get(self, "is_replicate_automatic_backups")
|
2526
|
+
|
2527
|
+
@is_replicate_automatic_backups.setter
|
2528
|
+
def is_replicate_automatic_backups(self, value: Optional[pulumi.Input[bool]]):
|
2529
|
+
pulumi.set(self, "is_replicate_automatic_backups", value)
|
2530
|
+
|
2499
2531
|
@property
|
2500
2532
|
@pulumi.getter(name="isShrinkOnly")
|
2501
2533
|
def is_shrink_only(self) -> Optional[pulumi.Input[bool]]:
|
@@ -3433,6 +3465,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
3433
3465
|
is_mtls_connection_required: Optional[pulumi.Input[bool]] = None,
|
3434
3466
|
is_preview_version_with_service_terms_accepted: Optional[pulumi.Input[bool]] = None,
|
3435
3467
|
is_refreshable_clone: Optional[pulumi.Input[bool]] = None,
|
3468
|
+
is_replicate_automatic_backups: Optional[pulumi.Input[bool]] = None,
|
3436
3469
|
is_shrink_only: Optional[pulumi.Input[bool]] = None,
|
3437
3470
|
kms_key_id: Optional[pulumi.Input[str]] = None,
|
3438
3471
|
license_model: Optional[pulumi.Input[str]] = None,
|
@@ -3546,6 +3579,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
3546
3579
|
:param pulumi.Input[bool] is_mtls_connection_required: (Updatable) Indicates whether the Autonomous Database requires mTLS connections.
|
3547
3580
|
:param pulumi.Input[bool] is_preview_version_with_service_terms_accepted: If set to `TRUE`, indicates that an Autonomous Database preview version is being provisioned, and that the preview version's terms of service have been accepted. Note that preview version software is only available for databases on [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
|
3548
3581
|
:param pulumi.Input[bool] is_refreshable_clone: (Updatable) True for creating a refreshable clone and False for detaching the clone from source Autonomous Database. Detaching is one time operation and clone becomes a regular Autonomous Database.
|
3582
|
+
:param pulumi.Input[bool] is_replicate_automatic_backups: If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
3549
3583
|
:param pulumi.Input[bool] is_shrink_only: (Updatable) An optional property when enabled triggers the Shrinking of Autonomous Database once. To trigger Shrinking of ADB once again, this flag needs to be disabled and re-enabled again. It should not be passed during create database operation. It is only applicable on shared databases i.e. where `is_dedicated` is false.
|
3550
3584
|
|
3551
3585
|
** IMPORTANT **
|
@@ -3688,6 +3722,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
3688
3722
|
is_mtls_connection_required: Optional[pulumi.Input[bool]] = None,
|
3689
3723
|
is_preview_version_with_service_terms_accepted: Optional[pulumi.Input[bool]] = None,
|
3690
3724
|
is_refreshable_clone: Optional[pulumi.Input[bool]] = None,
|
3725
|
+
is_replicate_automatic_backups: Optional[pulumi.Input[bool]] = None,
|
3691
3726
|
is_shrink_only: Optional[pulumi.Input[bool]] = None,
|
3692
3727
|
kms_key_id: Optional[pulumi.Input[str]] = None,
|
3693
3728
|
license_model: Optional[pulumi.Input[str]] = None,
|
@@ -3772,6 +3807,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
3772
3807
|
__props__.__dict__["is_mtls_connection_required"] = is_mtls_connection_required
|
3773
3808
|
__props__.__dict__["is_preview_version_with_service_terms_accepted"] = is_preview_version_with_service_terms_accepted
|
3774
3809
|
__props__.__dict__["is_refreshable_clone"] = is_refreshable_clone
|
3810
|
+
__props__.__dict__["is_replicate_automatic_backups"] = is_replicate_automatic_backups
|
3775
3811
|
__props__.__dict__["is_shrink_only"] = is_shrink_only
|
3776
3812
|
__props__.__dict__["kms_key_id"] = kms_key_id
|
3777
3813
|
__props__.__dict__["license_model"] = license_model
|
@@ -3923,6 +3959,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
3923
3959
|
is_reconnect_clone_enabled: Optional[pulumi.Input[bool]] = None,
|
3924
3960
|
is_refreshable_clone: Optional[pulumi.Input[bool]] = None,
|
3925
3961
|
is_remote_data_guard_enabled: Optional[pulumi.Input[bool]] = None,
|
3962
|
+
is_replicate_automatic_backups: Optional[pulumi.Input[bool]] = None,
|
3926
3963
|
is_shrink_only: Optional[pulumi.Input[bool]] = None,
|
3927
3964
|
key_history_entries: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['AutonomousDatabaseKeyHistoryEntryArgs']]]]] = None,
|
3928
3965
|
key_store_id: Optional[pulumi.Input[str]] = None,
|
@@ -4080,6 +4117,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4080
4117
|
:param pulumi.Input[bool] is_reconnect_clone_enabled: Indicates if the refreshable clone can be reconnected to its source database.
|
4081
4118
|
:param pulumi.Input[bool] is_refreshable_clone: (Updatable) True for creating a refreshable clone and False for detaching the clone from source Autonomous Database. Detaching is one time operation and clone becomes a regular Autonomous Database.
|
4082
4119
|
:param pulumi.Input[bool] is_remote_data_guard_enabled: Indicates whether the Autonomous Database has Cross Region Data Guard enabled. Not applicable to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
4120
|
+
:param pulumi.Input[bool] is_replicate_automatic_backups: If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
4083
4121
|
:param pulumi.Input[bool] is_shrink_only: (Updatable) An optional property when enabled triggers the Shrinking of Autonomous Database once. To trigger Shrinking of ADB once again, this flag needs to be disabled and re-enabled again. It should not be passed during create database operation. It is only applicable on shared databases i.e. where `is_dedicated` is false.
|
4084
4122
|
|
4085
4123
|
** IMPORTANT **
|
@@ -4244,6 +4282,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4244
4282
|
__props__.__dict__["is_reconnect_clone_enabled"] = is_reconnect_clone_enabled
|
4245
4283
|
__props__.__dict__["is_refreshable_clone"] = is_refreshable_clone
|
4246
4284
|
__props__.__dict__["is_remote_data_guard_enabled"] = is_remote_data_guard_enabled
|
4285
|
+
__props__.__dict__["is_replicate_automatic_backups"] = is_replicate_automatic_backups
|
4247
4286
|
__props__.__dict__["is_shrink_only"] = is_shrink_only
|
4248
4287
|
__props__.__dict__["key_history_entries"] = key_history_entries
|
4249
4288
|
__props__.__dict__["key_store_id"] = key_store_id
|
@@ -4760,6 +4799,14 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4760
4799
|
"""
|
4761
4800
|
return pulumi.get(self, "is_remote_data_guard_enabled")
|
4762
4801
|
|
4802
|
+
@property
|
4803
|
+
@pulumi.getter(name="isReplicateAutomaticBackups")
|
4804
|
+
def is_replicate_automatic_backups(self) -> pulumi.Output[bool]:
|
4805
|
+
"""
|
4806
|
+
If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
4807
|
+
"""
|
4808
|
+
return pulumi.get(self, "is_replicate_automatic_backups")
|
4809
|
+
|
4763
4810
|
@property
|
4764
4811
|
@pulumi.getter(name="isShrinkOnly")
|
4765
4812
|
def is_shrink_only(self) -> pulumi.Output[Optional[bool]]:
|
@@ -22,7 +22,7 @@ class GetAutonomousDatabaseResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getAutonomousDatabase.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, actual_used_data_storage_size_in_tbs=None, admin_password=None, allocated_storage_size_in_tbs=None, apex_details=None, are_primary_whitelisted_ips_used=None, autonomous_container_database_id=None, autonomous_database_backup_id=None, autonomous_database_id=None, autonomous_maintenance_schedule_type=None, available_upgrade_versions=None, backup_configs=None, backup_retention_period_in_days=None, character_set=None, clone_type=None, compartment_id=None, compute_count=None, compute_model=None, connection_strings=None, connection_urls=None, cpu_core_count=None, customer_contacts=None, data_safe_status=None, data_storage_size_in_gb=None, data_storage_size_in_tbs=None, database_edition=None, database_management_status=None, dataguard_region_type=None, db_name=None, db_tools_details=None, db_version=None, db_workload=None, defined_tags=None, disaster_recovery_region_type=None, display_name=None, failed_data_recovery_in_seconds=None, freeform_tags=None, id=None, in_memory_area_in_gbs=None, in_memory_percentage=None, infrastructure_type=None, is_access_control_enabled=None, is_auto_scaling_enabled=None, is_auto_scaling_for_storage_enabled=None, is_data_guard_enabled=None, is_dedicated=None, is_free_tier=None, is_local_data_guard_enabled=None, is_mtls_connection_required=None, is_preview=None, is_preview_version_with_service_terms_accepted=None, is_reconnect_clone_enabled=None, is_refreshable_clone=None, is_remote_data_guard_enabled=None, is_shrink_only=None, key_history_entries=None, key_store_id=None, key_store_wallet_name=None, kms_key_id=None, kms_key_lifecycle_details=None, kms_key_version_id=None, license_model=None, lifecycle_details=None, local_adg_auto_failover_max_data_loss_limit=None, local_disaster_recovery_type=None, local_standby_dbs=None, long_term_backup_schedules=None, max_cpu_core_count=None, memory_per_oracle_compute_unit_in_gbs=None, ncharacter_set=None, next_long_term_backup_time_stamp=None, nsg_ids=None, ocpu_count=None, open_mode=None, operations_insights_status=None, peer_db_ids=None, permission_level=None, private_endpoint=None, private_endpoint_ip=None, private_endpoint_label=None, provisionable_cpuses=None, refreshable_mode=None, refreshable_status=None, remote_disaster_recovery_configurations=None, remote_disaster_recovery_type=None, resource_pool_leader_id=None, resource_pool_summaries=None, role=None, rotate_key_trigger=None, scheduled_operations=None, secret_id=None, secret_version_number=None, service_console_url=None, shrink_adb_trigger=None, source=None, source_id=None, standby_dbs=None, standby_whitelisted_ips=None, state=None, subnet_id=None, supported_regions_to_clone_tos=None, switchover_to=None, switchover_to_remote_peer_id=None, system_tags=None, time_created=None, time_data_guard_role_changed=None, time_deletion_of_free_autonomous_database=None, time_disaster_recovery_role_changed=None, time_local_data_guard_enabled=None, time_maintenance_begin=None, time_maintenance_end=None, time_of_joining_resource_pool=None, time_of_last_failover=None, time_of_last_refresh=None, time_of_last_refresh_point=None, time_of_last_switchover=None, time_of_next_refresh=None, time_reclamation_of_free_autonomous_database=None, time_until_reconnect_clone_enabled=None, timestamp=None, total_backup_storage_size_in_gbs=None, use_latest_available_backup_time_stamp=None, used_data_storage_size_in_gbs=None, used_data_storage_size_in_tbs=None, vault_id=None, whitelisted_ips=None):
|
25
|
+
def __init__(__self__, actual_used_data_storage_size_in_tbs=None, admin_password=None, allocated_storage_size_in_tbs=None, apex_details=None, are_primary_whitelisted_ips_used=None, autonomous_container_database_id=None, autonomous_database_backup_id=None, autonomous_database_id=None, autonomous_maintenance_schedule_type=None, available_upgrade_versions=None, backup_configs=None, backup_retention_period_in_days=None, character_set=None, clone_type=None, compartment_id=None, compute_count=None, compute_model=None, connection_strings=None, connection_urls=None, cpu_core_count=None, customer_contacts=None, data_safe_status=None, data_storage_size_in_gb=None, data_storage_size_in_tbs=None, database_edition=None, database_management_status=None, dataguard_region_type=None, db_name=None, db_tools_details=None, db_version=None, db_workload=None, defined_tags=None, disaster_recovery_region_type=None, display_name=None, failed_data_recovery_in_seconds=None, freeform_tags=None, id=None, in_memory_area_in_gbs=None, in_memory_percentage=None, infrastructure_type=None, is_access_control_enabled=None, is_auto_scaling_enabled=None, is_auto_scaling_for_storage_enabled=None, is_data_guard_enabled=None, is_dedicated=None, is_free_tier=None, is_local_data_guard_enabled=None, is_mtls_connection_required=None, is_preview=None, is_preview_version_with_service_terms_accepted=None, is_reconnect_clone_enabled=None, is_refreshable_clone=None, is_remote_data_guard_enabled=None, is_replicate_automatic_backups=None, is_shrink_only=None, key_history_entries=None, key_store_id=None, key_store_wallet_name=None, kms_key_id=None, kms_key_lifecycle_details=None, kms_key_version_id=None, license_model=None, lifecycle_details=None, local_adg_auto_failover_max_data_loss_limit=None, local_disaster_recovery_type=None, local_standby_dbs=None, long_term_backup_schedules=None, max_cpu_core_count=None, memory_per_oracle_compute_unit_in_gbs=None, ncharacter_set=None, next_long_term_backup_time_stamp=None, nsg_ids=None, ocpu_count=None, open_mode=None, operations_insights_status=None, peer_db_ids=None, permission_level=None, private_endpoint=None, private_endpoint_ip=None, private_endpoint_label=None, provisionable_cpuses=None, refreshable_mode=None, refreshable_status=None, remote_disaster_recovery_configurations=None, remote_disaster_recovery_type=None, resource_pool_leader_id=None, resource_pool_summaries=None, role=None, rotate_key_trigger=None, scheduled_operations=None, secret_id=None, secret_version_number=None, service_console_url=None, shrink_adb_trigger=None, source=None, source_id=None, standby_dbs=None, standby_whitelisted_ips=None, state=None, subnet_id=None, supported_regions_to_clone_tos=None, switchover_to=None, switchover_to_remote_peer_id=None, system_tags=None, time_created=None, time_data_guard_role_changed=None, time_deletion_of_free_autonomous_database=None, time_disaster_recovery_role_changed=None, time_local_data_guard_enabled=None, time_maintenance_begin=None, time_maintenance_end=None, time_of_joining_resource_pool=None, time_of_last_failover=None, time_of_last_refresh=None, time_of_last_refresh_point=None, time_of_last_switchover=None, time_of_next_refresh=None, time_reclamation_of_free_autonomous_database=None, time_until_reconnect_clone_enabled=None, timestamp=None, total_backup_storage_size_in_gbs=None, use_latest_available_backup_time_stamp=None, used_data_storage_size_in_gbs=None, used_data_storage_size_in_tbs=None, vault_id=None, whitelisted_ips=None):
|
26
26
|
if actual_used_data_storage_size_in_tbs and not isinstance(actual_used_data_storage_size_in_tbs, float):
|
27
27
|
raise TypeError("Expected argument 'actual_used_data_storage_size_in_tbs' to be a float")
|
28
28
|
pulumi.set(__self__, "actual_used_data_storage_size_in_tbs", actual_used_data_storage_size_in_tbs)
|
@@ -182,6 +182,9 @@ class GetAutonomousDatabaseResult:
|
|
182
182
|
if is_remote_data_guard_enabled and not isinstance(is_remote_data_guard_enabled, bool):
|
183
183
|
raise TypeError("Expected argument 'is_remote_data_guard_enabled' to be a bool")
|
184
184
|
pulumi.set(__self__, "is_remote_data_guard_enabled", is_remote_data_guard_enabled)
|
185
|
+
if is_replicate_automatic_backups and not isinstance(is_replicate_automatic_backups, bool):
|
186
|
+
raise TypeError("Expected argument 'is_replicate_automatic_backups' to be a bool")
|
187
|
+
pulumi.set(__self__, "is_replicate_automatic_backups", is_replicate_automatic_backups)
|
185
188
|
if is_shrink_only and not isinstance(is_shrink_only, bool):
|
186
189
|
raise TypeError("Expected argument 'is_shrink_only' to be a bool")
|
187
190
|
pulumi.set(__self__, "is_shrink_only", is_shrink_only)
|
@@ -812,6 +815,14 @@ class GetAutonomousDatabaseResult:
|
|
812
815
|
"""
|
813
816
|
return pulumi.get(self, "is_remote_data_guard_enabled")
|
814
817
|
|
818
|
+
@property
|
819
|
+
@pulumi.getter(name="isReplicateAutomaticBackups")
|
820
|
+
def is_replicate_automatic_backups(self) -> bool:
|
821
|
+
"""
|
822
|
+
If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
823
|
+
"""
|
824
|
+
return pulumi.get(self, "is_replicate_automatic_backups")
|
825
|
+
|
815
826
|
@property
|
816
827
|
@pulumi.getter(name="isShrinkOnly")
|
817
828
|
def is_shrink_only(self) -> bool:
|
@@ -1419,6 +1430,7 @@ class AwaitableGetAutonomousDatabaseResult(GetAutonomousDatabaseResult):
|
|
1419
1430
|
is_reconnect_clone_enabled=self.is_reconnect_clone_enabled,
|
1420
1431
|
is_refreshable_clone=self.is_refreshable_clone,
|
1421
1432
|
is_remote_data_guard_enabled=self.is_remote_data_guard_enabled,
|
1433
|
+
is_replicate_automatic_backups=self.is_replicate_automatic_backups,
|
1422
1434
|
is_shrink_only=self.is_shrink_only,
|
1423
1435
|
key_history_entries=self.key_history_entries,
|
1424
1436
|
key_store_id=self.key_store_id,
|
@@ -1571,6 +1583,7 @@ def get_autonomous_database(autonomous_database_id: Optional[str] = None,
|
|
1571
1583
|
is_reconnect_clone_enabled=pulumi.get(__ret__, 'is_reconnect_clone_enabled'),
|
1572
1584
|
is_refreshable_clone=pulumi.get(__ret__, 'is_refreshable_clone'),
|
1573
1585
|
is_remote_data_guard_enabled=pulumi.get(__ret__, 'is_remote_data_guard_enabled'),
|
1586
|
+
is_replicate_automatic_backups=pulumi.get(__ret__, 'is_replicate_automatic_backups'),
|
1574
1587
|
is_shrink_only=pulumi.get(__ret__, 'is_shrink_only'),
|
1575
1588
|
key_history_entries=pulumi.get(__ret__, 'key_history_entries'),
|
1576
1589
|
key_store_id=pulumi.get(__ret__, 'key_store_id'),
|
pulumi_oci/database/outputs.py
CHANGED
@@ -2358,6 +2358,12 @@ class AutonomousDatabaseRemoteDisasterRecoveryConfiguration(dict):
|
|
2358
2358
|
suggest = None
|
2359
2359
|
if key == "disasterRecoveryType":
|
2360
2360
|
suggest = "disaster_recovery_type"
|
2361
|
+
elif key == "isReplicateAutomaticBackups":
|
2362
|
+
suggest = "is_replicate_automatic_backups"
|
2363
|
+
elif key == "isSnapshotStandby":
|
2364
|
+
suggest = "is_snapshot_standby"
|
2365
|
+
elif key == "timeSnapshotStandbyEnabledTill":
|
2366
|
+
suggest = "time_snapshot_standby_enabled_till"
|
2361
2367
|
|
2362
2368
|
if suggest:
|
2363
2369
|
pulumi.log.warn(f"Key '{key}' not found in AutonomousDatabaseRemoteDisasterRecoveryConfiguration. Access the value via the '{suggest}' property getter instead.")
|
@@ -2371,12 +2377,24 @@ class AutonomousDatabaseRemoteDisasterRecoveryConfiguration(dict):
|
|
2371
2377
|
return super().get(key, default)
|
2372
2378
|
|
2373
2379
|
def __init__(__self__, *,
|
2374
|
-
disaster_recovery_type: Optional[str] = None
|
2380
|
+
disaster_recovery_type: Optional[str] = None,
|
2381
|
+
is_replicate_automatic_backups: Optional[bool] = None,
|
2382
|
+
is_snapshot_standby: Optional[bool] = None,
|
2383
|
+
time_snapshot_standby_enabled_till: Optional[str] = None):
|
2375
2384
|
"""
|
2376
2385
|
:param str disaster_recovery_type: Indicates the disaster recovery (DR) type of the Shared Autonomous Database. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
|
2386
|
+
:param bool is_replicate_automatic_backups: If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
2387
|
+
:param bool is_snapshot_standby: Indicates if user wants to convert to a snapshot standby. For example, true would set a standby database to snapshot standby database. False would set a snapshot standby database back to regular standby database.
|
2388
|
+
:param str time_snapshot_standby_enabled_till: Time and date stored as an RFC 3339 formatted timestamp string. For example, 2022-01-01T12:00:00.000Z would set a limit for the snapshot standby to be converted back to a cross-region standby database.
|
2377
2389
|
"""
|
2378
2390
|
if disaster_recovery_type is not None:
|
2379
2391
|
pulumi.set(__self__, "disaster_recovery_type", disaster_recovery_type)
|
2392
|
+
if is_replicate_automatic_backups is not None:
|
2393
|
+
pulumi.set(__self__, "is_replicate_automatic_backups", is_replicate_automatic_backups)
|
2394
|
+
if is_snapshot_standby is not None:
|
2395
|
+
pulumi.set(__self__, "is_snapshot_standby", is_snapshot_standby)
|
2396
|
+
if time_snapshot_standby_enabled_till is not None:
|
2397
|
+
pulumi.set(__self__, "time_snapshot_standby_enabled_till", time_snapshot_standby_enabled_till)
|
2380
2398
|
|
2381
2399
|
@property
|
2382
2400
|
@pulumi.getter(name="disasterRecoveryType")
|
@@ -2386,6 +2404,30 @@ class AutonomousDatabaseRemoteDisasterRecoveryConfiguration(dict):
|
|
2386
2404
|
"""
|
2387
2405
|
return pulumi.get(self, "disaster_recovery_type")
|
2388
2406
|
|
2407
|
+
@property
|
2408
|
+
@pulumi.getter(name="isReplicateAutomaticBackups")
|
2409
|
+
def is_replicate_automatic_backups(self) -> Optional[bool]:
|
2410
|
+
"""
|
2411
|
+
If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
2412
|
+
"""
|
2413
|
+
return pulumi.get(self, "is_replicate_automatic_backups")
|
2414
|
+
|
2415
|
+
@property
|
2416
|
+
@pulumi.getter(name="isSnapshotStandby")
|
2417
|
+
def is_snapshot_standby(self) -> Optional[bool]:
|
2418
|
+
"""
|
2419
|
+
Indicates if user wants to convert to a snapshot standby. For example, true would set a standby database to snapshot standby database. False would set a snapshot standby database back to regular standby database.
|
2420
|
+
"""
|
2421
|
+
return pulumi.get(self, "is_snapshot_standby")
|
2422
|
+
|
2423
|
+
@property
|
2424
|
+
@pulumi.getter(name="timeSnapshotStandbyEnabledTill")
|
2425
|
+
def time_snapshot_standby_enabled_till(self) -> Optional[str]:
|
2426
|
+
"""
|
2427
|
+
Time and date stored as an RFC 3339 formatted timestamp string. For example, 2022-01-01T12:00:00.000Z would set a limit for the snapshot standby to be converted back to a cross-region standby database.
|
2428
|
+
"""
|
2429
|
+
return pulumi.get(self, "time_snapshot_standby_enabled_till")
|
2430
|
+
|
2389
2431
|
|
2390
2432
|
@pulumi.output_type
|
2391
2433
|
class AutonomousDatabaseResourcePoolSummary(dict):
|
@@ -15219,11 +15261,18 @@ class GetAutonomousDatabaseRefreshableClonesRefreshableCloneCollectionItemResult
|
|
15219
15261
|
@pulumi.output_type
|
15220
15262
|
class GetAutonomousDatabaseRemoteDisasterRecoveryConfigurationResult(dict):
|
15221
15263
|
def __init__(__self__, *,
|
15222
|
-
disaster_recovery_type: str
|
15264
|
+
disaster_recovery_type: str,
|
15265
|
+
is_replicate_automatic_backups: bool,
|
15266
|
+
is_snapshot_standby: bool,
|
15267
|
+
time_snapshot_standby_enabled_till: str):
|
15223
15268
|
"""
|
15224
15269
|
:param str disaster_recovery_type: Indicates the disaster recovery (DR) type of the Shared Autonomous Database. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
|
15270
|
+
:param bool is_replicate_automatic_backups: If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
15225
15271
|
"""
|
15226
15272
|
pulumi.set(__self__, "disaster_recovery_type", disaster_recovery_type)
|
15273
|
+
pulumi.set(__self__, "is_replicate_automatic_backups", is_replicate_automatic_backups)
|
15274
|
+
pulumi.set(__self__, "is_snapshot_standby", is_snapshot_standby)
|
15275
|
+
pulumi.set(__self__, "time_snapshot_standby_enabled_till", time_snapshot_standby_enabled_till)
|
15227
15276
|
|
15228
15277
|
@property
|
15229
15278
|
@pulumi.getter(name="disasterRecoveryType")
|
@@ -15233,6 +15282,24 @@ class GetAutonomousDatabaseRemoteDisasterRecoveryConfigurationResult(dict):
|
|
15233
15282
|
"""
|
15234
15283
|
return pulumi.get(self, "disaster_recovery_type")
|
15235
15284
|
|
15285
|
+
@property
|
15286
|
+
@pulumi.getter(name="isReplicateAutomaticBackups")
|
15287
|
+
def is_replicate_automatic_backups(self) -> bool:
|
15288
|
+
"""
|
15289
|
+
If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
15290
|
+
"""
|
15291
|
+
return pulumi.get(self, "is_replicate_automatic_backups")
|
15292
|
+
|
15293
|
+
@property
|
15294
|
+
@pulumi.getter(name="isSnapshotStandby")
|
15295
|
+
def is_snapshot_standby(self) -> bool:
|
15296
|
+
return pulumi.get(self, "is_snapshot_standby")
|
15297
|
+
|
15298
|
+
@property
|
15299
|
+
@pulumi.getter(name="timeSnapshotStandbyEnabledTill")
|
15300
|
+
def time_snapshot_standby_enabled_till(self) -> str:
|
15301
|
+
return pulumi.get(self, "time_snapshot_standby_enabled_till")
|
15302
|
+
|
15236
15303
|
|
15237
15304
|
@pulumi.output_type
|
15238
15305
|
class GetAutonomousDatabaseResourcePoolSummaryResult(dict):
|
@@ -15439,6 +15506,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
15439
15506
|
is_reconnect_clone_enabled: bool,
|
15440
15507
|
is_refreshable_clone: bool,
|
15441
15508
|
is_remote_data_guard_enabled: bool,
|
15509
|
+
is_replicate_automatic_backups: bool,
|
15442
15510
|
is_shrink_only: bool,
|
15443
15511
|
key_history_entries: Sequence['outputs.GetAutonomousDatabasesAutonomousDatabaseKeyHistoryEntryResult'],
|
15444
15512
|
key_store_id: str,
|
@@ -15560,6 +15628,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
15560
15628
|
:param bool is_reconnect_clone_enabled: Indicates if the refreshable clone can be reconnected to its source database.
|
15561
15629
|
:param bool is_refreshable_clone: Filter on the value of the resource's 'isRefreshableClone' property. A value of `true` returns only refreshable clones. A value of `false` excludes refreshable clones from the returned results. Omitting this parameter returns both refreshable clones and databases that are not refreshable clones.
|
15562
15630
|
:param bool is_remote_data_guard_enabled: Indicates whether the Autonomous Database has Cross Region Data Guard enabled. Not applicable to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
15631
|
+
:param bool is_replicate_automatic_backups: If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
15563
15632
|
:param Sequence['GetAutonomousDatabasesAutonomousDatabaseKeyHistoryEntryArgs'] key_history_entries: Key History Entry.
|
15564
15633
|
:param str key_store_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
|
15565
15634
|
:param str key_store_wallet_name: The wallet name for Oracle Key Vault.
|
@@ -15676,6 +15745,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
15676
15745
|
pulumi.set(__self__, "is_reconnect_clone_enabled", is_reconnect_clone_enabled)
|
15677
15746
|
pulumi.set(__self__, "is_refreshable_clone", is_refreshable_clone)
|
15678
15747
|
pulumi.set(__self__, "is_remote_data_guard_enabled", is_remote_data_guard_enabled)
|
15748
|
+
pulumi.set(__self__, "is_replicate_automatic_backups", is_replicate_automatic_backups)
|
15679
15749
|
pulumi.set(__self__, "is_shrink_only", is_shrink_only)
|
15680
15750
|
pulumi.set(__self__, "key_history_entries", key_history_entries)
|
15681
15751
|
pulumi.set(__self__, "key_store_id", key_store_id)
|
@@ -16158,6 +16228,14 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
16158
16228
|
"""
|
16159
16229
|
return pulumi.get(self, "is_remote_data_guard_enabled")
|
16160
16230
|
|
16231
|
+
@property
|
16232
|
+
@pulumi.getter(name="isReplicateAutomaticBackups")
|
16233
|
+
def is_replicate_automatic_backups(self) -> bool:
|
16234
|
+
"""
|
16235
|
+
If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
16236
|
+
"""
|
16237
|
+
return pulumi.get(self, "is_replicate_automatic_backups")
|
16238
|
+
|
16161
16239
|
@property
|
16162
16240
|
@pulumi.getter(name="isShrinkOnly")
|
16163
16241
|
def is_shrink_only(self) -> bool:
|
@@ -17274,11 +17352,18 @@ class GetAutonomousDatabasesAutonomousDatabaseLongTermBackupScheduleResult(dict)
|
|
17274
17352
|
@pulumi.output_type
|
17275
17353
|
class GetAutonomousDatabasesAutonomousDatabaseRemoteDisasterRecoveryConfigurationResult(dict):
|
17276
17354
|
def __init__(__self__, *,
|
17277
|
-
disaster_recovery_type: str
|
17355
|
+
disaster_recovery_type: str,
|
17356
|
+
is_replicate_automatic_backups: bool,
|
17357
|
+
is_snapshot_standby: bool,
|
17358
|
+
time_snapshot_standby_enabled_till: str):
|
17278
17359
|
"""
|
17279
17360
|
:param str disaster_recovery_type: Indicates the disaster recovery (DR) type of the Shared Autonomous Database. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
|
17361
|
+
:param bool is_replicate_automatic_backups: If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
17280
17362
|
"""
|
17281
17363
|
pulumi.set(__self__, "disaster_recovery_type", disaster_recovery_type)
|
17364
|
+
pulumi.set(__self__, "is_replicate_automatic_backups", is_replicate_automatic_backups)
|
17365
|
+
pulumi.set(__self__, "is_snapshot_standby", is_snapshot_standby)
|
17366
|
+
pulumi.set(__self__, "time_snapshot_standby_enabled_till", time_snapshot_standby_enabled_till)
|
17282
17367
|
|
17283
17368
|
@property
|
17284
17369
|
@pulumi.getter(name="disasterRecoveryType")
|
@@ -17288,6 +17373,24 @@ class GetAutonomousDatabasesAutonomousDatabaseRemoteDisasterRecoveryConfiguratio
|
|
17288
17373
|
"""
|
17289
17374
|
return pulumi.get(self, "disaster_recovery_type")
|
17290
17375
|
|
17376
|
+
@property
|
17377
|
+
@pulumi.getter(name="isReplicateAutomaticBackups")
|
17378
|
+
def is_replicate_automatic_backups(self) -> bool:
|
17379
|
+
"""
|
17380
|
+
If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
17381
|
+
"""
|
17382
|
+
return pulumi.get(self, "is_replicate_automatic_backups")
|
17383
|
+
|
17384
|
+
@property
|
17385
|
+
@pulumi.getter(name="isSnapshotStandby")
|
17386
|
+
def is_snapshot_standby(self) -> bool:
|
17387
|
+
return pulumi.get(self, "is_snapshot_standby")
|
17388
|
+
|
17389
|
+
@property
|
17390
|
+
@pulumi.getter(name="timeSnapshotStandbyEnabledTill")
|
17391
|
+
def time_snapshot_standby_enabled_till(self) -> str:
|
17392
|
+
return pulumi.get(self, "time_snapshot_standby_enabled_till")
|
17393
|
+
|
17291
17394
|
|
17292
17395
|
@pulumi.output_type
|
17293
17396
|
class GetAutonomousDatabasesAutonomousDatabaseResourcePoolSummaryResult(dict):
|
@@ -19196,11 +19299,17 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseLongTermBackupScheduleResult
|
|
19196
19299
|
@pulumi.output_type
|
19197
19300
|
class GetAutonomousDatabasesClonesAutonomousDatabaseRemoteDisasterRecoveryConfigurationResult(dict):
|
19198
19301
|
def __init__(__self__, *,
|
19199
|
-
disaster_recovery_type: str
|
19302
|
+
disaster_recovery_type: str,
|
19303
|
+
is_replicate_automatic_backups: bool,
|
19304
|
+
is_snapshot_standby: bool,
|
19305
|
+
time_snapshot_standby_enabled_till: str):
|
19200
19306
|
"""
|
19201
19307
|
:param str disaster_recovery_type: Indicates the disaster recovery (DR) type of the Shared Autonomous Database. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
|
19202
19308
|
"""
|
19203
19309
|
pulumi.set(__self__, "disaster_recovery_type", disaster_recovery_type)
|
19310
|
+
pulumi.set(__self__, "is_replicate_automatic_backups", is_replicate_automatic_backups)
|
19311
|
+
pulumi.set(__self__, "is_snapshot_standby", is_snapshot_standby)
|
19312
|
+
pulumi.set(__self__, "time_snapshot_standby_enabled_till", time_snapshot_standby_enabled_till)
|
19204
19313
|
|
19205
19314
|
@property
|
19206
19315
|
@pulumi.getter(name="disasterRecoveryType")
|
@@ -19210,6 +19319,21 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseRemoteDisasterRecoveryConfig
|
|
19210
19319
|
"""
|
19211
19320
|
return pulumi.get(self, "disaster_recovery_type")
|
19212
19321
|
|
19322
|
+
@property
|
19323
|
+
@pulumi.getter(name="isReplicateAutomaticBackups")
|
19324
|
+
def is_replicate_automatic_backups(self) -> bool:
|
19325
|
+
return pulumi.get(self, "is_replicate_automatic_backups")
|
19326
|
+
|
19327
|
+
@property
|
19328
|
+
@pulumi.getter(name="isSnapshotStandby")
|
19329
|
+
def is_snapshot_standby(self) -> bool:
|
19330
|
+
return pulumi.get(self, "is_snapshot_standby")
|
19331
|
+
|
19332
|
+
@property
|
19333
|
+
@pulumi.getter(name="timeSnapshotStandbyEnabledTill")
|
19334
|
+
def time_snapshot_standby_enabled_till(self) -> str:
|
19335
|
+
return pulumi.get(self, "time_snapshot_standby_enabled_till")
|
19336
|
+
|
19213
19337
|
|
19214
19338
|
@pulumi.output_type
|
19215
19339
|
class GetAutonomousDatabasesClonesAutonomousDatabaseResourcePoolSummaryResult(dict):
|
@@ -10,6 +10,8 @@ from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
10
|
from .. import _utilities
|
11
11
|
|
12
12
|
__all__ = [
|
13
|
+
'LogAnalyticsEntityMetadataArgs',
|
14
|
+
'LogAnalyticsEntityMetadataItemArgs',
|
13
15
|
'LogAnalyticsImportCustomContentChangeListArgs',
|
14
16
|
'LogAnalyticsObjectCollectionRuleOverrideArgs',
|
15
17
|
'LogAnalyticsPreferencesManagementItemArgs',
|
@@ -32,6 +34,84 @@ __all__ = [
|
|
32
34
|
'GetNamespacesFilterArgs',
|
33
35
|
]
|
34
36
|
|
37
|
+
@pulumi.input_type
|
38
|
+
class LogAnalyticsEntityMetadataArgs:
|
39
|
+
def __init__(__self__, *,
|
40
|
+
items: Optional[pulumi.Input[Sequence[pulumi.Input['LogAnalyticsEntityMetadataItemArgs']]]] = None):
|
41
|
+
"""
|
42
|
+
:param pulumi.Input[Sequence[pulumi.Input['LogAnalyticsEntityMetadataItemArgs']]] items: (Updatable) An array of entity metadata details.
|
43
|
+
"""
|
44
|
+
if items is not None:
|
45
|
+
pulumi.set(__self__, "items", items)
|
46
|
+
|
47
|
+
@property
|
48
|
+
@pulumi.getter
|
49
|
+
def items(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['LogAnalyticsEntityMetadataItemArgs']]]]:
|
50
|
+
"""
|
51
|
+
(Updatable) An array of entity metadata details.
|
52
|
+
"""
|
53
|
+
return pulumi.get(self, "items")
|
54
|
+
|
55
|
+
@items.setter
|
56
|
+
def items(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['LogAnalyticsEntityMetadataItemArgs']]]]):
|
57
|
+
pulumi.set(self, "items", value)
|
58
|
+
|
59
|
+
|
60
|
+
@pulumi.input_type
|
61
|
+
class LogAnalyticsEntityMetadataItemArgs:
|
62
|
+
def __init__(__self__, *,
|
63
|
+
name: Optional[pulumi.Input[str]] = None,
|
64
|
+
type: Optional[pulumi.Input[str]] = None,
|
65
|
+
value: Optional[pulumi.Input[str]] = None):
|
66
|
+
"""
|
67
|
+
:param pulumi.Input[str] name: (Updatable) Log analytics entity name.
|
68
|
+
:param pulumi.Input[str] type: (Updatable) The metadata type.
|
69
|
+
:param pulumi.Input[str] value: (Updatable) The metadata value.
|
70
|
+
"""
|
71
|
+
if name is not None:
|
72
|
+
pulumi.set(__self__, "name", name)
|
73
|
+
if type is not None:
|
74
|
+
pulumi.set(__self__, "type", type)
|
75
|
+
if value is not None:
|
76
|
+
pulumi.set(__self__, "value", value)
|
77
|
+
|
78
|
+
@property
|
79
|
+
@pulumi.getter
|
80
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
81
|
+
"""
|
82
|
+
(Updatable) Log analytics entity name.
|
83
|
+
"""
|
84
|
+
return pulumi.get(self, "name")
|
85
|
+
|
86
|
+
@name.setter
|
87
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
88
|
+
pulumi.set(self, "name", value)
|
89
|
+
|
90
|
+
@property
|
91
|
+
@pulumi.getter
|
92
|
+
def type(self) -> Optional[pulumi.Input[str]]:
|
93
|
+
"""
|
94
|
+
(Updatable) The metadata type.
|
95
|
+
"""
|
96
|
+
return pulumi.get(self, "type")
|
97
|
+
|
98
|
+
@type.setter
|
99
|
+
def type(self, value: Optional[pulumi.Input[str]]):
|
100
|
+
pulumi.set(self, "type", value)
|
101
|
+
|
102
|
+
@property
|
103
|
+
@pulumi.getter
|
104
|
+
def value(self) -> Optional[pulumi.Input[str]]:
|
105
|
+
"""
|
106
|
+
(Updatable) The metadata value.
|
107
|
+
"""
|
108
|
+
return pulumi.get(self, "value")
|
109
|
+
|
110
|
+
@value.setter
|
111
|
+
def value(self, value: Optional[pulumi.Input[str]]):
|
112
|
+
pulumi.set(self, "value", value)
|
113
|
+
|
114
|
+
|
35
115
|
@pulumi.input_type
|
36
116
|
class LogAnalyticsImportCustomContentChangeListArgs:
|
37
117
|
def __init__(__self__, *,
|