Class: Aws::Odb::Types::UpdateAutonomousDatabaseInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Odb::Types::UpdateAutonomousDatabaseInput
- Includes:
- Structure
- Defined in:
- 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 ‘ADMIN` user of 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.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) SENSITIVE = [:admin_password] include Aws::Structure end |
#allowlisted_ips ⇒ Array<String>
The list of IP addresses that are allowed to access the Autonomous Database.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) 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.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) 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.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) SENSITIVE = [:admin_password] include Aws::Structure end |
#autonomous_database_id ⇒ String
The unique identifier of the Autonomous Database to update.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) SENSITIVE = [:admin_password] include Aws::Structure end |
#autonomous_maintenance_schedule_type ⇒ String
The maintenance schedule type for the Autonomous Database.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) 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.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) 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.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) 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.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) SENSITIVE = [:admin_password] include Aws::Structure end |
#cpu_core_count ⇒ Integer
The number of CPU cores to allocate to the Autonomous Database.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) 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.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) 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.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) 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.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) SENSITIVE = [:admin_password] include Aws::Structure end |
#database_edition ⇒ String
The Oracle Database edition to apply to the Autonomous Database.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) SENSITIVE = [:admin_password] include Aws::Structure end |
#db_name ⇒ String
The new name of the Autonomous Database.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) 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.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) SENSITIVE = [:admin_password] include Aws::Structure end |
#db_version ⇒ String
The Oracle Database software version to use for the Autonomous Database.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) 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.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) SENSITIVE = [:admin_password] include Aws::Structure end |
#display_name ⇒ String
The new user-friendly name for the Autonomous Database.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) SENSITIVE = [:admin_password] include Aws::Structure end |
#encryption_key_configuration ⇒ Types::EncryptionKeyConfigurationInput
The configuration of the encryption key to use for the Autonomous Database.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) SENSITIVE = [:admin_password] include Aws::Structure end |
#encryption_key_provider ⇒ String
The provider of the encryption key to use for the Autonomous Database.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) 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.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) 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.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) 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.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) SENSITIVE = [:admin_password] include Aws::Structure end |
#is_disconnect_peer ⇒ Boolean
Specifies whether to disconnect the Autonomous Database from its peer database.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) 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.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) 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.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) SENSITIVE = [:admin_password] include Aws::Structure end |
#is_refreshable_clone ⇒ Boolean
Specifies whether the Autonomous Database is a refreshable clone.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) SENSITIVE = [:admin_password] include Aws::Structure end |
#license_model ⇒ String
The Oracle license model to apply to the Autonomous Database.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) 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.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) SENSITIVE = [:admin_password] include Aws::Structure end |
#long_term_backup_schedule ⇒ Types::LongTermBackupSchedule
The long-term backup schedule for the Autonomous Database.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) 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.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) SENSITIVE = [:admin_password] include Aws::Structure end |
#peer_db_id ⇒ String
The unique identifier of the peer Autonomous Database.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) SENSITIVE = [:admin_password] include Aws::Structure end |
#permission_level ⇒ String
The permission level of the Autonomous Database.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) SENSITIVE = [:admin_password] include Aws::Structure end |
#private_endpoint_ip ⇒ String
The private endpoint IP address for the Autonomous Database.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) SENSITIVE = [:admin_password] include Aws::Structure end |
#private_endpoint_label ⇒ String
The private endpoint label for the Autonomous Database.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) SENSITIVE = [:admin_password] include Aws::Structure end |
#refreshable_mode ⇒ String
The refresh mode of the refreshable clone Autonomous Database.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) SENSITIVE = [:admin_password] include Aws::Structure end |
#resource_pool_leader_id ⇒ String
The unique identifier of the resource pool leader Autonomous Database.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) SENSITIVE = [:admin_password] include Aws::Structure end |
#resource_pool_summary ⇒ Types::ResourcePoolSummary
The configuration of the resource pool for the Autonomous Database.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) SENSITIVE = [:admin_password] include Aws::Structure end |
#scheduled_operations ⇒ Array<Types::ScheduledOperationDetails>
The list of scheduled start and stop times for the Autonomous Database.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) 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.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) SENSITIVE = [:admin_password] include Aws::Structure end |
#standby_allowlisted_ips_source ⇒ String
The source of the allowlisted IP addresses for the standby Autonomous Database.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) 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.
9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 |
# File 'lib/aws-sdk-odb/types.rb', line 9053 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) SENSITIVE = [:admin_password] include Aws::Structure end |