Class: Aws::Odb::Types::UpdateAutonomousDatabaseInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Odb::Types::UpdateAutonomousDatabaseInput
- Defined in:
- gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:admin_password]
Instance Attribute Summary collapse
-
#admin_password ⇒ String
The new password for the
ADMINuser of the Autonomous Database. -
#admin_password_source ⇒ String
The source of the admin password for the Autonomous Database.
-
#admin_password_source_configuration ⇒ Types::AdminPasswordSourceConfigurationInput
The configuration of the admin password source for the Autonomous Database.
-
#allowlisted_ips ⇒ Array<String>
The list of IP addresses that are allowed to access the Autonomous Database.
-
#auto_refresh_frequency_in_seconds ⇒ Integer
The frequency, in seconds, at which the refreshable clone Autonomous Database is automatically refreshed.
-
#auto_refresh_point_lag_in_seconds ⇒ Integer
The time lag, in seconds, between the refreshable clone and its source Autonomous Database.
-
#autonomous_database_id ⇒ String
The unique identifier of the Autonomous Database to update.
-
#autonomous_maintenance_schedule_type ⇒ String
The maintenance schedule type for the Autonomous Database.
-
#backup_retention_period_in_days ⇒ Integer
The retention period, in days, for automatic backups of the Autonomous Database.
-
#byol_compute_count_limit ⇒ Float
The maximum number of compute resources that you can allocate to the Autonomous Database under the bring-your-own-license (BYOL) model.
-
#compute_count ⇒ Float
The compute capacity, in number of ECPUs or OCPUs, to assign to the Autonomous Database.
-
#cpu_core_count ⇒ Integer
The number of CPU cores to allocate to the Autonomous Database.
-
#customer_contacts_to_send_to_oci ⇒ Array<Types::CustomerContact>
The list of customer contacts to receive operational notifications from OCI for the Autonomous Database.
-
#data_storage_size_in_g_bs ⇒ Integer
The size, in gigabytes (GB), of the data volume to allocate for the Autonomous Database.
-
#data_storage_size_in_t_bs ⇒ Integer
The size, in terabytes (TB), of the data volume to allocate for the Autonomous Database.
-
#database_edition ⇒ String
The Oracle Database edition to apply to the Autonomous Database.
-
#db_name ⇒ String
The new name of the Autonomous Database.
-
#db_tools_details ⇒ Array<Types::DatabaseTool>
The list of database management tools to enable for the Autonomous Database.
-
#db_version ⇒ String
The Oracle Database software version to use for the Autonomous Database.
-
#db_workload ⇒ String
The intended use of the Autonomous Database, such as transaction processing, data warehouse, JSON database, or APEX.
-
#display_name ⇒ String
The new user-friendly name for the Autonomous Database.
-
#encryption_key_configuration ⇒ Types::EncryptionKeyConfigurationInput
The configuration of the encryption key to use for the Autonomous Database.
-
#encryption_key_provider ⇒ String
The provider of the encryption key to use for the Autonomous Database.
-
#is_auto_scaling_enabled ⇒ Boolean
Specifies whether to enable automatic scaling of the compute resources for the Autonomous Database.
-
#is_auto_scaling_for_storage_enabled ⇒ Boolean
Specifies whether to enable automatic scaling of the storage for the Autonomous Database.
-
#is_backup_retention_locked ⇒ Boolean
Specifies whether to lock the backup retention period of the Autonomous Database to prevent it from being shortened.
-
#is_disconnect_peer ⇒ Boolean
Specifies whether to disconnect the Autonomous Database from its peer database.
-
#is_local_data_guard_enabled ⇒ Boolean
Specifies whether to enable local Oracle Data Guard for the Autonomous Database.
-
#is_mtls_connection_required ⇒ Boolean
Specifies whether mutual TLS (mTLS) authentication is required to connect to the Autonomous Database.
-
#is_refreshable_clone ⇒ Boolean
Specifies whether the Autonomous Database is a refreshable clone.
-
#license_model ⇒ String
The Oracle license model to apply to the Autonomous Database.
-
#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.
-
#long_term_backup_schedule ⇒ Types::LongTermBackupSchedule
The long-term backup schedule for the Autonomous Database.
-
#open_mode ⇒ String
The mode in which to open the Autonomous Database, either read-only or read/write.
-
#peer_db_id ⇒ String
The unique identifier of the peer Autonomous Database.
-
#permission_level ⇒ String
The permission level of the Autonomous Database.
-
#private_endpoint_ip ⇒ String
The private endpoint IP address for the Autonomous Database.
-
#private_endpoint_label ⇒ String
The private endpoint label for the Autonomous Database.
-
#refreshable_mode ⇒ String
The refresh mode of the refreshable clone Autonomous Database.
-
#resource_pool_leader_id ⇒ String
The unique identifier of the resource pool leader Autonomous Database.
-
#resource_pool_summary ⇒ Types::ResourcePoolSummary
The configuration of the resource pool for the Autonomous Database.
-
#scheduled_operations ⇒ Array<Types::ScheduledOperationDetails>
The list of scheduled start and stop times for the Autonomous Database.
-
#standby_allowlisted_ips ⇒ Array<String>
The list of IP addresses that are allowed to access the standby Autonomous Database.
-
#standby_allowlisted_ips_source ⇒ String
The source of the allowlisted IP addresses for the standby Autonomous Database.
-
#time_of_auto_refresh_start ⇒ Time
The date and time at which the automatic refresh of the refreshable clone Autonomous Database starts.
Instance Attribute Details
#admin_password ⇒ String
The new password for the ADMIN user of the Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#admin_password_source ⇒ String
The source of the admin password for the Autonomous Database. When
set to CUSTOMER_MANAGED_AWS_SECRET, the admin password is
retrieved from an Amazon Web Services Secrets Manager secret.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#admin_password_source_configuration ⇒ Types::AdminPasswordSourceConfigurationInput
The configuration of the admin password source for the Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#allowlisted_ips ⇒ Array<String>
The list of IP addresses that are allowed to access the Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#auto_refresh_frequency_in_seconds ⇒ Integer
The frequency, in seconds, at which the refreshable clone Autonomous Database is automatically refreshed.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] 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.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#autonomous_database_id ⇒ String
The unique identifier of the Autonomous Database to update.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#autonomous_maintenance_schedule_type ⇒ String
The maintenance schedule type for the Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#backup_retention_period_in_days ⇒ Integer
The retention period, in days, for automatic backups of the Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#byol_compute_count_limit ⇒ Float
The maximum number of compute resources that you can allocate to the Autonomous Database under the bring-your-own-license (BYOL) model.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#compute_count ⇒ Float
The compute capacity, in number of ECPUs or OCPUs, to assign to the Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#cpu_core_count ⇒ Integer
The number of CPU cores to allocate to the Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#customer_contacts_to_send_to_oci ⇒ Array<Types::CustomerContact>
The list of customer contacts to receive operational notifications from OCI for the Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#data_storage_size_in_g_bs ⇒ Integer
The size, in gigabytes (GB), of the data volume to allocate for the Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#data_storage_size_in_t_bs ⇒ Integer
The size, in terabytes (TB), of the data volume to allocate for the Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#database_edition ⇒ String
The Oracle Database edition to apply to the Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#db_name ⇒ String
The new name of the Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#db_tools_details ⇒ Array<Types::DatabaseTool>
The list of database management tools to enable for the Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#db_version ⇒ String
The Oracle Database software version to use for the Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#db_workload ⇒ String
The intended use of the Autonomous Database, such as transaction processing, data warehouse, JSON database, or APEX.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#display_name ⇒ String
The new user-friendly name for the Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#encryption_key_configuration ⇒ Types::EncryptionKeyConfigurationInput
The configuration of the encryption key to use for the Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#encryption_key_provider ⇒ String
The provider of the encryption key to use for the Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#is_auto_scaling_enabled ⇒ Boolean
Specifies whether to enable automatic scaling of the compute resources for the Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#is_auto_scaling_for_storage_enabled ⇒ Boolean
Specifies whether to enable automatic scaling of the storage for the Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#is_backup_retention_locked ⇒ Boolean
Specifies whether to lock the backup retention period of the Autonomous Database to prevent it from being shortened.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#is_disconnect_peer ⇒ Boolean
Specifies whether to disconnect the Autonomous Database from its peer database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#is_local_data_guard_enabled ⇒ Boolean
Specifies whether to enable local Oracle Data Guard for the Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#is_mtls_connection_required ⇒ Boolean
Specifies whether mutual TLS (mTLS) authentication is required to connect to the Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#is_refreshable_clone ⇒ Boolean
Specifies whether the Autonomous Database is a refreshable clone.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#license_model ⇒ String
The Oracle license model to apply to the Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] 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.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#long_term_backup_schedule ⇒ Types::LongTermBackupSchedule
The long-term backup schedule for the Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#open_mode ⇒ String
The mode in which to open the Autonomous Database, either read-only or read/write.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#peer_db_id ⇒ String
The unique identifier of the peer Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#permission_level ⇒ String
The permission level of the Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#private_endpoint_ip ⇒ String
The private endpoint IP address for the Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#private_endpoint_label ⇒ String
The private endpoint label for the Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#refreshable_mode ⇒ String
The refresh mode of the refreshable clone Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#resource_pool_leader_id ⇒ String
The unique identifier of the resource pool leader Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#resource_pool_summary ⇒ Types::ResourcePoolSummary
The configuration of the resource pool for the Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#scheduled_operations ⇒ Array<Types::ScheduledOperationDetails>
The list of scheduled start and stop times for the Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#standby_allowlisted_ips ⇒ Array<String>
The list of IP addresses that are allowed to access the standby Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |
#standby_allowlisted_ips_source ⇒ String
The source of the allowlisted IP addresses for the standby Autonomous Database.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] 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.
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 10830 class UpdateAutonomousDatabaseInput < Struct.new( :autonomous_database_id, :admin_password, :compute_count, :cpu_core_count, :data_storage_size_in_t_bs, :data_storage_size_in_g_bs, :display_name, :db_name, :db_version, :db_workload, :db_tools_details, :database_edition, :license_model, :is_auto_scaling_enabled, :is_auto_scaling_for_storage_enabled, :is_backup_retention_locked, :is_local_data_guard_enabled, :is_mtls_connection_required, :is_refreshable_clone, :is_disconnect_peer, :backup_retention_period_in_days, :byol_compute_count_limit, :local_adg_auto_failover_max_data_loss_limit, :autonomous_maintenance_schedule_type, :customer_contacts_to_send_to_oci, :scheduled_operations, :long_term_backup_schedule, :open_mode, :permission_level, :refreshable_mode, :private_endpoint_ip, :private_endpoint_label, :peer_db_id, :resource_pool_leader_id, :resource_pool_summary, :standby_allowlisted_ips_source, :standby_allowlisted_ips, :allowlisted_ips, :auto_refresh_frequency_in_seconds, :auto_refresh_point_lag_in_seconds, :time_of_auto_refresh_start, :encryption_key_provider, :encryption_key_configuration, :admin_password_source, :admin_password_source_configuration) SENSITIVE = [:admin_password] include Aws::Structure end |