Class: OneviewSDK::API1800::C7000::ServerHardware

Overview

Server Hardware resource implementation on API1800 C7000

Constant Summary

Constants inherited from OneviewSDK::API200::ServerHardware

OneviewSDK::API200::ServerHardware::BASE_URI, OneviewSDK::API200::ServerHardware::UNIQUE_IDENTIFIERS

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::API600::C7000::ServerHardware

#add_multiple_servers

Methods inherited from OneviewSDK::API500::C7000::ServerHardware

#get_physical_server_hardware

Methods inherited from OneviewSDK::API300::C7000::ServerHardware

#get_firmware_by_id, #get_firmwares

Methods included from OneviewSDK::API300::C7000::Scope::ScopeHelperMethods

#add_scope, #patch, #remove_scope, #replace_scopes

Methods inherited from OneviewSDK::API200::ServerHardware

#add, #create, #create!, #delete, #environmental_configuration, #exists?, #get_bios, #get_ilo_sso_url, #get_java_remote_sso_url, #get_remote_console_url, #power_off, #power_on, #remove, #retrieve!, #set_power_state, #set_refresh_state, #update, #update_ilo_firmware, #utilization

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, #update

Constructor Details

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

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/api1800/c7000/server_hardware.rb', line 23

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

Instance Method Details

#get_local_storageHash

Gets the local storage resource for the server, including storage controllers, storage enclosures, physical drives, and logical drives.

Returns:

  • (Hash)

    Contains the actual subresource data collected from the Management Processor



33
34
35
36
37
# File 'lib/oneview-sdk/resource/api1800/c7000/server_hardware.rb', line 33

def get_local_storage
  ensure_client && ensure_uri
  response = @client.rest_get(@data['uri'] + '/localStorage')
  @client.response_handler(response)
end

#get_local_storagev2Hash

Gets the updated version 2 local storage resource for the server, including storage controllers, drives, and volumes. Starting with Gen 10 Plus, certain storage adapters will provide /localStorageV2 instead of (or in addition to) /localStorage

Returns:

  • (Hash)

    Contains the storage data based on the following schema.



43
44
45
46
47
# File 'lib/oneview-sdk/resource/api1800/c7000/server_hardware.rb', line 43

def get_local_storagev2
  ensure_client && ensure_uri
  response = @client.rest_get(@data['uri'] + '/localStorageV2')
  @client.response_handler(response)
end