Class: OCI::DataSafe::Models::UpdateSensitiveDataModelDetails
- Inherits:
-
Object
- Object
- OCI::DataSafe::Models::UpdateSensitiveDataModelDetails
- Defined in:
- lib/oci/data_safe/models/update_sensitive_data_model_details.rb
Overview
Details to update a sensitive data model. Note that updating any attribute of a sensitive data model does not perform data discovery.
Instance Attribute Summary collapse
-
#app_suite_name ⇒ String
The application suite name identifying a collection of applications.
-
#defined_tags ⇒ Hash<String, Hash<String, Object>>
Defined tags for this resource.
-
#description ⇒ String
The description of the sensitive data model.
-
#display_name ⇒ String
The display name of the sensitive data model.
-
#freeform_tags ⇒ Hash<String, String>
Free-form tags for this resource.
-
#is_app_defined_relation_discovery_enabled ⇒ BOOLEAN
Indicates if data discovery jobs should identify potential application-level (non-dictionary) referential relationships between columns.
-
#is_sample_data_collection_enabled ⇒ BOOLEAN
Indicates if data discovery jobs should collect and store sample data values for the discovered columns.
-
#schemas_for_discovery ⇒ Array<String>
The schemas to be used for future data discovery jobs.
-
#sensitive_type_group_ids_for_discovery ⇒ Array<String>
The OCIDs of the sensitive type groups to be used by data discovery jobs.
-
#sensitive_type_ids_for_discovery ⇒ Array<String>
The OCIDs of the sensitive types to be used for future data discovery jobs.
-
#tables_for_discovery ⇒ Array<OCI::DataSafe::Models::TablesForDiscovery>
The data discovery jobs will scan the tables specified here, including both schemas and tables.
-
#target_id ⇒ String
The OCID of the reference target database to be associated with the sensitive data model.
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 = {}) ⇒ UpdateSensitiveDataModelDetails
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.
Constructor Details
#initialize(attributes = {}) ⇒ UpdateSensitiveDataModelDetails
Initializes the object
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 |
# File 'lib/oci/data_safe/models/update_sensitive_data_model_details.rb', line 143 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.display_name = attributes[:'displayName'] if attributes[:'displayName'] raise 'You cannot provide both :displayName and :display_name' if attributes.key?(:'displayName') && attributes.key?(:'display_name') self.display_name = attributes[:'display_name'] if attributes[:'display_name'] self.target_id = attributes[:'targetId'] if attributes[:'targetId'] raise 'You cannot provide both :targetId and :target_id' if attributes.key?(:'targetId') && attributes.key?(:'target_id') self.target_id = attributes[:'target_id'] if attributes[:'target_id'] self.app_suite_name = attributes[:'appSuiteName'] if attributes[:'appSuiteName'] raise 'You cannot provide both :appSuiteName and :app_suite_name' if attributes.key?(:'appSuiteName') && attributes.key?(:'app_suite_name') self.app_suite_name = attributes[:'app_suite_name'] if attributes[:'app_suite_name'] self.description = attributes[:'description'] if attributes[:'description'] self.schemas_for_discovery = attributes[:'schemasForDiscovery'] if attributes[:'schemasForDiscovery'] raise 'You cannot provide both :schemasForDiscovery and :schemas_for_discovery' if attributes.key?(:'schemasForDiscovery') && attributes.key?(:'schemas_for_discovery') self.schemas_for_discovery = attributes[:'schemas_for_discovery'] if attributes[:'schemas_for_discovery'] self.tables_for_discovery = attributes[:'tablesForDiscovery'] if attributes[:'tablesForDiscovery'] raise 'You cannot provide both :tablesForDiscovery and :tables_for_discovery' if attributes.key?(:'tablesForDiscovery') && attributes.key?(:'tables_for_discovery') self.tables_for_discovery = attributes[:'tables_for_discovery'] if attributes[:'tables_for_discovery'] self.sensitive_type_ids_for_discovery = attributes[:'sensitiveTypeIdsForDiscovery'] if attributes[:'sensitiveTypeIdsForDiscovery'] raise 'You cannot provide both :sensitiveTypeIdsForDiscovery and :sensitive_type_ids_for_discovery' if attributes.key?(:'sensitiveTypeIdsForDiscovery') && attributes.key?(:'sensitive_type_ids_for_discovery') self.sensitive_type_ids_for_discovery = attributes[:'sensitive_type_ids_for_discovery'] if attributes[:'sensitive_type_ids_for_discovery'] self.sensitive_type_group_ids_for_discovery = attributes[:'sensitiveTypeGroupIdsForDiscovery'] if attributes[:'sensitiveTypeGroupIdsForDiscovery'] raise 'You cannot provide both :sensitiveTypeGroupIdsForDiscovery and :sensitive_type_group_ids_for_discovery' if attributes.key?(:'sensitiveTypeGroupIdsForDiscovery') && attributes.key?(:'sensitive_type_group_ids_for_discovery') self.sensitive_type_group_ids_for_discovery = attributes[:'sensitive_type_group_ids_for_discovery'] if attributes[:'sensitive_type_group_ids_for_discovery'] self.is_sample_data_collection_enabled = attributes[:'isSampleDataCollectionEnabled'] unless attributes[:'isSampleDataCollectionEnabled'].nil? raise 'You cannot provide both :isSampleDataCollectionEnabled and :is_sample_data_collection_enabled' if attributes.key?(:'isSampleDataCollectionEnabled') && attributes.key?(:'is_sample_data_collection_enabled') self.is_sample_data_collection_enabled = attributes[:'is_sample_data_collection_enabled'] unless attributes[:'is_sample_data_collection_enabled'].nil? self.is_app_defined_relation_discovery_enabled = attributes[:'isAppDefinedRelationDiscoveryEnabled'] unless attributes[:'isAppDefinedRelationDiscoveryEnabled'].nil? raise 'You cannot provide both :isAppDefinedRelationDiscoveryEnabled and :is_app_defined_relation_discovery_enabled' if attributes.key?(:'isAppDefinedRelationDiscoveryEnabled') && attributes.key?(:'is_app_defined_relation_discovery_enabled') self.is_app_defined_relation_discovery_enabled = attributes[:'is_app_defined_relation_discovery_enabled'] unless attributes[:'is_app_defined_relation_discovery_enabled'].nil? self. = attributes[:'freeformTags'] if attributes[:'freeformTags'] raise 'You cannot provide both :freeformTags and :freeform_tags' if attributes.key?(:'freeformTags') && attributes.key?(:'freeform_tags') self. = attributes[:'freeform_tags'] if attributes[:'freeform_tags'] self. = attributes[:'definedTags'] if attributes[:'definedTags'] raise 'You cannot provide both :definedTags and :defined_tags' if attributes.key?(:'definedTags') && attributes.key?(:'defined_tags') self. = attributes[:'defined_tags'] if attributes[:'defined_tags'] end |
Instance Attribute Details
#app_suite_name ⇒ String
The application suite name identifying a collection of applications. It's useful only if maintaining a sensitive data model for a suite of applications.
25 26 27 |
# File 'lib/oci/data_safe/models/update_sensitive_data_model_details.rb', line 25 def app_suite_name @app_suite_name end |
#defined_tags ⇒ Hash<String, Hash<String, Object>>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {\"Operations\": {\"CostCenter\": \"42\"}}
83 84 85 |
# File 'lib/oci/data_safe/models/update_sensitive_data_model_details.rb', line 83 def @defined_tags end |
#description ⇒ String
The description of the sensitive data model.
29 30 31 |
# File 'lib/oci/data_safe/models/update_sensitive_data_model_details.rb', line 29 def description @description end |
#display_name ⇒ String
The display name of the sensitive data model. The name does not have to be unique, and it's changeable.
14 15 16 |
# File 'lib/oci/data_safe/models/update_sensitive_data_model_details.rb', line 14 def display_name @display_name end |
#freeform_tags ⇒ Hash<String, String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags
Example: {\"Department\": \"Finance\"}
77 78 79 |
# File 'lib/oci/data_safe/models/update_sensitive_data_model_details.rb', line 77 def @freeform_tags end |
#is_app_defined_relation_discovery_enabled ⇒ BOOLEAN
Indicates if data discovery jobs should identify potential application-level (non-dictionary) referential relationships between columns. Note that data discovery automatically identifies and adds database-level (dictionary-defined) relationships. This option helps identify application-level relationships that are not defined in the database dictionary, which in turn, helps identify additional sensitive columns and preserve referential integrity during data masking. It's disabled by default and should be used only if there is a need to identify application-level relationships.
70 71 72 |
# File 'lib/oci/data_safe/models/update_sensitive_data_model_details.rb', line 70 def is_app_defined_relation_discovery_enabled @is_app_defined_relation_discovery_enabled end |
#is_sample_data_collection_enabled ⇒ BOOLEAN
Indicates if data discovery jobs should collect and store sample data values for the discovered columns. Sample data helps review the discovered columns and ensure that they actually contain sensitive data. As it collects original data from the target database, it's disabled by default and should be used only if it's acceptable to store sample data in Data Safe's repository in Oracle Cloud. Note that sample data values are not collected for columns with the following data types: LONG, LOB, RAW, XMLTYPE and BFILE.
60 61 62 |
# File 'lib/oci/data_safe/models/update_sensitive_data_model_details.rb', line 60 def is_sample_data_collection_enabled @is_sample_data_collection_enabled end |
#schemas_for_discovery ⇒ Array<String>
The schemas to be used for future data discovery jobs.
33 34 35 |
# File 'lib/oci/data_safe/models/update_sensitive_data_model_details.rb', line 33 def schemas_for_discovery @schemas_for_discovery end |
#sensitive_type_group_ids_for_discovery ⇒ Array<String>
The OCIDs of the sensitive type groups to be used by data discovery jobs.
51 52 53 |
# File 'lib/oci/data_safe/models/update_sensitive_data_model_details.rb', line 51 def sensitive_type_group_ids_for_discovery @sensitive_type_group_ids_for_discovery end |
#sensitive_type_ids_for_discovery ⇒ Array<String>
The OCIDs of the sensitive types to be used for future data discovery jobs. If OCID of a sensitive category is provided, all its child sensitive types are used for data discovery.
46 47 48 |
# File 'lib/oci/data_safe/models/update_sensitive_data_model_details.rb', line 46 def sensitive_type_ids_for_discovery @sensitive_type_ids_for_discovery end |
#tables_for_discovery ⇒ Array<OCI::DataSafe::Models::TablesForDiscovery>
The data discovery jobs will scan the tables specified here, including both schemas and tables. For instance, the input could be in the format: ["HR", tableName: ["T1", "T2"], "OE", tableName : ["T3", "T4"]].
40 41 42 |
# File 'lib/oci/data_safe/models/update_sensitive_data_model_details.rb', line 40 def tables_for_discovery @tables_for_discovery end |
#target_id ⇒ String
The OCID of the reference target database to be associated with the sensitive data model. All operations such as performing data discovery and adding columns manually are done in the context of the associated target database. Note that updating the targetId attribute does not perform data discovery automatically.
21 22 23 |
# File 'lib/oci/data_safe/models/update_sensitive_data_model_details.rb', line 21 def target_id @target_id end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
# File 'lib/oci/data_safe/models/update_sensitive_data_model_details.rb', line 86 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'display_name': :'displayName', 'target_id': :'targetId', 'app_suite_name': :'appSuiteName', 'description': :'description', 'schemas_for_discovery': :'schemasForDiscovery', 'tables_for_discovery': :'tablesForDiscovery', 'sensitive_type_ids_for_discovery': :'sensitiveTypeIdsForDiscovery', 'sensitive_type_group_ids_for_discovery': :'sensitiveTypeGroupIdsForDiscovery', 'is_sample_data_collection_enabled': :'isSampleDataCollectionEnabled', 'is_app_defined_relation_discovery_enabled': :'isAppDefinedRelationDiscoveryEnabled', 'freeform_tags': :'freeformTags', 'defined_tags': :'definedTags' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
# File 'lib/oci/data_safe/models/update_sensitive_data_model_details.rb', line 106 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'display_name': :'String', 'target_id': :'String', 'app_suite_name': :'String', 'description': :'String', 'schemas_for_discovery': :'Array<String>', 'tables_for_discovery': :'Array<OCI::DataSafe::Models::TablesForDiscovery>', 'sensitive_type_ids_for_discovery': :'Array<String>', 'sensitive_type_group_ids_for_discovery': :'Array<String>', 'is_sample_data_collection_enabled': :'BOOLEAN', 'is_app_defined_relation_discovery_enabled': :'BOOLEAN', 'freeform_tags': :'Hash<String, String>', 'defined_tags': :'Hash<String, Hash<String, Object>>' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 |
# File 'lib/oci/data_safe/models/update_sensitive_data_model_details.rb', line 225 def ==(other) return true if equal?(other) self.class == other.class && display_name == other.display_name && target_id == other.target_id && app_suite_name == other.app_suite_name && description == other.description && schemas_for_discovery == other.schemas_for_discovery && tables_for_discovery == other.tables_for_discovery && sensitive_type_ids_for_discovery == other.sensitive_type_ids_for_discovery && sensitive_type_group_ids_for_discovery == other.sensitive_type_group_ids_for_discovery && is_sample_data_collection_enabled == other.is_sample_data_collection_enabled && is_app_defined_relation_discovery_enabled == other.is_app_defined_relation_discovery_enabled && == other. && == other. end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 |
# File 'lib/oci/data_safe/models/update_sensitive_data_model_details.rb', line 266 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
246 247 248 |
# File 'lib/oci/data_safe/models/update_sensitive_data_model_details.rb', line 246 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
255 256 257 |
# File 'lib/oci/data_safe/models/update_sensitive_data_model_details.rb', line 255 def hash [display_name, target_id, app_suite_name, description, schemas_for_discovery, tables_for_discovery, sensitive_type_ids_for_discovery, sensitive_type_group_ids_for_discovery, is_sample_data_collection_enabled, is_app_defined_relation_discovery_enabled, , ].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
299 300 301 302 303 304 305 306 307 308 |
# File 'lib/oci/data_safe/models/update_sensitive_data_model_details.rb', line 299 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
293 294 295 |
# File 'lib/oci/data_safe/models/update_sensitive_data_model_details.rb', line 293 def to_s to_hash.to_s end |