Class: OCI::IdentityDomains::Models::ConditionExtensionOciconsolesignonpolicyconsentPolicy

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/identity_domains/models/condition_extension_ociconsolesignonpolicyconsent_policy.rb

Overview

This extension defines attributes used to record consent for modification of the "Security Policy for OCI Console" sign-on policy, Rule, Condition or ConditionGroup.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ ConditionExtensionOciconsolesignonpolicyconsentPolicy

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :consent (BOOLEAN)

    The value to assign to the #consent property

  • :justification (String)

    The value to assign to the #justification property

  • :reason (String)

    The value to assign to the #reason property



84
85
86
87
88
89
90
91
92
93
94
95
# File 'lib/oci/identity_domains/models/condition_extension_ociconsolesignonpolicyconsent_policy.rb', line 84

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

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

  self.consent = attributes[:'consent'] unless attributes[:'consent'].nil?

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

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

Instance Attribute Details

Set to true when an identity domain administrator opts to change the Oracle security defaults for the "Security Policy for OCI Console" sign-on policy shipped by Oracle. Defaults to false.

Added In: 2405220110

SCIM++ Properties: - idcsSearchable: false - multiValued: false - mutability: writeOnly - required: false - returned: never - type: boolean

Returns:

  • (BOOLEAN)


23
24
25
# File 'lib/oci/identity_domains/models/condition_extension_ociconsolesignonpolicyconsent_policy.rb', line 23

def consent
  @consent
end

#justificationString

The justification for the change when an identity domain administrator opts to modify the Oracle security defaults for the "Security Policy for OCI Console" sign-on policy shipped by Oracle.

Added In: 2405220110

SCIM++ Properties: - idcsSearchable: false - multiValued: false - mutability: writeOnly - required: false - returned: never - type: string

Returns:

  • (String)


37
38
39
# File 'lib/oci/identity_domains/models/condition_extension_ociconsolesignonpolicyconsent_policy.rb', line 37

def justification
  @justification
end

#reasonString

The detailed reason for the change when an identity domain administrator opts to modify the Oracle security defaults for the "Security Policy for OCI Console" sign-on policy shipped by Oracle.

Added In: 2405220110

SCIM++ Properties: - idcsSearchable: false - multiValued: false - mutability: writeOnly - required: false - returned: never - type: string

Returns:

  • (String)


51
52
53
# File 'lib/oci/identity_domains/models/condition_extension_ociconsolesignonpolicyconsent_policy.rb', line 51

def reason
  @reason
end

Class Method Details

.attribute_mapObject

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



54
55
56
57
58
59
60
61
62
# File 'lib/oci/identity_domains/models/condition_extension_ociconsolesignonpolicyconsent_policy.rb', line 54

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'consent': :'consent',
    'justification': :'justification',
    'reason': :'reason'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



65
66
67
68
69
70
71
72
73
# File 'lib/oci/identity_domains/models/condition_extension_ociconsolesignonpolicyconsent_policy.rb', line 65

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'consent': :'BOOLEAN',
    'justification': :'String',
    'reason': :'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



104
105
106
107
108
109
110
111
# File 'lib/oci/identity_domains/models/condition_extension_ociconsolesignonpolicyconsent_policy.rb', line 104

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

  self.class == other.class &&
    consent == other.consent &&
    justification == other.justification &&
    reason == other.reason
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



136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# File 'lib/oci/identity_domains/models/condition_extension_ociconsolesignonpolicyconsent_policy.rb', line 136

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


116
117
118
# File 'lib/oci/identity_domains/models/condition_extension_ociconsolesignonpolicyconsent_policy.rb', line 116

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



125
126
127
# File 'lib/oci/identity_domains/models/condition_extension_ociconsolesignonpolicyconsent_policy.rb', line 125

def hash
  [consent, justification, reason].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



169
170
171
172
173
174
175
176
177
178
# File 'lib/oci/identity_domains/models/condition_extension_ociconsolesignonpolicyconsent_policy.rb', line 169

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



163
164
165
# File 'lib/oci/identity_domains/models/condition_extension_ociconsolesignonpolicyconsent_policy.rb', line 163

def to_s
  to_hash.to_s
end