Class: OpsgenieSdk::CreateIntegrationAction

Inherits:
Object
  • Object
show all
Defined in:
lib/opsgenie_sdk/models/create_integration_action.rb

Defined Under Namespace

Classes: EnumAttributeValidator

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ CreateIntegrationAction

Initializes the object

Parameters:

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

    Model attributes in the form of hash



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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 153

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 }

  if attributes.has_key?(:'name')
    self.name = attributes[:'name']
  end

  if attributes.has_key?(:'order')
    self.order = attributes[:'order']
  end

  if attributes.has_key?(:'filter')
    self.filter = attributes[:'filter']
  end

  if attributes.has_key?(:'type')
    self.type = attributes[:'type']
  end

  if attributes.has_key?(:'user')
    self.user = attributes[:'user']
  end

  if attributes.has_key?(:'note')
    self.note = attributes[:'note']
  end

  if attributes.has_key?(:'alias')
    self._alias = attributes[:'alias']
  end

  if attributes.has_key?(:'source')
    self.source = attributes[:'source']
  end

  if attributes.has_key?(:'message')
    self.message = attributes[:'message']
  end

  if attributes.has_key?(:'description')
    self.description = attributes[:'description']
  end

  if attributes.has_key?(:'entity')
    self.entity = attributes[:'entity']
  end

  if attributes.has_key?(:'priority')
    self.priority = attributes[:'priority']
  end

  if attributes.has_key?(:'customPriority')
    self.custom_priority = attributes[:'customPriority']
  end

  if attributes.has_key?(:'appendAttachments')
    self.append_attachments = attributes[:'appendAttachments']
  end

  if attributes.has_key?(:'alertActions')
    if (value = attributes[:'alertActions']).is_a?(Array)
      self.alert_actions = value
    end
  end

  if attributes.has_key?(:'ignoreAlertActionsFromPayload')
    self.ignore_alert_actions_from_payload = attributes[:'ignoreAlertActionsFromPayload']
  end

  if attributes.has_key?(:'recipients')
    if (value = attributes[:'recipients']).is_a?(Array)
      self.recipients = value
    end
  end

  if attributes.has_key?(:'responders')
    if (value = attributes[:'responders']).is_a?(Array)
      self.responders = value
    end
  end

  if attributes.has_key?(:'ignoreRecipientsFromPayload')
    self.ignore_recipients_from_payload = attributes[:'ignoreRecipientsFromPayload']
  end

  if attributes.has_key?(:'ignoreTeamsFromPayload')
    self.ignore_teams_from_payload = attributes[:'ignoreTeamsFromPayload']
  end

  if attributes.has_key?(:'tags')
    if (value = attributes[:'tags']).is_a?(Array)
      self.tags = value
    end
  end

  if attributes.has_key?(:'ignoreTagsFromPayload')
    self.ignore_tags_from_payload = attributes[:'ignoreTagsFromPayload']
  end

  if attributes.has_key?(:'extraProperties')
    if (value = attributes[:'extraProperties']).is_a?(Hash)
      self.extra_properties = value
    end
  end

  if attributes.has_key?(:'ignoreExtraPropertiesFromPayload')
    self.ignore_extra_properties_from_payload = attributes[:'ignoreExtraPropertiesFromPayload']
  end

  if attributes.has_key?(:'ignoreRespondersFromPayload')
    self.ignore_responders_from_payload = attributes[:'ignoreRespondersFromPayload']
  end
end

Instance Attribute Details

#_aliasObject

Returns the value of attribute _alias.



29
30
31
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 29

def _alias
  @_alias
end

#alert_actionsObject

Returns the value of attribute alert_actions.



45
46
47
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 45

def alert_actions
  @alert_actions
end

#append_attachmentsObject

Returns the value of attribute append_attachments.



43
44
45
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 43

def append_attachments
  @append_attachments
end

#custom_priorityObject

Returns the value of attribute custom_priority.



41
42
43
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 41

def custom_priority
  @custom_priority
end

#descriptionObject

Returns the value of attribute description.



35
36
37
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 35

def description
  @description
end

#entityObject

Returns the value of attribute entity.



37
38
39
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 37

def entity
  @entity
end

#extra_propertiesObject

Returns the value of attribute extra_properties.



61
62
63
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 61

def extra_properties
  @extra_properties
end

#filterObject

Returns the value of attribute filter.



21
22
23
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 21

def filter
  @filter
end

#ignore_alert_actions_from_payloadObject

Returns the value of attribute ignore_alert_actions_from_payload.



47
48
49
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 47

def ignore_alert_actions_from_payload
  @ignore_alert_actions_from_payload
end

#ignore_extra_properties_from_payloadObject

Returns the value of attribute ignore_extra_properties_from_payload.



