You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*`end_at` (date-time): Usage snapshot end date/time
34
34
*`high_water_user_count` (int64): Highest user count number in time period
35
-
*`current_storage` (double): Current total Storage Usage GB as of end date (not necessarily high water mark, which is used for billing)
36
-
*`high_water_storage` (double): Highest Storage Usage GB recorded in time period (used for billing)
37
-
*`root_storage` (double): Storage Usage for root folder as of end date (not necessarily high water mark, which is used for billing)
38
-
*`deleted_files_counted_in_minimum` (double): Storage Usage for files that are deleted but uploaded within last 30 days as of end date (not necessarily high water mark, which is used for billing)
39
-
*`deleted_files_storage` (double): Storage Usage for files that are deleted but retained as backups as of end date (not necessarily high water mark, which is used for billing)
40
-
*`total_billable_usage` (double): Storage + Transfer Usage - Total Billable amount
41
-
*`total_billable_transfer_usage` (double): Transfer usage for period - Total Billable amount
42
-
*`bytes_sent` (double): Transfer Usage for period - Outbound GB from Files Native Storage
43
-
*`sync_bytes_received` (double): Transfer Usage for period - Inbound GB to Remote Servers (Sync/Mount)
44
-
*`sync_bytes_sent` (double): Transfer Usage for period - Outbound GB from Remote Servers (Sync/Mount)
35
+
*`current_storage` (int64): Current total Storage Usage GB as of end date (not necessarily high water mark, which is used for billing)
36
+
*`high_water_storage` (int64): Highest Storage Usage GB recorded in time period (used for billing)
37
+
*`root_storage` (int64): Storage Usage for root folder as of end date (not necessarily high water mark, which is used for billing)
38
+
*`deleted_files_counted_in_minimum` (int64): Storage Usage for files that are deleted but uploaded within last 30 days as of end date (not necessarily high water mark, which is used for billing)
39
+
*`deleted_files_storage` (int64): Storage Usage for files that are deleted but retained as backups as of end date (not necessarily high water mark, which is used for billing)
40
+
*`total_billable_usage` (int64): Storage + Transfer Usage - Total Billable amount
41
+
*`total_billable_transfer_usage` (int64): Transfer usage for period - Total Billable amount
42
+
*`bytes_sent` (int64): Transfer Usage for period - Outbound GB from Files Native Storage
43
+
*`sync_bytes_received` (int64): Transfer Usage for period - Inbound GB to Remote Servers (Sync/Mount)
44
+
*`sync_bytes_sent` (int64): Transfer Usage for period - Outbound GB from Remote Servers (Sync/Mount)
45
45
*`usage_by_top_level_dir` (array(object)): Storage Usage - map of root folders to their usage as of end date (not necessarily high water mark, which is used for billing)
// double # Storage Usage for files that are deleted but uploaded within last 30 days as of end date (not necessarily high water mark, which is used for billing)
63
+
// int64 # Storage Usage for files that are deleted but uploaded within last 30 days as of end date (not necessarily high water mark, which is used for billing)
// double # Storage Usage for files that are deleted but retained as backups as of end date (not necessarily high water mark, which is used for billing)
67
+
// int64 # Storage Usage for files that are deleted but retained as backups as of end date (not necessarily high water mark, which is used for billing)
// double # Storage Usage for root folder as of end date (not necessarily high water mark, which is used for billing)
49
+
// int64 # Storage Usage for root folder as of end date (not necessarily high water mark, which is used for billing)
50
50
getRootStorage=()=>this.attributes.root_storage
51
51
52
-
// double # Storage Usage for files that are deleted but uploaded within last 30 days as of end date (not necessarily high water mark, which is used for billing)
52
+
// int64 # Storage Usage for files that are deleted but uploaded within last 30 days as of end date (not necessarily high water mark, which is used for billing)
// double # Storage Usage for files that are deleted but retained as backups as of end date (not necessarily high water mark, which is used for billing)
55
+
// int64 # Storage Usage for files that are deleted but retained as backups as of end date (not necessarily high water mark, which is used for billing)
0 commit comments