Class: OCI::DataIntegration::Models::TaskRunLineageSummary

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/data_integration/models/task_run_lineage_summary.rb

Overview

The information about TaskRunLineage.

Constant Summary collapse

TASK_EXECUTION_STATUS_ENUM =
[
  TASK_EXECUTION_STATUS_SUCCESS = 'SUCCESS'.freeze,
  TASK_EXECUTION_STATUS_ERROR = 'ERROR'.freeze,
  TASK_EXECUTION_STATUS_TERMINATED = 'TERMINATED'.freeze,
  TASK_EXECUTION_STATUS_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ TaskRunLineageSummary

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):



136
137
138
139
140
141
142
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
# File 'lib/oci/data_integration/models/task_run_lineage_summary.rb', line 136

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

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

  self.model_type = attributes[:'modelType'] if attributes[:'modelType']

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

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

  self.model_version = attributes[:'modelVersion'] if attributes[:'modelVersion']

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

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

  self.parent_ref = attributes[:'parentRef'] if attributes[:'parentRef']

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

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

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

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

  self.object_version = attributes[:'objectVersion'] if attributes[:'objectVersion']

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

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

  self.task_name = attributes[:'taskName'] if attributes[:'taskName']

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

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

  self.task_type = attributes[:'taskType'] if attributes[:'taskType']

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

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

  self.task_key = attributes[:'taskKey'] if attributes[:'taskKey']

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

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

  self.is_lineage_gen_completed = attributes[:'isLineageGenCompleted'] unless attributes[:'isLineageGenCompleted'].nil?
  self.is_lineage_gen_completed = false if is_lineage_gen_completed.nil? && !attributes.key?(:'isLineageGenCompleted') # rubocop:disable Style/StringLiterals

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

  self.is_lineage_gen_completed = attributes[:'is_lineage_gen_completed'] unless attributes[:'is_lineage_gen_completed'].nil?
  self.is_lineage_gen_completed = false if is_lineage_gen_completed.nil? && !attributes.key?(:'isLineageGenCompleted') && !attributes.key?(:'is_lineage_gen_completed') # rubocop:disable Style/StringLiterals

  self.task_execution_status = attributes[:'taskExecutionStatus'] if attributes[:'taskExecutionStatus']

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

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

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

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

Instance Attribute Details

#descriptionString

Detailed description for the object.

Returns:

  • (String)


40
41
42
# File 'lib/oci/data_integration/models/task_run_lineage_summary.rb', line 40

def description
  @description
end

#flowOCI::DataIntegration::Models::DataFlow



67
68
69
# File 'lib/oci/data_integration/models/task_run_lineage_summary.rb', line 67

def flow
  @flow
end

#is_lineage_gen_completedBOOLEAN

This value is used to track if lineage generation for a task is completed or not.

Returns:

  • (BOOLEAN)


60
61
62
# File 'lib/oci/data_integration/models/task_run_lineage_summary.rb', line 60

def is_lineage_gen_completed
  @is_lineage_gen_completed
end

#keyString

The object key.

Returns:

  • (String)


21
22
23
# File 'lib/oci/data_integration/models/task_run_lineage_summary.rb', line 21

def key
  @key
end

#metadataOCI::DataIntegration::Models::ObjectMetadata



70
71
72
# File 'lib/oci/data_integration/models/task_run_lineage_summary.rb', line 70

def 
  @metadata
end

#model_typeString

The object type.

Returns:

  • (String)


25
26
27
# File 'lib/oci/data_integration/models/task_run_lineage_summary.rb', line 25

def model_type
  @model_type
end

#model_versionString

The object's model version.

Returns:

  • (String)


29
30
31
# File 'lib/oci/data_integration/models/task_run_lineage_summary.rb', line 29

def model_version
  @model_version
end

#nameString

Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.

Returns:

  • (String)


36
37
38
# File 'lib/oci/data_integration/models/task_run_lineage_summary.rb', line 36

def name
  @name
