Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for errUnauthorizedAccess (0.26 sec)

  1. cmd/apierrorcode_string.go

    	_ = x[ErrHealOverlappingPaths-223]
    	_ = x[ErrIncorrectContinuationToken-224]
    	_ = x[ErrEmptyRequestBody-225]
    	_ = x[ErrUnsupportedFunction-226]
    	_ = x[ErrInvalidExpressionType-227]
    	_ = x[ErrBusy-228]
    	_ = x[ErrUnauthorizedAccess-229]
    	_ = x[ErrExpressionTooLong-230]
    	_ = x[ErrIllegalSQLFunctionArgument-231]
    	_ = x[ErrInvalidKeyPath-232]
    	_ = x[ErrInvalidCompressionFormat-233]
    	_ = x[ErrInvalidFileHeaderInfo-234]
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 21.2K bytes
    - Viewed (0)
  2. internal/s3select/unused-errors.go

    func errBusy(err error) *s3Error {
    	return &s3Error{
    		code:       "Busy",
    		message:    "The service is unavailable. Please retry.",
    		statusCode: 503,
    		cause:      err,
    	}
    }
    
    func errUnauthorizedAccess(err error) *s3Error {
    	return &s3Error{
    		code:       "UnauthorizedAccess",
    		message:    "You are not authorized to perform this operation",
    		statusCode: 401,
    		cause:      err,
    	}
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Feb 20 08:16:35 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  3. cmd/api-errors.go

    	ErrHealAlreadyRunning
    	ErrHealOverlappingPaths
    	ErrIncorrectContinuationToken
    
    	// S3 Select Errors
    	ErrEmptyRequestBody
    	ErrUnsupportedFunction
    	ErrInvalidExpressionType
    	ErrBusy
    	ErrUnauthorizedAccess
    	ErrExpressionTooLong
    	ErrIllegalSQLFunctionArgument
    	ErrInvalidKeyPath
    	ErrInvalidCompressionFormat
    	ErrInvalidFileHeaderInfo
    	ErrInvalidJSONType
    	ErrInvalidQuoteFields
    	ErrInvalidRequestParameter
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 91.4K bytes
    - Viewed (7)
Back to top