Microsoft 365 B5 サブスクリプションがあります。統合監査ログを照会する PowerShell スクリプトがあります。 サーバー側のページングが原因で、クエリによって結果の最初のページのみが返されることがわかりました。すべての結果を取得できるようにする必要があります。結果でどのプロパティをクエリする必要がありますか?
正解:A
When querying the Microsoft 365 Unified Audit Log (via Graph API or PowerShell), results are paginated for performance. The property @odata.nextLink provides the URL for the next page of results. You must keep querying this link until it no longer appears to retrieve all entries. * @odata.deltaLink is used for incremental changes (next query after initial). * @odata.context describes the response metadata. * @odata.count indicates record count only.Thus, to retrieve all paged results, use @odata.nextLink. # answer: A. @odata.nextLink