Class: AsposeEmailCloud::CloudStorageGroup
- Inherits:
-
Object
- Object
- AsposeEmailCloud::CloudStorageGroup
- Defined in:
- lib/aspose-email-cloud/api/cloud_storage_group.rb
Overview
Cloud file storage operations.
Instance Attribute Summary collapse
-
#file ⇒ Object
readonly
File operations controller.
-
#folder ⇒ Object
readonly
Folder operations controller.
-
#storage ⇒ Object
readonly
Storage operations controller.
Instance Method Summary collapse
-
#initialize(api_invoker) ⇒ CloudStorageGroup
constructor
A new instance of CloudStorageGroup.
Constructor Details
#initialize(api_invoker) ⇒ CloudStorageGroup
Returns a new instance of CloudStorageGroup.
43 44 45 46 47 48 49 50 51 |
# File 'lib/aspose-email-cloud/api/cloud_storage_group.rb', line 43 def initialize(api_invoker) @file = FileApi.new(api_invoker) @folder = FolderApi.new(api_invoker) @storage = StorageApi.new(api_invoker) end |
Instance Attribute Details
#file ⇒ Object (readonly)
File operations controller
34 35 36 |
# File 'lib/aspose-email-cloud/api/cloud_storage_group.rb', line 34 def file @file end |
#folder ⇒ Object (readonly)
Folder operations controller
37 38 39 |
# File 'lib/aspose-email-cloud/api/cloud_storage_group.rb', line 37 def folder @folder end |
#storage ⇒ Object (readonly)
Storage operations controller
40 41 42 |
# File 'lib/aspose-email-cloud/api/cloud_storage_group.rb', line 40 def storage @storage end |