Class: OneviewSDK::API300::Synergy::Interconnect

Inherits:
OneviewSDK::API200::Interconnect show all
Defined in:
lib/oneview-sdk/resource/api300/synergy/interconnect.rb

Overview

Interconnect resource implementation on API300 Synergy

Constant Summary collapse

'/rest/interconnect-link-topologies'.freeze

Constants inherited from OneviewSDK::API200::Interconnect

OneviewSDK::API200::Interconnect::BASE_URI, OneviewSDK::API200::Interconnect::TYPE_URI, OneviewSDK::API200::Interconnect::UNIQUE_IDENTIFIERS

Constants inherited from Resource

Resource::BASE_URI, Resource::UNIQUE_IDENTIFIERS

Instance Attribute Summary

Attributes inherited from Resource

#api_version, #client, #data, #logger

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from OneviewSDK::API200::Interconnect

#create, #delete, get_type, get_types, #name_servers, #patch, #reset_port_protection, #statistics, #update, #update_port

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

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.



25
26
27
28
29
30
# File 'lib/oneview-sdk/resource/api300/synergy/interconnect.rb', line 25

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

Class Method Details

Retrieves the interconnect link topologies

Parameters:

Returns:

  • (Array)

    All the Interconnect Link Topologies



35
36
37
38
39
# File 'lib/oneview-sdk/resource/api300/synergy/interconnect.rb', line 35

def self.get_link_topologies(client)
  response = client.rest_get(LINK_TOPOLOGY_URI)
  response = client.response_handler(response)
  response['members']
end

Retrieves the interconnect link topology with the name

Parameters:

  • client (OneviewSDK::Client)

    The client object for the OneView appliance

  • name (String)

    Switch type name

Returns:

  • (Array)

    Switch type



45
46
47
48
# File 'lib/oneview-sdk/resource/api300/synergy/interconnect.rb', line 45

def self.get_link_topology(client, name)
  results = get_link_topologies(client)
  results.find { |interconnect_link_topology| interconnect_link_topology['name'] == name }
end