Class ExecutePolicyWithInputRequest


  • public class ExecutePolicyWithInputRequest
    extends java.lang.Object
    • Constructor Detail

      • ExecutePolicyWithInputRequest

        public ExecutePolicyWithInputRequest​(java.lang.String path,
                                             java.util.Optional<? extends GzipContentEncoding> contentEncoding,
                                             java.util.Optional<? extends GzipAcceptEncoding> acceptEncoding,
                                             java.util.Optional<java.lang.Boolean> pretty,
                                             java.util.Optional<java.lang.Boolean> provenance,
                                             java.util.Optional<? extends Explain> explain,
                                             java.util.Optional<java.lang.Boolean> metrics,
                                             java.util.Optional<java.lang.Boolean> instrument,
                                             java.util.Optional<java.lang.Boolean> strictBuiltinErrors,
                                             ExecutePolicyWithInputRequestBody requestBody)
    • Method Detail

      • path

        public java.lang.String path()
        The path separator is used to access values inside object and array documents. If the path indexes into an array, the server will attempt to convert the array index to an integer. If the path element cannot be converted to an integer, the server will respond with 404.
      • contentEncoding

        public java.util.Optional<GzipContentEncoding> contentEncoding()
        Indicates that the request body is gzip encoded
      • acceptEncoding

        public java.util.Optional<GzipAcceptEncoding> acceptEncoding()
        Indicates the server should respond with a gzip encoded body. The server will send the compressed response only if its length is above `server.encoding.gzip.min_length` value. See the configuration section
      • pretty

        public java.util.Optional<java.lang.Boolean> pretty()
        If parameter is `true`, response will formatted for humans.
      • provenance

        public java.util.Optional<java.lang.Boolean> provenance()
        If parameter is true, response will include build/version info in addition to the result.
      • explain

        public java.util.Optional<Explain> explain()
        Return query explanation in addition to result.
      • metrics

        public java.util.Optional<java.lang.Boolean> metrics()
        Return query performance metrics in addition to result.
      • instrument

        public java.util.Optional<java.lang.Boolean> instrument()
        Instrument query evaluation and return a superset of performance metrics in addition to result.
      • strictBuiltinErrors

        public java.util.Optional<java.lang.Boolean> strictBuiltinErrors()
        Treat built-in function call errors as fatal and return an error immediately.
      • withPath

        public ExecutePolicyWithInputRequest withPath​(java.lang.String path)
        The path separator is used to access values inside object and array documents. If the path indexes into an array, the server will attempt to convert the array index to an integer. If the path element cannot be converted to an integer, the server will respond with 404.
      • withAcceptEncoding

        public ExecutePolicyWithInputRequest withAcceptEncoding​(GzipAcceptEncoding acceptEncoding)
        Indicates the server should respond with a gzip encoded body. The server will send the compressed response only if its length is above `server.encoding.gzip.min_length` value. See the configuration section
      • withAcceptEncoding

        public ExecutePolicyWithInputRequest withAcceptEncoding​(java.util.Optional<? extends GzipAcceptEncoding> acceptEncoding)
        Indicates the server should respond with a gzip encoded body. The server will send the compressed response only if its length is above `server.encoding.gzip.min_length` value. See the configuration section
      • withPretty

        public ExecutePolicyWithInputRequest withPretty​(java.util.Optional<java.lang.Boolean> pretty)
        If parameter is `true`, response will formatted for humans.
      • withProvenance

        public ExecutePolicyWithInputRequest withProvenance​(boolean provenance)
        If parameter is true, response will include build/version info in addition to the result.
      • withProvenance

        public ExecutePolicyWithInputRequest withProvenance​(java.util.Optional<java.lang.Boolean> provenance)
        If parameter is true, response will include build/version info in addition to the result.
      • withMetrics

        public ExecutePolicyWithInputRequest withMetrics​(java.util.Optional<java.lang.Boolean> metrics)
        Return query performance metrics in addition to result.
      • withInstrument

        public ExecutePolicyWithInputRequest withInstrument​(boolean instrument)
        Instrument query evaluation and return a superset of performance metrics in addition to result.
      • withInstrument

        public ExecutePolicyWithInputRequest withInstrument​(java.util.Optional<java.lang.Boolean> instrument)
        Instrument query evaluation and return a superset of performance metrics in addition to result.
      • withStrictBuiltinErrors

        public ExecutePolicyWithInputRequest withStrictBuiltinErrors​(boolean strictBuiltinErrors)
        Treat built-in function call errors as fatal and return an error immediately.
      • withStrictBuiltinErrors

        public ExecutePolicyWithInputRequest withStrictBuiltinErrors​(java.util.Optional<java.lang.Boolean> strictBuiltinErrors)
        Treat built-in function call errors as fatal and return an error immediately.
      • equals

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object