Class: OneviewSDK::API300::C7000::LogicalSwitch

Inherits:
OneviewSDK::API200::LogicalSwitch show all
Includes:
Scope::ScopeHelperMethods
Defined in:
lib/oneview-sdk/resource/api300/c7000/logical_switch.rb

Overview

Logical switch resource implementation for API300 C7000

Constant Summary collapse

'/rest/internal-link-sets'.freeze

Constants inherited from OneviewSDK::API200::LogicalSwitch

OneviewSDK::API200::LogicalSwitch::BASE_URI

Constants inherited from Resource

Resource::BASE_URI, Resource::UNIQUE_IDENTIFIERS

Instance Attribute Summary

Attributes inherited from OneviewSDK::API200::LogicalSwitch

#logical_switch_credentials

Attributes inherited from Resource

#api_version, #client, #data, #logger

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Scope::ScopeHelperMethods

#add_scope, #patch, #remove_scope, #replace_scopes

Methods inherited from OneviewSDK::API200::LogicalSwitch

#create, #refresh_state, #set_logical_switch_group, #set_switch_credentials

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

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.



28
29
30
31
32
33
34
# File 'lib/oneview-sdk/resource/api300/c7000/logical_switch.rb', line 28

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

Class Method Details

Retrieves the internal link set with name

Parameters:

  • client (OneviewSDK::Client)

    The client object for the OneView appliance

  • name (String)

    The internal link set name

Returns:

  • (Array)

    Internal Link Set Array



48
49
50
51
# File 'lib/oneview-sdk/resource/api300/c7000/logical_switch.rb', line 48

def self.get_internal_link_set(client, name)
  results = get_internal_link_sets(client)
  results.find { |internal_link_set| internal_link_set['name'] == name }
end

Retrieves all internal link sets

Parameters:



38
39
40
41
42
# File 'lib/oneview-sdk/resource/api300/c7000/logical_switch.rb', line 38

def self.get_internal_link_sets(client)
  response = client.rest_get(INTERNAL_LINK_SET_URI)
  response = client.response_handler(response)
  response['members']
end