63
64
65
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 63

def ignore_extra_properties_from_payload
  @ignore_extra_properties_from_payload
end

#ignore_recipients_from_payloadObject

Returns the value of attribute ignore_recipients_from_payload.



53
54
55
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 53

def ignore_recipients_from_payload
  @ignore_recipients_from_payload
end

#ignore_responders_from_payloadObject

Returns the value of attribute ignore_responders_from_payload.



65
66
67
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 65

def ignore_responders_from_payload
  @ignore_responders_from_payload
end

#ignore_tags_from_payloadObject

Returns the value of attribute ignore_tags_from_payload.



59
60
61
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 59

def ignore_tags_from_payload
  @ignore_tags_from_payload
end

#ignore_teams_from_payloadObject

Returns the value of attribute ignore_teams_from_payload.



55
56
57
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 55

def ignore_teams_from_payload
  @ignore_teams_from_payload
end

#messageObject

Returns the value of attribute message.



33
34
35
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 33

def message
  @message
end

#nameObject

Returns the value of attribute name.



17
18
19
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 17

def name
  @name
end

#noteObject

Returns the value of attribute note.



27
28
29
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 27

def note
  @note
end

#orderObject

Returns the value of attribute order.



19
20
21
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 19

def order
  @order
end

#priorityObject

Returns the value of attribute priority.



39
40
41
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 39

def priority
  @priority
end

#recipientsObject

Returns the value of attribute recipients.



49
50
51
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 49

def recipients
  @recipients
end

#respondersObject

Returns the value of attribute responders.



51
52
53
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 51

def responders
  @responders
end

#sourceObject

Returns the value of attribute source.



31
32
33
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 31

def source
  @source
end

#tagsObject

Returns the value of attribute tags.



57
58
59
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 57

def tags
  @tags
end

#typeObject

Returns the value of attribute type.



23
24
25
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 23

def type
  @type
end

#userObject

Returns the value of attribute user.



25
26
27
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 25

def user
  @user
end

Class Method Details

.attribute_mapObject

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



90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 90

def self.attribute_map
  {
    :'name' => :'name',
    :'order' => :'order',
    :'filter' => :'filter',
    :'type' => :'type',
    :'user' => :'user',
    :'note' => :'note',
    :'_alias' => :'alias',
    :'source' => :'source',
    :'message' => :'message',
    :'description' => :'description',
    :'entity' => :'entity',
    :'priority' => :'priority',
    :'custom_priority' => :'customPriority',
    :'append_attachments' => :'appendAttachments',
    :'alert_actions' => :'alertActions',
    :'ignore_alert_actions_from_payload' => :'ignoreAlertActionsFromPayload',
    :'recipients' => :'recipients',
    :'responders' => :'responders',
    :'ignore_recipients_from_payload' => :'ignoreRecipientsFromPayload',
    :'ignore_teams_from_payload' => :'ignoreTeamsFromPayload',
    :'tags' => :'tags',
    :'ignore_tags_from_payload' => :'ignoreTagsFromPayload',
    :'extra_properties' => :'extraProperties',
    :'ignore_extra_properties_from_payload' => :'ignoreExtraPropertiesFromPayload',
    :'ignore_responders_from_payload' => :'ignoreRespondersFromPayload'
  }
end

.swagger_typesObject

Attribute type mapping.



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
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 121

