Class: OCI::FleetSoftwareUpdate::Models::TargetFsuReadinessCheck

Inherits:
FsuReadinessCheck show all
Defined in:
lib/oci/fleet_software_update/models/target_fsu_readiness_check.rb

Overview

Patch Exadata Fleet Update Readiness Check resource details.

Constant Summary

Constants inherited from FsuReadinessCheck

FsuReadinessCheck::LIFECYCLE_STATE_ENUM, FsuReadinessCheck::TYPE_ENUM

Instance Attribute Summary collapse

Attributes inherited from FsuReadinessCheck

#compartment_id, #defined_tags, #display_name, #freeform_tags, #id, #issue_count, #issues, #lifecycle_details, #lifecycle_state, #system_tags, #time_created, #time_finished, #time_updated, #type

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from FsuReadinessCheck

get_subtype

Constructor Details

#initialize(attributes = {}) ⇒ TargetFsuReadinessCheck

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):



85
86
87
88
89
90
91
92
93
94
95
96
# File 'lib/oci/fleet_software_update/models/target_fsu_readiness_check.rb', line 85

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

  attributes['type'] = 'TARGET'

  super(attributes)

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

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

Instance Attribute Details

#targetsArray<OCI::FleetSoftwareUpdate::Models::ReadinessCheckTargetEntry>

[Required] List of targets that will run the Exadata Fleet Update Readiness Check. The targets have to be of the same entity type.



17
18
19
# File 'lib/oci/fleet_software_update/models/target_fsu_readiness_check.rb', line 17

def targets
  @targets
end

Class Method Details

.attribute_mapObject

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



20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/oci/fleet_software_update/models/target_fsu_readiness_check.rb', line 20

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'id': :'id',
    'display_name': :'displayName',
    'compartment_id': :'compartmentId',
    'type': :'type',
    'issue_count': :'issueCount',
    'issues': :'issues',
    'time_created': :'timeCreated',
    'time_updated': :'timeUpdated',
    'time_finished': :'timeFinished',
    'lifecycle_state': :'lifecycleState',
    'lifecycle_details': :'lifecycleDetails',
    'freeform_tags': :'freeformTags',
    'defined_tags': :'definedTags',
    'system_tags': :'systemTags',
    'targets': :'targets'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# File 'lib/oci/fleet_software_update/models/target_fsu_readiness_check.rb', line 43

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'id': :'String',
    'display_name': :'String',
    'compartment_id': :'String',
    'type': :'String',
    'issue_count': :'Integer',
    'issues': :'Array<OCI::FleetSoftwareUpdate::Models::PatchingIssueEntry>',
    'time_created': :'DateTime',
    'time_updated': :'DateTime',
    'time_finished': :'DateTime',
    'lifecycle_state': :'String',
    'lifecycle_details': :'String',
    'freeform_tags': :'Hash<String, String>',
    'defined_tags': :'Hash<String, Hash<String, Object>>',
    'system_tags': :'Hash<String, Hash<String, Object>>',
    'targets': :'Array<OCI::FleetSoftwareUpdate::Models::ReadinessCheckTargetEntry>'
    # 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



105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# File 'lib/oci/fleet_software_update/models/target_fsu_readiness_check.rb', line 105

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

  self.class == other.class &&
    id == other.id &&
    display_name == other.display_name &&
    compartment_id == other.compartment_id &&
    type == other.type &&
    issue_count == other.issue_count &&
    issues == other.issues &&
    time_created == other.time_created &&
    time_updated == other.time_updated &&
    time_finished == other.time_finished &&
    lifecycle_state == other.lifecycle_state &&
    lifecycle_details == other.lifecycle_details &&
    freeform_tags == other.freeform_tags &&
    defined_tags == other.defined_tags &&
    system_tags == other.system_tags &&
    targets == other.targets
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



149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
# File 'lib/oci/fleet_software_update/models/target_fsu_readiness_check.rb', line 149

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


129
130
131
# File 'lib/oci/fleet_software_update/models/target_fsu_readiness_check.rb', line 129

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



138
139
140
# File 'lib/oci/fleet_software_update/models/target_fsu_readiness_check.rb', line 138

def hash
  [id, display_name, compartment_id, type, issue_count, issues, time_created, time_updated, time_finished, lifecycle_state, lifecycle_details, freeform_tags, defined_tags, system_tags, targets].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



182
183
184
185
186
187
188
189
190
191
# File 'lib/oci/fleet_software_update/models/target_fsu_readiness_check.rb', line 182

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



176
177
178
# File 'lib/oci/fleet_software_update/models/target_fsu_readiness_check.rb', line 176

def to_s
  to_hash.to_s
end