Class: IControl::Management::ChangeControl::ClassInfo
- Inherits:
-
Base::Struct
- Object
- Base::Struct
- IControl::Management::ChangeControl::ClassInfo
- Defined in:
- lib/icontrol/management/change_control.rb,
lib/icontrol/management/change_control.rb
Overview
A struct that describes class information.
Instance Attribute Summary collapse
-
#delete_transaction_id ⇒ Numeric
Last transaction id for deleted instances in class.
-
#header_needs_instance_name ⇒ Object
Class headers need to include instance name.
-
#is_partitioned ⇒ Object
Class is partitioned.
-
#is_singleton ⇒ Object
Class only has one instance.
-
#name ⇒ String
The class name.
-
#supports_delete ⇒ Object
Class supports delete operation.
-
#supports_transaction_id ⇒ Object
Class supports transaction information.
-
#supports_verify ⇒ Object
Class supports verify operation.
-
#transaction_id ⇒ Numeric
Last transaction id for create/update/delete instances in class.
Instance Attribute Details
#delete_transaction_id ⇒ Numeric
Last transaction id for deleted instances in class.
222 223 224 |
# File 'lib/icontrol/management/change_control.rb', line 222 def delete_transaction_id @delete_transaction_id end |
#header_needs_instance_name ⇒ Object
Class headers need to include instance name.
222 223 224 |
# File 'lib/icontrol/management/change_control.rb', line 222 def header_needs_instance_name @header_needs_instance_name end |
#is_partitioned ⇒ Object
Class is partitioned.
222 223 224 |
# File 'lib/icontrol/management/change_control.rb', line 222 def is_partitioned @is_partitioned end |
#is_singleton ⇒ Object
Class only has one instance.
222 223 224 |
# File 'lib/icontrol/management/change_control.rb', line 222 def is_singleton @is_singleton end |
#name ⇒ String
The class name.
222 223 224 |
# File 'lib/icontrol/management/change_control.rb', line 222 def name @name end |
#supports_delete ⇒ Object
Class supports delete operation.
222 223 224 |
# File 'lib/icontrol/management/change_control.rb', line 222 def supports_delete @supports_delete end |
#supports_transaction_id ⇒ Object
Class supports transaction information.
222 223 224 |
# File 'lib/icontrol/management/change_control.rb', line 222 def supports_transaction_id @supports_transaction_id end |
#supports_verify ⇒ Object
Class supports verify operation.
222 223 224 |
# File 'lib/icontrol/management/change_control.rb', line 222 def supports_verify @supports_verify end |
#transaction_id ⇒ Numeric
Last transaction id for create/update/delete instances in class.
222 223 224 |
# File 'lib/icontrol/management/change_control.rb', line 222 def transaction_id @transaction_id end |