Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 13 for list_objects_v2 (0.07 seconds)

  1. docs/extensions/s3zip/README.md

    [Using boto3](https://github.com/minio/minio/blob/master/docs/extensions/s3zip/examples/boto3/main.py)
    
    ## Requirements and limits
    
    - ListObjectsV2 can only list the most recent ZIP archive version of your object, applicable only for versioned buckets.
    - ListObjectsV2 API calls must be used to list zip file content.
    - Range requests for GetObject/HeadObject for individual files from zip is not supported.
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Wed Apr 10 16:28:27 GMT 2024
    - 3K bytes
    - Click Count (0)
  2. cmd/bucket-listobjects-handlers.go

    // MinIO continues to support ListObjectsV1 for supporting legacy tools.
    func (api objectAPIHandlers) ListObjectsV2Handler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "ListObjectsV2")
    	api.listObjectsV2Handler(ctx, w, r, false)
    }
    
    // listObjectsV2Handler performs listing either with or without extra metadata.
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 11.6K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/storage/S3StorageClient.java

                    requestBuilder.prefix(normalizedPrefix);
                }
    
                final ListObjectsV2Response response = s3Client.listObjectsV2(requestBuilder.build());
    
                // Process common prefixes (directories)
                for (final CommonPrefix commonPrefix : response.commonPrefixes()) {
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Dec 13 02:21:17 GMT 2025
    - 10.9K bytes
    - Click Count (0)
  4. cmd/warm-backend-s3.go

    	}
    	err := s3.client.RemoveObject(ctx, s3.Bucket, s3.getDest(object), ropts)
    	return s3.ToObjectError(err, object)
    }
    
    func (s3 *warmBackendS3) InUse(ctx context.Context) (bool, error) {
    	result, err := s3.core.ListObjectsV2(s3.Bucket, s3.Prefix, "", "", slashSeparator, 1)
    	if err != nil {
    		return false, s3.ToObjectError(err)
    	}
    	return len(result.CommonPrefixes) > 0 || len(result.Contents) > 0, nil
    }
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Jun 08 16:13:30 GMT 2025
    - 5.8K bytes
    - Click Count (0)
  5. cmd/object-api-interface.go

    	DeleteBucket(ctx context.Context, bucket string, opts DeleteBucketOptions) error
    	ListObjects(ctx context.Context, bucket, prefix, marker, delimiter string, maxKeys int) (result ListObjectsInfo, err error)
    	ListObjectsV2(ctx context.Context, bucket, prefix, continuationToken, delimiter string, maxKeys int, fetchOwner bool, startAfter string) (result ListObjectsV2Info, err error)
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 17.5K bytes
    - Click Count (0)
  6. cmd/api-router.go

    			Queries("uploads", "")
    		// ListObjectsV2M
    		router.Methods(http.MethodGet).
    			HandlerFunc(s3APIMiddleware(api.ListObjectsV2MHandler)).
    			Queries("list-type", "2", "metadata", "true")
    		// ListObjectsV2
    		router.Methods(http.MethodGet).
    			HandlerFunc(s3APIMiddleware(api.ListObjectsV2Handler)).
    			Queries("list-type", "2")
    		// ListObjectVersions
    		router.Methods(http.MethodGet).
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Oct 24 04:05:19 GMT 2025
    - 23.3K bytes
    - Click Count (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/s3/S3Client.java

                            ListObjectsV2Request.builder().bucket(bucketName).prefix(path).delimiter("/").build();
    
                    final ListObjectsV2Response listResponse = awsS3Client.listObjectsV2(listRequest);
    
                    // Add objects (excluding the prefix itself if it matches exactly)
                    for (final S3Object s3Object : listResponse.contents()) {
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Thu Dec 11 08:38:29 GMT 2025
    - 21.4K bytes
    - Click Count (0)
  8. cmd/object_api_suite_test.go

    		}
    	}
    	{
    		ctx, cancel := context.WithTimeout(context.Background(), time.Second*5)
    		defer cancel()
    		token := ""
    		for ctx.Err() == nil {
    			result, err := obj.ListObjectsV2(ctx, "bucket", "testPrefix", token, "", 2, false, "")
    			if err != nil {
    				t.Fatalf("%s: <ERROR> %s", instanceType, err)
    			}
    			token = result.NextContinuationToken
    			if len(result.Objects) == 0 {
    				break
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 34.5K bytes
    - Click Count (0)
  9. cmd/metacache-entries.go

    	// An optimization request only an 'n' amount of versions from xl.meta
    	// to avoid resolving all versions to figure out the latest 'version'
    	// for ListObjects, ListObjectsV2
    	requestedVersions int
    
    	bucket string // Name of the bucket. Used for generating cached fileinfo.
    	strict bool   // Versions must match exactly, including all metadata.
    
    	// Reusable slice for resolution
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Thu Aug 08 15:29:58 GMT 2024
    - 24.1K bytes
    - Click Count (0)
  10. cmd/api-response.go

    		prefixItem := CommonPrefix{}
    		prefixItem.Prefix = s3EncodeName(prefix, encodingType)
    		prefixes = append(prefixes, prefixItem)
    	}
    	data.CommonPrefixes = prefixes
    	return data
    }
    
    // generates an ListObjectsV2 response for the said bucket with other enumerated options.
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Oct 24 04:05:19 GMT 2025
    - 35K bytes
    - Click Count (0)
Back to Top