GetStorageReport

public class GetStorageReport : Team.BaseDfbReport

Storage Report Result. Each of the items in the storage report is an array of values, one value per day. If there is no data for a day, then the value will be None.

  • Sum of the shared, unshared, and datastore usages, for each day.

    Declaration

    Swift

    public let totalUsage: [UInt64?]
  • Array of the combined size (bytes) of team members’ shared folders, for each day.

    Declaration

    Swift

    public let sharedUsage: [UInt64?]
  • Array of the combined size (bytes) of team members’ root namespaces, for each day.

    Declaration

    Swift

    public let unsharedUsage: [UInt64?]
  • Array of the number of shared folders owned by team members, for each day.

    Declaration

    Swift

    public let sharedFolders: [UInt64?]
  • Array of storage summaries of team members’ account sizes. Each storage summary is an array of key, value pairs, where each pair describes a storage bucket. The key indicates the upper bound of the bucket and the value is the number of users in that bucket. There is one such summary per day. If there is no data for a day, the storage summary will be empty.

    Declaration

    Swift

    public let memberStorageMap: [[Team.StorageBucket]]