Class: OCI::LoadBalancer::Models::WorkRequest

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/load_balancer/models/work_request.rb

Overview

Many of the API requests you use to create and configure load balancing do not take effect immediately. In these cases, the request spawns an asynchronous work flow to fulfill the request. WorkRequest objects provide visibility for in-progress work flows. For more information about work requests, see [Viewing the State of a Work Request](docs.us-phoenix-1.oraclecloud.com/Content/Balance/Tasks/viewingworkrequest.htm).

Constant Summary collapse

LIFECYCLE_STATE_ENUM =

rubocop:disable Metrics/LineLength

[
  LIFECYCLE_STATE_ACCEPTED = 'ACCEPTED'.freeze,
  LIFECYCLE_STATE_IN_PROGRESS = 'IN_PROGRESS'.freeze,
  LIFECYCLE_STATE_FAILED = 'FAILED'.freeze,
  LIFECYCLE_STATE_SUCCEEDED = 'SUCCEEDED'.freeze,
  LIFECYCLE_STATE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ WorkRequest

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):



120
121
122
123
124
125
126
127
128
129
130
131
132
133
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
# File 'lib/oci/load_balancer/models/work_request.rb', line 120

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

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

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

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

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

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

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

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

  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_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.type = attributes[:'type'] if attributes[:'type']
end

Instance Attribute Details

#error_detailsArray<OCI::LoadBalancer::Models::WorkRequestError>

This attribute is required.



24
25
26
# File 'lib/oci/load_balancer/models/work_request.rb', line 24

def error_details
  @error_details
end

#idString

Returns:

  • (String)


28
29
30
# File 'lib/oci/load_balancer/models/work_request.rb', line 28

def id
  @id
end

#lifecycle_stateString

[Required] The current state of the work request.

Returns:

  • (String)


33
34
35
# File 'lib/oci/load_balancer/models/work_request.rb', line 33

def lifecycle_state
  @lifecycle_state
end

#load_balancer_idString

[Required] The [OCID](docs.us-phoenix-1.oraclecloud.com/Content/General/Concepts/identifiers.htm) of the load balancer with which the work request is associated.

Returns:

  • (String)


39
40
41
# File 'lib/oci/load_balancer/models/work_request.rb', line 39

def load_balancer_id
  @load_balancer_id
end

#messageString

[Required] A collection of data, related to the load balancer provisioning process, that helps with debugging in the event of failure. Possible data elements include:

  • workflow name

  • event ID

  • work request ID

  • load balancer ID

  • workflow completion message

Returns:

  • (String)


51
52
53
# File 'lib/oci/load_balancer/models/work_request.rb', line 51

def message
  @message
end

#time_acceptedDateTime

[Required] The date and time the work request was created, in the format defined by RFC3339.

Example: ‘2016-08-25T21:10:29.600Z`

Returns:

  • (DateTime)


58
59
60
# File 'lib/oci/load_balancer/models/work_request.rb', line 58

def time_accepted
  @time_accepted
end

#time_finishedDateTime

The date and time the work request was completed, in the format defined by RFC3339.

Example: ‘2016-08-25T21:10:29.600Z`

Returns:

  • (DateTime)


65
66
67
# File 'lib/oci/load_balancer/models/work_request.rb', line 65

def time_finished
  @time_finished
end

#typeString

[Required] The type of action the work request represents.

Example: ‘CreateListener`

Returns:

  • (String)


72
73
74
# File 'lib/oci/load_balancer/models/work_request.rb', line 72

def type
  @type
end

Class Method Details

.attribute_mapObject

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



75
76
77
78
79
80
81
82
83
84
85
86
87
88
# File 'lib/oci/load_balancer/models/work_request.rb', line 75

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'error_details': :'errorDetails',
    'id': :'id',
    'lifecycle_state': :'lifecycleState',
    'load_balancer_id': :'loadBalancerId',
    'message': :'message',
    'time_accepted': :'timeAccepted',
    'time_finished': :'timeFinished',
    'type': :'type'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



91
92
93
94
95
96
97
98
99
100
101
102
103
104
# File 'lib/oci/load_balancer/models/work_request.rb', line 91

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'error_details': :'Array<OCI::LoadBalancer::Models::WorkRequestError>',
    'id': :'String',
    'lifecycle_state': :'String',
    'load_balancer_id': :'String',
    'message': :'String',
    'time_accepted': :'DateTime',
    'time_finished': :'DateTime',
    'type': :'String'
    # 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



185
186
187
188
189
190
191
192
193
194
195
196
# File 'lib/oci/load_balancer/models/work_request.rb', line 185

def ==(other)
  return true if equal?(other)
  self.class == other.class &&
    error_details == other.error_details &&
    id == other.id &&
    lifecycle_state == other.lifecycle_state &&
    load_balancer_id == other.load_balancer_id &&
    message == other.message &&
    time_accepted == other.time_accepted &&
    time_finished == other.time_finished &&
    type == other.type
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



221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
# File 'lib/oci/load_balancer/models/work_request.rb', line 221

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


201
202
203
# File 'lib/oci/load_balancer/models/work_request.rb', line 201

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



210
211
212
# File 'lib/oci/load_balancer/models/work_request.rb', line 210

def hash
  [error_details, id, lifecycle_state, load_balancer_id, message, time_accepted, time_finished, type].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



253
254
255
256
257
258
259
260
261
# File 'lib/oci/load_balancer/models/work_request.rb', line 253

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



247
248
249
# File 'lib/oci/load_balancer/models/work_request.rb', line 247

def to_s
  to_hash.to_s
end