Class: OneviewSDK::Interconnect

Inherits:
Resource
  • Object
show all
Defined in:
lib/oneview-sdk/resource/interconnect.rb

Overview

Interconnect resource implementation

Constant Summary collapse

BASE_URI =
'/rest/interconnects'.freeze
TYPE_URI =
'/rest/interconnect-types'.freeze

Instance Attribute Summary

Attributes inherited from Resource

#api_version, #client, #data, #logger

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Resource

#==, #[], #[]=, build_query, #create!, #each, #eql?, #exists?, find_by, from_file, get_all, #like?, #refresh, #retrieve!, #schema, schema, #set, #set_all, #to_file

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.



22
23
24
# File 'lib/oneview-sdk/resource/interconnect.rb', line 22

def initialize(client, params = {}, api_ver = nil)
  super
end

Class Method Details

.get_type(client, name) ⇒ Array

Retrieves the interconnect type with name

Parameters:

  • client (OneviewSDK::Client)

    The client object for the OneView appliance

  • name (String)

    Interconnect type name

Returns:

  • (Array)

    Interconnect type



56
57
58
59
# File 'lib/oneview-sdk/resource/interconnect.rb', line 56

def self.get_type(client, name)
  results = get_types(client)
  results.find { |interconnect_type| interconnect_type['name'] == name }
end

.get_types(client) ⇒ Object

Retrieves interconnect types

Parameters:



46
47
48
49
50
# File 'lib/oneview-sdk/resource/interconnect.rb', line 46

def self.get_types(client)
  response = client.rest_get(TYPE_URI)
  response = client.response_handler(response)
  response['members']
end

Instance Method Details

#createObject

Method is not available

Raises:



28
29
30
# File 'lib/oneview-sdk/resource/interconnect.rb', line 28

def create
  unavailable_method
end

#deleteObject

Method is not available

Raises:



40
41
42
# File 'lib/oneview-sdk/resource/interconnect.rb', line 40

def delete
  unavailable_method
end

#name_serversObject

Retrieves the named servers for this interconnect



62
63
64
65
# File 'lib/oneview-sdk/resource/interconnect.rb', line 62

def name_servers
  response = @client.rest_get(@data['uri'] + '/nameServers')
  response.body
end

#patch(operation, path, value) ⇒ Object

Updates specific attributes for a given interconnect resource

Parameters:

  • operation (String)

    operation to be performed

  • path (String)

    path

  • value (String)

    value



102
103
104
105
# File 'lib/oneview-sdk/resource/interconnect.rb', line 102

def patch(operation, path, value)
  response = @client.rest_patch(@data['uri'], 'body' => [{ op: operation, path: path, value: value }])
  @client.response_handler(response)
end

#reset_port_protectionObject

Triggers the reset port protection action



93
94
95
96
# File 'lib/oneview-sdk/resource/interconnect.rb', line 93

def reset_port_protection
  response = @client.rest_put(@data['uri'] + '/resetportprotection')
  @client.response_handler(response)
end

#statistics(portName = nil, subportNumber = nil) ⇒ Object

Get statistics for an interconnect, for the specified port or subport

Parameters:

  • portName (String) (defaults to: nil)

    port to retrieve statistics

  • subportNumber (String) (defaults to: nil)

    subport to retrieve statistics



82
83
84
85
86
87
88
89
90
# File 'lib/oneview-sdk/resource/interconnect.rb', line 82

def statistics(portName = nil, subportNumber = nil)
  uri = if subportNumber.nil?
          "#{@data['uri']}/statistics/#{portName}"
        else
          "#{@data['uri']}/statistics/#{portName}/subport/#{subportNumber}"
        end
  response = @client.rest_get(uri)
  response.body
end

#updateObject

Method is not available

Raises:



34
35
36
# File 'lib/oneview-sdk/resource/interconnect.rb', line 34

def update
  unavailable_method
end

#update_port(portName, attributes) ⇒ Object

Updates an interconnect port

Parameters:

  • portName (String)

    port name

  • attributes (Hash)

    hash with attributes and values to be changed



70
71
72
73
74
75
76
77
# File 'lib/oneview-sdk/resource/interconnect.rb', line 70

def update_port(portName, attributes)
  @data['ports'].each do |port|
    next unless port['name'] == portName
    attributes.each { |key, value| port[key.to_s] = value }
    response = @client.rest_put(@data['uri'] + '/ports', 'body' => port)
    @client.response_handler(response)
  end
end