pulumi-oci 3.1.0a1750143229__py3-none-any.whl → 3.1.0a1751948424__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 +299 -0
- pulumi_oci/capacitymanagement/__init__.py +18 -0
- pulumi_oci/capacitymanagement/_inputs.py +459 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal.py +268 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog.py +254 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog_resources.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalogs.py +192 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_deliveries.py +197 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_delivery.py +296 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_items.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signals.py +222 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal.py +254 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_catalog_resources.py +189 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_deliveries.py +175 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_item.py +352 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_items.py +211 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signals.py +200 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal.py +564 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal_delivery.py +760 -0
- pulumi_oci/capacitymanagement/occm_demand_signal.py +585 -0
- pulumi_oci/capacitymanagement/occm_demand_signal_item.py +950 -0
- pulumi_oci/capacitymanagement/outputs.py +3499 -1230
- pulumi_oci/containerengine/get_cluster.py +7 -7
- pulumi_oci/core/__init__.py +4 -0
- pulumi_oci/core/_inputs.py +477 -0
- pulumi_oci/core/compute_host.py +910 -0
- pulumi_oci/core/compute_host_group.py +648 -0
- pulumi_oci/core/dedicated_vm_host.py +56 -0
- pulumi_oci/core/get_compute_host.py +72 -1
- pulumi_oci/core/get_compute_host_group.py +269 -0
- pulumi_oci/core/get_compute_host_groups.py +148 -0
- pulumi_oci/core/get_compute_hosts.py +37 -1
- pulumi_oci/core/get_dedicated_vm_host.py +29 -1
- pulumi_oci/core/outputs.py +912 -24
- pulumi_oci/database/__init__.py +2 -0
- pulumi_oci/database/_inputs.py +739 -52
- pulumi_oci/database/autonomous_container_database.py +141 -12
- pulumi_oci/database/autonomous_container_database_add_standby.py +8 -10
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +8 -16
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +4 -6
- pulumi_oci/database/autonomous_database_software_image.py +28 -0
- pulumi_oci/database/autonomous_vm_cluster.py +28 -0
- pulumi_oci/database/backup_destination.py +28 -0
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +82 -7
- pulumi_oci/database/database.py +28 -0
- pulumi_oci/database/database_software_image.py +28 -0
- pulumi_oci/database/database_upgrade.py +28 -0
- pulumi_oci/database/db_home.py +28 -0
- pulumi_oci/database/db_node.py +28 -0
- pulumi_oci/database/db_system.py +28 -0
- pulumi_oci/database/exadata_infrastructure.py +28 -0
- pulumi_oci/database/exadata_infrastructure_compute.py +39 -24
- pulumi_oci/database/external_container_database.py +28 -0
- pulumi_oci/database/external_database_connector.py +28 -0
- pulumi_oci/database/external_non_container_database.py +28 -0
- pulumi_oci/database/external_pluggable_database.py +28 -0
- pulumi_oci/database/get_autonomous_container_database.py +52 -2
- pulumi_oci/database/get_autonomous_container_database_backups.py +255 -0
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +2 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_resource_pool_members.py +145 -0
- pulumi_oci/database/get_autonomous_database_software_image.py +15 -1
- pulumi_oci/database/get_autonomous_vm_cluster.py +15 -1
- pulumi_oci/database/get_backup_destination.py +15 -1
- pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +40 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +30 -2
- pulumi_oci/database/get_database.py +15 -1
- pulumi_oci/database/get_database_software_image.py +15 -1
- pulumi_oci/database/get_db_home.py +15 -1
- pulumi_oci/database/get_db_node.py +15 -1
- pulumi_oci/database/get_db_nodes.py +2 -2
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +15 -1
- pulumi_oci/database/get_external_container_database.py +15 -1
- pulumi_oci/database/get_external_database_connector.py +15 -1
- pulumi_oci/database/get_external_non_container_database.py +15 -1
- pulumi_oci/database/get_external_pluggable_database.py +15 -1
- pulumi_oci/database/get_key_store.py +15 -1
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/get_oneoff_patch.py +15 -1
- pulumi_oci/database/get_pluggable_database.py +15 -1
- pulumi_oci/database/get_vm_cluster.py +15 -1
- pulumi_oci/database/get_vm_cluster_network.py +15 -1
- pulumi_oci/database/key_store.py +28 -0
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/oneoff_patch.py +28 -0
- pulumi_oci/database/outputs.py +1624 -54
- pulumi_oci/database/pluggable_database.py +28 -0
- pulumi_oci/database/pluggable_databases_local_clone.py +28 -0
- pulumi_oci/database/pluggable_databases_remote_clone.py +28 -0
- pulumi_oci/database/vm_cluster.py +28 -0
- pulumi_oci/database/vm_cluster_network.py +28 -0
- pulumi_oci/databasemanagement/__init__.py +7 -0
- pulumi_oci/databasemanagement/_inputs.py +196 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py +15 -1
- pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +198 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_digest_errors.py +164 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +352 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_inbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_query_detail.py +176 -0
- pulumi_oci/databasemanagement/outputs.py +1330 -19
- pulumi_oci/databasemigration/_inputs.py +94 -0
- pulumi_oci/databasemigration/get_migration.py +15 -1
- pulumi_oci/databasemigration/get_migrations.py +15 -1
- pulumi_oci/databasemigration/job.py +28 -0
- pulumi_oci/databasemigration/migration.py +52 -3
- pulumi_oci/databasemigration/outputs.py +73 -0
- pulumi_oci/dataflow/_inputs.py +20 -0
- pulumi_oci/dataflow/outputs.py +36 -0
- pulumi_oci/fleetappsmanagement/__init__.py +48 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +11016 -30
- pulumi_oci/fleetappsmanagement/catalog_item.py +1156 -0
- pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +811 -0
- pulumi_oci/fleetappsmanagement/fleet.py +1003 -0
- pulumi_oci/fleetappsmanagement/fleet_credential.py +623 -0
- pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
- pulumi_oci/fleetappsmanagement/fleet_resource.py +853 -0
- pulumi_oci/fleetappsmanagement/get_announcements.py +29 -7
- pulumi_oci/fleetappsmanagement/get_catalog_item.py +434 -0
- pulumi_oci/fleetappsmanagement/get_catalog_items.py +274 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policies.py +36 -12
- pulumi_oci/fleetappsmanagement/get_compliance_policy.py +20 -6
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +325 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +244 -0
- pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_compliance_records.py +299 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +409 -0
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +15 -1
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +274 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +283 -0
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +2 -2
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +197 -0
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +287 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +399 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +216 -0
- pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
- pulumi_oci/fleetappsmanagement/get_inventory_records.py +205 -0
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +4 -2
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +338 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +221 -0
- pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +26 -5
- pulumi_oci/fleetappsmanagement/get_onboardings.py +180 -0
- pulumi_oci/fleetappsmanagement/get_patch.py +364 -0
- pulumi_oci/fleetappsmanagement/get_patches.py +338 -0
- pulumi_oci/fleetappsmanagement/get_platform_configuration.py +297 -0
- pulumi_oci/fleetappsmanagement/get_platform_configurations.py +265 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +37 -13
- pulumi_oci/fleetappsmanagement/get_property.py +1 -1
- pulumi_oci/fleetappsmanagement/get_provision.py +493 -0
- pulumi_oci/fleetappsmanagement/get_provisions.py +224 -0
- pulumi_oci/fleetappsmanagement/get_runbook.py +406 -0
- pulumi_oci/fleetappsmanagement/get_runbook_version.py +319 -0
- pulumi_oci/fleetappsmanagement/get_runbook_versions.py +230 -0
- pulumi_oci/fleetappsmanagement/get_runbooks.py +265 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +395 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +167 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +347 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_executions.py +334 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +2 -2
- pulumi_oci/fleetappsmanagement/get_task_record.py +308 -0
- pulumi_oci/fleetappsmanagement/get_task_records.py +265 -0
- pulumi_oci/fleetappsmanagement/maintenance_window.py +840 -0
- pulumi_oci/fleetappsmanagement/onboarding.py +631 -0
- pulumi_oci/fleetappsmanagement/outputs.py +25528 -1223
- pulumi_oci/fleetappsmanagement/patch.py +980 -0
- pulumi_oci/fleetappsmanagement/platform_configuration.py +694 -0
- pulumi_oci/fleetappsmanagement/property.py +28 -27
- pulumi_oci/fleetappsmanagement/provision.py +1195 -0
- pulumi_oci/fleetappsmanagement/runbook.py +1277 -0
- pulumi_oci/fleetappsmanagement/runbook_version.py +996 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +946 -0
- pulumi_oci/fleetappsmanagement/task_record.py +786 -0
- pulumi_oci/fleetsoftwareupdate/_inputs.py +88 -15
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +71 -42
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +21 -7
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +1 -1
- pulumi_oci/fleetsoftwareupdate/outputs.py +172 -15
- pulumi_oci/goldengate/_inputs.py +449 -3
- pulumi_oci/goldengate/connection.py +200 -56
- pulumi_oci/goldengate/get_connection.py +59 -28
- pulumi_oci/goldengate/get_connections.py +0 -3
- pulumi_oci/goldengate/outputs.py +886 -22
- pulumi_oci/loadbalancer/_inputs.py +24 -6
- pulumi_oci/loadbalancer/backend.py +35 -7
- pulumi_oci/loadbalancer/backend_set.py +35 -7
- pulumi_oci/loadbalancer/listener.py +7 -7
- pulumi_oci/loadbalancer/load_balancer.py +81 -0
- pulumi_oci/loadbalancer/outputs.py +29 -10
- pulumi_oci/loganalytics/__init__.py +3 -0
- pulumi_oci/loganalytics/_inputs.py +123 -0
- pulumi_oci/loganalytics/get_log_analytics_entities.py +52 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_type.py +254 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_types.py +230 -0
- pulumi_oci/loganalytics/log_analytics_entity_type.py +508 -0
- pulumi_oci/loganalytics/outputs.py +258 -0
- pulumi_oci/mysql/_inputs.py +274 -0
- pulumi_oci/mysql/get_mysql_backup.py +29 -1
- pulumi_oci/mysql/get_mysql_backups.py +23 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/get_replica.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +98 -2
- pulumi_oci/mysql/mysql_db_system.py +57 -0
- pulumi_oci/mysql/outputs.py +594 -0
- pulumi_oci/mysql/replica.py +28 -0
- pulumi_oci/nosql/__init__.py +2 -0
- pulumi_oci/nosql/_inputs.py +129 -3
- pulumi_oci/nosql/configuration.py +383 -0
- pulumi_oci/nosql/get_configuration.py +162 -0
- pulumi_oci/nosql/index.py +7 -7
- pulumi_oci/nosql/outputs.py +164 -2
- pulumi_oci/nosql/table_replica.py +9 -9
- pulumi_oci/oci/__init__.py +56 -0
- pulumi_oci/oci/_inputs.py +1615 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_control.py +930 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_request.py +1303 -0
- pulumi_oci/oci/dbmulticloud_multi_cloud_resource_discovery.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_container.py +743 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_mount.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_connector.py +740 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault.py +840 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault_association.py +673 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata.py +310 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata_by_entity_types.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadatas.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_control.py +367 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_controls.py +222 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_request.py +535 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_requests.py +244 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discoveries.py +252 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discovery.py +297 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_container.py +310 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_containers.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mount.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mounts.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connector.py +311 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connectors.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_key.py +282 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_keys.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault.py +338 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_association.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_associations.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vaults.py +252 -0
- pulumi_oci/oci/get_wlms_managed_instance.py +255 -0
- pulumi_oci/oci/get_wlms_managed_instance_scan_results.py +189 -0
- pulumi_oci/oci/get_wlms_managed_instance_server.py +378 -0
- pulumi_oci/oci/get_wlms_managed_instance_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_managed_instance_servers.py +170 -0
- pulumi_oci/oci/get_wlms_managed_instances.py +200 -0
- pulumi_oci/oci/get_wlms_wls_domain.py +311 -0
- pulumi_oci/oci/get_wlms_wls_domain_agreement_records.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_applicable_patches.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_scan_results.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domain_server.py +378 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup.py +230 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup_content.py +189 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backups.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_servers.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domains.py +266 -0
- pulumi_oci/oci/outputs.py +5617 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/__init__.py +8 -0
- pulumi_oci/redis/_inputs.py +179 -0
- pulumi_oci/redis/get_oci_cache_user.py +283 -0
- pulumi_oci/redis/get_oci_cache_users.py +192 -0
- pulumi_oci/redis/oci_cache_user.py +695 -0
- pulumi_oci/redis/oci_cache_user_get_redis_cluster.py +333 -0
- pulumi_oci/redis/outputs.py +330 -0
- pulumi_oci/redis/redis_cluster_attach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_create_identity_token.py +439 -0
- pulumi_oci/redis/redis_cluster_detach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_get_oci_cache_user.py +333 -0
- {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/METADATA +1 -1
- {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/RECORD +282 -141
- {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/top_level.txt +0 -0
pulumi_oci/database/outputs.py
CHANGED
@@ -100,6 +100,7 @@ __all__ = [
|
|
100
100
|
'CloudVmClusterIormConfigCach',
|
101
101
|
'CloudVmClusterIormConfigCachDbPlan',
|
102
102
|
'CloudVmClusterIormConfigDbPlan',
|
103
|
+
'CloudVmClusterMultiCloudIdentityConnectorConfig',
|
103
104
|
'DataGuardAssociationDataCollectionOptions',
|
104
105
|
'DatabaseConnectionString',
|
105
106
|
'DatabaseDataGuardGroup',
|
@@ -238,6 +239,10 @@ __all__ = [
|
|
238
239
|
'GetAutonomousContainerDatabaseBackupConfigResult',
|
239
240
|
'GetAutonomousContainerDatabaseBackupConfigBackupDestinationDetailResult',
|
240
241
|
'GetAutonomousContainerDatabaseBackupDestinationPropertiesListResult',
|
242
|
+
'GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollectionResult',
|
243
|
+
'GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollectionItemResult',
|
244
|
+
'GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollectionItemAutonomousDatabaseResult',
|
245
|
+
'GetAutonomousContainerDatabaseBackupsFilterResult',
|
241
246
|
'GetAutonomousContainerDatabaseDataguardResult',
|
242
247
|
'GetAutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigResult',
|
243
248
|
'GetAutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailResult',
|
@@ -307,6 +312,9 @@ __all__ = [
|
|
307
312
|
'GetAutonomousDatabaseRefreshableClonesRefreshableCloneCollectionResult',
|
308
313
|
'GetAutonomousDatabaseRefreshableClonesRefreshableCloneCollectionItemResult',
|
309
314
|
'GetAutonomousDatabaseRemoteDisasterRecoveryConfigurationResult',
|
315
|
+
'GetAutonomousDatabaseResourcePoolMembersFilterResult',
|
316
|
+
'GetAutonomousDatabaseResourcePoolMembersResourcePoolMemberCollectionResult',
|
317
|
+
'GetAutonomousDatabaseResourcePoolMembersResourcePoolMemberCollectionItemResult',
|
310
318
|
'GetAutonomousDatabaseResourcePoolSummaryResult',
|
311
319
|
'GetAutonomousDatabaseScheduledOperationResult',
|
312
320
|
'GetAutonomousDatabaseScheduledOperationDayOfWeekResult',
|
@@ -447,6 +455,7 @@ __all__ = [
|
|
447
455
|
'GetCloudVmClusterIormConfigCachResult',
|
448
456
|
'GetCloudVmClusterIormConfigCachDbPlanResult',
|
449
457
|
'GetCloudVmClusterIormConfigDbPlanResult',
|
458
|
+
'GetCloudVmClusterMultiCloudIdentityConnectorConfigResult',
|
450
459
|
'GetCloudVmClustersCloudVmClusterResult',
|
451
460
|
'GetCloudVmClustersCloudVmClusterCloudAutomationUpdateDetailResult',
|
452
461
|
'GetCloudVmClustersCloudVmClusterCloudAutomationUpdateDetailApplyUpdateTimePreferenceResult',
|
@@ -455,6 +464,7 @@ __all__ = [
|
|
455
464
|
'GetCloudVmClustersCloudVmClusterFileSystemConfigurationDetailResult',
|
456
465
|
'GetCloudVmClustersCloudVmClusterIormConfigCachResult',
|
457
466
|
'GetCloudVmClustersCloudVmClusterIormConfigCachDbPlanResult',
|
467
|
+
'GetCloudVmClustersCloudVmClusterMultiCloudIdentityConnectorConfigResult',
|
458
468
|
'GetCloudVmClustersFilterResult',
|
459
469
|
'GetDataGuardAssociationDataCollectionOptionResult',
|
460
470
|
'GetDataGuardAssociationsDataGuardAssociationResult',
|
@@ -2067,6 +2077,10 @@ class AutonomousContainerDatabaseBackupConfigBackupDestinationDetails(dict):
|
|
2067
2077
|
suggest = None
|
2068
2078
|
if key == "internetProxy":
|
2069
2079
|
suggest = "internet_proxy"
|
2080
|
+
elif key == "isRemote":
|
2081
|
+
suggest = "is_remote"
|
2082
|
+
elif key == "remoteRegion":
|
2083
|
+
suggest = "remote_region"
|
2070
2084
|
elif key == "vpcPassword":
|
2071
2085
|
suggest = "vpc_password"
|
2072
2086
|
elif key == "vpcUser":
|
@@ -2087,12 +2101,18 @@ class AutonomousContainerDatabaseBackupConfigBackupDestinationDetails(dict):
|
|
2087
2101
|
type: builtins.str,
|
2088
2102
|
id: Optional[builtins.str] = None,
|
2089
2103
|
internet_proxy: Optional[builtins.str] = None,
|
2104
|
+
is_remote: Optional[builtins.bool] = None,
|
2105
|
+
remote_region: Optional[builtins.str] = None,
|
2090
2106
|
vpc_password: Optional[builtins.str] = None,
|
2091
2107
|
vpc_user: Optional[builtins.str] = None):
|
2092
2108
|
"""
|
2093
2109
|
:param builtins.str type: (Updatable) Type of the database backup destination.
|
2094
2110
|
:param builtins.str id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup destination.
|
2095
2111
|
:param builtins.str internet_proxy: (Updatable) Proxy URL to connect to object store.
|
2112
|
+
:param builtins.bool is_remote: (Updatable) Indicates whether the backup destination is cross-region or local region.
|
2113
|
+
:param builtins.str remote_region: (Updatable) The name of the remote region where the remote automatic incremental backups will be stored.
|
2114
|
+
|
2115
|
+
For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
|
2096
2116
|
:param builtins.str vpc_password: (Updatable) For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
|
2097
2117
|
:param builtins.str vpc_user: (Updatable) For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
|
2098
2118
|
"""
|
@@ -2101,6 +2121,10 @@ class AutonomousContainerDatabaseBackupConfigBackupDestinationDetails(dict):
|
|
2101
2121
|
pulumi.set(__self__, "id", id)
|
2102
2122
|
if internet_proxy is not None:
|
2103
2123
|
pulumi.set(__self__, "internet_proxy", internet_proxy)
|
2124
|
+
if is_remote is not None:
|
2125
|
+
pulumi.set(__self__, "is_remote", is_remote)
|
2126
|
+
if remote_region is not None:
|
2127
|
+
pulumi.set(__self__, "remote_region", remote_region)
|
2104
2128
|
if vpc_password is not None:
|
2105
2129
|
pulumi.set(__self__, "vpc_password", vpc_password)
|
2106
2130
|
if vpc_user is not None:
|
@@ -2130,6 +2154,24 @@ class AutonomousContainerDatabaseBackupConfigBackupDestinationDetails(dict):
|
|
2130
2154
|
"""
|
2131
2155
|
return pulumi.get(self, "internet_proxy")
|
2132
2156
|
|
2157
|
+
@property
|
2158
|
+
@pulumi.getter(name="isRemote")
|
2159
|
+
def is_remote(self) -> Optional[builtins.bool]:
|
2160
|
+
"""
|
2161
|
+
(Updatable) Indicates whether the backup destination is cross-region or local region.
|
2162
|
+
"""
|
2163
|
+
return pulumi.get(self, "is_remote")
|
2164
|
+
|
2165
|
+
@property
|
2166
|
+
@pulumi.getter(name="remoteRegion")
|
2167
|
+
def remote_region(self) -> Optional[builtins.str]:
|
2168
|
+
"""
|
2169
|
+
(Updatable) The name of the remote region where the remote automatic incremental backups will be stored.
|
2170
|
+
|
2171
|
+
For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
|
2172
|
+
"""
|
2173
|
+
return pulumi.get(self, "remote_region")
|
2174
|
+
|
2133
2175
|
@property
|
2134
2176
|
@pulumi.getter(name="vpcPassword")
|
2135
2177
|
def vpc_password(self) -> Optional[builtins.str]:
|
@@ -2526,6 +2568,10 @@ class AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerData
|
|
2526
2568
|
suggest = "dbrs_policy_id"
|
2527
2569
|
elif key == "internetProxy":
|
2528
2570
|
suggest = "internet_proxy"
|
2571
|
+
elif key == "isRemote":
|
2572
|
+
suggest = "is_remote"
|
2573
|
+
elif key == "remoteRegion":
|
2574
|
+
suggest = "remote_region"
|
2529
2575
|
elif key == "vpcPassword":
|
2530
2576
|
suggest = "vpc_password"
|
2531
2577
|
elif key == "vpcUser":
|
@@ -2547,6 +2593,8 @@ class AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerData
|
|
2547
2593
|
dbrs_policy_id: Optional[builtins.str] = None,
|
2548
2594
|
id: Optional[builtins.str] = None,
|
2549
2595
|
internet_proxy: Optional[builtins.str] = None,
|
2596
|
+
is_remote: Optional[builtins.bool] = None,
|
2597
|
+
remote_region: Optional[builtins.str] = None,
|
2550
2598
|
vpc_password: Optional[builtins.str] = None,
|
2551
2599
|
vpc_user: Optional[builtins.str] = None):
|
2552
2600
|
"""
|
@@ -2554,6 +2602,10 @@ class AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerData
|
|
2554
2602
|
:param builtins.str dbrs_policy_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
|
2555
2603
|
:param builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup destination.
|
2556
2604
|
:param builtins.str internet_proxy: Proxy URL to connect to object store.
|
2605
|
+
:param builtins.bool is_remote: Indicates whether the backup destination is cross-region or local region.
|
2606
|
+
:param builtins.str remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
|
2607
|
+
|
2608
|
+
For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
|
2557
2609
|
:param builtins.str vpc_password: For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
|
2558
2610
|
:param builtins.str vpc_user: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
|
2559
2611
|
"""
|
@@ -2564,6 +2616,10 @@ class AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerData
|
|
2564
2616
|
pulumi.set(__self__, "id", id)
|
2565
2617
|
if internet_proxy is not None:
|
2566
2618
|
pulumi.set(__self__, "internet_proxy", internet_proxy)
|
2619
|
+
if is_remote is not None:
|
2620
|
+
pulumi.set(__self__, "is_remote", is_remote)
|
2621
|
+
if remote_region is not None:
|
2622
|
+
pulumi.set(__self__, "remote_region", remote_region)
|
2567
2623
|
if vpc_password is not None:
|
2568
2624
|
pulumi.set(__self__, "vpc_password", vpc_password)
|
2569
2625
|
if vpc_user is not None:
|
@@ -2601,6 +2657,24 @@ class AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerData
|
|
2601
2657
|
"""
|
2602
2658
|
return pulumi.get(self, "internet_proxy")
|
2603
2659
|
|
2660
|
+
@property
|
2661
|
+
@pulumi.getter(name="isRemote")
|
2662
|
+
def is_remote(self) -> Optional[builtins.bool]:
|
2663
|
+
"""
|
2664
|
+
Indicates whether the backup destination is cross-region or local region.
|
2665
|
+
"""
|
2666
|
+
return pulumi.get(self, "is_remote")
|
2667
|
+
|
2668
|
+
@property
|
2669
|
+
@pulumi.getter(name="remoteRegion")
|
2670
|
+
def remote_region(self) -> Optional[builtins.str]:
|
2671
|
+
"""
|
2672
|
+
The name of the remote region where the remote automatic incremental backups will be stored.
|
2673
|
+
|
2674
|
+
For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
|
2675
|
+
"""
|
2676
|
+
return pulumi.get(self, "remote_region")
|
2677
|
+
|
2604
2678
|
@property
|
2605
2679
|
@pulumi.getter(name="vpcPassword")
|
2606
2680
|
def vpc_password(self) -> Optional[builtins.str]:
|
@@ -3433,6 +3507,10 @@ class AutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBack
|
|
3433
3507
|
suggest = None
|
3434
3508
|
if key == "internetProxy":
|
3435
3509
|
suggest = "internet_proxy"
|
3510
|
+
elif key == "isRemote":
|
3511
|
+
suggest = "is_remote"
|
3512
|
+
elif key == "remoteRegion":
|
3513
|
+
suggest = "remote_region"
|
3436
3514
|
elif key == "vpcPassword":
|
3437
3515
|
suggest = "vpc_password"
|
3438
3516
|
elif key == "vpcUser":
|
@@ -3453,12 +3531,18 @@ class AutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBack
|
|
3453
3531
|
type: builtins.str,
|
3454
3532
|
id: Optional[builtins.str] = None,
|
3455
3533
|
internet_proxy: Optional[builtins.str] = None,
|
3534
|
+
is_remote: Optional[builtins.bool] = None,
|
3535
|
+
remote_region: Optional[builtins.str] = None,
|
3456
3536
|
vpc_password: Optional[builtins.str] = None,
|
3457
3537
|
vpc_user: Optional[builtins.str] = None):
|
3458
3538
|
"""
|
3459
3539
|
:param builtins.str type: Type of the database backup destination.
|
3460
3540
|
:param builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup destination.
|
3461
3541
|
:param builtins.str internet_proxy: Proxy URL to connect to object store.
|
3542
|
+
:param builtins.bool is_remote: Indicates whether the backup destination is cross-region or local region.
|
3543
|
+
:param builtins.str remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
|
3544
|
+
|
3545
|
+
For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
|
3462
3546
|
:param builtins.str vpc_password: For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
|
3463
3547
|
:param builtins.str vpc_user: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
|
3464
3548
|
"""
|
@@ -3467,6 +3551,10 @@ class AutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBack
|
|
3467
3551
|
pulumi.set(__self__, "id", id)
|
3468
3552
|
if internet_proxy is not None:
|
3469
3553
|
pulumi.set(__self__, "internet_proxy", internet_proxy)
|
3554
|
+
if is_remote is not None:
|
3555
|
+
pulumi.set(__self__, "is_remote", is_remote)
|
3556
|
+
if remote_region is not None:
|
3557
|
+
pulumi.set(__self__, "remote_region", remote_region)
|
3470
3558
|
if vpc_password is not None:
|
3471
3559
|
pulumi.set(__self__, "vpc_password", vpc_password)
|
3472
3560
|
if vpc_user is not None:
|
@@ -3496,6 +3584,24 @@ class AutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBack
|
|
3496
3584
|
"""
|
3497
3585
|
return pulumi.get(self, "internet_proxy")
|
3498
3586
|
|
3587
|
+
@property
|
3588
|
+
@pulumi.getter(name="isRemote")
|
3589
|
+
def is_remote(self) -> Optional[builtins.bool]:
|
3590
|
+
"""
|
3591
|
+
Indicates whether the backup destination is cross-region or local region.
|
3592
|
+
"""
|
3593
|
+
return pulumi.get(self, "is_remote")
|
3594
|
+
|
3595
|
+
@property
|
3596
|
+
@pulumi.getter(name="remoteRegion")
|
3597
|
+
def remote_region(self) -> Optional[builtins.str]:
|
3598
|
+
"""
|
3599
|
+
The name of the remote region where the remote automatic incremental backups will be stored.
|
3600
|
+
|
3601
|
+
For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
|
3602
|
+
"""
|
3603
|
+
return pulumi.get(self, "remote_region")
|
3604
|
+
|
3499
3605
|
@property
|
3500
3606
|
@pulumi.getter(name="vpcPassword")
|
3501
3607
|
def vpc_password(self) -> Optional[builtins.str]:
|
@@ -3544,7 +3650,6 @@ class AutonomousContainerDatabaseRecoveryApplianceDetail(dict):
|
|
3544
3650
|
:param builtins.int allocated_storage_size_in_gbs: The storage size of the backup destination allocated for an Autonomous Container Database to store backups on the recovery appliance, in GBs, rounded to the nearest integer.
|
3545
3651
|
:param builtins.int recovery_window_in_days: Number of days between the current and earliest point of recoverability covered by automatic backups.
|
3546
3652
|
:param builtins.str time_recovery_appliance_details_updated: The time when the recovery appliance details are updated.
|
3547
|
-
=======
|
3548
3653
|
"""
|
3549
3654
|
if allocated_storage_size_in_gbs is not None:
|
3550
3655
|
pulumi.set(__self__, "allocated_storage_size_in_gbs", allocated_storage_size_in_gbs)
|
@@ -3574,7 +3679,6 @@ class AutonomousContainerDatabaseRecoveryApplianceDetail(dict):
|
|
3574
3679
|
def time_recovery_appliance_details_updated(self) -> Optional[builtins.str]:
|
3575
3680
|
"""
|
3576
3681
|
The time when the recovery appliance details are updated.
|
3577
|
-
=======
|
3578
3682
|
"""
|
3579
3683
|
return pulumi.get(self, "time_recovery_appliance_details_updated")
|
3580
3684
|
|
@@ -3636,6 +3740,10 @@ class AutonomousDatabaseBackupBackupDestinationDetails(dict):
|
|
3636
3740
|
suggest = None
|
3637
3741
|
if key == "internetProxy":
|
3638
3742
|
suggest = "internet_proxy"
|
3743
|
+
elif key == "isRemote":
|
3744
|
+
suggest = "is_remote"
|
3745
|
+
elif key == "remoteRegion":
|
3746
|
+
suggest = "remote_region"
|
3639
3747
|
elif key == "vpcPassword":
|
3640
3748
|
suggest = "vpc_password"
|
3641
3749
|
elif key == "vpcUser":
|
@@ -3656,12 +3764,16 @@ class AutonomousDatabaseBackupBackupDestinationDetails(dict):
|
|
3656
3764
|
type: builtins.str,
|
3657
3765
|
id: Optional[builtins.str] = None,
|
3658
3766
|
internet_proxy: Optional[builtins.str] = None,
|
3767
|
+
is_remote: Optional[builtins.bool] = None,
|
3768
|
+
remote_region: Optional[builtins.str] = None,
|
3659
3769
|
vpc_password: Optional[builtins.str] = None,
|
3660
3770
|
vpc_user: Optional[builtins.str] = None):
|
3661
3771
|
"""
|
3662
3772
|
:param builtins.str type: The type of backup.
|
3663
3773
|
:param builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Autonomous Database backup.
|
3664
3774
|
:param builtins.str internet_proxy: Proxy URL to connect to object store.
|
3775
|
+
:param builtins.bool is_remote: Indicates whether the backup destination is cross-region or local region.
|
3776
|
+
:param builtins.str remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
|
3665
3777
|
:param builtins.str vpc_password: For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
|
3666
3778
|
:param builtins.str vpc_user: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
|
3667
3779
|
"""
|
@@ -3670,6 +3782,10 @@ class AutonomousDatabaseBackupBackupDestinationDetails(dict):
|
|
3670
3782
|
pulumi.set(__self__, "id", id)
|
3671
3783
|
if internet_proxy is not None:
|
3672
3784
|
pulumi.set(__self__, "internet_proxy", internet_proxy)
|
3785
|
+
if is_remote is not None:
|
3786
|
+
pulumi.set(__self__, "is_remote", is_remote)
|
3787
|
+
if remote_region is not None:
|
3788
|
+
pulumi.set(__self__, "remote_region", remote_region)
|
3673
3789
|
if vpc_password is not None:
|
3674
3790
|
pulumi.set(__self__, "vpc_password", vpc_password)
|
3675
3791
|
if vpc_user is not None:
|
@@ -3699,6 +3815,22 @@ class AutonomousDatabaseBackupBackupDestinationDetails(dict):
|
|
3699
3815
|
"""
|
3700
3816
|
return pulumi.get(self, "internet_proxy")
|
3701
3817
|
|
3818
|
+
@property
|
3819
|
+
@pulumi.getter(name="isRemote")
|
3820
|
+
def is_remote(self) -> Optional[builtins.bool]:
|
3821
|
+
"""
|
3822
|
+
Indicates whether the backup destination is cross-region or local region.
|
3823
|
+
"""
|
3824
|
+
return pulumi.get(self, "is_remote")
|
3825
|
+
|
3826
|
+
@property
|
3827
|
+
@pulumi.getter(name="remoteRegion")
|
3828
|
+
def remote_region(self) -> Optional[builtins.str]:
|
3829
|
+
"""
|
3830
|
+
The name of the remote region where the remote automatic incremental backups will be stored.
|
3831
|
+
"""
|
3832
|
+
return pulumi.get(self, "remote_region")
|
3833
|
+
|
3702
3834
|
@property
|
3703
3835
|
@pulumi.getter(name="vpcPassword")
|
3704
3836
|
def vpc_password(self) -> Optional[builtins.str]:
|
@@ -6456,7 +6588,9 @@ class BackupEncryptionKeyLocationDetail(dict):
|
|
6456
6588
|
@staticmethod
|
6457
6589
|
def __key_warning(key: str):
|
6458
6590
|
suggest = None
|
6459
|
-
if key == "
|
6591
|
+
if key == "azureEncryptionKeyId":
|
6592
|
+
suggest = "azure_encryption_key_id"
|
6593
|
+
elif key == "hsmPassword":
|
6460
6594
|
suggest = "hsm_password"
|
6461
6595
|
elif key == "providerType":
|
6462
6596
|
suggest = "provider_type"
|
@@ -6473,17 +6607,29 @@ class BackupEncryptionKeyLocationDetail(dict):
|
|
6473
6607
|
return super().get(key, default)
|
6474
6608
|
|
6475
6609
|
def __init__(__self__, *,
|
6610
|
+
azure_encryption_key_id: Optional[builtins.str] = None,
|
6476
6611
|
hsm_password: Optional[builtins.str] = None,
|
6477
6612
|
provider_type: Optional[builtins.str] = None):
|
6478
6613
|
"""
|
6614
|
+
:param builtins.str azure_encryption_key_id: The key OCID of a registered Azure key.
|
6479
6615
|
:param builtins.str hsm_password: Provide the HSM password as you would in RDBMS for External HSM.
|
6480
|
-
:param builtins.str provider_type: Use 'EXTERNAL' for creating a new database or
|
6616
|
+
:param builtins.str provider_type: Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
|
6481
6617
|
"""
|
6618
|
+
if azure_encryption_key_id is not None:
|
6619
|
+
pulumi.set(__self__, "azure_encryption_key_id", azure_encryption_key_id)
|
6482
6620
|
if hsm_password is not None:
|
6483
6621
|
pulumi.set(__self__, "hsm_password", hsm_password)
|
6484
6622
|
if provider_type is not None:
|
6485
6623
|
pulumi.set(__self__, "provider_type", provider_type)
|
6486
6624
|
|
6625
|
+
@property
|
6626
|
+
@pulumi.getter(name="azureEncryptionKeyId")
|
6627
|
+
def azure_encryption_key_id(self) -> Optional[builtins.str]:
|
6628
|
+
"""
|
6629
|
+
The key OCID of a registered Azure key.
|
6630
|
+
"""
|
6631
|
+
return pulumi.get(self, "azure_encryption_key_id")
|
6632
|
+
|
6487
6633
|
@property
|
6488
6634
|
@pulumi.getter(name="hsmPassword")
|
6489
6635
|
def hsm_password(self) -> Optional[builtins.str]:
|
@@ -6496,7 +6642,7 @@ class BackupEncryptionKeyLocationDetail(dict):
|
|
6496
6642
|
@pulumi.getter(name="providerType")
|
6497
6643
|
def provider_type(self) -> Optional[builtins.str]:
|
6498
6644
|
"""
|
6499
|
-
Use 'EXTERNAL' for creating a new database or
|
6645
|
+
Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
|
6500
6646
|
"""
|
6501
6647
|
return pulumi.get(self, "provider_type")
|
6502
6648
|
|
@@ -7770,6 +7916,54 @@ class CloudVmClusterIormConfigDbPlan(dict):
|
|
7770
7916
|
return pulumi.get(self, "flash_cache_limit")
|
7771
7917
|
|
7772
7918
|
|
7919
|
+
@pulumi.output_type
|
7920
|
+
class CloudVmClusterMultiCloudIdentityConnectorConfig(dict):
|
7921
|
+
@staticmethod
|
7922
|
+
def __key_warning(key: str):
|
7923
|
+
suggest = None
|
7924
|
+
if key == "cloudProvider":
|
7925
|
+
suggest = "cloud_provider"
|
7926
|
+
|
7927
|
+
if suggest:
|
7928
|
+
pulumi.log.warn(f"Key '{key}' not found in CloudVmClusterMultiCloudIdentityConnectorConfig. Access the value via the '{suggest}' property getter instead.")
|
7929
|
+
|
7930
|
+
def __getitem__(self, key: str) -> Any:
|
7931
|
+
CloudVmClusterMultiCloudIdentityConnectorConfig.__key_warning(key)
|
7932
|
+
return super().__getitem__(key)
|
7933
|
+
|
7934
|
+
def get(self, key: str, default = None) -> Any:
|
7935
|
+
CloudVmClusterMultiCloudIdentityConnectorConfig.__key_warning(key)
|
7936
|
+
return super().get(key, default)
|
7937
|
+
|
7938
|
+
def __init__(__self__, *,
|
7939
|
+
cloud_provider: Optional[builtins.str] = None,
|
7940
|
+
id: Optional[builtins.str] = None):
|
7941
|
+
"""
|
7942
|
+
:param builtins.str cloud_provider: Cloud provider
|
7943
|
+
:param builtins.str id: The OCID of the identity connector
|
7944
|
+
"""
|
7945
|
+
if cloud_provider is not None:
|
7946
|
+
pulumi.set(__self__, "cloud_provider", cloud_provider)
|
7947
|
+
if id is not None:
|
7948
|
+
pulumi.set(__self__, "id", id)
|
7949
|
+
|
7950
|
+
@property
|
7951
|
+
@pulumi.getter(name="cloudProvider")
|
7952
|
+
def cloud_provider(self) -> Optional[builtins.str]:
|
7953
|
+
"""
|
7954
|
+
Cloud provider
|
7955
|
+
"""
|
7956
|
+
return pulumi.get(self, "cloud_provider")
|
7957
|
+
|
7958
|
+
@property
|
7959
|
+
@pulumi.getter
|
7960
|
+
def id(self) -> Optional[builtins.str]:
|
7961
|
+
"""
|
7962
|
+
The OCID of the identity connector
|
7963
|
+
"""
|
7964
|
+
return pulumi.get(self, "id")
|
7965
|
+
|
7966
|
+
|
7773
7967
|
@pulumi.output_type
|
7774
7968
|
class DataGuardAssociationDataCollectionOptions(dict):
|
7775
7969
|
@staticmethod
|
@@ -8665,6 +8859,12 @@ class DatabaseDatabaseDbBackupConfigBackupDestinationDetail(dict):
|
|
8665
8859
|
suggest = None
|
8666
8860
|
if key == "dbrsPolicyId":
|
8667
8861
|
suggest = "dbrs_policy_id"
|
8862
|
+
elif key == "isRemote":
|
8863
|
+
suggest = "is_remote"
|
8864
|
+
elif key == "remoteRegion":
|
8865
|
+
suggest = "remote_region"
|
8866
|
+
elif key == "vpcPassword":
|
8867
|
+
suggest = "vpc_password"
|
8668
8868
|
elif key == "vpcUser":
|
8669
8869
|
suggest = "vpc_user"
|
8670
8870
|
|
@@ -8682,19 +8882,34 @@ class DatabaseDatabaseDbBackupConfigBackupDestinationDetail(dict):
|
|
8682
8882
|
def __init__(__self__, *,
|
8683
8883
|
dbrs_policy_id: Optional[builtins.str] = None,
|
8684
8884
|
id: Optional[builtins.str] = None,
|
8885
|
+
is_remote: Optional[builtins.bool] = None,
|
8886
|
+
remote_region: Optional[builtins.str] = None,
|
8685
8887
|
type: Optional[builtins.str] = None,
|
8888
|
+
vpc_password: Optional[builtins.str] = None,
|
8686
8889
|
vpc_user: Optional[builtins.str] = None):
|
8687
8890
|
"""
|
8688
8891
|
:param builtins.str dbrs_policy_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
|
8689
8892
|
:param builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup destination.
|
8893
|
+
:param builtins.bool is_remote: Indicates whether the backup destination is cross-region or local region.
|
8894
|
+
:param builtins.str remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
|
8895
|
+
|
8896
|
+
For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
|
8690
8897
|
:param builtins.str type: Type of the database backup destination.
|
8898
|
+
:param builtins.str vpc_password: For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
|
8899
|
+
:param builtins.str vpc_user: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
|
8691
8900
|
"""
|
8692
8901
|
if dbrs_policy_id is not None:
|
8693
8902
|
pulumi.set(__self__, "dbrs_policy_id", dbrs_policy_id)
|
8694
8903
|
if id is not None:
|
8695
8904
|
pulumi.set(__self__, "id", id)
|
8905
|
+
if is_remote is not None:
|
8906
|
+
pulumi.set(__self__, "is_remote", is_remote)
|
8907
|
+
if remote_region is not None:
|
8908
|
+
pulumi.set(__self__, "remote_region", remote_region)
|
8696
8909
|
if type is not None:
|
8697
8910
|
pulumi.set(__self__, "type", type)
|
8911
|
+
if vpc_password is not None:
|
8912
|
+
pulumi.set(__self__, "vpc_password", vpc_password)
|
8698
8913
|
if vpc_user is not None:
|
8699
8914
|
pulumi.set(__self__, "vpc_user", vpc_user)
|
8700
8915
|
|
@@ -8714,6 +8929,24 @@ class DatabaseDatabaseDbBackupConfigBackupDestinationDetail(dict):
|
|
8714
8929
|
"""
|
8715
8930
|
return pulumi.get(self, "id")
|
8716
8931
|
|
8932
|
+
@property
|
8933
|
+
@pulumi.getter(name="isRemote")
|
8934
|
+
def is_remote(self) -> Optional[builtins.bool]:
|
8935
|
+
"""
|
8936
|
+
Indicates whether the backup destination is cross-region or local region.
|
8937
|
+
"""
|
8938
|
+
return pulumi.get(self, "is_remote")
|
8939
|
+
|
8940
|
+
@property
|
8941
|
+
@pulumi.getter(name="remoteRegion")
|
8942
|
+
def remote_region(self) -> Optional[builtins.str]:
|
8943
|
+
"""
|
8944
|
+
The name of the remote region where the remote automatic incremental backups will be stored.
|
8945
|
+
|
8946
|
+
For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
|
8947
|
+
"""
|
8948
|
+
return pulumi.get(self, "remote_region")
|
8949
|
+
|
8717
8950
|
@property
|
8718
8951
|
@pulumi.getter
|
8719
8952
|
def type(self) -> Optional[builtins.str]:
|
@@ -8722,9 +8955,20 @@ class DatabaseDatabaseDbBackupConfigBackupDestinationDetail(dict):
|
|
8722
8955
|
"""
|
8723
8956
|
return pulumi.get(self, "type")
|
8724
8957
|
|
8958
|
+
@property
|
8959
|
+
@pulumi.getter(name="vpcPassword")
|
8960
|
+
def vpc_password(self) -> Optional[builtins.str]:
|
8961
|
+
"""
|
8962
|
+
For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
|
8963
|
+
"""
|
8964
|
+
return pulumi.get(self, "vpc_password")
|
8965
|
+
|
8725
8966
|
@property
|
8726
8967
|
@pulumi.getter(name="vpcUser")
|
8727
8968
|
def vpc_user(self) -> Optional[builtins.str]:
|
8969
|
+
"""
|
8970
|
+
For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
|
8971
|
+
"""
|
8728
8972
|
return pulumi.get(self, "vpc_user")
|
8729
8973
|
|
8730
8974
|
|
@@ -8733,10 +8977,12 @@ class DatabaseDatabaseEncryptionKeyLocationDetails(dict):
|
|
8733
8977
|
@staticmethod
|
8734
8978
|
def __key_warning(key: str):
|
8735
8979
|
suggest = None
|
8736
|
-
if key == "
|
8737
|
-
suggest = "hsm_password"
|
8738
|
-
elif key == "providerType":
|
8980
|
+
if key == "providerType":
|
8739
8981
|
suggest = "provider_type"
|
8982
|
+
elif key == "azureEncryptionKeyId":
|
8983
|
+
suggest = "azure_encryption_key_id"
|
8984
|
+
elif key == "hsmPassword":
|
8985
|
+
suggest = "hsm_password"
|
8740
8986
|
|
8741
8987
|
if suggest:
|
8742
8988
|
pulumi.log.warn(f"Key '{key}' not found in DatabaseDatabaseEncryptionKeyLocationDetails. Access the value via the '{suggest}' property getter instead.")
|
@@ -8750,30 +8996,43 @@ class DatabaseDatabaseEncryptionKeyLocationDetails(dict):
|
|
8750
8996
|
return super().get(key, default)
|
8751
8997
|
|
8752
8998
|
def __init__(__self__, *,
|
8753
|
-
|
8754
|
-
|
8999
|
+
provider_type: builtins.str,
|
9000
|
+
azure_encryption_key_id: Optional[builtins.str] = None,
|
9001
|
+
hsm_password: Optional[builtins.str] = None):
|
8755
9002
|
"""
|
9003
|
+
:param builtins.str provider_type: Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
|
9004
|
+
:param builtins.str azure_encryption_key_id: Provide the key OCID of a registered Azure key.
|
8756
9005
|
:param builtins.str hsm_password: Provide the HSM password as you would in RDBMS for External HSM.
|
8757
|
-
:param builtins.str provider_type: Use 'EXTERNAL' for creating a new database or migrate database key with External HSM.
|
8758
9006
|
"""
|
8759
|
-
pulumi.set(__self__, "hsm_password", hsm_password)
|
8760
9007
|
pulumi.set(__self__, "provider_type", provider_type)
|
9008
|
+
if azure_encryption_key_id is not None:
|
9009
|
+
pulumi.set(__self__, "azure_encryption_key_id", azure_encryption_key_id)
|
9010
|
+
if hsm_password is not None:
|
9011
|
+
pulumi.set(__self__, "hsm_password", hsm_password)
|
8761
9012
|
|
8762
9013
|
@property
|
8763
|
-
@pulumi.getter(name="
|
8764
|
-
def
|
9014
|
+
@pulumi.getter(name="providerType")
|
9015
|
+
def provider_type(self) -> builtins.str:
|
8765
9016
|
"""
|
8766
|
-
|
9017
|
+
Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
|
8767
9018
|
"""
|
8768
|
-
return pulumi.get(self, "
|
9019
|
+
return pulumi.get(self, "provider_type")
|
8769
9020
|
|
8770
9021
|
@property
|
8771
|
-
@pulumi.getter(name="
|
8772
|
-
def
|
9022
|
+
@pulumi.getter(name="azureEncryptionKeyId")
|
9023
|
+
def azure_encryption_key_id(self) -> Optional[builtins.str]:
|
8773
9024
|
"""
|
8774
|
-
|
9025
|
+
Provide the key OCID of a registered Azure key.
|
8775
9026
|
"""
|
8776
|
-
return pulumi.get(self, "
|
9027
|
+
return pulumi.get(self, "azure_encryption_key_id")
|
9028
|
+
|
9029
|
+
@property
|
9030
|
+
@pulumi.getter(name="hsmPassword")
|
9031
|
+
def hsm_password(self) -> Optional[builtins.str]:
|
9032
|
+
"""
|
9033
|
+
Provide the HSM password as you would in RDBMS for External HSM.
|
9034
|
+
"""
|
9035
|
+
return pulumi.get(self, "hsm_password")
|
8777
9036
|
|
8778
9037
|
|
8779
9038
|
@pulumi.output_type
|
@@ -8852,7 +9111,7 @@ class DatabaseDatabaseSourceEncryptionKeyLocationDetails(dict):
|
|
8852
9111
|
provider_type: builtins.str):
|
8853
9112
|
"""
|
8854
9113
|
:param builtins.str hsm_password: Provide the HSM password as you would in RDBMS for External HSM.
|
8855
|
-
:param builtins.str provider_type: Use 'EXTERNAL' for creating a new database or
|
9114
|
+
:param builtins.str provider_type: Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
|
8856
9115
|
"""
|
8857
9116
|
pulumi.set(__self__, "hsm_password", hsm_password)
|
8858
9117
|
pulumi.set(__self__, "provider_type", provider_type)
|
@@ -8869,7 +9128,7 @@ class DatabaseDatabaseSourceEncryptionKeyLocationDetails(dict):
|
|
8869
9128
|
@pulumi.getter(name="providerType")
|
8870
9129
|
def provider_type(self) -> builtins.str:
|
8871
9130
|
"""
|
8872
|
-
Use 'EXTERNAL' for creating a new database or
|
9131
|
+
Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
|
8873
9132
|
"""
|
8874
9133
|
return pulumi.get(self, "provider_type")
|
8875
9134
|
|
@@ -9015,6 +9274,12 @@ class DatabaseDbBackupConfigBackupDestinationDetail(dict):
|
|
9015
9274
|
suggest = None
|
9016
9275
|
if key == "dbrsPolicyId":
|
9017
9276
|
suggest = "dbrs_policy_id"
|
9277
|
+
elif key == "isRemote":
|
9278
|
+
suggest = "is_remote"
|
9279
|
+
elif key == "remoteRegion":
|
9280
|
+
suggest = "remote_region"
|
9281
|
+
elif key == "vpcPassword":
|
9282
|
+
suggest = "vpc_password"
|
9018
9283
|
elif key == "vpcUser":
|
9019
9284
|
suggest = "vpc_user"
|
9020
9285
|
|
@@ -9032,19 +9297,32 @@ class DatabaseDbBackupConfigBackupDestinationDetail(dict):
|
|
9032
9297
|
def __init__(__self__, *,
|
9033
9298
|
dbrs_policy_id: Optional[builtins.str] = None,
|
9034
9299
|
id: Optional[builtins.str] = None,
|
9300
|
+
is_remote: Optional[builtins.bool] = None,
|
9301
|
+
remote_region: Optional[builtins.str] = None,
|
9035
9302
|
type: Optional[builtins.str] = None,
|
9303
|
+
vpc_password: Optional[builtins.str] = None,
|
9036
9304
|
vpc_user: Optional[builtins.str] = None):
|
9037
9305
|
"""
|
9038
9306
|
:param builtins.str dbrs_policy_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
|
9039
9307
|
:param builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database.
|
9308
|
+
:param builtins.bool is_remote: Indicates whether the backup destination is cross-region or local region.
|
9309
|
+
:param builtins.str remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
|
9040
9310
|
:param builtins.str type: Type of the database backup destination.
|
9311
|
+
:param builtins.str vpc_password: For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
|
9312
|
+
:param builtins.str vpc_user: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
|
9041
9313
|
"""
|
9042
9314
|
if dbrs_policy_id is not None:
|
9043
9315
|
pulumi.set(__self__, "dbrs_policy_id", dbrs_policy_id)
|
9044
9316
|
if id is not None:
|
9045
9317
|
pulumi.set(__self__, "id", id)
|
9318
|
+
if is_remote is not None:
|
9319
|
+
pulumi.set(__self__, "is_remote", is_remote)
|
9320
|
+
if remote_region is not None:
|
9321
|
+
pulumi.set(__self__, "remote_region", remote_region)
|
9046
9322
|
if type is not None:
|
9047
9323
|
pulumi.set(__self__, "type", type)
|
9324
|
+
if vpc_password is not None:
|
9325
|
+
pulumi.set(__self__, "vpc_password", vpc_password)
|
9048
9326
|
if vpc_user is not None:
|
9049
9327
|
pulumi.set(__self__, "vpc_user", vpc_user)
|
9050
9328
|
|
@@ -9064,6 +9342,22 @@ class DatabaseDbBackupConfigBackupDestinationDetail(dict):
|
|
9064
9342
|
"""
|
9065
9343
|
return pulumi.get(self, "id")
|
9066
9344
|
|
9345
|
+
@property
|
9346
|
+
@pulumi.getter(name="isRemote")
|
9347
|
+
def is_remote(self) -> Optional[builtins.bool]:
|
9348
|
+
"""
|
9349
|
+
Indicates whether the backup destination is cross-region or local region.
|
9350
|
+
"""
|
9351
|
+
return pulumi.get(self, "is_remote")
|
9352
|
+
|
9353
|
+
@property
|
9354
|
+
@pulumi.getter(name="remoteRegion")
|
9355
|
+
def remote_region(self) -> Optional[builtins.str]:
|
9356
|
+
"""
|
9357
|
+
The name of the remote region where the remote automatic incremental backups will be stored.
|
9358
|
+
"""
|
9359
|
+
return pulumi.get(self, "remote_region")
|
9360
|
+
|
9067
9361
|
@property
|
9068
9362
|
@pulumi.getter
|
9069
9363
|
def type(self) -> Optional[builtins.str]:
|
@@ -9072,9 +9366,20 @@ class DatabaseDbBackupConfigBackupDestinationDetail(dict):
|
|
9072
9366
|
"""
|
9073
9367
|
return pulumi.get(self, "type")
|
9074
9368
|
|
9369
|
+
@property
|
9370
|
+
@pulumi.getter(name="vpcPassword")
|
9371
|
+
def vpc_password(self) -> Optional[builtins.str]:
|
9372
|
+
"""
|
9373
|
+
For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
|
9374
|
+
"""
|
9375
|
+
return pulumi.get(self, "vpc_password")
|
9376
|
+
|
9075
9377
|
@property
|
9076
9378
|
@pulumi.getter(name="vpcUser")
|
9077
9379
|
def vpc_user(self) -> Optional[builtins.str]:
|
9380
|
+
"""
|
9381
|
+
For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
|
9382
|
+
"""
|
9078
9383
|
return pulumi.get(self, "vpc_user")
|
9079
9384
|
|
9080
9385
|
|
@@ -9575,6 +9880,10 @@ class DatabaseUpgradeDbBackupConfigBackupDestinationDetail(dict):
|
|
9575
9880
|
suggest = "dbrs_policy_id"
|
9576
9881
|
elif key == "internetProxy":
|
9577
9882
|
suggest = "internet_proxy"
|
9883
|
+
elif key == "isRemote":
|
9884
|
+
suggest = "is_remote"
|
9885
|
+
elif key == "remoteRegion":
|
9886
|
+
suggest = "remote_region"
|
9578
9887
|
elif key == "vpcPassword":
|
9579
9888
|
suggest = "vpc_password"
|
9580
9889
|
elif key == "vpcUser":
|
@@ -9595,6 +9904,8 @@ class DatabaseUpgradeDbBackupConfigBackupDestinationDetail(dict):
|
|
9595
9904
|
dbrs_policy_id: Optional[builtins.str] = None,
|
9596
9905
|
id: Optional[builtins.str] = None,
|
9597
9906
|
internet_proxy: Optional[builtins.str] = None,
|
9907
|
+
is_remote: Optional[builtins.bool] = None,
|
9908
|
+
remote_region: Optional[builtins.str] = None,
|
9598
9909
|
type: Optional[builtins.str] = None,
|
9599
9910
|
vpc_password: Optional[builtins.str] = None,
|
9600
9911
|
vpc_user: Optional[builtins.str] = None):
|
@@ -9602,6 +9913,8 @@ class DatabaseUpgradeDbBackupConfigBackupDestinationDetail(dict):
|
|
9602
9913
|
:param builtins.str dbrs_policy_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
|
9603
9914
|
:param builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database.
|
9604
9915
|
:param builtins.str internet_proxy: Proxy URL to connect to object store.
|
9916
|
+
:param builtins.bool is_remote: Indicates whether the backup destination is cross-region or local region.
|
9917
|
+
:param builtins.str remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
|
9605
9918
|
:param builtins.str type: Type of the database backup destination.
|
9606
9919
|
:param builtins.str vpc_password: For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
|
9607
9920
|
:param builtins.str vpc_user: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
|
@@ -9612,6 +9925,10 @@ class DatabaseUpgradeDbBackupConfigBackupDestinationDetail(dict):
|
|
9612
9925
|
pulumi.set(__self__, "id", id)
|
9613
9926
|
if internet_proxy is not None:
|
9614
9927
|
pulumi.set(__self__, "internet_proxy", internet_proxy)
|
9928
|
+
if is_remote is not None:
|
9929
|
+
pulumi.set(__self__, "is_remote", is_remote)
|
9930
|
+
if remote_region is not None:
|
9931
|
+
pulumi.set(__self__, "remote_region", remote_region)
|
9615
9932
|
if type is not None:
|
9616
9933
|
pulumi.set(__self__, "type", type)
|
9617
9934
|
if vpc_password is not None:
|
@@ -9643,6 +9960,22 @@ class DatabaseUpgradeDbBackupConfigBackupDestinationDetail(dict):
|
|
9643
9960
|
"""
|
9644
9961
|
return pulumi.get(self, "internet_proxy")
|
9645
9962
|
|
9963
|
+
@property
|
9964
|
+
@pulumi.getter(name="isRemote")
|
9965
|
+
def is_remote(self) -> Optional[builtins.bool]:
|
9966
|
+
"""
|
9967
|
+
Indicates whether the backup destination is cross-region or local region.
|
9968
|
+
"""
|
9969
|
+
return pulumi.get(self, "is_remote")
|
9970
|
+
|
9971
|
+
@property
|
9972
|
+
@pulumi.getter(name="remoteRegion")
|
9973
|
+
def remote_region(self) -> Optional[builtins.str]:
|
9974
|
+
"""
|
9975
|
+
The name of the remote region where the remote automatic incremental backups will be stored.
|
9976
|
+
"""
|
9977
|
+
return pulumi.get(self, "remote_region")
|
9978
|
+
|
9646
9979
|
@property
|
9647
9980
|
@pulumi.getter
|
9648
9981
|
def type(self) -> Optional[builtins.str]:
|
@@ -10282,6 +10615,14 @@ class DbHomeDatabaseDbBackupConfigBackupDestinationDetail(dict):
|
|
10282
10615
|
suggest = None
|
10283
10616
|
if key == "dbrsPolicyId":
|
10284
10617
|
suggest = "dbrs_policy_id"
|
10618
|
+
elif key == "isRemote":
|
10619
|
+
suggest = "is_remote"
|
10620
|
+
elif key == "remoteRegion":
|
10621
|
+
suggest = "remote_region"
|
10622
|
+
elif key == "vpcPassword":
|
10623
|
+
suggest = "vpc_password"
|
10624
|
+
elif key == "vpcUser":
|
10625
|
+
suggest = "vpc_user"
|
10285
10626
|
|
10286
10627
|
if suggest:
|
10287
10628
|
pulumi.log.warn(f"Key '{key}' not found in DbHomeDatabaseDbBackupConfigBackupDestinationDetail. Access the value via the '{suggest}' property getter instead.")
|
@@ -10297,18 +10638,34 @@ class DbHomeDatabaseDbBackupConfigBackupDestinationDetail(dict):
|
|
10297
10638
|
def __init__(__self__, *,
|
10298
10639
|
dbrs_policy_id: Optional[builtins.str] = None,
|
10299
10640
|
id: Optional[builtins.str] = None,
|
10300
|
-
|
10641
|
+
is_remote: Optional[builtins.bool] = None,
|
10642
|
+
remote_region: Optional[builtins.str] = None,
|
10643
|
+
type: Optional[builtins.str] = None,
|
10644
|
+
vpc_password: Optional[builtins.str] = None,
|
10645
|
+
vpc_user: Optional[builtins.str] = None):
|
10301
10646
|
"""
|
10302
10647
|
:param builtins.str dbrs_policy_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
|
10303
10648
|
:param builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup destination.
|
10649
|
+
:param builtins.bool is_remote: Indicates whether the backup destination is cross-region or local region.
|
10650
|
+
:param builtins.str remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
|
10651
|
+
|
10652
|
+
For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
|
10304
10653
|
:param builtins.str type: Type of the database backup destination. Supported values: `NFS`.
|
10305
10654
|
"""
|
10306
10655
|
if dbrs_policy_id is not None:
|
10307
10656
|
pulumi.set(__self__, "dbrs_policy_id", dbrs_policy_id)
|
10308
10657
|
if id is not None:
|
10309
10658
|
pulumi.set(__self__, "id", id)
|
10659
|
+
if is_remote is not None:
|
10660
|
+
pulumi.set(__self__, "is_remote", is_remote)
|
10661
|
+
if remote_region is not None:
|
10662
|
+
pulumi.set(__self__, "remote_region", remote_region)
|
10310
10663
|
if type is not None:
|
10311
10664
|
pulumi.set(__self__, "type", type)
|
10665
|
+
if vpc_password is not None:
|
10666
|
+
pulumi.set(__self__, "vpc_password", vpc_password)
|
10667
|
+
if vpc_user is not None:
|
10668
|
+
pulumi.set(__self__, "vpc_user", vpc_user)
|
10312
10669
|
|
10313
10670
|
@property
|
10314
10671
|
@pulumi.getter(name="dbrsPolicyId")
|
@@ -10326,6 +10683,24 @@ class DbHomeDatabaseDbBackupConfigBackupDestinationDetail(dict):
|
|
10326
10683
|
"""
|
10327
10684
|
return pulumi.get(self, "id")
|
10328
10685
|
|
10686
|
+
@property
|
10687
|
+
@pulumi.getter(name="isRemote")
|
10688
|
+
def is_remote(self) -> Optional[builtins.bool]:
|
10689
|
+
"""
|
10690
|
+
Indicates whether the backup destination is cross-region or local region.
|
10691
|
+
"""
|
10692
|
+
return pulumi.get(self, "is_remote")
|
10693
|
+
|
10694
|
+
@property
|
10695
|
+
@pulumi.getter(name="remoteRegion")
|
10696
|
+
def remote_region(self) -> Optional[builtins.str]:
|
10697
|
+
"""
|
10698
|
+
The name of the remote region where the remote automatic incremental backups will be stored.
|
10699
|
+
|
10700
|
+
For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
|
10701
|
+
"""
|
10702
|
+
return pulumi.get(self, "remote_region")
|
10703
|
+
|
10329
10704
|
@property
|
10330
10705
|
@pulumi.getter
|
10331
10706
|
def type(self) -> Optional[builtins.str]:
|
@@ -10334,16 +10709,28 @@ class DbHomeDatabaseDbBackupConfigBackupDestinationDetail(dict):
|
|
10334
10709
|
"""
|
10335
10710
|
return pulumi.get(self, "type")
|
10336
10711
|
|
10712
|
+
@property
|
10713
|
+
@pulumi.getter(name="vpcPassword")
|
10714
|
+
def vpc_password(self) -> Optional[builtins.str]:
|
10715
|
+
return pulumi.get(self, "vpc_password")
|
10716
|
+
|
10717
|
+
@property
|
10718
|
+
@pulumi.getter(name="vpcUser")
|
10719
|
+
def vpc_user(self) -> Optional[builtins.str]:
|
10720
|
+
return pulumi.get(self, "vpc_user")
|
10721
|
+
|
10337
10722
|
|
10338
10723
|
@pulumi.output_type
|
10339
10724
|
class DbHomeDatabaseEncryptionKeyLocationDetails(dict):
|
10340
10725
|
@staticmethod
|
10341
10726
|
def __key_warning(key: str):
|
10342
10727
|
suggest = None
|
10343
|
-
if key == "
|
10344
|
-
suggest = "hsm_password"
|
10345
|
-
elif key == "providerType":
|
10728
|
+
if key == "providerType":
|
10346
10729
|
suggest = "provider_type"
|
10730
|
+
elif key == "azureEncryptionKeyId":
|
10731
|
+
suggest = "azure_encryption_key_id"
|
10732
|
+
elif key == "hsmPassword":
|
10733
|
+
suggest = "hsm_password"
|
10347
10734
|
|
10348
10735
|
if suggest:
|
10349
10736
|
pulumi.log.warn(f"Key '{key}' not found in DbHomeDatabaseEncryptionKeyLocationDetails. Access the value via the '{suggest}' property getter instead.")
|
@@ -10357,30 +10744,43 @@ class DbHomeDatabaseEncryptionKeyLocationDetails(dict):
|
|
10357
10744
|
return super().get(key, default)
|
10358
10745
|
|
10359
10746
|
def __init__(__self__, *,
|
10360
|
-
|
10361
|
-
|
10747
|
+
provider_type: builtins.str,
|
10748
|
+
azure_encryption_key_id: Optional[builtins.str] = None,
|
10749
|
+
hsm_password: Optional[builtins.str] = None):
|
10362
10750
|
"""
|
10751
|
+
:param builtins.str provider_type: Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
|
10752
|
+
:param builtins.str azure_encryption_key_id: Provide the key OCID of a registered Azure key.
|
10363
10753
|
:param builtins.str hsm_password: Provide the HSM password as you would in RDBMS for External HSM.
|
10364
|
-
:param builtins.str provider_type: Use 'EXTERNAL' for creating a new database or migrate database key with External HSM.
|
10365
10754
|
"""
|
10366
|
-
pulumi.set(__self__, "hsm_password", hsm_password)
|
10367
10755
|
pulumi.set(__self__, "provider_type", provider_type)
|
10756
|
+
if azure_encryption_key_id is not None:
|
10757
|
+
pulumi.set(__self__, "azure_encryption_key_id", azure_encryption_key_id)
|
10758
|
+
if hsm_password is not None:
|
10759
|
+
pulumi.set(__self__, "hsm_password", hsm_password)
|
10368
10760
|
|
10369
10761
|
@property
|
10370
|
-
@pulumi.getter(name="
|
10371
|
-
def
|
10762
|
+
@pulumi.getter(name="providerType")
|
10763
|
+
def provider_type(self) -> builtins.str:
|
10372
10764
|
"""
|
10373
|
-
|
10765
|
+
Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
|
10374
10766
|
"""
|
10375
|
-
return pulumi.get(self, "
|
10767
|
+
return pulumi.get(self, "provider_type")
|
10376
10768
|
|
10377
10769
|
@property
|
10378
|
-
@pulumi.getter(name="
|
10379
|
-
def
|
10770
|
+
@pulumi.getter(name="azureEncryptionKeyId")
|
10771
|
+
def azure_encryption_key_id(self) -> Optional[builtins.str]:
|
10380
10772
|
"""
|
10381
|
-
|
10773
|
+
Provide the key OCID of a registered Azure key.
|
10382
10774
|
"""
|
10383
|
-
return pulumi.get(self, "
|
10775
|
+
return pulumi.get(self, "azure_encryption_key_id")
|
10776
|
+
|
10777
|
+
@property
|
10778
|
+
@pulumi.getter(name="hsmPassword")
|
10779
|
+
def hsm_password(self) -> Optional[builtins.str]:
|
10780
|
+
"""
|
10781
|
+
Provide the HSM password as you would in RDBMS for External HSM.
|
10782
|
+
"""
|
10783
|
+
return pulumi.get(self, "hsm_password")
|
10384
10784
|
|
10385
10785
|
|
10386
10786
|
@pulumi.output_type
|
@@ -11234,6 +11634,10 @@ class DbSystemDbHomeDatabaseDbBackupConfigBackupDestinationDetail(dict):
|
|
11234
11634
|
suggest = None
|
11235
11635
|
if key == "dbrsPolicyId":
|
11236
11636
|
suggest = "dbrs_policy_id"
|
11637
|
+
elif key == "isRemote":
|
11638
|
+
suggest = "is_remote"
|
11639
|
+
elif key == "remoteRegion":
|
11640
|
+
suggest = "remote_region"
|
11237
11641
|
|
11238
11642
|
if suggest:
|
11239
11643
|
pulumi.log.warn(f"Key '{key}' not found in DbSystemDbHomeDatabaseDbBackupConfigBackupDestinationDetail. Access the value via the '{suggest}' property getter instead.")
|
@@ -11249,16 +11653,26 @@ class DbSystemDbHomeDatabaseDbBackupConfigBackupDestinationDetail(dict):
|
|
11249
11653
|
def __init__(__self__, *,
|
11250
11654
|
dbrs_policy_id: Optional[builtins.str] = None,
|
11251
11655
|
id: Optional[builtins.str] = None,
|
11656
|
+
is_remote: Optional[builtins.bool] = None,
|
11657
|
+
remote_region: Optional[builtins.str] = None,
|
11252
11658
|
type: Optional[builtins.str] = None):
|
11253
11659
|
"""
|
11254
11660
|
:param builtins.str dbrs_policy_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
|
11255
11661
|
:param builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup destination.
|
11662
|
+
:param builtins.bool is_remote: Indicates whether the backup destination is cross-region or local region.
|
11663
|
+
:param builtins.str remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
|
11664
|
+
|
11665
|
+
For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
|
11256
11666
|
:param builtins.str type: Type of the database backup destination.
|
11257
11667
|
"""
|
11258
11668
|
if dbrs_policy_id is not None:
|
11259
11669
|
pulumi.set(__self__, "dbrs_policy_id", dbrs_policy_id)
|
11260
11670
|
if id is not None:
|
11261
11671
|
pulumi.set(__self__, "id", id)
|
11672
|
+
if is_remote is not None:
|
11673
|
+
pulumi.set(__self__, "is_remote", is_remote)
|
11674
|
+
if remote_region is not None:
|
11675
|
+
pulumi.set(__self__, "remote_region", remote_region)
|
11262
11676
|
if type is not None:
|
11263
11677
|
pulumi.set(__self__, "type", type)
|
11264
11678
|
|
@@ -11278,6 +11692,24 @@ class DbSystemDbHomeDatabaseDbBackupConfigBackupDestinationDetail(dict):
|
|
11278
11692
|
"""
|
11279
11693
|
return pulumi.get(self, "id")
|
11280
11694
|
|
11695
|
+
@property
|
11696
|
+
@pulumi.getter(name="isRemote")
|
11697
|
+
def is_remote(self) -> Optional[builtins.bool]:
|
11698
|
+
"""
|
11699
|
+
Indicates whether the backup destination is cross-region or local region.
|
11700
|
+
"""
|
11701
|
+
return pulumi.get(self, "is_remote")
|
11702
|
+
|
11703
|
+
@property
|
11704
|
+
@pulumi.getter(name="remoteRegion")
|
11705
|
+
def remote_region(self) -> Optional[builtins.str]:
|
11706
|
+
"""
|
11707
|
+
The name of the remote region where the remote automatic incremental backups will be stored.
|
11708
|
+
|
11709
|
+
For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
|
11710
|
+
"""
|
11711
|
+
return pulumi.get(self, "remote_region")
|
11712
|
+
|
11281
11713
|
@property
|
11282
11714
|
@pulumi.getter
|
11283
11715
|
def type(self) -> Optional[builtins.str]:
|
@@ -17823,18 +18255,24 @@ class GetAutonomousContainerDatabaseBackupConfigBackupDestinationDetailResult(di
|
|
17823
18255
|
def __init__(__self__, *,
|
17824
18256
|
id: builtins.str,
|
17825
18257
|
internet_proxy: builtins.str,
|
18258
|
+
is_remote: builtins.bool,
|
18259
|
+
remote_region: builtins.str,
|
17826
18260
|
type: builtins.str,
|
17827
18261
|
vpc_password: builtins.str,
|
17828
18262
|
vpc_user: builtins.str):
|
17829
18263
|
"""
|
17830
18264
|
:param builtins.str id: The id of the Autonomous Database [Vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts) service key management history entry.
|
17831
18265
|
:param builtins.str internet_proxy: Proxy URL to connect to object store.
|
18266
|
+
:param builtins.bool is_remote: Indicates whether the backup destination is cross-region or local region.
|
18267
|
+
:param builtins.str remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
|
17832
18268
|
:param builtins.str type: Type of the database backup destination.
|
17833
18269
|
:param builtins.str vpc_password: For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
|
17834
18270
|
:param builtins.str vpc_user: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
|
17835
18271
|
"""
|
17836
18272
|
pulumi.set(__self__, "id", id)
|
17837
18273
|
pulumi.set(__self__, "internet_proxy", internet_proxy)
|
18274
|
+
pulumi.set(__self__, "is_remote", is_remote)
|
18275
|
+
pulumi.set(__self__, "remote_region", remote_region)
|
17838
18276
|
pulumi.set(__self__, "type", type)
|
17839
18277
|
pulumi.set(__self__, "vpc_password", vpc_password)
|
17840
18278
|
pulumi.set(__self__, "vpc_user", vpc_user)
|
@@ -17855,6 +18293,22 @@ class GetAutonomousContainerDatabaseBackupConfigBackupDestinationDetailResult(di
|
|
17855
18293
|
"""
|
17856
18294
|
return pulumi.get(self, "internet_proxy")
|
17857
18295
|
|
18296
|
+
@property
|
18297
|
+
@pulumi.getter(name="isRemote")
|
18298
|
+
def is_remote(self) -> builtins.bool:
|
18299
|
+
"""
|
18300
|
+
Indicates whether the backup destination is cross-region or local region.
|
18301
|
+
"""
|
18302
|
+
return pulumi.get(self, "is_remote")
|
18303
|
+
|
18304
|
+
@property
|
18305
|
+
@pulumi.getter(name="remoteRegion")
|
18306
|
+
def remote_region(self) -> builtins.str:
|
18307
|
+
"""
|
18308
|
+
The name of the remote region where the remote automatic incremental backups will be stored.
|
18309
|
+
"""
|
18310
|
+
return pulumi.get(self, "remote_region")
|
18311
|
+
|
17858
18312
|
@property
|
17859
18313
|
@pulumi.getter
|
17860
18314
|
def type(self) -> builtins.str:
|
@@ -17920,6 +18374,285 @@ class GetAutonomousContainerDatabaseBackupDestinationPropertiesListResult(dict):
|
|
17920
18374
|
return pulumi.get(self, "time_at_which_storage_details_are_updated")
|
17921
18375
|
|
17922
18376
|
|
18377
|
+
@pulumi.output_type
|
18378
|
+
class GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollectionResult(dict):
|
18379
|
+
def __init__(__self__, *,
|
18380
|
+
items: Sequence['outputs.GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollectionItemResult']):
|
18381
|
+
"""
|
18382
|
+
:param Sequence['GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollectionItemArgs'] items: List of Autonomous container database backups.
|
18383
|
+
"""
|
18384
|
+
pulumi.set(__self__, "items", items)
|
18385
|
+
|
18386
|
+
@property
|
18387
|
+
@pulumi.getter
|
18388
|
+
def items(self) -> Sequence['outputs.GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollectionItemResult']:
|
18389
|
+
"""
|
18390
|
+
List of Autonomous container database backups.
|
18391
|
+
"""
|
18392
|
+
return pulumi.get(self, "items")
|
18393
|
+
|
18394
|
+
|
18395
|
+
@pulumi.output_type
|
18396
|
+
class GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollectionItemResult(dict):
|
18397
|
+
def __init__(__self__, *,
|
18398
|
+
acd_display_name: builtins.str,
|
18399
|
+
autonomous_container_database_id: builtins.str,
|
18400
|
+
autonomous_databases: Sequence['outputs.GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollectionItemAutonomousDatabaseResult'],
|
18401
|
+
compartment_id: builtins.str,
|
18402
|
+
defined_tags: Mapping[str, builtins.str],
|
18403
|
+
display_name: builtins.str,
|
18404
|
+
freeform_tags: Mapping[str, builtins.str],
|
18405
|
+
id: builtins.str,
|
18406
|
+
infrastructure_type: builtins.str,
|
18407
|
+
is_automatic: builtins.bool,
|
18408
|
+
is_remote_backup: builtins.bool,
|
18409
|
+
lifecycle_details: builtins.str,
|
18410
|
+
retention_period_in_days: builtins.int,
|
18411
|
+
state: builtins.str,
|
18412
|
+
system_tags: Mapping[str, builtins.str],
|
18413
|
+
time_ended: builtins.str,
|
18414
|
+
time_started: builtins.str,
|
18415
|
+
type: builtins.str):
|
18416
|
+
"""
|
18417
|
+
:param builtins.str acd_display_name: The user-friendly name for the Autonomous Container Database when the Backup was initiated. This name need not be unique. This field captures the name at the time of backup creation, accounting for possible later updates to the display name.
|
18418
|
+
:param builtins.str autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
18419
|
+
:param Sequence['GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollectionItemAutonomousDatabaseArgs'] autonomous_databases: List of Autonomous Databases that is part of this Autonomous Container Database Backup
|
18420
|
+
:param builtins.str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
18421
|
+
:param Mapping[str, builtins.str] defined_tags: 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).
|
18422
|
+
:param builtins.str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
18423
|
+
:param Mapping[str, builtins.str] freeform_tags: 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"}`
|
18424
|
+
:param builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Autonomous Database backup.
|
18425
|
+
:param builtins.str infrastructure_type: A filter to return only resources that match the given Infrastructure Type.
|
18426
|
+
:param builtins.bool is_automatic: Indicates whether the backup is user-initiated or automatic.
|
18427
|
+
:param builtins.bool is_remote_backup: Whether backup is for remote-region or local region
|
18428
|
+
:param builtins.str lifecycle_details: Additional information about the current lifecycle state.
|
18429
|
+
:param builtins.int retention_period_in_days: Retention period, in days, for long-term backups
|
18430
|
+
:param builtins.str state: A filter to return only resources that match the given lifecycle state exactly.
|
18431
|
+
:param Mapping[str, builtins.str] system_tags: System 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).
|
18432
|
+
:param builtins.str time_ended: The date and time the backup completed.
|
18433
|
+
:param builtins.str time_started: The date and time the backup started.
|
18434
|
+
:param builtins.str type: The type of backup.
|
18435
|
+
"""
|
18436
|
+
pulumi.set(__self__, "acd_display_name", acd_display_name)
|
18437
|
+
pulumi.set(__self__, "autonomous_container_database_id", autonomous_container_database_id)
|
18438
|
+
pulumi.set(__self__, "autonomous_databases", autonomous_databases)
|
18439
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
18440
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
18441
|
+
pulumi.set(__self__, "display_name", display_name)
|
18442
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
18443
|
+
pulumi.set(__self__, "id", id)
|
18444
|
+
pulumi.set(__self__, "infrastructure_type", infrastructure_type)
|
18445
|
+
pulumi.set(__self__, "is_automatic", is_automatic)
|
18446
|
+
pulumi.set(__self__, "is_remote_backup", is_remote_backup)
|
18447
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
18448
|
+
pulumi.set(__self__, "retention_period_in_days", retention_period_in_days)
|
18449
|
+
pulumi.set(__self__, "state", state)
|
18450
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
18451
|
+
pulumi.set(__self__, "time_ended", time_ended)
|
18452
|
+
pulumi.set(__self__, "time_started", time_started)
|
18453
|
+
pulumi.set(__self__, "type", type)
|
18454
|
+
|
18455
|
+
@property
|
18456
|
+
@pulumi.getter(name="acdDisplayName")
|
18457
|
+
def acd_display_name(self) -> builtins.str:
|
18458
|
+
"""
|
18459
|
+
The user-friendly name for the Autonomous Container Database when the Backup was initiated. This name need not be unique. This field captures the name at the time of backup creation, accounting for possible later updates to the display name.
|
18460
|
+
"""
|
18461
|
+
return pulumi.get(self, "acd_display_name")
|
18462
|
+
|
18463
|
+
@property
|
18464
|
+
@pulumi.getter(name="autonomousContainerDatabaseId")
|
18465
|
+
def autonomous_container_database_id(self) -> builtins.str:
|
18466
|
+
"""
|
18467
|
+
The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
18468
|
+
"""
|
18469
|
+
return pulumi.get(self, "autonomous_container_database_id")
|
18470
|
+
|
18471
|
+
@property
|
18472
|
+
@pulumi.getter(name="autonomousDatabases")
|
18473
|
+
def autonomous_databases(self) -> Sequence['outputs.GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollectionItemAutonomousDatabaseResult']:
|
18474
|
+
"""
|
18475
|
+
List of Autonomous Databases that is part of this Autonomous Container Database Backup
|
18476
|
+
"""
|
18477
|
+
return pulumi.get(self, "autonomous_databases")
|
18478
|
+
|
18479
|
+
@property
|
18480
|
+
@pulumi.getter(name="compartmentId")
|
18481
|
+
def compartment_id(self) -> builtins.str:
|
18482
|
+
"""
|
18483
|
+
The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
18484
|
+
"""
|
18485
|
+
return pulumi.get(self, "compartment_id")
|
18486
|
+
|
18487
|
+
@property
|
18488
|
+
@pulumi.getter(name="definedTags")
|
18489
|
+
def defined_tags(self) -> Mapping[str, builtins.str]:
|
18490
|
+
"""
|
18491
|
+
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).
|
18492
|
+
"""
|
18493
|
+
return pulumi.get(self, "defined_tags")
|
18494
|
+
|
18495
|
+
@property
|
18496
|
+
@pulumi.getter(name="displayName")
|
18497
|
+
def display_name(self) -> builtins.str:
|
18498
|
+
"""
|
18499
|
+
A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
18500
|
+
"""
|
18501
|
+
return pulumi.get(self, "display_name")
|
18502
|
+
|
18503
|
+
@property
|
18504
|
+
@pulumi.getter(name="freeformTags")
|
18505
|
+
def freeform_tags(self) -> Mapping[str, builtins.str]:
|
18506
|
+
"""
|
18507
|
+
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"}`
|
18508
|
+
"""
|
18509
|
+
return pulumi.get(self, "freeform_tags")
|
18510
|
+
|
18511
|
+
@property
|
18512
|
+
@pulumi.getter
|
18513
|
+
def id(self) -> builtins.str:
|
18514
|
+
"""
|
18515
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Autonomous Database backup.
|
18516
|
+
"""
|
18517
|
+
return pulumi.get(self, "id")
|
18518
|
+
|
18519
|
+
@property
|
18520
|
+
@pulumi.getter(name="infrastructureType")
|
18521
|
+
def infrastructure_type(self) -> builtins.str:
|
18522
|
+
"""
|
18523
|
+
A filter to return only resources that match the given Infrastructure Type.
|
18524
|
+
"""
|
18525
|
+
return pulumi.get(self, "infrastructure_type")
|
18526
|
+
|
18527
|
+
@property
|
18528
|
+
@pulumi.getter(name="isAutomatic")
|
18529
|
+
def is_automatic(self) -> builtins.bool:
|
18530
|
+
"""
|
18531
|
+
Indicates whether the backup is user-initiated or automatic.
|
18532
|
+
"""
|
18533
|
+
return pulumi.get(self, "is_automatic")
|
18534
|
+
|
18535
|
+
@property
|
18536
|
+
@pulumi.getter(name="isRemoteBackup")
|
18537
|
+
def is_remote_backup(self) -> builtins.bool:
|
18538
|
+
"""
|
18539
|
+
Whether backup is for remote-region or local region
|
18540
|
+
"""
|
18541
|
+
return pulumi.get(self, "is_remote_backup")
|
18542
|
+
|
18543
|
+
@property
|
18544
|
+
@pulumi.getter(name="lifecycleDetails")
|
18545
|
+
def lifecycle_details(self) -> builtins.str:
|
18546
|
+
"""
|
18547
|
+
Additional information about the current lifecycle state.
|
18548
|
+
"""
|
18549
|
+
return pulumi.get(self, "lifecycle_details")
|
18550
|
+
|
18551
|
+
@property
|
18552
|
+
@pulumi.getter(name="retentionPeriodInDays")
|
18553
|
+
def retention_period_in_days(self) -> builtins.int:
|
18554
|
+
"""
|
18555
|
+
Retention period, in days, for long-term backups
|
18556
|
+
"""
|
18557
|
+
return pulumi.get(self, "retention_period_in_days")
|
18558
|
+
|
18559
|
+
@property
|
18560
|
+
@pulumi.getter
|
18561
|
+
def state(self) -> builtins.str:
|
18562
|
+
"""
|
18563
|
+
A filter to return only resources that match the given lifecycle state exactly.
|
18564
|
+
"""
|
18565
|
+
return pulumi.get(self, "state")
|
18566
|
+
|
18567
|
+
@property
|
18568
|
+
@pulumi.getter(name="systemTags")
|
18569
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
18570
|
+
"""
|
18571
|
+
System 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).
|
18572
|
+
"""
|
18573
|
+
return pulumi.get(self, "system_tags")
|
18574
|
+
|
18575
|
+
@property
|
18576
|
+
@pulumi.getter(name="timeEnded")
|
18577
|
+
def time_ended(self) -> builtins.str:
|
18578
|
+
"""
|
18579
|
+
The date and time the backup completed.
|
18580
|
+
"""
|
18581
|
+
return pulumi.get(self, "time_ended")
|
18582
|
+
|
18583
|
+
@property
|
18584
|
+
@pulumi.getter(name="timeStarted")
|
18585
|
+
def time_started(self) -> builtins.str:
|
18586
|
+
"""
|
18587
|
+
The date and time the backup started.
|
18588
|
+
"""
|
18589
|
+
return pulumi.get(self, "time_started")
|
18590
|
+
|
18591
|
+
@property
|
18592
|
+
@pulumi.getter
|
18593
|
+
def type(self) -> builtins.str:
|
18594
|
+
"""
|
18595
|
+
The type of backup.
|
18596
|
+
"""
|
18597
|
+
return pulumi.get(self, "type")
|
18598
|
+
|
18599
|
+
|
18600
|
+
@pulumi.output_type
|
18601
|
+
class GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollectionItemAutonomousDatabaseResult(dict):
|
18602
|
+
def __init__(__self__, *,
|
18603
|
+
compartment_id: builtins.str,
|
18604
|
+
display_name: builtins.str):
|
18605
|
+
"""
|
18606
|
+
:param builtins.str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
18607
|
+
:param builtins.str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
18608
|
+
"""
|
18609
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
18610
|
+
pulumi.set(__self__, "display_name", display_name)
|
18611
|
+
|
18612
|
+
@property
|
18613
|
+
@pulumi.getter(name="compartmentId")
|
18614
|
+
def compartment_id(self) -> builtins.str:
|
18615
|
+
"""
|
18616
|
+
The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
18617
|
+
"""
|
18618
|
+
return pulumi.get(self, "compartment_id")
|
18619
|
+
|
18620
|
+
@property
|
18621
|
+
@pulumi.getter(name="displayName")
|
18622
|
+
def display_name(self) -> builtins.str:
|
18623
|
+
"""
|
18624
|
+
A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
18625
|
+
"""
|
18626
|
+
return pulumi.get(self, "display_name")
|
18627
|
+
|
18628
|
+
|
18629
|
+
@pulumi.output_type
|
18630
|
+
class GetAutonomousContainerDatabaseBackupsFilterResult(dict):
|
18631
|
+
def __init__(__self__, *,
|
18632
|
+
name: builtins.str,
|
18633
|
+
values: Sequence[builtins.str],
|
18634
|
+
regex: Optional[builtins.bool] = None):
|
18635
|
+
pulumi.set(__self__, "name", name)
|
18636
|
+
pulumi.set(__self__, "values", values)
|
18637
|
+
if regex is not None:
|
18638
|
+
pulumi.set(__self__, "regex", regex)
|
18639
|
+
|
18640
|
+
@property
|
18641
|
+
@pulumi.getter
|
18642
|
+
def name(self) -> builtins.str:
|
18643
|
+
return pulumi.get(self, "name")
|
18644
|
+
|
18645
|
+
@property
|
18646
|
+
@pulumi.getter
|
18647
|
+
def values(self) -> Sequence[builtins.str]:
|
18648
|
+
return pulumi.get(self, "values")
|
18649
|
+
|
18650
|
+
@property
|
18651
|
+
@pulumi.getter
|
18652
|
+
def regex(self) -> Optional[builtins.bool]:
|
18653
|
+
return pulumi.get(self, "regex")
|
18654
|
+
|
18655
|
+
|
17923
18656
|
@pulumi.output_type
|
17924
18657
|
class GetAutonomousContainerDatabaseDataguardResult(dict):
|
17925
18658
|
def __init__(__self__, *,
|
@@ -18139,6 +18872,8 @@ class GetAutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerD
|
|
18139
18872
|
dbrs_policy_id: builtins.str,
|
18140
18873
|
id: builtins.str,
|
18141
18874
|
internet_proxy: builtins.str,
|
18875
|
+
is_remote: builtins.bool,
|
18876
|
+
remote_region: builtins.str,
|
18142
18877
|
type: builtins.str,
|
18143
18878
|
vpc_password: builtins.str,
|
18144
18879
|
vpc_user: builtins.str):
|
@@ -18148,6 +18883,8 @@ class GetAutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerD
|
|
18148
18883
|
pulumi.set(__self__, "dbrs_policy_id", dbrs_policy_id)
|
18149
18884
|
pulumi.set(__self__, "id", id)
|
18150
18885
|
pulumi.set(__self__, "internet_proxy", internet_proxy)
|
18886
|
+
pulumi.set(__self__, "is_remote", is_remote)
|
18887
|
+
pulumi.set(__self__, "remote_region", remote_region)
|
18151
18888
|
pulumi.set(__self__, "type", type)
|
18152
18889
|
pulumi.set(__self__, "vpc_password", vpc_password)
|
18153
18890
|
pulumi.set(__self__, "vpc_user", vpc_user)
|
@@ -18170,6 +18907,16 @@ class GetAutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerD
|
|
18170
18907
|
def internet_proxy(self) -> builtins.str:
|
18171
18908
|
return pulumi.get(self, "internet_proxy")
|
18172
18909
|
|
18910
|
+
@property
|
18911
|
+
@pulumi.getter(name="isRemote")
|
18912
|
+
def is_remote(self) -> builtins.bool:
|
18913
|
+
return pulumi.get(self, "is_remote")
|
18914
|
+
|
18915
|
+
@property
|
18916
|
+
@pulumi.getter(name="remoteRegion")
|
18917
|
+
def remote_region(self) -> builtins.str:
|
18918
|
+
return pulumi.get(self, "remote_region")
|
18919
|
+
|
18173
18920
|
@property
|
18174
18921
|
@pulumi.getter
|
18175
18922
|
def type(self) -> builtins.str:
|
@@ -18479,6 +19226,8 @@ class GetAutonomousContainerDatabaseDataguardAssociationsAutonomousContainerData
|
|
18479
19226
|
dbrs_policy_id: builtins.str,
|
18480
19227
|
id: builtins.str,
|
18481
19228
|
internet_proxy: builtins.str,
|
19229
|
+
is_remote: builtins.bool,
|
19230
|
+
remote_region: builtins.str,
|
18482
19231
|
type: builtins.str,
|
18483
19232
|
vpc_password: builtins.str,
|
18484
19233
|
vpc_user: builtins.str):
|
@@ -18488,6 +19237,8 @@ class GetAutonomousContainerDatabaseDataguardAssociationsAutonomousContainerData
|
|
18488
19237
|
pulumi.set(__self__, "dbrs_policy_id", dbrs_policy_id)
|
18489
19238
|
pulumi.set(__self__, "id", id)
|
18490
19239
|
pulumi.set(__self__, "internet_proxy", internet_proxy)
|
19240
|
+
pulumi.set(__self__, "is_remote", is_remote)
|
19241
|
+
pulumi.set(__self__, "remote_region", remote_region)
|
18491
19242
|
pulumi.set(__self__, "type", type)
|
18492
19243
|
pulumi.set(__self__, "vpc_password", vpc_password)
|
18493
19244
|
pulumi.set(__self__, "vpc_user", vpc_user)
|
@@ -18510,6 +19261,16 @@ class GetAutonomousContainerDatabaseDataguardAssociationsAutonomousContainerData
|
|
18510
19261
|
def internet_proxy(self) -> builtins.str:
|
18511
19262
|
return pulumi.get(self, "internet_proxy")
|
18512
19263
|
|
19264
|
+
@property
|
19265
|
+
@pulumi.getter(name="isRemote")
|
19266
|
+
def is_remote(self) -> builtins.bool:
|
19267
|
+
return pulumi.get(self, "is_remote")
|
19268
|
+
|
19269
|
+
@property
|
19270
|
+
@pulumi.getter(name="remoteRegion")
|
19271
|
+
def remote_region(self) -> builtins.str:
|
19272
|
+
return pulumi.get(self, "remote_region")
|
19273
|
+
|
18513
19274
|
@property
|
18514
19275
|
@pulumi.getter
|
18515
19276
|
def type(self) -> builtins.str:
|
@@ -19164,18 +19925,24 @@ class GetAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigB
|
|
19164
19925
|
def __init__(__self__, *,
|
19165
19926
|
id: builtins.str,
|
19166
19927
|
internet_proxy: builtins.str,
|
19928
|
+
is_remote: builtins.bool,
|
19929
|
+
remote_region: builtins.str,
|
19167
19930
|
type: builtins.str,
|
19168
19931
|
vpc_password: builtins.str,
|
19169
19932
|
vpc_user: builtins.str):
|
19170
19933
|
"""
|
19171
19934
|
:param builtins.str id: The id of the Autonomous Database [Vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts) service key management history entry.
|
19172
19935
|
:param builtins.str internet_proxy: Proxy URL to connect to object store.
|
19936
|
+
:param builtins.bool is_remote: Indicates whether the backup destination is cross-region or local region.
|
19937
|
+
:param builtins.str remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
|
19173
19938
|
:param builtins.str type: Type of the database backup destination.
|
19174
19939
|
:param builtins.str vpc_password: For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
|
19175
19940
|
:param builtins.str vpc_user: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
|
19176
19941
|
"""
|
19177
19942
|
pulumi.set(__self__, "id", id)
|
19178
19943
|
pulumi.set(__self__, "internet_proxy", internet_proxy)
|
19944
|
+
pulumi.set(__self__, "is_remote", is_remote)
|
19945
|
+
pulumi.set(__self__, "remote_region", remote_region)
|
19179
19946
|
pulumi.set(__self__, "type", type)
|
19180
19947
|
pulumi.set(__self__, "vpc_password", vpc_password)
|
19181
19948
|
pulumi.set(__self__, "vpc_user", vpc_user)
|
@@ -19196,6 +19963,22 @@ class GetAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigB
|
|
19196
19963
|
"""
|
19197
19964
|
return pulumi.get(self, "internet_proxy")
|
19198
19965
|
|
19966
|
+
@property
|
19967
|
+
@pulumi.getter(name="isRemote")
|
19968
|
+
def is_remote(self) -> builtins.bool:
|
19969
|
+
"""
|
19970
|
+
Indicates whether the backup destination is cross-region or local region.
|
19971
|
+
"""
|
19972
|
+
return pulumi.get(self, "is_remote")
|
19973
|
+
|
19974
|
+
@property
|
19975
|
+
@pulumi.getter(name="remoteRegion")
|
19976
|
+
def remote_region(self) -> builtins.str:
|
19977
|
+
"""
|
19978
|
+
The name of the remote region where the remote automatic incremental backups will be stored.
|
19979
|
+
"""
|
19980
|
+
return pulumi.get(self, "remote_region")
|
19981
|
+
|
19199
19982
|
@property
|
19200
19983
|
@pulumi.getter
|
19201
19984
|
def type(self) -> builtins.str:
|
@@ -19456,6 +20239,7 @@ class GetAutonomousContainerDatabaseVersionsFilterResult(dict):
|
|
19456
20239
|
class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
19457
20240
|
def __init__(__self__, *,
|
19458
20241
|
associated_backup_configuration_details: Sequence['outputs.GetAutonomousContainerDatabasesAutonomousContainerDatabaseAssociatedBackupConfigurationDetailResult'],
|
20242
|
+
autonomous_container_database_backup_id: builtins.str,
|
19459
20243
|
autonomous_exadata_infrastructure_id: builtins.str,
|
19460
20244
|
autonomous_vm_cluster_id: builtins.str,
|
19461
20245
|
availability_domain: builtins.str,
|
@@ -19490,6 +20274,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
19490
20274
|
key_store_wallet_name: builtins.str,
|
19491
20275
|
key_version_id: builtins.str,
|
19492
20276
|
kms_key_id: builtins.str,
|
20277
|
+
kms_key_version_id: builtins.str,
|
19493
20278
|
largest_provisionable_autonomous_database_in_cpus: builtins.float,
|
19494
20279
|
last_maintenance_run_id: builtins.str,
|
19495
20280
|
lifecycle_details: builtins.str,
|
@@ -19518,9 +20303,11 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
19518
20303
|
role: builtins.str,
|
19519
20304
|
rotate_key_trigger: builtins.bool,
|
19520
20305
|
service_level_agreement_type: builtins.str,
|
20306
|
+
source: builtins.str,
|
19521
20307
|
standby_maintenance_buffer_in_days: builtins.int,
|
19522
20308
|
state: builtins.str,
|
19523
20309
|
switchover_trigger: builtins.int,
|
20310
|
+
system_tags: Mapping[str, builtins.str],
|
19524
20311
|
time_created: builtins.str,
|
19525
20312
|
time_of_last_backup: builtins.str,
|
19526
20313
|
time_snapshot_standby_revert: builtins.str,
|
@@ -19555,11 +20342,12 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
19555
20342
|
:param builtins.bool is_automatic_failover_enabled: Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association
|
19556
20343
|
:param builtins.bool is_data_guard_enabled: **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.
|
19557
20344
|
:param builtins.bool is_dst_file_update_enabled: Indicates if an automatic DST Time Zone file update is enabled for the Autonomous Container Database. If enabled along with Release Update, patching will be done in a Non-Rolling manner.
|
19558
|
-
:param builtins.bool is_multiple_standby:
|
20345
|
+
:param builtins.bool is_multiple_standby: Indicates if it is multiple standby Autonomous Dataguard
|
19559
20346
|
:param Sequence['GetAutonomousContainerDatabasesAutonomousContainerDatabaseKeyHistoryEntryArgs'] key_history_entries: Key History Entry.
|
19560
20347
|
:param builtins.str key_store_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault.
|
19561
20348
|
:param builtins.str key_store_wallet_name: The wallet name for Oracle Key Vault.
|
19562
20349
|
:param builtins.str kms_key_id: The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
|
20350
|
+
:param builtins.str kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
|
19563
20351
|
:param builtins.float largest_provisionable_autonomous_database_in_cpus: The largest Autonomous Database (CPU) that can be created in a new Autonomous Container Database.
|
19564
20352
|
:param builtins.str last_maintenance_run_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance run.
|
19565
20353
|
:param builtins.str lifecycle_details: Additional information about the current lifecycle state.
|
@@ -19580,6 +20368,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
19580
20368
|
:param builtins.str service_level_agreement_type: A filter to return only resources that match the given service level agreement type exactly.
|
19581
20369
|
:param builtins.int standby_maintenance_buffer_in_days: The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before scheduled maintenance of the primary database.
|
19582
20370
|
:param builtins.str state: A filter to return only resources that match the given lifecycle state exactly.
|
20371
|
+
:param Mapping[str, builtins.str] system_tags: System 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).
|
19583
20372
|
:param builtins.str time_created: The date and time the Autonomous Container Database was created.
|
19584
20373
|
:param builtins.str time_of_last_backup: The timestamp of last successful backup. Here NULL value represents either there are no successful backups or backups are not configured for this Autonomous Container Database.
|
19585
20374
|
:param builtins.str time_snapshot_standby_revert: The date and time the Autonomous Container Database will be reverted to Standby from Snapshot Standby.
|
@@ -19589,6 +20378,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
19589
20378
|
:param builtins.int vm_failover_reservation: The percentage of CPUs reserved across nodes to support node failover. Allowed values are 0%, 25%, and 50%, with 50% being the default option.
|
19590
20379
|
"""
|
19591
20380
|
pulumi.set(__self__, "associated_backup_configuration_details", associated_backup_configuration_details)
|
20381
|
+
pulumi.set(__self__, "autonomous_container_database_backup_id", autonomous_container_database_backup_id)
|
19592
20382
|
pulumi.set(__self__, "autonomous_exadata_infrastructure_id", autonomous_exadata_infrastructure_id)
|
19593
20383
|
pulumi.set(__self__, "autonomous_vm_cluster_id", autonomous_vm_cluster_id)
|
19594
20384
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -19623,6 +20413,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
19623
20413
|
pulumi.set(__self__, "key_store_wallet_name", key_store_wallet_name)
|
19624
20414
|
pulumi.set(__self__, "key_version_id", key_version_id)
|
19625
20415
|
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
20416
|
+
pulumi.set(__self__, "kms_key_version_id", kms_key_version_id)
|
19626
20417
|
pulumi.set(__self__, "largest_provisionable_autonomous_database_in_cpus", largest_provisionable_autonomous_database_in_cpus)
|
19627
20418
|
pulumi.set(__self__, "last_maintenance_run_id", last_maintenance_run_id)
|
19628
20419
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
@@ -19651,9 +20442,11 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
19651
20442
|
pulumi.set(__self__, "role", role)
|
19652
20443
|
pulumi.set(__self__, "rotate_key_trigger", rotate_key_trigger)
|
19653
20444
|
pulumi.set(__self__, "service_level_agreement_type", service_level_agreement_type)
|
20445
|
+
pulumi.set(__self__, "source", source)
|
19654
20446
|
pulumi.set(__self__, "standby_maintenance_buffer_in_days", standby_maintenance_buffer_in_days)
|
19655
20447
|
pulumi.set(__self__, "state", state)
|
19656
20448
|
pulumi.set(__self__, "switchover_trigger", switchover_trigger)
|
20449
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
19657
20450
|
pulumi.set(__self__, "time_created", time_created)
|
19658
20451
|
pulumi.set(__self__, "time_of_last_backup", time_of_last_backup)
|
19659
20452
|
pulumi.set(__self__, "time_snapshot_standby_revert", time_snapshot_standby_revert)
|
@@ -19670,6 +20463,11 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
19670
20463
|
"""
|
19671
20464
|
return pulumi.get(self, "associated_backup_configuration_details")
|
19672
20465
|
|
20466
|
+
@property
|
20467
|
+
@pulumi.getter(name="autonomousContainerDatabaseBackupId")
|
20468
|
+
def autonomous_container_database_backup_id(self) -> builtins.str:
|
20469
|
+
return pulumi.get(self, "autonomous_container_database_backup_id")
|
20470
|
+
|
19673
20471
|
@property
|
19674
20472
|
@pulumi.getter(name="autonomousExadataInfrastructureId")
|
19675
20473
|
def autonomous_exadata_infrastructure_id(self) -> builtins.str:
|
@@ -19889,7 +20687,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
19889
20687
|
@pulumi.getter(name="isMultipleStandby")
|
19890
20688
|
def is_multiple_standby(self) -> builtins.bool:
|
19891
20689
|
"""
|
19892
|
-
|
20690
|
+
Indicates if it is multiple standby Autonomous Dataguard
|
19893
20691
|
"""
|
19894
20692
|
return pulumi.get(self, "is_multiple_standby")
|
19895
20693
|
|
@@ -19930,6 +20728,14 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
19930
20728
|
"""
|
19931
20729
|
return pulumi.get(self, "kms_key_id")
|
19932
20730
|
|
20731
|
+
@property
|
20732
|
+
@pulumi.getter(name="kmsKeyVersionId")
|
20733
|
+
def kms_key_version_id(self) -> builtins.str:
|
20734
|
+
"""
|
20735
|
+
The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
|
20736
|
+
"""
|
20737
|
+
return pulumi.get(self, "kms_key_version_id")
|
20738
|
+
|
19933
20739
|
@property
|
19934
20740
|
@pulumi.getter(name="largestProvisionableAutonomousDatabaseInCpus")
|
19935
20741
|
def largest_provisionable_autonomous_database_in_cpus(self) -> builtins.float:
|
@@ -20124,6 +20930,11 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
20124
20930
|
"""
|
20125
20931
|
return pulumi.get(self, "service_level_agreement_type")
|
20126
20932
|
|
20933
|
+
@property
|
20934
|
+
@pulumi.getter
|
20935
|
+
def source(self) -> builtins.str:
|
20936
|
+
return pulumi.get(self, "source")
|
20937
|
+
|
20127
20938
|
@property
|
20128
20939
|
@pulumi.getter(name="standbyMaintenanceBufferInDays")
|
20129
20940
|
def standby_maintenance_buffer_in_days(self) -> builtins.int:
|
@@ -20145,6 +20956,14 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
20145
20956
|
def switchover_trigger(self) -> builtins.int:
|
20146
20957
|
return pulumi.get(self, "switchover_trigger")
|
20147
20958
|
|
20959
|
+
@property
|
20960
|
+
@pulumi.getter(name="systemTags")
|
20961
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
20962
|
+
"""
|
20963
|
+
System 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).
|
20964
|
+
"""
|
20965
|
+
return pulumi.get(self, "system_tags")
|
20966
|
+
|
20148
20967
|
@property
|
20149
20968
|
@pulumi.getter(name="timeCreated")
|
20150
20969
|
def time_created(self) -> builtins.str:
|
@@ -20353,18 +21172,24 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigBack
|
|
20353
21172
|
def __init__(__self__, *,
|
20354
21173
|
id: builtins.str,
|
20355
21174
|
internet_proxy: builtins.str,
|
21175
|
+
is_remote: builtins.bool,
|
21176
|
+
remote_region: builtins.str,
|
20356
21177
|
type: builtins.str,
|
20357
21178
|
vpc_password: builtins.str,
|
20358
21179
|
vpc_user: builtins.str):
|
20359
21180
|
"""
|
20360
21181
|
:param builtins.str id: The id of the Autonomous Database [Vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts) service key management history entry.
|
20361
21182
|
:param builtins.str internet_proxy: Proxy URL to connect to object store.
|
21183
|
+
:param builtins.bool is_remote: Indicates whether the backup destination is cross-region or local region.
|
21184
|
+
:param builtins.str remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
|
20362
21185
|
:param builtins.str type: Type of the database backup destination.
|
20363
21186
|
:param builtins.str vpc_password: For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
|
20364
21187
|
:param builtins.str vpc_user: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
|
20365
21188
|
"""
|
20366
21189
|
pulumi.set(__self__, "id", id)
|
20367
21190
|
pulumi.set(__self__, "internet_proxy", internet_proxy)
|
21191
|
+
pulumi.set(__self__, "is_remote", is_remote)
|
21192
|
+
pulumi.set(__self__, "remote_region", remote_region)
|
20368
21193
|
pulumi.set(__self__, "type", type)
|
20369
21194
|
pulumi.set(__self__, "vpc_password", vpc_password)
|
20370
21195
|
pulumi.set(__self__, "vpc_user", vpc_user)
|
@@ -20385,6 +21210,22 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigBack
|
|
20385
21210
|
"""
|
20386
21211
|
return pulumi.get(self, "internet_proxy")
|
20387
21212
|
|
21213
|
+
@property
|
21214
|
+
@pulumi.getter(name="isRemote")
|
21215
|
+
def is_remote(self) -> builtins.bool:
|
21216
|
+
"""
|
21217
|
+
Indicates whether the backup destination is cross-region or local region.
|
21218
|
+
"""
|
21219
|
+
return pulumi.get(self, "is_remote")
|
21220
|
+
|
21221
|
+
@property
|
21222
|
+
@pulumi.getter(name="remoteRegion")
|
21223
|
+
def remote_region(self) -> builtins.str:
|
21224
|
+
"""
|
21225
|
+
The name of the remote region where the remote automatic incremental backups will be stored.
|
21226
|
+
"""
|
21227
|
+
return pulumi.get(self, "remote_region")
|
21228
|
+
|
20388
21229
|
@property
|
20389
21230
|
@pulumi.getter
|
20390
21231
|
def type(self) -> builtins.str:
|
@@ -21255,18 +22096,24 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousCo
|
|
21255
22096
|
def __init__(__self__, *,
|
21256
22097
|
id: builtins.str,
|
21257
22098
|
internet_proxy: builtins.str,
|
22099
|
+
is_remote: builtins.bool,
|
22100
|
+
remote_region: builtins.str,
|
21258
22101
|
type: builtins.str,
|
21259
22102
|
vpc_password: builtins.str,
|
21260
22103
|
vpc_user: builtins.str):
|
21261
22104
|
"""
|
21262
22105
|
:param builtins.str id: The id of the Autonomous Database [Vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts) service key management history entry.
|
21263
22106
|
:param builtins.str internet_proxy: Proxy URL to connect to object store.
|
22107
|
+
:param builtins.bool is_remote: Indicates whether the backup destination is cross-region or local region.
|
22108
|
+
:param builtins.str remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
|
21264
22109
|
:param builtins.str type: Type of the database backup destination.
|
21265
22110
|
:param builtins.str vpc_password: For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
|
21266
22111
|
:param builtins.str vpc_user: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
|
21267
22112
|
"""
|
21268
22113
|
pulumi.set(__self__, "id", id)
|
21269
22114
|
pulumi.set(__self__, "internet_proxy", internet_proxy)
|
22115
|
+
pulumi.set(__self__, "is_remote", is_remote)
|
22116
|
+
pulumi.set(__self__, "remote_region", remote_region)
|
21270
22117
|
pulumi.set(__self__, "type", type)
|
21271
22118
|
pulumi.set(__self__, "vpc_password", vpc_password)
|
21272
22119
|
pulumi.set(__self__, "vpc_user", vpc_user)
|
@@ -21287,6 +22134,22 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousCo
|
|
21287
22134
|
"""
|
21288
22135
|
return pulumi.get(self, "internet_proxy")
|
21289
22136
|
|
22137
|
+
@property
|
22138
|
+
@pulumi.getter(name="isRemote")
|
22139
|
+
def is_remote(self) -> builtins.bool:
|
22140
|
+
"""
|
22141
|
+
Indicates whether the backup destination is cross-region or local region.
|
22142
|
+
"""
|
22143
|
+
return pulumi.get(self, "is_remote")
|
22144
|
+
|
22145
|
+
@property
|
22146
|
+
@pulumi.getter(name="remoteRegion")
|
22147
|
+
def remote_region(self) -> builtins.str:
|
22148
|
+
"""
|
22149
|
+
The name of the remote region where the remote automatic incremental backups will be stored.
|
22150
|
+
"""
|
22151
|
+
return pulumi.get(self, "remote_region")
|
22152
|
+
|
21290
22153
|
@property
|
21291
22154
|
@pulumi.getter
|
21292
22155
|
def type(self) -> builtins.str:
|
@@ -21574,18 +22437,24 @@ class GetAutonomousDatabaseBackupBackupDestinationDetailResult(dict):
|
|
21574
22437
|
def __init__(__self__, *,
|
21575
22438
|
id: builtins.str,
|
21576
22439
|
internet_proxy: builtins.str,
|
22440
|
+
is_remote: builtins.bool,
|
22441
|
+
remote_region: builtins.str,
|
21577
22442
|
type: builtins.str,
|
21578
22443
|
vpc_password: builtins.str,
|
21579
22444
|
vpc_user: builtins.str):
|
21580
22445
|
"""
|
21581
22446
|
:param builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Autonomous Database backup.
|
21582
22447
|
:param builtins.str internet_proxy: Proxy URL to connect to object store.
|
22448
|
+
:param builtins.bool is_remote: Indicates whether the backup destination is cross-region or local region.
|
22449
|
+
:param builtins.str remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
|
21583
22450
|
:param builtins.str type: The type of backup.
|
21584
22451
|
:param builtins.str vpc_password: For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
|
21585
22452
|
:param builtins.str vpc_user: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
|
21586
22453
|
"""
|
21587
22454
|
pulumi.set(__self__, "id", id)
|
21588
22455
|
pulumi.set(__self__, "internet_proxy", internet_proxy)
|
22456
|
+
pulumi.set(__self__, "is_remote", is_remote)
|
22457
|
+
pulumi.set(__self__, "remote_region", remote_region)
|
21589
22458
|
pulumi.set(__self__, "type", type)
|
21590
22459
|
pulumi.set(__self__, "vpc_password", vpc_password)
|
21591
22460
|
pulumi.set(__self__, "vpc_user", vpc_user)
|
@@ -21606,6 +22475,22 @@ class GetAutonomousDatabaseBackupBackupDestinationDetailResult(dict):
|
|
21606
22475
|
"""
|
21607
22476
|
return pulumi.get(self, "internet_proxy")
|
21608
22477
|
|
22478
|
+
@property
|
22479
|
+
@pulumi.getter(name="isRemote")
|
22480
|
+
def is_remote(self) -> builtins.bool:
|
22481
|
+
"""
|
22482
|
+
Indicates whether the backup destination is cross-region or local region.
|
22483
|
+
"""
|
22484
|
+
return pulumi.get(self, "is_remote")
|
22485
|
+
|
22486
|
+
@property
|
22487
|
+
@pulumi.getter(name="remoteRegion")
|
22488
|
+
def remote_region(self) -> builtins.str:
|
22489
|
+
"""
|
22490
|
+
The name of the remote region where the remote automatic incremental backups will be stored.
|
22491
|
+
"""
|
22492
|
+
return pulumi.get(self, "remote_region")
|
22493
|
+
|
21609
22494
|
@property
|
21610
22495
|
@pulumi.getter
|
21611
22496
|
def type(self) -> builtins.str:
|
@@ -21921,18 +22806,24 @@ class GetAutonomousDatabaseBackupsAutonomousDatabaseBackupBackupDestinationDetai
|
|
21921
22806
|
def __init__(__self__, *,
|
21922
22807
|
id: builtins.str,
|
21923
22808
|
internet_proxy: builtins.str,
|
22809
|
+
is_remote: builtins.bool,
|
22810
|
+
remote_region: builtins.str,
|
21924
22811
|
type: builtins.str,
|
21925
22812
|
vpc_password: builtins.str,
|
21926
22813
|
vpc_user: builtins.str):
|
21927
22814
|
"""
|
21928
22815
|
:param builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Autonomous Database backup.
|
21929
22816
|
:param builtins.str internet_proxy: Proxy URL to connect to object store.
|
22817
|
+
:param builtins.bool is_remote: Indicates whether the backup destination is cross-region or local region.
|
22818
|
+
:param builtins.str remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
|
21930
22819
|
:param builtins.str type: A filter to return only backups that matches with the given type of Backup.
|
21931
22820
|
:param builtins.str vpc_password: For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
|
21932
22821
|
:param builtins.str vpc_user: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
|
21933
22822
|
"""
|
21934
22823
|
pulumi.set(__self__, "id", id)
|
21935
22824
|
pulumi.set(__self__, "internet_proxy", internet_proxy)
|
22825
|
+
pulumi.set(__self__, "is_remote", is_remote)
|
22826
|
+
pulumi.set(__self__, "remote_region", remote_region)
|
21936
22827
|
pulumi.set(__self__, "type", type)
|
21937
22828
|
pulumi.set(__self__, "vpc_password", vpc_password)
|
21938
22829
|
pulumi.set(__self__, "vpc_user", vpc_user)
|
@@ -21953,6 +22844,22 @@ class GetAutonomousDatabaseBackupsAutonomousDatabaseBackupBackupDestinationDetai
|
|
21953
22844
|
"""
|
21954
22845
|
return pulumi.get(self, "internet_proxy")
|
21955
22846
|
|
22847
|
+
@property
|
22848
|
+
@pulumi.getter(name="isRemote")
|
22849
|
+
def is_remote(self) -> builtins.bool:
|
22850
|
+
"""
|
22851
|
+
Indicates whether the backup destination is cross-region or local region.
|
22852
|
+
"""
|
22853
|
+
return pulumi.get(self, "is_remote")
|
22854
|
+
|
22855
|
+
@property
|
22856
|
+
@pulumi.getter(name="remoteRegion")
|
22857
|
+
def remote_region(self) -> builtins.str:
|
22858
|
+
"""
|
22859
|
+
The name of the remote region where the remote automatic incremental backups will be stored.
|
22860
|
+
"""
|
22861
|
+
return pulumi.get(self, "remote_region")
|
22862
|
+
|
21956
22863
|
@property
|
21957
22864
|
@pulumi.getter
|
21958
22865
|
def type(self) -> builtins.str:
|
@@ -23401,6 +24308,69 @@ class GetAutonomousDatabaseRemoteDisasterRecoveryConfigurationResult(dict):
|
|
23401
24308
|
return pulumi.get(self, "time_snapshot_standby_enabled_till")
|
23402
24309
|
|
23403
24310
|
|
24311
|
+
@pulumi.output_type
|
24312
|
+
class GetAutonomousDatabaseResourcePoolMembersFilterResult(dict):
|
24313
|
+
def __init__(__self__, *,
|
24314
|
+
name: builtins.str,
|
24315
|
+
values: Sequence[builtins.str],
|
24316
|
+
regex: Optional[builtins.bool] = None):
|
24317
|
+
pulumi.set(__self__, "name", name)
|
24318
|
+
pulumi.set(__self__, "values", values)
|
24319
|
+
if regex is not None:
|
24320
|
+
pulumi.set(__self__, "regex", regex)
|
24321
|
+
|
24322
|
+
@property
|
24323
|
+
@pulumi.getter
|
24324
|
+
def name(self) -> builtins.str:
|
24325
|
+
return pulumi.get(self, "name")
|
24326
|
+
|
24327
|
+
@property
|
24328
|
+
@pulumi.getter
|
24329
|
+
def values(self) -> Sequence[builtins.str]:
|
24330
|
+
return pulumi.get(self, "values")
|
24331
|
+
|
24332
|
+
@property
|
24333
|
+
@pulumi.getter
|
24334
|
+
def regex(self) -> Optional[builtins.bool]:
|
24335
|
+
return pulumi.get(self, "regex")
|
24336
|
+
|
24337
|
+
|
24338
|
+
@pulumi.output_type
|
24339
|
+
class GetAutonomousDatabaseResourcePoolMembersResourcePoolMemberCollectionResult(dict):
|
24340
|
+
def __init__(__self__, *,
|
24341
|
+
items: Sequence['outputs.GetAutonomousDatabaseResourcePoolMembersResourcePoolMemberCollectionItemResult']):
|
24342
|
+
"""
|
24343
|
+
:param Sequence['GetAutonomousDatabaseResourcePoolMembersResourcePoolMemberCollectionItemArgs'] items: List of resource pool member summary.
|
24344
|
+
"""
|
24345
|
+
pulumi.set(__self__, "items", items)
|
24346
|
+
|
24347
|
+
@property
|
24348
|
+
@pulumi.getter
|
24349
|
+
def items(self) -> Sequence['outputs.GetAutonomousDatabaseResourcePoolMembersResourcePoolMemberCollectionItemResult']:
|
24350
|
+
"""
|
24351
|
+
List of resource pool member summary.
|
24352
|
+
"""
|
24353
|
+
return pulumi.get(self, "items")
|
24354
|
+
|
24355
|
+
|
24356
|
+
@pulumi.output_type
|
24357
|
+
class GetAutonomousDatabaseResourcePoolMembersResourcePoolMemberCollectionItemResult(dict):
|
24358
|
+
def __init__(__self__, *,
|
24359
|
+
id: builtins.str):
|
24360
|
+
"""
|
24361
|
+
:param builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Autonomous Database.
|
24362
|
+
"""
|
24363
|
+
pulumi.set(__self__, "id", id)
|
24364
|
+
|
24365
|
+
@property
|
24366
|
+
@pulumi.getter
|
24367
|
+
def id(self) -> builtins.str:
|
24368
|
+
"""
|
24369
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Autonomous Database.
|
24370
|
+
"""
|
24371
|
+
return pulumi.get(self, "id")
|
24372
|
+
|
24373
|
+
|
23404
24374
|
@pulumi.output_type
|
23405
24375
|
class GetAutonomousDatabaseResourcePoolSummaryResult(dict):
|
23406
24376
|
def __init__(__self__, *,
|
@@ -23515,6 +24485,7 @@ class GetAutonomousDatabaseSoftwareImagesAutonomousDatabaseSoftwareImageCollecti
|
|
23515
24485
|
release_update: builtins.str,
|
23516
24486
|
source_cdb_id: builtins.str,
|
23517
24487
|
state: builtins.str,
|
24488
|
+
system_tags: Mapping[str, builtins.str],
|
23518
24489
|
time_created: builtins.str):
|
23519
24490
|
"""
|
23520
24491
|
:param Sequence[builtins.str] autonomous_dsi_one_off_patches: One-off patches included in the Autonomous Database Software Image
|
@@ -23528,6 +24499,7 @@ class GetAutonomousDatabaseSoftwareImagesAutonomousDatabaseSoftwareImageCollecti
|
|
23528
24499
|
:param builtins.str lifecycle_details: Detailed message for the lifecycle state.
|
23529
24500
|
:param builtins.str release_update: The Release Updates.
|
23530
24501
|
:param builtins.str state: A filter to return only resources that match the given lifecycle state exactly.
|
24502
|
+
:param Mapping[str, builtins.str] system_tags: System 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).
|
23531
24503
|
:param builtins.str time_created: The date and time the Autonomous Database Software Image was created.
|
23532
24504
|
"""
|
23533
24505
|
pulumi.set(__self__, "autonomous_dsi_one_off_patches", autonomous_dsi_one_off_patches)
|
@@ -23542,6 +24514,7 @@ class GetAutonomousDatabaseSoftwareImagesAutonomousDatabaseSoftwareImageCollecti
|
|
23542
24514
|
pulumi.set(__self__, "release_update", release_update)
|
23543
24515
|
pulumi.set(__self__, "source_cdb_id", source_cdb_id)
|
23544
24516
|
pulumi.set(__self__, "state", state)
|
24517
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
23545
24518
|
pulumi.set(__self__, "time_created", time_created)
|
23546
24519
|
|
23547
24520
|
@property
|
@@ -23637,6 +24610,14 @@ class GetAutonomousDatabaseSoftwareImagesAutonomousDatabaseSoftwareImageCollecti
|
|
23637
24610
|
"""
|
23638
24611
|
return pulumi.get(self, "state")
|
23639
24612
|
|
24613
|
+
@property
|
24614
|
+
@pulumi.getter(name="systemTags")
|
24615
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
24616
|
+
"""
|
24617
|
+
System 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).
|
24618
|
+
"""
|
24619
|
+
return pulumi.get(self, "system_tags")
|
24620
|
+
|
23640
24621
|
@property
|
23641
24622
|
@pulumi.getter(name="timeCreated")
|
23642
24623
|
def time_created(self) -> builtins.str:
|
@@ -31607,6 +32588,7 @@ class GetAutonomousVmClustersAutonomousVmClusterResult(dict):
|
|
31607
32588
|
scan_listener_port_non_tls: builtins.int,
|
31608
32589
|
scan_listener_port_tls: builtins.int,
|
31609
32590
|
state: builtins.str,
|
32591
|
+
system_tags: Mapping[str, builtins.str],
|
31610
32592
|
time_created: builtins.str,
|
31611
32593
|
time_database_ssl_certificate_expires: builtins.str,
|
31612
32594
|
time_ords_certificate_expires: builtins.str,
|
@@ -31657,6 +32639,7 @@ class GetAutonomousVmClustersAutonomousVmClusterResult(dict):
|
|
31657
32639
|
:param builtins.int scan_listener_port_non_tls: The SCAN Listener Non TLS port number. Default value is 1521.
|
31658
32640
|
:param builtins.int scan_listener_port_tls: The SCAN Listener TLS port number. Default value is 2484.
|
31659
32641
|
:param builtins.str state: A filter to return only resources that match the given lifecycle state exactly.
|
32642
|
+
:param Mapping[str, builtins.str] system_tags: System 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).
|
31660
32643
|
:param builtins.str time_created: The date and time that the Autonomous VM cluster was created.
|
31661
32644
|
:param builtins.str time_database_ssl_certificate_expires: The date and time of Database SSL certificate expiration.
|
31662
32645
|
:param builtins.str time_ords_certificate_expires: The date and time of ORDS certificate expiration.
|
@@ -31708,6 +32691,7 @@ class GetAutonomousVmClustersAutonomousVmClusterResult(dict):
|
|
31708
32691
|
pulumi.set(__self__, "scan_listener_port_non_tls", scan_listener_port_non_tls)
|
31709
32692
|
pulumi.set(__self__, "scan_listener_port_tls", scan_listener_port_tls)
|
31710
32693
|
pulumi.set(__self__, "state", state)
|
32694
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
31711
32695
|
pulumi.set(__self__, "time_created", time_created)
|
31712
32696
|
pulumi.set(__self__, "time_database_ssl_certificate_expires", time_database_ssl_certificate_expires)
|
31713
32697
|
pulumi.set(__self__, "time_ords_certificate_expires", time_ords_certificate_expires)
|
@@ -32058,6 +33042,14 @@ class GetAutonomousVmClustersAutonomousVmClusterResult(dict):
|
|
32058
33042
|
"""
|
32059
33043
|
return pulumi.get(self, "state")
|
32060
33044
|
|
33045
|
+
@property
|
33046
|
+
@pulumi.getter(name="systemTags")
|
33047
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
33048
|
+
"""
|
33049
|
+
System 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).
|
33050
|
+
"""
|
33051
|
+
return pulumi.get(self, "system_tags")
|
33052
|
+
|
32061
33053
|
@property
|
32062
33054
|
@pulumi.getter(name="timeCreated")
|
32063
33055
|
def time_created(self) -> builtins.str:
|
@@ -32530,6 +33522,7 @@ class GetBackupDestinationsBackupDestinationResult(dict):
|
|
32530
33522
|
nfs_server_export: builtins.str,
|
32531
33523
|
nfs_servers: Sequence[builtins.str],
|
32532
33524
|
state: builtins.str,
|
33525
|
+
system_tags: Mapping[str, builtins.str],
|
32533
33526
|
time_at_which_storage_details_are_updated: builtins.str,
|
32534
33527
|
time_created: builtins.str,
|
32535
33528
|
total_storage_size_in_gbs: builtins.int,
|
@@ -32550,6 +33543,7 @@ class GetBackupDestinationsBackupDestinationResult(dict):
|
|
32550
33543
|
:param builtins.str nfs_server_export: Specifies the directory on which to mount the file system
|
32551
33544
|
:param Sequence[builtins.str] nfs_servers: Host names or IP addresses for NFS Auto mount.
|
32552
33545
|
:param builtins.str state: The current lifecycle state of the backup destination.
|
33546
|
+
:param Mapping[str, builtins.str] system_tags: System 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).
|
32553
33547
|
:param builtins.str time_at_which_storage_details_are_updated: The time when the total storage size and the utilized storage size of the backup destination are updated.
|
32554
33548
|
:param builtins.str time_created: The date and time the backup destination was created.
|
32555
33549
|
:param builtins.int total_storage_size_in_gbs: The total storage size of the backup destination in GBs, rounded to the nearest integer.
|
@@ -32571,6 +33565,7 @@ class GetBackupDestinationsBackupDestinationResult(dict):
|
|
32571
33565
|
pulumi.set(__self__, "nfs_server_export", nfs_server_export)
|
32572
33566
|
pulumi.set(__self__, "nfs_servers", nfs_servers)
|
32573
33567
|
pulumi.set(__self__, "state", state)
|
33568
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
32574
33569
|
pulumi.set(__self__, "time_at_which_storage_details_are_updated", time_at_which_storage_details_are_updated)
|
32575
33570
|
pulumi.set(__self__, "time_created", time_created)
|
32576
33571
|
pulumi.set(__self__, "total_storage_size_in_gbs", total_storage_size_in_gbs)
|
@@ -32688,6 +33683,14 @@ class GetBackupDestinationsBackupDestinationResult(dict):
|
|
32688
33683
|
"""
|
32689
33684
|
return pulumi.get(self, "state")
|
32690
33685
|
|
33686
|
+
@property
|
33687
|
+
@pulumi.getter(name="systemTags")
|
33688
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
33689
|
+
"""
|
33690
|
+
System 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).
|
33691
|
+
"""
|
33692
|
+
return pulumi.get(self, "system_tags")
|
33693
|
+
|
32691
33694
|
@property
|
32692
33695
|
@pulumi.getter(name="timeAtWhichStorageDetailsAreUpdated")
|
32693
33696
|
def time_at_which_storage_details_are_updated(self) -> builtins.str:
|
@@ -33136,15 +34139,26 @@ class GetBackupsBackupResult(dict):
|
|
33136
34139
|
@pulumi.output_type
|
33137
34140
|
class GetBackupsBackupEncryptionKeyLocationDetailResult(dict):
|
33138
34141
|
def __init__(__self__, *,
|
34142
|
+
azure_encryption_key_id: builtins.str,
|
33139
34143
|
hsm_password: builtins.str,
|
33140
34144
|
provider_type: builtins.str):
|
33141
34145
|
"""
|
34146
|
+
:param builtins.str azure_encryption_key_id: Provide the key OCID of a registered Azure key.
|
33142
34147
|
:param builtins.str hsm_password: Provide the HSM password as you would in RDBMS for External HSM.
|
33143
|
-
:param builtins.str provider_type: Use 'EXTERNAL' for creating a new database or
|
34148
|
+
:param builtins.str provider_type: Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
|
33144
34149
|
"""
|
34150
|
+
pulumi.set(__self__, "azure_encryption_key_id", azure_encryption_key_id)
|
33145
34151
|
pulumi.set(__self__, "hsm_password", hsm_password)
|
33146
34152
|
pulumi.set(__self__, "provider_type", provider_type)
|
33147
34153
|
|
34154
|
+
@property
|
34155
|
+
@pulumi.getter(name="azureEncryptionKeyId")
|
34156
|
+
def azure_encryption_key_id(self) -> builtins.str:
|
34157
|
+
"""
|
34158
|
+
Provide the key OCID of a registered Azure key.
|
34159
|
+
"""
|
34160
|
+
return pulumi.get(self, "azure_encryption_key_id")
|
34161
|
+
|
33148
34162
|
@property
|
33149
34163
|
@pulumi.getter(name="hsmPassword")
|
33150
34164
|
def hsm_password(self) -> builtins.str:
|
@@ -33157,7 +34171,7 @@ class GetBackupsBackupEncryptionKeyLocationDetailResult(dict):
|
|
33157
34171
|
@pulumi.getter(name="providerType")
|
33158
34172
|
def provider_type(self) -> builtins.str:
|
33159
34173
|
"""
|
33160
|
-
Use 'EXTERNAL' for creating a new database or
|
34174
|
+
Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
|
33161
34175
|
"""
|
33162
34176
|
return pulumi.get(self, "provider_type")
|
33163
34177
|
|
@@ -33983,6 +34997,7 @@ class GetCloudAutonomousVmClustersCloudAutonomousVmClusterResult(dict):
|
|
33983
34997
|
nsg_ids: Sequence[builtins.str],
|
33984
34998
|
ocpu_count: builtins.float,
|
33985
34999
|
ocpus_lowest_scaled_value: builtins.int,
|
35000
|
+
opc_dry_run: builtins.bool,
|
33986
35001
|
provisionable_autonomous_container_databases: builtins.int,
|
33987
35002
|
provisioned_autonomous_container_databases: builtins.int,
|
33988
35003
|
provisioned_cpus: builtins.float,
|
@@ -33994,6 +35009,8 @@ class GetCloudAutonomousVmClustersCloudAutonomousVmClusterResult(dict):
|
|
33994
35009
|
shape: builtins.str,
|
33995
35010
|
state: builtins.str,
|
33996
35011
|
subnet_id: builtins.str,
|
35012
|
+
subscription_id: builtins.str,
|
35013
|
+
system_tags: Mapping[str, builtins.str],
|
33997
35014
|
time_created: builtins.str,
|
33998
35015
|
time_database_ssl_certificate_expires: builtins.str,
|
33999
35016
|
time_ords_certificate_expires: builtins.str,
|
@@ -34056,6 +35073,8 @@ class GetCloudAutonomousVmClustersCloudAutonomousVmClusterResult(dict):
|
|
34056
35073
|
:param builtins.str shape: The model name of the Exadata hardware running the cloud Autonomous VM cluster.
|
34057
35074
|
:param builtins.str state: A filter to return only resources that match the given lifecycle state exactly.
|
34058
35075
|
:param builtins.str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the cloud Autonomous VM Cluster is associated with.
|
35076
|
+
:param builtins.str subscription_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
|
35077
|
+
:param Mapping[str, builtins.str] system_tags: System 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).
|
34059
35078
|
:param builtins.str time_created: The date and time that the cloud Autonomous VM cluster was created.
|
34060
35079
|
:param builtins.str time_database_ssl_certificate_expires: The date and time of Database SSL certificate expiration.
|
34061
35080
|
:param builtins.str time_ords_certificate_expires: The date and time of ORDS certificate expiration.
|
@@ -34105,6 +35124,7 @@ class GetCloudAutonomousVmClustersCloudAutonomousVmClusterResult(dict):
|
|
34105
35124
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
34106
35125
|
pulumi.set(__self__, "ocpu_count", ocpu_count)
|
34107
35126
|
pulumi.set(__self__, "ocpus_lowest_scaled_value", ocpus_lowest_scaled_value)
|
35127
|
+
pulumi.set(__self__, "opc_dry_run", opc_dry_run)
|
34108
35128
|
pulumi.set(__self__, "provisionable_autonomous_container_databases", provisionable_autonomous_container_databases)
|
34109
35129
|
pulumi.set(__self__, "provisioned_autonomous_container_databases", provisioned_autonomous_container_databases)
|
34110
35130
|
pulumi.set(__self__, "provisioned_cpus", provisioned_cpus)
|
@@ -34116,6 +35136,8 @@ class GetCloudAutonomousVmClustersCloudAutonomousVmClusterResult(dict):
|
|
34116
35136
|
pulumi.set(__self__, "shape", shape)
|
34117
35137
|
pulumi.set(__self__, "state", state)
|
34118
35138
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
35139
|
+
pulumi.set(__self__, "subscription_id", subscription_id)
|
35140
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
34119
35141
|
pulumi.set(__self__, "time_created", time_created)
|
34120
35142
|
pulumi.set(__self__, "time_database_ssl_certificate_expires", time_database_ssl_certificate_expires)
|
34121
35143
|
pulumi.set(__self__, "time_ords_certificate_expires", time_ords_certificate_expires)
|
@@ -34450,6 +35472,11 @@ class GetCloudAutonomousVmClustersCloudAutonomousVmClusterResult(dict):
|
|
34450
35472
|
"""
|
34451
35473
|
return pulumi.get(self, "ocpus_lowest_scaled_value")
|
34452
35474
|
|
35475
|
+
@property
|
35476
|
+
@pulumi.getter(name="opcDryRun")
|
35477
|
+
def opc_dry_run(self) -> builtins.bool:
|
35478
|
+
return pulumi.get(self, "opc_dry_run")
|
35479
|
+
|
34453
35480
|
@property
|
34454
35481
|
@pulumi.getter(name="provisionableAutonomousContainerDatabases")
|
34455
35482
|
def provisionable_autonomous_container_databases(self) -> builtins.int:
|
@@ -34540,6 +35567,22 @@ class GetCloudAutonomousVmClustersCloudAutonomousVmClusterResult(dict):
|
|
34540
35567
|
"""
|
34541
35568
|
return pulumi.get(self, "subnet_id")
|
34542
35569
|
|
35570
|
+
@property
|
35571
|
+
@pulumi.getter(name="subscriptionId")
|
35572
|
+
def subscription_id(self) -> builtins.str:
|
35573
|
+
"""
|
35574
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
|
35575
|
+
"""
|
35576
|
+
return pulumi.get(self, "subscription_id")
|
35577
|
+
|
35578
|
+
@property
|
35579
|
+
@pulumi.getter(name="systemTags")
|
35580
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
35581
|
+
"""
|
35582
|
+
System 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).
|
35583
|
+
"""
|
35584
|
+
return pulumi.get(self, "system_tags")
|
35585
|
+
|
34543
35586
|
@property
|
34544
35587
|
@pulumi.getter(name="timeCreated")
|
34545
35588
|
def time_created(self) -> builtins.str:
|
@@ -36242,6 +37285,35 @@ class GetCloudVmClusterIormConfigDbPlanResult(dict):
|
|
36242
37285
|
return pulumi.get(self, "share")
|
36243
37286
|
|
36244
37287
|
|
37288
|
+
@pulumi.output_type
|
37289
|
+
class GetCloudVmClusterMultiCloudIdentityConnectorConfigResult(dict):
|
37290
|
+
def __init__(__self__, *,
|
37291
|
+
cloud_provider: builtins.str,
|
37292
|
+
id: builtins.str):
|
37293
|
+
"""
|
37294
|
+
:param builtins.str cloud_provider: Cloud provider
|
37295
|
+
:param builtins.str id: The OCID of the identity connector
|
37296
|
+
"""
|
37297
|
+
pulumi.set(__self__, "cloud_provider", cloud_provider)
|
37298
|
+
pulumi.set(__self__, "id", id)
|
37299
|
+
|
37300
|
+
@property
|
37301
|
+
@pulumi.getter(name="cloudProvider")
|
37302
|
+
def cloud_provider(self) -> builtins.str:
|
37303
|
+
"""
|
37304
|
+
Cloud provider
|
37305
|
+
"""
|
37306
|
+
return pulumi.get(self, "cloud_provider")
|
37307
|
+
|
37308
|
+
@property
|
37309
|
+
@pulumi.getter
|
37310
|
+
def id(self) -> builtins.str:
|
37311
|
+
"""
|
37312
|
+
The OCID of the identity connector
|
37313
|
+
"""
|
37314
|
+
return pulumi.get(self, "id")
|
37315
|
+
|
37316
|
+
|
36245
37317
|
@pulumi.output_type
|
36246
37318
|
class GetCloudVmClustersCloudVmClusterResult(dict):
|
36247
37319
|
def __init__(__self__, *,
|
@@ -36277,6 +37349,7 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
|
|
36277
37349
|
lifecycle_details: builtins.str,
|
36278
37350
|
listener_port: builtins.str,
|
36279
37351
|
memory_size_in_gbs: builtins.int,
|
37352
|
+
multi_cloud_identity_connector_configs: Sequence['outputs.GetCloudVmClustersCloudVmClusterMultiCloudIdentityConnectorConfigResult'],
|
36280
37353
|
node_count: builtins.int,
|
36281
37354
|
nsg_ids: Sequence[builtins.str],
|
36282
37355
|
ocpu_count: builtins.float,
|
@@ -36296,6 +37369,7 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
|
|
36296
37369
|
subscription_id: builtins.str,
|
36297
37370
|
system_tags: Mapping[str, builtins.str],
|
36298
37371
|
system_version: builtins.str,
|
37372
|
+
tde_key_store_type: builtins.str,
|
36299
37373
|
time_created: builtins.str,
|
36300
37374
|
time_zone: builtins.str,
|
36301
37375
|
vip_ids: Sequence[builtins.str],
|
@@ -36325,7 +37399,7 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
|
|
36325
37399
|
:param Mapping[str, builtins.str] freeform_tags: 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"}`
|
36326
37400
|
:param builtins.str gi_version: A valid Oracle Grid Infrastructure (GI) software version.
|
36327
37401
|
:param builtins.str hostname: The hostname for the cloud VM cluster.
|
36328
|
-
:param builtins.str id: The
|
37402
|
+
:param builtins.str id: The OCID of the identity connector
|
36329
37403
|
:param builtins.bool is_local_backup_enabled: If true, database backup on local Exadata storage is configured for the cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster.
|
36330
37404
|
:param builtins.bool is_sparse_diskgroup_enabled: If true, sparse disk group is configured for the cloud VM cluster. If false, sparse disk group is not created.
|
36331
37405
|
:param builtins.str last_update_history_entry_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance update history entry. This value is updated when a maintenance update starts.
|
@@ -36333,6 +37407,7 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
|
|
36333
37407
|
:param builtins.str lifecycle_details: Additional information about the current lifecycle state.
|
36334
37408
|
:param builtins.str listener_port: The port number configured for the listener on the cloud VM cluster.
|
36335
37409
|
:param builtins.int memory_size_in_gbs: The memory to be allocated in GBs.
|
37410
|
+
:param Sequence['GetCloudVmClustersCloudVmClusterMultiCloudIdentityConnectorConfigArgs'] multi_cloud_identity_connector_configs: Details of the multi cloud identity connectors of the VM cluster.
|
36336
37411
|
:param builtins.int node_count: The number of nodes in the cloud VM cluster.
|
36337
37412
|
:param Sequence[builtins.str] nsg_ids: The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). **NsgIds restrictions:**
|
36338
37413
|
* A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
|
@@ -36352,6 +37427,7 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
|
|
36352
37427
|
:param builtins.str subscription_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
|
36353
37428
|
:param Mapping[str, builtins.str] system_tags: System 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).
|
36354
37429
|
:param builtins.str system_version: Operating system version of the image.
|
37430
|
+
:param builtins.str tde_key_store_type: TDE keystore type
|
36355
37431
|
:param builtins.str time_created: The date and time that the cloud VM cluster was created.
|
36356
37432
|
:param builtins.str time_zone: The time zone of the cloud VM cluster. For details, see [Exadata Infrastructure Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
36357
37433
|
:param Sequence[builtins.str] vip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) IPv4 addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP IPv4 address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
|
@@ -36391,6 +37467,7 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
|
|
36391
37467
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
36392
37468
|
pulumi.set(__self__, "listener_port", listener_port)
|
36393
37469
|
pulumi.set(__self__, "memory_size_in_gbs", memory_size_in_gbs)
|
37470
|
+
pulumi.set(__self__, "multi_cloud_identity_connector_configs", multi_cloud_identity_connector_configs)
|
36394
37471
|
pulumi.set(__self__, "node_count", node_count)
|
36395
37472
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
36396
37473
|
pulumi.set(__self__, "ocpu_count", ocpu_count)
|
@@ -36410,6 +37487,7 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
|
|
36410
37487
|
pulumi.set(__self__, "subscription_id", subscription_id)
|
36411
37488
|
pulumi.set(__self__, "system_tags", system_tags)
|
36412
37489
|
pulumi.set(__self__, "system_version", system_version)
|
37490
|
+
pulumi.set(__self__, "tde_key_store_type", tde_key_store_type)
|
36413
37491
|
pulumi.set(__self__, "time_created", time_created)
|
36414
37492
|
pulumi.set(__self__, "time_zone", time_zone)
|
36415
37493
|
pulumi.set(__self__, "vip_ids", vip_ids)
|
@@ -36602,7 +37680,7 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
|
|
36602
37680
|
@pulumi.getter
|
36603
37681
|
def id(self) -> builtins.str:
|
36604
37682
|
"""
|
36605
|
-
The
|
37683
|
+
The OCID of the identity connector
|
36606
37684
|
"""
|
36607
37685
|
return pulumi.get(self, "id")
|
36608
37686
|
|
@@ -36667,6 +37745,14 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
|
|
36667
37745
|
"""
|
36668
37746
|
return pulumi.get(self, "memory_size_in_gbs")
|
36669
37747
|
|
37748
|
+
@property
|
37749
|
+
@pulumi.getter(name="multiCloudIdentityConnectorConfigs")
|
37750
|
+
def multi_cloud_identity_connector_configs(self) -> Sequence['outputs.GetCloudVmClustersCloudVmClusterMultiCloudIdentityConnectorConfigResult']:
|
37751
|
+
"""
|
37752
|
+
Details of the multi cloud identity connectors of the VM cluster.
|
37753
|
+
"""
|
37754
|
+
return pulumi.get(self, "multi_cloud_identity_connector_configs")
|
37755
|
+
|
36670
37756
|
@property
|
36671
37757
|
@pulumi.getter(name="nodeCount")
|
36672
37758
|
def node_count(self) -> builtins.int:
|
@@ -36817,6 +37903,14 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
|
|
36817
37903
|
"""
|
36818
37904
|
return pulumi.get(self, "system_version")
|
36819
37905
|
|
37906
|
+
@property
|
37907
|
+
@pulumi.getter(name="tdeKeyStoreType")
|
37908
|
+
def tde_key_store_type(self) -> builtins.str:
|
37909
|
+
"""
|
37910
|
+
TDE keystore type
|
37911
|
+
"""
|
37912
|
+
return pulumi.get(self, "tde_key_store_type")
|
37913
|
+
|
36820
37914
|
@property
|
36821
37915
|
@pulumi.getter(name="timeCreated")
|
36822
37916
|
def time_created(self) -> builtins.str:
|
@@ -37113,6 +38207,35 @@ class GetCloudVmClustersCloudVmClusterIormConfigCachDbPlanResult(dict):
|
|
37113
38207
|
return pulumi.get(self, "share")
|
37114
38208
|
|
37115
38209
|
|
38210
|
+
@pulumi.output_type
|
38211
|
+
class GetCloudVmClustersCloudVmClusterMultiCloudIdentityConnectorConfigResult(dict):
|
38212
|
+
def __init__(__self__, *,
|
38213
|
+
cloud_provider: builtins.str,
|
38214
|
+
id: builtins.str):
|
38215
|
+
"""
|
38216
|
+
:param builtins.str cloud_provider: Cloud provider
|
38217
|
+
:param builtins.str id: The OCID of the identity connector
|
38218
|
+
"""
|
38219
|
+
pulumi.set(__self__, "cloud_provider", cloud_provider)
|
38220
|
+
pulumi.set(__self__, "id", id)
|
38221
|
+
|
38222
|
+
@property
|
38223
|
+
@pulumi.getter(name="cloudProvider")
|
38224
|
+
def cloud_provider(self) -> builtins.str:
|
38225
|
+
"""
|
38226
|
+
Cloud provider
|
38227
|
+
"""
|
38228
|
+
return pulumi.get(self, "cloud_provider")
|
38229
|
+
|
38230
|
+
@property
|
38231
|
+
@pulumi.getter
|
38232
|
+
def id(self) -> builtins.str:
|
38233
|
+
"""
|
38234
|
+
The OCID of the identity connector
|
38235
|
+
"""
|
38236
|
+
return pulumi.get(self, "id")
|
38237
|
+
|
38238
|
+
|
37116
38239
|
@pulumi.output_type
|
37117
38240
|
class GetCloudVmClustersFilterResult(dict):
|
37118
38241
|
def __init__(__self__, *,
|
@@ -38174,16 +39297,26 @@ class GetDatabaseDatabaseDbBackupConfigBackupDestinationDetailResult(dict):
|
|
38174
39297
|
def __init__(__self__, *,
|
38175
39298
|
dbrs_policy_id: builtins.str,
|
38176
39299
|
id: builtins.str,
|
39300
|
+
is_remote: builtins.bool,
|
39301
|
+
remote_region: builtins.str,
|
38177
39302
|
type: builtins.str,
|
39303
|
+
vpc_password: builtins.str,
|
38178
39304
|
vpc_user: builtins.str):
|
38179
39305
|
"""
|
38180
39306
|
:param builtins.str dbrs_policy_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
|
38181
39307
|
:param builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database.
|
39308
|
+
:param builtins.bool is_remote: Indicates whether the backup destination is cross-region or local region.
|
39309
|
+
:param builtins.str remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
|
38182
39310
|
:param builtins.str type: Type of the database backup destination.
|
39311
|
+
:param builtins.str vpc_password: For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
|
39312
|
+
:param builtins.str vpc_user: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
|
38183
39313
|
"""
|
38184
39314
|
pulumi.set(__self__, "dbrs_policy_id", dbrs_policy_id)
|
38185
39315
|
pulumi.set(__self__, "id", id)
|
39316
|
+
pulumi.set(__self__, "is_remote", is_remote)
|
39317
|
+
pulumi.set(__self__, "remote_region", remote_region)
|
38186
39318
|
pulumi.set(__self__, "type", type)
|
39319
|
+
pulumi.set(__self__, "vpc_password", vpc_password)
|
38187
39320
|
pulumi.set(__self__, "vpc_user", vpc_user)
|
38188
39321
|
|
38189
39322
|
@property
|
@@ -38202,6 +39335,22 @@ class GetDatabaseDatabaseDbBackupConfigBackupDestinationDetailResult(dict):
|
|
38202
39335
|
"""
|
38203
39336
|
return pulumi.get(self, "id")
|
38204
39337
|
|
39338
|
+
@property
|
39339
|
+
@pulumi.getter(name="isRemote")
|
39340
|
+
def is_remote(self) -> builtins.bool:
|
39341
|
+
"""
|
39342
|
+
Indicates whether the backup destination is cross-region or local region.
|
39343
|
+
"""
|
39344
|
+
return pulumi.get(self, "is_remote")
|
39345
|
+
|
39346
|
+
@property
|
39347
|
+
@pulumi.getter(name="remoteRegion")
|
39348
|
+
def remote_region(self) -> builtins.str:
|
39349
|
+
"""
|
39350
|
+
The name of the remote region where the remote automatic incremental backups will be stored.
|
39351
|
+
"""
|
39352
|
+
return pulumi.get(self, "remote_region")
|
39353
|
+
|
38205
39354
|
@property
|
38206
39355
|
@pulumi.getter
|
38207
39356
|
def type(self) -> builtins.str:
|
@@ -38210,24 +39359,46 @@ class GetDatabaseDatabaseDbBackupConfigBackupDestinationDetailResult(dict):
|
|
38210
39359
|
"""
|
38211
39360
|
return pulumi.get(self, "type")
|
38212
39361
|
|
39362
|
+
@property
|
39363
|
+
@pulumi.getter(name="vpcPassword")
|
39364
|
+
def vpc_password(self) -> builtins.str:
|
39365
|
+
"""
|
39366
|
+
For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
|
39367
|
+
"""
|
39368
|
+
return pulumi.get(self, "vpc_password")
|
39369
|
+
|
38213
39370
|
@property
|
38214
39371
|
@pulumi.getter(name="vpcUser")
|
38215
39372
|
def vpc_user(self) -> builtins.str:
|
39373
|
+
"""
|
39374
|
+
For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
|
39375
|
+
"""
|
38216
39376
|
return pulumi.get(self, "vpc_user")
|
38217
39377
|
|
38218
39378
|
|
38219
39379
|
@pulumi.output_type
|
38220
39380
|
class GetDatabaseDatabaseEncryptionKeyLocationDetailResult(dict):
|
38221
39381
|
def __init__(__self__, *,
|
39382
|
+
azure_encryption_key_id: builtins.str,
|
38222
39383
|
hsm_password: builtins.str,
|
38223
39384
|
provider_type: builtins.str):
|
38224
39385
|
"""
|
39386
|
+
:param builtins.str azure_encryption_key_id: Provide the key OCID of a registered Azure key.
|
38225
39387
|
:param builtins.str hsm_password: Provide the HSM password as you would in RDBMS for External HSM.
|
38226
|
-
:param builtins.str provider_type: Use 'EXTERNAL' for creating a new database or
|
39388
|
+
:param builtins.str provider_type: Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
|
38227
39389
|
"""
|
39390
|
+
pulumi.set(__self__, "azure_encryption_key_id", azure_encryption_key_id)
|
38228
39391
|
pulumi.set(__self__, "hsm_password", hsm_password)
|
38229
39392
|
pulumi.set(__self__, "provider_type", provider_type)
|
38230
39393
|
|
39394
|
+
@property
|
39395
|
+
@pulumi.getter(name="azureEncryptionKeyId")
|
39396
|
+
def azure_encryption_key_id(self) -> builtins.str:
|
39397
|
+
"""
|
39398
|
+
Provide the key OCID of a registered Azure key.
|
39399
|
+
"""
|
39400
|
+
return pulumi.get(self, "azure_encryption_key_id")
|
39401
|
+
|
38231
39402
|
@property
|
38232
39403
|
@pulumi.getter(name="hsmPassword")
|
38233
39404
|
def hsm_password(self) -> builtins.str:
|
@@ -38240,7 +39411,7 @@ class GetDatabaseDatabaseEncryptionKeyLocationDetailResult(dict):
|
|
38240
39411
|
@pulumi.getter(name="providerType")
|
38241
39412
|
def provider_type(self) -> builtins.str:
|
38242
39413
|
"""
|
38243
|
-
Use 'EXTERNAL' for creating a new database or
|
39414
|
+
Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
|
38244
39415
|
"""
|
38245
39416
|
return pulumi.get(self, "provider_type")
|
38246
39417
|
|
@@ -38281,7 +39452,7 @@ class GetDatabaseDatabaseSourceEncryptionKeyLocationDetailResult(dict):
|
|
38281
39452
|
provider_type: builtins.str):
|
38282
39453
|
"""
|
38283
39454
|
:param builtins.str hsm_password: Provide the HSM password as you would in RDBMS for External HSM.
|
38284
|
-
:param builtins.str provider_type: Use 'EXTERNAL' for creating a new database or
|
39455
|
+
:param builtins.str provider_type: Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
|
38285
39456
|
"""
|
38286
39457
|
pulumi.set(__self__, "hsm_password", hsm_password)
|
38287
39458
|
pulumi.set(__self__, "provider_type", provider_type)
|
@@ -38298,7 +39469,7 @@ class GetDatabaseDatabaseSourceEncryptionKeyLocationDetailResult(dict):
|
|
38298
39469
|
@pulumi.getter(name="providerType")
|
38299
39470
|
def provider_type(self) -> builtins.str:
|
38300
39471
|
"""
|
38301
|
-
Use 'EXTERNAL' for creating a new database or
|
39472
|
+
Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
|
38302
39473
|
"""
|
38303
39474
|
return pulumi.get(self, "provider_type")
|
38304
39475
|
|
@@ -38403,16 +39574,26 @@ class GetDatabaseDbBackupConfigBackupDestinationDetailResult(dict):
|
|
38403
39574
|
def __init__(__self__, *,
|
38404
39575
|
dbrs_policy_id: builtins.str,
|
38405
39576
|
id: builtins.str,
|
39577
|
+
is_remote: builtins.bool,
|
39578
|
+
remote_region: builtins.str,
|
38406
39579
|
type: builtins.str,
|
39580
|
+
vpc_password: builtins.str,
|
38407
39581
|
vpc_user: builtins.str):
|
38408
39582
|
"""
|
38409
39583
|
:param builtins.str dbrs_policy_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
|
38410
39584
|
:param builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database.
|
39585
|
+
:param builtins.bool is_remote: Indicates whether the backup destination is cross-region or local region.
|
39586
|
+
:param builtins.str remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
|
38411
39587
|
:param builtins.str type: Type of the database backup destination.
|
39588
|
+
:param builtins.str vpc_password: For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
|
39589
|
+
:param builtins.str vpc_user: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
|
38412
39590
|
"""
|
38413
39591
|
pulumi.set(__self__, "dbrs_policy_id", dbrs_policy_id)
|
38414
39592
|
pulumi.set(__self__, "id", id)
|
39593
|
+
pulumi.set(__self__, "is_remote", is_remote)
|
39594
|
+
pulumi.set(__self__, "remote_region", remote_region)
|
38415
39595
|
pulumi.set(__self__, "type", type)
|
39596
|
+
pulumi.set(__self__, "vpc_password", vpc_password)
|
38416
39597
|
pulumi.set(__self__, "vpc_user", vpc_user)
|
38417
39598
|
|
38418
39599
|
@property
|
@@ -38431,6 +39612,22 @@ class GetDatabaseDbBackupConfigBackupDestinationDetailResult(dict):
|
|
38431
39612
|
"""
|
38432
39613
|
return pulumi.get(self, "id")
|
38433
39614
|
|
39615
|
+
@property
|
39616
|
+
@pulumi.getter(name="isRemote")
|
39617
|
+
def is_remote(self) -> builtins.bool:
|
39618
|
+
"""
|
39619
|
+
Indicates whether the backup destination is cross-region or local region.
|
39620
|
+
"""
|
39621
|
+
return pulumi.get(self, "is_remote")
|
39622
|
+
|
39623
|
+
@property
|
39624
|
+
@pulumi.getter(name="remoteRegion")
|
39625
|
+
def remote_region(self) -> builtins.str:
|
39626
|
+
"""
|
39627
|
+
The name of the remote region where the remote automatic incremental backups will be stored.
|
39628
|
+
"""
|
39629
|
+
return pulumi.get(self, "remote_region")
|
39630
|
+
|
38434
39631
|
@property
|
38435
39632
|
@pulumi.getter
|
38436
39633
|
def type(self) -> builtins.str:
|
@@ -38439,9 +39636,20 @@ class GetDatabaseDbBackupConfigBackupDestinationDetailResult(dict):
|
|
38439
39636
|
"""
|
38440
39637
|
return pulumi.get(self, "type")
|
38441
39638
|
|
39639
|
+
@property
|
39640
|
+
@pulumi.getter(name="vpcPassword")
|
39641
|
+
def vpc_password(self) -> builtins.str:
|
39642
|
+
"""
|
39643
|
+
For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
|
39644
|
+
"""
|
39645
|
+
return pulumi.get(self, "vpc_password")
|
39646
|
+
|
38442
39647
|
@property
|
38443
39648
|
@pulumi.getter(name="vpcUser")
|
38444
39649
|
def vpc_user(self) -> builtins.str:
|
39650
|
+
"""
|
39651
|
+
For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
|
39652
|
+
"""
|
38445
39653
|
return pulumi.get(self, "vpc_user")
|
38446
39654
|
|
38447
39655
|
|
@@ -39190,6 +40398,7 @@ class GetDatabaseMaintenanceRunHistoriesMaintenanceRunHistoryMaintenanceRunDetai
|
|
39190
40398
|
peer_maintenance_run_id: builtins.str,
|
39191
40399
|
peer_maintenance_run_ids: Sequence[builtins.str],
|
39192
40400
|
state: builtins.str,
|
40401
|
+
system_tags: Mapping[str, builtins.str],
|
39193
40402
|
target_db_server_version: builtins.str,
|
39194
40403
|
target_resource_id: builtins.str,
|
39195
40404
|
target_resource_type: builtins.str,
|
@@ -39224,6 +40433,7 @@ class GetDatabaseMaintenanceRunHistoriesMaintenanceRunHistoryMaintenanceRunDetai
|
|
39224
40433
|
:param builtins.str peer_maintenance_run_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the maintenance run for the Autonomous Data Guard association's peer container database.
|
39225
40434
|
:param Sequence[builtins.str] peer_maintenance_run_ids: The list of OCIDs for the maintenance runs associated with their Autonomous Data Guard peer container databases.
|
39226
40435
|
:param builtins.str state: The state of the maintenance run history.
|
40436
|
+
:param Mapping[str, builtins.str] system_tags: System 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).
|
39227
40437
|
:param builtins.str target_db_server_version: The target software version for the database server patching operation.
|
39228
40438
|
:param builtins.str target_resource_id: The target resource ID.
|
39229
40439
|
:param builtins.str target_resource_type: The type of the target resource.
|
@@ -39258,6 +40468,7 @@ class GetDatabaseMaintenanceRunHistoriesMaintenanceRunHistoryMaintenanceRunDetai
|
|
39258
40468
|
pulumi.set(__self__, "peer_maintenance_run_id", peer_maintenance_run_id)
|
39259
40469
|
pulumi.set(__self__, "peer_maintenance_run_ids", peer_maintenance_run_ids)
|
39260
40470
|
pulumi.set(__self__, "state", state)
|
40471
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
39261
40472
|
pulumi.set(__self__, "target_db_server_version", target_db_server_version)
|
39262
40473
|
pulumi.set(__self__, "target_resource_id", target_resource_id)
|
39263
40474
|
pulumi.set(__self__, "target_resource_type", target_resource_type)
|
@@ -39467,6 +40678,14 @@ class GetDatabaseMaintenanceRunHistoriesMaintenanceRunHistoryMaintenanceRunDetai
|
|
39467
40678
|
"""
|
39468
40679
|
return pulumi.get(self, "state")
|
39469
40680
|
|
40681
|
+
@property
|
40682
|
+
@pulumi.getter(name="systemTags")
|
40683
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
40684
|
+
"""
|
40685
|
+
System 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).
|
40686
|
+
"""
|
40687
|
+
return pulumi.get(self, "system_tags")
|
40688
|
+
|
39470
40689
|
@property
|
39471
40690
|
@pulumi.getter(name="targetDbServerVersion")
|
39472
40691
|
def target_db_server_version(self) -> builtins.str:
|
@@ -40239,6 +41458,7 @@ class GetDatabaseMaintenanceRunHistoryMaintenanceRunDetailResult(dict):
|
|
40239
41458
|
peer_maintenance_run_id: builtins.str,
|
40240
41459
|
peer_maintenance_run_ids: Sequence[builtins.str],
|
40241
41460
|
state: builtins.str,
|
41461
|
+
system_tags: Mapping[str, builtins.str],
|
40242
41462
|
target_db_server_version: builtins.str,
|
40243
41463
|
target_resource_id: builtins.str,
|
40244
41464
|
target_resource_type: builtins.str,
|
@@ -40273,6 +41493,7 @@ class GetDatabaseMaintenanceRunHistoryMaintenanceRunDetailResult(dict):
|
|
40273
41493
|
:param builtins.str peer_maintenance_run_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the maintenance run for the Autonomous Data Guard association's peer container database.
|
40274
41494
|
:param Sequence[builtins.str] peer_maintenance_run_ids: The list of OCIDs for the maintenance runs associated with their Autonomous Data Guard peer container databases.
|
40275
41495
|
:param builtins.str state: The current state of the maintenance run. For Autonomous Database Serverless instances, valid states are IN_PROGRESS, SUCCEEDED, and FAILED.
|
41496
|
+
:param Mapping[str, builtins.str] system_tags: System 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).
|
40276
41497
|
:param builtins.str target_db_server_version: The target software version for the database server patching operation.
|
40277
41498
|
:param builtins.str target_resource_id: The ID of the target resource on which the maintenance run occurs.
|
40278
41499
|
:param builtins.str target_resource_type: The type of the target resource on which the maintenance run occurs.
|
@@ -40307,6 +41528,7 @@ class GetDatabaseMaintenanceRunHistoryMaintenanceRunDetailResult(dict):
|
|
40307
41528
|
pulumi.set(__self__, "peer_maintenance_run_id", peer_maintenance_run_id)
|
40308
41529
|
pulumi.set(__self__, "peer_maintenance_run_ids", peer_maintenance_run_ids)
|
40309
41530
|
pulumi.set(__self__, "state", state)
|
41531
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
40310
41532
|
pulumi.set(__self__, "target_db_server_version", target_db_server_version)
|
40311
41533
|
pulumi.set(__self__, "target_resource_id", target_resource_id)
|
40312
41534
|
pulumi.set(__self__, "target_resource_type", target_resource_type)
|
@@ -40516,6 +41738,14 @@ class GetDatabaseMaintenanceRunHistoryMaintenanceRunDetailResult(dict):
|
|
40516
41738
|
"""
|
40517
41739
|
return pulumi.get(self, "state")
|
40518
41740
|
|
41741
|
+
@property
|
41742
|
+
@pulumi.getter(name="systemTags")
|
41743
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
41744
|
+
"""
|
41745
|
+
System 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).
|
41746
|
+
"""
|
41747
|
+
return pulumi.get(self, "system_tags")
|
41748
|
+
|
40519
41749
|
@property
|
40520
41750
|
@pulumi.getter(name="targetDbServerVersion")
|
40521
41751
|
def target_db_server_version(self) -> builtins.str:
|
@@ -40817,6 +42047,7 @@ class GetDatabaseSoftwareImagesDatabaseSoftwareImageResult(dict):
|
|
40817
42047
|
patch_set: builtins.str,
|
40818
42048
|
source_db_home_id: builtins.str,
|
40819
42049
|
state: builtins.str,
|
42050
|
+
system_tags: Mapping[str, builtins.str],
|
40820
42051
|
time_created: builtins.str):
|
40821
42052
|
"""
|
40822
42053
|
:param builtins.str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
@@ -40835,6 +42066,7 @@ class GetDatabaseSoftwareImagesDatabaseSoftwareImageResult(dict):
|
|
40835
42066
|
:param builtins.str ls_inventory: The output from the OPatch lsInventory command, which is passed as a string.
|
40836
42067
|
:param builtins.str patch_set: The PSU or PBP or Release Updates. To get a list of supported versions, use the [ListDbVersions](https://docs.cloud.oracle.com/iaas/api/#/en/database/latest/DbVersionSummary/ListDbVersions) operation.
|
40837
42068
|
:param builtins.str state: A filter to return only resources that match the given lifecycle state exactly.
|
42069
|
+
:param Mapping[str, builtins.str] system_tags: System 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).
|
40838
42070
|
:param builtins.str time_created: The date and time the database software image was created.
|
40839
42071
|
"""
|
40840
42072
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -40854,6 +42086,7 @@ class GetDatabaseSoftwareImagesDatabaseSoftwareImageResult(dict):
|
|
40854
42086
|
pulumi.set(__self__, "patch_set", patch_set)
|
40855
42087
|
pulumi.set(__self__, "source_db_home_id", source_db_home_id)
|
40856
42088
|
pulumi.set(__self__, "state", state)
|
42089
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
40857
42090
|
pulumi.set(__self__, "time_created", time_created)
|
40858
42091
|
|
40859
42092
|
@property
|
@@ -40989,6 +42222,14 @@ class GetDatabaseSoftwareImagesDatabaseSoftwareImageResult(dict):
|
|
40989
42222
|
"""
|
40990
42223
|
return pulumi.get(self, "state")
|
40991
42224
|
|
42225
|
+
@property
|
42226
|
+
@pulumi.getter(name="systemTags")
|
42227
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
42228
|
+
"""
|
42229
|
+
System 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).
|
42230
|
+
"""
|
42231
|
+
return pulumi.get(self, "system_tags")
|
42232
|
+
|
40992
42233
|
@property
|
40993
42234
|
@pulumi.getter(name="timeCreated")
|
40994
42235
|
def time_created(self) -> builtins.str:
|
@@ -41234,6 +42475,7 @@ class GetDatabasesDatabaseResult(dict):
|
|
41234
42475
|
source: builtins.str,
|
41235
42476
|
source_database_point_in_time_recovery_timestamp: builtins.str,
|
41236
42477
|
state: builtins.str,
|
42478
|
+
system_tags: Mapping[str, builtins.str],
|
41237
42479
|
time_created: builtins.str,
|
41238
42480
|
vault_id: builtins.str,
|
41239
42481
|
vm_cluster_id: builtins.str):
|
@@ -41267,6 +42509,7 @@ class GetDatabasesDatabaseResult(dict):
|
|
41267
42509
|
:param builtins.str sid_prefix: Specifies a prefix for the `Oracle SID` of the database to be created.
|
41268
42510
|
:param builtins.str source_database_point_in_time_recovery_timestamp: Point in time recovery timeStamp of the source database at which cloned database system is cloned from the source database system, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339)
|
41269
42511
|
:param builtins.str state: A filter to return only resources that match the given lifecycle state exactly.
|
42512
|
+
:param Mapping[str, builtins.str] system_tags: System 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).
|
41270
42513
|
:param builtins.str time_created: The date and time the database was created.
|
41271
42514
|
:param builtins.str vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
|
41272
42515
|
:param builtins.str vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster.
|
@@ -41307,6 +42550,7 @@ class GetDatabasesDatabaseResult(dict):
|
|
41307
42550
|
pulumi.set(__self__, "source", source)
|
41308
42551
|
pulumi.set(__self__, "source_database_point_in_time_recovery_timestamp", source_database_point_in_time_recovery_timestamp)
|
41309
42552
|
pulumi.set(__self__, "state", state)
|
42553
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
41310
42554
|
pulumi.set(__self__, "time_created", time_created)
|
41311
42555
|
pulumi.set(__self__, "vault_id", vault_id)
|
41312
42556
|
pulumi.set(__self__, "vm_cluster_id", vm_cluster_id)
|
@@ -41578,6 +42822,14 @@ class GetDatabasesDatabaseResult(dict):
|
|
41578
42822
|
"""
|
41579
42823
|
return pulumi.get(self, "state")
|
41580
42824
|
|
42825
|
+
@property
|
42826
|
+
@pulumi.getter(name="systemTags")
|
42827
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
42828
|
+
"""
|
42829
|
+
System 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).
|
42830
|
+
"""
|
42831
|
+
return pulumi.get(self, "system_tags")
|
42832
|
+
|
41581
42833
|
@property
|
41582
42834
|
@pulumi.getter(name="timeCreated")
|
41583
42835
|
def time_created(self) -> builtins.str:
|
@@ -42158,16 +43410,24 @@ class GetDatabasesDatabaseDatabaseDbBackupConfigBackupDestinationDetailResult(di
|
|
42158
43410
|
def __init__(__self__, *,
|
42159
43411
|
dbrs_policy_id: builtins.str,
|
42160
43412
|
id: builtins.str,
|
43413
|
+
is_remote: builtins.bool,
|
43414
|
+
remote_region: builtins.str,
|
42161
43415
|
type: builtins.str,
|
43416
|
+
vpc_password: builtins.str,
|
42162
43417
|
vpc_user: builtins.str):
|
42163
43418
|
"""
|
42164
43419
|
:param builtins.str dbrs_policy_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
|
42165
43420
|
:param builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database.
|
43421
|
+
:param builtins.bool is_remote: Indicates whether the backup destination is cross-region or local region.
|
43422
|
+
:param builtins.str remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
|
42166
43423
|
:param builtins.str type: Type of the database backup destination.
|
42167
43424
|
"""
|
42168
43425
|
pulumi.set(__self__, "dbrs_policy_id", dbrs_policy_id)
|
42169
43426
|
pulumi.set(__self__, "id", id)
|
43427
|
+
pulumi.set(__self__, "is_remote", is_remote)
|
43428
|
+
pulumi.set(__self__, "remote_region", remote_region)
|
42170
43429
|
pulumi.set(__self__, "type", type)
|
43430
|
+
pulumi.set(__self__, "vpc_password", vpc_password)
|
42171
43431
|
pulumi.set(__self__, "vpc_user", vpc_user)
|
42172
43432
|
|
42173
43433
|
@property
|
@@ -42186,6 +43446,22 @@ class GetDatabasesDatabaseDatabaseDbBackupConfigBackupDestinationDetailResult(di
|
|
42186
43446
|
"""
|
42187
43447
|
return pulumi.get(self, "id")
|
42188
43448
|
|
43449
|
+
@property
|
43450
|
+
@pulumi.getter(name="isRemote")
|
43451
|
+
def is_remote(self) -> builtins.bool:
|
43452
|
+
"""
|
43453
|
+
Indicates whether the backup destination is cross-region or local region.
|
43454
|
+
"""
|
43455
|
+
return pulumi.get(self, "is_remote")
|
43456
|
+
|
43457
|
+
@property
|
43458
|
+
@pulumi.getter(name="remoteRegion")
|
43459
|
+
def remote_region(self) -> builtins.str:
|
43460
|
+
"""
|
43461
|
+
The name of the remote region where the remote automatic incremental backups will be stored.
|
43462
|
+
"""
|
43463
|
+
return pulumi.get(self, "remote_region")
|
43464
|
+
|
42189
43465
|
@property
|
42190
43466
|
@pulumi.getter
|
42191
43467
|
def type(self) -> builtins.str:
|
@@ -42194,6 +43470,11 @@ class GetDatabasesDatabaseDatabaseDbBackupConfigBackupDestinationDetailResult(di
|
|
42194
43470
|
"""
|
42195
43471
|
return pulumi.get(self, "type")
|
42196
43472
|
|
43473
|
+
@property
|
43474
|
+
@pulumi.getter(name="vpcPassword")
|
43475
|
+
def vpc_password(self) -> builtins.str:
|
43476
|
+
return pulumi.get(self, "vpc_password")
|
43477
|
+
|
42197
43478
|
@property
|
42198
43479
|
@pulumi.getter(name="vpcUser")
|
42199
43480
|
def vpc_user(self) -> builtins.str:
|
@@ -42203,15 +43484,26 @@ class GetDatabasesDatabaseDatabaseDbBackupConfigBackupDestinationDetailResult(di
|
|
42203
43484
|
@pulumi.output_type
|
42204
43485
|
class GetDatabasesDatabaseDatabaseEncryptionKeyLocationDetailResult(dict):
|
42205
43486
|
def __init__(__self__, *,
|
43487
|
+
azure_encryption_key_id: builtins.str,
|
42206
43488
|
hsm_password: builtins.str,
|
42207
43489
|
provider_type: builtins.str):
|
42208
43490
|
"""
|
43491
|
+
:param builtins.str azure_encryption_key_id: Provide the key OCID of a registered Azure key.
|
42209
43492
|
:param builtins.str hsm_password: Provide the HSM password as you would in RDBMS for External HSM.
|
42210
|
-
:param builtins.str provider_type: Use 'EXTERNAL' for creating a new database or
|
43493
|
+
:param builtins.str provider_type: Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
|
42211
43494
|
"""
|
43495
|
+
pulumi.set(__self__, "azure_encryption_key_id", azure_encryption_key_id)
|
42212
43496
|
pulumi.set(__self__, "hsm_password", hsm_password)
|
42213
43497
|
pulumi.set(__self__, "provider_type", provider_type)
|
42214
43498
|
|
43499
|
+
@property
|
43500
|
+
@pulumi.getter(name="azureEncryptionKeyId")
|
43501
|
+
def azure_encryption_key_id(self) -> builtins.str:
|
43502
|
+
"""
|
43503
|
+
Provide the key OCID of a registered Azure key.
|
43504
|
+
"""
|
43505
|
+
return pulumi.get(self, "azure_encryption_key_id")
|
43506
|
+
|
42215
43507
|
@property
|
42216
43508
|
@pulumi.getter(name="hsmPassword")
|
42217
43509
|
def hsm_password(self) -> builtins.str:
|
@@ -42224,7 +43516,7 @@ class GetDatabasesDatabaseDatabaseEncryptionKeyLocationDetailResult(dict):
|
|
42224
43516
|
@pulumi.getter(name="providerType")
|
42225
43517
|
def provider_type(self) -> builtins.str:
|
42226
43518
|
"""
|
42227
|
-
Use 'EXTERNAL' for creating a new database or
|
43519
|
+
Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
|
42228
43520
|
"""
|
42229
43521
|
return pulumi.get(self, "provider_type")
|
42230
43522
|
|
@@ -42265,7 +43557,7 @@ class GetDatabasesDatabaseDatabaseSourceEncryptionKeyLocationDetailResult(dict):
|
|
42265
43557
|
provider_type: builtins.str):
|
42266
43558
|
"""
|
42267
43559
|
:param builtins.str hsm_password: Provide the HSM password as you would in RDBMS for External HSM.
|
42268
|
-
:param builtins.str provider_type: Use 'EXTERNAL' for creating a new database or
|
43560
|
+
:param builtins.str provider_type: Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
|
42269
43561
|
"""
|
42270
43562
|
pulumi.set(__self__, "hsm_password", hsm_password)
|
42271
43563
|
pulumi.set(__self__, "provider_type", provider_type)
|
@@ -42282,7 +43574,7 @@ class GetDatabasesDatabaseDatabaseSourceEncryptionKeyLocationDetailResult(dict):
|
|
42282
43574
|
@pulumi.getter(name="providerType")
|
42283
43575
|
def provider_type(self) -> builtins.str:
|
42284
43576
|
"""
|
42285
|
-
Use 'EXTERNAL' for creating a new database or
|
43577
|
+
Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
|
42286
43578
|
"""
|
42287
43579
|
return pulumi.get(self, "provider_type")
|
42288
43580
|
|
@@ -42387,16 +43679,24 @@ class GetDatabasesDatabaseDbBackupConfigBackupDestinationDetailResult(dict):
|
|
42387
43679
|
def __init__(__self__, *,
|
42388
43680
|
dbrs_policy_id: builtins.str,
|
42389
43681
|
id: builtins.str,
|
43682
|
+
is_remote: builtins.bool,
|
43683
|
+
remote_region: builtins.str,
|
42390
43684
|
type: builtins.str,
|
43685
|
+
vpc_password: builtins.str,
|
42391
43686
|
vpc_user: builtins.str):
|
42392
43687
|
"""
|
42393
43688
|
:param builtins.str dbrs_policy_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
|
42394
43689
|
:param builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database.
|
43690
|
+
:param builtins.bool is_remote: Indicates whether the backup destination is cross-region or local region.
|
43691
|
+
:param builtins.str remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
|
42395
43692
|
:param builtins.str type: Type of the database backup destination.
|
42396
43693
|
"""
|
42397
43694
|
pulumi.set(__self__, "dbrs_policy_id", dbrs_policy_id)
|
42398
43695
|
pulumi.set(__self__, "id", id)
|
43696
|
+
pulumi.set(__self__, "is_remote", is_remote)
|
43697
|
+
pulumi.set(__self__, "remote_region", remote_region)
|
42399
43698
|
pulumi.set(__self__, "type", type)
|
43699
|
+
pulumi.set(__self__, "vpc_password", vpc_password)
|
42400
43700
|
pulumi.set(__self__, "vpc_user", vpc_user)
|
42401
43701
|
|
42402
43702
|
@property
|
@@ -42415,6 +43715,22 @@ class GetDatabasesDatabaseDbBackupConfigBackupDestinationDetailResult(dict):
|
|
42415
43715
|
"""
|
42416
43716
|
return pulumi.get(self, "id")
|
42417
43717
|
|
43718
|
+
@property
|
43719
|
+
@pulumi.getter(name="isRemote")
|
43720
|
+
def is_remote(self) -> builtins.bool:
|
43721
|
+
"""
|
43722
|
+
Indicates whether the backup destination is cross-region or local region.
|
43723
|
+
"""
|
43724
|
+
return pulumi.get(self, "is_remote")
|
43725
|
+
|
43726
|
+
@property
|
43727
|
+
@pulumi.getter(name="remoteRegion")
|
43728
|
+
def remote_region(self) -> builtins.str:
|
43729
|
+
"""
|
43730
|
+
The name of the remote region where the remote automatic incremental backups will be stored.
|
43731
|
+
"""
|
43732
|
+
return pulumi.get(self, "remote_region")
|
43733
|
+
|
42418
43734
|
@property
|
42419
43735
|
@pulumi.getter
|
42420
43736
|
def type(self) -> builtins.str:
|
@@ -42423,6 +43739,11 @@ class GetDatabasesDatabaseDbBackupConfigBackupDestinationDetailResult(dict):
|
|
42423
43739
|
"""
|
42424
43740
|
return pulumi.get(self, "type")
|
42425
43741
|
|
43742
|
+
@property
|
43743
|
+
@pulumi.getter(name="vpcPassword")
|
43744
|
+
def vpc_password(self) -> builtins.str:
|
43745
|
+
return pulumi.get(self, "vpc_password")
|
43746
|
+
|
42426
43747
|
@property
|
42427
43748
|
@pulumi.getter(name="vpcUser")
|
42428
43749
|
def vpc_user(self) -> builtins.str:
|
@@ -42794,13 +44115,21 @@ class GetDbHomeDatabaseDbBackupConfigBackupDestinationDetailResult(dict):
|
|
42794
44115
|
def __init__(__self__, *,
|
42795
44116
|
dbrs_policy_id: builtins.str,
|
42796
44117
|
id: builtins.str,
|
42797
|
-
|
44118
|
+
is_remote: builtins.bool,
|
44119
|
+
remote_region: builtins.str,
|
44120
|
+
type: builtins.str,
|
44121
|
+
vpc_password: builtins.str,
|
44122
|
+
vpc_user: builtins.str):
|
42798
44123
|
"""
|
42799
44124
|
:param builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Home.
|
42800
44125
|
"""
|
42801
44126
|
pulumi.set(__self__, "dbrs_policy_id", dbrs_policy_id)
|
42802
44127
|
pulumi.set(__self__, "id", id)
|
44128
|
+
pulumi.set(__self__, "is_remote", is_remote)
|
44129
|
+
pulumi.set(__self__, "remote_region", remote_region)
|
42803
44130
|
pulumi.set(__self__, "type", type)
|
44131
|
+
pulumi.set(__self__, "vpc_password", vpc_password)
|
44132
|
+
pulumi.set(__self__, "vpc_user", vpc_user)
|
42804
44133
|
|
42805
44134
|
@property
|
42806
44135
|
@pulumi.getter(name="dbrsPolicyId")
|
@@ -42815,20 +44144,47 @@ class GetDbHomeDatabaseDbBackupConfigBackupDestinationDetailResult(dict):
|
|
42815
44144
|
"""
|
42816
44145
|
return pulumi.get(self, "id")
|
42817
44146
|
|
44147
|
+
@property
|
44148
|
+
@pulumi.getter(name="isRemote")
|
44149
|
+
def is_remote(self) -> builtins.bool:
|
44150
|
+
return pulumi.get(self, "is_remote")
|
44151
|
+
|
44152
|
+
@property
|
44153
|
+
@pulumi.getter(name="remoteRegion")
|
44154
|
+
def remote_region(self) -> builtins.str:
|
44155
|
+
return pulumi.get(self, "remote_region")
|
44156
|
+
|
42818
44157
|
@property
|
42819
44158
|
@pulumi.getter
|
42820
44159
|
def type(self) -> builtins.str:
|
42821
44160
|
return pulumi.get(self, "type")
|
42822
44161
|
|
44162
|
+
@property
|
44163
|
+
@pulumi.getter(name="vpcPassword")
|
44164
|
+
def vpc_password(self) -> builtins.str:
|
44165
|
+
return pulumi.get(self, "vpc_password")
|
44166
|
+
|
44167
|
+
@property
|
44168
|
+
@pulumi.getter(name="vpcUser")
|
44169
|
+
def vpc_user(self) -> builtins.str:
|
44170
|
+
return pulumi.get(self, "vpc_user")
|
44171
|
+
|
42823
44172
|
|
42824
44173
|
@pulumi.output_type
|
42825
44174
|
class GetDbHomeDatabaseEncryptionKeyLocationDetailResult(dict):
|
42826
44175
|
def __init__(__self__, *,
|
44176
|
+
azure_encryption_key_id: builtins.str,
|
42827
44177
|
hsm_password: builtins.str,
|
42828
44178
|
provider_type: builtins.str):
|
44179
|
+
pulumi.set(__self__, "azure_encryption_key_id", azure_encryption_key_id)
|
42829
44180
|
pulumi.set(__self__, "hsm_password", hsm_password)
|
42830
44181
|
pulumi.set(__self__, "provider_type", provider_type)
|
42831
44182
|
|
44183
|
+
@property
|
44184
|
+
@pulumi.getter(name="azureEncryptionKeyId")
|
44185
|
+
def azure_encryption_key_id(self) -> builtins.str:
|
44186
|
+
return pulumi.get(self, "azure_encryption_key_id")
|
44187
|
+
|
42832
44188
|
@property
|
42833
44189
|
@pulumi.getter(name="hsmPassword")
|
42834
44190
|
def hsm_password(self) -> builtins.str:
|
@@ -43107,6 +44463,7 @@ class GetDbHomesDbHomeResult(dict):
|
|
43107
44463
|
lifecycle_details: builtins.str,
|
43108
44464
|
source: builtins.str,
|
43109
44465
|
state: builtins.str,
|
44466
|
+
system_tags: Mapping[str, builtins.str],
|
43110
44467
|
time_created: builtins.str,
|
43111
44468
|
vm_cluster_id: builtins.str):
|
43112
44469
|
"""
|
@@ -43124,6 +44481,7 @@ class GetDbHomesDbHomeResult(dict):
|
|
43124
44481
|
:param builtins.str last_patch_history_entry_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last patch history. This value is updated as soon as a patch operation is started.
|
43125
44482
|
:param builtins.str lifecycle_details: Additional information about the current lifecycle state.
|
43126
44483
|
:param builtins.str state: A filter to return only resources that match the given lifecycle state exactly.
|
44484
|
+
:param Mapping[str, builtins.str] system_tags: System 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).
|
43127
44485
|
:param builtins.str time_created: The date and time the Database Home was created.
|
43128
44486
|
:param builtins.str vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster.
|
43129
44487
|
"""
|
@@ -43147,6 +44505,7 @@ class GetDbHomesDbHomeResult(dict):
|
|
43147
44505
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
43148
44506
|
pulumi.set(__self__, "source", source)
|
43149
44507
|
pulumi.set(__self__, "state", state)
|
44508
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
43150
44509
|
pulumi.set(__self__, "time_created", time_created)
|
43151
44510
|
pulumi.set(__self__, "vm_cluster_id", vm_cluster_id)
|
43152
44511
|
|
@@ -43292,6 +44651,14 @@ class GetDbHomesDbHomeResult(dict):
|
|
43292
44651
|
"""
|
43293
44652
|
return pulumi.get(self, "state")
|
43294
44653
|
|
44654
|
+
@property
|
44655
|
+
@pulumi.getter(name="systemTags")
|
44656
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
44657
|
+
"""
|
44658
|
+
System 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).
|
44659
|
+
"""
|
44660
|
+
return pulumi.get(self, "system_tags")
|
44661
|
+
|
43295
44662
|
@property
|
43296
44663
|
@pulumi.getter(name="timeCreated")
|
43297
44664
|
def time_created(self) -> builtins.str:
|
@@ -43651,13 +45018,21 @@ class GetDbHomesDbHomeDatabaseDbBackupConfigBackupDestinationDetailResult(dict):
|
|
43651
45018
|
def __init__(__self__, *,
|
43652
45019
|
dbrs_policy_id: builtins.str,
|
43653
45020
|
id: builtins.str,
|
43654
|
-
|
45021
|
+
is_remote: builtins.bool,
|
45022
|
+
remote_region: builtins.str,
|
45023
|
+
type: builtins.str,
|
45024
|
+
vpc_password: builtins.str,
|
45025
|
+
vpc_user: builtins.str):
|
43655
45026
|
"""
|
43656
45027
|
:param builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Home.
|
43657
45028
|
"""
|
43658
45029
|
pulumi.set(__self__, "dbrs_policy_id", dbrs_policy_id)
|
43659
45030
|
pulumi.set(__self__, "id", id)
|
45031
|
+
pulumi.set(__self__, "is_remote", is_remote)
|
45032
|
+
pulumi.set(__self__, "remote_region", remote_region)
|
43660
45033
|
pulumi.set(__self__, "type", type)
|
45034
|
+
pulumi.set(__self__, "vpc_password", vpc_password)
|
45035
|
+
pulumi.set(__self__, "vpc_user", vpc_user)
|
43661
45036
|
|
43662
45037
|
@property
|
43663
45038
|
@pulumi.getter(name="dbrsPolicyId")
|
@@ -43672,20 +45047,47 @@ class GetDbHomesDbHomeDatabaseDbBackupConfigBackupDestinationDetailResult(dict):
|
|
43672
45047
|
"""
|
43673
45048
|
return pulumi.get(self, "id")
|
43674
45049
|
|
45050
|
+
@property
|
45051
|
+
@pulumi.getter(name="isRemote")
|
45052
|
+
def is_remote(self) -> builtins.bool:
|
45053
|
+
return pulumi.get(self, "is_remote")
|
45054
|
+
|
45055
|
+
@property
|
45056
|
+
@pulumi.getter(name="remoteRegion")
|
45057
|
+
def remote_region(self) -> builtins.str:
|
45058
|
+
return pulumi.get(self, "remote_region")
|
45059
|
+
|
43675
45060
|
@property
|
43676
45061
|
@pulumi.getter
|
43677
45062
|
def type(self) -> builtins.str:
|
43678
45063
|
return pulumi.get(self, "type")
|
43679
45064
|
|
45065
|
+
@property
|
45066
|
+
@pulumi.getter(name="vpcPassword")
|
45067
|
+
def vpc_password(self) -> builtins.str:
|
45068
|
+
return pulumi.get(self, "vpc_password")
|
45069
|
+
|
45070
|
+
@property
|
45071
|
+
@pulumi.getter(name="vpcUser")
|
45072
|
+
def vpc_user(self) -> builtins.str:
|
45073
|
+
return pulumi.get(self, "vpc_user")
|
45074
|
+
|
43680
45075
|
|
43681
45076
|
@pulumi.output_type
|
43682
45077
|
class GetDbHomesDbHomeDatabaseEncryptionKeyLocationDetailResult(dict):
|
43683
45078
|
def __init__(__self__, *,
|
45079
|
+
azure_encryption_key_id: builtins.str,
|
43684
45080
|
hsm_password: builtins.str,
|
43685
45081
|
provider_type: builtins.str):
|
45082
|
+
pulumi.set(__self__, "azure_encryption_key_id", azure_encryption_key_id)
|
43686
45083
|
pulumi.set(__self__, "hsm_password", hsm_password)
|
43687
45084
|
pulumi.set(__self__, "provider_type", provider_type)
|
43688
45085
|
|
45086
|
+
@property
|
45087
|
+
@pulumi.getter(name="azureEncryptionKeyId")
|
45088
|
+
def azure_encryption_key_id(self) -> builtins.str:
|
45089
|
+
return pulumi.get(self, "azure_encryption_key_id")
|
45090
|
+
|
43689
45091
|
@property
|
43690
45092
|
@pulumi.getter(name="hsmPassword")
|
43691
45093
|
def hsm_password(self) -> builtins.str:
|
@@ -44045,6 +45447,7 @@ class GetDbNodesDbNodeResult(dict):
|
|
44045
45447
|
memory_size_in_gbs: builtins.int,
|
44046
45448
|
software_storage_size_in_gb: builtins.int,
|
44047
45449
|
state: builtins.str,
|
45450
|
+
system_tags: Mapping[str, builtins.str],
|
44048
45451
|
time_created: builtins.str,
|
44049
45452
|
time_maintenance_window_end: builtins.str,
|
44050
45453
|
time_maintenance_window_start: builtins.str,
|
@@ -44073,6 +45476,7 @@ class GetDbNodesDbNodeResult(dict):
|
|
44073
45476
|
:param builtins.int memory_size_in_gbs: The allocated memory in GBs on the Db node.
|
44074
45477
|
:param builtins.int software_storage_size_in_gb: The size (in GB) of the block storage volume allocation for the DB system. This attribute applies only for virtual machine DB systems.
|
44075
45478
|
:param builtins.str state: A filter to return only resources that match the given lifecycle state exactly.
|
45479
|
+
:param Mapping[str, builtins.str] system_tags: System 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).
|
44076
45480
|
:param builtins.str time_created: The date and time that the database node was created.
|
44077
45481
|
:param builtins.str time_maintenance_window_end: End date and time of maintenance window.
|
44078
45482
|
:param builtins.str time_maintenance_window_start: Start date and time of maintenance window.
|
@@ -44102,6 +45506,7 @@ class GetDbNodesDbNodeResult(dict):
|
|
44102
45506
|
pulumi.set(__self__, "memory_size_in_gbs", memory_size_in_gbs)
|
44103
45507
|
pulumi.set(__self__, "software_storage_size_in_gb", software_storage_size_in_gb)
|
44104
45508
|
pulumi.set(__self__, "state", state)
|
45509
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
44105
45510
|
pulumi.set(__self__, "time_created", time_created)
|
44106
45511
|
pulumi.set(__self__, "time_maintenance_window_end", time_maintenance_window_end)
|
44107
45512
|
pulumi.set(__self__, "time_maintenance_window_start", time_maintenance_window_start)
|
@@ -44282,6 +45687,14 @@ class GetDbNodesDbNodeResult(dict):
|
|
44282
45687
|
"""
|
44283
45688
|
return pulumi.get(self, "state")
|
44284
45689
|
|
45690
|
+
@property
|
45691
|
+
@pulumi.getter(name="systemTags")
|
45692
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
45693
|
+
"""
|
45694
|
+
System 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).
|
45695
|
+
"""
|
45696
|
+
return pulumi.get(self, "system_tags")
|
45697
|
+
|
44285
45698
|
@property
|
44286
45699
|
@pulumi.getter(name="timeCreated")
|
44287
45700
|
def time_created(self) -> builtins.str:
|
@@ -44432,6 +45845,7 @@ class GetDbServersDbServerResult(dict):
|
|
44432
45845
|
memory_size_in_gbs: builtins.int,
|
44433
45846
|
shape: builtins.str,
|
44434
45847
|
state: builtins.str,
|
45848
|
+
system_tags: Mapping[str, builtins.str],
|
44435
45849
|
time_created: builtins.str,
|
44436
45850
|
vm_cluster_ids: Sequence[builtins.str]):
|
44437
45851
|
"""
|
@@ -44455,6 +45869,7 @@ class GetDbServersDbServerResult(dict):
|
|
44455
45869
|
:param builtins.int memory_size_in_gbs: The allocated memory in GBs on the Db server.
|
44456
45870
|
:param builtins.str shape: The shape of the Db server. The shape determines the amount of CPU, storage, and memory resources available.
|
44457
45871
|
:param builtins.str state: A filter to return only resources that match the given lifecycle state exactly.
|
45872
|
+
:param Mapping[str, builtins.str] system_tags: System 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).
|
44458
45873
|
:param builtins.str time_created: The date and time that the Db Server was created.
|
44459
45874
|
:param Sequence[builtins.str] vm_cluster_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM Clusters associated with the Db server.
|
44460
45875
|
"""
|
@@ -44478,6 +45893,7 @@ class GetDbServersDbServerResult(dict):
|
|
44478
45893
|
pulumi.set(__self__, "memory_size_in_gbs", memory_size_in_gbs)
|
44479
45894
|
pulumi.set(__self__, "shape", shape)
|
44480
45895
|
pulumi.set(__self__, "state", state)
|
45896
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
44481
45897
|
pulumi.set(__self__, "time_created", time_created)
|
44482
45898
|
pulumi.set(__self__, "vm_cluster_ids", vm_cluster_ids)
|
44483
45899
|
|
@@ -44641,6 +46057,14 @@ class GetDbServersDbServerResult(dict):
|
|
44641
46057
|
"""
|
44642
46058
|
return pulumi.get(self, "state")
|
44643
46059
|
|
46060
|
+
@property
|
46061
|
+
@pulumi.getter(name="systemTags")
|
46062
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
46063
|
+
"""
|
46064
|
+
System 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).
|
46065
|
+
"""
|
46066
|
+
return pulumi.get(self, "system_tags")
|
46067
|
+
|
44644
46068
|
@property
|
44645
46069
|
@pulumi.getter(name="timeCreated")
|
44646
46070
|
def time_created(self) -> builtins.str:
|
@@ -45732,6 +47156,7 @@ class GetDbSystemsDbSystemResult(dict):
|
|
45732
47156
|
state: builtins.str,
|
45733
47157
|
storage_volume_performance_mode: builtins.str,
|
45734
47158
|
subnet_id: builtins.str,
|
47159
|
+
system_tags: Mapping[str, builtins.str],
|
45735
47160
|
time_created: builtins.str,
|
45736
47161
|
time_zone: builtins.str,
|
45737
47162
|
version: builtins.str,
|
@@ -45787,6 +47212,7 @@ class GetDbSystemsDbSystemResult(dict):
|
|
45787
47212
|
:param builtins.str state: A filter to return only resources that match the given lifecycle state exactly.
|
45788
47213
|
:param builtins.str storage_volume_performance_mode: The block storage volume performance level. Valid values are `BALANCED` and `HIGH_PERFORMANCE`. See [Block Volume Performance](https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm) for more information.
|
45789
47214
|
:param builtins.str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the DB system is associated with.
|
47215
|
+
:param Mapping[str, builtins.str] system_tags: System 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).
|
45790
47216
|
:param builtins.str time_created: The date and time the DB system was created.
|
45791
47217
|
:param builtins.str time_zone: The time zone of the DB system. For details, see [DB System Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
45792
47218
|
:param builtins.str version: The Oracle Database version of the DB system.
|
@@ -45846,6 +47272,7 @@ class GetDbSystemsDbSystemResult(dict):
|
|
45846
47272
|
pulumi.set(__self__, "state", state)
|
45847
47273
|
pulumi.set(__self__, "storage_volume_performance_mode", storage_volume_performance_mode)
|
45848
47274
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
47275
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
45849
47276
|
pulumi.set(__self__, "time_created", time_created)
|
45850
47277
|
pulumi.set(__self__, "time_zone", time_zone)
|
45851
47278
|
pulumi.set(__self__, "version", version)
|
@@ -46251,6 +47678,14 @@ class GetDbSystemsDbSystemResult(dict):
|
|
46251
47678
|
"""
|
46252
47679
|
return pulumi.get(self, "subnet_id")
|
46253
47680
|
|
47681
|
+
@property
|
47682
|
+
@pulumi.getter(name="systemTags")
|
47683
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
47684
|
+
"""
|
47685
|
+
System 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).
|
47686
|
+
"""
|
47687
|
+
return pulumi.get(self, "system_tags")
|
47688
|
+
|
46254
47689
|
@property
|
46255
47690
|
@pulumi.getter(name="timeCreated")
|
46256
47691
|
def time_created(self) -> builtins.str:
|
@@ -46790,12 +48225,16 @@ class GetDbSystemsDbSystemDbHomeDatabaseDbBackupConfigBackupDestinationDetailRes
|
|
46790
48225
|
def __init__(__self__, *,
|
46791
48226
|
dbrs_policy_id: builtins.str,
|
46792
48227
|
id: builtins.str,
|
48228
|
+
is_remote: builtins.bool,
|
48229
|
+
remote_region: builtins.str,
|
46793
48230
|
type: builtins.str):
|
46794
48231
|
"""
|
46795
48232
|
:param builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DB system.
|
46796
48233
|
"""
|
46797
48234
|
pulumi.set(__self__, "dbrs_policy_id", dbrs_policy_id)
|
46798
48235
|
pulumi.set(__self__, "id", id)
|
48236
|
+
pulumi.set(__self__, "is_remote", is_remote)
|
48237
|
+
pulumi.set(__self__, "remote_region", remote_region)
|
46799
48238
|
pulumi.set(__self__, "type", type)
|
46800
48239
|
|
46801
48240
|
@property
|
@@ -46811,6 +48250,16 @@ class GetDbSystemsDbSystemDbHomeDatabaseDbBackupConfigBackupDestinationDetailRes
|
|
46811
48250
|
"""
|
46812
48251
|
return pulumi.get(self, "id")
|
46813
48252
|
|
48253
|
+
@property
|
48254
|
+
@pulumi.getter(name="isRemote")
|
48255
|
+
def is_remote(self) -> builtins.bool:
|
48256
|
+
return pulumi.get(self, "is_remote")
|
48257
|
+
|
48258
|
+
@property
|
48259
|
+
@pulumi.getter(name="remoteRegion")
|
48260
|
+
def remote_region(self) -> builtins.str:
|
48261
|
+
return pulumi.get(self, "remote_region")
|
48262
|
+
|
46814
48263
|
@property
|
46815
48264
|
@pulumi.getter
|
46816
48265
|
def type(self) -> builtins.str:
|
@@ -47940,6 +49389,7 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
|
|
47940
49389
|
storage_count: builtins.int,
|
47941
49390
|
storage_server_type: builtins.str,
|
47942
49391
|
storage_server_version: builtins.str,
|
49392
|
+
system_tags: Mapping[str, builtins.str],
|
47943
49393
|
time_created: builtins.str,
|
47944
49394
|
time_zone: builtins.str):
|
47945
49395
|
"""
|
@@ -47993,6 +49443,7 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
|
|
47993
49443
|
:param builtins.int storage_count: The number of Exadata storage servers for the Exadata infrastructure.
|
47994
49444
|
:param builtins.str storage_server_type: The storage server type of the Exadata infrastructure.
|
47995
49445
|
:param builtins.str storage_server_version: The software version of the storage servers (cells) in the Exadata infrastructure.
|
49446
|
+
:param Mapping[str, builtins.str] system_tags: System 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).
|
47996
49447
|
:param builtins.str time_created: The date and time the Exadata infrastructure was created.
|
47997
49448
|
:param builtins.str time_zone: The time zone of the Exadata infrastructure. For details, see [Exadata Infrastructure Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
47998
49449
|
"""
|
@@ -48048,6 +49499,7 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
|
|
48048
49499
|
pulumi.set(__self__, "storage_count", storage_count)
|
48049
49500
|
pulumi.set(__self__, "storage_server_type", storage_server_type)
|
48050
49501
|
pulumi.set(__self__, "storage_server_version", storage_server_version)
|
49502
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
48051
49503
|
pulumi.set(__self__, "time_created", time_created)
|
48052
49504
|
pulumi.set(__self__, "time_zone", time_zone)
|
48053
49505
|
|
@@ -48461,6 +49913,14 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
|
|
48461
49913
|
"""
|
48462
49914
|
return pulumi.get(self, "storage_server_version")
|
48463
49915
|
|
49916
|
+
@property
|
49917
|
+
@pulumi.getter(name="systemTags")
|
49918
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
49919
|
+
"""
|
49920
|
+
System 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).
|
49921
|
+
"""
|
49922
|
+
return pulumi.get(self, "system_tags")
|
49923
|
+
|
48464
49924
|
@property
|
48465
49925
|
@pulumi.getter(name="timeCreated")
|
48466
49926
|
def time_created(self) -> builtins.str:
|
@@ -51192,6 +52652,7 @@ class GetExternalContainerDatabasesExternalContainerDatabaseResult(dict):
|
|
51192
52652
|
ncharacter_set: builtins.str,
|
51193
52653
|
stack_monitoring_configs: Sequence['outputs.GetExternalContainerDatabasesExternalContainerDatabaseStackMonitoringConfigResult'],
|
51194
52654
|
state: builtins.str,
|
52655
|
+
system_tags: Mapping[str, builtins.str],
|
51195
52656
|
time_created: builtins.str,
|
51196
52657
|
time_zone: builtins.str):
|
51197
52658
|
"""
|
@@ -51212,6 +52673,7 @@ class GetExternalContainerDatabasesExternalContainerDatabaseResult(dict):
|
|
51212
52673
|
:param builtins.str ncharacter_set: The national character of the external database.
|
51213
52674
|
:param Sequence['GetExternalContainerDatabasesExternalContainerDatabaseStackMonitoringConfigArgs'] stack_monitoring_configs: The configuration of Stack Monitoring for the external database.
|
51214
52675
|
:param builtins.str state: A filter to return only resources that match the specified lifecycle state.
|
52676
|
+
:param Mapping[str, builtins.str] system_tags: System 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).
|
51215
52677
|
:param builtins.str time_created: The date and time the database was created.
|
51216
52678
|
:param builtins.str time_zone: The time zone of the external database. It is a time zone offset (a character type in the format '[+|-]TZH:TZM') or a time zone region name, depending on how the time zone value was specified when the database was created / last altered.
|
51217
52679
|
"""
|
@@ -51232,6 +52694,7 @@ class GetExternalContainerDatabasesExternalContainerDatabaseResult(dict):
|
|
51232
52694
|
pulumi.set(__self__, "ncharacter_set", ncharacter_set)
|
51233
52695
|
pulumi.set(__self__, "stack_monitoring_configs", stack_monitoring_configs)
|
51234
52696
|
pulumi.set(__self__, "state", state)
|
52697
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
51235
52698
|
pulumi.set(__self__, "time_created", time_created)
|
51236
52699
|
pulumi.set(__self__, "time_zone", time_zone)
|
51237
52700
|
|
@@ -51371,6 +52834,14 @@ class GetExternalContainerDatabasesExternalContainerDatabaseResult(dict):
|
|
51371
52834
|
"""
|
51372
52835
|
return pulumi.get(self, "state")
|
51373
52836
|
|
52837
|
+
@property
|
52838
|
+
@pulumi.getter(name="systemTags")
|
52839
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
52840
|
+
"""
|
52841
|
+
System 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).
|
52842
|
+
"""
|
52843
|
+
return pulumi.get(self, "system_tags")
|
52844
|
+
|
51374
52845
|
@property
|
51375
52846
|
@pulumi.getter(name="timeCreated")
|
51376
52847
|
def time_created(self) -> builtins.str:
|
@@ -51624,6 +53095,7 @@ class GetExternalDatabaseConnectorsExternalDatabaseConnectorResult(dict):
|
|
51624
53095
|
id: builtins.str,
|
51625
53096
|
lifecycle_details: builtins.str,
|
51626
53097
|
state: builtins.str,
|
53098
|
+
system_tags: Mapping[str, builtins.str],
|
51627
53099
|
time_connection_status_last_updated: builtins.str,
|
51628
53100
|
time_created: builtins.str):
|
51629
53101
|
"""
|
@@ -51640,6 +53112,7 @@ class GetExternalDatabaseConnectorsExternalDatabaseConnectorResult(dict):
|
|
51640
53112
|
:param builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the [external database connector](https://docs.cloud.oracle.com/iaas/api/#/en/database/latest/datatypes/CreateExternalDatabaseConnectorDetails).
|
51641
53113
|
:param builtins.str lifecycle_details: Additional information about the current lifecycle state.
|
51642
53114
|
:param builtins.str state: A filter to return only resources that match the specified lifecycle state.
|
53115
|
+
:param Mapping[str, builtins.str] system_tags: System 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).
|
51643
53116
|
:param builtins.str time_connection_status_last_updated: The date and time the `connectionStatus` of this external connector was last updated.
|
51644
53117
|
:param builtins.str time_created: The date and time the external connector was created.
|
51645
53118
|
"""
|
@@ -51656,6 +53129,7 @@ class GetExternalDatabaseConnectorsExternalDatabaseConnectorResult(dict):
|
|
51656
53129
|
pulumi.set(__self__, "id", id)
|
51657
53130
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
51658
53131
|
pulumi.set(__self__, "state", state)
|
53132
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
51659
53133
|
pulumi.set(__self__, "time_connection_status_last_updated", time_connection_status_last_updated)
|
51660
53134
|
pulumi.set(__self__, "time_created", time_created)
|
51661
53135
|
|
@@ -51763,6 +53237,14 @@ class GetExternalDatabaseConnectorsExternalDatabaseConnectorResult(dict):
|
|
51763
53237
|
"""
|
51764
53238
|
return pulumi.get(self, "state")
|
51765
53239
|
|
53240
|
+
@property
|
53241
|
+
@pulumi.getter(name="systemTags")
|
53242
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
53243
|
+
"""
|
53244
|
+
System 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).
|
53245
|
+
"""
|
53246
|
+
return pulumi.get(self, "system_tags")
|
53247
|
+
|
51766
53248
|
@property
|
51767
53249
|
@pulumi.getter(name="timeConnectionStatusLastUpdated")
|
51768
53250
|
def time_connection_status_last_updated(self) -> builtins.str:
|
@@ -52050,6 +53532,7 @@ class GetExternalNonContainerDatabasesExternalNonContainerDatabaseResult(dict):
|
|
52050
53532
|
operations_insights_configs: Sequence['outputs.GetExternalNonContainerDatabasesExternalNonContainerDatabaseOperationsInsightsConfigResult'],
|
52051
53533
|
stack_monitoring_configs: Sequence['outputs.GetExternalNonContainerDatabasesExternalNonContainerDatabaseStackMonitoringConfigResult'],
|
52052
53534
|
state: builtins.str,
|
53535
|
+
system_tags: Mapping[str, builtins.str],
|
52053
53536
|
time_created: builtins.str,
|
52054
53537
|
time_zone: builtins.str):
|
52055
53538
|
"""
|
@@ -52071,6 +53554,7 @@ class GetExternalNonContainerDatabasesExternalNonContainerDatabaseResult(dict):
|
|
52071
53554
|
:param Sequence['GetExternalNonContainerDatabasesExternalNonContainerDatabaseOperationsInsightsConfigArgs'] operations_insights_configs: The configuration of Operations Insights for the external database
|
52072
53555
|
:param Sequence['GetExternalNonContainerDatabasesExternalNonContainerDatabaseStackMonitoringConfigArgs'] stack_monitoring_configs: The configuration of Stack Monitoring for the external database.
|
52073
53556
|
:param builtins.str state: A filter to return only resources that match the specified lifecycle state.
|
53557
|
+
:param Mapping[str, builtins.str] system_tags: System 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).
|
52074
53558
|
:param builtins.str time_created: The date and time the database was created.
|
52075
53559
|
:param builtins.str time_zone: The time zone of the external database. It is a time zone offset (a character type in the format '[+|-]TZH:TZM') or a time zone region name, depending on how the time zone value was specified when the database was created / last altered.
|
52076
53560
|
"""
|
@@ -52092,6 +53576,7 @@ class GetExternalNonContainerDatabasesExternalNonContainerDatabaseResult(dict):
|
|
52092
53576
|
pulumi.set(__self__, "operations_insights_configs", operations_insights_configs)
|
52093
53577
|
pulumi.set(__self__, "stack_monitoring_configs", stack_monitoring_configs)
|
52094
53578
|
pulumi.set(__self__, "state", state)
|
53579
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
52095
53580
|
pulumi.set(__self__, "time_created", time_created)
|
52096
53581
|
pulumi.set(__self__, "time_zone", time_zone)
|
52097
53582
|
|
@@ -52239,6 +53724,14 @@ class GetExternalNonContainerDatabasesExternalNonContainerDatabaseResult(dict):
|
|
52239
53724
|
"""
|
52240
53725
|
return pulumi.get(self, "state")
|
52241
53726
|
|
53727
|
+
@property
|
53728
|
+
@pulumi.getter(name="systemTags")
|
53729
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
53730
|
+
"""
|
53731
|
+
System 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).
|
53732
|
+
"""
|
53733
|
+
return pulumi.get(self, "system_tags")
|
53734
|
+
|
52242
53735
|
@property
|
52243
53736
|
@pulumi.getter(name="timeCreated")
|
52244
53737
|
def time_created(self) -> builtins.str:
|
@@ -52502,6 +53995,7 @@ class GetExternalPluggableDatabasesExternalPluggableDatabaseResult(dict):
|
|
52502
53995
|
source_id: builtins.str,
|
52503
53996
|
stack_monitoring_configs: Sequence['outputs.GetExternalPluggableDatabasesExternalPluggableDatabaseStackMonitoringConfigResult'],
|
52504
53997
|
state: builtins.str,
|
53998
|
+
system_tags: Mapping[str, builtins.str],
|
52505
53999
|
time_created: builtins.str,
|
52506
54000
|
time_zone: builtins.str):
|
52507
54001
|
"""
|
@@ -52525,6 +54019,7 @@ class GetExternalPluggableDatabasesExternalPluggableDatabaseResult(dict):
|
|
52525
54019
|
:param builtins.str source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the the non-container database that was converted to a pluggable database to create this resource.
|
52526
54020
|
:param Sequence['GetExternalPluggableDatabasesExternalPluggableDatabaseStackMonitoringConfigArgs'] stack_monitoring_configs: The configuration of Stack Monitoring for the external database.
|
52527
54021
|
:param builtins.str state: A filter to return only resources that match the specified lifecycle state.
|
54022
|
+
:param Mapping[str, builtins.str] system_tags: System 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).
|
52528
54023
|
:param builtins.str time_created: The date and time the database was created.
|
52529
54024
|
:param builtins.str time_zone: The time zone of the external database. It is a time zone offset (a character type in the format '[+|-]TZH:TZM') or a time zone region name, depending on how the time zone value was specified when the database was created / last altered.
|
52530
54025
|
"""
|
@@ -52548,6 +54043,7 @@ class GetExternalPluggableDatabasesExternalPluggableDatabaseResult(dict):
|
|
52548
54043
|
pulumi.set(__self__, "source_id", source_id)
|
52549
54044
|
pulumi.set(__self__, "stack_monitoring_configs", stack_monitoring_configs)
|
52550
54045
|
pulumi.set(__self__, "state", state)
|
54046
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
52551
54047
|
pulumi.set(__self__, "time_created", time_created)
|
52552
54048
|
pulumi.set(__self__, "time_zone", time_zone)
|
52553
54049
|
|
@@ -52711,6 +54207,14 @@ class GetExternalPluggableDatabasesExternalPluggableDatabaseResult(dict):
|
|
52711
54207
|
"""
|
52712
54208
|
return pulumi.get(self, "state")
|
52713
54209
|
|
54210
|
+
@property
|
54211
|
+
@pulumi.getter(name="systemTags")
|
54212
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
54213
|
+
"""
|
54214
|
+
System 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).
|
54215
|
+
"""
|
54216
|
+
return pulumi.get(self, "system_tags")
|
54217
|
+
|
52714
54218
|
@property
|
52715
54219
|
@pulumi.getter(name="timeCreated")
|
52716
54220
|
def time_created(self) -> builtins.str:
|
@@ -53257,6 +54761,7 @@ class GetKeyStoresKeyStoreResult(dict):
|
|
53257
54761
|
id: builtins.str,
|
53258
54762
|
lifecycle_details: builtins.str,
|
53259
54763
|
state: builtins.str,
|
54764
|
+
system_tags: Mapping[str, builtins.str],
|
53260
54765
|
time_created: builtins.str,
|
53261
54766
|
type_details: Sequence['outputs.GetKeyStoresKeyStoreTypeDetailResult']):
|
53262
54767
|
"""
|
@@ -53268,6 +54773,7 @@ class GetKeyStoresKeyStoreResult(dict):
|
|
53268
54773
|
:param builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
|
53269
54774
|
:param builtins.str lifecycle_details: Additional information about the current lifecycle state.
|
53270
54775
|
:param builtins.str state: The current state of the key store.
|
54776
|
+
:param Mapping[str, builtins.str] system_tags: System 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).
|
53271
54777
|
:param builtins.str time_created: The date and time that the key store was created.
|
53272
54778
|
:param Sequence['GetKeyStoresKeyStoreTypeDetailArgs'] type_details: Key store type details.
|
53273
54779
|
"""
|
@@ -53280,6 +54786,7 @@ class GetKeyStoresKeyStoreResult(dict):
|
|
53280
54786
|
pulumi.set(__self__, "id", id)
|
53281
54787
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
53282
54788
|
pulumi.set(__self__, "state", state)
|
54789
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
53283
54790
|
pulumi.set(__self__, "time_created", time_created)
|
53284
54791
|
pulumi.set(__self__, "type_details", type_details)
|
53285
54792
|
|
@@ -53352,6 +54859,14 @@ class GetKeyStoresKeyStoreResult(dict):
|
|
53352
54859
|
"""
|
53353
54860
|
return pulumi.get(self, "state")
|
53354
54861
|
|
54862
|
+
@property
|
54863
|
+
@pulumi.getter(name="systemTags")
|
54864
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
54865
|
+
"""
|
54866
|
+
System 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).
|
54867
|
+
"""
|
54868
|
+
return pulumi.get(self, "system_tags")
|
54869
|
+
|
53355
54870
|
@property
|
53356
54871
|
@pulumi.getter(name="timeCreated")
|
53357
54872
|
def time_created(self) -> builtins.str:
|
@@ -53567,6 +55082,7 @@ class GetMaintenanceRunsMaintenanceRunResult(dict):
|
|
53567
55082
|
peer_maintenance_run_id: builtins.str,
|
53568
55083
|
peer_maintenance_run_ids: Sequence[builtins.str],
|
53569
55084
|
state: builtins.str,
|
55085
|
+
system_tags: Mapping[str, builtins.str],
|
53570
55086
|
target_db_server_version: builtins.str,
|
53571
55087
|
target_resource_id: builtins.str,
|
53572
55088
|
target_resource_type: builtins.str,
|
@@ -53601,6 +55117,7 @@ class GetMaintenanceRunsMaintenanceRunResult(dict):
|
|
53601
55117
|
:param builtins.str peer_maintenance_run_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the maintenance run for the Autonomous Data Guard association's peer container database.
|
53602
55118
|
:param Sequence[builtins.str] peer_maintenance_run_ids: The list of OCIDs for the maintenance runs associated with their Autonomous Data Guard peer container databases.
|
53603
55119
|
:param builtins.str state: A filter to return only resources that match the given lifecycle state exactly.
|
55120
|
+
:param Mapping[str, builtins.str] system_tags: System 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).
|
53604
55121
|
:param builtins.str target_db_server_version: The target software version for the database server patching operation.
|
53605
55122
|
:param builtins.str target_resource_id: The target resource ID.
|
53606
55123
|
:param builtins.str target_resource_type: The type of the target resource. Accepted values are: AUTONOMOUS_CONTAINER_DATABASE, AUTONOMOUS_EXADATA_INFRASTRUCTURE, EXADATA_DB_SYSTEM
|
@@ -53636,6 +55153,7 @@ class GetMaintenanceRunsMaintenanceRunResult(dict):
|
|
53636
55153
|
pulumi.set(__self__, "peer_maintenance_run_id", peer_maintenance_run_id)
|
53637
55154
|
pulumi.set(__self__, "peer_maintenance_run_ids", peer_maintenance_run_ids)
|
53638
55155
|
pulumi.set(__self__, "state", state)
|
55156
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
53639
55157
|
pulumi.set(__self__, "target_db_server_version", target_db_server_version)
|
53640
55158
|
pulumi.set(__self__, "target_resource_id", target_resource_id)
|
53641
55159
|
pulumi.set(__self__, "target_resource_type", target_resource_type)
|
@@ -53850,6 +55368,14 @@ class GetMaintenanceRunsMaintenanceRunResult(dict):
|
|
53850
55368
|
"""
|
53851
55369
|
return pulumi.get(self, "state")
|
53852
55370
|
|
55371
|
+
@property
|
55372
|
+
@pulumi.getter(name="systemTags")
|
55373
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
55374
|
+
"""
|
55375
|
+
System 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).
|
55376
|
+
"""
|
55377
|
+
return pulumi.get(self, "system_tags")
|
55378
|
+
|
53853
55379
|
@property
|
53854
55380
|
@pulumi.getter(name="targetDbServerVersion")
|
53855
55381
|
def target_db_server_version(self) -> builtins.str:
|
@@ -54143,6 +55669,7 @@ class GetOneoffPatchesOneoffPatchResult(dict):
|
|
54143
55669
|
sha256sum: builtins.str,
|
54144
55670
|
size_in_kbs: builtins.float,
|
54145
55671
|
state: builtins.str,
|
55672
|
+
system_tags: Mapping[str, builtins.str],
|
54146
55673
|
time_created: builtins.str,
|
54147
55674
|
time_of_expiration: builtins.str,
|
54148
55675
|
time_updated: builtins.str):
|
@@ -54159,6 +55686,7 @@ class GetOneoffPatchesOneoffPatchResult(dict):
|
|
54159
55686
|
:param builtins.str sha256sum: SHA-256 checksum of the one-off patch.
|
54160
55687
|
:param builtins.float size_in_kbs: The size of one-off patch in kilobytes.
|
54161
55688
|
:param builtins.str state: A filter to return only resources that match the given lifecycle state exactly
|
55689
|
+
:param Mapping[str, builtins.str] system_tags: System 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).
|
54162
55690
|
:param builtins.str time_created: The date and time one-off patch was created.
|
54163
55691
|
:param builtins.str time_of_expiration: The date and time until which the one-off patch will be available for download.
|
54164
55692
|
:param builtins.str time_updated: The date and time one-off patch was updated.
|
@@ -54176,6 +55704,7 @@ class GetOneoffPatchesOneoffPatchResult(dict):
|
|
54176
55704
|
pulumi.set(__self__, "sha256sum", sha256sum)
|
54177
55705
|
pulumi.set(__self__, "size_in_kbs", size_in_kbs)
|
54178
55706
|
pulumi.set(__self__, "state", state)
|
55707
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
54179
55708
|
pulumi.set(__self__, "time_created", time_created)
|
54180
55709
|
pulumi.set(__self__, "time_of_expiration", time_of_expiration)
|
54181
55710
|
pulumi.set(__self__, "time_updated", time_updated)
|
@@ -54281,6 +55810,14 @@ class GetOneoffPatchesOneoffPatchResult(dict):
|
|
54281
55810
|
"""
|
54282
55811
|
return pulumi.get(self, "state")
|
54283
55812
|
|
55813
|
+
@property
|
55814
|
+
@pulumi.getter(name="systemTags")
|
55815
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
55816
|
+
"""
|
55817
|
+
System 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).
|
55818
|
+
"""
|
55819
|
+
return pulumi.get(self, "system_tags")
|
55820
|
+
|
54284
55821
|
@property
|
54285
55822
|
@pulumi.getter(name="timeCreated")
|
54286
55823
|
def time_created(self) -> builtins.str:
|
@@ -54536,6 +56073,7 @@ class GetPluggableDatabasesPluggableDatabaseResult(dict):
|
|
54536
56073
|
should_create_pdb_backup: builtins.bool,
|
54537
56074
|
should_pdb_admin_account_be_locked: builtins.bool,
|
54538
56075
|
state: builtins.str,
|
56076
|
+
system_tags: Mapping[str, builtins.str],
|
54539
56077
|
tde_wallet_password: builtins.str,
|
54540
56078
|
time_created: builtins.str):
|
54541
56079
|
"""
|
@@ -54553,6 +56091,7 @@ class GetPluggableDatabasesPluggableDatabaseResult(dict):
|
|
54553
56091
|
:param Sequence['GetPluggableDatabasesPluggableDatabasePluggableDatabaseManagementConfigArgs'] pluggable_database_management_configs: The configuration of the Pluggable Database Management service.
|
54554
56092
|
:param Sequence['GetPluggableDatabasesPluggableDatabaseRefreshableCloneConfigArgs'] refreshable_clone_configs: Pluggable Database Refreshable Clone Configuration.
|
54555
56093
|
:param builtins.str state: A filter to return only resources that match the given lifecycle state exactly.
|
56094
|
+
:param Mapping[str, builtins.str] system_tags: System 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).
|
54556
56095
|
:param builtins.str time_created: The date and time the pluggable database was created.
|
54557
56096
|
"""
|
54558
56097
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -54578,6 +56117,7 @@ class GetPluggableDatabasesPluggableDatabaseResult(dict):
|
|
54578
56117
|
pulumi.set(__self__, "should_create_pdb_backup", should_create_pdb_backup)
|
54579
56118
|
pulumi.set(__self__, "should_pdb_admin_account_be_locked", should_pdb_admin_account_be_locked)
|
54580
56119
|
pulumi.set(__self__, "state", state)
|
56120
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
54581
56121
|
pulumi.set(__self__, "tde_wallet_password", tde_wallet_password)
|
54582
56122
|
pulumi.set(__self__, "time_created", time_created)
|
54583
56123
|
|
@@ -54738,6 +56278,14 @@ class GetPluggableDatabasesPluggableDatabaseResult(dict):
|
|
54738
56278
|
"""
|
54739
56279
|
return pulumi.get(self, "state")
|
54740
56280
|
|
56281
|
+
@property
|
56282
|
+
@pulumi.getter(name="systemTags")
|
56283
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
56284
|
+
"""
|
56285
|
+
System 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).
|
56286
|
+
"""
|
56287
|
+
return pulumi.get(self, "system_tags")
|
56288
|
+
|
54741
56289
|
@property
|
54742
56290
|
@pulumi.getter(name="tdeWalletPassword")
|
54743
56291
|
def tde_wallet_password(self) -> builtins.str:
|
@@ -56944,6 +58492,7 @@ class GetVmClusterNetworksVmClusterNetworkResult(dict):
|
|
56944
58492
|
ntps: Sequence[builtins.str],
|
56945
58493
|
scans: Sequence['outputs.GetVmClusterNetworksVmClusterNetworkScanResult'],
|
56946
58494
|
state: builtins.str,
|
58495
|
+
system_tags: Mapping[str, builtins.str],
|
56947
58496
|
time_created: builtins.str,
|
56948
58497
|
validate_vm_cluster_network: builtins.bool,
|
56949
58498
|
vm_cluster_id: builtins.str,
|
@@ -56961,6 +58510,7 @@ class GetVmClusterNetworksVmClusterNetworkResult(dict):
|
|
56961
58510
|
:param Sequence[builtins.str] ntps: The list of NTP server IP addresses. Maximum of 3 allowed.
|
56962
58511
|
:param Sequence['GetVmClusterNetworksVmClusterNetworkScanArgs'] scans: The SCAN details.
|
56963
58512
|
:param builtins.str state: A filter to return only resources that match the given lifecycle state exactly.
|
58513
|
+
:param Mapping[str, builtins.str] system_tags: System 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).
|
56964
58514
|
:param builtins.str time_created: The date and time when the VM cluster network was created.
|
56965
58515
|
:param builtins.str vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the associated VM Cluster.
|
56966
58516
|
:param Sequence['GetVmClusterNetworksVmClusterNetworkVmNetworkArgs'] vm_networks: Details of the client and backup networks.
|
@@ -56978,6 +58528,7 @@ class GetVmClusterNetworksVmClusterNetworkResult(dict):
|
|
56978
58528
|
pulumi.set(__self__, "ntps", ntps)
|
56979
58529
|
pulumi.set(__self__, "scans", scans)
|
56980
58530
|
pulumi.set(__self__, "state", state)
|
58531
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
56981
58532
|
pulumi.set(__self__, "time_created", time_created)
|
56982
58533
|
pulumi.set(__self__, "validate_vm_cluster_network", validate_vm_cluster_network)
|
56983
58534
|
pulumi.set(__self__, "vm_cluster_id", vm_cluster_id)
|
@@ -57084,6 +58635,14 @@ class GetVmClusterNetworksVmClusterNetworkResult(dict):
|
|
57084
58635
|
"""
|
57085
58636
|
return pulumi.get(self, "state")
|
57086
58637
|
|
58638
|
+
@property
|
58639
|
+
@pulumi.getter(name="systemTags")
|
58640
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
58641
|
+
"""
|
58642
|
+
System 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).
|
58643
|
+
"""
|
58644
|
+
return pulumi.get(self, "system_tags")
|
58645
|
+
|
57087
58646
|
@property
|
57088
58647
|
@pulumi.getter(name="timeCreated")
|
57089
58648
|
def time_created(self) -> builtins.str:
|
@@ -58243,6 +59802,7 @@ class GetVmClustersVmClusterResult(dict):
|
|
58243
59802
|
ssh_public_keys: Sequence[builtins.str],
|
58244
59803
|
state: builtins.str,
|
58245
59804
|
storage_management_type: builtins.str,
|
59805
|
+
system_tags: Mapping[str, builtins.str],
|
58246
59806
|
system_version: builtins.str,
|
58247
59807
|
time_created: builtins.str,
|
58248
59808
|
time_zone: builtins.str,
|
@@ -58277,6 +59837,7 @@ class GetVmClustersVmClusterResult(dict):
|
|
58277
59837
|
:param Sequence[builtins.str] ssh_public_keys: The public key portion of one or more key pairs used for SSH access to the VM cluster.
|
58278
59838
|
:param builtins.str state: A filter to return only resources that match the given lifecycle state exactly.
|
58279
59839
|
:param builtins.str storage_management_type: Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
|
59840
|
+
:param Mapping[str, builtins.str] system_tags: System 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).
|
58280
59841
|
:param builtins.str system_version: Operating system version of the image.
|
58281
59842
|
:param builtins.str time_created: The date and time that the VM cluster was created.
|
58282
59843
|
:param builtins.str time_zone: The time zone of the Exadata infrastructure. For details, see [Exadata Infrastructure Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
@@ -58314,6 +59875,7 @@ class GetVmClustersVmClusterResult(dict):
|
|
58314
59875
|
pulumi.set(__self__, "ssh_public_keys", ssh_public_keys)
|
58315
59876
|
pulumi.set(__self__, "state", state)
|
58316
59877
|
pulumi.set(__self__, "storage_management_type", storage_management_type)
|
59878
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
58317
59879
|
pulumi.set(__self__, "system_version", system_version)
|
58318
59880
|
pulumi.set(__self__, "time_created", time_created)
|
58319
59881
|
pulumi.set(__self__, "time_zone", time_zone)
|
@@ -58559,6 +60121,14 @@ class GetVmClustersVmClusterResult(dict):
|
|
58559
60121
|
"""
|
58560
60122
|
return pulumi.get(self, "storage_management_type")
|
58561
60123
|
|
60124
|
+
@property
|
60125
|
+
@pulumi.getter(name="systemTags")
|
60126
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
60127
|
+
"""
|
60128
|
+
System 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).
|
60129
|
+
"""
|
60130
|
+
return pulumi.get(self, "system_tags")
|
60131
|
+
|
58562
60132
|
@property
|
58563
60133
|
@pulumi.getter(name="systemVersion")
|
58564
60134
|
def system_version(self) -> builtins.str:
|