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):



63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# File 'lib/oci/database/models/change_disaster_recovery_configuration_details.rb', line 63

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?
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_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.



33
34
35
36
37
38
39
40
41
# File 'lib/oci/database/models/change_disaster_recovery_configuration_details.rb', line 33

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'disaster_recovery_type': :'disasterRecoveryType',
    'time_snapshot_standby_enabled_till': :'timeSnapshotStandbyEnabledTill',
    'is_snapshot_standby': :'isSnapshotStandby'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



44
45
46
47
48
49
50
51
52
# File 'lib/oci/database/models/change_disaster_recovery_configuration_details.rb', line 44

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'disaster_recovery_type': :'String',
    'time_snapshot_standby_enabled_till': :'DateTime',
    'is_snapshot_standby': :'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



100
101
102
103
104
105
106
107
# File 'lib/oci/database/models/change_disaster_recovery_configuration_details.rb', line 100

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
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



132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
# File 'lib/oci/database/models/change_disaster_recovery_configuration_details.rb', line 132

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


112
113
114
# File 'lib/oci/database/models/change_disaster_recovery_configuration_details.rb', line 112

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



121
122
123
# File 'lib/oci/database/models/change_disaster_recovery_configuration_details.rb', line 121

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

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



165
166
167
168
169
170
171
172
173
174
# File 'lib/oci/database/models/change_disaster_recovery_configuration_details.rb', line 165

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



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

def to_s
  to_hash.to_s
end