Class PostMetricData.Request

    • Field Detail

      • BATCH_ATOMICITY_ATOMIC

        public static final String BATCH_ATOMICITY_ATOMIC
        Atomic batch - either all succeed, or all fail.
        See Also:
        Constant Field Values
      • BATCH_ATOMICITY_NON_ATOMIC

        public static final String BATCH_ATOMICITY_NON_ATOMIC
        Non atomic batch - some may succeed, some may fail.
        See Also:
        Constant Field Values
    • Method Detail

      • batchAtomicity

        public PostMetricData.Request batchAtomicity​(String atomicity)
        Batch atomicity behavior. Requires either partial or full pass of input validation for metric objects in PostMetricData requests. The default value of NON_ATOMIC requires a partial pass: at least one metric object in the request must pass input validation, and any objects that failed validation are identified in the returned summary, along with their error messages. A value of ATOMIC requires a full pass: all metric objects in the request must pass input validation.

        Defaults to "NON_ATOMIC".

        Parameters:
        atomicity - atomicity to use
        Returns:
        updated request
        See Also:
        BATCH_ATOMICITY_ATOMIC, BATCH_ATOMICITY_NON_ATOMIC