mirror of
https://github.com/minio/minio.git
synced 2025-11-07 04:42:56 -05:00
Rename more
This commit is contained in:
@@ -20,14 +20,14 @@ import "io"
|
||||
|
||||
// Collection of Donut specification interfaces
|
||||
|
||||
// Interface is a collection of object storage and management interface
|
||||
// Interface is a collection of cloud storage and management interface
|
||||
type Interface interface {
|
||||
ObjectStorage
|
||||
CloudStorage
|
||||
Management
|
||||
}
|
||||
|
||||
// ObjectStorage is a donut object storage interface
|
||||
type ObjectStorage interface {
|
||||
// CloudStorage is a donut cloud storage interface
|
||||
type CloudStorage interface {
|
||||
// Storage service operations
|
||||
GetBucketMetadata(bucket string, signature *Signature) (BucketMetadata, error)
|
||||
SetBucketMetadata(bucket string, metadata map[string]string, signature *Signature) error
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Mini Object Storage, (C) 2014 Minio, Inc.
|
||||
* Minio Cloud Storage, (C) 2014 Minio, Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -53,7 +53,7 @@ type ListObjectsResponse struct {
|
||||
|
||||
// When response is truncated (the IsTruncated element value in the response
|
||||
// is true), you can use the key name in this field as marker in the subsequent
|
||||
// request to get next set of objects. Object storage lists objects in alphabetical
|
||||
// request to get next set of objects. Server lists objects in alphabetical
|
||||
// order Note: This element is returned only if you have delimiter request parameter
|
||||
// specified. If response does not include the NextMaker and it is truncated,
|
||||
// you can use the value of the last Key in the response as the marker in the
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Minimal object storage library (C) 2015 Minio, Inc.
|
||||
* Minio Cloud Storage, (C) 2014 Minio, Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
Reference in New Issue
Block a user