Class: OCI::Database::Models::DisasterRecoveryConfiguration
- Inherits:
-
Object
- Object
- OCI::Database::Models::DisasterRecoveryConfiguration
- Defined in:
- lib/oci/database/models/disaster_recovery_configuration.rb
Overview
Configurations of a Disaster Recovery.
Constant Summary collapse
- DISASTER_RECOVERY_TYPE_ENUM =
[ DISASTER_RECOVERY_TYPE_ADG = 'ADG'.freeze, DISASTER_RECOVERY_TYPE_BACKUP_BASED = 'BACKUP_BASED'.freeze, DISASTER_RECOVERY_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#disaster_recovery_type ⇒ String
Indicates the disaster recovery (DR) type of the Autonomous Database Serverless instance.
-
#is_replicate_automatic_backups ⇒ BOOLEAN
If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby.
-
#is_snapshot_standby ⇒ BOOLEAN
Indicates if user wants to convert to a snapshot standby.
-
#time_snapshot_standby_enabled_till ⇒ DateTime
Time and date stored as an RFC 3339 formatted timestamp string.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(other) ⇒ Object
Checks equality by comparing each attribute.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(other) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ DisasterRecoveryConfiguration
constructor
Initializes the object.
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
Constructor Details
#initialize(attributes = {}) ⇒ DisasterRecoveryConfiguration
Initializes the object
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
# File 'lib/oci/database/models/disaster_recovery_configuration.rb', line 72 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.disaster_recovery_type = attributes[:'disasterRecoveryType'] if attributes[:'disasterRecoveryType'] raise 'You cannot provide both :disasterRecoveryType and :disaster_recovery_type' if attributes.key?(:'disasterRecoveryType') && attributes.key?(:'disaster_recovery_type') self.disaster_recovery_type = attributes[:'disaster_recovery_type'] if attributes[:'disaster_recovery_type'] self.time_snapshot_standby_enabled_till = attributes[:'timeSnapshotStandbyEnabledTill'] if attributes[:'timeSnapshotStandbyEnabledTill'] raise 'You cannot provide both :timeSnapshotStandbyEnabledTill and :time_snapshot_standby_enabled_till' if attributes.key?(:'timeSnapshotStandbyEnabledTill') && attributes.key?(:'time_snapshot_standby_enabled_till') self.time_snapshot_standby_enabled_till = attributes[:'time_snapshot_standby_enabled_till'] if attributes[:'time_snapshot_standby_enabled_till'] self.is_snapshot_standby = attributes[:'isSnapshotStandby'] unless attributes[:'isSnapshotStandby'].nil? raise 'You cannot provide both :isSnapshotStandby and :is_snapshot_standby' if attributes.key?(:'isSnapshotStandby') && attributes.key?(:'is_snapshot_standby') self.is_snapshot_standby = attributes[:'is_snapshot_standby'] unless attributes[:'is_snapshot_standby'].nil? self.is_replicate_automatic_backups = attributes[:'isReplicateAutomaticBackups'] unless attributes[:'isReplicateAutomaticBackups'].nil? raise 'You cannot provide both :isReplicateAutomaticBackups and :is_replicate_automatic_backups' if attributes.key?(:'isReplicateAutomaticBackups') && attributes.key?(:'is_replicate_automatic_backups') self.is_replicate_automatic_backups = attributes[:'is_replicate_automatic_backups'] unless attributes[:'is_replicate_automatic_backups'].nil? end |
Instance Attribute Details
#disaster_recovery_type ⇒ String
Indicates the disaster recovery (DR) type of the Autonomous Database Serverless instance. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
23 24 25 |
# File 'lib/oci/database/models/disaster_recovery_configuration.rb', line 23 def disaster_recovery_type @disaster_recovery_type end |
#is_replicate_automatic_backups ⇒ BOOLEAN
If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
36 37 38 |
# File 'lib/oci/database/models/disaster_recovery_configuration.rb', line 36 def is_replicate_automatic_backups @is_replicate_automatic_backups end |
#is_snapshot_standby ⇒ BOOLEAN
Indicates if user wants to convert to a snapshot standby. For example, true would set a standby database to snapshot standby database. False would set a snapshot standby database back to regular standby database.
32 33 34 |
# File 'lib/oci/database/models/disaster_recovery_configuration.rb', line 32 def is_snapshot_standby @is_snapshot_standby end |
#time_snapshot_standby_enabled_till ⇒ DateTime
Time and date stored as an RFC 3339 formatted timestamp string. For example, 2022-01-01T12:00:00.000Z would set a limit for the snapshot standby to be converted back to a cross-region standby database.
27 28 29 |
# File 'lib/oci/database/models/disaster_recovery_configuration.rb', line 27 def time_snapshot_standby_enabled_till @time_snapshot_standby_enabled_till end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
39 40 41 42 43 44 45 46 47 48 |
# File 'lib/oci/database/models/disaster_recovery_configuration.rb', line 39 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'disaster_recovery_type': :'disasterRecoveryType', 'time_snapshot_standby_enabled_till': :'timeSnapshotStandbyEnabledTill', 'is_snapshot_standby': :'isSnapshotStandby', 'is_replicate_automatic_backups': :'isReplicateAutomaticBackups' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
51 52 53 54 55 56 57 58 59 60 |
# File 'lib/oci/database/models/disaster_recovery_configuration.rb', line 51 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'disaster_recovery_type': :'String', 'time_snapshot_standby_enabled_till': :'DateTime', 'is_snapshot_standby': :'BOOLEAN', 'is_replicate_automatic_backups': :'BOOLEAN' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
123 124 125 126 127 128 129 130 131 |
# File 'lib/oci/database/models/disaster_recovery_configuration.rb', line 123 def ==(other) return true if equal?(other) self.class == other.class && disaster_recovery_type == other.disaster_recovery_type && time_snapshot_standby_enabled_till == other.time_snapshot_standby_enabled_till && is_snapshot_standby == other.is_snapshot_standby && is_replicate_automatic_backups == other.is_replicate_automatic_backups end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 |
# File 'lib/oci/database/models/disaster_recovery_configuration.rb', line 156 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
136 137 138 |
# File 'lib/oci/database/models/disaster_recovery_configuration.rb', line 136 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
145 146 147 |
# File 'lib/oci/database/models/disaster_recovery_configuration.rb', line 145 def hash [disaster_recovery_type, time_snapshot_standby_enabled_till, is_snapshot_standby, is_replicate_automatic_backups].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
189 190 191 192 193 194 195 196 197 198 |
# File 'lib/oci/database/models/disaster_recovery_configuration.rb', line 189 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_s ⇒ String
Returns the string representation of the object
183 184 185 |
# File 'lib/oci/database/models/disaster_recovery_configuration.rb', line 183 def to_s to_hash.to_s end |