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 for synergy on api300

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

Methods inherited from OneviewSDK::API200::Interconnect

#create, #delete, get_type, get_types, #initialize, #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, #initialize, #like?, #refresh, #retrieve!, #schema, schema, #set, #set_all, #to_file, #update

Constructor Details

This class inherits a constructor from OneviewSDK::API200::Interconnect

Class Method Details

Retrieves the interconnect link topologies

Parameters:

Returns:

  • (Array)

    All the Interconnect Link Topologies



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

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



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

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