Class: OCI::Database::Models::UpdateAutonomousDatabaseDetails

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/database/models/update_autonomous_database_details.rb

Overview

Details to update an Oracle Autonomous Database.

Notes - To specify OCPU core count, you must use either ocpuCount or cpuCoreCount. You cannot use both parameters at the same time. For Autonomous Database Serverless instances, ocpuCount is not used. - To specify a storage allocation, you must use either dataStorageSizeInGBs or dataStorageSizeInTBs. - See the individual parameter discriptions for more information on the OCPU and storage value parameters. Warning: Oracle recommends that you avoid using any confidential information when you supply string values using the API.

Constant Summary collapse

COMPUTE_MODEL_ENUM =
[
  COMPUTE_MODEL_ECPU = 'ECPU'.freeze,
  COMPUTE_MODEL_OCPU = 'OCPU'.freeze
].freeze
DB_WORKLOAD_ENUM =
[
  DB_WORKLOAD_OLTP = 'OLTP'.freeze,
  DB_WORKLOAD_DW = 'DW'.freeze,
  DB_WORKLOAD_AJD = 'AJD'.freeze,
  DB_WORKLOAD_APEX = 'APEX'.freeze
].freeze
LICENSE_MODEL_ENUM =
[
  LICENSE_MODEL_LICENSE_INCLUDED = 'LICENSE_INCLUDED'.freeze,
  LICENSE_MODEL_BRING_YOUR_OWN_LICENSE = 'BRING_YOUR_OWN_LICENSE'.freeze
].freeze
REFRESHABLE_MODE_ENUM =
[
  REFRESHABLE_MODE_AUTOMATIC = 'AUTOMATIC'.freeze,
  REFRESHABLE_MODE_MANUAL = 'MANUAL'.freeze
].freeze
OPEN_MODE_ENUM =
[
  OPEN_MODE_READ_ONLY = 'READ_ONLY'.freeze,
  OPEN_MODE_READ_WRITE = 'READ_WRITE'.freeze
].freeze
PERMISSION_LEVEL_ENUM =
[
  PERMISSION_LEVEL_RESTRICTED = 'RESTRICTED'.freeze,
  PERMISSION_LEVEL_UNRESTRICTED = 'UNRESTRICTED'.freeze
].freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ UpdateAutonomousDatabaseDetails

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash

Options Hash (attributes):



587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 587

