Class: OneviewSDK::API600::C7000::ServerProfile
- Inherits:
-
OneviewSDK::API500::C7000::ServerProfile
- Object
- Resource
- OneviewSDK::API200::Resource
- OneviewSDK::API200::ServerProfile
- OneviewSDK::API300::C7000::ServerProfile
- OneviewSDK::API500::C7000::ServerProfile
- OneviewSDK::API600::C7000::ServerProfile
- Defined in:
- lib/oneview-sdk/resource/api600/c7000/server_profile.rb
Overview
Server Profile resource implementation on API600 C7000
Direct Known Subclasses
Synergy::ServerProfile, OneviewSDK::API800::C7000::ServerProfile
Constant Summary
Constants inherited from OneviewSDK::API200::ServerProfile
OneviewSDK::API200::ServerProfile::BASE_URI, OneviewSDK::API200::ServerProfile::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
Class Method Summary collapse
-
.get_available_storage_system ⇒ Object
Method is not available.
-
.get_available_storage_systems ⇒ Object
Method is not available.
Instance Method Summary collapse
-
#add_connection(network, connection_options = {}) ⇒ Object
Adds a connection entry to server profile.
-
#get_messages ⇒ Object
Method is not available.
-
#initialize(client, params = {}, api_ver = nil) ⇒ ServerProfile
constructor
Create a resource object, associate it with a client, and set its properties.
-
#remove_connection(connection_name) ⇒ Object
Removes a connection entry in server profile.
Methods inherited from OneviewSDK::API500::C7000::ServerProfile
#create_volume_with_attachment, #get_profile_template
Methods inherited from OneviewSDK::API200::ServerProfile
#add_volume_attachment, #create_volume_with_attachment, #get_available_hardware, #get_available_networks, get_available_networks, get_available_servers, get_available_targets, #get_compliance_preview, get_profile_ports, #get_server_hardware, #get_transformation, #remove_volume_attachment, #set_enclosure, #set_enclosure_group, #set_firmware_driver, #set_server_hardware, #set_server_hardware_type, #update_from_template
Methods included from ResourceHelper::PatchOperation
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) ⇒ ServerProfile
Create a resource object, associate it with a client, and set its properties.
23 24 25 26 27 28 |
# File 'lib/oneview-sdk/resource/api600/c7000/server_profile.rb', line 23 def initialize(client, params = {}, api_ver = nil) @data ||= {} # Default values @data['type'] ||= 'ServerProfileV8' super end |
Class Method Details
.get_available_storage_system ⇒ Object
Method is not available
32 33 34 |
# File 'lib/oneview-sdk/resource/api600/c7000/server_profile.rb', line 32 def self.get_available_storage_system(*) unavailable_method end |
.get_available_storage_systems ⇒ Object
Method is not available
38 39 40 |
# File 'lib/oneview-sdk/resource/api600/c7000/server_profile.rb', line 38 def self.get_available_storage_systems(*) unavailable_method end |
Instance Method Details
#add_connection(network, connection_options = {}) ⇒ Object
Adds a connection entry to server profile
59 60 61 62 63 64 65 66 |
# File 'lib/oneview-sdk/resource/api600/c7000/server_profile.rb', line 59 def add_connection(network, = {}) = Hash[.map { |k, v| [k.to_s, v] }] self['connectionSettings'] = {} unless self['connectionSettings'] self['connectionSettings']['connections'] = [] unless self['connectionSettings']['connections'] ['id'] ||= 0 ['networkUri'] = network['uri'] if network['uri'] || network.retrieve! self['connectionSettings']['connections'] << end |
#get_messages ⇒ Object
Method is not available
44 45 46 |
# File 'lib/oneview-sdk/resource/api600/c7000/server_profile.rb', line 44 def (*) unavailable_method end |
#remove_connection(connection_name) ⇒ Object
Removes a connection entry in server profile
71 72 73 74 75 76 77 78 |
# File 'lib/oneview-sdk/resource/api600/c7000/server_profile.rb', line 71 def remove_connection(connection_name) desired_connection = nil return desired_connection unless self['connectionSettings']['connections'] self['connectionSettings']['connections'].each do |con| desired_connection = self['connectionSettings']['connections'].delete(con) if con['name'] == connection_name end desired_connection end |