Class: OneviewSDK::API1800::C7000::LogicalInterconnect

Overview

Logical interconnect resource implementation for API1800 C7000

Constant Summary

Constants inherited from OneviewSDK::API200::LogicalInterconnect

OneviewSDK::API200::LogicalInterconnect::BASE_URI, OneviewSDK::API200::LogicalInterconnect::LOCATION_URI

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

Instance Method Summary collapse

Methods inherited from OneviewSDK::API1600::C7000::LogicalInterconnect

#initialize

Methods inherited from OneviewSDK::API1200::C7000::LogicalInterconnect

#initialize

Methods inherited from OneviewSDK::API1000::C7000::LogicalInterconnect

#initialize

Methods inherited from OneviewSDK::API800::C7000::LogicalInterconnect

#initialize

Methods inherited from OneviewSDK::API600::C7000::LogicalInterconnect

#initialize, #update_settings

Methods inherited from OneviewSDK::API300::C7000::LogicalInterconnect

#initialize, #update_settings

Methods included from OneviewSDK::API300::C7000::Scope::ScopeHelperMethods

#add_scope, #patch, #remove_scope, #replace_scopes

Methods inherited from OneviewSDK::API200::LogicalInterconnect

#add_snmp_trap_destination, #compliance, #create, #delete, #firmware_update, #generate_trap_options, #get_firmware, #get_unassigned_uplink_ports_for_port_monitor, #initialize, #list_vlan_networks, #update_ethernet_settings, #update_internal_networks, #update_port_monitor, #update_qos_configuration, #update_settings, #update_snmp_configuration, #update_telemetry_configuration

Methods included from ResourceHelper::ConfigurationOperation

#configuration

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

Constructor Details

This class inherits a constructor from OneviewSDK::API1600::C7000::LogicalInterconnect

Instance Method Details

#get_igmp_settingsObject

Gets igmpSettings of logical interconnect



20
21
22
23
24
25
26
# File 'lib/oneview-sdk/resource/api1800/c7000/logical_interconnect.rb', line 20

def get_igmp_settings
  ensure_client && ensure_uri
  response = @client.rest_get("#{@data['uri']}/igmpSettings")
  @client.response_handler(response)
  body = @client.response_handler(response)
  body['members']
end

#update_igmp_settingsObject

Updates igmpSettings for LI

Raises:



29
30
31
32
33
34
35
36
37
38
# File 'lib/oneview-sdk/resource/api1800/c7000/logical_interconnect.rb', line 29

def update_igmp_settings
  raise IncompleteResource, 'Please retrieve the Logical Interconnect before trying to update' unless @data['igmpSettings']
  update_options = {
    'If-Match' =>  @data['igmpSettings'].delete('eTag'),
    'body' => @data['igmpSettings']
  }
  response = @client.rest_put("#{@data['uri']}/igmpSettings", update_options, @api_version)
  body = @client.response_handler(response)
  set_all(body)
end