Class: OCI::ManagementAgent::Models::WorkRequestResource

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/management_agent/models/work_request_resource.rb

Overview

A resource created or operated on by a work request.

Constant Summary collapse

ACTION_TYPE_ENUM =
[
  ACTION_TYPE_CREATED = 'CREATED'.freeze,
  ACTION_TYPE_UPDATED = 'UPDATED'.freeze,
  ACTION_TYPE_DELETED = 'DELETED'.freeze,
  ACTION_TYPE_IN_PROGRESS = 'IN_PROGRESS'.freeze,
  ACTION_TYPE_RELATED = 'RELATED'.freeze,
  ACTION_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ WorkRequestResource

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :entity_type (String)

    The value to assign to the #entity_type property

  • :action_type (String)

    The value to assign to the #action_type property

  • :identifier (String)

    The value to assign to the #identifier property

  • :source_id (String)

    The value to assign to the #source_id property

  • :source_name (String)

    The value to assign to the #source_name property

  • :source_version (String)

    The value to assign to the #source_version property

  • :entity_uri (String)

    The value to assign to the #entity_uri property

  • :time_accepted (DateTime)

    The value to assign to the #time_accepted property

  • :time_started (DateTime)

    The value to assign to the #time_started property

  • :time_finished (DateTime)

    The value to assign to the #time_finished property

  • :metadata (Object)

    The value to assign to the #metadata property



134
135
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
# File 'lib/oci/management_agent/models/work_request_resource.rb', line 134

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.entity_type = attributes[:'entityType'] if attributes[:'entityType']

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

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

  self.action_type = attributes[:'actionType'] if attributes[:'actionType']

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

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

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

  self.source_id = attributes[:'sourceId'] if attributes[:'sourceId']

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

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

  self.source_name = attributes[:'sourceName'] if attributes[:'sourceName']

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

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

  self.source_version = attributes[:'sourceVersion'] if attributes[:'sourceVersion']

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

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

  self.entity_uri = attributes[:'entityUri'] if attributes[:'entityUri']

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

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

  self.time_accepted = attributes[:'timeAccepted'] if attributes[:'timeAccepted']

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

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

  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_finished = attributes[:'timeFinished'] if attributes[:'timeFinished']

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

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

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

Instance Attribute Details

#action_typeString

[Required] The way in which this resource is affected by the work tracked in the work request. A resource being created, updated, or deleted will remain in the IN_PROGRESS state until work is complete for that resource at which point it will transition to CREATED, UPDATED, or DELETED, respectively.

Returns:

  • (String)


31
32
33
# File 'lib/oci/management_agent/models/work_request_resource.rb', line 31

def action_type
  @action_type
end

#entity_typeString

[Required] The resource type the work request affects.

Returns:

  • (String)


23
24
25
# File 'lib/oci/management_agent/models/work_request_resource.rb', line 23

def entity_type
  @entity_type
end

#entity_uriString

The URI path that the user can do a GET on to access the resource metadata

Returns:

  • (String)


51
52
53
# File 'lib/oci/management_agent/models/work_request_resource.rb', line 51

def entity_uri
  @entity_uri
end

#identifierString

[Required] The identifier of the resource the work request affects.

Returns:

  • (String)


35
36
37
# File 'lib/oci/management_agent/models/work_request_resource.rb', line 35

def identifier
  @identifier
end

#metadataObject

Additional metadata about the resource that has been operated upon by this work request. For WorkRequests operationType WORK_DELIVERY the metadata will contain: workDeliveryStatus indicating the status of the work delivery item as a WorkDeliveryStatus value, workSubmissionKey the WorkSubmission request id, and workSubmissionDetails containing any details of result

Returns:

  • (Object)


77
78
79
# File 'lib/oci/management_agent/models/work_request_resource.rb', line 77

def 
  @metadata
end

#source_idString

The identifier of the source the work request is requesting.

Returns:

  • (String)


39
40
41
# File 'lib/oci/management_agent/models/work_request_resource.rb', line 39

def source_id
  @source_id
end

#source_nameString

The name of the source the work request is requesting.

Returns:

  • (String)


43
44
45
# File 'lib/oci/management_agent/models/work_request_resource.rb', line 43

def source_name
  @source_name
end

#source_versionString

The version of the source the work request is requesting.

Returns:

  • (String)


47
48
49
# File 'lib/oci/management_agent/models/work_request_resource.rb', line 47

def source_version
  @source_version
end

#time_acceptedDateTime

The date and time the request was created, as described in RFC 3339, section 5.6.

Returns:

  • (DateTime)


57
58
59
# File 'lib/oci/management_agent/models/work_request_resource.rb', line 57

def time_accepted
  @time_accepted
end

#time_finishedDateTime

The date and time the request was finished, as described in RFC 3339, section 5.6.

Returns:

  • (DateTime)


69
70
71
# File 'lib/oci/management_agent/models/work_request_resource.rb', line 69

def time_finished
  @time_finished
end

#time_startedDateTime

The date and time the request was started, as described in RFC 3339, section 5.6.

Returns:

  • (DateTime)


63
64
65
# File 'lib/oci/management_agent/models/work_request_resource.rb', line 63

def time_started
  @time_started
end

Class Method Details

.attribute_mapObject

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



80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# File 'lib/oci/management_agent/models/work_request_resource.rb', line 80

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'entity_type': :'entityType',
    'action_type': :'actionType',
    'identifier': :'identifier',
    'source_id': :'sourceId',
    'source_name': :'sourceName',
    'source_version': :'sourceVersion',
    'entity_uri': :'entityUri',
    'time_accepted': :'timeAccepted',
    'time_started': :'timeStarted',
    'time_finished': :'timeFinished',
    'metadata': :'metadata'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# File 'lib/oci/management_agent/models/work_request_resource.rb', line 99

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'entity_type': :'String',
    'action_type': :'String',
    'identifier': :'String',
    'source_id': :'String',
    'source_name': :'String',
    'source_version': :'String',
    'entity_uri': :'String',
    'time_accepted': :'DateTime',
    'time_started': :'DateTime',
    'time_finished': :'DateTime',
    'metadata': :'Object'
    # 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



219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
# File 'lib/oci/management_agent/models/work_request_resource.rb', line 219

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

  self.class == other.class &&
    entity_type == other.entity_type &&
    action_type == other.action_type &&
    identifier == other.identifier &&
    source_id == other.source_id &&
    source_name == other.source_name &&
    source_version == other.source_version &&
    entity_uri == other.entity_uri &&
    time_accepted == other.time_accepted &&
    time_started == other.time_started &&
    time_finished == other.time_finished &&
     == 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



259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
# File 'lib/oci/management_agent/models/work_request_resource.rb', line 259

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


239
240
241
# File 'lib/oci/management_agent/models/work_request_resource.rb', line 239

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



248
249
250
# File 'lib/oci/management_agent/models/work_request_resource.rb', line 248

def hash
  [entity_type, action_type, identifier, source_id, source_name, source_version, entity_uri, time_accepted, time_started, time_finished, ].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



292
293
294
295
296
297
298
299
300
301
# File 'lib/oci/management_agent/models/work_request_resource.rb', line 292

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



286
287
288
# File 'lib/oci/management_agent/models/work_request_resource.rb', line 286

def to_s
  to_hash.to_s
end