def self.swagger_types
  {
    :'name' => :'String',
    :'order' => :'Integer',
    :'filter' => :'IntegrationActionFilter',
    :'type' => :'String',
    :'user' => :'String',
    :'note' => :'String',
    :'_alias' => :'String',
    :'source' => :'String',
    :'message' => :'String',
    :'description' => :'String',
    :'entity' => :'String',
    :'priority' => :'String',
    :'custom_priority' => :'String',
    :'append_attachments' => :'BOOLEAN',
    :'alert_actions' => :'Array<String>',
    :'ignore_alert_actions_from_payload' => :'BOOLEAN',
    :'recipients' => :'Array<Recipient>',
    :'responders' => :'Array<Recipient>',
    :'ignore_recipients_from_payload' => :'BOOLEAN',
    :'ignore_teams_from_payload' => :'BOOLEAN',
    :'tags' => :'Array<String>',
    :'ignore_tags_from_payload' => :'BOOLEAN',
    :'extra_properties' => :'Hash<String, String>',
    :'ignore_extra_properties_from_payload' => :'BOOLEAN',
    :'ignore_responders_from_payload' => :'BOOLEAN'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 339

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      name == o.name &&
      order == o.order &&
      filter == o.filter &&
      type == o.type &&
      user == o.user &&
      note == o.note &&
      _alias == o._alias &&
      source == o.source &&
      message == o.message &&
      description == o.description &&
      entity == o.entity &&
      priority == o.priority &&
      custom_priority == o.custom_priority &&
      append_attachments == o.append_attachments &&
      alert_actions == o.alert_actions &&
      ignore_alert_actions_from_payload == o.ignore_alert_actions_from_payload &&
      recipients == o.recipients &&
      responders == o.responders &&
      ignore_recipients_from_payload == o.ignore_recipients_from_payload &&
      ignore_teams_from_payload == o.ignore_teams_from_payload &&
      tags == o.tags &&
      ignore_tags_from_payload == o.ignore_tags_from_payload &&
      extra_properties == o.extra_properties &&
      ignore_extra_properties_from_payload == o.ignore_extra_properties_from_payload &&
      ignore_responders_from_payload == o.ignore_responders_from_payload
end

#_deserialize(type, value) ⇒ Object

Deserializes the data based on type

Parameters:

  • string

    type Data type

  • string

    value Value to be deserialized

Returns:

  • (Object)

    Deserialized data



405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 405

def _deserialize(type, value)
  case type.to_sym
  when :DateTime
    DateTime.parse(value)
  when :Date
    Date.parse(value)
  when :String
    value.to_s
  when :Integer
    value.to_i
  when :Float
    value.to_f
  when :BOOLEAN
    if value.to_s =~ /\A(true|t|yes|y|1)\z/i
      true
    else
      false
    end
  when :Object
    # generic object (usually a Hash), return directly
    value
  when /\AArray<(?<inner_type>.+)>\z/
    inner_type = Regexp.last_match[:inner_type]
    value.map { |v| _deserialize(inner_type, v) }
  when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
    k_type = Regexp.last_match[:k_type]
    v_type = Regexp.last_match[:v_type]
    {}.tap do |hash|
      value.each do |k, v|
        hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
      end
    end
  else # model
    temp_model = OpsgenieSdk.const_get(type).new
    temp_model.build_from_hash(value)
  end
end

#_to_hash(value) ⇒ Hash

Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value

Parameters:

  • value (Object)

    Any valid value

Returns:

  • (Hash)

    Returns the value in the form of hash



471
472
473
474
475
476
477
478
479
480
481
482
483
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 471

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

#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



384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 384

def build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  self.class.swagger_types.each_pair do |key, type|
    if type =~ /\AArray<(.*)>/i
      # check to ensure the input is an array given that the attribute
      # is documented as an array but the input is not
      if attributes[self.class.attribute_map[key]].is_a?(Array)
        self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
      end
    elsif !attributes[self.class.attribute_map[key]].nil?
      self.send("#{key}=", _deserialize(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?(o) ⇒ Boolean

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


371
372
373
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 371

def eql?(o)
  self == o
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



377
378
379
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 377

def hash
  [name, order, filter, type, user, note, _alias, source, message, description, entity, priority, custom_priority, append_attachments, alert_actions, ignore_alert_actions_from_payload, recipients, responders, ignore_recipients_from_payload, ignore_teams_from_payload, tags, ignore_tags_from_payload, extra_properties, ignore_extra_properties_from_payload, ignore_responders_from_payload].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properties with the reasons



272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 272

def list_invalid_properties
  invalid_properties = Array.new
  if @name.nil?
    invalid_properties.push('invalid value for "name", name cannot be nil.')
  end

  if !@order.nil? && @order < 0
    invalid_properties.push('invalid value for "order", must be greater than or equal to 0.')
  end

  if @filter.nil?
    invalid_properties.push('invalid value for "filter", filter cannot be nil.')
  end

  if @type.nil?
    invalid_properties.push('invalid value for "type", type cannot be nil.')
  end

  invalid_properties
end

#to_bodyHash

to_body is an alias to to_hash (backward compatibility)

Returns:

  • (Hash)

    Returns the object in the form of hash



451
452
453
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 451

def to_body
  to_hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



457
458
459
460
461
462
463
464
465
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 457

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = self.send(attr)
    next if value.nil?
    hash[param] = _to_hash(value)
  end
  hash
end

#to_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



445
446
447
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 445

def to_s
  to_hash.to_s
end

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



295
296
297
298
299
300
301
302
303
304
305
# File 'lib/opsgenie_sdk/models/create_integration_action.rb', line 295

def valid?
  return false if @name.nil?
  return false if !@order.nil? && @order < 0
  return false if @filter.nil?
  return false if @type.nil?
  type_validator = EnumAttributeValidator.new('String', ['acknowledge', 'addNote', 'close', 'create', 'ignore'])
  return false unless type_validator.valid?(@type)
  priority_validator = EnumAttributeValidator.new('String', ['P1', 'P2', 'P3', 'P4', 'P5'])
  return false unless priority_validator.valid?(@priority)
  true
end