Class: OneviewSDK::API300::Synergy::Interconnect
- Inherits:
-
OneviewSDK::API200::Interconnect
- Object
- Resource
- OneviewSDK::API200::Resource
- OneviewSDK::API200::Interconnect
- OneviewSDK::API300::Synergy::Interconnect
- Defined in:
- lib/oneview-sdk/resource/api300/synergy/interconnect.rb
Overview
Interconnect resource implementation on API300 Synergy
Constant Summary collapse
- LINK_TOPOLOGY_URI =
'/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::DEFAULT_REQUEST_HEADER, Resource::UNIQUE_IDENTIFIERS
Instance Attribute Summary
Attributes inherited from Resource
#api_version, #client, #data, #logger
Class Method Summary collapse
-
.get_link_topologies(client) ⇒ Array
Retrieves the interconnect link topologies.
-
.get_link_topology(client, name) ⇒ Array
Retrieves the interconnect link topology with the name.
Instance Method Summary collapse
-
#initialize(client, params = {}, api_ver = nil) ⇒ Interconnect
constructor
Create a resource object, associate it with a client, and set its properties.
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!, #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) ⇒ Interconnect
Create a resource object, associate it with a client, and set its properties.
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
.get_link_topologies(client) ⇒ Array
Retrieves 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 |
.get_link_topology(client, name) ⇒ Array
Retrieves the interconnect link topology with the name
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 |