Class: OneviewSDK::API200::Alerts

Inherits:
Resource
  • Object
show all
Defined in:
lib/oneview-sdk/resource/api200/alerts.rb

Overview

Event resource implementation

Constant Summary collapse

BASE_URI =
'/rest/alerts'.freeze

Constants inherited from Resource

Resource::DEFAULT_REQUEST_HEADER, Resource::UNIQUE_IDENTIFIERS

Instance Attribute Summary

Attributes inherited from Resource

#api_version, #client, #data, #logger

Instance Method Summary collapse

Methods inherited from Resource

#==, #[], #[]=, build_query, #create, #create!, #deep_merge!, #delete, #each, #eql?, #exists?, find_by, find_with_pagination, from_file, get_all, get_all_with_query, #like?, #refresh, #retrieve!, schema, #schema, #set, #set_all, #to_file

Constructor Details

#initialize(client, params = {}, api_ver = nil) ⇒ Alerts

Create a resource object, associate it with a client, and set its properties.

Parameters:

  • client (OneviewSDK::Client)

    The client object for the OneView appliance

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

    The options for this resource (key-value pairs)

  • api_ver (Integer) (defaults to: nil)

    The api version to use when interracting with this resource.



23
24
25
26
27
# File 'lib/oneview-sdk/resource/api200/alerts.rb', line 23

def initialize(client, params = {}, api_ver = nil)
  super
  # Default values:
  @data['type'] ||= 'AlertResourceV3'
end

Instance Method Details

#update(attributes = {}) ⇒ Object



29
30
31
32
33
34
35
36
# File 'lib/oneview-sdk/resource/api200/alerts.rb', line 29

def update(attributes = {})
  set_all(attributes)
  ensure_client && ensure_uri
  data = @data.select { |k, _v| %w[alertState alertUrgency assignedToUser notes eTag].include?(k) }
  response = @client.rest_put(@data['uri'], { 'body' => data }, @api_version)
  @client.response_handler(response)
  self
end