Class: OCI::CloudGuard::Models::SimpleCondition

Inherits:
Condition
  • Object
show all
Defined in:
lib/oci/cloud_guard/models/simple_condition.rb

Overview

Simple Condition object.

Constant Summary collapse

OPERATOR_ENUM =
[
  OPERATOR_IN = 'IN'.freeze,
  OPERATOR_NOT_IN = 'NOT_IN'.freeze,
  OPERATOR_EQUALS = 'EQUALS'.freeze,
  OPERATOR_NOT_EQUALS = 'NOT_EQUALS'.freeze,
  OPERATOR_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze
VALUE_TYPE_ENUM =
[
  VALUE_TYPE_MANAGED = 'MANAGED'.freeze,
  VALUE_TYPE_CUSTOM = 'CUSTOM'.freeze,
  VALUE_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

Constants inherited from Condition

Condition::KIND_ENUM

Instance Attribute Summary collapse

Attributes inherited from Condition

#kind

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Condition

get_subtype

Constructor Details

#initialize(attributes = {}) ⇒ SimpleCondition

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :parameter (String)

    The value to assign to the #parameter property

  • :operator (String)

    The value to assign to the #operator property

  • :value (String)

    The value to assign to the #value property

  • :value_type (String)

    The value to assign to the #value_type property



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

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

  attributes['kind'] = 'SIMPLE'

  super(attributes)

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

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

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

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

  self.value_type = attributes[:'valueType'] if attributes[:'valueType']

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

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

Instance Attribute Details

#operatorString

type of operator

Returns:

  • (String)


33
34
35
# File 'lib/oci/cloud_guard/models/simple_condition.rb', line 33

def operator
  @operator
end

#parameterString

parameter Key

Returns:

  • (String)


29
30
31
# File 'lib/oci/cloud_guard/models/simple_condition.rb', line 29

def parameter
  @parameter
end

#valueString

type of operator

Returns:

  • (String)


37
38
39
# File 'lib/oci/cloud_guard/models/simple_condition.rb', line 37

def value
  @value
end

#value_typeString

type of value

Returns:

  • (String)


41
42
43
# File 'lib/oci/cloud_guard/models/simple_condition.rb', line 41

def value_type
  @value_type
end

Class Method Details

.attribute_mapObject

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



44
45
46
47
48
49
50
51
52
53
54
# File 'lib/oci/cloud_guard/models/simple_condition.rb', line 44

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'kind': :'kind',
    'parameter': :'parameter',
    'operator': :'operator',
    'value': :'value',
    'value_type': :'valueType'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



57
58
59
60
61
62
63
64
65
66
67
# File 'lib/oci/cloud_guard/models/simple_condition.rb', line 57

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'kind': :'String',
    'parameter': :'String',
    'operator': :'String',
    'value': :'String',
    'value_type': :'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



135
136
137
138
139
140
141
142
143
144
# File 'lib/oci/cloud_guard/models/simple_condition.rb', line 135

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

  self.class == other.class &&
    kind == other.kind &&
    parameter == other.parameter &&
    operator == other.operator &&
    value == other.value &&
    value_type == other.value_type
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



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

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


149
150
151
# File 'lib/oci/cloud_guard/models/simple_condition.rb', line 149

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



158
159
160
# File 'lib/oci/cloud_guard/models/simple_condition.rb', line 158

def hash
  [kind, parameter, operator, value, value_type].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



202
203
204
205
206
207
208
209
210
211
# File 'lib/oci/cloud_guard/models/simple_condition.rb', line 202

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



196
197
198
# File 'lib/oci/cloud_guard/models/simple_condition.rb', line 196

def to_s
  to_hash.to_s
end