def initialize(attributes = {})
  return unless attributes.is_a?(Hash)

  # convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }

  self.backup_retention_period_in_days = attributes[:'backupRetentionPeriodInDays'] if attributes[:'backupRetentionPeriodInDays']

  raise 'You cannot provide both :backupRetentionPeriodInDays and :backup_retention_period_in_days' if attributes.key?(:'backupRetentionPeriodInDays') && attributes.key?(:'backup_retention_period_in_days')

  self.backup_retention_period_in_days = attributes[:'backup_retention_period_in_days'] if attributes[:'backup_retention_period_in_days']

  self.compute_model = attributes[:'computeModel'] if attributes[:'computeModel']

  raise 'You cannot provide both :computeModel and :compute_model' if attributes.key?(:'computeModel') && attributes.key?(:'compute_model')

  self.compute_model = attributes[:'compute_model'] if attributes[:'compute_model']

  self.in_memory_percentage = attributes[:'inMemoryPercentage'] if attributes[:'inMemoryPercentage']

  raise 'You cannot provide both :inMemoryPercentage and :in_memory_percentage' if attributes.key?(:'inMemoryPercentage') && attributes.key?(:'in_memory_percentage')

  self.in_memory_percentage = attributes[:'in_memory_percentage'] if attributes[:'in_memory_percentage']

  self.local_adg_auto_failover_max_data_loss_limit = attributes[:'localAdgAutoFailoverMaxDataLossLimit'] if attributes[:'localAdgAutoFailoverMaxDataLossLimit']

  raise 'You cannot provide both :localAdgAutoFailoverMaxDataLossLimit and :local_adg_auto_failover_max_data_loss_limit' if attributes.key?(:'localAdgAutoFailoverMaxDataLossLimit') && attributes.key?(:'local_adg_auto_failover_max_data_loss_limit')

  self.local_adg_auto_failover_max_data_loss_limit = attributes[:'local_adg_auto_failover_max_data_loss_limit'] if attributes[:'local_adg_auto_failover_max_data_loss_limit']

  self.cpu_core_count = attributes[:'cpuCoreCount'] if attributes[:'cpuCoreCount']

  raise 'You cannot provide both :cpuCoreCount and :cpu_core_count' if attributes.key?(:'cpuCoreCount') && attributes.key?(:'cpu_core_count')

  self.cpu_core_count = attributes[:'cpu_core_count'] if attributes[:'cpu_core_count']

  self.long_term_backup_schedule = attributes[:'longTermBackupSchedule'] if attributes[:'longTermBackupSchedule']

  raise 'You cannot provide both :longTermBackupSchedule and :long_term_backup_schedule' if attributes.key?(:'longTermBackupSchedule') && attributes.key?(:'long_term_backup_schedule')

  self.long_term_backup_schedule = attributes[:'long_term_backup_schedule'] if attributes[:'long_term_backup_schedule']

  self.is_dev_tier = attributes[:'isDevTier'] unless attributes[:'isDevTier'].nil?
  self.is_dev_tier = false if is_dev_tier.nil? && !attributes.key?(:'isDevTier') # rubocop:disable Style/StringLiterals

  raise 'You cannot provide both :isDevTier and :is_dev_tier' if attributes.key?(:'isDevTier') && attributes.key?(:'is_dev_tier')

  self.is_dev_tier = attributes[:'is_dev_tier'] unless attributes[:'is_dev_tier'].nil?
  self.is_dev_tier = false if is_dev_tier.nil? && !attributes.key?(:'isDevTier') && !attributes.key?(:'is_dev_tier') # rubocop:disable Style/StringLiterals

  self.compute_count = attributes[:'computeCount'] if attributes[:'computeCount']

  raise 'You cannot provide both :computeCount and :compute_count' if attributes.key?(:'computeCount') && attributes.key?(:'compute_count')

  self.compute_count = attributes[:'compute_count'] if attributes[:'compute_count']

  self.ocpu_count = attributes[:'ocpuCount'] if attributes[:'ocpuCount']

  raise 'You cannot provide both :ocpuCount and :ocpu_count' if attributes.key?(:'ocpuCount') && attributes.key?(:'ocpu_count')

  self.ocpu_count = attributes[:'ocpu_count'] if attributes[:'ocpu_count']

  self.data_storage_size_in_tbs = attributes[:'dataStorageSizeInTBs'] if attributes[:'dataStorageSizeInTBs']

  raise 'You cannot provide both :dataStorageSizeInTBs and :data_storage_size_in_tbs' if attributes.key?(:'dataStorageSizeInTBs') && attributes.key?(:'data_storage_size_in_tbs')

  self.data_storage_size_in_tbs = attributes[:'data_storage_size_in_tbs'] if attributes[:'data_storage_size_in_tbs']

  self.data_storage_size_in_gbs = attributes[:'dataStorageSizeInGBs'] if attributes[:'dataStorageSizeInGBs']

  raise 'You cannot provide both :dataStorageSizeInGBs and :data_storage_size_in_gbs' if attributes.key?(:'dataStorageSizeInGBs') && attributes.key?(:'data_storage_size_in_gbs')

  self.data_storage_size_in_gbs = attributes[:'data_storage_size_in_gbs'] if attributes[:'data_storage_size_in_gbs']

  self.display_name = attributes[:'displayName'] if attributes[:'displayName']

  raise 'You cannot provide both :displayName and :display_name' if attributes.key?(:'displayName') && attributes.key?(:'display_name')

  self.display_name = attributes[:'display_name'] if attributes[:'display_name']

  self.is_free_tier = attributes[:'isFreeTier'] unless attributes[:'isFreeTier'].nil?
  self.is_free_tier = false if is_free_tier.nil? && !attributes.key?(:'isFreeTier') # rubocop:disable Style/StringLiterals

  raise 'You cannot provide both :isFreeTier and :is_free_tier' if attributes.key?(:'isFreeTier') && attributes.key?(:'is_free_tier')

  self.is_free_tier = attributes[:'is_free_tier'] unless attributes[:'is_free_tier'].nil?
  self.is_free_tier = false if is_free_tier.nil? && !attributes.key?(:'isFreeTier') && !attributes.key?(:'is_free_tier') # rubocop:disable Style/StringLiterals

  self.admin_password = attributes[:'adminPassword'] if attributes[:'adminPassword']

  raise 'You cannot provide both :adminPassword and :admin_password' if attributes.key?(:'adminPassword') && attributes.key?(:'admin_password')

  self.admin_password = attributes[:'admin_password'] if attributes[:'admin_password']

  self.db_name = attributes[:'dbName'] if attributes[:'dbName']

  raise 'You cannot provide both :dbName and :db_name' if attributes.key?(:'dbName') && attributes.key?(:'db_name')

  self.db_name = attributes[:'db_name'] if attributes[:'db_name']

  self.freeform_tags = attributes[:'freeformTags'] if attributes[:'freeformTags']

  raise 'You cannot provide both :freeformTags and :freeform_tags' if attributes.key?(:'freeformTags') && attributes.key?(:'freeform_tags')

  self.freeform_tags = attributes[:'freeform_tags'] if attributes[:'freeform_tags']

  self.defined_tags = attributes[:'definedTags'] if attributes[:'definedTags']

  raise 'You cannot provide both :definedTags and :defined_tags' if attributes.key?(:'definedTags') && attributes.key?(:'defined_tags')

  self.defined_tags = attributes[:'defined_tags'] if attributes[:'defined_tags']

  self.db_workload = attributes[:'dbWorkload'] if attributes[:'dbWorkload']

  raise 'You cannot provide both :dbWorkload and :db_workload' if attributes.key?(:'dbWorkload') && attributes.key?(:'db_workload')

  self.db_workload = attributes[:'db_workload'] if attributes[:'db_workload']

  self.license_model = attributes[:'licenseModel'] if attributes[:'licenseModel']

  raise 'You cannot provide both :licenseModel and :license_model' if attributes.key?(:'licenseModel') && attributes.key?(:'license_model')

  self.license_model = attributes[:'license_model'] if attributes[:'license_model']

  self.is_access_control_enabled = attributes[:'isAccessControlEnabled'] unless attributes[:'isAccessControlEnabled'].nil?

  raise 'You cannot provide both :isAccessControlEnabled and :is_access_control_enabled' if attributes.key?(:'isAccessControlEnabled') && attributes.key?(:'is_access_control_enabled')

  self.is_access_control_enabled = attributes[:'is_access_control_enabled'] unless attributes[:'is_access_control_enabled'].nil?

  self.whitelisted_ips = attributes[:'whitelistedIps'] if attributes[:'whitelistedIps']

  raise 'You cannot provide both :whitelistedIps and :whitelisted_ips' if attributes.key?(:'whitelistedIps') && attributes.key?(:'whitelisted_ips')

  self.whitelisted_ips = attributes[:'whitelisted_ips'] if attributes[:'whitelisted_ips']

  self.are_primary_whitelisted_ips_used = attributes[:'arePrimaryWhitelistedIpsUsed'] unless attributes[:'arePrimaryWhitelistedIpsUsed'].nil?

  raise 'You cannot provide both :arePrimaryWhitelistedIpsUsed and :are_primary_whitelisted_ips_used' if attributes.key?(:'arePrimaryWhitelistedIpsUsed') && attributes.key?(:'are_primary_whitelisted_ips_used')

  self.are_primary_whitelisted_ips_used = attributes[:'are_primary_whitelisted_ips_used'] unless attributes[:'are_primary_whitelisted_ips_used'].nil?

  self.standby_whitelisted_ips = attributes[:'standbyWhitelistedIps'] if attributes[:'standbyWhitelistedIps']

  raise 'You cannot provide both :standbyWhitelistedIps and :standby_whitelisted_ips' if attributes.key?(:'standbyWhitelistedIps') && attributes.key?(:'standby_whitelisted_ips')

  self.standby_whitelisted_ips = attributes[:'standby_whitelisted_ips'] if attributes[:'standby_whitelisted_ips']

  self.is_auto_scaling_enabled = attributes[:'isAutoScalingEnabled'] unless attributes[:'isAutoScalingEnabled'].nil?

  raise 'You cannot provide both :isAutoScalingEnabled and :is_auto_scaling_enabled' if attributes.key?(:'isAutoScalingEnabled') && attributes.key?(:'is_auto_scaling_enabled')

  self.is_auto_scaling_enabled = attributes[:'is_auto_scaling_enabled'] unless attributes[:'is_auto_scaling_enabled'].nil?

  self.is_refreshable_clone = attributes[:'isRefreshableClone'] unless attributes[:'isRefreshableClone'].nil?

  raise 'You cannot provide both :isRefreshableClone and :is_refreshable_clone' if attributes.key?(:'isRefreshableClone') && attributes.key?(:'is_refreshable_clone')

  self.is_refreshable_clone = attributes[:'is_refreshable_clone'] unless attributes[:'is_refreshable_clone'].nil?

  self.refreshable_mode = attributes[:'refreshableMode'] if attributes[:'refreshableMode']

  raise 'You cannot provide both :refreshableMode and :refreshable_mode' if attributes.key?(:'refreshableMode') && attributes.key?(:'refreshable_mode')

  self.refreshable_mode = attributes[:'refreshable_mode'] if attributes[:'refreshable_mode']

  self.is_local_data_guard_enabled = attributes[:'isLocalDataGuardEnabled'] unless attributes[:'isLocalDataGuardEnabled'].nil?

  raise 'You cannot provide both :isLocalDataGuardEnabled and :is_local_data_guard_enabled' if attributes.key?(:'isLocalDataGuardEnabled') && attributes.key?(:'is_local_data_guard_enabled')

  self.is_local_data_guard_enabled = attributes[:'is_local_data_guard_enabled'] unless attributes[:'is_local_data_guard_enabled'].nil?

  self.is_data_guard_enabled = attributes[:'isDataGuardEnabled'] unless attributes[:'isDataGuardEnabled'].nil?

  raise 'You cannot provide both :isDataGuardEnabled and :is_data_guard_enabled' if attributes.key?(:'isDataGuardEnabled') && attributes.key?(:'is_data_guard_enabled')

  self.is_data_guard_enabled = attributes[:'is_data_guard_enabled'] unless attributes[:'is_data_guard_enabled'].nil?

  self.peer_db_id = attributes[:'peerDbId'] if attributes[:'peerDbId']

  raise 'You cannot provide both :peerDbId and :peer_db_id' if attributes.key?(:'peerDbId') && attributes.key?(:'peer_db_id')

  self.peer_db_id = attributes[:'peer_db_id'] if attributes[:'peer_db_id']

  self.db_version = attributes[:'dbVersion'] if attributes[:'dbVersion']

  raise 'You cannot provide both :dbVersion and :db_version' if attributes.key?(:'dbVersion') && attributes.key?(:'db_version')

  self.db_version = attributes[:'db_version'] if attributes[:'db_version']

  self.open_mode = attributes[:'openMode'] if attributes[:'openMode']

  raise 'You cannot provide both :openMode and :open_mode' if attributes.key?(:'openMode') && attributes.key?(:'open_mode')

  self.open_mode = attributes[:'open_mode'] if attributes[:'open_mode']

  self.permission_level = attributes[:'permissionLevel'] if attributes[:'permissionLevel']

  raise 'You cannot provide both :permissionLevel and :permission_level' if attributes.key?(:'permissionLevel') && attributes.key?(:'permission_level')

  self.permission_level = attributes[:'permission_level'] if attributes[:'permission_level']

  self.subnet_id = attributes[:'subnetId'] if attributes[:'subnetId']

  raise 'You cannot provide both :subnetId and :subnet_id' if attributes.key?(:'subnetId') && attributes.key?(:'subnet_id')

  self.subnet_id = attributes[:'subnet_id'] if attributes[:'subnet_id']

  self.private_endpoint_label = attributes[:'privateEndpointLabel'] if attributes[:'privateEndpointLabel']

  raise 'You cannot provide both :privateEndpointLabel and :private_endpoint_label' if attributes.key?(:'privateEndpointLabel') && attributes.key?(:'private_endpoint_label')

  self.private_endpoint_label = attributes[:'private_endpoint_label'] if attributes[:'private_endpoint_label']

  self.private_endpoint_ip = attributes[:'privateEndpointIp'] if attributes[:'privateEndpointIp']

  raise 'You cannot provide both :privateEndpointIp and :private_endpoint_ip' if attributes.key?(:'privateEndpointIp') && attributes.key?(:'private_endpoint_ip')

  self.private_endpoint_ip = attributes[:'private_endpoint_ip'] if attributes[:'private_endpoint_ip']

  self.nsg_ids = attributes[:'nsgIds'] if attributes[:'nsgIds']

  raise 'You cannot provide both :nsgIds and :nsg_ids' if attributes.key?(:'nsgIds') && attributes.key?(:'nsg_ids')

  self.nsg_ids = attributes[:'nsg_ids'] if attributes[:'nsg_ids']

  self.auto_refresh_frequency_in_seconds = attributes[:'autoRefreshFrequencyInSeconds'] if attributes[:'autoRefreshFrequencyInSeconds']

  raise 'You cannot provide both :autoRefreshFrequencyInSeconds and :auto_refresh_frequency_in_seconds' if attributes.key?(:'autoRefreshFrequencyInSeconds') && attributes.key?(:'auto_refresh_frequency_in_seconds')

  self.auto_refresh_frequency_in_seconds = attributes[:'auto_refresh_frequency_in_seconds'] if attributes[:'auto_refresh_frequency_in_seconds']

  self.auto_refresh_point_lag_in_seconds = attributes[:'autoRefreshPointLagInSeconds'] if attributes[:'autoRefreshPointLagInSeconds']

  raise 'You cannot provide both :autoRefreshPointLagInSeconds and :auto_refresh_point_lag_in_seconds' if attributes.key?(:'autoRefreshPointLagInSeconds') && attributes.key?(:'auto_refresh_point_lag_in_seconds')

  self.auto_refresh_point_lag_in_seconds = attributes[:'auto_refresh_point_lag_in_seconds'] if attributes[:'auto_refresh_point_lag_in_seconds']

  self.time_of_auto_refresh_start = attributes[:'timeOfAutoRefreshStart'] if attributes[:'timeOfAutoRefreshStart']

  raise 'You cannot provide both :timeOfAutoRefreshStart and :time_of_auto_refresh_start' if attributes.key?(:'timeOfAutoRefreshStart') && attributes.key?(:'time_of_auto_refresh_start')

  self.time_of_auto_refresh_start = attributes[:'time_of_auto_refresh_start'] if attributes[:'time_of_auto_refresh_start']

  self.customer_contacts = attributes[:'customerContacts'] if attributes[:'customerContacts']

  raise 'You cannot provide both :customerContacts and :customer_contacts' if attributes.key?(:'customerContacts') && attributes.key?(:'customer_contacts')

  self.customer_contacts = attributes[:'customer_contacts'] if attributes[:'customer_contacts']

  self.is_mtls_connection_required = attributes[:'isMtlsConnectionRequired'] unless attributes[:'isMtlsConnectionRequired'].nil?

  raise 'You cannot provide both :isMtlsConnectionRequired and :is_mtls_connection_required' if attributes.key?(:'isMtlsConnectionRequired') && attributes.key?(:'is_mtls_connection_required')

  self.is_mtls_connection_required = attributes[:'is_mtls_connection_required'] unless attributes[:'is_mtls_connection_required'].nil?

  self.resource_pool_leader_id = attributes[:'resourcePoolLeaderId'] if attributes[:'resourcePoolLeaderId']

  raise 'You cannot provide both :resourcePoolLeaderId and :resource_pool_leader_id' if attributes.key?(:'resourcePoolLeaderId') && attributes.key?(:'resource_pool_leader_id')

  self.resource_pool_leader_id = attributes[:'resource_pool_leader_id'] if attributes[:'resource_pool_leader_id']

  self.resource_pool_summary = attributes[:'resourcePoolSummary'] if attributes[:'resourcePoolSummary']

  raise 'You cannot provide both :resourcePoolSummary and :resource_pool_summary' if attributes.key?(:'resourcePoolSummary') && attributes.key?(:'resource_pool_summary')

  self.resource_pool_summary = attributes[:'resource_pool_summary'] if attributes[:'resource_pool_summary']

  self.scheduled_operations = attributes[:'scheduledOperations'] if attributes[:'scheduledOperations']

  raise 'You cannot provide both :scheduledOperations and :scheduled_operations' if attributes.key?(:'scheduledOperations') && attributes.key?(:'scheduled_operations')

  self.scheduled_operations = attributes[:'scheduled_operations'] if attributes[:'scheduled_operations']

  self.is_auto_scaling_for_storage_enabled = attributes[:'isAutoScalingForStorageEnabled'] unless attributes[:'isAutoScalingForStorageEnabled'].nil?

  raise 'You cannot provide both :isAutoScalingForStorageEnabled and :is_auto_scaling_for_storage_enabled' if attributes.key?(:'isAutoScalingForStorageEnabled') && attributes.key?(:'is_auto_scaling_for_storage_enabled')

  self.is_auto_scaling_for_storage_enabled = attributes[:'is_auto_scaling_for_storage_enabled'] unless attributes[:'is_auto_scaling_for_storage_enabled'].nil?

  self.database_edition = attributes[:'databaseEdition'] if attributes[:'databaseEdition']

  raise 'You cannot provide both :databaseEdition and :database_edition' if attributes.key?(:'databaseEdition') && attributes.key?(:'database_edition')

  self.database_edition = attributes[:'database_edition'] if attributes[:'database_edition']

  self.db_tools_details = attributes[:'dbToolsDetails'] if attributes[:'dbToolsDetails']

  raise 'You cannot provide both :dbToolsDetails and :db_tools_details' if attributes.key?(:'dbToolsDetails') && attributes.key?(:'db_tools_details')

  self.db_tools_details = attributes[:'db_tools_details'] if attributes[:'db_tools_details']

  self.secret_id = attributes[:'secretId'] if attributes[:'secretId']

  raise 'You cannot provide both :secretId and :secret_id' if attributes.key?(:'secretId') && attributes.key?(:'secret_id')

  self.secret_id = attributes[:'secret_id'] if attributes[:'secret_id']

  self.secret_version_number = attributes[:'secretVersionNumber'] if attributes[:'secretVersionNumber']

  raise 'You cannot provide both :secretVersionNumber and :secret_version_number' if attributes.key?(:'secretVersionNumber') && attributes.key?(:'secret_version_number')

  self.secret_version_number = attributes[:'secret_version_number'] if attributes[:'secret_version_number']
