Class: OCI::DataSafe::Models::MaskingPolicyReferentialRelationSummary

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/data_safe/models/masking_policy_referential_relation_summary.rb

Overview

A referential relation is a resource corresponding to database columns. It is always associated with a masking policy.

Constant Summary collapse

RELATION_TYPE_ENUM =
[
  RELATION_TYPE_NONE = 'NONE'.freeze,
  RELATION_TYPE_APP_DEFINED = 'APP_DEFINED'.freeze,
  RELATION_TYPE_DB_DEFINED = 'DB_DEFINED'.freeze,
  RELATION_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ MaskingPolicyReferentialRelationSummary

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):



80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# File 'lib/oci/data_safe/models/masking_policy_referential_relation_summary.rb', line 80

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.masking_policy_id = attributes[:'maskingPolicyId'] if attributes[:'maskingPolicyId']

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

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

  self.relation_type = attributes[:'relationType'] if attributes[:'relationType']

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

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

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

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

  self.masking_format = attributes[:'maskingFormat'] if attributes[:'maskingFormat']

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

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

Instance Attribute Details

#childOCI::DataSafe::Models::MaskingPolicyColumnsInfo

This attribute is required.



37
38
39
# File 'lib/oci/data_safe/models/masking_policy_referential_relation_summary.rb', line 37

def child
  @child
end

#masking_formatArray<String>

The masking format associated with the parent column.

Returns:

  • (Array<String>)


41
42
43
# File 'lib/oci/data_safe/models/masking_policy_referential_relation_summary.rb', line 41

def masking_format
  @masking_format
end

#masking_policy_idString

[Required] The OCID of the masking policy that contains the column.

Returns:

  • (String)


23
24
25
# File 'lib/oci/data_safe/models/masking_policy_referential_relation_summary.rb', line 23

def masking_policy_id
  @masking_policy_id
end

#parentOCI::DataSafe::Models::MaskingPolicyColumnsInfo

This attribute is required.



33
34
35
# File 'lib/oci/data_safe/models/masking_policy_referential_relation_summary.rb', line 33

def parent
  @parent
end

#relation_typeString

[Required] The type of referential relationship the column has with its parent. DB_DEFINED indicates that the relationship is defined in the database dictionary. APP_DEFINED indicates that the relationship is defined at the application level and not in the database dictionary.

Returns:

  • (String)


29
30
31
# File 'lib/oci/data_safe/models/masking_policy_referential_relation_summary.rb', line 29

def relation_type
  @relation_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/data_safe/models/masking_policy_referential_relation_summary.rb', line 44

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'masking_policy_id': :'maskingPolicyId',
    'relation_type': :'relationType',
    'parent': :'parent',
    'child': :'child',
    'masking_format': :'maskingFormat'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



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

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'masking_policy_id': :'String',
    'relation_type': :'String',
    'parent': :'OCI::DataSafe::Models::MaskingPolicyColumnsInfo',
    'child': :'OCI::DataSafe::Models::MaskingPolicyColumnsInfo',
    'masking_format': :'Array<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



129
130
131
132
133
134
135
136
137
138
# File 'lib/oci/data_safe/models/masking_policy_referential_relation_summary.rb', line 129

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

  self.class == other.class &&
    masking_policy_id == other.masking_policy_id &&
    relation_type == other.relation_type &&
    parent == other.parent &&
    child == other.child &&
    masking_format == other.masking_format
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



163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
# File 'lib/oci/data_safe/models/masking_policy_referential_relation_summary.rb', line 163

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


143
144
145
# File 'lib/oci/data_safe/models/masking_policy_referential_relation_summary.rb', line 143

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



152
153
154
# File 'lib/oci/data_safe/models/masking_policy_referential_relation_summary.rb', line 152

def hash
  [masking_policy_id, relation_type, parent, child, masking_format].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



196
197
198
199
200
201
202
203
204
205
# File 'lib/oci/data_safe/models/masking_policy_referential_relation_summary.rb', line 196

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



190
191
192
# File 'lib/oci/data_safe/models/masking_policy_referential_relation_summary.rb', line 190

def to_s
  to_hash.to_s
end