Class: OneviewSDK::API500::C7000::EnclosureGroup

Inherits:
OneviewSDK::API300::C7000::EnclosureGroup show all
Defined in:
lib/oneview-sdk/resource/api500/c7000/enclosure_group.rb

Overview

Enclosure group resource implementation on API500 C7000

Constant Summary

Constants inherited from OneviewSDK::API200::EnclosureGroup

OneviewSDK::API200::EnclosureGroup::BASE_URI

Constants inherited from Resource

Resource::BASE_URI, 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 OneviewSDK::API300::C7000::EnclosureGroup

#add_logical_interconnect_group, #create_interconnect_bay_mapping

Methods inherited from OneviewSDK::API200::EnclosureGroup

#add_logical_interconnect_group, #create_interconnect_bay_mapping, #get_script, #set_script

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) ⇒ EnclosureGroup

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
28
# File 'lib/oneview-sdk/resource/api500/c7000/enclosure_group.rb', line 23

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

Instance Method Details

#update(attributes = {}) ⇒ Resource

Updates an enclosure group

Parameters:

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

    The attributes to add/change for this resource (key-value pairs)

Returns:

Raises:



35
36
37
38
39
# File 'lib/oneview-sdk/resource/api500/c7000/enclosure_group.rb', line 35

def update(attributes = {})
  super(attributes)
  retrieve!
  self
end