Class: OCI::FleetSoftwareUpdate::Models::GiResourceIdFilter

Inherits:
GiFleetDiscoveryFilter show all
Defined in:
lib/oci/fleet_software_update/models/gi_resource_id_filter.rb

Overview

Related resource Ids to include in the discovery.

Constant Summary collapse

ENTITY_TYPE_ENUM =
[
  ENTITY_TYPE_EXADATAINFRASTRUCTURE = 'EXADATAINFRASTRUCTURE'.freeze,
  ENTITY_TYPE_CLOUDEXADATAINFRASTRUCTURE = 'CLOUDEXADATAINFRASTRUCTURE'.freeze,
  ENTITY_TYPE_VMCLUSTER = 'VMCLUSTER'.freeze,
  ENTITY_TYPE_CLOUDVMCLUSTER = 'CLOUDVMCLUSTER'.freeze,
  ENTITY_TYPE_FSUCOLLECTION = 'FSUCOLLECTION'.freeze,
  ENTITY_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze
OPERATOR_ENUM =
[
  OPERATOR_AND = 'AND'.freeze,
  OPERATOR_OR = 'OR'.freeze,
  OPERATOR_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

Constants inherited from GiFleetDiscoveryFilter

OCI::FleetSoftwareUpdate::Models::GiFleetDiscoveryFilter::MODE_ENUM, OCI::FleetSoftwareUpdate::Models::GiFleetDiscoveryFilter::TYPE_ENUM

Instance Attribute Summary collapse

Attributes inherited from GiFleetDiscoveryFilter

#mode, #type

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from GiFleetDiscoveryFilter

get_subtype

Constructor Details

#initialize(attributes = {}) ⇒ GiResourceIdFilter

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :mode (String)

    The value to assign to the #mode proprety

  • :entity_type (String)

    The value to assign to the #entity_type property

  • :identifiers (Array<String>)

    The value to assign to the #identifiers property

  • :operator (String)

    The value to assign to the #operator property



81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# File 'lib/oci/fleet_software_update/models/gi_resource_id_filter.rb', line 81

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

  attributes['type'] = 'RESOURCE_ID'

  super(attributes)

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

  self.entity_type = attributes[:'entityType'] if attributes[:'entityType']

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

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

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

  self.operator = attributes[:'operator'] if attributes[:'operator']
  self.operator = "OR" if operator.nil? && !attributes.key?(:'operator') # rubocop:disable Style/StringLiterals
end

Instance Attribute Details

#entity_typeString

[Required] Type of resource to match in the discovery.

Returns:

  • (String)


32
33
34
# File 'lib/oci/fleet_software_update/models/gi_resource_id_filter.rb', line 32

def entity_type
  @entity_type
end

#identifiersArray<String>

[Required] Related resource Ids to include in the discovery. All must match the specified entityType.

Returns:

  • (Array<String>)


38
39
40
# File 'lib/oci/fleet_software_update/models/gi_resource_id_filter.rb', line 38

def identifiers
  @identifiers
end

#operatorString

Type of join for each element in this filter.

Returns:

  • (String)


43
44
45
# File 'lib/oci/fleet_software_update/models/gi_resource_id_filter.rb', line 43

def operator
  @operator
end

Class Method Details

.attribute_mapObject

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



46
47
48
49
50
51
52
53
54
55
56
# File 'lib/oci/fleet_software_update/models/gi_resource_id_filter.rb', line 46

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'type': :'type',
    'mode': :'mode',
    'entity_type': :'entityType',
    'identifiers': :'identifiers',
    'operator': :'operator'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



59
60
61
62
63
64
65
66
67
68
69
# File 'lib/oci/fleet_software_update/models/gi_resource_id_filter.rb', line 59

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'type': :'String',
    'mode': :'String',
    'entity_type': :'String',
    'identifiers': :'Array<String>',
    'operator': :'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



136
137
138
139
140
141
142
143
144
145
# File 'lib/oci/fleet_software_update/models/gi_resource_id_filter.rb', line 136

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

  self.class == other.class &&
    type == other.type &&
    mode == other.mode &&
    entity_type == other.entity_type &&
    identifiers == other.identifiers &&
    operator == other.operator
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



170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
# File 'lib/oci/fleet_software_update/models/gi_resource_id_filter.rb', line 170

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


150
151
152
# File 'lib/oci/fleet_software_update/models/gi_resource_id_filter.rb', line 150

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



159
160
161
# File 'lib/oci/fleet_software_update/models/gi_resource_id_filter.rb', line 159

def hash
  [type, mode, entity_type, identifiers, operator].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



203
204
205
206
207
208
209
210
211
212
# File 'lib/oci/fleet_software_update/models/gi_resource_id_filter.rb', line 203

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



197
198
199
# File 'lib/oci/fleet_software_update/models/gi_resource_id_filter.rb', line 197

def to_s
  to_hash.to_s
end