Class: OCI::Database::Models::AutonomousDatabase

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

Overview

An Oracle Autonomous Database.

Constant Summary collapse

LIFECYCLE_STATE_ENUM =
[
  LIFECYCLE_STATE_PROVISIONING = 'PROVISIONING'.freeze,
  LIFECYCLE_STATE_AVAILABLE = 'AVAILABLE'.freeze,
  LIFECYCLE_STATE_STOPPING = 'STOPPING'.freeze,
  LIFECYCLE_STATE_STOPPED = 'STOPPED'.freeze,
  LIFECYCLE_STATE_STARTING = 'STARTING'.freeze,
  LIFECYCLE_STATE_TERMINATING = 'TERMINATING'.freeze,
  LIFECYCLE_STATE_TERMINATED = 'TERMINATED'.freeze,
  LIFECYCLE_STATE_UNAVAILABLE = 'UNAVAILABLE'.freeze,
  LIFECYCLE_STATE_RESTORE_IN_PROGRESS = 'RESTORE_IN_PROGRESS'.freeze,
  LIFECYCLE_STATE_RESTORE_FAILED = 'RESTORE_FAILED'.freeze,
  LIFECYCLE_STATE_BACKUP_IN_PROGRESS = 'BACKUP_IN_PROGRESS'.freeze,
  LIFECYCLE_STATE_SCALE_IN_PROGRESS = 'SCALE_IN_PROGRESS'.freeze,
  LIFECYCLE_STATE_AVAILABLE_NEEDS_ATTENTION = 'AVAILABLE_NEEDS_ATTENTION'.freeze,
  LIFECYCLE_STATE_UPDATING = 'UPDATING'.freeze,
  LIFECYCLE_STATE_MAINTENANCE_IN_PROGRESS = 'MAINTENANCE_IN_PROGRESS'.freeze,
  LIFECYCLE_STATE_RESTARTING = 'RESTARTING'.freeze,
  LIFECYCLE_STATE_RECREATING = 'RECREATING'.freeze,
  LIFECYCLE_STATE_ROLE_CHANGE_IN_PROGRESS = 'ROLE_CHANGE_IN_PROGRESS'.freeze,
  LIFECYCLE_STATE_UPGRADING = 'UPGRADING'.freeze,
  LIFECYCLE_STATE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze
INFRASTRUCTURE_TYPE_ENUM =
[
  INFRASTRUCTURE_TYPE_CLOUD = 'CLOUD'.freeze,
  INFRASTRUCTURE_TYPE_CLOUD_AT_CUSTOMER = 'CLOUD_AT_CUSTOMER'.freeze,
  INFRASTRUCTURE_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze
LICENSE_MODEL_ENUM =
[
  LICENSE_MODEL_LICENSE_INCLUDED = 'LICENSE_INCLUDED'.freeze,
  LICENSE_MODEL_BRING_YOUR_OWN_LICENSE = 'BRING_YOUR_OWN_LICENSE'.freeze,
  LICENSE_MODEL_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.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,
  DB_WORKLOAD_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze
DATA_SAFE_STATUS_ENUM =
[
  DATA_SAFE_STATUS_REGISTERING = 'REGISTERING'.freeze,
  DATA_SAFE_STATUS_REGISTERED = 'REGISTERED'.freeze,
  DATA_SAFE_STATUS_DEREGISTERING = 'DEREGISTERING'.freeze,
  DATA_SAFE_STATUS_NOT_REGISTERED = 'NOT_REGISTERED'.freeze,
  DATA_SAFE_STATUS_FAILED = 'FAILED'.freeze,
  DATA_SAFE_STATUS_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze
OPERATIONS_INSIGHTS_STATUS_ENUM =
[
  OPERATIONS_INSIGHTS_STATUS_ENABLING = 'ENABLING'.freeze,
  OPERATIONS_INSIGHTS_STATUS_ENABLED = 'ENABLED'.freeze,
  OPERATIONS_INSIGHTS_STATUS_DISABLING = 'DISABLING'.freeze,
  OPERATIONS_INSIGHTS_STATUS_NOT_ENABLED = 'NOT_ENABLED'.freeze,
  OPERATIONS_INSIGHTS_STATUS_FAILED_ENABLING = 'FAILED_ENABLING'.freeze,
  OPERATIONS_INSIGHTS_STATUS_FAILED_DISABLING = 'FAILED_DISABLING'.freeze,
  OPERATIONS_INSIGHTS_STATUS_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze
OPEN_MODE_ENUM =
[
  OPEN_MODE_READ_ONLY = 'READ_ONLY'.freeze,
  OPEN_MODE_READ_WRITE = 'READ_WRITE'.freeze,
  OPEN_MODE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze
REFRESHABLE_STATUS_ENUM =
[
  REFRESHABLE_STATUS_REFRESHING = 'REFRESHING'.freeze,
  REFRESHABLE_STATUS_NOT_REFRESHING = 'NOT_REFRESHING'.freeze,
  REFRESHABLE_STATUS_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze
REFRESHABLE_MODE_ENUM =
[
  REFRESHABLE_MODE_AUTOMATIC = 'AUTOMATIC'.freeze,
  REFRESHABLE_MODE_MANUAL = 'MANUAL'.freeze,
  REFRESHABLE_MODE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze
PERMISSION_LEVEL_ENUM =
[
  PERMISSION_LEVEL_RESTRICTED = 'RESTRICTED'.freeze,
  PERMISSION_LEVEL_UNRESTRICTED = 'UNRESTRICTED'.freeze,
  PERMISSION_LEVEL_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze
ROLE_ENUM =
[
  ROLE_PRIMARY = 'PRIMARY'.freeze,
  ROLE_STANDBY = 'STANDBY'.freeze,
  ROLE_DISABLED_STANDBY = 'DISABLED_STANDBY'.freeze,
  ROLE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ AutonomousDatabase

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):



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
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
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
# File 'lib/oci/database/models/autonomous_database.rb', line 625

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

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

  self.compartment_id = attributes[:'compartmentId'] if attributes[:'compartmentId']

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

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

  self.lifecycle_state = attributes[:'lifecycleState'] if attributes[:'lifecycleState']

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

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

  self.lifecycle_details = attributes[:'lifecycleDetails'] if attributes[:'lifecycleDetails']

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

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

  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.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.system_tags = attributes[:'systemTags'] if attributes[:'systemTags']

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

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

  self.time_reclamation_of_free_autonomous_database = attributes[:'timeReclamationOfFreeAutonomousDatabase'] if attributes[:'timeReclamationOfFreeAutonomousDatabase']

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

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

  self.time_deletion_of_free_autonomous_database = attributes[:'timeDeletionOfFreeAutonomousDatabase'] if attributes[:'timeDeletionOfFreeAutonomousDatabase']

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

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

  self.backup_config = attributes[:'backupConfig'] if attributes[:'backupConfig']

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

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

  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.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.infrastructure_type = attributes[:'infrastructureType'] if attributes[:'infrastructureType']

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

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

  self.is_dedicated = attributes[:'isDedicated'] unless attributes[:'isDedicated'].nil?

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

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

  self.autonomous_container_database_id = attributes[:'autonomousContainerDatabaseId'] if attributes[:'autonomousContainerDatabaseId']

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

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

  self.time_created = attributes[:'timeCreated'] if attributes[:'timeCreated']

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

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

  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.service_console_url = attributes[:'serviceConsoleUrl'] if attributes[:'serviceConsoleUrl']

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

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

  self.connection_strings = attributes[:'connectionStrings'] if attributes[:'connectionStrings']

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

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

  self.connection_urls = attributes[:'connectionUrls'] if attributes[:'connectionUrls']

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

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

  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.used_data_storage_size_in_tbs = attributes[:'usedDataStorageSizeInTBs'] if attributes[:'usedDataStorageSizeInTBs']

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

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

  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.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.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.private_endpoint = attributes[:'privateEndpoint'] if attributes[:'privateEndpoint']

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

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

  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.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.is_preview = attributes[:'isPreview'] unless attributes[:'isPreview'].nil?

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

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

  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.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.apex_details = attributes[:'apexDetails'] if attributes[:'apexDetails']

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

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

  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.data_safe_status = attributes[:'dataSafeStatus'] if attributes[:'dataSafeStatus']

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

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

  self.operations_insights_status = attributes[:'operationsInsightsStatus'] if attributes[:'operationsInsightsStatus']

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

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

  self.time_maintenance_begin = attributes[:'timeMaintenanceBegin'] if attributes[:'timeMaintenanceBegin']

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

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

  self.time_maintenance_end = attributes[:'timeMaintenanceEnd'] if attributes[:'timeMaintenanceEnd']

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

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

  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.time_of_last_refresh = attributes[:'timeOfLastRefresh'] if attributes[:'timeOfLastRefresh']

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

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

  self.time_of_last_refresh_point = attributes[:'timeOfLastRefreshPoint'] if attributes[:'timeOfLastRefreshPoint']

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

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

  self.time_of_next_refresh = attributes[:'timeOfNextRefresh'] if attributes[:'timeOfNextRefresh']

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

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

  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.refreshable_status = attributes[:'refreshableStatus'] if attributes[:'refreshableStatus']

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

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

  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.source_id = attributes[:'sourceId'] if attributes[:'sourceId']

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

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

  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.time_of_last_switchover = attributes[:'timeOfLastSwitchover'] if attributes[:'timeOfLastSwitchover']

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

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

  self.time_of_last_failover = attributes[:'timeOfLastFailover'] if attributes[:'timeOfLastFailover']

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

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

  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.failed_data_recovery_in_seconds = attributes[:'failedDataRecoveryInSeconds'] if attributes[:'failedDataRecoveryInSeconds']

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

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

  self.standby_db = attributes[:'standbyDb'] if attributes[:'standbyDb']

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

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

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

  self.available_upgrade_versions = attributes[:'availableUpgradeVersions'] if attributes[:'availableUpgradeVersions']

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

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

  self.key_store_id = attributes[:'keyStoreId'] if attributes[:'keyStoreId']

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

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

  self.key_store_wallet_name = attributes[:'keyStoreWalletName'] if attributes[:'keyStoreWalletName']

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

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

  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']
end

Instance Attribute Details

#apex_detailsOCI::Database::Models::AutonomousDatabaseApex

Information about Oracle APEX Application Development.



318
319
320
# File 'lib/oci/database/models/autonomous_database.rb', line 318

def apex_details
  @apex_details
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. It’s value would be TRUE if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses primary IP access control list (ACL) for standby. It’s value would be FALSE if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses different IP access control list (ACL) for standby compared to primary.

Returns:

  • (BOOLEAN)


300
301
302
# File 'lib/oci/database/models/autonomous_database.rb', line 300

def are_primary_whitelisted_ips_used
  @are_primary_whitelisted_ips_used
end

#autonomous_container_database_idString

The Autonomous Container Database [OCID](docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm).

Returns:

  • (String)


172
173
174
# File 'lib/oci/database/models/autonomous_database.rb', line 172

def autonomous_container_database_id
  @autonomous_container_database_id
end

#available_upgrade_versionsArray<String>

List of Oracle Database versions available for a database upgrade. If there are no version upgrades available, this list is empty.

Returns:

  • (Array<String>)


403
404
405
# File 'lib/oci/database/models/autonomous_database.rb', line 403

def available_upgrade_versions
  @available_upgrade_versions
end

#backup_configOCI::Database::Models::AutonomousDatabaseBackupConfig



147
148
149
# File 'lib/oci/database/models/autonomous_database.rb', line 147

def backup_config
  @backup_config
end

#compartment_idString

[Required] The [OCID](docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the compartment.

Returns:

  • (String)


111
112
113
# File 'lib/oci/database/models/autonomous_database.rb', line 111

def compartment_id
  @compartment_id
end

#connection_stringsOCI::Database::Models::AutonomousDatabaseConnectionStrings

The connection string used to connect to the Autonomous Database. The username for the Service Console is ADMIN. Use the password you entered when creating the Autonomous Database for the password value.



188
189
190
# File 'lib/oci/database/models/autonomous_database.rb', line 188

def connection_strings
  @connection_strings
end

#connection_urlsOCI::Database::Models::AutonomousDatabaseConnectionUrls



191
192
193
# File 'lib/oci/database/models/autonomous_database.rb', line 191

def connection_urls
  @connection_urls
end

#cpu_core_countInteger

[Required] The number of OCPU cores to be made available to the database.

Returns:

  • (Integer)


151
152
153
# File 'lib/oci/database/models/autonomous_database.rb', line 151

def cpu_core_count
  @cpu_core_count
end

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

Customer Contacts.



415
416
417
# File 'lib/oci/database/models/autonomous_database.rb', line 415

def customer_contacts
  @customer_contacts
end

#data_safe_statusString

Status of the Data Safe registration for this Autonomous Database.

Returns:

  • (String)


327
328
329
# File 'lib/oci/database/models/autonomous_database.rb', line 327

def data_safe_status
  @data_safe_status
end

#data_storage_size_in_gbsInteger

The quantity of data in the database, in gigabytes.

Returns:

  • (Integer)


159
160
161
# File 'lib/oci/database/models/autonomous_database.rb', line 159

def data_storage_size_in_gbs
  @data_storage_size_in_gbs
end

#data_storage_size_in_tbsInteger

[Required] The quantity of data in the database, in terabytes.

Returns:

  • (Integer)


155
156
157
# File 'lib/oci/database/models/autonomous_database.rb', line 155

def data_storage_size_in_tbs
  @data_storage_size_in_tbs
end

#db_nameString

[Required] The database name.

Returns:

  • (String)


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

def db_name
  @db_name
end

#db_versionString

A valid Oracle Database version for Autonomous Database.

Returns:

  • (String)


254
255
256
# File 'lib/oci/database/models/autonomous_database.rb', line 254

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.

Returns:

  • (String)


268
269
270
# File 'lib/oci/database/models/autonomous_database.rb', line 268

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](docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).

Returns:

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


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

def defined_tags
  @defined_tags
end

#display_nameString

The user-friendly name for the Autonomous Database. The name does not have to be unique.

Returns:

  • (String)


180
181
182
# File 'lib/oci/database/models/autonomous_database.rb', line 180

def display_name
  @display_name
end

#failed_data_recovery_in_secondsInteger

Indicates the number of seconds of data loss for a Data Guard failover.

Returns:

  • (Integer)


391
392
393
# File 'lib/oci/database/models/autonomous_database.rb', line 391

def failed_data_recovery_in_seconds
  @failed_data_recovery_in_seconds
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](docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).

Example: ‘"Finance"`

Returns:

  • (Hash<String, String>)


211
212
213
# File 'lib/oci/database/models/autonomous_database.rb', line 211

def freeform_tags
  @freeform_tags
end

#idString

[Required] The [OCID](docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the Autonomous Database.

Returns:

  • (String)


107
108
109
# File 'lib/oci/database/models/autonomous_database.rb', line 107

def id
  @id
end

#infrastructure_typeString

The infrastructure type this resource belongs to.

Returns:

  • (String)


163
164
165
# File 'lib/oci/database/models/autonomous_database.rb', line 163

def infrastructure_type
  @infrastructure_type
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.

Returns:

  • (BOOLEAN)


279
280
281
# File 'lib/oci/database/models/autonomous_database.rb', line 279

def is_access_control_enabled
  @is_access_control_enabled
end

#is_auto_scaling_enabledBOOLEAN

Indicates if auto scaling is enabled for the Autonomous Database CPU core count.

Returns:

  • (BOOLEAN)


323
324
325
# File 'lib/oci/database/models/autonomous_database.rb', line 323

def is_auto_scaling_enabled
  @is_auto_scaling_enabled
end

#is_data_guard_enabledBOOLEAN

Indicates whether the Autonomous Database has Data Guard enabled.

Returns:

  • (BOOLEAN)


387
388
389
# File 'lib/oci/database/models/autonomous_database.rb', line 387

def is_data_guard_enabled
  @is_data_guard_enabled
end

#is_dedicatedBOOLEAN

True if the database uses [dedicated Exadata infrastructure](docs.cloud.oracle.com/Content/Database/Concepts/adbddoverview.htm).

Returns:

  • (BOOLEAN)


168
169
170
# File 'lib/oci/database/models/autonomous_database.rb', line 168

def is_dedicated
  @is_dedicated
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.

Returns:

  • (BOOLEAN)


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

def is_free_tier
  @is_free_tier
end

#is_previewBOOLEAN

Indicates if the Autonomous Database version is a preview version.

Returns:

  • (BOOLEAN)


258
259
260
# File 'lib/oci/database/models/autonomous_database.rb', line 258

def is_preview
  @is_preview
end

#is_refreshable_cloneBOOLEAN

Indicates whether the Autonomous Database is a refreshable clone.

Returns:

  • (BOOLEAN)


343
344
345
# File 'lib/oci/database/models/autonomous_database.rb', line 343

def is_refreshable_clone
  @is_refreshable_clone
end

#key_store_idString

Returns:

  • (String)


407
408
409
# File 'lib/oci/database/models/autonomous_database.rb', line 407

def key_store_id
  @key_store_id
end

#key_store_wallet_nameString

The wallet name for Oracle Key Vault.

Returns:

  • (String)


411
412
413
# File 'lib/oci/database/models/autonomous_database.rb', line 411

def key_store_wallet_name
  @key_store_wallet_name
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 PaaS and IaaS services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Database service. Note that when provisioning an Autonomous Database on [dedicated Exadata infrastructure](docs.cloud.oracle.com/Content/Database/Concepts/adbddoverview.htm), this attribute must be null because the attribute is already set at the Autonomous Exadata Infrastructure level. When using [shared Exadata infrastructure](docs.cloud.oracle.com/Content/Database/Concepts/adboverview.htm#AEI), if a value is not specified, the system will supply the value of BRING_YOUR_OWN_LICENSE.

Returns:

  • (String)


199
200
201
# File 'lib/oci/database/models/autonomous_database.rb', line 199

def license_model
  @license_model
end

#lifecycle_detailsString

Information about the current lifecycle state.

Returns:

  • (String)


119
120
121
# File 'lib/oci/database/models/autonomous_database.rb', line 119

def lifecycle_details
  @lifecycle_details
end

#lifecycle_stateString

[Required] The current state of the Autonomous Database.

Returns:

  • (String)


115
116
117
# File 'lib/oci/database/models/autonomous_database.rb', line 115

def lifecycle_state
  @lifecycle_state
end

#nsg_idsArray<String>

A list of the [OCIDs](docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the network security groups (NSGs) that this resource belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see [Security Rules](docs.cloud.oracle.com/Content/Network/Concepts/securityrules.htm). **NsgIds restrictions:**

  • Autonomous Databases with private access require at least 1 Network Security Group (NSG). The nsgIds array cannot be empty.

Returns:

  • (Array<String>)


238
239
240
# File 'lib/oci/database/models/autonomous_database.rb', line 238

def nsg_ids
  @nsg_ids
end

#open_modeString

The ‘DATABASE OPEN` mode. You can open the database in READ_ONLY or READ_WRITE mode.

Returns:

  • (String)


359
360
361
# File 'lib/oci/database/models/autonomous_database.rb', line 359

def open_mode
  @open_mode
end

#operations_insights_statusString

Status of Operations Insights for this Autonomous Database.

Returns:

  • (String)


331
332
333
# File 'lib/oci/database/models/autonomous_database.rb', line 331

def operations_insights_status
  @operations_insights_status
end

#permission_levelString

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

Returns:

  • (String)


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

def permission_level
  @permission_level
end

#private_endpointString

The private endpoint for the resource.

Returns:

  • (String)


242
243
244
# File 'lib/oci/database/models/autonomous_database.rb', line 242

def private_endpoint
  @private_endpoint
end

#private_endpoint_ipString

The private endpoint Ip address for the resource.

Returns:

  • (String)


250
251
252
# File 'lib/oci/database/models/autonomous_database.rb', line 250

def private_endpoint_ip
  @private_endpoint_ip
end

#private_endpoint_labelString

The private endpoint label for the resource. Setting this to an empty string, after the private endpoint database gets created, will change the same private endpoint database to the public endpoint database.

Returns:

  • (String)


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

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)


367
368
369
# File 'lib/oci/database/models/autonomous_database.rb', line 367

def refreshable_mode
  @refreshable_mode
end

#refreshable_statusString

The refresh status of the clone. REFRESHING indicates that the clone is currently being refreshed with data from the source Autonomous Database.

Returns:

  • (String)


363
364
365
# File 'lib/oci/database/models/autonomous_database.rb', line 363

def refreshable_status
  @refreshable_status
end

#roleString

The Data Guard role of the Autonomous Container Database, if Autonomous Data Guard is enabled.

Returns:

  • (String)


399
400
401
# File 'lib/oci/database/models/autonomous_database.rb', line 399

def role
  @role
end

#service_console_urlString

The URL of the Service Console for the Autonomous Database.

Returns:

  • (String)


184
185
186
# File 'lib/oci/database/models/autonomous_database.rb', line 184

def service_console_url
  @service_console_url
end

#source_idString

The [OCID](docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that was cloned to create the current Autonomous Database.

Returns:

  • (String)


371
372
373
# File 'lib/oci/database/models/autonomous_database.rb', line 371

def source_id
  @source_id
end

#standby_dbOCI::Database::Models::AutonomousDatabaseStandbySummary



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

def standby_db
  @standby_db
end

#standby_whitelisted_ipsArray<String>

The client IP access control list (ACL). This feature is available for autonomous databases on [shared Exadata infrastructure](docs.cloud.oracle.com/Content/Database/Concepts/adboverview.htm#AEI) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.

For shared Exadata infrastructure, this is an array of CIDR (Classless Inter-Domain Routing) notations for a subnet or VCN OCID. Use a semicolon (;) as a deliminator between the VCN-specific subnets or IPs. 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 (Classless Inter-Domain Routing) 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.

Returns:

  • (Array<String>)


314
315
316
# File 'lib/oci/database/models/autonomous_database.rb', line 314

def standby_whitelisted_ips
  @standby_whitelisted_ips
end

#subnet_idString

The [OCID](docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) 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)


231
232
233
# File 'lib/oci/database/models/autonomous_database.rb', line 231

def subnet_id
  @subnet_id
end

#system_tagsHash<String, Hash<String, Object>>

System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).

Returns:

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


134
135
136
# File 'lib/oci/database/models/autonomous_database.rb', line 134

def system_tags
  @system_tags
end

#time_createdDateTime

The date and time the Autonomous Database was created.

Returns:

  • (DateTime)


176
177
178
# File 'lib/oci/database/models/autonomous_database.rb', line 176

def time_created
  @time_created
end

#time_deletion_of_free_autonomous_databaseDateTime

The date and time the Always Free database will be automatically deleted because of inactivity. If the database is in the STOPPED state and without activity until this time, it will be deleted.

Returns:

  • (DateTime)


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

def time_deletion_of_free_autonomous_database
  @time_deletion_of_free_autonomous_database
end

#time_maintenance_beginDateTime

The date and time when maintenance will begin.

Returns:

  • (DateTime)


335
336
337
# File 'lib/oci/database/models/autonomous_database.rb', line 335

def time_maintenance_begin
  @time_maintenance_begin
end

#time_maintenance_endDateTime

The date and time when maintenance will end.

Returns:

  • (DateTime)


339
340
341
# File 'lib/oci/database/models/autonomous_database.rb', line 339

def time_maintenance_end
  @time_maintenance_end
end

#time_of_last_failoverDateTime

The timestamp of the last failover operation.

Returns:

  • (DateTime)


383
384
385
# File 'lib/oci/database/models/autonomous_database.rb', line 383

def time_of_last_failover
  @time_of_last_failover
end

#time_of_last_refreshDateTime

The date and time when last refresh happened.

Returns:

  • (DateTime)


347
348
349
# File 'lib/oci/database/models/autonomous_database.rb', line 347

def time_of_last_refresh
  @time_of_last_refresh
end

#time_of_last_refresh_pointDateTime

The refresh point timestamp (UTC). The refresh point is the time to which the database was most recently refreshed. Data created after the refresh point is not included in the refresh.

Returns:

  • (DateTime)


351
352
353
# File 'lib/oci/database/models/autonomous_database.rb', line 351

def time_of_last_refresh_point
  @time_of_last_refresh_point
end

#time_of_last_switchoverDateTime

The timestamp of the last switchover operation for the Autonomous Database.

Returns:

  • (DateTime)


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

def time_of_last_switchover
  @time_of_last_switchover
end

#time_of_next_refreshDateTime

The date and time of next refresh.

Returns:

  • (DateTime)


355
356
357
# File 'lib/oci/database/models/autonomous_database.rb', line 355

def time_of_next_refresh
  @time_of_next_refresh
end

#time_reclamation_of_free_autonomous_databaseDateTime

The date and time the Always Free database will be stopped because of inactivity. If this time is reached without any database activity, the database will automatically be put into the STOPPED state.

Returns:

  • (DateTime)


139
140
141
# File 'lib/oci/database/models/autonomous_database.rb', line 139

def time_reclamation_of_free_autonomous_database
  @time_reclamation_of_free_autonomous_database
end

#used_data_storage_size_in_tbsInteger

The amount of storage that has been used, in terabytes.

Returns:

  • (Integer)


203
204
205
# File 'lib/oci/database/models/autonomous_database.rb', line 203

def used_data_storage_size_in_tbs
  @used_data_storage_size_in_tbs
end

#whitelisted_ipsArray<String>

The client IP access control list (ACL). This feature is available for autonomous databases on [shared Exadata infrastructure](docs.cloud.oracle.com/Content/Database/Concepts/adboverview.htm#AEI) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.

For shared Exadata infrastructure, this is an array of CIDR (Classless Inter-Domain Routing) notations for a subnet or VCN OCID. Use a semicolon (;) as a deliminator between the VCN-specific subnets or IPs. 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 (Classless Inter-Domain Routing) 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.

Returns:

  • (Array<String>)


293
294
295
# File 'lib/oci/database/models/autonomous_database.rb', line 293

def whitelisted_ips
  @whitelisted_ips
end

Class Method Details

.attribute_mapObject

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



418
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
474
475
476
477
478
479
480
481
482
483
484
485
# File 'lib/oci/database/models/autonomous_database.rb', line 418

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'id': :'id',
    'compartment_id': :'compartmentId',
    'lifecycle_state': :'lifecycleState',
    'lifecycle_details': :'lifecycleDetails',
    'db_name': :'dbName',
    'is_free_tier': :'isFreeTier',
    'system_tags': :'systemTags',
    'time_reclamation_of_free_autonomous_database': :'timeReclamationOfFreeAutonomousDatabase',
    'time_deletion_of_free_autonomous_database': :'timeDeletionOfFreeAutonomousDatabase',
    'backup_config': :'backupConfig',
    'cpu_core_count': :'cpuCoreCount',
    'data_storage_size_in_tbs': :'dataStorageSizeInTBs',
    'data_storage_size_in_gbs': :'dataStorageSizeInGBs',
    'infrastructure_type': :'infrastructureType',
    'is_dedicated': :'isDedicated',
    'autonomous_container_database_id': :'autonomousContainerDatabaseId',
    'time_created': :'timeCreated',
    'display_name': :'displayName',
    'service_console_url': :'serviceConsoleUrl',
    'connection_strings': :'connectionStrings',
    'connection_urls': :'connectionUrls',
    'license_model': :'licenseModel',
    'used_data_storage_size_in_tbs': :'usedDataStorageSizeInTBs',
    'freeform_tags': :'freeformTags',
    'defined_tags': :'definedTags',
    'subnet_id': :'subnetId',
    'nsg_ids': :'nsgIds',
    'private_endpoint': :'privateEndpoint',
    'private_endpoint_label': :'privateEndpointLabel',
    'private_endpoint_ip': :'privateEndpointIp',
    'db_version': :'dbVersion',
    'is_preview': :'isPreview',
    'db_workload': :'dbWorkload',
    'is_access_control_enabled': :'isAccessControlEnabled',
    'whitelisted_ips': :'whitelistedIps',
    'are_primary_whitelisted_ips_used': :'arePrimaryWhitelistedIpsUsed',
    'standby_whitelisted_ips': :'standbyWhitelistedIps',
    'apex_details': :'apexDetails',
    'is_auto_scaling_enabled': :'isAutoScalingEnabled',
    'data_safe_status': :'dataSafeStatus',
    'operations_insights_status': :'operationsInsightsStatus',
    'time_maintenance_begin': :'timeMaintenanceBegin',
    'time_maintenance_end': :'timeMaintenanceEnd',
    'is_refreshable_clone': :'isRefreshableClone',
    'time_of_last_refresh': :'timeOfLastRefresh',
    'time_of_last_refresh_point': :'timeOfLastRefreshPoint',
    'time_of_next_refresh': :'timeOfNextRefresh',
    'open_mode': :'openMode',
    'refreshable_status': :'refreshableStatus',
    'refreshable_mode': :'refreshableMode',
    'source_id': :'sourceId',
    'permission_level': :'permissionLevel',
    'time_of_last_switchover': :'timeOfLastSwitchover',
    'time_of_last_failover': :'timeOfLastFailover',
    'is_data_guard_enabled': :'isDataGuardEnabled',
    'failed_data_recovery_in_seconds': :'failedDataRecoveryInSeconds',
    'standby_db': :'standbyDb',
    'role': :'role',
    'available_upgrade_versions': :'availableUpgradeVersions',
    'key_store_id': :'keyStoreId',
    'key_store_wallet_name': :'keyStoreWalletName',
    'customer_contacts': :'customerContacts'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



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
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
# File 'lib/oci/database/models/autonomous_database.rb', line 488

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'id': :'String',
    'compartment_id': :'String',
    'lifecycle_state': :'String',
    'lifecycle_details': :'String',
    'db_name': :'String',
    'is_free_tier': :'BOOLEAN',
    'system_tags': :'Hash<String, Hash<String, Object>>',
    'time_reclamation_of_free_autonomous_database': :'DateTime',
    'time_deletion_of_free_autonomous_database': :'DateTime',
    'backup_config': :'OCI::Database::Models::AutonomousDatabaseBackupConfig',
    'cpu_core_count': :'Integer',
    'data_storage_size_in_tbs': :'Integer',
    'data_storage_size_in_gbs': :'Integer',
    'infrastructure_type': :'String',
    'is_dedicated': :'BOOLEAN',
    'autonomous_container_database_id': :'String',
    'time_created': :'DateTime',
    'display_name': :'String',
    'service_console_url': :'String',
    'connection_strings': :'OCI::Database::Models::AutonomousDatabaseConnectionStrings',
    'connection_urls': :'OCI::Database::Models::AutonomousDatabaseConnectionUrls',
    'license_model': :'String',
    'used_data_storage_size_in_tbs': :'Integer',
    'freeform_tags': :'Hash<String, String>',
    'defined_tags': :'Hash<String, Hash<String, Object>>',
    'subnet_id': :'String',
    'nsg_ids': :'Array<String>',
    'private_endpoint': :'String',
    'private_endpoint_label': :'String',
    'private_endpoint_ip': :'String',
    'db_version': :'String',
    'is_preview': :'BOOLEAN',
    'db_workload': :'String',
    'is_access_control_enabled': :'BOOLEAN',
    'whitelisted_ips': :'Array<String>',
    'are_primary_whitelisted_ips_used': :'BOOLEAN',
    'standby_whitelisted_ips': :'Array<String>',
    'apex_details': :'OCI::Database::Models::AutonomousDatabaseApex',
    'is_auto_scaling_enabled': :'BOOLEAN',
    'data_safe_status': :'String',
    'operations_insights_status': :'String',
    'time_maintenance_begin': :'DateTime',
    'time_maintenance_end': :'DateTime',
    'is_refreshable_clone': :'BOOLEAN',
    'time_of_last_refresh': :'DateTime',
    'time_of_last_refresh_point': :'DateTime',
    'time_of_next_refresh': :'DateTime',
    'open_mode': :'String',
    'refreshable_status': :'String',
    'refreshable_mode': :'String',
    'source_id': :'String',
    'permission_level': :'String',
    'time_of_last_switchover': :'DateTime',
    'time_of_last_failover': :'DateTime',
    'is_data_guard_enabled': :'BOOLEAN',
    'failed_data_recovery_in_seconds': :'Integer',
    'standby_db': :'OCI::Database::Models::AutonomousDatabaseStandbySummary',
    'role': :'String',
    'available_upgrade_versions': :'Array<String>',
    'key_store_id': :'String',
    'key_store_wallet_name': :'String',
    'customer_contacts': :'Array<OCI::Database::Models::CustomerContact>'
    # 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



1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
# File 'lib/oci/database/models/autonomous_database.rb', line 1145

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

  self.class == other.class &&
    id == other.id &&
    compartment_id == other.compartment_id &&
    lifecycle_state == other.lifecycle_state &&
    lifecycle_details == other.lifecycle_details &&
    db_name == other.db_name &&
    is_free_tier == other.is_free_tier &&
    system_tags == other.system_tags &&
    time_reclamation_of_free_autonomous_database == other.time_reclamation_of_free_autonomous_database &&
    time_deletion_of_free_autonomous_database == other.time_deletion_of_free_autonomous_database &&
    backup_config == other.backup_config &&
    cpu_core_count == other.cpu_core_count &&
    data_storage_size_in_tbs == other.data_storage_size_in_tbs &&
    data_storage_size_in_gbs == other.data_storage_size_in_gbs &&
    infrastructure_type == other.infrastructure_type &&
    is_dedicated == other.is_dedicated &&
    autonomous_container_database_id == other.autonomous_container_database_id &&
    time_created == other.time_created &&
    display_name == other.display_name &&
    service_console_url == other.service_console_url &&
    connection_strings == other.connection_strings &&
    connection_urls == other.connection_urls &&
    license_model == other.license_model &&
    used_data_storage_size_in_tbs == other.used_data_storage_size_in_tbs &&
    freeform_tags == other.freeform_tags &&
    defined_tags == other.defined_tags &&
    subnet_id == other.subnet_id &&
    nsg_ids == other.nsg_ids &&
    private_endpoint == other.private_endpoint &&
    private_endpoint_label == other.private_endpoint_label &&
    private_endpoint_ip == other.private_endpoint_ip &&
    db_version == other.db_version &&
    is_preview == other.is_preview &&
    db_workload == other.db_workload &&
    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 &&
    apex_details == other.apex_details &&
    is_auto_scaling_enabled == other.is_auto_scaling_enabled &&
    data_safe_status == other.data_safe_status &&
    operations_insights_status == other.operations_insights_status &&
    time_maintenance_begin == other.time_maintenance_begin &&
    time_maintenance_end == other.time_maintenance_end &&
    is_refreshable_clone == other.is_refreshable_clone &&
    time_of_last_refresh == other.time_of_last_refresh &&
    time_of_last_refresh_point == other.time_of_last_refresh_point &&
    time_of_next_refresh == other.time_of_next_refresh &&
    open_mode == other.open_mode &&
    refreshable_status == other.refreshable_status &&
    refreshable_mode == other.refreshable_mode &&
    source_id == other.source_id &&
    permission_level == other.permission_level &&
    time_of_last_switchover == other.time_of_last_switchover &&
    time_of_last_failover == other.time_of_last_failover &&
    is_data_guard_enabled == other.is_data_guard_enabled &&
    failed_data_recovery_in_seconds == other.failed_data_recovery_in_seconds &&
    standby_db == other.standby_db &&
    role == other.role &&
    available_upgrade_versions == other.available_upgrade_versions &&
    key_store_id == other.key_store_id &&
    key_store_wallet_name == other.key_store_wallet_name &&
    customer_contacts == other.customer_contacts
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



1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
# File 'lib/oci/database/models/autonomous_database.rb', line 1236

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


1216
1217
1218
# File 'lib/oci/database/models/autonomous_database.rb', line 1216

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



1225
1226
1227
# File 'lib/oci/database/models/autonomous_database.rb', line 1225

def hash
  [id, compartment_id, lifecycle_state, lifecycle_details, db_name, is_free_tier, system_tags, time_reclamation_of_free_autonomous_database, time_deletion_of_free_autonomous_database, backup_config, cpu_core_count, data_storage_size_in_tbs, data_storage_size_in_gbs, infrastructure_type, is_dedicated, autonomous_container_database_id, time_created, display_name, service_console_url, connection_strings, connection_urls, license_model, used_data_storage_size_in_tbs, freeform_tags, defined_tags, subnet_id, nsg_ids, private_endpoint, private_endpoint_label, private_endpoint_ip, db_version, is_preview, db_workload, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, apex_details, is_auto_scaling_enabled, data_safe_status, operations_insights_status, time_maintenance_begin, time_maintenance_end, is_refreshable_clone, time_of_last_refresh, time_of_last_refresh_point, time_of_next_refresh, open_mode, refreshable_status, refreshable_mode, source_id, permission_level, time_of_last_switchover, time_of_last_failover, is_data_guard_enabled, failed_data_recovery_in_seconds, standby_db, role, available_upgrade_versions, key_store_id, key_store_wallet_name, customer_contacts].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
# File 'lib/oci/database/models/autonomous_database.rb', line 1269

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



1263
1264
1265
# File 'lib/oci/database/models/autonomous_database.rb', line 1263

def to_s
  to_hash.to_s
end