Class: OneviewSDK::API300::Synergy::FCNetwork
- Inherits:
-
OneviewSDK::API200::FCNetwork
- Object
- Resource
- OneviewSDK::API200::Resource
- OneviewSDK::API200::FCNetwork
- OneviewSDK::API300::Synergy::FCNetwork
- 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
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
-
#initialize(client, params = {}, api_ver = nil) ⇒ FCNetwork
constructor
Create a resource object, associate it with a client, and set its properties.
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.
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 |