Class: Azure::ServiceFabric::V6_3_0_9::Models::FolderInfo

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/6.3.0.9/generated/azure_service_fabric/models/folder_info.rb

Overview

Information about a image store folder. It includes how many files this folder contains and its image store relative path.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#file_countString

folder.

Returns:

  • (String)

    The number of files from within the image store



22
23
24
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/folder_info.rb', line 22

def file_count
  @file_count
end

#store_relative_pathString

relative to the image store root.

Returns:

  • (String)

    The remote location within image store. This path is



18
19
20
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/folder_info.rb', line 18

def store_relative_path
  @store_relative_path
end

Class Method Details

.mapperObject

Mapper for FolderInfo class as Ruby Hash. This will be used for serialization/deserialization.



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/folder_info.rb', line 29

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'FolderInfo',
    type: {
      name: 'Composite',
      class_name: 'FolderInfo',
      model_properties: {
        store_relative_path: {
          client_side_validation: true,
          required: false,
          serialized_name: 'StoreRelativePath',
          type: {
            name: 'String'
          }
        },
        file_count: {
          client_side_validation: true,
          required: false,
          serialized_name: 'FileCount',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end