class Azure::ServiceFabric::V7_0_0_42::Models::UsageInfo

Information about how much space and how many files in the file system the ImageStore is using in this category

Attributes

file_count[RW]

@return [String] the number of all files in this category

used_space[RW]

@return [String] the size of all files in this category

Private Class Methods

mapper() click to toggle source

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

# File lib/7.0.0.42/generated/azure_service_fabric/models/usage_info.rb, line 27
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'UsageInfo',
    type: {
      name: 'Composite',
      class_name: 'UsageInfo',
      model_properties: {
        used_space: {
          client_side_validation: true,
          required: false,
          serialized_name: 'UsedSpace',
          type: {
            name: 'String'
          }
        },
        file_count: {
          client_side_validation: true,
          required: false,
          serialized_name: 'FileCount',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end