2db115fa36
Bumps [github.com/minio/minio-go/v7](https://github.com/minio/minio-go) from 7.0.66 to 7.0.67. - [Release notes](https://github.com/minio/minio-go/releases) - [Commits](https://github.com/minio/minio-go/compare/v7.0.66...v7.0.67) --- updated-dependencies: - dependency-name: github.com/minio/minio-go/v7 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
---|---|---|
.. | ||
pkg | ||
.gitignore | ||
.golangci.yml | ||
api-bucket-encryption.go | ||
api-bucket-lifecycle.go | ||
api-bucket-notification.go | ||
api-bucket-policy.go | ||
api-bucket-replication.go | ||
api-bucket-tagging.go | ||
api-bucket-versioning.go | ||
api-compose-object.go | ||
api-copy-object.go | ||
api-datatypes.go | ||
api-error-response.go | ||
api-get-object-acl.go | ||
api-get-object-attributes.go | ||
api-get-object-file.go | ||
api-get-object.go | ||
api-get-options.go | ||
api-list.go | ||
api-object-legal-hold.go | ||
api-object-lock.go | ||
api-object-retention.go | ||
api-object-tagging.go | ||
api-presigned.go | ||
api-put-bucket.go | ||
api-put-object-common.go | ||
api-put-object-fan-out.go | ||
api-put-object-file-context.go | ||
api-put-object-multipart.go | ||
api-put-object-streaming.go | ||
api-put-object.go | ||
api-putobject-snowball.go | ||
api-remove.go | ||
api-restore.go | ||
api-s3-datatypes.go | ||
api-select.go | ||
api-stat.go | ||
api.go | ||
bucket-cache.go | ||
checksum.go | ||
CNAME | ||
code_of_conduct.md | ||
constants.go | ||
CONTRIBUTING.md | ||
core.go | ||
CREDITS | ||
functional_tests.go | ||
hook-reader.go | ||
LICENSE | ||
MAINTAINERS.md | ||
Makefile | ||
NOTICE | ||
post-policy.go | ||
README.md | ||
retry-continous.go | ||
retry.go | ||
s3-endpoints.go | ||
s3-error.go | ||
transport.go | ||
utils.go |
MinIO Go Client SDK for Amazon S3 Compatible Cloud Storage
The MinIO Go Client SDK provides straightforward APIs to access any Amazon S3 compatible object storage.
This Quickstart Guide covers how to install the MinIO client SDK, connect to MinIO, and create a sample file uploader. For a complete list of APIs and examples, see the godoc documentation or Go Client API Reference.
These examples presume a working Go development environment and the MinIO mc
command line tool.
Download from Github
From your project directory:
go get github.com/minio/minio-go/v7
Initialize a MinIO Client Object
The MinIO client requires the following parameters to connect to an Amazon S3 compatible object storage:
Parameter | Description |
---|---|
endpoint |
URL to object storage service. |
_minio.Options_ |
All the options such as credentials, custom transport etc. |
package main
import (
"log"
"github.com/minio/minio-go/v7"
"github.com/minio/minio-go/v7/pkg/credentials"
)
func main() {
endpoint := "play.min.io"
accessKeyID := "Q3AM3UQ867SPQQA43P2F"
secretAccessKey := "zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG"
useSSL := true
// Initialize minio client object.
minioClient, err := minio.New(endpoint, &minio.Options{
Creds: credentials.NewStaticV4(accessKeyID, secretAccessKey, ""),
Secure: useSSL,
})
if err != nil {
log.Fatalln(err)
}
log.Printf("%#v\n", minioClient) // minioClient is now set up
}
Example - File Uploader
This sample code connects to an object storage server, creates a bucket, and uploads a file to the bucket.
It uses the MinIO play
server, a public MinIO cluster located at https://play.min.io.
The play
server runs the latest stable version of MinIO and may be used for testing and development.
The access credentials shown in this example are open to the public and all data uploaded to play
should be considered public and non-protected.
FileUploader.go
This example does the following:
- Connects to the MinIO
play
server using the provided credentials. - Creates a bucket named
testbucket
. - Uploads a file named
testdata
from/tmp
. - Verifies the file was created using
mc ls
.
// FileUploader.go MinIO example
package main
import (
"context"
"log"
"github.com/minio/minio-go/v7"
"github.com/minio/minio-go/v7/pkg/credentials"
)
func main() {
ctx := context.Background()
endpoint := "play.min.io"
accessKeyID := "Q3AM3UQ867SPQQA43P2F"
secretAccessKey := "zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG"
useSSL := true
// Initialize minio client object.
minioClient, err := minio.New(endpoint, &minio.Options{
Creds: credentials.NewStaticV4(accessKeyID, secretAccessKey, ""),
Secure: useSSL,
})
if err != nil {
log.Fatalln(err)
}
// Make a new bucket called testbucket.
bucketName := "testbucket"
location := "us-east-1"
err = minioClient.MakeBucket(ctx, bucketName, minio.MakeBucketOptions{Region: location})
if err != nil {
// Check to see if we already own this bucket (which happens if you run this twice)
exists, errBucketExists := minioClient.BucketExists(ctx, bucketName)
if errBucketExists == nil && exists {
log.Printf("We already own %s\n", bucketName)
} else {
log.Fatalln(err)
}
} else {
log.Printf("Successfully created %s\n", bucketName)
}
// Upload the test file
// Change the value of filePath if the file is in another location
objectName := "testdata"
filePath := "/tmp/testdata"
contentType := "application/octet-stream"
// Upload the test file with FPutObject
info, err := minioClient.FPutObject(ctx, bucketName, objectName, filePath, minio.PutObjectOptions{ContentType: contentType})
if err != nil {
log.Fatalln(err)
}
log.Printf("Successfully uploaded %s of size %d\n", objectName, info.Size)
}
1. Create a test file containing data:
You can do this with dd
on Linux or macOS systems:
dd if=/dev/urandom of=/tmp/testdata bs=2048 count=10
or fsutil
on Windows:
fsutil file createnew "C:\Users\<username>\Desktop\sample.txt" 20480
2. Run FileUploader with the following commands:
go mod init example/FileUploader
go get github.com/minio/minio-go/v7
go get github.com/minio/minio-go/v7/pkg/credentials
go run FileUploader.go
The output resembles the following:
2023/11/01 14:27:55 Successfully created testbucket
2023/11/01 14:27:55 Successfully uploaded testdata of size 20480
3. Verify the Uploaded File With mc ls
:
mc ls play/testbucket
[2023-11-01 14:27:55 UTC] 20KiB STANDARD TestDataFile
API Reference
The full API Reference is available here.
API Reference : Bucket Operations
API Reference : Bucket policy Operations
API Reference : Bucket notification Operations
SetBucketNotification
GetBucketNotification
RemoveAllBucketNotification
ListenBucketNotification
(MinIO Extension)ListenNotification
(MinIO Extension)
API Reference : File Object Operations
API Reference : Object Operations
GetObject
PutObject
PutObjectStreaming
StatObject
CopyObject
RemoveObject
RemoveObjects
RemoveIncompleteUpload
SelectObjectContent
API Reference : Presigned Operations
API Reference : Client custom settings
Full Examples
Full Examples : Bucket Operations
- makebucket.go
- listbuckets.go
- bucketexists.go
- removebucket.go
- listobjects.go
- listobjectsV2.go
- listincompleteuploads.go
Full Examples : Bucket policy Operations
Full Examples : Bucket lifecycle Operations
Full Examples : Bucket encryption Operations
Full Examples : Bucket replication Operations
Full Examples : Bucket notification Operations
- setbucketnotification.go
- getbucketnotification.go
- removeallbucketnotification.go
- listenbucketnotification.go (MinIO Extension)
- listennotification.go (MinIO Extension)
Full Examples : File Object Operations
Full Examples : Object Operations
- putobject.go
- getobject.go
- statobject.go
- copyobject.go
- removeobject.go
- removeincompleteupload.go
- removeobjects.go
Full Examples : Encrypted Object Operations
Full Examples : Presigned Operations
Explore Further
Contribute
License
This SDK is distributed under the Apache License, Version 2.0, see LICENSE and NOTICE for more information.