Class: OCI::DataCatalog::Models::JobExecutionSummary
- Inherits:
-
Object
- Object
- OCI::DataCatalog::Models::JobExecutionSummary
- Defined in:
- lib/oci/data_catalog/models/job_execution_summary.rb
Overview
A list of job executions. A job execution is a unit of work being executed on behalf of a job.
Constant Summary collapse
- JOB_TYPE_ENUM =
[ JOB_TYPE_HARVEST = 'HARVEST'.freeze, JOB_TYPE_PROFILING = 'PROFILING'.freeze, JOB_TYPE_SAMPLING = 'SAMPLING'.freeze, JOB_TYPE_PREVIEW = 'PREVIEW'.freeze, JOB_TYPE_IMPORT = 'IMPORT'.freeze, JOB_TYPE_EXPORT = 'EXPORT'.freeze, JOB_TYPE_IMPORT_GLOSSARY = 'IMPORT_GLOSSARY'.freeze, JOB_TYPE_EXPORT_GLOSSARY = 'EXPORT_GLOSSARY'.freeze, JOB_TYPE_INTERNAL = 'INTERNAL'.freeze, JOB_TYPE_PURGE = 'PURGE'.freeze, JOB_TYPE_IMMEDIATE = 'IMMEDIATE'.freeze, JOB_TYPE_SCHEDULED = 'SCHEDULED'.freeze, JOB_TYPE_IMMEDIATE_EXECUTION = 'IMMEDIATE_EXECUTION'.freeze, JOB_TYPE_SCHEDULED_EXECUTION = 'SCHEDULED_EXECUTION'.freeze, JOB_TYPE_SCHEDULED_EXECUTION_INSTANCE = 'SCHEDULED_EXECUTION_INSTANCE'.freeze, JOB_TYPE_ASYNC_DELETE = 'ASYNC_DELETE'.freeze, JOB_TYPE_IMPORT_DATA_ASSET = 'IMPORT_DATA_ASSET'.freeze, JOB_TYPE_CREATE_SCAN_PROXY = 'CREATE_SCAN_PROXY'.freeze, JOB_TYPE_ASYNC_EXPORT_GLOSSARY = 'ASYNC_EXPORT_GLOSSARY'.freeze, JOB_TYPE_ASYNC_EXPORT_DATA_ASSET = 'ASYNC_EXPORT_DATA_ASSET'.freeze, JOB_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- LIFECYCLE_STATE_ENUM =
[ LIFECYCLE_STATE_CREATED = 'CREATED'.freeze, LIFECYCLE_STATE_IN_PROGRESS = 'IN_PROGRESS'.freeze, LIFECYCLE_STATE_INACTIVE = 'INACTIVE'.freeze, LIFECYCLE_STATE_FAILED = 'FAILED'.freeze, LIFECYCLE_STATE_SUCCEEDED = 'SUCCEEDED'.freeze, LIFECYCLE_STATE_CANCELED = 'CANCELED'.freeze, LIFECYCLE_STATE_SUCCEEDED_WITH_WARNINGS = 'SUCCEEDED_WITH_WARNINGS'.freeze, LIFECYCLE_STATE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#job_key ⇒ String
The unique key of the parent job.
-
#job_type ⇒ String
Type of the job execution.
-
#key ⇒ String
[Required] Unique key of the job execution resource.
-
#lifecycle_state ⇒ String
Status of the job execution, such as running, paused, or completed.
-
#parent_key ⇒ String
The unique key of the parent execution or null if this job execution has no parent.
-
#schedule_instance_key ⇒ String
The unique key of the triggering external scheduler resource or null if this job execution is not externally triggered.
-
#time_created ⇒ DateTime
The date and time the job execution was created, in the format defined by RFC3339.
-
#time_ended ⇒ DateTime
Time that the job execution ended or null if it hasn't yet completed.
-
#time_started ⇒ DateTime
Time that job execution started.
-
#uri ⇒ String
URI to the job execution 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 = {}) ⇒ JobExecutionSummary
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 = {}) ⇒ JobExecutionSummary
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 |
# File 'lib/oci/data_catalog/models/job_execution_summary.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.key = attributes[:'key'] if attributes[:'key'] self.job_key = attributes[:'jobKey'] if attributes[:'jobKey'] raise 'You cannot provide both :jobKey and :job_key' if attributes.key?(:'jobKey') && attributes.key?(:'job_key') self.job_key = attributes[:'job_key'] if attributes[:'job_key'] self.job_type = attributes[:'jobType'] if attributes[:'jobType'] raise 'You cannot provide both :jobType and :job_type' if attributes.key?(:'jobType') && attributes.key?(:'job_type') self.job_type = attributes[:'job_type'] if attributes[:'job_type'] self.parent_key = attributes[:'parentKey'] if attributes[:'parentKey'] raise 'You cannot provide both :parentKey and :parent_key' if attributes.key?(:'parentKey') && attributes.key?(:'parent_key') self.parent_key = attributes[:'parent_key'] if attributes[:'parent_key'] self.schedule_instance_key = attributes[:'scheduleInstanceKey'] if attributes[:'scheduleInstanceKey'] raise 'You cannot provide both :scheduleInstanceKey and :schedule_instance_key' if attributes.key?(:'scheduleInstanceKey') && attributes.key?(:'schedule_instance_key') self.schedule_instance_key = attributes[:'schedule_instance_key'] if attributes[:'schedule_instance_key'] 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.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_started = attributes[:'timeStarted'] if attributes[:'timeStarted'] raise 'You cannot provide both :timeStarted and :time_started' if attributes.key?(:'timeStarted') && attributes.key?(:'time_started') self.time_started = attributes[:'time_started'] if attributes[:'time_started'] self.time_ended = attributes[:'timeEnded'] if attributes[:'timeEnded'] raise 'You cannot provide both :timeEnded and :time_ended' if attributes.key?(:'timeEnded') && attributes.key?(:'time_ended') self.time_ended = attributes[:'time_ended'] if attributes[:'time_ended'] self.uri = attributes[:'uri'] if attributes[:'uri'] end |
Instance Attribute Details
#job_key ⇒ String
The unique key of the parent job.
53 54 55 |
# File 'lib/oci/data_catalog/models/job_execution_summary.rb', line 53 def job_key @job_key end |
#job_type ⇒ String
Type of the job execution.
57 58 59 |
# File 'lib/oci/data_catalog/models/job_execution_summary.rb', line 57 def job_type @job_type end |
#key ⇒ String
[Required] Unique key of the job execution resource.
49 50 51 |
# File 'lib/oci/data_catalog/models/job_execution_summary.rb', line 49 def key @key end |
#lifecycle_state ⇒ String
Status of the job execution, such as running, paused, or completed.
69 70 71 |
# File 'lib/oci/data_catalog/models/job_execution_summary.rb', line 69 def lifecycle_state @lifecycle_state end |
#parent_key ⇒ String
The unique key of the parent execution or null if this job execution has no parent.
61 62 63 |
# File 'lib/oci/data_catalog/models/job_execution_summary.rb', line 61 def parent_key @parent_key end |
#schedule_instance_key ⇒ String
The unique key of the triggering external scheduler resource or null if this job execution is not externally triggered.
65 66 67 |
# File 'lib/oci/data_catalog/models/job_execution_summary.rb', line 65 def schedule_instance_key @schedule_instance_key end |
#time_created ⇒ DateTime
The date and time the job execution was created, in the format defined by RFC3339. Example: 2019-03-25T21:10:29.600Z
75 76 77 |
# File 'lib/oci/data_catalog/models/job_execution_summary.rb', line 75 def time_created @time_created end |
#time_ended ⇒ DateTime
Time that the job execution ended or null if it hasn't yet completed. An RFC3339 formatted datetime string.
85 86 87 |
# File 'lib/oci/data_catalog/models/job_execution_summary.rb', line 85 def time_ended @time_ended end |
#time_started ⇒ DateTime
Time that job execution started. An RFC3339 formatted datetime string.
79 80 81 |
# File 'lib/oci/data_catalog/models/job_execution_summary.rb', line 79 def time_started @time_started end |
#uri ⇒ String
URI to the job execution instance in the API.
89 90 91 |
# File 'lib/oci/data_catalog/models/job_execution_summary.rb', line 89 def uri @uri end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
# File 'lib/oci/data_catalog/models/job_execution_summary.rb', line 92 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'key': :'key', 'job_key': :'jobKey', 'job_type': :'jobType', 'parent_key': :'parentKey', 'schedule_instance_key': :'scheduleInstanceKey', 'lifecycle_state': :'lifecycleState', 'time_created': :'timeCreated', 'time_started': :'timeStarted', 'time_ended': :'timeEnded', 'uri': :'uri' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
# File 'lib/oci/data_catalog/models/job_execution_summary.rb', line 110 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'key': :'String', 'job_key': :'String', 'job_type': :'String', 'parent_key': :'String', 'schedule_instance_key': :'String', 'lifecycle_state': :'String', 'time_created': :'DateTime', 'time_started': :'DateTime', 'time_ended': :'DateTime', '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 |
# File 'lib/oci/data_catalog/models/job_execution_summary.rb', line 235 def ==(other) return true if equal?(other) self.class == other.class && key == other.key && job_key == other.job_key && job_type == other.job_type && parent_key == other.parent_key && schedule_instance_key == other.schedule_instance_key && lifecycle_state == other.lifecycle_state && time_created == other.time_created && time_started == other.time_started && time_ended == other.time_ended && uri == other.uri end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 |
# File 'lib/oci/data_catalog/models/job_execution_summary.rb', line 274 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
254 255 256 |
# File 'lib/oci/data_catalog/models/job_execution_summary.rb', line 254 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
263 264 265 |
# File 'lib/oci/data_catalog/models/job_execution_summary.rb', line 263 def hash [key, job_key, job_type, parent_key, schedule_instance_key, lifecycle_state, time_created, time_started, time_ended, uri].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
307 308 309 310 311 312 313 314 315 316 |
# File 'lib/oci/data_catalog/models/job_execution_summary.rb', line 307 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
301 302 303 |
# File 'lib/oci/data_catalog/models/job_execution_summary.rb', line 301 def to_s to_hash.to_s end |