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
/ The object returned from the CloudScript function, if any
1701
1701
*/
1702
1702
FunctionResult?: any;
1703
+
/**
1704
+
/ Flag indicating if the FunctionResult was too large and was subsequently dropped from this event
1705
+
*/
1706
+
FunctionResultTooLarge?: boolean;
1703
1707
/**
1704
1708
/ Entries logged during the function execution. These include both entries logged in the function code using log.info() and log.error() and error entries for API and HTTP request failures.
1705
1709
*/
1706
1710
Logs?: LogStatement[];
1711
+
/**
1712
+
/ Flag indicating if the logs were too large and were subsequently dropped from this event
1713
+
*/
1714
+
LogsTooLarge?: boolean;
1707
1715
ExecutionTimeSeconds: number;
1708
1716
/**
1709
1717
/ Processor time consumed while executing the function. This does not include time spent waiting on API calls or HTTP requests.
/ Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character.
2770
+
/ Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null.
/ Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character.
4295
+
/ Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null.
/ Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character.
4329
+
/ Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null.
/ The object returned from the CloudScript function, if any
1764
1764
*/
1765
1765
FunctionResult?: any;
1766
+
/**
1767
+
/ Flag indicating if the FunctionResult was too large and was subsequently dropped from this event
1768
+
*/
1769
+
FunctionResultTooLarge?: boolean;
1766
1770
/**
1767
1771
/ Entries logged during the function execution. These include both entries logged in the function code using log.info() and log.error() and error entries for API and HTTP request failures.
1768
1772
*/
1769
1773
Logs?: LogStatement[];
1774
+
/**
1775
+
/ Flag indicating if the logs were too large and were subsequently dropped from this event
1776
+
*/
1777
+
LogsTooLarge?: boolean;
1770
1778
ExecutionTimeSeconds: number;
1771
1779
/**
1772
1780
/ Processor time consumed while executing the function. This does not include time spent waiting on API calls or HTTP requests.
/ Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character.
5695
+
/ Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null.
/ Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character.
5769
+
/ Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null.
/ Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character.
5795
+
/ Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null.
0 commit comments