Class: OCI::FleetSoftwareUpdate::Models::DatabaseTargetSummary

Inherits:
TargetDetails
  • Object
show all
Defined in:
lib/oci/fleet_software_update/models/database_target_summary.rb

Overview

Details of a Database target member of a Exadata Fleet Update Collection. Stored references of the resource documented in docs.oracle.com/en-us/iaas/api/#/en/database/20160918/Database/

Constant Summary

Constants inherited from TargetDetails

TargetDetails::ENTITY_TYPE_ENUM

Instance Attribute Summary collapse

Attributes inherited from TargetDetails

#compartment_id, #entity_type, #id

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from TargetDetails

get_subtype

Constructor Details

#initialize(attributes = {}) ⇒ DatabaseTargetSummary

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :id (String)

    The value to assign to the #id proprety

  • :compartment_id (String)

    The value to assign to the #compartment_id proprety

  • :db_home_id (String)

    The value to assign to the #db_home_id property

  • :vm_cluster_id (String)

    The value to assign to the #vm_cluster_id property

  • :infrastructure_id (String)

    The value to assign to the #infrastructure_id property

  • :software_image_id (String)

    The value to assign to the #software_image_id property

[View source]

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
# File 'lib/oci/fleet_software_update/models/database_target_summary.rb', line 77

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

  attributes['entityType'] = 'DATABASE'

  super(attributes)

  # convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }

  self.db_home_id = attributes[:'dbHomeId'] if attributes[:'dbHomeId']

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

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

  self.vm_cluster_id = attributes[:'vmClusterId'] if attributes[:'vmClusterId']

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

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

  self.infrastructure_id = attributes[:'infrastructureId'] if attributes[:'infrastructureId']

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

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

  self.software_image_id = attributes[:'softwareImageId'] if attributes[:'softwareImageId']

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

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

Instance Attribute Details

#db_home_idString

OCID of the database home.

Returns:

  • (String)

18
19
20
# File 'lib/oci/fleet_software_update/models/database_target_summary.rb', line 18

def db_home_id
  @db_home_id
end

#infrastructure_idString

OCID of the related Exadata Infrastructure or Cloud Exadata Infrastructure resource.

Returns:

  • (String)

28
29
30
# File 'lib/oci/fleet_software_update/models/database_target_summary.rb', line 28

def infrastructure_id
  @infrastructure_id
end

#software_image_idString

OCID of the Database sofware image.

Returns:

  • (String)

33
34
35
# File 'lib/oci/fleet_software_update/models/database_target_summary.rb', line 33

def software_image_id
  @software_image_id
end

#vm_cluster_idString

OCID of the related VM Cluster or Cloud VM Cluster.

Returns:

  • (String)

23
24
25
# File 'lib/oci/fleet_software_update/models/database_target_summary.rb', line 23

def vm_cluster_id
  @vm_cluster_id
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
48
# File 'lib/oci/fleet_software_update/models/database_target_summary.rb', line 36

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'entity_type': :'entityType',
    'id': :'id',
    'compartment_id': :'compartmentId',
    'db_home_id': :'dbHomeId',
    'vm_cluster_id': :'vmClusterId',
    'infrastructure_id': :'infrastructureId',
    'software_image_id': :'softwareImageId'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.

[View source]

51
52
53
54
55
56
57
58
59
60
61
62
63
# File 'lib/oci/fleet_software_update/models/database_target_summary.rb', line 51

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'entity_type': :'String',
    'id': :'String',
    'compartment_id': :'String',
    'db_home_id': :'String',
    'vm_cluster_id': :'String',
    'infrastructure_id': :'String',
    'software_image_id': :'String'
    # 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]

119
120
121
122
123
124
125
126
127
128
129
130
# File 'lib/oci/fleet_software_update/models/database_target_summary.rb', line 119

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

  self.class == other.class &&
    entity_type == other.entity_type &&
    id == other.id &&
    compartment_id == other.compartment_id &&
    db_home_id == other.db_home_id &&
    vm_cluster_id == other.vm_cluster_id &&
    infrastructure_id == other.infrastructure_id &&
    software_image_id == other.software_image_id
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]

155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
# File 'lib/oci/fleet_software_update/models/database_target_summary.rb', line 155

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]

135
136
137
# File 'lib/oci/fleet_software_update/models/database_target_summary.rb', line 135

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code

[View source]

144
145
146
# File 'lib/oci/fleet_software_update/models/database_target_summary.rb', line 144

def hash
  [entity_type, id, compartment_id, db_home_id, vm_cluster_id, infrastructure_id, software_image_id].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash

[View source]

188
189
190
191
192
193
194
195
196
197
# File 'lib/oci/fleet_software_update/models/database_target_summary.rb', line 188

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]

182
183
184
# File 'lib/oci/fleet_software_update/models/database_target_summary.rb', line 182

def to_s
  to_hash.to_s
end