Class: Aws::Odb::Types::AutonomousDatabaseSummary

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb

Overview

A summary of an Autonomous Database.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#actual_used_data_storage_size_in_t_bs ⇒ Float

The actual amount of data storage currently in use by the Autonomous Database, in TB.

Returns:

  • (Float)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#admin_password_source_summary ⇒ Types::AdminPasswordSourceSummary

The summary of the admin password source configuration for the Autonomous Database.



1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#allocated_storage_size_in_t_bs ⇒ Float

The amount of storage currently allocated to the Autonomous Database, in TB.

Returns:

  • (Float)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#allowlisted_ips ⇒ Array<String>

The list of IP addresses that are allowed to access the Autonomous Database.

Returns:

  • (Array<String>)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#apex_details ⇒ Types::AutonomousDatabaseApex

The Oracle Application Express (APEX) details for the Autonomous Database.



1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#auto_refresh_frequency_in_seconds ⇒ Integer

The frequency, in seconds, at which the refreshable clone Autonomous Database is automatically refreshed.

Returns:

  • (Integer)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#auto_refresh_point_lag_in_seconds ⇒ Integer

The time lag, in seconds, between the refreshable clone and its source Autonomous Database.

Returns:

  • (Integer)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#autonomous_database_arn ⇒ String

The Amazon Resource Name (ARN) of the Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#autonomous_database_id ⇒ String

The unique identifier of the Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#autonomous_maintenance_schedule_type ⇒ String

The maintenance schedule type for the Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#availability_zone ⇒ String

The Availability Zone where the Autonomous Database is located.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#availability_zone_id ⇒ String

The unique identifier of the Availability Zone where the Autonomous Database is located.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#available_upgrade_versions ⇒ Array<String>

The list of Oracle Database software versions to which the Autonomous Database can be upgraded.

Returns:

  • (Array<String>)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#backup_retention_period_in_days ⇒ Integer

The retention period, in days, for automatic backups of the Autonomous Database.

Returns:

  • (Integer)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#byol_compute_count_limit ⇒ Integer

The maximum number of compute resources that you can allocate to the Autonomous Database under the bring-your-own-license (BYOL) model.

Returns:

  • (Integer)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#character_set ⇒ String

The character set of the Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#clone_table_space_list ⇒ Array<Integer>

The list of tablespace identifiers to clone for the Autonomous Database.

Returns:

  • (Array<Integer>)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#compute_count ⇒ Float

The compute capacity, in number of Elastic CPUs (ECPUs) or Oracle CPUs (OCPUs), assigned to the Autonomous Database.

Returns:

  • (Float)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#compute_model ⇒ String

The compute model of the Autonomous Database, either ECPU or OCPU.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#connection_string_details ⇒ Types::AutonomousDatabaseConnectionStrings

The connection string details for the Autonomous Database.



1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#connection_urls ⇒ Types::AutonomousDatabaseConnectionUrls

The connection URLs for accessing tools and services for the Autonomous Database.



1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#cpu_core_count ⇒ Integer

The number of CPU cores allocated to the Autonomous Database.

Returns:

  • (Integer)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#created_at ⇒ Time

The date and time when the Autonomous Database was created.

Returns:

  • (Time)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#customer_contacts ⇒ Array<Types::CustomerContact>

The list of customer contacts that receive operational notifications from Oracle for the Autonomous Database.

Returns:



1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#data_safe_status ⇒ String

The status of the Oracle Data Safe registration for the Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#data_storage_size_in_g_bs ⇒ Integer

The size, in gigabytes (GB), of the data volume allocated for the Autonomous Database.

Returns:

  • (Integer)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#data_storage_size_in_t_bs ⇒ Float

The size, in terabytes (TB), of the data volume allocated for the Autonomous Database.

Returns:

  • (Float)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#database_edition ⇒ String

The Oracle Database edition of the Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#database_management_status ⇒ String

The status of Oracle Database Management for the Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#database_type ⇒ String

The type of the Autonomous Database, either a regular database or a clone.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#db_name ⇒ String

The name of the Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#db_tools_details ⇒ Array<Types::DatabaseTool>

The list of database management tools enabled for the Autonomous Database.

Returns:



1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#db_version ⇒ String

