Class: Files::UsageSnapshot

Inherits:
Object
  • Object
show all
Defined in:
lib/files.com/models/usage_snapshot.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}, options = {}) ⇒ UsageSnapshot

Returns a new instance of UsageSnapshot.



7
8
9
10
# File 'lib/files.com/models/usage_snapshot.rb', line 7

def initialize(attributes = {}, options = {})
  @attributes = attributes || {}
  @options = options || {}
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



5
6
7
# File 'lib/files.com/models/usage_snapshot.rb', line 5

def attributes
  @attributes
end

#optionsObject (readonly)

Returns the value of attribute options.



5
6
7
# File 'lib/files.com/models/usage_snapshot.rb', line 5

def options
  @options
end

Class Method Details

.all(params = {}, options = {}) ⇒ Object



89
90
91
# File 'lib/files.com/models/usage_snapshot.rb', line 89

def self.all(params = {}, options = {})
  list(params, options)
end

.list(params = {}, options = {}) ⇒ Object

Parameters:

cursor - string - Used for pagination.  Send a cursor value to resume an existing list from the point at which you left off.  Get a cursor from an existing list via the X-Files-Cursor-Next header.
per_page - int64 - Number of records to show per page.  (Max: 10,000, 1,000 or less is recommended).


80
81
82
83
84
85
86
87
# File 'lib/files.com/models/usage_snapshot.rb', line 80

def self.list(params = {}, options = {})
  raise InvalidParameterError.new("Bad parameter: cursor must be an String") if params.dig(:cursor) and !params.dig(:cursor).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: per_page must be an Integer") if params.dig(:per_page) and !params.dig(:per_page).is_a?(Integer)

  List.new(UsageSnapshot, params) do
    Api.send_request("/usage_snapshots", :get, params, options)
  end
end

Instance Method Details

#created_atObject

date-time - Site usage report created at date/time



28
29
30
# File 'lib/files.com/models/usage_snapshot.rb', line 28

def created_at
  @attributes[:created_at]
end

#current_storageObject

double - Current site usage as of report



33
34
35
# File 'lib/files.com/models/usage_snapshot.rb', line 33

def current_storage
  @attributes[:current_storage]
end

#deleted_files_counted_in_minimumObject

double - Usage for files that are deleted but uploaded within last 30 days



68
69
70
# File 'lib/files.com/models/usage_snapshot.rb', line 68

def deleted_files_counted_in_minimum
  @attributes[:deleted_files_counted_in_minimum]
end

#deleted_files_storageObject

double - Usage for files that are deleted but retained as backups



73
74
75
# File 'lib/files.com/models/usage_snapshot.rb', line 73

def deleted_files_storage
  @attributes[:deleted_files_storage]
end

#end_atObject

date-time - Site usage report end date/time



23
24
25
# File 'lib/files.com/models/usage_snapshot.rb', line 23

def end_at
  @attributes[:end_at]
end

#high_water_storageObject

double - Site usage report highest usage in time period



38
39
40
# File 'lib/files.com/models/usage_snapshot.rb', line 38

def high_water_storage
  @attributes[:high_water_storage]
end

#idObject

int64 - Site usage ID



13
14
15
# File 'lib/files.com/models/usage_snapshot.rb', line 13

def id
  @attributes[:id]
end

#root_storageObject

double - Usage for root folder



63
64
65
# File 'lib/files.com/models/usage_snapshot.rb', line 63

def root_storage
  @attributes[:root_storage]
end

#start_atObject

date-time - Site usage report start date/time



18
19
20
# File 'lib/files.com/models/usage_snapshot.rb', line 18

def start_at
  @attributes[:start_at]
end

#total_downloadsObject

int64 - Number of downloads in report time period



43
44
45
# File 'lib/files.com/models/usage_snapshot.rb', line 43

def total_downloads
  @attributes[:total_downloads]
end

#total_uploadsObject

int64 - Number of uploads in time period



48
49
50
# File 'lib/files.com/models/usage_snapshot.rb', line 48

def total_uploads
  @attributes[:total_uploads]
end

#updated_atObject

date-time - The last time this site usage report was updated



53
54
55
# File 'lib/files.com/models/usage_snapshot.rb', line 53

def updated_at
  @attributes[:updated_at]
end

#usage_by_top_level_dirObject

object - A map of root folders to their total usage



58
59
60
# File 'lib/files.com/models/usage_snapshot.rb', line 58

def usage_by_top_level_dir
  @attributes[:usage_by_top_level_dir]
end