Class: OneviewSDK::FCoENetwork

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

Overview

FCoE network resource implementation

Constant Summary collapse

BASE_URI =
'/rest/fcoe-networks'.freeze

Instance Attribute Summary

Attributes inherited from Resource

#api_version, #client, #data, #logger

Instance Method Summary collapse

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

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.



21
22
23
24
25
26
# File 'lib/oneview-sdk/resource/fcoe_network.rb', line 21

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