Azure Cosmos DB for NoSQL アカウントを持っている。 変更フィードは、invoice という名前のコンテナーで有効になります。 変更フィードにトリガーを持つ Azure 関数を作成します。 Azure 関数は何を受信しますか?
正解:D
According to the Azure Cosmos DB documentation12, the change feed is a persistent record of changes to a container in the order they occur. The change feed outputs the sorted list of documents that were changed in the order in which they were modified. The Azure function that has a trigger on the change feed receives all the properties of the updated items2. The change feed does not include the original items or only the changed properties. The change feed also includes some system-defined properties such as _ts (the last modified timestamp) and _lsn (the logical sequence number)3. Therefore, the correct answer is: A: all the properties of the updated items