Class: OCI::Database::Models::CompleteExternalBackupJobDetails

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

Overview

CompleteExternalBackupJobDetails model.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ CompleteExternalBackupJobDetails

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :tde_wallet_path (String)

    The value to assign to the #tde_wallet_path property

  • :cf_backup_handle (String)

    The value to assign to the #cf_backup_handle property

  • :spf_backup_handle (String)

    The value to assign to the #spf_backup_handle property

  • :sql_patches (Array<String>)

    The value to assign to the #sql_patches property

  • :data_size (Integer)

    The value to assign to the #data_size property

  • :redo_size (Integer)

    The value to assign to the #redo_size property

[View source]

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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# File 'lib/oci/database/models/complete_external_backup_job_details.rb', line 75

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

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

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

  self.cf_backup_handle = attributes[:'cfBackupHandle'] if attributes[:'cfBackupHandle']

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

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

  self.spf_backup_handle = attributes[:'spfBackupHandle'] if attributes[:'spfBackupHandle']

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

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

  self.sql_patches = attributes[:'sqlPatches'] if attributes[:'sqlPatches']

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

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

  self.data_size = attributes[:'dataSize'] if attributes[:'dataSize']

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

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

  self.redo_size = attributes[:'redoSize'] if attributes[:'redoSize']

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

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

Instance Attribute Details

#cf_backup_handleString

The handle of the control file backup.

Returns:

  • (String)

17
18
19
# File 'lib/oci/database/models/complete_external_backup_job_details.rb', line 17

def cf_backup_handle
  @cf_backup_handle
end

#data_sizeInteger

The size of the data in the database, in megabytes.

Returns:

  • (Integer)

29
30
31
# File 'lib/oci/database/models/complete_external_backup_job_details.rb', line 29

def data_size
  @data_size
end

#redo_sizeInteger

The size of the redo in the database, in megabytes.

Returns:

  • (Integer)

33
34
35
# File 'lib/oci/database/models/complete_external_backup_job_details.rb', line 33

def redo_size
  @redo_size
end

#spf_backup_handleString

The handle of the spfile backup.

Returns:

  • (String)

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

def spf_backup_handle
  @spf_backup_handle
end

#sql_patchesArray<String>

The list of SQL patches that need to be applied to the backup during the restore.

Returns:

  • (Array<String>)

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

def sql_patches
  @sql_patches
end

#tde_wallet_pathString

If the database being backed up is TDE enabled, this will be the path to the associated TDE wallet in Object Storage.

Returns:

  • (String)

13
14
15
# File 'lib/oci/database/models/complete_external_backup_job_details.rb', line 13

def tde_wallet_path
  @tde_wallet_path
end

Class Method Details

.attribute_mapObject

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

[View source]

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

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'tde_wallet_path': :'tdeWalletPath',
    'cf_backup_handle': :'cfBackupHandle',
    'spf_backup_handle': :'spfBackupHandle',
    'sql_patches': :'sqlPatches',
    'data_size': :'dataSize',
    'redo_size': :'redoSize'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.

[View source]

50
51
52
53
54
55
56
57
58
59
60
61
# File 'lib/oci/database/models/complete_external_backup_job_details.rb', line 50

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'tde_wallet_path': :'String',
    'cf_backup_handle': :'String',
    'spf_backup_handle': :'String',
    'sql_patches': :'Array<String>',
    'data_size': :'Integer',
    'redo_size': :'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

[View source]

125
126
127
128
129
130
131
132
133
134
135
# File 'lib/oci/database/models/complete_external_backup_job_details.rb', line 125

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

  self.class == other.class &&
    tde_wallet_path == other.tde_wallet_path &&
    cf_backup_handle == other.cf_backup_handle &&
    spf_backup_handle == other.spf_backup_handle &&
    sql_patches == other.sql_patches &&
    data_size == other.data_size &&
    redo_size == other.redo_size
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

[View source]

160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
# File 'lib/oci/database/models/complete_external_backup_job_details.rb', line 160

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
[View source]

140
141
142
# File 'lib/oci/database/models/complete_external_backup_job_details.rb', line 140

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code

[View source]

149
150
151
# File 'lib/oci/database/models/complete_external_backup_job_details.rb', line 149

def hash
  [tde_wallet_path, cf_backup_handle, spf_backup_handle, sql_patches, data_size, redo_size].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash

[View source]

193
194
195
196
197
198
199
200
201
202
# File 'lib/oci/database/models/complete_external_backup_job_details.rb', line 193

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

[View source]

187
188
189
# File 'lib/oci/database/models/complete_external_backup_job_details.rb', line 187

def to_s
  to_hash.to_s
end