diff options
Diffstat (limited to 'vendor/github.com/minio/minio-go/v7/pkg/notification')
| -rw-r--r-- | vendor/github.com/minio/minio-go/v7/pkg/notification/info.go | 6 | ||||
| -rw-r--r-- | vendor/github.com/minio/minio-go/v7/pkg/notification/notification.go | 3 | 
2 files changed, 5 insertions, 4 deletions
diff --git a/vendor/github.com/minio/minio-go/v7/pkg/notification/info.go b/vendor/github.com/minio/minio-go/v7/pkg/notification/info.go index d0a471638..126661a9e 100644 --- a/vendor/github.com/minio/minio-go/v7/pkg/notification/info.go +++ b/vendor/github.com/minio/minio-go/v7/pkg/notification/info.go @@ -22,14 +22,14 @@ type identity struct {  	PrincipalID string `json:"principalId"`  } -//  event bucket metadata. +// event bucket metadata.  type bucketMeta struct {  	Name          string   `json:"name"`  	OwnerIdentity identity `json:"ownerIdentity"`  	ARN           string   `json:"arn"`  } -//  event object metadata. +// event object metadata.  type objectMeta struct {  	Key          string            `json:"key"`  	Size         int64             `json:"size,omitempty"` @@ -40,7 +40,7 @@ type objectMeta struct {  	Sequencer    string            `json:"sequencer"`  } -//  event server specific metadata. +// event server specific metadata.  type eventMeta struct {  	SchemaVersion   string     `json:"s3SchemaVersion"`  	ConfigurationID string     `json:"configurationId"` diff --git a/vendor/github.com/minio/minio-go/v7/pkg/notification/notification.go b/vendor/github.com/minio/minio-go/v7/pkg/notification/notification.go index 75a1f6096..97d33a4ec 100644 --- a/vendor/github.com/minio/minio-go/v7/pkg/notification/notification.go +++ b/vendor/github.com/minio/minio-go/v7/pkg/notification/notification.go @@ -29,7 +29,8 @@ import (  type EventType string  // The role of all event types are described in : -// 	http://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html#notification-how-to-event-types-and-destinations +// +//	http://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html#notification-how-to-event-types-and-destinations  const (  	ObjectCreatedAll                     EventType = "s3:ObjectCreated:*"  	ObjectCreatedPut                               = "s3:ObjectCreated:Put"  | 