The Oracle Database software version of the Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#db_workload ⇒ String

The intended use of the Autonomous Database, such as transaction processing, data warehouse, JSON database, or APEX.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#display_name ⇒ String

The user-friendly name of the Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#encryption_summary ⇒ Types::EncryptionSummary

The encryption configuration for the Autonomous Database.



1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#failed_data_recovery_in_seconds ⇒ Integer

The amount of time, in seconds, that the data in the Autonomous Database is behind the data in the primary database.

Returns:

  • (Integer)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#in_memory_area_in_g_bs ⇒ Integer

The size of the in-memory area of the Autonomous Database, in GB.

Returns:

  • (Integer)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#is_auto_scaling_enabled ⇒ Boolean

Indicates whether automatic scaling of the compute resources is enabled for the Autonomous Database.

Returns:

  • (Boolean)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#is_auto_scaling_for_storage_enabled ⇒ Boolean

Indicates whether automatic scaling of the storage is enabled for the Autonomous Database.

Returns:

  • (Boolean)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#is_backup_retention_locked ⇒ Boolean

Indicates whether the backup retention period of the Autonomous Database is locked.

Returns:

  • (Boolean)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#is_local_data_guard_enabled ⇒ Boolean

Indicates whether local Oracle Data Guard is enabled for the Autonomous Database.

Returns:

  • (Boolean)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#is_mtls_connection_required ⇒ Boolean

Indicates whether mutual TLS (mTLS) authentication is required to connect to the Autonomous Database.

Returns:

  • (Boolean)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#is_reconnect_clone_enabled ⇒ Boolean

Indicates whether reconnecting the refreshable clone to its source Autonomous Database is enabled.

Returns:

  • (Boolean)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#is_refreshable_clone ⇒ Boolean

Indicates whether the Autonomous Database is a refreshable clone.

Returns:

  • (Boolean)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#is_remote_data_guard_enabled ⇒ Boolean

Indicates whether remote Oracle Data Guard is enabled for the Autonomous Database.

Returns:

  • (Boolean)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#license_model ⇒ String

The Oracle license model that applies to the Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#local_adg_auto_failover_max_data_loss_limit ⇒ Integer

The maximum data loss limit, in seconds, for automatic failover to the local Oracle Data Guard standby database.

Returns:

  • (Integer)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#local_disaster_recovery_type ⇒ String

The type of local disaster recovery configured for the Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#local_standby_db ⇒ Types::DatabaseStandbySummary

The details of the local standby Autonomous Database in an Oracle Data Guard configuration.



1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#long_term_backup_schedule ⇒ Types::LongTermBackupSchedule

The long-term backup schedule for the Autonomous Database.



1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#maintenance_target_component ⇒ String

The component on the Autonomous Database that the current maintenance is being applied to.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#memory_per_oracle_compute_unit_in_g_bs ⇒ Integer

The amount of memory allocated per Oracle Compute Unit, in GB.

Returns:

  • (Integer)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#ncharacter_set ⇒ String

The national character set of the Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#net_services_architecture ⇒ String

The Oracle Net Services architecture of the Autonomous Database, either dedicated or shared.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#next_long_term_backup_time_stamp ⇒ Time

The date and time of the next scheduled long-term backup of the Autonomous Database.

Returns:

  • (Time)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#oci_resource_anchor_name ⇒ String

The name of the Oracle Cloud Infrastructure (OCI) resource anchor associated with the Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#oci_url ⇒ String

The URL for accessing the OCI console page for the Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#ocid ⇒ String

The Oracle Cloud Identifier (OCID) of the Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#odb_network_arn ⇒ String

The Amazon Resource Name (ARN) of the ODB network associated with the Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#odb_network_id ⇒ String

The unique identifier of the ODB network associated with the Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#open_mode ⇒ String

The mode in which the Autonomous Database is open, either read-only or read/write.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#operations_insights_status ⇒ String

The status of Oracle Operations Insights for the Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#peer_db_ids ⇒ Array<String>

The list of unique identifiers of the peer Autonomous Databases.

Returns:

  • (Array<String>)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#percent_progress ⇒ Float

The progress of the current operation on the Autonomous Database, as a percentage.

