Class: IControl::ARX::FileChangeResponse
- Inherits:
-
Base::Struct
- Object
- Base::Struct
- IControl::ARX::FileChangeResponse
- Defined in:
- lib/icontrol/arx.rb,
lib/icontrol/arx.rb
Overview
A structure that contains the details of a file change response.
Instance Attribute Summary collapse
-
#change_idx ⇒ String
The change index is used as a placeholder while retrieving batches of file changes.
-
#changes ⇒ IControl::ARX::FileChangeDefinitionSequence
A list of file change details.
-
#count ⇒ Numeric
Number of file changes returned from FileChangeResponse ::getChanges.
-
#dst_root ⇒ String
Parent directory path of all file destinations returned in this response.
-
#error_code ⇒ Numeric
Reserved for future development.
-
#more ⇒ Object
This is set to true when there are more file changes left to retrieve for this session and false when there are no more changes left to retrieve for the session.
-
#src_root ⇒ String
Parent directory path of all file sources returned in this response.
Instance Attribute Details
#change_idx ⇒ String
The change index is used as a placeholder while retrieving batches of file changes. This value is provided to get_notifications in order to get the next set of file changes.
122 123 124 |
# File 'lib/icontrol/arx.rb', line 122 def change_idx @change_idx end |
#changes ⇒ IControl::ARX::FileChangeDefinitionSequence
A list of file change details.
122 123 124 |
# File 'lib/icontrol/arx.rb', line 122 def changes @changes end |
#count ⇒ Numeric
Number of file changes returned from FileChangeResponse ::getChanges.
122 123 124 |
# File 'lib/icontrol/arx.rb', line 122 def count @count end |
#dst_root ⇒ String
Parent directory path of all file destinations returned in this response. This field is empty if it is the same as FileChangeResponse ::src_root. In this case, the caller must use the source root to reconstruct the file destination’s full path.
122 123 124 |
# File 'lib/icontrol/arx.rb', line 122 def dst_root @dst_root end |
#error_code ⇒ Numeric
Reserved for future development. Errors will be handled through the SOAP fault mechanism.
122 123 124 |
# File 'lib/icontrol/arx.rb', line 122 def error_code @error_code end |
#more ⇒ Object
This is set to true when there are more file changes left to retrieve for this session and false when there are no more changes left to retrieve for the session. When this is true, the user should call get_notifications to retrieve the next batch of file changes.
122 123 124 |
# File 'lib/icontrol/arx.rb', line 122 def more @more end |
#src_root ⇒ String
Parent directory path of all file sources returned in this response.
122 123 124 |
# File 'lib/icontrol/arx.rb', line 122 def src_root @src_root end |