Class: OneviewSDK::API300::Synergy::FCNetwork

Inherits:
OneviewSDK::API200::FCNetwork show all
Includes:
C7000::Scope::ScopeHelperMethods
Defined in:
lib/oneview-sdk/resource/api300/synergy/fc_network.rb

Overview

FC network resource implementation for API300 Synergy

Direct Known Subclasses

OneviewSDK::API500::Synergy::FCNetwork

Constant Summary

Constants inherited from OneviewSDK::API200::FCNetwork

OneviewSDK::API200::FCNetwork::BASE_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 included from C7000::Scope::ScopeHelperMethods

#add_scope, #patch, #remove_scope, #replace_scopes

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

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.



26
27
28
29
30
31
32
33
34
# File 'lib/oneview-sdk/resource/api300/synergy/fc_network.rb', line 26

def initialize(client, params = {}, api_ver = nil)
  @data ||= {}
  # Default values
  @data['autoLoginRedistribution'] ||= false
  @data['type'] ||= 'fc-networkV300'
  @data['linkStabilityTime'] ||= 30
  @data['fabricType'] ||= 'FabricAttach'
  super
end