Class: OneviewSDK::API300::C7000::Enclosure

Inherits:
OneviewSDK::API200::Enclosure show all
Defined in:
lib/oneview-sdk/resource/api300/c7000/enclosure.rb

Overview

Enclosure resource implementation for API300 C7000

Constant Summary

Constants inherited from OneviewSDK::API200::Enclosure

OneviewSDK::API200::Enclosure::BASE_URI, OneviewSDK::API200::Enclosure::UNIQUE_IDENTIFIERS

Constants inherited from Resource

Resource::BASE_URI, Resource::UNIQUE_IDENTIFIERS

Instance Attribute Summary

Attributes inherited from Resource

#api_version, #client, #data, #logger

Instance Method Summary collapse

Methods inherited from OneviewSDK::API200::Enclosure

#add, #configuration, #create, #delete, #environmental_configuration, #remove, #script, #set_enclosure_group, #set_environmental_configuration, #set_refresh_state, #update, #utilization

Methods inherited from Resource

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

Constructor Details

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

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.



24
25
26
27
28
29
# File 'lib/oneview-sdk/resource/api300/c7000/enclosure.rb', line 24

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

Instance Method Details

#patch(operation, path, value = nil) ⇒ Object

Update specific attributes of a given enclosure

Parameters:

  • operation (String)

    Operation to be performed

  • path (String)

    Path

  • value (String) (defaults to: nil)

    Value



35
36
37
38
39
40
41
42
43
44
# File 'lib/oneview-sdk/resource/api300/c7000/enclosure.rb', line 35

def patch(operation, path, value = nil)
  ensure_client && ensure_uri
  body = if value
           { op: operation, path: path, value: value }
         else
           { op: operation, path: path }
         end
  response = @client.rest_patch(@data['uri'], { 'body' => [body] }, @api_version)
  @client.response_handler(response)
end