Returns:

  • (Float)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#permission_level ⇒ String

The permission level of the Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#private_endpoint ⇒ String

The private endpoint for the Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#private_endpoint_ip ⇒ String

The private endpoint IP address for the Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#private_endpoint_label ⇒ String

The private endpoint label for the Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#provisionable_cpus ⇒ Array<Integer>

The list of CPU core counts that you can provision for the Autonomous Database.

Returns:

  • (Array<Integer>)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#refreshable_mode ⇒ String

The refresh mode of the refreshable clone Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#refreshable_status ⇒ String

The refresh status of the refreshable clone Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#remote_disaster_recovery_configuration ⇒ Types::DisasterRecoveryConfiguration

The configuration of the remote disaster recovery for the Autonomous Database.



1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#resource_pool_leader_id ⇒ String

The unique identifier of the resource pool leader Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#resource_pool_summary ⇒ Types::ResourcePoolSummary

The configuration of the resource pool for the Autonomous Database.



1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#role ⇒ String

The Oracle Data Guard role of the Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#scheduled_operations ⇒ Array<Types::ScheduledOperationDetails>

The list of scheduled start and stop times for the Autonomous Database.



1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#service_console_url ⇒ String

The URL for accessing the Oracle service console for the Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#source_id ⇒ String

The unique identifier of the source from which the Autonomous Database was created.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#sql_web_developer_url ⇒ String

The URL for accessing Oracle SQL Developer Web for the Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#standby_allowlisted_ips ⇒ Array<String>

The list of IP addresses that are allowed to access the standby Autonomous Database.

Returns:

  • (Array<String>)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#standby_allowlisted_ips_source ⇒ String

The source of the allowlisted IP addresses for the standby Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#standby_db ⇒ Types::DatabaseStandbySummary

The details of the standby Autonomous Database in a cross-Region Oracle Data Guard configuration.



1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#status ⇒ String

The current status of the Autonomous Database.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#status_reason ⇒ String

Additional information about the current status of the Autonomous Database, if applicable.

Returns:

  • (String)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#time_data_guard_role_changed ⇒ Time

The date and time when the Oracle Data Guard role of the Autonomous Database last changed.

Returns:

  • (Time)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#time_deletion_of_free_autonomous_database ⇒ Time

The date and time when the inactive Always Free Autonomous Database is scheduled to be automatically deleted.

Returns:

  • (Time)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#time_disaster_recovery_role_changed ⇒ Time

The date and time when the disaster recovery role of the Autonomous Database last changed.

Returns:

  • (Time)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#time_local_data_guard_enabled ⇒ Time

The date and time when local Oracle Data Guard was enabled for the Autonomous Database.

Returns:

  • (Time)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#time_maintenance_begin ⇒ Time

The date and time when the next maintenance of the Autonomous Database begins.

Returns:

  • (Time)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#time_maintenance_end ⇒ Time

The date and time when the next maintenance of the Autonomous Database ends.

Returns:

  • (Time)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#time_of_auto_refresh_start ⇒ Time

The date and time at which the automatic refresh of the refreshable clone Autonomous Database starts.

Returns:

  • (Time)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#time_of_last_backup ⇒ Time

The date and time of the last backup of the Autonomous Database.

Returns:

  • (Time)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#time_of_last_failover ⇒ Time

The date and time of the last failover operation for the Autonomous Database.

Returns:

  • (Time)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#time_of_last_refresh ⇒ Time

The date and time of the last refresh of the refreshable clone Autonomous Database.

Returns:

  • (Time)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#time_of_last_refresh_point ⇒ Time

The date and time as of which the data in the refreshable clone Autonomous Database is current.

Returns:

  • (Time)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#time_of_last_switchover ⇒ Time

The date and time of the last switchover operation for the Autonomous Database.

Returns:

  • (Time)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#time_of_next_refresh ⇒ Time

The date and time of the next scheduled refresh of the refreshable clone Autonomous Database.

Returns:

  • (Time)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#time_reclamation_of_free_autonomous_database ⇒ Time

The date and time when the Always Free Autonomous Database is scheduled to be stopped because of inactivity.

Returns:

  • (Time)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#time_undeleted ⇒ Time

The date and time when the Autonomous Database was restored after deletion.

