Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NoSuchLifecycleConfiguration (0.22 sec)

  1. cmd/bucket-lifecycle-handlers_test.go

    			expectedRespStatus: http.StatusNotFound,
    			lifecycleResponse:  []byte(``),
    			errorResponse: APIErrorResponse{
    				Resource: SlashSeparator + bucketName + SlashSeparator,
    				Code:     "NoSuchLifecycleConfiguration",
    				Message:  "The lifecycle configuration does not exist",
    			},
    			shouldPass: false,
    		},
    	}
    
    	testBucketLifecycle(obj, instanceType, bucketName, apiRouter, t, testCases)
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Jun 13 20:52:33 GMT 2023
    - 11.2K bytes
    - Viewed (0)
  2. cmd/utils.go

    	case "BucketAlreadyOwnedByYou":
    		err = BucketAlreadyOwnedByYou{}
    	case "BucketNotEmpty":
    		err = BucketNotEmpty{}
    	case "NoSuchBucketPolicy":
    		err = BucketPolicyNotFound{}
    	case "NoSuchLifecycleConfiguration":
    		err = BucketLifecycleNotFound{}
    	case "InvalidBucketName":
    		err = BucketNameInvalid{Bucket: bucket}
    	case "InvalidPart":
    		err = InvalidPart{}
    	case "NoSuchBucket":
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 15:18:21 GMT 2024
    - 31.4K bytes
    - Viewed (0)
  3. cmd/api-errors.go

    		Description:    "The bucket lifecycle configuration does not exist",
    		HTTPStatusCode: http.StatusNotFound,
    	},
    	ErrNoSuchLifecycleConfiguration: {
    		Code:           "NoSuchLifecycleConfiguration",
    		Description:    "The lifecycle configuration does not exist",
    		HTTPStatusCode: http.StatusNotFound,
    	},
    	ErrInvalidLifecycleWithObjectLock: {
    		Code:           "InvalidLifecycleWithObjectLock",
    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