Class: CloudRailSi::Types::CloudMetaData
- Inherits:
-
SandboxObject
- Object
- SandboxObject
- CloudRailSi::Types::CloudMetaData
- Defined in:
- lib/cloudrail_si/types/CloudMetaData.rb
Instance Attribute Summary collapse
-
#folder ⇒ Object
Returns the value of attribute folder.
-
#modified_at ⇒ Object
Returns the value of attribute modified_at.
-
#name ⇒ Object
Returns the value of attribute name.
-
#path ⇒ Object
Returns the value of attribute path.
-
#size ⇒ Object
Returns the value of attribute size.
Instance Method Summary collapse
Methods inherited from SandboxObject
Instance Attribute Details
#folder ⇒ Object
Returns the value of attribute folder.
6 7 8 |
# File 'lib/cloudrail_si/types/CloudMetaData.rb', line 6 def folder @folder end |
#modified_at ⇒ Object
Returns the value of attribute modified_at.
6 7 8 |
# File 'lib/cloudrail_si/types/CloudMetaData.rb', line 6 def modified_at @modified_at end |
#name ⇒ Object
Returns the value of attribute name.
6 7 8 |
# File 'lib/cloudrail_si/types/CloudMetaData.rb', line 6 def name @name end |
#path ⇒ Object
Returns the value of attribute path.
6 7 8 |
# File 'lib/cloudrail_si/types/CloudMetaData.rb', line 6 def path @path end |
#size ⇒ Object
Returns the value of attribute size.
6 7 8 |
# File 'lib/cloudrail_si/types/CloudMetaData.rb', line 6 def size @size end |
Instance Method Details
#to_s ⇒ Object
8 9 10 11 12 13 14 15 16 |
# File 'lib/cloudrail_si/types/CloudMetaData.rb', line 8 def to_s s = "" s += "name -> #{@name}\n" s += "path -> #{@path}\n" s += "size -> #{@size}\n" s += "folder -> #{@folder}\n" s += "modified_at -> #{@modified_at}" return s end |