pulumi-oci 2.33.0a1745955172__py3-none-any.whl → 2.33.0a1746138884__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/containerengine/_inputs.py +43 -3
- pulumi_oci/containerengine/get_cluster.py +22 -3
- pulumi_oci/containerengine/node_pool.py +4 -0
- pulumi_oci/containerengine/outputs.py +79 -7
- pulumi_oci/database/_inputs.py +6 -5
- pulumi_oci/database/autonomous_database.py +47 -0
- pulumi_oci/database/get_autonomous_database.py +15 -1
- pulumi_oci/database/outputs.py +15 -3
- pulumi_oci/disasterrecovery/_inputs.py +566 -16
- pulumi_oci/disasterrecovery/dr_protection_group.py +312 -0
- pulumi_oci/disasterrecovery/outputs.py +1077 -27
- pulumi_oci/nosql/table.py +7 -7
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/resourcescheduler/_inputs.py +89 -1
- pulumi_oci/resourcescheduler/get_schedule.py +15 -1
- pulumi_oci/resourcescheduler/get_schedules.py +22 -7
- pulumi_oci/resourcescheduler/outputs.py +174 -11
- pulumi_oci/resourcescheduler/schedule.py +58 -2
- {pulumi_oci-2.33.0a1745955172.dist-info → pulumi_oci-2.33.0a1746138884.dist-info}/METADATA +1 -1
- {pulumi_oci-2.33.0a1745955172.dist-info → pulumi_oci-2.33.0a1746138884.dist-info}/RECORD +22 -22
- {pulumi_oci-2.33.0a1745955172.dist-info → pulumi_oci-2.33.0a1746138884.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.33.0a1745955172.dist-info → pulumi_oci-2.33.0a1746138884.dist-info}/top_level.txt +0 -0
@@ -52,6 +52,7 @@ class AutonomousDatabaseArgs:
|
|
52
52
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
53
53
|
disaster_recovery_type: Optional[pulumi.Input[builtins.str]] = None,
|
54
54
|
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
55
|
+
enable_delete_scheduled_operations: Optional[pulumi.Input[builtins.bool]] = None,
|
55
56
|
encryption_key: Optional[pulumi.Input['AutonomousDatabaseEncryptionKeyArgs']] = None,
|
56
57
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
57
58
|
in_memory_percentage: Optional[pulumi.Input[builtins.int]] = None,
|
@@ -165,6 +166,7 @@ class AutonomousDatabaseArgs:
|
|
165
166
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
166
167
|
:param pulumi.Input[builtins.str] disaster_recovery_type: Indicates the disaster recovery (DR) type of the standby Autonomous Database Serverless instance. 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.
|
167
168
|
:param pulumi.Input[builtins.str] display_name: (Updatable) The user-friendly name for the Autonomous Database. The name does not have to be unique.
|
169
|
+
:param pulumi.Input[builtins.bool] enable_delete_scheduled_operations: If omitted or set to false the provider will not delete scheduled_operations from the Autonomous Database. If set to true, provider will delete scheduled_operations from the Autonomous Database.
|
168
170
|
:param pulumi.Input['AutonomousDatabaseEncryptionKeyArgs'] encryption_key: (Updatable) Details of the Autonomous Database encryption key.
|
169
171
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
170
172
|
:param pulumi.Input[builtins.int] in_memory_percentage: (Updatable) The percentage of the System Global Area(SGA) assigned to In-Memory tables in Autonomous Database. This property is applicable only to Autonomous Databases on the Exadata Cloud@Customer platform.
|
@@ -330,6 +332,8 @@ class AutonomousDatabaseArgs:
|
|
330
332
|
pulumi.set(__self__, "disaster_recovery_type", disaster_recovery_type)
|
331
333
|
if display_name is not None:
|
332
334
|
pulumi.set(__self__, "display_name", display_name)
|
335
|
+
if enable_delete_scheduled_operations is not None:
|
336
|
+
pulumi.set(__self__, "enable_delete_scheduled_operations", enable_delete_scheduled_operations)
|
333
337
|
if encryption_key is not None:
|
334
338
|
pulumi.set(__self__, "encryption_key", encryption_key)
|
335
339
|
if freeform_tags is not None:
|
@@ -829,6 +833,18 @@ class AutonomousDatabaseArgs:
|
|
829
833
|
def display_name(self, value: Optional[pulumi.Input[builtins.str]]):
|
830
834
|
pulumi.set(self, "display_name", value)
|
831
835
|
|
836
|
+
@property
|
837
|
+
@pulumi.getter(name="enableDeleteScheduledOperations")
|
838
|
+
def enable_delete_scheduled_operations(self) -> Optional[pulumi.Input[builtins.bool]]:
|
839
|
+
"""
|
840
|
+
If omitted or set to false the provider will not delete scheduled_operations from the Autonomous Database. If set to true, provider will delete scheduled_operations from the Autonomous Database.
|
841
|
+
"""
|
842
|
+
return pulumi.get(self, "enable_delete_scheduled_operations")
|
843
|
+
|
844
|
+
@enable_delete_scheduled_operations.setter
|
845
|
+
def enable_delete_scheduled_operations(self, value: Optional[pulumi.Input[builtins.bool]]):
|
846
|
+
pulumi.set(self, "enable_delete_scheduled_operations", value)
|
847
|
+
|
832
848
|
@property
|
833
849
|
@pulumi.getter(name="encryptionKey")
|
834
850
|
def encryption_key(self) -> Optional[pulumi.Input['AutonomousDatabaseEncryptionKeyArgs']]:
|
@@ -1595,6 +1611,7 @@ class _AutonomousDatabaseState:
|
|
1595
1611
|
disaster_recovery_region_type: Optional[pulumi.Input[builtins.str]] = None,
|
1596
1612
|
disaster_recovery_type: Optional[pulumi.Input[builtins.str]] = None,
|
1597
1613
|
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
1614
|
+
enable_delete_scheduled_operations: Optional[pulumi.Input[builtins.bool]] = None,
|
1598
1615
|
encryption_key: Optional[pulumi.Input['AutonomousDatabaseEncryptionKeyArgs']] = None,
|
1599
1616
|
encryption_key_history_entries: Optional[pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseEncryptionKeyHistoryEntryArgs']]]] = None,
|
1600
1617
|
failed_data_recovery_in_seconds: Optional[pulumi.Input[builtins.int]] = None,
|
@@ -1769,6 +1786,7 @@ class _AutonomousDatabaseState:
|
|
1769
1786
|
:param pulumi.Input[builtins.str] disaster_recovery_region_type: **Deprecated** The disaster recovery (DR) region type of the Autonomous Database. For Serverless Autonomous Databases, DR associations have designated primary (`PRIMARY`) and standby (`REMOTE`) regions. These region types do not change when the database changes roles. The standby region in DR associations can be the same region as the primary region, or they can be in a remote regions. Some database administration operations may be available only in the primary region of the DR association, and cannot be performed when the database using the primary role is operating in a remote region.
|
1770
1787
|
:param pulumi.Input[builtins.str] disaster_recovery_type: Indicates the disaster recovery (DR) type of the standby Autonomous Database Serverless instance. 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.
|
1771
1788
|
:param pulumi.Input[builtins.str] display_name: (Updatable) The user-friendly name for the Autonomous Database. The name does not have to be unique.
|
1789
|
+
:param pulumi.Input[builtins.bool] enable_delete_scheduled_operations: If omitted or set to false the provider will not delete scheduled_operations from the Autonomous Database. If set to true, provider will delete scheduled_operations from the Autonomous Database.
|
1772
1790
|
:param pulumi.Input['AutonomousDatabaseEncryptionKeyArgs'] encryption_key: (Updatable) Details of the Autonomous Database encryption key.
|
1773
1791
|
:param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseEncryptionKeyHistoryEntryArgs']]] encryption_key_history_entries: Key History Entry.
|
1774
1792
|
:param pulumi.Input[builtins.int] failed_data_recovery_in_seconds: Indicates the number of seconds of data loss for a Data Guard failover.
|
@@ -2006,6 +2024,8 @@ class _AutonomousDatabaseState:
|
|
2006
2024
|
pulumi.set(__self__, "disaster_recovery_type", disaster_recovery_type)
|
2007
2025
|
if display_name is not None:
|
2008
2026
|
pulumi.set(__self__, "display_name", display_name)
|
2027
|
+
if enable_delete_scheduled_operations is not None:
|
2028
|
+
pulumi.set(__self__, "enable_delete_scheduled_operations", enable_delete_scheduled_operations)
|
2009
2029
|
if encryption_key is not None:
|
2010
2030
|
pulumi.set(__self__, "encryption_key", encryption_key)
|
2011
2031
|
if encryption_key_history_entries is not None:
|
@@ -2737,6 +2757,18 @@ class _AutonomousDatabaseState:
|
|
2737
2757
|
def display_name(self, value: Optional[pulumi.Input[builtins.str]]):
|
2738
2758
|
pulumi.set(self, "display_name", value)
|
2739
2759
|
|
2760
|
+
@property
|
2761
|
+
@pulumi.getter(name="enableDeleteScheduledOperations")
|
2762
|
+
def enable_delete_scheduled_operations(self) -> Optional[pulumi.Input[builtins.bool]]:
|
2763
|
+
"""
|
2764
|
+
If omitted or set to false the provider will not delete scheduled_operations from the Autonomous Database. If set to true, provider will delete scheduled_operations from the Autonomous Database.
|
2765
|
+
"""
|
2766
|
+
return pulumi.get(self, "enable_delete_scheduled_operations")
|
2767
|
+
|
2768
|
+
@enable_delete_scheduled_operations.setter
|
2769
|
+
def enable_delete_scheduled_operations(self, value: Optional[pulumi.Input[builtins.bool]]):
|
2770
|
+
pulumi.set(self, "enable_delete_scheduled_operations", value)
|
2771
|
+
|
2740
2772
|
@property
|
2741
2773
|
@pulumi.getter(name="encryptionKey")
|
2742
2774
|
def encryption_key(self) -> Optional[pulumi.Input['AutonomousDatabaseEncryptionKeyArgs']]:
|
@@ -4091,6 +4123,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4091
4123
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
4092
4124
|
disaster_recovery_type: Optional[pulumi.Input[builtins.str]] = None,
|
4093
4125
|
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
4126
|
+
enable_delete_scheduled_operations: Optional[pulumi.Input[builtins.bool]] = None,
|
4094
4127
|
encryption_key: Optional[pulumi.Input[Union['AutonomousDatabaseEncryptionKeyArgs', 'AutonomousDatabaseEncryptionKeyArgsDict']]] = None,
|
4095
4128
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
4096
4129
|
in_memory_percentage: Optional[pulumi.Input[builtins.int]] = None,
|
@@ -4220,6 +4253,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4220
4253
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
4221
4254
|
:param pulumi.Input[builtins.str] disaster_recovery_type: Indicates the disaster recovery (DR) type of the standby Autonomous Database Serverless instance. 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.
|
4222
4255
|
:param pulumi.Input[builtins.str] display_name: (Updatable) The user-friendly name for the Autonomous Database. The name does not have to be unique.
|
4256
|
+
:param pulumi.Input[builtins.bool] enable_delete_scheduled_operations: If omitted or set to false the provider will not delete scheduled_operations from the Autonomous Database. If set to true, provider will delete scheduled_operations from the Autonomous Database.
|
4223
4257
|
:param pulumi.Input[Union['AutonomousDatabaseEncryptionKeyArgs', 'AutonomousDatabaseEncryptionKeyArgsDict']] encryption_key: (Updatable) Details of the Autonomous Database encryption key.
|
4224
4258
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
4225
4259
|
:param pulumi.Input[builtins.int] in_memory_percentage: (Updatable) The percentage of the System Global Area(SGA) assigned to In-Memory tables in Autonomous Database. This property is applicable only to Autonomous Databases on the Exadata Cloud@Customer platform.
|
@@ -4393,6 +4427,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4393
4427
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
4394
4428
|
disaster_recovery_type: Optional[pulumi.Input[builtins.str]] = None,
|
4395
4429
|
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
4430
|
+
enable_delete_scheduled_operations: Optional[pulumi.Input[builtins.bool]] = None,
|
4396
4431
|
encryption_key: Optional[pulumi.Input[Union['AutonomousDatabaseEncryptionKeyArgs', 'AutonomousDatabaseEncryptionKeyArgsDict']]] = None,
|
4397
4432
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
4398
4433
|
in_memory_percentage: Optional[pulumi.Input[builtins.int]] = None,
|
@@ -4492,6 +4527,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4492
4527
|
__props__.__dict__["defined_tags"] = defined_tags
|
4493
4528
|
__props__.__dict__["disaster_recovery_type"] = disaster_recovery_type
|
4494
4529
|
__props__.__dict__["display_name"] = display_name
|
4530
|
+
__props__.__dict__["enable_delete_scheduled_operations"] = enable_delete_scheduled_operations
|
4495
4531
|
__props__.__dict__["encryption_key"] = encryption_key
|
4496
4532
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
4497
4533
|
__props__.__dict__["in_memory_percentage"] = in_memory_percentage
|
@@ -4662,6 +4698,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4662
4698
|
disaster_recovery_region_type: Optional[pulumi.Input[builtins.str]] = None,
|
4663
4699
|
disaster_recovery_type: Optional[pulumi.Input[builtins.str]] = None,
|
4664
4700
|
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
4701
|
+
enable_delete_scheduled_operations: Optional[pulumi.Input[builtins.bool]] = None,
|
4665
4702
|
encryption_key: Optional[pulumi.Input[Union['AutonomousDatabaseEncryptionKeyArgs', 'AutonomousDatabaseEncryptionKeyArgsDict']]] = None,
|
4666
4703
|
encryption_key_history_entries: Optional[pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseEncryptionKeyHistoryEntryArgs', 'AutonomousDatabaseEncryptionKeyHistoryEntryArgsDict']]]]] = None,
|
4667
4704
|
failed_data_recovery_in_seconds: Optional[pulumi.Input[builtins.int]] = None,
|
@@ -4841,6 +4878,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4841
4878
|
:param pulumi.Input[builtins.str] disaster_recovery_region_type: **Deprecated** The disaster recovery (DR) region type of the Autonomous Database. For Serverless Autonomous Databases, DR associations have designated primary (`PRIMARY`) and standby (`REMOTE`) regions. These region types do not change when the database changes roles. The standby region in DR associations can be the same region as the primary region, or they can be in a remote regions. Some database administration operations may be available only in the primary region of the DR association, and cannot be performed when the database using the primary role is operating in a remote region.
|
4842
4879
|
:param pulumi.Input[builtins.str] disaster_recovery_type: Indicates the disaster recovery (DR) type of the standby Autonomous Database Serverless instance. 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.
|
4843
4880
|
:param pulumi.Input[builtins.str] display_name: (Updatable) The user-friendly name for the Autonomous Database. The name does not have to be unique.
|
4881
|
+
:param pulumi.Input[builtins.bool] enable_delete_scheduled_operations: If omitted or set to false the provider will not delete scheduled_operations from the Autonomous Database. If set to true, provider will delete scheduled_operations from the Autonomous Database.
|
4844
4882
|
:param pulumi.Input[Union['AutonomousDatabaseEncryptionKeyArgs', 'AutonomousDatabaseEncryptionKeyArgsDict']] encryption_key: (Updatable) Details of the Autonomous Database encryption key.
|
4845
4883
|
:param pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseEncryptionKeyHistoryEntryArgs', 'AutonomousDatabaseEncryptionKeyHistoryEntryArgsDict']]]] encryption_key_history_entries: Key History Entry.
|
4846
4884
|
:param pulumi.Input[builtins.int] failed_data_recovery_in_seconds: Indicates the number of seconds of data loss for a Data Guard failover.
|
@@ -5041,6 +5079,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
5041
5079
|
__props__.__dict__["disaster_recovery_region_type"] = disaster_recovery_region_type
|
5042
5080
|
__props__.__dict__["disaster_recovery_type"] = disaster_recovery_type
|
5043
5081
|
__props__.__dict__["display_name"] = display_name
|
5082
|
+
__props__.__dict__["enable_delete_scheduled_operations"] = enable_delete_scheduled_operations
|
5044
5083
|
__props__.__dict__["encryption_key"] = encryption_key
|
5045
5084
|
__props__.__dict__["encryption_key_history_entries"] = encryption_key_history_entries
|
5046
5085
|
__props__.__dict__["failed_data_recovery_in_seconds"] = failed_data_recovery_in_seconds
|
@@ -5500,6 +5539,14 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
5500
5539
|
"""
|
5501
5540
|
return pulumi.get(self, "display_name")
|
5502
5541
|
|
5542
|
+
@property
|
5543
|
+
@pulumi.getter(name="enableDeleteScheduledOperations")
|
5544
|
+
def enable_delete_scheduled_operations(self) -> pulumi.Output[Optional[builtins.bool]]:
|
5545
|
+
"""
|
5546
|
+
If omitted or set to false the provider will not delete scheduled_operations from the Autonomous Database. If set to true, provider will delete scheduled_operations from the Autonomous Database.
|
5547
|
+
"""
|
5548
|
+
return pulumi.get(self, "enable_delete_scheduled_operations")
|
5549
|
+
|
5503
5550
|
@property
|
5504
5551
|
@pulumi.getter(name="encryptionKey")
|
5505
5552
|
def encryption_key(self) -> pulumi.Output['outputs.AutonomousDatabaseEncryptionKey']:
|
@@ -28,7 +28,7 @@ class GetAutonomousDatabaseResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getAutonomousDatabase.
|
30
30
|
"""
|
31
|
-
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, auto_refresh_frequency_in_seconds=None, auto_refresh_point_lag_in_seconds=None, autonomous_container_database_id=None, autonomous_database_backup_id=None, autonomous_database_id=None, autonomous_maintenance_schedule_type=None, availability_domain=None, available_upgrade_versions=None, backup_configs=None, backup_retention_period_in_days=None, byol_compute_count_limit=None, character_set=None, clone_table_space_lists=None, clone_type=None, cluster_placement_group_id=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, disaster_recovery_type=None, display_name=None, encryption_key_history_entries=None, encryption_keys=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_backup_retention_locked=None, is_data_guard_enabled=None, is_dedicated=None, is_dev_tier=None, is_disconnect_peer=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, key_version_id=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, maintenance_target_component=None, max_cpu_core_count=None, memory_per_oracle_compute_unit_in_gbs=None, ncharacter_set=None, net_services_architecture=None, next_long_term_backup_time_stamp=None, nsg_ids=None, ocpu_count=None, open_mode=None, operations_insights_status=None, peer_db_id=None, peer_db_ids=None, permission_level=None, private_endpoint=None, private_endpoint_ip=None, private_endpoint_label=None, provisionable_cpuses=None, public_connection_urls=None, public_endpoint=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, security_attributes=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, subscription_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_auto_refresh_start=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_undeleted=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):
|
31
|
+
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, auto_refresh_frequency_in_seconds=None, auto_refresh_point_lag_in_seconds=None, autonomous_container_database_id=None, autonomous_database_backup_id=None, autonomous_database_id=None, autonomous_maintenance_schedule_type=None, availability_domain=None, available_upgrade_versions=None, backup_configs=None, backup_retention_period_in_days=None, byol_compute_count_limit=None, character_set=None, clone_table_space_lists=None, clone_type=None, cluster_placement_group_id=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, disaster_recovery_type=None, display_name=None, enable_delete_scheduled_operations=None, encryption_key_history_entries=None, encryption_keys=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_backup_retention_locked=None, is_data_guard_enabled=None, is_dedicated=None, is_dev_tier=None, is_disconnect_peer=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, key_version_id=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, maintenance_target_component=None, max_cpu_core_count=None, memory_per_oracle_compute_unit_in_gbs=None, ncharacter_set=None, net_services_architecture=None, next_long_term_backup_time_stamp=None, nsg_ids=None, ocpu_count=None, open_mode=None, operations_insights_status=None, peer_db_id=None, peer_db_ids=None, permission_level=None, private_endpoint=None, private_endpoint_ip=None, private_endpoint_label=None, provisionable_cpuses=None, public_connection_urls=None, public_endpoint=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, security_attributes=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, subscription_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_auto_refresh_start=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_undeleted=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):
|
32
32
|
if actual_used_data_storage_size_in_tbs and not isinstance(actual_used_data_storage_size_in_tbs, float):
|
33
33
|
raise TypeError("Expected argument 'actual_used_data_storage_size_in_tbs' to be a float")
|
34
34
|
pulumi.set(__self__, "actual_used_data_storage_size_in_tbs", actual_used_data_storage_size_in_tbs)
|
@@ -152,6 +152,9 @@ class GetAutonomousDatabaseResult:
|
|
152
152
|
if display_name and not isinstance(display_name, str):
|
153
153
|
raise TypeError("Expected argument 'display_name' to be a str")
|
154
154
|
pulumi.set(__self__, "display_name", display_name)
|
155
|
+
if enable_delete_scheduled_operations and not isinstance(enable_delete_scheduled_operations, bool):
|
156
|
+
raise TypeError("Expected argument 'enable_delete_scheduled_operations' to be a bool")
|
157
|
+
pulumi.set(__self__, "enable_delete_scheduled_operations", enable_delete_scheduled_operations)
|
155
158
|
if encryption_key_history_entries and not isinstance(encryption_key_history_entries, list):
|
156
159
|
raise TypeError("Expected argument 'encryption_key_history_entries' to be a list")
|
157
160
|
pulumi.set(__self__, "encryption_key_history_entries", encryption_key_history_entries)
|
@@ -791,6 +794,14 @@ class GetAutonomousDatabaseResult:
|
|
791
794
|
"""
|
792
795
|
return pulumi.get(self, "display_name")
|
793
796
|
|
797
|
+
@property
|
798
|
+
@pulumi.getter(name="enableDeleteScheduledOperations")
|
799
|
+
def enable_delete_scheduled_operations(self) -> builtins.bool:
|
800
|
+
"""
|
801
|
+
If omitted or set to false the provider will not delete scheduled_operations from the Autonomous Database. If set to true, provider will delete scheduled_operations from the Autonomous Database.
|
802
|
+
"""
|
803
|
+
return pulumi.get(self, "enable_delete_scheduled_operations")
|
804
|
+
|
794
805
|
@property
|
795
806
|
@pulumi.getter(name="encryptionKeyHistoryEntries")
|
796
807
|
def encryption_key_history_entries(self) -> Sequence['outputs.GetAutonomousDatabaseEncryptionKeyHistoryEntryResult']:
|
@@ -1662,6 +1673,7 @@ class AwaitableGetAutonomousDatabaseResult(GetAutonomousDatabaseResult):
|
|
1662
1673
|
disaster_recovery_region_type=self.disaster_recovery_region_type,
|
1663
1674
|
disaster_recovery_type=self.disaster_recovery_type,
|
1664
1675
|
display_name=self.display_name,
|
1676
|
+
enable_delete_scheduled_operations=self.enable_delete_scheduled_operations,
|
1665
1677
|
encryption_key_history_entries=self.encryption_key_history_entries,
|
1666
1678
|
encryption_keys=self.encryption_keys,
|
1667
1679
|
failed_data_recovery_in_seconds=self.failed_data_recovery_in_seconds,
|
@@ -1837,6 +1849,7 @@ def get_autonomous_database(autonomous_database_id: Optional[builtins.str] = Non
|
|
1837
1849
|
disaster_recovery_region_type=pulumi.get(__ret__, 'disaster_recovery_region_type'),
|
1838
1850
|
disaster_recovery_type=pulumi.get(__ret__, 'disaster_recovery_type'),
|
1839
1851
|
display_name=pulumi.get(__ret__, 'display_name'),
|
1852
|
+
enable_delete_scheduled_operations=pulumi.get(__ret__, 'enable_delete_scheduled_operations'),
|
1840
1853
|
encryption_key_history_entries=pulumi.get(__ret__, 'encryption_key_history_entries'),
|
1841
1854
|
encryption_keys=pulumi.get(__ret__, 'encryption_keys'),
|
1842
1855
|
failed_data_recovery_in_seconds=pulumi.get(__ret__, 'failed_data_recovery_in_seconds'),
|
@@ -2009,6 +2022,7 @@ def get_autonomous_database_output(autonomous_database_id: Optional[pulumi.Input
|
|
2009
2022
|
disaster_recovery_region_type=pulumi.get(__response__, 'disaster_recovery_region_type'),
|
2010
2023
|
disaster_recovery_type=pulumi.get(__response__, 'disaster_recovery_type'),
|
2011
2024
|
display_name=pulumi.get(__response__, 'display_name'),
|
2025
|
+
enable_delete_scheduled_operations=pulumi.get(__response__, 'enable_delete_scheduled_operations'),
|
2012
2026
|
encryption_key_history_entries=pulumi.get(__response__, 'encryption_key_history_entries'),
|
2013
2027
|
encryption_keys=pulumi.get(__response__, 'encryption_keys'),
|
2014
2028
|
failed_data_recovery_in_seconds=pulumi.get(__response__, 'failed_data_recovery_in_seconds'),
|
pulumi_oci/database/outputs.py
CHANGED
@@ -5303,7 +5303,7 @@ class AutonomousDatabaseScheduledOperation(dict):
|
|
5303
5303
|
return super().get(key, default)
|
5304
5304
|
|
5305
5305
|
def __init__(__self__, *,
|
5306
|
-
day_of_week: 'outputs.AutonomousDatabaseScheduledOperationDayOfWeek',
|
5306
|
+
day_of_week: Optional['outputs.AutonomousDatabaseScheduledOperationDayOfWeek'] = None,
|
5307
5307
|
scheduled_start_time: Optional[builtins.str] = None,
|
5308
5308
|
scheduled_stop_time: Optional[builtins.str] = None):
|
5309
5309
|
"""
|
@@ -5311,7 +5311,8 @@ class AutonomousDatabaseScheduledOperation(dict):
|
|
5311
5311
|
:param builtins.str scheduled_start_time: (Updatable) auto start time. value must be of ISO-8601 format "HH:mm"
|
5312
5312
|
:param builtins.str scheduled_stop_time: (Updatable) auto stop time. value must be of ISO-8601 format "HH:mm"
|
5313
5313
|
"""
|
5314
|
-
|
5314
|
+
if day_of_week is not None:
|
5315
|
+
pulumi.set(__self__, "day_of_week", day_of_week)
|
5315
5316
|
if scheduled_start_time is not None:
|
5316
5317
|
pulumi.set(__self__, "scheduled_start_time", scheduled_start_time)
|
5317
5318
|
if scheduled_stop_time is not None:
|
@@ -5319,7 +5320,7 @@ class AutonomousDatabaseScheduledOperation(dict):
|
|
5319
5320
|
|
5320
5321
|
@property
|
5321
5322
|
@pulumi.getter(name="dayOfWeek")
|
5322
|
-
def day_of_week(self) -> 'outputs.AutonomousDatabaseScheduledOperationDayOfWeek':
|
5323
|
+
def day_of_week(self) -> Optional['outputs.AutonomousDatabaseScheduledOperationDayOfWeek']:
|
5323
5324
|
"""
|
5324
5325
|
(Updatable) Day of the week.
|
5325
5326
|
"""
|
@@ -23819,6 +23820,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
23819
23820
|
disaster_recovery_region_type: builtins.str,
|
23820
23821
|
disaster_recovery_type: builtins.str,
|
23821
23822
|
display_name: builtins.str,
|
23823
|
+
enable_delete_scheduled_operations: builtins.bool,
|
23822
23824
|
encryption_key_history_entries: Sequence['outputs.GetAutonomousDatabasesAutonomousDatabaseEncryptionKeyHistoryEntryResult'],
|
23823
23825
|
encryption_keys: Sequence['outputs.GetAutonomousDatabasesAutonomousDatabaseEncryptionKeyResult'],
|
23824
23826
|
failed_data_recovery_in_seconds: builtins.int,
|
@@ -23963,6 +23965,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
23963
23965
|
:param builtins.str disaster_recovery_region_type: **Deprecated.** The disaster recovery (DR) region type of the Autonomous Database. For Autonomous Database Serverless instances, DR associations have designated primary and standby regions. These region types do not change when the database changes roles. The standby region in DR associations can be the same region as the primary region, or they can be in a remote regions. Some database administration operations may be available only in the primary region of the DR association, and cannot be performed when the database using the primary role is operating in a remote region.
|
23964
23966
|
:param builtins.str disaster_recovery_type: Indicates the disaster recovery (DR) type of the Autonomous Database Serverless instance. 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.
|
23965
23967
|
:param builtins.str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
23968
|
+
:param builtins.bool enable_delete_scheduled_operations: If omitted or set to false the provider will not delete scheduled_operations from the Autonomous Database. If set to true, provider will delete scheduled_operations from the Autonomous Database.
|
23966
23969
|
:param Sequence['GetAutonomousDatabasesAutonomousDatabaseEncryptionKeyHistoryEntryArgs'] encryption_key_history_entries: Key History Entry.
|
23967
23970
|
:param Sequence['GetAutonomousDatabasesAutonomousDatabaseEncryptionKeyArgs'] encryption_keys: Details of the Autonomous Database encryption key.
|
23968
23971
|
:param builtins.int failed_data_recovery_in_seconds: Indicates the number of seconds of data loss for a Data Guard failover.
|
@@ -24102,6 +24105,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
24102
24105
|
pulumi.set(__self__, "disaster_recovery_region_type", disaster_recovery_region_type)
|
24103
24106
|
pulumi.set(__self__, "disaster_recovery_type", disaster_recovery_type)
|
24104
24107
|
pulumi.set(__self__, "display_name", display_name)
|
24108
|
+
pulumi.set(__self__, "enable_delete_scheduled_operations", enable_delete_scheduled_operations)
|
24105
24109
|
pulumi.set(__self__, "encryption_key_history_entries", encryption_key_history_entries)
|
24106
24110
|
pulumi.set(__self__, "encryption_keys", encryption_keys)
|
24107
24111
|
pulumi.set(__self__, "failed_data_recovery_in_seconds", failed_data_recovery_in_seconds)
|
@@ -24523,6 +24527,14 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
24523
24527
|
"""
|
24524
24528
|
return pulumi.get(self, "display_name")
|
24525
24529
|
|
24530
|
+
@property
|
24531
|
+
@pulumi.getter(name="enableDeleteScheduledOperations")
|
24532
|
+
def enable_delete_scheduled_operations(self) -> builtins.bool:
|
24533
|
+
"""
|
24534
|
+
If omitted or set to false the provider will not delete scheduled_operations from the Autonomous Database. If set to true, provider will delete scheduled_operations from the Autonomous Database.
|
24535
|
+
"""
|
24536
|
+
return pulumi.get(self, "enable_delete_scheduled_operations")
|
24537
|
+
|
24526
24538
|
@property
|
24527
24539
|
@pulumi.getter(name="encryptionKeyHistoryEntries")
|
24528
24540
|
def encryption_key_history_entries(self) -> Sequence['outputs.GetAutonomousDatabasesAutonomousDatabaseEncryptionKeyHistoryEntryResult']:
|