class Azure::ServiceFabric::V6_3_0_9::Models::FolderInfo

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

Attributes

file_count[RW]

@return [String] The number of files from within the image store folder.

store_relative_path[RW]

@return [String] The remote location within image store. This path is relative to the image store root.

Public Class Methods

mapper() click to toggle source

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

# 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