class OCI::DataCatalog::Models::ImportDataAssetJobResult
Information about a data asset import operation.
Constants
- IMPORT_JOB_EXECUTION_STATUS_ENUM
Attributes
[Required] The unique key of the data asset on which import is triggered. @return [String]
The unique key of the job definition resource that is used for the import. @return [String]
The unique key of the parent job execution for which the log resource is created. @return [String]
The status of the import job execution. @return [String]
The unique key of the job policy for the import. @return [String]
Public Class Methods
Attribute mapping from ruby-style variable name to JSON key.
# File lib/oci/data_catalog/models/import_data_asset_job_result.rb, line 43 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'data_asset_key': :'dataAssetKey', 'import_job_definition_key': :'importJobDefinitionKey', 'import_job_key': :'importJobKey', 'import_job_execution_key': :'importJobExecutionKey', 'import_job_execution_status': :'importJobExecutionStatus' # rubocop:enable Style/SymbolLiteral } end
Initializes the object @param [Hash] attributes Model attributes in the form of hash @option attributes [String] :data_asset_key The value to assign to the {#data_asset_key} property @option attributes [String] :import_job_definition_key The value to assign to the {#import_job_definition_key} property @option attributes [String] :import_job_key The value to assign to the {#import_job_key} property @option attributes [String] :import_job_execution_key The value to assign to the {#import_job_execution_key} property @option attributes [String] :import_job_execution_status The value to assign to the {#import_job_execution_status} property
# File lib/oci/data_catalog/models/import_data_asset_job_result.rb, line 79 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.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.import_job_definition_key = attributes[:'importJobDefinitionKey'] if attributes[:'importJobDefinitionKey'] raise 'You cannot provide both :importJobDefinitionKey and :import_job_definition_key' if attributes.key?(:'importJobDefinitionKey') && attributes.key?(:'import_job_definition_key') self.import_job_definition_key = attributes[:'import_job_definition_key'] if attributes[:'import_job_definition_key'] self.import_job_key = attributes[:'importJobKey'] if attributes[:'importJobKey'] raise 'You cannot provide both :importJobKey and :import_job_key' if attributes.key?(:'importJobKey') && attributes.key?(:'import_job_key') self.import_job_key = attributes[:'import_job_key'] if attributes[:'import_job_key'] self.import_job_execution_key = attributes[:'importJobExecutionKey'] if attributes[:'importJobExecutionKey'] raise 'You cannot provide both :importJobExecutionKey and :import_job_execution_key' if attributes.key?(:'importJobExecutionKey') && attributes.key?(:'import_job_execution_key') self.import_job_execution_key = attributes[:'import_job_execution_key'] if attributes[:'import_job_execution_key'] self.import_job_execution_status = attributes[:'importJobExecutionStatus'] if attributes[:'importJobExecutionStatus'] raise 'You cannot provide both :importJobExecutionStatus and :import_job_execution_status' if attributes.key?(:'importJobExecutionStatus') && attributes.key?(:'import_job_execution_status') self.import_job_execution_status = attributes[:'import_job_execution_status'] if attributes[:'import_job_execution_status'] end
Attribute type mapping.
# File lib/oci/data_catalog/models/import_data_asset_job_result.rb, line 56 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'data_asset_key': :'String', 'import_job_definition_key': :'String', 'import_job_key': :'String', 'import_job_execution_key': :'String', 'import_job_execution_status': :'String' # rubocop:enable Style/SymbolLiteral } end
Public Instance Methods
Checks equality by comparing each attribute. @param [Object] other the other object to be compared
# File lib/oci/data_catalog/models/import_data_asset_job_result.rb, line 136 def ==(other) return true if equal?(other) self.class == other.class && data_asset_key == other.data_asset_key && import_job_definition_key == other.import_job_definition_key && import_job_key == other.import_job_key && import_job_execution_key == other.import_job_execution_key && import_job_execution_status == other.import_job_execution_status end
Builds the object from hash @param [Hash] attributes Model attributes in the form of hash @return [Object] Returns the model itself
# File lib/oci/data_catalog/models/import_data_asset_job_result.rb, line 170 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
@see the `==` method @param [Object] other the other object to be compared
# File lib/oci/data_catalog/models/import_data_asset_job_result.rb, line 150 def eql?(other) self == other end
Calculates hash code according to all attributes. @return [Fixnum] Hash code
# File lib/oci/data_catalog/models/import_data_asset_job_result.rb, line 159 def hash [data_asset_key, import_job_definition_key, import_job_key, import_job_execution_key, import_job_execution_status].hash end
Custom attribute writer method checking allowed values (enum). @param [Object] import_job_execution_status
Object
to be assigned
# File lib/oci/data_catalog/models/import_data_asset_job_result.rb, line 120 def import_job_execution_status=(import_job_execution_status) # rubocop:disable Style/ConditionalAssignment if import_job_execution_status && !IMPORT_JOB_EXECUTION_STATUS_ENUM.include?(import_job_execution_status) OCI.logger.debug("Unknown value for 'import_job_execution_status' [" + import_job_execution_status + "]. Mapping to 'IMPORT_JOB_EXECUTION_STATUS_UNKNOWN_ENUM_VALUE'") if OCI.logger @import_job_execution_status = IMPORT_JOB_EXECUTION_STATUS_UNKNOWN_ENUM_VALUE else @import_job_execution_status = import_job_execution_status end # rubocop:enable Style/ConditionalAssignment end
Returns the object in the form of hash @return [Hash] Returns the object in the form of hash
# File lib/oci/data_catalog/models/import_data_asset_job_result.rb, line 203 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
Returns the string representation of the object @return [String] String presentation of the object
# File lib/oci/data_catalog/models/import_data_asset_job_result.rb, line 197 def to_s to_hash.to_s end
Private Instance Methods
Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value @param [Object] value Any valid value @return [Hash] Returns the value in the form of hash
# File lib/oci/data_catalog/models/import_data_asset_job_result.rb, line 220 def _to_hash(value) if value.is_a?(Array) value.compact.map { |v| _to_hash(v) } elsif value.is_a?(Hash) {}.tap do |hash| value.each { |k, v| hash[k] = _to_hash(v) } end elsif value.respond_to? :to_hash value.to_hash else value end end