Class: OneviewSDK::API300::C7000::ServerProfileTemplate

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

Overview

Server Profile Template resource implementation on API300 C7000

Constant Summary

Constants inherited from OneviewSDK::API200::ServerProfileTemplate

OneviewSDK::API200::ServerProfileTemplate::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::API200::ServerProfileTemplate

#add_connection, #add_volume_attachment, #create_volume_with_attachment, #get_available_hardware, #new_profile, #remove_connection, #remove_volume_attachment, #set_enclosure_group, #set_firmware_driver, #set_server_hardware_type

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

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/server_profile_template.rb', line 24

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

Instance Method Details

#get_transformation(client, query = nil) ⇒ Hash

Transforms an existing profile template by supplying a new server hardware type and/or enclosure group. A profile template will be returned with a new configuration based on the capabilities of the supplied server hardware type and/or enclosure group. All configured connections will have their port assignment set to ‘Auto’. The new profile template can subsequently be used for the PUT https://appl/rest/server-profile-templates/id API but is not guaranteed to pass validation. Any incompatibilities will be flagged when the transformed server profile template is submitted.

Parameters:

  • client (OneviewSDK::Client)

    The client object for the OneView appliance

  • query (Hash) (defaults to: nil)

    Query parameters

Options Hash (query):

  • 'enclosure_group' (OneviewSDK::EnclosureGroup)

    Enclosure Group associated with the resource

  • 'server_hardware_type' (OneviewSDK::ServerHardwareType)

    The server hardware type associated with the resource

Returns:

  • (Hash)

    Hash containing the required information



42
43
44
45
46
# File 'lib/oneview-sdk/resource/api300/c7000/server_profile_template.rb', line 42

def get_transformation(client, query = nil)
  query_uri = OneviewSDK::Resource.build_query(query) if query
  response = client.rest_get("#{@data['uri']}/transformation#{query_uri}")
  client.response_handler(response)
end