Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for InvalidRequestParameter (0.2 sec)

  1. internal/s3select/errors.go

    	return &s3Error{
    		code:       "InvalidRequestParameter",
    		message:    "The value of a parameter in SelectRequest element is invalid. Check the service API documentation and try again.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errInvalidScanRangeParameter(err error) *s3Error {
    	return &s3Error{
    		code:       "InvalidRequestParameter",
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Mar 14 16:48:36 GMT 2022
    - 4.3K bytes
    - Viewed (0)
  2. cmd/api-errors.go

    		Description:    "The QuoteFields is invalid. Only ALWAYS and ASNEEDED are supported.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidRequestParameter: {
    		Code:           "InvalidRequestParameter",
    		Description:    "The value of a parameter in SelectRequest element is invalid. Check the service API documentation and try again.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidDataType: {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 90.6K bytes
    - Viewed (6)
Back to top