end

#object_versionInteger

The version of the object that is used to track changes in the object instance.

Returns:

  • (Integer)


44
45
46
# File 'lib/oci/data_integration/models/task_run_lineage_summary.rb', line 44

def object_version
  @object_version
end

#parent_refOCI::DataIntegration::Models::ParentReference



32
33
34
# File 'lib/oci/data_integration/models/task_run_lineage_summary.rb', line 32

def parent_ref
  @parent_ref
end

#task_execution_statusString

The status of the task run.

Returns:

  • (String)


64
65
66
# File 'lib/oci/data_integration/models/task_run_lineage_summary.rb', line 64

def task_execution_status
  @task_execution_status
end

#task_keyString

The object key.

Returns:

  • (String)


56
57
58
# File 'lib/oci/data_integration/models/task_run_lineage_summary.rb', line 56

def task_key
  @task_key
end

#task_nameString

Task name

Returns:

  • (String)


48
49
50
# File 'lib/oci/data_integration/models/task_run_lineage_summary.rb', line 48

def task_name
  @task_name
end

#task_typeString

Task name

Returns:

  • (String)


52
53
54
# File 'lib/oci/data_integration/models/task_run_lineage_summary.rb', line 52

def task_type
  @task_type
end

Class Method Details

.attribute_mapObject

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



73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# File 'lib/oci/data_integration/models/task_run_lineage_summary.rb', line 73

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'key': :'key',
    'model_type': :'modelType',
    'model_version': :'modelVersion',
    'parent_ref': :'parentRef',
    'name': :'name',
    'description': :'description',
    'object_version': :'objectVersion',
    'task_name': :'taskName',
    'task_type': :'taskType',
    'task_key': :'taskKey',
    'is_lineage_gen_completed': :'isLineageGenCompleted',
    'task_execution_status': :'taskExecutionStatus',
    'flow': :'flow',
    'metadata': :'metadata'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# File 'lib/oci/data_integration/models/task_run_lineage_summary.rb', line 95

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'key': :'String',
    'model_type': :'String',
    'model_version': :'String',
    'parent_ref': :'OCI::DataIntegration::Models::ParentReference',
    'name': :'String',
    'description': :'String',
    'object_version': :'Integer',
    'task_name': :'String',
    'task_type': :'String',
    'task_key': :'String',
    'is_lineage_gen_completed': :'BOOLEAN',
    'task_execution_status': :'String',
    'flow': :'OCI::DataIntegration::Models::DataFlow',
    'metadata': :'OCI::DataIntegration::Models::ObjectMetadata'
    # 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



226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
# File 'lib/oci/data_integration/models/task_run_lineage_summary.rb', line 226

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

  self.class == other.class &&
    key == other.key &&
    model_type == other.model_type &&
    model_version == other.model_version &&
    parent_ref == other.parent_ref &&
    name == other.name &&
    description == other.description &&
    object_version == other.object_version &&
    task_name == other.task_name &&
    task_type == other.task_type &&
    task_key == other.task_key &&
    is_lineage_gen_completed == other.is_lineage_gen_completed &&
    task_execution_status == other.task_execution_status &&
    flow == other.flow &&
     == other.
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



269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
# File 'lib/oci/data_integration/models/task_run_lineage_summary.rb', line 269

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


249
250
251
# File 'lib/oci/data_integration/models/task_run_lineage_summary.rb', line 249

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



258
259
260
# File 'lib/oci/data_integration/models/task_run_lineage_summary.rb', line 258

def hash
  [key, model_type, model_version, parent_ref, name, description, object_version, task_name, task_type, task_key, is_lineage_gen_completed, task_execution_status, flow, ].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



302
303
304
305
306
307
308
309
310
311
# File 'lib/oci/data_integration/models/task_run_lineage_summary.rb', line 302

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



296
297
298
# File 'lib/oci/data_integration/models/task_run_lineage_summary.rb', line 296

def to_s
  to_hash.to_s
end