UNPKG

@pnp/cli-microsoft365

Version:

Manage Microsoft 365 and SharePoint Framework projects on any platform

16 lines 638 B
import PeriodBasedReport, { periodBasedReportOptions } from '../../../base/PeriodBasedReport.js'; import commands from '../../commands.js'; export const options = periodBasedReportOptions; class OutlookReportMailboxUsageStorageCommand extends PeriodBasedReport { get name() { return commands.REPORT_MAILBOXUSAGESTORAGE; } get usageEndpoint() { return 'getMailboxUsageStorage'; } get description() { return 'Gets the amount of mailbox storage used in your organization'; } } export default new OutlookReportMailboxUsageStorageCommand(); //# sourceMappingURL=report-mailboxusagestorage.js.map