Class: IControl::LocalLB::Klass::MetaInformation
- Inherits:
-
Base::Struct
- Object
- Base::Struct
- IControl::LocalLB::Klass::MetaInformation
- Defined in:
- lib/icontrol/local_lb/klass.rb,
lib/icontrol/local_lb/klass.rb
Overview
A struct that describes the meta information of a class.
Instance Attribute Summary collapse
-
#class_name ⇒ String
The name of the external class.
-
#class_type ⇒ IControl::LocalLB::Klass::ClassType
The type of the external class.
-
#file_format ⇒ IControl::LocalLB::Klass::FileFormatType
The file format of an external class.
-
#file_mode ⇒ IControl::LocalLB::Klass::FileModeType
The mode determines whether the external data is updated by a save operation.
-
#file_name ⇒ String
The name of the file holding the data.
Instance Attribute Details
#class_name ⇒ String
The name of the external class.
612 613 614 |
# File 'lib/icontrol/local_lb/klass.rb', line 612 def class_name @class_name end |
#class_type ⇒ IControl::LocalLB::Klass::ClassType
The type of the external class.
612 613 614 |
# File 'lib/icontrol/local_lb/klass.rb', line 612 def class_type @class_type end |
#file_format ⇒ IControl::LocalLB::Klass::FileFormatType
The file format of an external class. Only applicable for external classes.
612 613 614 |
# File 'lib/icontrol/local_lb/klass.rb', line 612 def file_format @file_format end |
#file_mode ⇒ IControl::LocalLB::Klass::FileModeType
The mode determines whether the external data is updated by a save operation. Default is “READ”. Only applicable for external classes.
612 613 614 |
# File 'lib/icontrol/local_lb/klass.rb', line 612 def file_mode @file_mode end |
#file_name ⇒ String
The name of the file holding the data. If file_name is not empty, it indicates an external class.
612 613 614 |
# File 'lib/icontrol/local_lb/klass.rb', line 612 def file_name @file_name end |