Class: OCI::DataSafe::Models::SensitiveTypePattern

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

Overview

Details of the sensitive type.

Constant Summary collapse

SEARCH_TYPE_ENUM =
[
  SEARCH_TYPE_OR = 'OR'.freeze,
  SEARCH_TYPE_AND = 'AND'.freeze,
  SEARCH_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

Constants inherited from SensitiveType

OCI::DataSafe::Models::SensitiveType::ENTITY_TYPE_ENUM, OCI::DataSafe::Models::SensitiveType::LIFECYCLE_STATE_ENUM, OCI::DataSafe::Models::SensitiveType::SOURCE_ENUM

Instance Attribute Summary collapse

Attributes inherited from SensitiveType

#compartment_id, #defined_tags, #description, #display_name, #entity_type, #freeform_tags, #id, #lifecycle_state, #parent_category_id, #short_name, #source, #system_tags, #time_created, #time_updated

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from SensitiveType

get_subtype

Constructor Details

#initialize(attributes = {}) ⇒ SensitiveTypePattern

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :id (String)

    The value to assign to the #id proprety

  • :display_name (String)

    The value to assign to the #display_name proprety

  • :compartment_id (String)

    The value to assign to the #compartment_id proprety

  • :lifecycle_state (String)

    The value to assign to the #lifecycle_state proprety

  • :short_name (String)

    The value to assign to the #short_name proprety

  • :source (String)

    The value to assign to the #source proprety

  • :time_created (DateTime)

    The value to assign to the #time_created proprety

  • :time_updated (DateTime)

    The value to assign to the #time_updated proprety

  • :description (String)

    The value to assign to the #description proprety

  • :parent_category_id (String)

    The value to assign to the #parent_category_id proprety

  • :freeform_tags (Hash<String, String>)

    The value to assign to the #freeform_tags proprety

  • :defined_tags (Hash<String, Hash<String, Object>>)

    The value to assign to the #defined_tags proprety

  • :system_tags (Hash<String, Hash<String, Object>>)

    The value to assign to the #system_tags proprety

  • :name_pattern (String)

    The value to assign to the #name_pattern property

  • :comment_pattern (String)

    The value to assign to the #comment_pattern property

  • :data_pattern (String)

    The value to assign to the #data_pattern property

  • :search_type (String)

    The value to assign to the #search_type property

  • :default_masking_format_id (String)

    The value to assign to the #default_masking_format_id property



119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
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/data_safe/models/sensitive_type_pattern.rb', line 119

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

  attributes['entityType'] = 'SENSITIVE_TYPE'

  super(attributes)

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

  self.name_pattern = attributes[:'namePattern'] if attributes[:'namePattern']

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

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

  self.comment_pattern = attributes[:'commentPattern'] if attributes[:'commentPattern']

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

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

  self.data_pattern = attributes[:'dataPattern'] if attributes[:'dataPattern']

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

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

  self.search_type = attributes[:'searchType'] if attributes[:'searchType']

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

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

  self.default_masking_format_id = attributes[:'defaultMaskingFormatId'] if attributes[:'defaultMaskingFormatId']

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

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

Instance Attribute Details

#comment_patternString

A regular expression to be used by data discovery for matching column comments.

Returns:

  • (String)


25
26
27
# File 'lib/oci/data_safe/models/sensitive_type_pattern.rb', line 25

def comment_pattern
  @comment_pattern
end

#data_patternString

A regular expression to be used by data discovery for matching column data values.

Returns:

  • (String)


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

def data_pattern
  @data_pattern
end

#default_masking_format_idString

The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type.

Returns:

  • (String)


39
40
41
# File 'lib/oci/data_safe/models/sensitive_type_pattern.rb', line 39

def default_masking_format_id
  @default_masking_format_id
end

#name_patternString

A regular expression to be used by data discovery for matching column names.

Returns:

  • (String)


21
22
23
# File 'lib/oci/data_safe/models/sensitive_type_pattern.rb', line 21

def name_pattern
  @name_pattern
end

#search_typeString

The search type indicating how the column name, comment and data patterns should be used by data discovery. Learn more.

Returns:

  • (String)


35
36
37
# File 'lib/oci/data_safe/models/sensitive_type_pattern.rb', line 35

def search_type
  @search_type
end

Class Method Details

.attribute_mapObject

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



42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# File 'lib/oci/data_safe/models/sensitive_type_pattern.rb', line 42

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'id': :'id',
    'entity_type': :'entityType',
    'display_name': :'displayName',
    'compartment_id': :'compartmentId',
    'lifecycle_state': :'lifecycleState',
    'short_name': :'shortName',
    'source': :'source',
    'time_created': :'timeCreated',
    'time_updated': :'timeUpdated',
    'description': :'description',
    'parent_category_id': :'parentCategoryId',
    'freeform_tags': :'freeformTags',
    'defined_tags': :'definedTags',
    'system_tags': :'systemTags',
    'name_pattern': :'namePattern',
    'comment_pattern': :'commentPattern',
    'data_pattern': :'dataPattern',
    'search_type': :'searchType',
    'default_masking_format_id': :'defaultMaskingFormatId'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# File 'lib/oci/data_safe/models/sensitive_type_pattern.rb', line 69

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'id': :'String',
    'entity_type': :'String',
    'display_name': :'String',
    'compartment_id': :'String',
    'lifecycle_state': :'String',
    'short_name': :'String',
    'source': :'String',
    'time_created': :'DateTime',
    'time_updated': :'DateTime',
    'description': :'String',
    'parent_category_id': :'String',
    'freeform_tags': :'Hash<String, String>',
    'defined_tags': :'Hash<String, Hash<String, Object>>',
    'system_tags': :'Hash<String, Hash<String, Object>>',
    'name_pattern': :'String',
    'comment_pattern': :'String',
    'data_pattern': :'String',
    'search_type': :'String',
    'default_masking_format_id': :'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



180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
# File 'lib/oci/data_safe/models/sensitive_type_pattern.rb', line 180

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

  self.class == other.class &&
    id == other.id &&
    entity_type == other.entity_type &&
    display_name == other.display_name &&
    compartment_id == other.compartment_id &&
    lifecycle_state == other.lifecycle_state &&
    short_name == other.short_name &&
    source == other.source &&
    time_created == other.time_created &&
    time_updated == other.time_updated &&
    description == other.description &&
    parent_category_id == other.parent_category_id &&
    freeform_tags == other.freeform_tags &&
    defined_tags == other.defined_tags &&
    system_tags == other.system_tags &&
    name_pattern == other.name_pattern &&
    comment_pattern == other.comment_pattern &&
    data_pattern == other.data_pattern &&
    search_type == other.search_type &&
    default_masking_format_id == other.default_masking_format_id
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



228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
# File 'lib/oci/data_safe/models/sensitive_type_pattern.rb', line 228

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


208
209
210
# File 'lib/oci/data_safe/models/sensitive_type_pattern.rb', line 208

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



217
218
219
# File 'lib/oci/data_safe/models/sensitive_type_pattern.rb', line 217

def hash
  [id, entity_type, display_name, compartment_id, lifecycle_state, short_name, source, time_created, time_updated, description, parent_category_id, freeform_tags, defined_tags, system_tags, name_pattern, comment_pattern, data_pattern, search_type, default_masking_format_id].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



261
262
263
264
265
266
267
268
269
270
# File 'lib/oci/data_safe/models/sensitive_type_pattern.rb', line 261

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



255
256
257
# File 'lib/oci/data_safe/models/sensitive_type_pattern.rb', line 255

def to_s
  to_hash.to_s
end