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)
-
- (String) class_name
The name of the external class.
-
- (IControl::LocalLB::Klass::ClassType) class_type
The type of the external class.
-
- (IControl::LocalLB::Klass::FileFormatType) file_format
The file format of an external class.
-
- (IControl::LocalLB::Klass::FileModeType) file_mode
The mode determines whether the external data is updated by a save operation.
-
- (String) file_name
The name of the file holding the data.
Method Summary
Methods inherited from Base::Struct
from_soap, icontrol_attribute, #to_soap
Instance Attribute Details
- (String) class_name
The name of the external class.
612 613 614 |
# File 'lib/icontrol/local_lb/klass.rb', line 612 def class_name @class_name end |
- (IControl::LocalLB::Klass::ClassType) class_type
The type of the external class.
612 613 614 |
# File 'lib/icontrol/local_lb/klass.rb', line 612 def class_type @class_type end |
- (IControl::LocalLB::Klass::FileFormatType) file_format
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 |
- (IControl::LocalLB::Klass::FileModeType) file_mode
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 |
- (String) file_name
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 |