end

Instance Attribute Details

#admin_passwordString

The password must be between 12 and 30 characters long, and must contain at least 1 uppercase, 1 lowercase, and 1 numeric character. It cannot contain the double quote symbol (") or the username "admin", regardless of casing. It must be different from the last four passwords and it must not be a password used within the last 24 hours.

This cannot be used in conjunction with with OCI vault secrets (secretId).

This cannot be updated in parallel with any of the following: licenseModel, dbEdition, whitelistedIps, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, or isFreeTier.

Returns:

  • (String)


144
145
146
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 144

def admin_password
  @admin_password
end

#are_primary_whitelisted_ips_usedBOOLEAN

This field will be null if the Autonomous Database is not Data Guard enabled or Access Control is disabled. TRUE if the Autonomous Database has Data Guard and Access Control enabled, and the Autonomous Database uses the primary's IP access control list (ACL) for standby. FALSE if the Autonomous Database has Data Guard and Access Control enabled, and the Autonomous Database uses a different IP access control list (ACL) for standby compared to primary.

Returns:

  • (BOOLEAN)


224
225
226
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 224

def are_primary_whitelisted_ips_used
  @are_primary_whitelisted_ips_used
end

#auto_refresh_frequency_in_secondsInteger

The frequency a refreshable clone is refreshed after auto-refresh is enabled. The minimum is 1 hour. The maximum is 7 days. The date and time that auto-refresh is enabled is controlled by the timeOfAutoRefreshStart parameter.

Returns:

  • (Integer)


345
346
347
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 345

def auto_refresh_frequency_in_seconds
  @auto_refresh_frequency_in_seconds
end

#auto_refresh_point_lag_in_secondsInteger

The time, in seconds, the data of the refreshable clone lags the primary database at the point of refresh. The minimum is 0 minutes (0 mins means refresh to the latest available timestamp). The maximum is 7 days. The lag time increases after refreshing until the next data refresh happens.

Returns:

  • (Integer)


349
350
351
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 349

def auto_refresh_point_lag_in_seconds
  @auto_refresh_point_lag_in_seconds
end

#backup_retention_period_in_daysInteger

Retention period, in days, for long-term backups

Returns:

  • (Integer)


52
53
54
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 52

def backup_retention_period_in_days
  @backup_retention_period_in_days
end

#compute_countFloat

The compute amount (CPUs) available to the database. Minimum and maximum values depend on the compute model and whether the database is an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure. For an Autonomous Database Serverless instance, the 'ECPU' compute model requires a minimum value of one, for databases in the elastic resource pool and minimum value of two, otherwise. Required when using the computeModel parameter. When using cpuCoreCount parameter, it is an error to specify computeCount to a non-null value. Providing computeModel and computeCount is the preferred method for both OCPU and ECPU.

This cannot be updated in parallel with any of the following: licenseModel, databaseEdition, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.

Returns:

  • (Float)


92
93
94
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 92

def compute_count
  @compute_count
end

#compute_modelString

The compute model of the Autonomous Database. This is required if using the computeCount parameter. If using cpuCoreCount then it is an error to specify computeModel to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.

Returns:

  • (String)


56
57
58
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 56

def compute_model
  @compute_model
end

#cpu_core_countInteger

The number of CPUs to be made available to the Autonomous Database.
For Autonomous Databases on Dedicated Exadata Infrastructure: - The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. - It is suggested to use 'computeCount' parameter if you want to use fractional value to provision less than 1 core.

Note: This parameter cannot be used with the ocpuCount or computeCount parameter.

This cannot be updated in parallel with any of the following: licenseModel, databaseEdition, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.

Returns:

  • (Integer)


76
77
78
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 76

def cpu_core_count
  @cpu_core_count
end

#customer_contactsArray<OCI::Database::Models::CustomerContact>

Customer Contacts. Setting this to an empty list removes all customer contacts of an Oracle

This cannot be updated in parallel with any of the following: isMTLSConnectionRequired, scheduledOperations, or dbToolsDetails.



360
361
362
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 360

def customer_contacts
  @customer_contacts
end

#data_storage_size_in_gbsInteger

Applies to dedicated Exadata infrastructure only.

The size, in gigabytes, of the data volume that will be created and attached to the database. The maximum storage value depends on the system shape. See Characteristics of Infrastructure Shapes for shape details.

Note: This parameter cannot be used with the dataStorageSizeInTBs parameter.

Returns:

  • (Integer)


123
124
125
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 123

def data_storage_size_in_gbs
  @data_storage_size_in_gbs
end

#data_storage_size_in_tbsInteger

The size, in terabytes, of the data volume that will be created and attached to the database. For Autonomous Databases on dedicated Exadata infrastructure, the maximum storage value is determined by the infrastructure shape. See Characteristics of Infrastructure Shapes for shape details. A full Exadata service is allocated when the Autonomous Database size is set to the upper limit (384 TB).

Note: This parameter cannot be used with the dataStorageSizeInGBs parameter.

This cannot be updated in parallel with any of the following: licenseModel, databaseEdition, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.

Returns:

  • (Integer)


114
115
116
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 114

def data_storage_size_in_tbs
  @data_storage_size_in_tbs
end

#database_editionString

The Oracle Database Edition that applies to the Autonomous databases. This parameter accepts options STANDARD_EDITION and ENTERPRISE_EDITION.

This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.

Returns:

  • (String)


401
402
403
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 401

def database_edition
  @database_edition
end

#db_nameString

New name for this Autonomous Database. For Autonomous Databases on Dedicated Exadata Infrastructure, the name must begin with an alphabetic character, and can contain a maximum of eight alphanumeric characters. Special characters are not permitted. For Autonomous Database Serverless instances, the name must begin with an alphabetic character, and can contain a maximum of 30 alphanumeric characters. Special characters are not permitted. The database name must be unique in the tenancy.

This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails.

Returns:

  • (String)


153
154
155
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 153

def db_name
  @db_name
end

#db_tools_detailsArray<OCI::Database::Models::DatabaseTool>

The list of database tools details.

This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, scheduledOperations, isLocalDataGuardEnabled, or isFreeTier.



408
409
410
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 408

def db_tools_details
  @db_tools_details
end

#db_versionString

A valid Oracle Database version for Autonomous Database.

Returns:

  • (String)


292
293
294
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 292

def db_version
  @db_version
end

#db_workloadString

The Autonomous Database workload type. The following values are valid:

  • OLTP - indicates an Autonomous Transaction Processing database

  • DW - indicates an Autonomous Data Warehouse database

  • AJD - indicates an Autonomous JSON Database

  • APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.

This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.

Returns:

  • (String)


179
180
181
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 179

def db_workload
  @db_workload
end

#defined_tagsHash<String, Hash<String, Object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

Returns:

  • (Hash<String, Hash<String, Object>>)


167
168
169
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 167

def defined_tags
  @defined_tags
end

#display_nameString

The user-friendly name for the Autonomous Database. The name does not have to be unique. The display name can only be updated for Autonomous Databases using dedicated Exadata Infrastructure. This parameter may not be updated in parallel with dbVersion.

Returns:

  • (String)


128
129
130
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 128

def display_name
  @display_name
end

#freeform_tagsHash<String, String>

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.

Example: {\"Department\": \"Finance\"}

Returns:

  • (Hash<String, String>)


161
162
163
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 161

def freeform_tags
  @freeform_tags
end

#in_memory_percentageInteger

The percentage of the System Global Area(SGA) assigned to In-Memory tables in Autonomous Database. This property is applicable only to Autonomous Databases on the Exadata Cloud@Customer platform.

Returns:

  • (Integer)


60
61
62
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 60

def in_memory_percentage
  @in_memory_percentage
end

#is_access_control_enabledBOOLEAN

Indicates if the database-level access control is enabled. If disabled, database access is defined by the network security rules. If enabled, database access is restricted to the IP addresses defined by the rules specified with the whitelistedIps property. While specifying whitelistedIps rules is optional, if database-level access control is enabled and no rules are specified, the database will become inaccessible. The rules can be added later using the UpdateAutonomousDatabase API operation or edit option in console. When creating a database clone, the desired access control setting should be specified. By default, database-level access control will be disabled for the clone.

This property is applicable only to Autonomous Databases on the Exadata Cloud@Customer platform. For Autonomous Database Serverless instances, whitelistedIps is used.

Returns:

  • (BOOLEAN)


200
201
202
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 200

def is_access_control_enabled
  @is_access_control_enabled
end

#is_auto_scaling_enabledBOOLEAN

Indicates whether auto scaling is enabled for the Autonomous Database CPU core count. Setting to TRUE enables auto scaling. Setting to FALSE disables auto scaling. The default value is TRUE. Auto scaling is only available for Autonomous Database Serverless instances.

Returns:

  • (BOOLEAN)


246
247
248
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 246

def is_auto_scaling_enabled
  @is_auto_scaling_enabled
end

#is_auto_scaling_for_storage_enabledBOOLEAN

Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is FALSE.

Returns:

  • (BOOLEAN)


394
395
396
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 394

def is_auto_scaling_for_storage_enabled
  @is_auto_scaling_for_storage_enabled
end

#is_data_guard_enabledBOOLEAN

** Deprecated. ** Indicates whether the Autonomous Database has a local (in-region) standby database. Not applicable when creating a cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.

To create a local standby, set to TRUE. To delete a local standby, set to FALSE. For more information on using Autonomous Data Guard on an Autonomous Database Serverless instance (local and cross-region) , see About Standby Databases

To enable cross-region Autonomous Data Guard on an Autonomous Database Serverless instance, see Enable Autonomous Data Guard.

To delete a cross-region standby database, provide the peerDbId for the standby database in a remote region, and set isDataGuardEnabled to FALSE.

Returns:

  • (BOOLEAN)


281
282
283
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 281

def is_data_guard_enabled
  @is_data_guard_enabled
end

#is_dev_tierBOOLEAN

Autonomous Database for Developers are free Autonomous Databases that developers can use to build and test new applications.With Autonomous these database instancess instances, you can try new Autonomous Database features for free and apply them to ongoing or new development projects. Developer database comes with limited resources and is, therefore, not suitable for large-scale testing and production deployments. When you need more compute or storage resources, you can transition to a paid database licensing by cloning your developer database into a regular Autonomous Database. See Autonomous Database documentation for more details.

Returns:

  • (BOOLEAN)


84
85
86
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 84

def is_dev_tier
  @is_dev_tier
end

#is_free_tierBOOLEAN

Indicates if this is an Always Free resource. The default value is false. Note that Always Free Autonomous Databases have 1 CPU and 20GB of memory. For Always Free databases, memory and CPU cannot be scaled.

This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, or isLocalDataGuardEnabled

Returns:

  • (BOOLEAN)


135
136
137
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 135

def is_free_tier
  @is_free_tier
end

#is_local_data_guard_enabledBOOLEAN

Indicates whether the Autonomous Database has a local (in-region) standby database. Not applicable when creating a cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.

To create a local standby, set to TRUE. To delete a local standby, set to FALSE. For more information on using Autonomous Data Guard on an Autonomous Database Serverless instance (local and cross-region) , see About Standby Databases

To enable cross-region Autonomous Data Guard on an Autonomous Database Serverless instance, see Enable Autonomous Data Guard.

This cannot be updated in parallel with any of the following: isMTLSRequired, dbWorkload, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.

Returns:

  • (BOOLEAN)


269
270
271
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 269

def is_local_data_guard_enabled
  @is_local_data_guard_enabled
end

#is_mtls_connection_requiredBOOLEAN

Specifies if the Autonomous Database requires mTLS connections.

This may not be updated in parallel with any of the following: licenseModel, databaseEdition, cpuCoreCount, computeCount, dataStorageSizeInTBs, whitelistedIps, openMode, permissionLevel, db-workload, privateEndpointLabel, nsgIds, customerContacts, dbVersion, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.

Service Change: The default value of the isMTLSConnectionRequired attribute will change from true to false on July 1, 2023 in the following APIs: - CreateAutonomousDatabase - GetAutonomousDatabase - UpdateAutonomousDatabase Details: Prior to the July 1, 2023 change, the isMTLSConnectionRequired attribute default value was true. This applies to Autonomous Database Serverless. Does this impact me? If you use or maintain custom scripts or Terraform scripts referencing the CreateAutonomousDatabase, GetAutonomousDatabase, or UpdateAutonomousDatabase APIs, you want to check, and possibly modify, the scripts for the changed default value of the attribute. Should you choose not to leave your scripts unchanged, the API calls containing this attribute will continue to work, but the default value will switch from true to false. How do I make this change? Using either OCI SDKs or command line tools, update your custom scripts to explicitly set the isMTLSConnectionRequired attribute to true.

Returns:

  • (BOOLEAN)


375
376
377
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 375

def is_mtls_connection_required
  @is_mtls_connection_required
end

#is_refreshable_cloneBOOLEAN

Indicates if the Autonomous Database is a refreshable clone.

This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.

Returns:

  • (BOOLEAN)


253
254
255
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 253

def is_refreshable_clone
  @is_refreshable_clone
end

#license_modelString

The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to BRING_YOUR_OWN_LICENSE. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.

This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.

Returns:

  • (String)


189
190
191
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 189

def license_model
  @license_model
end

#local_adg_auto_failover_max_data_loss_limitInteger

Parameter that allows users to select an acceptable maximum data loss limit in seconds, up to which Automatic Failover will be triggered when necessary for a Local Autonomous Data Guard

Returns:

  • (Integer)


64
65
66
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 64

def local_adg_auto_failover_max_data_loss_limit
  @local_adg_auto_failover_max_data_loss_limit
end

#long_term_backup_scheduleOCI::Database::Models::LongTermBackUpScheduleDetails



79
80
81
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 79

def long_term_backup_schedule
  @long_term_backup_schedule
end

#nsg_idsArray<String>

The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions: - A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.

Returns:

  • (Array<String>)


341
342
343
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 341

def nsg_ids
  @nsg_ids
end

#ocpu_countFloat

The number of OCPU cores to be made available to the Autonomous Database.

For Autonomous Databases on Dedicated Exadata Infrastructure, you can specify a fractional value for this parameter. Fractional values are not supported for Autonomous Database Serverless instances. For Autonomous Database Serverless instances, this parameter is not used.

To provision less than 1 core, enter a fractional value in an increment of 0.1. To provision 1 or more cores, you must enter an integer between 1 and the maximum number of cores available to the infrastructure shape. For example, you can provision 0.3 or 0.4 cores, but not 0.35 cores. Likewise, you can provision 2 cores or 3 cores, but not 2.5 cores. The maximum number of cores is determined by the infrastructure shape. See Characteristics of Infrastructure Shapes for shape details.

Note: This parameter cannot be used with the cpuCoreCount parameter.

Returns:

  • (Float)


104
105
106
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 104

def ocpu_count
  @ocpu_count
end

#open_modeString

Indicates the Autonomous Database mode. The database can be opened in READ_ONLY or READ_WRITE mode.

This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.

Returns:

  • (String)


299
300
301
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 299

def open_mode
  @open_mode
end

#peer_db_idString

The database OCID(/Content/General/Concepts/identifiers.htm) of the Disaster Recovery peer (source Primary) database, which is located in a different (remote) region from the current peer database.

To create or delete a local (in-region) standby, see the isDataGuardEnabled parameter.

Returns:

  • (String)


288
289
290
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 288

def peer_db_id
  @peer_db_id
end

#permission_levelString

The Autonomous Database permission level. Restricted mode allows access only by admin users.

This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, nsgIds, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.

Returns:

  • (String)


306
307
308
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 306

def permission_level
  @permission_level
end

#private_endpoint_ipString

The private endpoint Ip address for the resource.

Returns:

  • (String)


334
335
336
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 334

def private_endpoint_ip
  @private_endpoint_ip
end

#private_endpoint_labelString

The resource's private endpoint label. - Setting the endpoint label to a non-empty string creates a private endpoint database. - Resetting the endpoint label to an empty string, after the creation of the private endpoint database, changes the private endpoint database to a public endpoint database. - Setting the endpoint label to a non-empty string value, updates to a new private endpoint database, when the database is disabled and re-enabled.

This setting cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, dbWorkload, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.

Returns:

  • (String)


330
331
332
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 330

def private_endpoint_label
  @private_endpoint_label
end

#refreshable_modeString

The refresh mode of the clone. AUTOMATIC indicates that the clone is automatically being refreshed with data from the source Autonomous Database.

Returns:

  • (String)


257
258
259
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 257

def refreshable_mode
  @refreshable_mode
end

#resource_pool_leader_idString

The unique identifier for leader autonomous database OCID OCID.

Returns:

  • (String)


379
380
381
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 379

def resource_pool_leader_id
  @resource_pool_leader_id
end

#resource_pool_summaryOCI::Database::Models::ResourcePoolSummary



382
383
384
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 382

def resource_pool_summary
  @resource_pool_summary
end

#scheduled_operationsArray<OCI::Database::Models::ScheduledOperationDetails>

The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, scheduledStopTime.

This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.



389
390
391
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 389

def scheduled_operations
  @scheduled_operations
end

#secret_idString

The OCI vault secret [/Content/General/Concepts/identifiers.htm]OCID. This cannot be used in conjunction with adminPassword.

Returns:

  • (String)


412
413
414
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 412

def secret_id
  @secret_id
end

#secret_version_numberInteger

The version of the vault secret. If no version is specified, the latest version will be used.

Returns:

  • (Integer)


416
417
418
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 416

def secret_version_number
  @secret_version_number
end

#standby_whitelisted_ipsArray<String>

The client IP access control list (ACL). This feature is available for [Autonomous Database Serverless] (docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance. If arePrimaryWhitelistedIpsUsed is 'TRUE' then Autonomous Database uses this primary's IP access control list (ACL) for the disaster recovery peer called standbywhitelistedips.

For Autonomous Database Serverless, this is an array of CIDR (classless inter-domain routing) notations for a subnet or VCN OCID (virtual cloud network Oracle Cloud ID). Multiple IPs and VCN OCIDs should be separate strings separated by commas, but if itu2019s other configurations that need multiple pieces of information then its each piece is connected with semicolon (;) as a delimiter. Example: [\"1.1.1.1\",\"1.1.1.0/24\",\"ocid1.vcn.oc1.sea.<unique_id>\",\"ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1\",\"ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16\"] For Exadata Cloud@Customer, this is an array of IP addresses or CIDR notations. Example: [\"1.1.1.1\",\"1.1.1.0/24\",\"1.1.2.25\"]

For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.

This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.

Returns:

  • (Array<String>)


241
242
243
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 241

def standby_whitelisted_ips
  @standby_whitelisted_ips
end

#subnet_idString

The OCID of the subnet the resource is associated with.

Subnet Restrictions: - For bare metal DB systems and for single node virtual machine DB systems, do not use a subnet that overlaps with 192.168.16.16/28. - For Exadata and virtual machine 2-node RAC systems, do not use a subnet that overlaps with 192.168.128.0/20. - For Autonomous Database, setting this will disable public secure access to the database.

These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and the backup subnet.

Returns:

  • (String)


320
321
322
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 320

def subnet_id
  @subnet_id
end

#time_of_auto_refresh_startDateTime

The the date and time that auto-refreshing will begin for an Autonomous Database refreshable clone. This value controls only the start time for the first refresh operation. Subsequent (ongoing) refresh operations have start times controlled by the value of the autoRefreshFrequencyInSeconds parameter.

Returns:

  • (DateTime)


353
354
355
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 353

def time_of_auto_refresh_start
  @time_of_auto_refresh_start
end

#whitelisted_ipsArray<String>

The client IP access control list (ACL). This feature is available for [Autonomous Database Serverless] (docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance. If arePrimaryWhitelistedIpsUsed is 'TRUE' then Autonomous Database uses this primary's IP access control list (ACL) for the disaster recovery peer called standbywhitelistedips.

For Autonomous Database Serverless, this is an array of CIDR (classless inter-domain routing) notations for a subnet or VCN OCID (virtual cloud network Oracle Cloud ID). Multiple IPs and VCN OCIDs should be separate strings separated by commas, but if itu2019s other configurations that need multiple pieces of information then its each piece is connected with semicolon (;) as a delimiter. Example: [\"1.1.1.1\",\"1.1.1.0/24\",\"ocid1.vcn.oc1.sea.<unique_id>\",\"ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1\",\"ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16\"] For Exadata Cloud@Customer, this is an array of IP addresses or CIDR notations. Example: [\"1.1.1.1\",\"1.1.1.0/24\",\"1.1.2.25\"]

For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.

This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.

Returns:

  • (Array<String>)


217
218
219
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 217

def whitelisted_ips
  @whitelisted_ips
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 419

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'backup_retention_period_in_days': :'backupRetentionPeriodInDays',
    'compute_model': :'computeModel',
    'in_memory_percentage': :'inMemoryPercentage',
    'local_adg_auto_failover_max_data_loss_limit': :'localAdgAutoFailoverMaxDataLossLimit',
    'cpu_core_count': :'cpuCoreCount',
    'long_term_backup_schedule': :'longTermBackupSchedule',
    'is_dev_tier': :'isDevTier',
    'compute_count': :'computeCount',
    'ocpu_count': :'ocpuCount',
    'data_storage_size_in_tbs': :'dataStorageSizeInTBs',
    'data_storage_size_in_gbs': :'dataStorageSizeInGBs',
    'display_name': :'displayName',
    'is_free_tier': :'isFreeTier',
    'admin_password': :'adminPassword',
    'db_name': :'dbName',
    'freeform_tags': :'freeformTags',
    'defined_tags': :'definedTags',
    'db_workload': :'dbWorkload',
    'license_model': :'licenseModel',
    'is_access_control_enabled': :'isAccessControlEnabled',
    'whitelisted_ips': :'whitelistedIps',
    'are_primary_whitelisted_ips_used': :'arePrimaryWhitelistedIpsUsed',
    'standby_whitelisted_ips': :'standbyWhitelistedIps',
    'is_auto_scaling_enabled': :'isAutoScalingEnabled',
    'is_refreshable_clone': :'isRefreshableClone',
    'refreshable_mode': :'refreshableMode',
    'is_local_data_guard_enabled': :'isLocalDataGuardEnabled',
    'is_data_guard_enabled': :'isDataGuardEnabled',
    'peer_db_id': :'peerDbId',
    'db_version': :'dbVersion',
    'open_mode': :'openMode',
    'permission_level': :'permissionLevel',
    'subnet_id': :'subnetId',
    'private_endpoint_label': :'privateEndpointLabel',
    'private_endpoint_ip': :'privateEndpointIp',
    'nsg_ids': :'nsgIds',
    'auto_refresh_frequency_in_seconds': :'autoRefreshFrequencyInSeconds',
    'auto_refresh_point_lag_in_seconds': :'autoRefreshPointLagInSeconds',
    'time_of_auto_refresh_start': :'timeOfAutoRefreshStart',
    'customer_contacts': :'customerContacts',
    'is_mtls_connection_required': :'isMtlsConnectionRequired',
    'resource_pool_leader_id': :'resourcePoolLeaderId',
    'resource_pool_summary': :'resourcePoolSummary',
    'scheduled_operations': :'scheduledOperations',
    'is_auto_scaling_for_storage_enabled': :'isAutoScalingForStorageEnabled',
    'database_edition': :'databaseEdition',
    'db_tools_details': :'dbToolsDetails',
    'secret_id': :'secretId',
    'secret_version_number': :'secretVersionNumber'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 476

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'backup_retention_period_in_days': :'Integer',
    'compute_model': :'String',
    'in_memory_percentage': :'Integer',
    'local_adg_auto_failover_max_data_loss_limit': :'Integer',
    'cpu_core_count': :'Integer',
    'long_term_backup_schedule': :'OCI::Database::Models::LongTermBackUpScheduleDetails',
    'is_dev_tier': :'BOOLEAN',
    'compute_count': :'Float',
    'ocpu_count': :'Float',
    'data_storage_size_in_tbs': :'Integer',
    'data_storage_size_in_gbs': :'Integer',
    'display_name': :'String',
    'is_free_tier': :'BOOLEAN',
    'admin_password': :'String',
    'db_name': :'String',
    'freeform_tags': :'Hash<String, String>',
    'defined_tags': :'Hash<String, Hash<String, Object>>',
    'db_workload': :'String',
    'license_model': :'String',
    'is_access_control_enabled': :'BOOLEAN',
    'whitelisted_ips': :'Array<String>',
    'are_primary_whitelisted_ips_used': :'BOOLEAN',
    'standby_whitelisted_ips': :'Array<String>',
    'is_auto_scaling_enabled': :'BOOLEAN',
    'is_refreshable_clone': :'BOOLEAN',
    'refreshable_mode': :'String',
    'is_local_data_guard_enabled': :'BOOLEAN',
    'is_data_guard_enabled': :'BOOLEAN',
    'peer_db_id': :'String',
    'db_version': :'String',
    'open_mode': :'String',
    'permission_level': :'String',
    'subnet_id': :'String',
    'private_endpoint_label': :'String',
    'private_endpoint_ip': :'String',
    'nsg_ids': :'Array<String>',
    'auto_refresh_frequency_in_seconds': :'Integer',
    'auto_refresh_point_lag_in_seconds': :'Integer',
    'time_of_auto_refresh_start': :'DateTime',
    'customer_contacts': :'Array<OCI::Database::Models::CustomerContact>',
    'is_mtls_connection_required': :'BOOLEAN',
    'resource_pool_leader_id': :'String',
    'resource_pool_summary': :'OCI::Database::Models::ResourcePoolSummary',
    'scheduled_operations': :'Array<OCI::Database::Models::ScheduledOperationDetails>',
    'is_auto_scaling_for_storage_enabled': :'BOOLEAN',
    'database_edition': :'String',
    'db_tools_details': :'Array<OCI::Database::Models::DatabaseTool>',
    'secret_id': :'String',
    'secret_version_number': :'Integer'
    # rubocop:enable Style/SymbolLiteral
  }
end

Instance Method Details

#==(other) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • other (Object)

    the other object to be compared



947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 947

def ==(other)
  return true if equal?(other)

  self.class == other.class &&
    backup_retention_period_in_days == other.backup_retention_period_in_days &&
    compute_model == other.compute_model &&
    in_memory_percentage == other.in_memory_percentage &&
    local_adg_auto_failover_max_data_loss_limit == other.local_adg_auto_failover_max_data_loss_limit &&
    cpu_core_count == other.cpu_core_count &&
    long_term_backup_schedule == other.long_term_backup_schedule &&
    is_dev_tier == other.is_dev_tier &&
    compute_count == other.compute_count &&
    ocpu_count == other.ocpu_count &&
    data_storage_size_in_tbs == other.data_storage_size_in_tbs &&
    data_storage_size_in_gbs == other.data_storage_size_in_gbs &&
    display_name == other.display_name &&
    is_free_tier == other.is_free_tier &&
    admin_password == other.admin_password &&
    db_name == other.db_name &&
    freeform_tags == other.freeform_tags &&
    defined_tags == other.defined_tags &&
    db_workload == other.db_workload &&
    license_model == other.license_model &&
    is_access_control_enabled == other.is_access_control_enabled &&
    whitelisted_ips == other.whitelisted_ips &&
    are_primary_whitelisted_ips_used == other.are_primary_whitelisted_ips_used &&
    standby_whitelisted_ips == other.standby_whitelisted_ips &&
    is_auto_scaling_enabled == other.is_auto_scaling_enabled &&
    is_refreshable_clone == other.is_refreshable_clone &&
    refreshable_mode == other.refreshable_mode &&
    is_local_data_guard_enabled == other.is_local_data_guard_enabled &&
    is_data_guard_enabled == other.is_data_guard_enabled &&
    peer_db_id == other.peer_db_id &&
    db_version == other.db_version &&
    open_mode == other.open_mode &&
    permission_level == other.permission_level &&
    subnet_id == other.subnet_id &&
    private_endpoint_label == other.private_endpoint_label &&
    private_endpoint_ip == other.private_endpoint_ip &&
    nsg_ids == other.nsg_ids &&
    auto_refresh_frequency_in_seconds == other.auto_refresh_frequency_in_seconds &&
    auto_refresh_point_lag_in_seconds == other.auto_refresh_point_lag_in_seconds &&
    time_of_auto_refresh_start == other.time_of_auto_refresh_start &&
    customer_contacts == other.customer_contacts &&
    is_mtls_connection_required == other.is_mtls_connection_required &&
    resource_pool_leader_id == other.resource_pool_leader_id &&
    resource_pool_summary == other.resource_pool_summary &&
    scheduled_operations == other.scheduled_operations &&
    is_auto_scaling_for_storage_enabled == other.is_auto_scaling_for_storage_enabled &&
    database_edition == other.database_edition &&
    db_tools_details == other.db_tools_details &&
    secret_id == other.secret_id &&
    secret_version_number == other.secret_version_number
end

#build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 1025

def build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)

  self.class.swagger_types.each_pair do |key, type|
    if type =~ /^Array<(.*)>/i
      # check to ensure the input is an array given that the the attribute
      # is documented as an array but the input is not
      if attributes[self.class.attribute_map[key]].is_a?(Array)
        public_method("#{key}=").call(
          attributes[self.class.attribute_map[key]]
            .map { |v| OCI::Internal::Util.convert_to_type(Regexp.last_match(1), v) }
        )
      end
    elsif !attributes[self.class.attribute_map[key]].nil?
      public_method("#{key}=").call(
        OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]])
      )
    end
    # or else data not found in attributes(hash), not an issue as the data can be optional
  end

  self
end

#eql?(other) ⇒ Boolean

Parameters:

  • other (Object)

    the other object to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


1005
1006
1007
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 1005

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



1014
1015
1016
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 1014

def hash
  [backup_retention_period_in_days, compute_model, in_memory_percentage, local_adg_auto_failover_max_data_loss_limit, cpu_core_count, long_term_backup_schedule, is_dev_tier, compute_count, ocpu_count, data_storage_size_in_tbs, data_storage_size_in_gbs, display_name, is_free_tier, admin_password, db_name, freeform_tags, defined_tags, db_workload, license_model, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_auto_scaling_enabled, is_refreshable_clone, refreshable_mode, is_local_data_guard_enabled, is_data_guard_enabled, peer_db_id, db_version, open_mode, permission_level, subnet_id, private_endpoint_label, private_endpoint_ip, nsg_ids, auto_refresh_frequency_in_seconds, auto_refresh_point_lag_in_seconds, time_of_auto_refresh_start, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, secret_id, secret_version_number].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 1058

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = public_method(attr).call
    next if value.nil? && !instance_variable_defined?("@#{attr}")

    hash[param] = _to_hash(value)
  end
  hash
end

#to_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



1052
1053
1054
# File 'lib/oci/database/models/update_autonomous_database_details.rb', line 1052

def to_s
  to_hash.to_s
end