pulumi-oci 2.26.0a1741847591__py3-none-any.whl → 2.27.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +211 -0
- pulumi_oci/containerengine/_inputs.py +43 -44
- pulumi_oci/containerengine/cluster.py +2 -0
- pulumi_oci/containerengine/container_instance.py +2 -4
- pulumi_oci/containerengine/outputs.py +128 -43
- pulumi_oci/containerinstances/outputs.py +0 -14
- pulumi_oci/core/__init__.py +7 -0
- pulumi_oci/core/_inputs.py +168 -33
- pulumi_oci/core/compute_gpu_memory_cluster.py +706 -0
- pulumi_oci/core/compute_gpu_memory_fabric.py +667 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster.py +281 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster_instances.py +144 -0
- pulumi_oci/core/get_compute_gpu_memory_clusters.py +232 -0
- pulumi_oci/core/get_compute_gpu_memory_fabric.py +309 -0
- pulumi_oci/core/get_compute_gpu_memory_fabrics.py +289 -0
- pulumi_oci/core/outputs.py +595 -21
- pulumi_oci/database/__init__.py +3 -0
- pulumi_oci/database/_inputs.py +4116 -1225
- pulumi_oci/database/application_vip.py +59 -10
- pulumi_oci/database/autonomous_container_database.py +305 -52
- pulumi_oci/database/autonomous_container_database_add_standby.py +2183 -0
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +80 -40
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +322 -0
- pulumi_oci/database/autonomous_database.py +7 -28
- pulumi_oci/database/backup.py +153 -5
- pulumi_oci/database/cloud_exadata_infrastructure.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +163 -30
- pulumi_oci/database/db_node.py +64 -8
- pulumi_oci/database/exadata_infrastructure.py +157 -3
- pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py +1615 -0
- pulumi_oci/database/exadb_vm_cluster.py +84 -7
- pulumi_oci/database/exascale_db_storage_vault.py +147 -0
- pulumi_oci/database/external_container_database.py +4 -4
- pulumi_oci/database/external_non_container_database.py +4 -4
- pulumi_oci/database/external_pluggable_database.py +4 -4
- pulumi_oci/database/get_application_vip.py +16 -2
- pulumi_oci/database/get_autonomous_container_database.py +103 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +12 -1
- pulumi_oci/database/get_autonomous_container_databases.py +1 -1
- pulumi_oci/database/get_autonomous_database.py +0 -3
- pulumi_oci/database/get_backups.py +136 -10
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +43 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +59 -3
- pulumi_oci/database/get_cloud_vm_clusters.py +28 -6
- pulumi_oci/database/get_database_software_images.py +20 -1
- pulumi_oci/database/get_db_node.py +31 -4
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +57 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +29 -1
- pulumi_oci/database/get_exadb_vm_clusters.py +25 -3
- pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
- pulumi_oci/database/get_exascale_db_storage_vaults.py +47 -3
- pulumi_oci/database/get_external_container_database.py +1 -1
- pulumi_oci/database/get_external_non_container_database.py +1 -1
- pulumi_oci/database/get_external_pluggable_database.py +1 -1
- pulumi_oci/database/get_flex_components.py +28 -6
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/get_vm_cluster.py +60 -4
- pulumi_oci/database/get_vm_clusters.py +25 -3
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/outputs.py +3831 -267
- pulumi_oci/database/pluggable_database.py +13 -13
- pulumi_oci/database/vm_cluster.py +172 -18
- pulumi_oci/database/vm_cluster_add_virtual_network.py +114 -2
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +114 -2
- pulumi_oci/datasafe/__init__.py +7 -0
- pulumi_oci/datasafe/_inputs.py +301 -0
- pulumi_oci/datasafe/discovery_mod.py +49 -0
- pulumi_oci/datasafe/get_discovery_job.py +15 -1
- pulumi_oci/datasafe/get_masking_report.py +46 -4
- pulumi_oci/datasafe/get_masking_report_masking_errors.py +166 -0
- pulumi_oci/datasafe/get_security_assessment_finding.py +31 -1
- pulumi_oci/datasafe/get_security_assessment_findings.py +43 -3
- pulumi_oci/datasafe/get_sensitive_column_analytics.py +370 -0
- pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
- pulumi_oci/datasafe/get_sensitive_type_group.py +253 -0
- pulumi_oci/datasafe/get_sensitive_type_group_grouped_sensitive_types.py +166 -0
- pulumi_oci/datasafe/get_sensitive_type_groups.py +294 -0
- pulumi_oci/datasafe/outputs.py +676 -3
- pulumi_oci/datasafe/sensitive_data_model.py +49 -0
- pulumi_oci/datasafe/sensitive_type_group.py +563 -0
- pulumi_oci/datasafe/sensitive_type_group_grouped_sensitive_type.py +287 -0
- pulumi_oci/datascience/__init__.py +4 -0
- pulumi_oci/datascience/_inputs.py +1160 -41
- pulumi_oci/datascience/get_model.py +29 -1
- pulumi_oci/datascience/get_model_custom_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_defined_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_version_set.py +15 -1
- pulumi_oci/datascience/get_model_version_sets.py +25 -3
- pulumi_oci/datascience/get_models.py +25 -3
- pulumi_oci/datascience/get_pipeline.py +15 -1
- pulumi_oci/datascience/model.py +64 -0
- pulumi_oci/datascience/model_custom_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_defined_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_version_set.py +28 -0
- pulumi_oci/datascience/outputs.py +4343 -2164
- pulumi_oci/datascience/pipeline.py +48 -141
- pulumi_oci/datascience/pipeline_run.py +32 -0
- pulumi_oci/dblm/__init__.py +17 -0
- pulumi_oci/dblm/_inputs.py +275 -0
- pulumi_oci/dblm/get_vulnerability.py +242 -0
- pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py +220 -0
- pulumi_oci/dblm/get_vulnerability_notifications.py +144 -0
- pulumi_oci/dblm/get_vulnerability_resources.py +258 -0
- pulumi_oci/dblm/get_vulnerability_scan.py +267 -0
- pulumi_oci/dblm/get_vulnerability_scans.py +270 -0
- pulumi_oci/dblm/get_vulnerability_vulnerabilities.py +258 -0
- pulumi_oci/dblm/outputs.py +1294 -0
- pulumi_oci/dblm/vulnerability_scan.py +521 -0
- pulumi_oci/email/dkim.py +120 -20
- pulumi_oci/email/get_dkim.py +40 -1
- pulumi_oci/email/outputs.py +29 -0
- pulumi_oci/filestorage/__init__.py +3 -0
- pulumi_oci/filestorage/_inputs.py +49 -0
- pulumi_oci/filestorage/file_system.py +105 -0
- pulumi_oci/filestorage/file_system_quota_rule.py +593 -0
- pulumi_oci/filestorage/get_file_system_quota_rule.py +248 -0
- pulumi_oci/filestorage/get_file_system_quota_rules.py +210 -0
- pulumi_oci/filestorage/outputs.py +186 -0
- pulumi_oci/goldengate/_inputs.py +128 -0
- pulumi_oci/goldengate/deployment.py +103 -0
- pulumi_oci/goldengate/deployment_backup.py +28 -0
- pulumi_oci/goldengate/get_deployment.py +43 -1
- pulumi_oci/goldengate/get_deployment_backup.py +15 -1
- pulumi_oci/goldengate/outputs.py +289 -0
- pulumi_oci/mysql/_inputs.py +1239 -10
- pulumi_oci/mysql/channel.py +28 -0
- pulumi_oci/mysql/get_channel.py +15 -1
- pulumi_oci/mysql/get_mysql_backup.py +15 -1
- pulumi_oci/mysql/get_mysql_configuration.py +15 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +28 -0
- pulumi_oci/mysql/mysql_configuration.py +106 -0
- pulumi_oci/mysql/mysql_db_system.py +36 -0
- pulumi_oci/mysql/outputs.py +2008 -35
- pulumi_oci/opensearch/__init__.py +3 -0
- pulumi_oci/opensearch/_inputs.py +101 -0
- pulumi_oci/opensearch/cluster.py +76 -29
- pulumi_oci/opensearch/get_opensearch_cluster.py +12 -1
- pulumi_oci/opensearch/get_opensearch_cluster_pipeline.py +433 -0
- pulumi_oci/opensearch/get_opensearch_cluster_pipelines.py +218 -0
- pulumi_oci/opensearch/opensearch_cluster_pipeline.py +1172 -0
- pulumi_oci/opensearch/outputs.py +425 -0
- pulumi_oci/osmanagementhub/__init__.py +18 -0
- pulumi_oci/osmanagementhub/_inputs.py +677 -12
- pulumi_oci/osmanagementhub/event.py +8 -0
- pulumi_oci/osmanagementhub/get_entitlements.py +2 -2
- pulumi_oci/osmanagementhub/get_event.py +2 -0
- pulumi_oci/osmanagementhub/get_events.py +2 -0
- pulumi_oci/osmanagementhub/get_managed_instance.py +30 -2
- pulumi_oci/osmanagementhub/get_managed_instances.py +75 -63
- pulumi_oci/osmanagementhub/get_management_station.py +116 -4
- pulumi_oci/osmanagementhub/get_management_station_mirrors.py +1 -1
- pulumi_oci/osmanagementhub/get_management_stations.py +47 -4
- pulumi_oci/osmanagementhub/get_profile.py +32 -4
- pulumi_oci/osmanagementhub/get_profile_available_software_sources.py +207 -0
- pulumi_oci/osmanagementhub/get_profile_version.py +388 -0
- pulumi_oci/osmanagementhub/get_profiles.py +63 -3
- pulumi_oci/osmanagementhub/get_scheduled_job.py +15 -1
- pulumi_oci/osmanagementhub/get_software_package.py +2 -2
- pulumi_oci/osmanagementhub/get_software_package_software_source.py +7 -7
- pulumi_oci/osmanagementhub/get_software_source.py +89 -5
- pulumi_oci/osmanagementhub/get_software_source_available_software_packages.py +209 -0
- pulumi_oci/osmanagementhub/get_software_source_manifest.py +127 -0
- pulumi_oci/osmanagementhub/get_software_sources.py +30 -8
- pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance.py +56 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +49 -0
- pulumi_oci/osmanagementhub/managed_instance_group_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance_reboot_management.py +299 -0
- pulumi_oci/osmanagementhub/management_station.py +251 -4
- pulumi_oci/osmanagementhub/management_station_associate_managed_instances_management.py +298 -0
- pulumi_oci/osmanagementhub/management_station_refresh_management.py +2 -2
- pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +9 -9
- pulumi_oci/osmanagementhub/outputs.py +1349 -50
- pulumi_oci/osmanagementhub/profile.py +70 -14
- pulumi_oci/osmanagementhub/profile_attach_lifecycle_stage_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_managed_instance_group_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_management_station_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_detach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/scheduled_job.py +72 -21
- pulumi_oci/osmanagementhub/software_source.py +365 -26
- pulumi_oci/osmanagementhub/software_source_add_packages_management.py +67 -10
- pulumi_oci/osmanagementhub/software_source_generate_metadata_management.py +217 -0
- pulumi_oci/osmanagementhub/software_source_manifest.py +268 -0
- pulumi_oci/osmanagementhub/software_source_remove_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/software_source_replace_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/work_request_rerun_management.py +325 -0
- pulumi_oci/psql/_inputs.py +258 -0
- pulumi_oci/psql/backup.py +129 -28
- pulumi_oci/psql/db_system.py +10 -0
- pulumi_oci/psql/get_backup.py +47 -2
- pulumi_oci/psql/get_backups.py +3 -0
- pulumi_oci/psql/get_configurations.py +23 -1
- pulumi_oci/psql/get_db_system.py +1 -1
- pulumi_oci/psql/get_db_systems.py +1 -1
- pulumi_oci/psql/outputs.py +541 -5
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/redis_cluster.py +7 -7
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/METADATA +2 -2
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/RECORD +206 -150
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/top_level.txt +0 -0
@@ -27,7 +27,7 @@ class GetAutonomousContainerDatabaseResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getAutonomousContainerDatabase.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, associated_backup_configuration_details=None, autonomous_container_database_id=None, autonomous_exadata_infrastructure_id=None, autonomous_vm_cluster_id=None, availability_domain=None, available_cpus=None, backup_configs=None, backup_destination_properties_lists=None, cloud_autonomous_vm_cluster_id=None, compartment_id=None, compute_model=None, database_software_image_id=None, db_name=None, db_split_threshold=None, db_unique_name=None, db_version=None, defined_tags=None, display_name=None, distribution_affinity=None, dst_file_version=None, fast_start_fail_over_lag_limit_in_seconds=None, freeform_tags=None, id=None, infrastructure_type=None, is_automatic_failover_enabled=None, is_dst_file_update_enabled=None, key_history_entries=None, key_store_id=None, key_store_wallet_name=None, key_version_id=None, kms_key_id=None, largest_provisionable_autonomous_database_in_cpus=None, last_maintenance_run_id=None, lifecycle_details=None, list_one_off_patches=None, maintenance_window_details=None, maintenance_windows=None, memory_per_oracle_compute_unit_in_gbs=None, net_services_architecture=None, next_maintenance_run_id=None, patch_id=None, patch_model=None, peer_autonomous_container_database_backup_configs=None, peer_autonomous_container_database_compartment_id=None, peer_autonomous_container_database_display_name=None, peer_autonomous_exadata_infrastructure_id=None, peer_autonomous_vm_cluster_id=None, peer_cloud_autonomous_vm_cluster_id=None, peer_db_unique_name=None, protection_mode=None, provisionable_cpuses=None, provisioned_cpus=None, reclaimable_cpus=None, recovery_appliance_details=None, reserved_cpus=None, role=None, rotate_key_trigger=None, service_level_agreement_type=None, standby_maintenance_buffer_in_days=None, state=None, time_created=None, time_of_last_backup=None, time_snapshot_standby_revert=None, total_cpus=None, vault_id=None, version_preference=None, vm_failover_reservation=None):
|
30
|
+
def __init__(__self__, associated_backup_configuration_details=None, autonomous_container_database_id=None, autonomous_exadata_infrastructure_id=None, autonomous_vm_cluster_id=None, availability_domain=None, available_cpus=None, backup_configs=None, backup_destination_properties_lists=None, cloud_autonomous_vm_cluster_id=None, compartment_id=None, compute_model=None, database_software_image_id=None, dataguard_group_members=None, dataguards=None, db_name=None, db_split_threshold=None, db_unique_name=None, db_version=None, defined_tags=None, display_name=None, distribution_affinity=None, dst_file_version=None, failover_trigger=None, fast_start_fail_over_lag_limit_in_seconds=None, freeform_tags=None, id=None, infrastructure_type=None, is_automatic_failover_enabled=None, is_data_guard_enabled=None, is_dst_file_update_enabled=None, is_multiple_standby=None, key_history_entries=None, key_store_id=None, key_store_wallet_name=None, key_version_id=None, kms_key_id=None, largest_provisionable_autonomous_database_in_cpus=None, last_maintenance_run_id=None, lifecycle_details=None, list_one_off_patches=None, maintenance_window_details=None, maintenance_windows=None, memory_per_oracle_compute_unit_in_gbs=None, net_services_architecture=None, next_maintenance_run_id=None, patch_id=None, patch_model=None, peer_autonomous_container_database_backup_configs=None, peer_autonomous_container_database_compartment_id=None, peer_autonomous_container_database_display_name=None, peer_autonomous_exadata_infrastructure_id=None, peer_autonomous_vm_cluster_id=None, peer_cloud_autonomous_vm_cluster_id=None, peer_db_unique_name=None, protection_mode=None, provisionable_cpuses=None, provisioned_cpus=None, reclaimable_cpus=None, recovery_appliance_details=None, reinstate_trigger=None, reserved_cpus=None, role=None, rotate_key_trigger=None, service_level_agreement_type=None, standby_maintenance_buffer_in_days=None, state=None, switchover_trigger=None, time_created=None, time_of_last_backup=None, time_snapshot_standby_revert=None, total_cpus=None, vault_id=None, version_preference=None, vm_failover_reservation=None):
|
31
31
|
if associated_backup_configuration_details and not isinstance(associated_backup_configuration_details, list):
|
32
32
|
raise TypeError("Expected argument 'associated_backup_configuration_details' to be a list")
|
33
33
|
pulumi.set(__self__, "associated_backup_configuration_details", associated_backup_configuration_details)
|
@@ -64,6 +64,12 @@ class GetAutonomousContainerDatabaseResult:
|
|
64
64
|
if database_software_image_id and not isinstance(database_software_image_id, str):
|
65
65
|
raise TypeError("Expected argument 'database_software_image_id' to be a str")
|
66
66
|
pulumi.set(__self__, "database_software_image_id", database_software_image_id)
|
67
|
+
if dataguard_group_members and not isinstance(dataguard_group_members, list):
|
68
|
+
raise TypeError("Expected argument 'dataguard_group_members' to be a list")
|
69
|
+
pulumi.set(__self__, "dataguard_group_members", dataguard_group_members)
|
70
|
+
if dataguards and not isinstance(dataguards, list):
|
71
|
+
raise TypeError("Expected argument 'dataguards' to be a list")
|
72
|
+
pulumi.set(__self__, "dataguards", dataguards)
|
67
73
|
if db_name and not isinstance(db_name, str):
|
68
74
|
raise TypeError("Expected argument 'db_name' to be a str")
|
69
75
|
pulumi.set(__self__, "db_name", db_name)
|
@@ -88,6 +94,9 @@ class GetAutonomousContainerDatabaseResult:
|
|
88
94
|
if dst_file_version and not isinstance(dst_file_version, str):
|
89
95
|
raise TypeError("Expected argument 'dst_file_version' to be a str")
|
90
96
|
pulumi.set(__self__, "dst_file_version", dst_file_version)
|
97
|
+
if failover_trigger and not isinstance(failover_trigger, int):
|
98
|
+
raise TypeError("Expected argument 'failover_trigger' to be a int")
|
99
|
+
pulumi.set(__self__, "failover_trigger", failover_trigger)
|
91
100
|
if fast_start_fail_over_lag_limit_in_seconds and not isinstance(fast_start_fail_over_lag_limit_in_seconds, int):
|
92
101
|
raise TypeError("Expected argument 'fast_start_fail_over_lag_limit_in_seconds' to be a int")
|
93
102
|
pulumi.set(__self__, "fast_start_fail_over_lag_limit_in_seconds", fast_start_fail_over_lag_limit_in_seconds)
|
@@ -103,9 +112,15 @@ class GetAutonomousContainerDatabaseResult:
|
|
103
112
|
if is_automatic_failover_enabled and not isinstance(is_automatic_failover_enabled, bool):
|
104
113
|
raise TypeError("Expected argument 'is_automatic_failover_enabled' to be a bool")
|
105
114
|
pulumi.set(__self__, "is_automatic_failover_enabled", is_automatic_failover_enabled)
|
115
|
+
if is_data_guard_enabled and not isinstance(is_data_guard_enabled, bool):
|
116
|
+
raise TypeError("Expected argument 'is_data_guard_enabled' to be a bool")
|
117
|
+
pulumi.set(__self__, "is_data_guard_enabled", is_data_guard_enabled)
|
106
118
|
if is_dst_file_update_enabled and not isinstance(is_dst_file_update_enabled, bool):
|
107
119
|
raise TypeError("Expected argument 'is_dst_file_update_enabled' to be a bool")
|
108
120
|
pulumi.set(__self__, "is_dst_file_update_enabled", is_dst_file_update_enabled)
|
121
|
+
if is_multiple_standby and not isinstance(is_multiple_standby, bool):
|
122
|
+
raise TypeError("Expected argument 'is_multiple_standby' to be a bool")
|
123
|
+
pulumi.set(__self__, "is_multiple_standby", is_multiple_standby)
|
109
124
|
if key_history_entries and not isinstance(key_history_entries, list):
|
110
125
|
raise TypeError("Expected argument 'key_history_entries' to be a list")
|
111
126
|
pulumi.set(__self__, "key_history_entries", key_history_entries)
|
@@ -190,6 +205,9 @@ class GetAutonomousContainerDatabaseResult:
|
|
190
205
|
if recovery_appliance_details and not isinstance(recovery_appliance_details, list):
|
191
206
|
raise TypeError("Expected argument 'recovery_appliance_details' to be a list")
|
192
207
|
pulumi.set(__self__, "recovery_appliance_details", recovery_appliance_details)
|
208
|
+
if reinstate_trigger and not isinstance(reinstate_trigger, int):
|
209
|
+
raise TypeError("Expected argument 'reinstate_trigger' to be a int")
|
210
|
+
pulumi.set(__self__, "reinstate_trigger", reinstate_trigger)
|
193
211
|
if reserved_cpus and not isinstance(reserved_cpus, float):
|
194
212
|
raise TypeError("Expected argument 'reserved_cpus' to be a float")
|
195
213
|
pulumi.set(__self__, "reserved_cpus", reserved_cpus)
|
@@ -208,6 +226,9 @@ class GetAutonomousContainerDatabaseResult:
|
|
208
226
|
if state and not isinstance(state, str):
|
209
227
|
raise TypeError("Expected argument 'state' to be a str")
|
210
228
|
pulumi.set(__self__, "state", state)
|
229
|
+
if switchover_trigger and not isinstance(switchover_trigger, int):
|
230
|
+
raise TypeError("Expected argument 'switchover_trigger' to be a int")
|
231
|
+
pulumi.set(__self__, "switchover_trigger", switchover_trigger)
|
211
232
|
if time_created and not isinstance(time_created, str):
|
212
233
|
raise TypeError("Expected argument 'time_created' to be a str")
|
213
234
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -241,6 +262,9 @@ class GetAutonomousContainerDatabaseResult:
|
|
241
262
|
@property
|
242
263
|
@pulumi.getter(name="autonomousContainerDatabaseId")
|
243
264
|
def autonomous_container_database_id(self) -> str:
|
265
|
+
"""
|
266
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Autonomous Container Database that has a relationship with the peer Autonomous Container Database. Used only by Autonomous Database on Dedicated Exadata Infrastructure.
|
267
|
+
"""
|
244
268
|
return pulumi.get(self, "autonomous_container_database_id")
|
245
269
|
|
246
270
|
@property
|
@@ -263,7 +287,7 @@ class GetAutonomousContainerDatabaseResult:
|
|
263
287
|
@pulumi.getter(name="availabilityDomain")
|
264
288
|
def availability_domain(self) -> str:
|
265
289
|
"""
|
266
|
-
The
|
290
|
+
The domain of the Autonomous Container Database
|
267
291
|
"""
|
268
292
|
return pulumi.get(self, "availability_domain")
|
269
293
|
|
@@ -320,6 +344,22 @@ class GetAutonomousContainerDatabaseResult:
|
|
320
344
|
def database_software_image_id(self) -> str:
|
321
345
|
return pulumi.get(self, "database_software_image_id")
|
322
346
|
|
347
|
+
@property
|
348
|
+
@pulumi.getter(name="dataguardGroupMembers")
|
349
|
+
def dataguard_group_members(self) -> Sequence['outputs.GetAutonomousContainerDatabaseDataguardGroupMemberResult']:
|
350
|
+
"""
|
351
|
+
Array of Dg associations.
|
352
|
+
"""
|
353
|
+
return pulumi.get(self, "dataguard_group_members")
|
354
|
+
|
355
|
+
@property
|
356
|
+
@pulumi.getter
|
357
|
+
def dataguards(self) -> Sequence['outputs.GetAutonomousContainerDatabaseDataguardResult']:
|
358
|
+
"""
|
359
|
+
The properties that define Autonomous Container Databases Dataguard.
|
360
|
+
"""
|
361
|
+
return pulumi.get(self, "dataguards")
|
362
|
+
|
323
363
|
@property
|
324
364
|
@pulumi.getter(name="dbName")
|
325
365
|
def db_name(self) -> str:
|
@@ -381,9 +421,17 @@ class GetAutonomousContainerDatabaseResult:
|
|
381
421
|
"""
|
382
422
|
return pulumi.get(self, "dst_file_version")
|
383
423
|
|
424
|
+
@property
|
425
|
+
@pulumi.getter(name="failoverTrigger")
|
426
|
+
def failover_trigger(self) -> int:
|
427
|
+
return pulumi.get(self, "failover_trigger")
|
428
|
+
|
384
429
|
@property
|
385
430
|
@pulumi.getter(name="fastStartFailOverLagLimitInSeconds")
|
386
431
|
def fast_start_fail_over_lag_limit_in_seconds(self) -> int:
|
432
|
+
"""
|
433
|
+
The lag time for my preference based on data loss tolerance in seconds.
|
434
|
+
"""
|
387
435
|
return pulumi.get(self, "fast_start_fail_over_lag_limit_in_seconds")
|
388
436
|
|
389
437
|
@property
|
@@ -413,8 +461,19 @@ class GetAutonomousContainerDatabaseResult:
|
|
413
461
|
@property
|
414
462
|
@pulumi.getter(name="isAutomaticFailoverEnabled")
|
415
463
|
def is_automatic_failover_enabled(self) -> bool:
|
464
|
+
"""
|
465
|
+
Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association
|
466
|
+
"""
|
416
467
|
return pulumi.get(self, "is_automatic_failover_enabled")
|
417
468
|
|
469
|
+
@property
|
470
|
+
@pulumi.getter(name="isDataGuardEnabled")
|
471
|
+
def is_data_guard_enabled(self) -> bool:
|
472
|
+
"""
|
473
|
+
**Deprecated.** Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
474
|
+
"""
|
475
|
+
return pulumi.get(self, "is_data_guard_enabled")
|
476
|
+
|
418
477
|
@property
|
419
478
|
@pulumi.getter(name="isDstFileUpdateEnabled")
|
420
479
|
def is_dst_file_update_enabled(self) -> bool:
|
@@ -423,6 +482,14 @@ class GetAutonomousContainerDatabaseResult:
|
|
423
482
|
"""
|
424
483
|
return pulumi.get(self, "is_dst_file_update_enabled")
|
425
484
|
|
485
|
+
@property
|
486
|
+
@pulumi.getter(name="isMultipleStandby")
|
487
|
+
def is_multiple_standby(self) -> bool:
|
488
|
+
"""
|
489
|
+
Whether it is multiple standby Autonomous Dataguard
|
490
|
+
"""
|
491
|
+
return pulumi.get(self, "is_multiple_standby")
|
492
|
+
|
426
493
|
@property
|
427
494
|
@pulumi.getter(name="keyHistoryEntries")
|
428
495
|
def key_history_entries(self) -> Sequence['outputs.GetAutonomousContainerDatabaseKeyHistoryEntryResult']:
|
@@ -586,6 +653,9 @@ class GetAutonomousContainerDatabaseResult:
|
|
586
653
|
@property
|
587
654
|
@pulumi.getter(name="protectionMode")
|
588
655
|
def protection_mode(self) -> str:
|
656
|
+
"""
|
657
|
+
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.
|
658
|
+
"""
|
589
659
|
return pulumi.get(self, "protection_mode")
|
590
660
|
|
591
661
|
@property
|
@@ -620,6 +690,11 @@ class GetAutonomousContainerDatabaseResult:
|
|
620
690
|
"""
|
621
691
|
return pulumi.get(self, "recovery_appliance_details")
|
622
692
|
|
693
|
+
@property
|
694
|
+
@pulumi.getter(name="reinstateTrigger")
|
695
|
+
def reinstate_trigger(self) -> int:
|
696
|
+
return pulumi.get(self, "reinstate_trigger")
|
697
|
+
|
623
698
|
@property
|
624
699
|
@pulumi.getter(name="reservedCpus")
|
625
700
|
def reserved_cpus(self) -> float:
|
@@ -665,6 +740,11 @@ class GetAutonomousContainerDatabaseResult:
|
|
665
740
|
"""
|
666
741
|
return pulumi.get(self, "state")
|
667
742
|
|
743
|
+
@property
|
744
|
+
@pulumi.getter(name="switchoverTrigger")
|
745
|
+
def switchover_trigger(self) -> int:
|
746
|
+
return pulumi.get(self, "switchover_trigger")
|
747
|
+
|
668
748
|
@property
|
669
749
|
@pulumi.getter(name="timeCreated")
|
670
750
|
def time_created(self) -> str:
|
@@ -740,6 +820,8 @@ class AwaitableGetAutonomousContainerDatabaseResult(GetAutonomousContainerDataba
|
|
740
820
|
compartment_id=self.compartment_id,
|
741
821
|
compute_model=self.compute_model,
|
742
822
|
database_software_image_id=self.database_software_image_id,
|
823
|
+
dataguard_group_members=self.dataguard_group_members,
|
824
|
+
dataguards=self.dataguards,
|
743
825
|
db_name=self.db_name,
|
744
826
|
db_split_threshold=self.db_split_threshold,
|
745
827
|
db_unique_name=self.db_unique_name,
|
@@ -748,12 +830,15 @@ class AwaitableGetAutonomousContainerDatabaseResult(GetAutonomousContainerDataba
|
|
748
830
|
display_name=self.display_name,
|
749
831
|
distribution_affinity=self.distribution_affinity,
|
750
832
|
dst_file_version=self.dst_file_version,
|
833
|
+
failover_trigger=self.failover_trigger,
|
751
834
|
fast_start_fail_over_lag_limit_in_seconds=self.fast_start_fail_over_lag_limit_in_seconds,
|
752
835
|
freeform_tags=self.freeform_tags,
|
753
836
|
id=self.id,
|
754
837
|
infrastructure_type=self.infrastructure_type,
|
755
838
|
is_automatic_failover_enabled=self.is_automatic_failover_enabled,
|
839
|
+
is_data_guard_enabled=self.is_data_guard_enabled,
|
756
840
|
is_dst_file_update_enabled=self.is_dst_file_update_enabled,
|
841
|
+
is_multiple_standby=self.is_multiple_standby,
|
757
842
|
key_history_entries=self.key_history_entries,
|
758
843
|
key_store_id=self.key_store_id,
|
759
844
|
key_store_wallet_name=self.key_store_wallet_name,
|
@@ -782,12 +867,14 @@ class AwaitableGetAutonomousContainerDatabaseResult(GetAutonomousContainerDataba
|
|
782
867
|
provisioned_cpus=self.provisioned_cpus,
|
783
868
|
reclaimable_cpus=self.reclaimable_cpus,
|
784
869
|
recovery_appliance_details=self.recovery_appliance_details,
|
870
|
+
reinstate_trigger=self.reinstate_trigger,
|
785
871
|
reserved_cpus=self.reserved_cpus,
|
786
872
|
role=self.role,
|
787
873
|
rotate_key_trigger=self.rotate_key_trigger,
|
788
874
|
service_level_agreement_type=self.service_level_agreement_type,
|
789
875
|
standby_maintenance_buffer_in_days=self.standby_maintenance_buffer_in_days,
|
790
876
|
state=self.state,
|
877
|
+
switchover_trigger=self.switchover_trigger,
|
791
878
|
time_created=self.time_created,
|
792
879
|
time_of_last_backup=self.time_of_last_backup,
|
793
880
|
time_snapshot_standby_revert=self.time_snapshot_standby_revert,
|
@@ -834,6 +921,8 @@ def get_autonomous_container_database(autonomous_container_database_id: Optional
|
|
834
921
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
835
922
|
compute_model=pulumi.get(__ret__, 'compute_model'),
|
836
923
|
database_software_image_id=pulumi.get(__ret__, 'database_software_image_id'),
|
924
|
+
dataguard_group_members=pulumi.get(__ret__, 'dataguard_group_members'),
|
925
|
+
dataguards=pulumi.get(__ret__, 'dataguards'),
|
837
926
|
db_name=pulumi.get(__ret__, 'db_name'),
|
838
927
|
db_split_threshold=pulumi.get(__ret__, 'db_split_threshold'),
|
839
928
|
db_unique_name=pulumi.get(__ret__, 'db_unique_name'),
|
@@ -842,12 +931,15 @@ def get_autonomous_container_database(autonomous_container_database_id: Optional
|
|
842
931
|
display_name=pulumi.get(__ret__, 'display_name'),
|
843
932
|
distribution_affinity=pulumi.get(__ret__, 'distribution_affinity'),
|
844
933
|
dst_file_version=pulumi.get(__ret__, 'dst_file_version'),
|
934
|
+
failover_trigger=pulumi.get(__ret__, 'failover_trigger'),
|
845
935
|
fast_start_fail_over_lag_limit_in_seconds=pulumi.get(__ret__, 'fast_start_fail_over_lag_limit_in_seconds'),
|
846
936
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
847
937
|
id=pulumi.get(__ret__, 'id'),
|
848
938
|
infrastructure_type=pulumi.get(__ret__, 'infrastructure_type'),
|
849
939
|
is_automatic_failover_enabled=pulumi.get(__ret__, 'is_automatic_failover_enabled'),
|
940
|
+
is_data_guard_enabled=pulumi.get(__ret__, 'is_data_guard_enabled'),
|
850
941
|
is_dst_file_update_enabled=pulumi.get(__ret__, 'is_dst_file_update_enabled'),
|
942
|
+
is_multiple_standby=pulumi.get(__ret__, 'is_multiple_standby'),
|
851
943
|
key_history_entries=pulumi.get(__ret__, 'key_history_entries'),
|
852
944
|
key_store_id=pulumi.get(__ret__, 'key_store_id'),
|
853
945
|
key_store_wallet_name=pulumi.get(__ret__, 'key_store_wallet_name'),
|
@@ -876,12 +968,14 @@ def get_autonomous_container_database(autonomous_container_database_id: Optional
|
|
876
968
|
provisioned_cpus=pulumi.get(__ret__, 'provisioned_cpus'),
|
877
969
|
reclaimable_cpus=pulumi.get(__ret__, 'reclaimable_cpus'),
|
878
970
|
recovery_appliance_details=pulumi.get(__ret__, 'recovery_appliance_details'),
|
971
|
+
reinstate_trigger=pulumi.get(__ret__, 'reinstate_trigger'),
|
879
972
|
reserved_cpus=pulumi.get(__ret__, 'reserved_cpus'),
|
880
973
|
role=pulumi.get(__ret__, 'role'),
|
881
974
|
rotate_key_trigger=pulumi.get(__ret__, 'rotate_key_trigger'),
|
882
975
|
service_level_agreement_type=pulumi.get(__ret__, 'service_level_agreement_type'),
|
883
976
|
standby_maintenance_buffer_in_days=pulumi.get(__ret__, 'standby_maintenance_buffer_in_days'),
|
884
977
|
state=pulumi.get(__ret__, 'state'),
|
978
|
+
switchover_trigger=pulumi.get(__ret__, 'switchover_trigger'),
|
885
979
|
time_created=pulumi.get(__ret__, 'time_created'),
|
886
980
|
time_of_last_backup=pulumi.get(__ret__, 'time_of_last_backup'),
|
887
981
|
time_snapshot_standby_revert=pulumi.get(__ret__, 'time_snapshot_standby_revert'),
|
@@ -925,6 +1019,8 @@ def get_autonomous_container_database_output(autonomous_container_database_id: O
|
|
925
1019
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
926
1020
|
compute_model=pulumi.get(__response__, 'compute_model'),
|
927
1021
|
database_software_image_id=pulumi.get(__response__, 'database_software_image_id'),
|
1022
|
+
dataguard_group_members=pulumi.get(__response__, 'dataguard_group_members'),
|
1023
|
+
dataguards=pulumi.get(__response__, 'dataguards'),
|
928
1024
|
db_name=pulumi.get(__response__, 'db_name'),
|
929
1025
|
db_split_threshold=pulumi.get(__response__, 'db_split_threshold'),
|
930
1026
|
db_unique_name=pulumi.get(__response__, 'db_unique_name'),
|
@@ -933,12 +1029,15 @@ def get_autonomous_container_database_output(autonomous_container_database_id: O
|
|
933
1029
|
display_name=pulumi.get(__response__, 'display_name'),
|
934
1030
|
distribution_affinity=pulumi.get(__response__, 'distribution_affinity'),
|
935
1031
|
dst_file_version=pulumi.get(__response__, 'dst_file_version'),
|
1032
|
+
failover_trigger=pulumi.get(__response__, 'failover_trigger'),
|
936
1033
|
fast_start_fail_over_lag_limit_in_seconds=pulumi.get(__response__, 'fast_start_fail_over_lag_limit_in_seconds'),
|
937
1034
|
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
938
1035
|
id=pulumi.get(__response__, 'id'),
|
939
1036
|
infrastructure_type=pulumi.get(__response__, 'infrastructure_type'),
|
940
1037
|
is_automatic_failover_enabled=pulumi.get(__response__, 'is_automatic_failover_enabled'),
|
1038
|
+
is_data_guard_enabled=pulumi.get(__response__, 'is_data_guard_enabled'),
|
941
1039
|
is_dst_file_update_enabled=pulumi.get(__response__, 'is_dst_file_update_enabled'),
|
1040
|
+
is_multiple_standby=pulumi.get(__response__, 'is_multiple_standby'),
|
942
1041
|
key_history_entries=pulumi.get(__response__, 'key_history_entries'),
|
943
1042
|
key_store_id=pulumi.get(__response__, 'key_store_id'),
|
944
1043
|
key_store_wallet_name=pulumi.get(__response__, 'key_store_wallet_name'),
|
@@ -967,12 +1066,14 @@ def get_autonomous_container_database_output(autonomous_container_database_id: O
|
|
967
1066
|
provisioned_cpus=pulumi.get(__response__, 'provisioned_cpus'),
|
968
1067
|
reclaimable_cpus=pulumi.get(__response__, 'reclaimable_cpus'),
|
969
1068
|
recovery_appliance_details=pulumi.get(__response__, 'recovery_appliance_details'),
|
1069
|
+
reinstate_trigger=pulumi.get(__response__, 'reinstate_trigger'),
|
970
1070
|
reserved_cpus=pulumi.get(__response__, 'reserved_cpus'),
|
971
1071
|
role=pulumi.get(__response__, 'role'),
|
972
1072
|
rotate_key_trigger=pulumi.get(__response__, 'rotate_key_trigger'),
|
973
1073
|
service_level_agreement_type=pulumi.get(__response__, 'service_level_agreement_type'),
|
974
1074
|
standby_maintenance_buffer_in_days=pulumi.get(__response__, 'standby_maintenance_buffer_in_days'),
|
975
1075
|
state=pulumi.get(__response__, 'state'),
|
1076
|
+
switchover_trigger=pulumi.get(__response__, 'switchover_trigger'),
|
976
1077
|
time_created=pulumi.get(__response__, 'time_created'),
|
977
1078
|
time_of_last_backup=pulumi.get(__response__, 'time_of_last_backup'),
|
978
1079
|
time_snapshot_standby_revert=pulumi.get(__response__, 'time_snapshot_standby_revert'),
|
@@ -27,7 +27,7 @@ class GetAutonomousContainerDatabaseDataguardAssociationResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getAutonomousContainerDatabaseDataguardAssociation.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, apply_lag=None, apply_rate=None, autonomous_container_database_dataguard_association_id=None, autonomous_container_database_id=None, fast_start_fail_over_lag_limit_in_seconds=None, id=None, is_automatic_failover_enabled=None, lifecycle_details=None, peer_autonomous_container_database_backup_configs=None, peer_autonomous_container_database_compartment_id=None, peer_autonomous_container_database_dataguard_association_id=None, peer_autonomous_container_database_display_name=None, peer_autonomous_container_database_id=None, peer_autonomous_vm_cluster_id=None, peer_cloud_autonomous_vm_cluster_id=None, peer_db_unique_name=None, peer_lifecycle_state=None, peer_role=None, protection_mode=None, role=None, standby_maintenance_buffer_in_days=None, state=None, time_created=None, time_last_role_changed=None, time_last_synced=None, transport_lag=None):
|
30
|
+
def __init__(__self__, apply_lag=None, apply_rate=None, autonomous_container_database_dataguard_association_id=None, autonomous_container_database_id=None, fast_start_fail_over_lag_limit_in_seconds=None, id=None, is_automatic_failover_enabled=None, lifecycle_details=None, migrate_trigger=None, peer_autonomous_container_database_backup_configs=None, peer_autonomous_container_database_compartment_id=None, peer_autonomous_container_database_dataguard_association_id=None, peer_autonomous_container_database_display_name=None, peer_autonomous_container_database_id=None, peer_autonomous_vm_cluster_id=None, peer_cloud_autonomous_vm_cluster_id=None, peer_db_unique_name=None, peer_lifecycle_state=None, peer_role=None, protection_mode=None, role=None, standby_maintenance_buffer_in_days=None, state=None, time_created=None, time_last_role_changed=None, time_last_synced=None, transport_lag=None):
|
31
31
|
if apply_lag and not isinstance(apply_lag, str):
|
32
32
|
raise TypeError("Expected argument 'apply_lag' to be a str")
|
33
33
|
pulumi.set(__self__, "apply_lag", apply_lag)
|
@@ -52,6 +52,9 @@ class GetAutonomousContainerDatabaseDataguardAssociationResult:
|
|
52
52
|
if lifecycle_details and not isinstance(lifecycle_details, str):
|
53
53
|
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
54
54
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
55
|
+
if migrate_trigger and not isinstance(migrate_trigger, int):
|
56
|
+
raise TypeError("Expected argument 'migrate_trigger' to be a int")
|
57
|
+
pulumi.set(__self__, "migrate_trigger", migrate_trigger)
|
55
58
|
if peer_autonomous_container_database_backup_configs and not isinstance(peer_autonomous_container_database_backup_configs, list):
|
56
59
|
raise TypeError("Expected argument 'peer_autonomous_container_database_backup_configs' to be a list")
|
57
60
|
pulumi.set(__self__, "peer_autonomous_container_database_backup_configs", peer_autonomous_container_database_backup_configs)
|
@@ -168,6 +171,11 @@ class GetAutonomousContainerDatabaseDataguardAssociationResult:
|
|
168
171
|
"""
|
169
172
|
return pulumi.get(self, "lifecycle_details")
|
170
173
|
|
174
|
+
@property
|
175
|
+
@pulumi.getter(name="migrateTrigger")
|
176
|
+
def migrate_trigger(self) -> int:
|
177
|
+
return pulumi.get(self, "migrate_trigger")
|
178
|
+
|
171
179
|
@property
|
172
180
|
@pulumi.getter(name="peerAutonomousContainerDatabaseBackupConfigs")
|
173
181
|
def peer_autonomous_container_database_backup_configs(self) -> Sequence['outputs.GetAutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigResult']:
|
@@ -306,6 +314,7 @@ class AwaitableGetAutonomousContainerDatabaseDataguardAssociationResult(GetAuton
|
|
306
314
|
id=self.id,
|
307
315
|
is_automatic_failover_enabled=self.is_automatic_failover_enabled,
|
308
316
|
lifecycle_details=self.lifecycle_details,
|
317
|
+
migrate_trigger=self.migrate_trigger,
|
309
318
|
peer_autonomous_container_database_backup_configs=self.peer_autonomous_container_database_backup_configs,
|
310
319
|
peer_autonomous_container_database_compartment_id=self.peer_autonomous_container_database_compartment_id,
|
311
320
|
peer_autonomous_container_database_dataguard_association_id=self.peer_autonomous_container_database_dataguard_association_id,
|
@@ -363,6 +372,7 @@ def get_autonomous_container_database_dataguard_association(autonomous_container
|
|
363
372
|
id=pulumi.get(__ret__, 'id'),
|
364
373
|
is_automatic_failover_enabled=pulumi.get(__ret__, 'is_automatic_failover_enabled'),
|
365
374
|
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
375
|
+
migrate_trigger=pulumi.get(__ret__, 'migrate_trigger'),
|
366
376
|
peer_autonomous_container_database_backup_configs=pulumi.get(__ret__, 'peer_autonomous_container_database_backup_configs'),
|
367
377
|
peer_autonomous_container_database_compartment_id=pulumi.get(__ret__, 'peer_autonomous_container_database_compartment_id'),
|
368
378
|
peer_autonomous_container_database_dataguard_association_id=pulumi.get(__ret__, 'peer_autonomous_container_database_dataguard_association_id'),
|
@@ -417,6 +427,7 @@ def get_autonomous_container_database_dataguard_association_output(autonomous_co
|
|
417
427
|
id=pulumi.get(__response__, 'id'),
|
418
428
|
is_automatic_failover_enabled=pulumi.get(__response__, 'is_automatic_failover_enabled'),
|
419
429
|
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
430
|
+
migrate_trigger=pulumi.get(__response__, 'migrate_trigger'),
|
420
431
|
peer_autonomous_container_database_backup_configs=pulumi.get(__response__, 'peer_autonomous_container_database_backup_configs'),
|
421
432
|
peer_autonomous_container_database_compartment_id=pulumi.get(__response__, 'peer_autonomous_container_database_compartment_id'),
|
422
433
|
peer_autonomous_container_database_dataguard_association_id=pulumi.get(__response__, 'peer_autonomous_container_database_dataguard_association_id'),
|
@@ -94,7 +94,7 @@ class GetAutonomousContainerDatabasesResult:
|
|
94
94
|
@pulumi.getter(name="availabilityDomain")
|
95
95
|
def availability_domain(self) -> Optional[str]:
|
96
96
|
"""
|
97
|
-
The
|
97
|
+
The domain of the Autonomous Container Database
|
98
98
|
"""
|
99
99
|
return pulumi.get(self, "availability_domain")
|
100
100
|
|
@@ -602,9 +602,6 @@ class GetAutonomousDatabaseResult:
|
|
602
602
|
def clone_table_space_lists(self) -> Sequence[int]:
|
603
603
|
"""
|
604
604
|
A list of the source Autonomous Database's table space number(s) used to create this partial clone from the backup.
|
605
|
-
=======
|
606
|
-
AL32UTF8, AR8ADOS710, AR8ADOS720, AR8APTEC715, AR8ARABICMACS, AR8ASMO8X, AR8ISO8859P6, AR8MSWIN1256, AR8MUSSAD768, AR8NAFITHA711, AR8NAFITHA721, AR8SAKHR706, AR8SAKHR707, AZ8ISO8859P9E, BG8MSWIN, BG8PC437S, BLT8CP921, BLT8ISO8859P13, BLT8MSWIN1257, BLT8PC775, BN8BSCII, CDN8PC863, CEL8ISO8859P14, CL8ISO8859P5, CL8ISOIR111, CL8KOI8R, CL8KOI8U, CL8MACCYRILLICS, CL8MSWIN1251, EE8ISO8859P2, EE8MACCES, EE8MACCROATIANS, EE8MSWIN1250, EE8PC852, EL8DEC, EL8ISO8859P7, EL8MACGREEKS, EL8MSWIN1253, EL8PC437S, EL8PC851, EL8PC869, ET8MSWIN923, HU8ABMOD, HU8CWI2, IN8ISCII, IS8PC861, IW8ISO8859P8, IW8MACHEBREWS, IW8MSWIN1255, IW8PC1507, JA16EUC, JA16EUCTILDE, JA16SJIS, JA16SJISTILDE, JA16VMS, KO16KSC5601, KO16KSCCS, KO16MSWIN949, LA8ISO6937, LA8PASSPORT, LT8MSWIN921, LT8PC772, LT8PC774, LV8PC1117, LV8PC8LR, LV8RST104090, N8PC865, NE8ISO8859P10, NEE8ISO8859P4, RU8BESTA, RU8PC855, RU8PC866, SE8ISO8859P3, TH8MACTHAIS, TH8TISASCII, TR8DEC, TR8MACTURKISHS, TR8MSWIN1254, TR8PC857, US7ASCII, US8PC437, UTF8, VN8MSWIN1258, VN8VN3, WE8DEC, WE8DG, WE8ISO8859P1, WE8ISO8859P15, WE8ISO8859P9, WE8MACROMAN8S, WE8MSWIN1252, WE8NCR4970, WE8NEXTSTEP, WE8PC850, WE8PC858, WE8PC860, WE8ROMAN8, ZHS16CGB231280, ZHS16GBK, ZHT16BIG5, ZHT16CCDC, ZHT16DBT, ZHT16HKSCS, ZHT16MSWIN950, ZHT32EUC, ZHT32SOPS, ZHT32TRIS
|
607
|
-
>>>>>>> theirs
|
608
605
|
"""
|
609
606
|
return pulumi.get(self, "clone_table_space_lists")
|
610
607
|
|
@@ -28,7 +28,10 @@ class GetBackupsResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getBackups.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, backups=None, compartment_id=None, database_id=None, filters=None, id=None, shape_family=None):
|
31
|
+
def __init__(__self__, backup_destination_type=None, backups=None, compartment_id=None, database_id=None, filters=None, id=None, shape_family=None, state=None, time_expiry_scheduled_greater_than_or_equal_to=None, time_expiry_scheduled_less_than=None, type=None, version=None):
|
32
|
+
if backup_destination_type and not isinstance(backup_destination_type, str):
|
33
|
+
raise TypeError("Expected argument 'backup_destination_type' to be a str")
|
34
|
+
pulumi.set(__self__, "backup_destination_type", backup_destination_type)
|
32
35
|
if backups and not isinstance(backups, list):
|
33
36
|
raise TypeError("Expected argument 'backups' to be a list")
|
34
37
|
pulumi.set(__self__, "backups", backups)
|
@@ -47,6 +50,29 @@ class GetBackupsResult:
|
|
47
50
|
if shape_family and not isinstance(shape_family, str):
|
48
51
|
raise TypeError("Expected argument 'shape_family' to be a str")
|
49
52
|
pulumi.set(__self__, "shape_family", shape_family)
|
53
|
+
if state and not isinstance(state, str):
|
54
|
+
raise TypeError("Expected argument 'state' to be a str")
|
55
|
+
pulumi.set(__self__, "state", state)
|
56
|
+
if time_expiry_scheduled_greater_than_or_equal_to and not isinstance(time_expiry_scheduled_greater_than_or_equal_to, str):
|
57
|
+
raise TypeError("Expected argument 'time_expiry_scheduled_greater_than_or_equal_to' to be a str")
|
58
|
+
pulumi.set(__self__, "time_expiry_scheduled_greater_than_or_equal_to", time_expiry_scheduled_greater_than_or_equal_to)
|
59
|
+
if time_expiry_scheduled_less_than and not isinstance(time_expiry_scheduled_less_than, str):
|
60
|
+
raise TypeError("Expected argument 'time_expiry_scheduled_less_than' to be a str")
|
61
|
+
pulumi.set(__self__, "time_expiry_scheduled_less_than", time_expiry_scheduled_less_than)
|
62
|
+
if type and not isinstance(type, str):
|
63
|
+
raise TypeError("Expected argument 'type' to be a str")
|
64
|
+
pulumi.set(__self__, "type", type)
|
65
|
+
if version and not isinstance(version, str):
|
66
|
+
raise TypeError("Expected argument 'version' to be a str")
|
67
|
+
pulumi.set(__self__, "version", version)
|
68
|
+
|
69
|
+
@property
|
70
|
+
@pulumi.getter(name="backupDestinationType")
|
71
|
+
def backup_destination_type(self) -> Optional[str]:
|
72
|
+
"""
|
73
|
+
Type of the backup destination.
|
74
|
+
"""
|
75
|
+
return pulumi.get(self, "backup_destination_type")
|
50
76
|
|
51
77
|
@property
|
52
78
|
@pulumi.getter
|
@@ -90,6 +116,40 @@ class GetBackupsResult:
|
|
90
116
|
def shape_family(self) -> Optional[str]:
|
91
117
|
return pulumi.get(self, "shape_family")
|
92
118
|
|
119
|
+
@property
|
120
|
+
@pulumi.getter
|
121
|
+
def state(self) -> Optional[str]:
|
122
|
+
"""
|
123
|
+
The current state of the backup.
|
124
|
+
"""
|
125
|
+
return pulumi.get(self, "state")
|
126
|
+
|
127
|
+
@property
|
128
|
+
@pulumi.getter(name="timeExpiryScheduledGreaterThanOrEqualTo")
|
129
|
+
def time_expiry_scheduled_greater_than_or_equal_to(self) -> Optional[str]:
|
130
|
+
return pulumi.get(self, "time_expiry_scheduled_greater_than_or_equal_to")
|
131
|
+
|
132
|
+
@property
|
133
|
+
@pulumi.getter(name="timeExpiryScheduledLessThan")
|
134
|
+
def time_expiry_scheduled_less_than(self) -> Optional[str]:
|
135
|
+
return pulumi.get(self, "time_expiry_scheduled_less_than")
|
136
|
+
|
137
|
+
@property
|
138
|
+
@pulumi.getter
|
139
|
+
def type(self) -> Optional[str]:
|
140
|
+
"""
|
141
|
+
The type of backup.
|
142
|
+
"""
|
143
|
+
return pulumi.get(self, "type")
|
144
|
+
|
145
|
+
@property
|
146
|
+
@pulumi.getter
|
147
|
+
def version(self) -> Optional[str]:
|
148
|
+
"""
|
149
|
+
Version of the backup's source database
|
150
|
+
"""
|
151
|
+
return pulumi.get(self, "version")
|
152
|
+
|
93
153
|
|
94
154
|
class AwaitableGetBackupsResult(GetBackupsResult):
|
95
155
|
# pylint: disable=using-constant-test
|
@@ -97,18 +157,30 @@ class AwaitableGetBackupsResult(GetBackupsResult):
|
|
97
157
|
if False:
|
98
158
|
yield self
|
99
159
|
return GetBackupsResult(
|
160
|
+
backup_destination_type=self.backup_destination_type,
|
100
161
|
backups=self.backups,
|
101
162
|
compartment_id=self.compartment_id,
|
102
163
|
database_id=self.database_id,
|
103
164
|
filters=self.filters,
|
104
165
|
id=self.id,
|
105
|
-
shape_family=self.shape_family
|
166
|
+
shape_family=self.shape_family,
|
167
|
+
state=self.state,
|
168
|
+
time_expiry_scheduled_greater_than_or_equal_to=self.time_expiry_scheduled_greater_than_or_equal_to,
|
169
|
+
time_expiry_scheduled_less_than=self.time_expiry_scheduled_less_than,
|
170
|
+
type=self.type,
|
171
|
+
version=self.version)
|
106
172
|
|
107
173
|
|
108
|
-
def get_backups(
|
174
|
+
def get_backups(backup_destination_type: Optional[str] = None,
|
175
|
+
compartment_id: Optional[str] = None,
|
109
176
|
database_id: Optional[str] = None,
|
110
177
|
filters: Optional[Sequence[Union['GetBackupsFilterArgs', 'GetBackupsFilterArgsDict']]] = None,
|
111
178
|
shape_family: Optional[str] = None,
|
179
|
+
state: Optional[str] = None,
|
180
|
+
time_expiry_scheduled_greater_than_or_equal_to: Optional[str] = None,
|
181
|
+
time_expiry_scheduled_less_than: Optional[str] = None,
|
182
|
+
type: Optional[str] = None,
|
183
|
+
version: Optional[str] = None,
|
112
184
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetBackupsResult:
|
113
185
|
"""
|
114
186
|
This data source provides the list of Backups in Oracle Cloud Infrastructure Database service.
|
@@ -121,35 +193,65 @@ def get_backups(compartment_id: Optional[str] = None,
|
|
121
193
|
import pulumi
|
122
194
|
import pulumi_oci as oci
|
123
195
|
|
124
|
-
test_backups = oci.Database.get_backups(
|
196
|
+
test_backups = oci.Database.get_backups(backup_destination_type=backup_backup_destination_type,
|
197
|
+
compartment_id=compartment_id,
|
125
198
|
database_id=test_database["id"],
|
126
|
-
shape_family=backup_shape_family
|
199
|
+
shape_family=backup_shape_family,
|
200
|
+
state=backup_state,
|
201
|
+
time_expiry_scheduled_greater_than_or_equal_to=backup_time_expiry_scheduled_greater_than_or_equal_to,
|
202
|
+
time_expiry_scheduled_less_than=backup_time_expiry_scheduled_less_than,
|
203
|
+
type=backup_type,
|
204
|
+
version=backup_version)
|
127
205
|
```
|
128
206
|
|
129
207
|
|
208
|
+
:param str backup_destination_type: A filter to return only resources that match the given backup destination type.
|
130
209
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
131
210
|
:param str database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database.
|
132
211
|
:param str shape_family: If provided, filters the results to the set of database versions which are supported for the given shape family.
|
212
|
+
:param str state: A filter to return only resources that match the given lifecycle state exactly.
|
213
|
+
:param str time_expiry_scheduled_greater_than_or_equal_to: The start of date-time range of expiration for the long term backups to be fetched.
|
214
|
+
:param str time_expiry_scheduled_less_than: The end of date-time range of expiration for the long term backups to be fetched.
|
215
|
+
:param str type: A filter to return only backups that matches with the given type of Backup.
|
216
|
+
:param str version: A filter to return only resources that match the given database version.
|
133
217
|
"""
|
134
218
|
__args__ = dict()
|
219
|
+
__args__['backupDestinationType'] = backup_destination_type
|
135
220
|
__args__['compartmentId'] = compartment_id
|
136
221
|
__args__['databaseId'] = database_id
|
137
222
|
__args__['filters'] = filters
|
138
223
|
__args__['shapeFamily'] = shape_family
|
224
|
+
__args__['state'] = state
|
225
|
+
__args__['timeExpiryScheduledGreaterThanOrEqualTo'] = time_expiry_scheduled_greater_than_or_equal_to
|
226
|
+
__args__['timeExpiryScheduledLessThan'] = time_expiry_scheduled_less_than
|
227
|
+
__args__['type'] = type
|
228
|
+
__args__['version'] = version
|
139
229
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
140
230
|
__ret__ = pulumi.runtime.invoke('oci:Database/getBackups:getBackups', __args__, opts=opts, typ=GetBackupsResult).value
|
141
231
|
|
142
232
|
return AwaitableGetBackupsResult(
|
233
|
+
backup_destination_type=pulumi.get(__ret__, 'backup_destination_type'),
|
143
234
|
backups=pulumi.get(__ret__, 'backups'),
|
144
235
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
145
236
|
database_id=pulumi.get(__ret__, 'database_id'),
|
146
237
|
filters=pulumi.get(__ret__, 'filters'),
|
147
238
|
id=pulumi.get(__ret__, 'id'),
|
148
|
-
shape_family=pulumi.get(__ret__, 'shape_family')
|
149
|
-
|
239
|
+
shape_family=pulumi.get(__ret__, 'shape_family'),
|
240
|
+
state=pulumi.get(__ret__, 'state'),
|
241
|
+
time_expiry_scheduled_greater_than_or_equal_to=pulumi.get(__ret__, 'time_expiry_scheduled_greater_than_or_equal_to'),
|
242
|
+
time_expiry_scheduled_less_than=pulumi.get(__ret__, 'time_expiry_scheduled_less_than'),
|
243
|
+
type=pulumi.get(__ret__, 'type'),
|
244
|
+
version=pulumi.get(__ret__, 'version'))
|
245
|
+
def get_backups_output(backup_destination_type: Optional[pulumi.Input[Optional[str]]] = None,
|
246
|
+
compartment_id: Optional[pulumi.Input[Optional[str]]] = None,
|
150
247
|
database_id: Optional[pulumi.Input[Optional[str]]] = None,
|
151
248
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetBackupsFilterArgs', 'GetBackupsFilterArgsDict']]]]] = None,
|
152
249
|
shape_family: Optional[pulumi.Input[Optional[str]]] = None,
|
250
|
+
state: Optional[pulumi.Input[Optional[str]]] = None,
|
251
|
+
time_expiry_scheduled_greater_than_or_equal_to: Optional[pulumi.Input[Optional[str]]] = None,
|
252
|
+
time_expiry_scheduled_less_than: Optional[pulumi.Input[Optional[str]]] = None,
|
253
|
+
type: Optional[pulumi.Input[Optional[str]]] = None,
|
254
|
+
version: Optional[pulumi.Input[Optional[str]]] = None,
|
153
255
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetBackupsResult]:
|
154
256
|
"""
|
155
257
|
This data source provides the list of Backups in Oracle Cloud Infrastructure Database service.
|
@@ -162,27 +264,51 @@ def get_backups_output(compartment_id: Optional[pulumi.Input[Optional[str]]] = N
|
|
162
264
|
import pulumi
|
163
265
|
import pulumi_oci as oci
|
164
266
|
|
165
|
-
test_backups = oci.Database.get_backups(
|
267
|
+
test_backups = oci.Database.get_backups(backup_destination_type=backup_backup_destination_type,
|
268
|
+
compartment_id=compartment_id,
|
166
269
|
database_id=test_database["id"],
|
167
|
-
shape_family=backup_shape_family
|
270
|
+
shape_family=backup_shape_family,
|
271
|
+
state=backup_state,
|
272
|
+
time_expiry_scheduled_greater_than_or_equal_to=backup_time_expiry_scheduled_greater_than_or_equal_to,
|
273
|
+
time_expiry_scheduled_less_than=backup_time_expiry_scheduled_less_than,
|
274
|
+
type=backup_type,
|
275
|
+
version=backup_version)
|
168
276
|
```
|
169
277
|
|
170
278
|
|
279
|
+
:param str backup_destination_type: A filter to return only resources that match the given backup destination type.
|
171
280
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
172
281
|
:param str database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database.
|
173
282
|
:param str shape_family: If provided, filters the results to the set of database versions which are supported for the given shape family.
|
283
|
+
:param str state: A filter to return only resources that match the given lifecycle state exactly.
|
284
|
+
:param str time_expiry_scheduled_greater_than_or_equal_to: The start of date-time range of expiration for the long term backups to be fetched.
|
285
|
+
:param str time_expiry_scheduled_less_than: The end of date-time range of expiration for the long term backups to be fetched.
|
286
|
+
:param str type: A filter to return only backups that matches with the given type of Backup.
|
287
|
+
:param str version: A filter to return only resources that match the given database version.
|
174
288
|
"""
|
175
289
|
__args__ = dict()
|
290
|
+
__args__['backupDestinationType'] = backup_destination_type
|
176
291
|
__args__['compartmentId'] = compartment_id
|
177
292
|
__args__['databaseId'] = database_id
|
178
293
|
__args__['filters'] = filters
|
179
294
|
__args__['shapeFamily'] = shape_family
|
295
|
+
__args__['state'] = state
|
296
|
+
__args__['timeExpiryScheduledGreaterThanOrEqualTo'] = time_expiry_scheduled_greater_than_or_equal_to
|
297
|
+
__args__['timeExpiryScheduledLessThan'] = time_expiry_scheduled_less_than
|
298
|
+
__args__['type'] = type
|
299
|
+
__args__['version'] = version
|
180
300
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
181
301
|
__ret__ = pulumi.runtime.invoke_output('oci:Database/getBackups:getBackups', __args__, opts=opts, typ=GetBackupsResult)
|
182
302
|
return __ret__.apply(lambda __response__: GetBackupsResult(
|
303
|
+
backup_destination_type=pulumi.get(__response__, 'backup_destination_type'),
|
183
304
|
backups=pulumi.get(__response__, 'backups'),
|
184
305
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
185
306
|
database_id=pulumi.get(__response__, 'database_id'),
|
186
307
|
filters=pulumi.get(__response__, 'filters'),
|
187
308
|
id=pulumi.get(__response__, 'id'),
|
188
|
-
shape_family=pulumi.get(__response__, 'shape_family')
|
309
|
+
shape_family=pulumi.get(__response__, 'shape_family'),
|
310
|
+
state=pulumi.get(__response__, 'state'),
|
311
|
+
time_expiry_scheduled_greater_than_or_equal_to=pulumi.get(__response__, 'time_expiry_scheduled_greater_than_or_equal_to'),
|
312
|
+
time_expiry_scheduled_less_than=pulumi.get(__response__, 'time_expiry_scheduled_less_than'),
|
313
|
+
type=pulumi.get(__response__, 'type'),
|
314
|
+
version=pulumi.get(__response__, 'version')))
|