Returns:

  • (Time)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#time_until_reconnect_clone_enabled ⇒ Time

The date and time until which reconnecting the refreshable clone to its source Autonomous Database is allowed.

Returns:

  • (Time)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#total_backup_storage_size_in_g_bs ⇒ Float

The total amount of backup storage used by the Autonomous Database, in GB.

Returns:

  • (Float)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#used_data_storage_size_in_g_bs ⇒ Integer

The amount of data storage currently in use by the Autonomous Database, in GB.

Returns:

  • (Integer)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end

#used_data_storage_size_in_t_bs ⇒ Float

The amount of data storage currently in use by the Autonomous Database, in TB.

Returns:

  • (Float)


1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1630

class AutonomousDatabaseSummary < Struct.new(
  :autonomous_database_id,
  :autonomous_database_arn,
  :oci_resource_anchor_name,
  :percent_progress,
  :ocid,
  :oci_url,
  :display_name,
  :db_name,
  :source_id,
  :status,
  :status_reason,
  :database_type,
  :db_version,
  :db_workload,
  :character_set,
  :ncharacter_set,
  :database_edition,
  :license_model,
  :open_mode,
  :permission_level,
  :is_mtls_connection_required,
  :autonomous_maintenance_schedule_type,
  :net_services_architecture,
  :available_upgrade_versions,
  :byol_compute_count_limit,
  :connection_string_details,
  :service_console_url,
  :sql_web_developer_url,
  :customer_contacts,
  :apex_details,
  :standby_db,
  :local_standby_db,
  :data_safe_status,
  :database_management_status,
  :operations_insights_status,
  :availability_zone,
  :availability_zone_id,
  :maintenance_target_component,
  :connection_urls,
  :db_tools_details,
  :scheduled_operations,
  :resource_pool_leader_id,
  :compute_count,
  :compute_model,
  :cpu_core_count,
  :memory_per_oracle_compute_unit_in_g_bs,
  :provisionable_cpus,
  :is_auto_scaling_enabled,
  :data_storage_size_in_t_bs,
  :data_storage_size_in_g_bs,
  :used_data_storage_size_in_t_bs,
  :used_data_storage_size_in_g_bs,
  :actual_used_data_storage_size_in_t_bs,
  :allocated_storage_size_in_t_bs,
  :in_memory_area_in_g_bs,
  :is_auto_scaling_for_storage_enabled,
  :odb_network_id,
  :odb_network_arn,
  :private_endpoint,
  :private_endpoint_ip,
  :private_endpoint_label,
  :allowlisted_ips,
  :standby_allowlisted_ips,
  :standby_allowlisted_ips_source,
  :is_local_data_guard_enabled,
  :is_remote_data_guard_enabled,
  :local_disaster_recovery_type,
  :role,
  :peer_db_ids,
  :failed_data_recovery_in_seconds,
  :local_adg_auto_failover_max_data_loss_limit,
  :remote_disaster_recovery_configuration,
  :is_refreshable_clone,
  :refreshable_mode,
  :refreshable_status,
  :auto_refresh_frequency_in_seconds,
  :auto_refresh_point_lag_in_seconds,
  :is_reconnect_clone_enabled,
  :clone_table_space_list,
  :backup_retention_period_in_days,
  :long_term_backup_schedule,
  :is_backup_retention_locked,
  :total_backup_storage_size_in_g_bs,
  :resource_pool_summary,
  :encryption_summary,
  :created_at,
  :time_of_last_backup,
  :time_maintenance_begin,
  :time_maintenance_end,
  :time_local_data_guard_enabled,
  :time_data_guard_role_changed,
  :time_of_last_switchover,
  :time_of_last_failover,
  :time_of_last_refresh,
  :time_of_last_refresh_point,
  :time_of_next_refresh,
  :time_of_auto_refresh_start,
  :time_deletion_of_free_autonomous_database,
  :time_reclamation_of_free_autonomous_database,
  :time_disaster_recovery_role_changed,
  :time_until_reconnect_clone_enabled,
  :next_long_term_backup_time_stamp,
  :time_undeleted,
  :admin_password_source_summary)
  SENSITIVE = []
  include Aws::Structure
end