Class: OCI::Database::Models::ChangeDisasterRecoveryConfigurationDetails

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

Overview

Details to update the cross-region disaster recovery (DR) details of the standby Autonomous Database Serverless instance.

Constant Summary collapse

DISASTER_RECOVERY_TYPE_ENUM =
[
  DISASTER_RECOVERY_TYPE_ADG = 'ADG'.freeze,
  DISASTER_RECOVERY_TYPE_BACKUP_BASED = 'BACKUP_BASED'.freeze
].freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ ChangeDisasterRecoveryConfigurationDetails

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):



70
71
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
# File 'lib/oci/database/models/change_disaster_recovery_configuration_details.rb', line 70

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

  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_typeString

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.

Returns:

  • (String)


21
22
23
# File 'lib/oci/database/models/change_disaster_recovery_configuration_details.rb', line 21

def disaster_recovery_type
  @disaster_recovery_type
end

#is_replicate_automatic_backupsBOOLEAN

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.

Returns:

  • (BOOLEAN)


34
35
36
# File 'lib/oci/database/models/change_disaster_recovery_configuration_details.rb', line 34

def is_replicate_automatic_backups
  @is_replicate_automatic_backups
end

#is_snapshot_standbyBOOLEAN

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.

Returns:

  • (BOOLEAN)


30
31
32
# File 'lib/oci/database/models/change_disaster_recovery_configuration_details.rb', line 30

def is_snapshot_standby
  @is_snapshot_standby
end

#time_snapshot_standby_enabled_tillDateTime

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.

Returns:

  • (DateTime)


25
26
27
# File 'lib/oci/database/models/change_disaster_recovery_configuration_details.rb', line 25

def time_snapshot_standby_enabled_till
  @time_snapshot_standby_enabled_till
end

Class Method Details

.attribute_mapObject

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



37
38
39
40
41
42
43
44
45
46
# File 'lib/oci/database/models/change_disaster_recovery_configuration_details.rb', line 37

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_typesObject

Attribute type mapping.



49
50
51
52
53
54
55
56
57
58
# File 'lib/oci/database/models/change_disaster_recovery_configuration_details.rb', line 49

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.

Parameters:

  • other (Object)

    the other object to be compared



113
114
115
116
117
118
119
120
121
# File 'lib/oci/database/models/change_disaster_recovery_configuration_details.rb', line 113

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

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
# File 'lib/oci/database/models/change_disaster_recovery_configuration_details.rb', line 146

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


126
127
128
# File 'lib/oci/database/models/change_disaster_recovery_configuration_details.rb', line 126

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



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

def hash
  [disaster_recovery_type, time_snapshot_standby_enabled_till, is_snapshot_standby, is_replicate_automatic_backups].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



179
180
181
182
183
184
185
186
187
188
# File 'lib/oci/database/models/change_disaster_recovery_configuration_details.rb', line 179

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



173
174
175
# File 'lib/oci/database/models/change_disaster_recovery_configuration_details.rb', line 173

def to_s
  to_hash.to_s
end