Class: OCI::DataCatalog::Models::Connection
- Inherits:
-
Object
- Object
- OCI::DataCatalog::Models::Connection
- Defined in:
- lib/oci/data_catalog/models/connection.rb
Overview
Detailed representation of a connection to a data asset, minus any sensitive properties.
Instance Attribute Summary collapse
-
#created_by_id ⇒ String
OCID of the user who created the connection.
-
#data_asset_key ⇒ String
Unique key of the parent data asset.
-
#description ⇒ String
A description of the connection.
-
#display_name ⇒ String
A user-friendly display name.
-
#external_key ⇒ String
Unique external key of this object from the source system.
-
#is_default ⇒ BOOLEAN
Indicates whether this connection is the default connection.
-
#key ⇒ String
[Required] Unique connection key that is immutable.
-
#lifecycle_state ⇒ String
The current state of the connection.
-
#properties ⇒ Hash<String, Hash<String, String>>
A map of maps that contains the properties which are specific to the connection type.
-
#time_created ⇒ DateTime
The date and time the connection was created, in the format defined by [RFC3339](tools.ietf.org/html/rfc3339).
-
#time_status_updated ⇒ DateTime
Time that the connections status was last updated.
-
#time_updated ⇒ DateTime
The last time that any change was made to the connection.
-
#type_key ⇒ String
The key of the object type.
-
#updated_by_id ⇒ String
OCID of the user who modified the connection.
-
#uri ⇒ String
URI to the connection instance in the API.
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 = {}) ⇒ Connection
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 = {}) ⇒ Connection
Initializes the object
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 217 218 219 220 221 222 223 224 225 226 |
# File 'lib/oci/data_catalog/models/connection.rb', line 147 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.key = attributes[:'key'] if attributes[:'key'] self.description = attributes[:'description'] if attributes[:'description'] 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.time_created = attributes[:'timeCreated'] if attributes[:'timeCreated'] raise 'You cannot provide both :timeCreated and :time_created' if attributes.key?(:'timeCreated') && attributes.key?(:'time_created') self.time_created = attributes[:'time_created'] if attributes[:'time_created'] self.time_updated = attributes[:'timeUpdated'] if attributes[:'timeUpdated'] raise 'You cannot provide both :timeUpdated and :time_updated' if attributes.key?(:'timeUpdated') && attributes.key?(:'time_updated') self.time_updated = attributes[:'time_updated'] if attributes[:'time_updated'] self.created_by_id = attributes[:'createdById'] if attributes[:'createdById'] raise 'You cannot provide both :createdById and :created_by_id' if attributes.key?(:'createdById') && attributes.key?(:'created_by_id') self.created_by_id = attributes[:'created_by_id'] if attributes[:'created_by_id'] self.updated_by_id = attributes[:'updatedById'] if attributes[:'updatedById'] raise 'You cannot provide both :updatedById and :updated_by_id' if attributes.key?(:'updatedById') && attributes.key?(:'updated_by_id') self.updated_by_id = attributes[:'updated_by_id'] if attributes[:'updated_by_id'] self.properties = attributes[:'properties'] if attributes[:'properties'] self.external_key = attributes[:'externalKey'] if attributes[:'externalKey'] raise 'You cannot provide both :externalKey and :external_key' if attributes.key?(:'externalKey') && attributes.key?(:'external_key') self.external_key = attributes[:'external_key'] if attributes[:'external_key'] self.time_status_updated = attributes[:'timeStatusUpdated'] if attributes[:'timeStatusUpdated'] raise 'You cannot provide both :timeStatusUpdated and :time_status_updated' if attributes.key?(:'timeStatusUpdated') && attributes.key?(:'time_status_updated') self.time_status_updated = attributes[:'time_status_updated'] if attributes[:'time_status_updated'] self.lifecycle_state = attributes[:'lifecycleState'] if attributes[:'lifecycleState'] raise 'You cannot provide both :lifecycleState and :lifecycle_state' if attributes.key?(:'lifecycleState') && attributes.key?(:'lifecycle_state') self.lifecycle_state = attributes[:'lifecycle_state'] if attributes[:'lifecycle_state'] self.is_default = attributes[:'isDefault'] unless attributes[:'isDefault'].nil? raise 'You cannot provide both :isDefault and :is_default' if attributes.key?(:'isDefault') && attributes.key?(:'is_default') self.is_default = attributes[:'is_default'] unless attributes[:'is_default'].nil? self.data_asset_key = attributes[:'dataAssetKey'] if attributes[:'dataAssetKey'] raise 'You cannot provide both :dataAssetKey and :data_asset_key' if attributes.key?(:'dataAssetKey') && attributes.key?(:'data_asset_key') self.data_asset_key = attributes[:'data_asset_key'] if attributes[:'data_asset_key'] self.type_key = attributes[:'typeKey'] if attributes[:'typeKey'] raise 'You cannot provide both :typeKey and :type_key' if attributes.key?(:'typeKey') && attributes.key?(:'type_key') self.type_key = attributes[:'type_key'] if attributes[:'type_key'] self.uri = attributes[:'uri'] if attributes[:'uri'] end |
Instance Attribute Details
#created_by_id ⇒ String
OCID of the user who created the connection.
37 38 39 |
# File 'lib/oci/data_catalog/models/connection.rb', line 37 def created_by_id @created_by_id end |
#data_asset_key ⇒ String
Unique key of the parent data asset.
70 71 72 |
# File 'lib/oci/data_catalog/models/connection.rb', line 70 def data_asset_key @data_asset_key end |
#description ⇒ String
A description of the connection.
16 17 18 |
# File 'lib/oci/data_catalog/models/connection.rb', line 16 def description @description end |
#display_name ⇒ String
A user-friendly display name. Does not have to be unique, and it’s changeable. Avoid entering confidential information.
22 23 24 |
# File 'lib/oci/data_catalog/models/connection.rb', line 22 def display_name @display_name end |
#external_key ⇒ String
Unique external key of this object from the source system.
54 55 56 |
# File 'lib/oci/data_catalog/models/connection.rb', line 54 def external_key @external_key end |
#is_default ⇒ BOOLEAN
Indicates whether this connection is the default connection.
66 67 68 |
# File 'lib/oci/data_catalog/models/connection.rb', line 66 def is_default @is_default end |
#key ⇒ String
[Required] Unique connection key that is immutable.
12 13 14 |
# File 'lib/oci/data_catalog/models/connection.rb', line 12 def key @key end |
#lifecycle_state ⇒ String
The current state of the connection.
62 63 64 |
# File 'lib/oci/data_catalog/models/connection.rb', line 62 def lifecycle_state @lifecycle_state end |
#properties ⇒ Hash<String, Hash<String, String>>
A map of maps that contains the properties which are specific to the connection type. Each connection type definition defines it’s set of required and optional properties. The map keys are category names and the values are maps of property name to property value. Every property is contained inside of a category. Most connections have required properties within the "default" category. Example: ‘{ "default": { "username": "user1"}}`
50 51 52 |
# File 'lib/oci/data_catalog/models/connection.rb', line 50 def properties @properties end |
#time_created ⇒ DateTime
The date and time the connection was created, in the format defined by [RFC3339](tools.ietf.org/html/rfc3339). Example: ‘2019-03-25T21:10:29.600Z`
28 29 30 |
# File 'lib/oci/data_catalog/models/connection.rb', line 28 def time_created @time_created end |
#time_status_updated ⇒ DateTime
Time that the connections status was last updated. An [RFC3339](tools.ietf.org/html/rfc3339) formatted datetime string.
58 59 60 |
# File 'lib/oci/data_catalog/models/connection.rb', line 58 def time_status_updated @time_status_updated end |
#time_updated ⇒ DateTime
The last time that any change was made to the connection. An [RFC3339](tools.ietf.org/html/rfc3339) formatted datetime string.
33 34 35 |
# File 'lib/oci/data_catalog/models/connection.rb', line 33 def time_updated @time_updated end |
#type_key ⇒ String
The key of the object type. Type key’s can be found via the ‘/types’ endpoint.
74 75 76 |
# File 'lib/oci/data_catalog/models/connection.rb', line 74 def type_key @type_key end |
#updated_by_id ⇒ String
OCID of the user who modified the connection.
41 42 43 |
# File 'lib/oci/data_catalog/models/connection.rb', line 41 def updated_by_id @updated_by_id end |
#uri ⇒ String
URI to the connection instance in the API.
78 79 80 |
# File 'lib/oci/data_catalog/models/connection.rb', line 78 def uri @uri end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
# File 'lib/oci/data_catalog/models/connection.rb', line 81 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'key': :'key', 'description': :'description', 'display_name': :'displayName', 'time_created': :'timeCreated', 'time_updated': :'timeUpdated', 'created_by_id': :'createdById', 'updated_by_id': :'updatedById', 'properties': :'properties', 'external_key': :'externalKey', 'time_status_updated': :'timeStatusUpdated', 'lifecycle_state': :'lifecycleState', 'is_default': :'isDefault', 'data_asset_key': :'dataAssetKey', 'type_key': :'typeKey', 'uri': :'uri' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 |
# File 'lib/oci/data_catalog/models/connection.rb', line 104 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'key': :'String', 'description': :'String', 'display_name': :'String', 'time_created': :'DateTime', 'time_updated': :'DateTime', 'created_by_id': :'String', 'updated_by_id': :'String', 'properties': :'Hash<String, Hash<String, String>>', 'external_key': :'String', 'time_status_updated': :'DateTime', 'lifecycle_state': :'String', 'is_default': :'BOOLEAN', 'data_asset_key': :'String', 'type_key': :'String', 'uri': :'String' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 |
# File 'lib/oci/data_catalog/models/connection.rb', line 235 def ==(other) return true if equal?(other) self.class == other.class && key == other.key && description == other.description && display_name == other.display_name && time_created == other.time_created && time_updated == other.time_updated && created_by_id == other.created_by_id && updated_by_id == other.updated_by_id && properties == other.properties && external_key == other.external_key && time_status_updated == other.time_status_updated && lifecycle_state == other.lifecycle_state && is_default == other.is_default && data_asset_key == other.data_asset_key && type_key == other.type_key && uri == other.uri end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 |
# File 'lib/oci/data_catalog/models/connection.rb', line 279 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
259 260 261 |
# File 'lib/oci/data_catalog/models/connection.rb', line 259 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
268 269 270 |
# File 'lib/oci/data_catalog/models/connection.rb', line 268 def hash [key, description, display_name, time_created, time_updated, created_by_id, updated_by_id, properties, external_key, time_status_updated, lifecycle_state, is_default, data_asset_key, type_key, uri].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
312 313 314 315 316 317 318 319 320 321 |
# File 'lib/oci/data_catalog/models/connection.rb', line 312 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
306 307 308 |
# File 'lib/oci/data_catalog/models/connection.rb', line 306 def to_s to_hash.to_s end |