Class: OCI::CloudGuard::Models::SimpleCondition
- Defined in:
- lib/oci/cloud_guard/models/simple_condition.rb
Overview
Information for a simple condition.
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
Instance Attribute Summary collapse
- 
  
    
      #operator  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Type of operator. 
- 
  
    
      #parameter  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Parameter key. 
- 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Value of operator in condition. 
- 
  
    
      #value_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Type of value in condition. 
Attributes inherited from Condition
Class Method Summary collapse
- 
  
    
      .attribute_map  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Attribute mapping from ruby-style variable name to JSON key. 
- 
  
    
      .swagger_types  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Attribute type mapping. 
Instance Method Summary collapse
- 
  
    
      #==(other)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Checks equality by comparing each attribute. 
- 
  
    
      #build_from_hash(attributes)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Builds the object from hash. 
- #eql?(other) ⇒ Boolean
- 
  
    
      #hash  ⇒ Fixnum 
    
    
  
  
  
  
  
  
  
  
  
    Calculates hash code according to all attributes. 
- 
  
    
      #initialize(attributes = {})  ⇒ SimpleCondition 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    Initializes the object. 
- 
  
    
      #to_hash  ⇒ Hash 
    
    
  
  
  
  
  
  
  
  
  
    Returns the object in the form of hash. 
- 
  
    
      #to_s  ⇒ String 
    
    
  
  
  
  
  
  
  
  
  
    Returns the string representation of the object. 
Methods inherited from Condition
Constructor Details
#initialize(attributes = {}) ⇒ SimpleCondition
Initializes the object
| 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
#operator ⇒ String
Type of operator
| 33 34 35 | # File 'lib/oci/cloud_guard/models/simple_condition.rb', line 33 def operator @operator end | 
#parameter ⇒ String
Parameter key
| 29 30 31 | # File 'lib/oci/cloud_guard/models/simple_condition.rb', line 29 def parameter @parameter end | 
#value ⇒ String
Value of operator in condition
| 37 38 39 | # File 'lib/oci/cloud_guard/models/simple_condition.rb', line 37 def value @value end | 
#value_type ⇒ String
Type of value in condition
| 41 42 43 | # File 'lib/oci/cloud_guard/models/simple_condition.rb', line 41 def value_type @value_type end | 
Class Method Details
.attribute_map ⇒ Object
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_types ⇒ Object
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.
| 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
| 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
| 149 150 151 | # File 'lib/oci/cloud_guard/models/simple_condition.rb', line 149 def eql?(other) self == other end | 
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
| 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_hash ⇒ 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_s ⇒ String
Returns the string representation 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 |