Class: CloudRailSi::Types::CloudMetaData

Inherits:
SandboxObject show all
Defined in:
lib/cloudrail_si/types/CloudMetaData.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from SandboxObject

#get, #set

Instance Attribute Details

#folderObject

Returns the value of attribute folder.



6
7
8
# File 'lib/cloudrail_si/types/CloudMetaData.rb', line 6

def folder
  @folder
end

#modified_atObject

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

#nameObject

Returns the value of attribute name.



6
7
8
# File 'lib/cloudrail_si/types/CloudMetaData.rb', line 6

def name
  @name
end

#pathObject

Returns the value of attribute path.



6
7
8
# File 'lib/cloudrail_si/types/CloudMetaData.rb', line 6

def path
  @path
end

#sizeObject

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_sObject



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