Documentation ¶
Overview ¶
Package gcs provided support for Google Cloud Storage (https://cloud.google.com/storage/)
Code generated by go generate via internal/cmd/service; DO NOT EDIT.
Index ¶
- Constants
- func New(pairs ...typ.Pair) (typ.Servicer, typ.Storager, error)
- func NewServicer(pairs ...typ.Pair) (typ.Servicer, error)
- func NewStorager(pairs ...typ.Pair) (typ.Storager, error)
- func WithDefaultServicePairs(v DefaultServicePairs) Pair
- func WithDefaultStoragePairs(v DefaultStoragePairs) Pair
- func WithEncryptionKey(v []byte) Pair
- func WithProjectID(v string) Pair
- func WithStorageClass(v string) Pair
- type DefaultServicePairs
- type DefaultStoragePairs
- type ObjectMetadata
- type Service
- func (s *Service) Create(name string, pairs ...Pair) (store Storager, err error)
- func (s *Service) CreateWithContext(ctx context.Context, name string, pairs ...Pair) (store Storager, err error)
- func (s *Service) Delete(name string, pairs ...Pair) (err error)
- func (s *Service) DeleteWithContext(ctx context.Context, name string, pairs ...Pair) (err error)
- func (s *Service) Get(name string, pairs ...Pair) (store Storager, err error)
- func (s *Service) GetWithContext(ctx context.Context, name string, pairs ...Pair) (store Storager, err error)
- func (s *Service) List(pairs ...Pair) (sti *StoragerIterator, err error)
- func (s *Service) ListWithContext(ctx context.Context, pairs ...Pair) (sti *StoragerIterator, err error)
- func (s *Service) String() string
- type Storage
- func (s *Storage) Create(path string, pairs ...Pair) (o *Object)
- func (s *Storage) Delete(path string, pairs ...Pair) (err error)
- func (s *Storage) DeleteWithContext(ctx context.Context, path string, pairs ...Pair) (err error)
- func (s *Storage) List(path string, pairs ...Pair) (oi *ObjectIterator, err error)
- func (s *Storage) ListWithContext(ctx context.Context, path string, pairs ...Pair) (oi *ObjectIterator, err error)
- func (s *Storage) Metadata(pairs ...Pair) (meta *StorageMeta, err error)
- func (s *Storage) MetadataWithContext(ctx context.Context, pairs ...Pair) (meta *StorageMeta, err error)
- func (s *Storage) Read(path string, w io.Writer, pairs ...Pair) (n int64, err error)
- func (s *Storage) ReadWithContext(ctx context.Context, path string, w io.Writer, pairs ...Pair) (n int64, err error)
- func (s *Storage) Stat(path string, pairs ...Pair) (o *Object, err error)
- func (s *Storage) StatWithContext(ctx context.Context, path string, pairs ...Pair) (o *Object, err error)
- func (s *Storage) String() string
- func (s *Storage) Write(path string, r io.Reader, size int64, pairs ...Pair) (n int64, err error)
- func (s *Storage) WriteWithContext(ctx context.Context, path string, r io.Reader, size int64, pairs ...Pair) (n int64, err error)
Constants ¶
const ( StorageClassStandard = "STANDARD" StorageClassNearLine = "NEARLINE" StorageClassColdLine = "COLDLINE" StorageClassArchive = "ARCHIVE" )
All available storage classes are listed here.
const Type = "gcs"
Type is the type for gcs
Variables ¶
This section is empty.
Functions ¶
func NewServicer ¶
NewServicer will create Servicer only.
func NewStorager ¶
NewStorager will create Storager only.
func WithDefaultServicePairs ¶
func WithDefaultServicePairs(v DefaultServicePairs) Pair
WithDefaultServicePairs will apply default_service_pairs value to Options DefaultServicePairs set default pairs for service actions
func WithDefaultStoragePairs ¶
func WithDefaultStoragePairs(v DefaultStoragePairs) Pair
WithDefaultStoragePairs will apply default_storage_pairs value to Options DefaultStoragePairs set default pairs for storager actions
func WithEncryptionKey ¶
func WithEncryptionKey(v []byte) Pair
WithEncryptionKey will apply encryption_key value to Options EncryptionKey is the customer's 32-byte AES-256 key
func WithProjectID ¶
func WithProjectID(v string) Pair
WithProjectID will apply project_id value to Options ProjectID
func WithStorageClass ¶
func WithStorageClass(v string) Pair
WithStorageClass will apply storage_class value to Options StorageClass
Types ¶
type DefaultServicePairs ¶
type DefaultServicePairs struct { Create []Pair Delete []Pair Get []Pair List []Pair }
DefaultServicePairs is default pairs for specific action
type DefaultStoragePairs ¶
type DefaultStoragePairs struct { Create []Pair Delete []Pair List []Pair Metadata []Pair Read []Pair Stat []Pair Write []Pair }
DefaultStoragePairs is default pairs for specific action
type ObjectMetadata ¶
type ObjectMetadata struct { // EncryptionKeySha256 EncryptionKeySha256 string // StorageClass StorageClass string }
ObjectMetadata stores service metadata for object.
func GetObjectMetadata ¶
func GetObjectMetadata(o *Object) ObjectMetadata
GetObjectMetadata will get ObjectMetadata from Object.
- This function should not be called by service implementer. - The returning ObjectMetadata is read only and should not be modified.
type Service ¶
type Service struct { typ.UnimplementedServicer // contains filtered or unexported fields }
Service is the gcs config.
func (*Service) Create ¶
Create will create a new storager instance.
This function will create a context by default.
func (*Service) CreateWithContext ¶
func (s *Service) CreateWithContext(ctx context.Context, name string, pairs ...Pair) (store Storager, err error)
CreateWithContext will create a new storager instance.
func (*Service) Delete ¶
Delete will delete a storager instance.
This function will create a context by default.
func (*Service) DeleteWithContext ¶
DeleteWithContext will delete a storager instance.
func (*Service) Get ¶
Get will get a valid storager instance for service.
This function will create a context by default.
func (*Service) GetWithContext ¶
func (s *Service) GetWithContext(ctx context.Context, name string, pairs ...Pair) (store Storager, err error)
GetWithContext will get a valid storager instance for service.
func (*Service) List ¶
List will list all storager instances under this service.
This function will create a context by default.
type Storage ¶
type Storage struct { typ.UnimplementedStorager // contains filtered or unexported fields }
Storage is the gcs service client.
func (*Storage) Create ¶
Create will create a new object without any api call.
This function will create a context by default.
func (*Storage) Delete ¶
Delete will delete an Object from service.
This function will create a context by default.
func (*Storage) DeleteWithContext ¶
DeleteWithContext will delete an Object from service.
func (*Storage) List ¶
List will return list a specific path.
This function will create a context by default.
func (*Storage) ListWithContext ¶
func (s *Storage) ListWithContext(ctx context.Context, path string, pairs ...Pair) (oi *ObjectIterator, err error)
ListWithContext will return list a specific path.
func (*Storage) Metadata ¶
Metadata will return current storager metadata.
This function will create a context by default.
func (*Storage) MetadataWithContext ¶
func (s *Storage) MetadataWithContext(ctx context.Context, pairs ...Pair) (meta *StorageMeta, err error)
MetadataWithContext will return current storager metadata.
func (*Storage) Read ¶
Read will read the file's data.
This function will create a context by default.
func (*Storage) ReadWithContext ¶
func (s *Storage) ReadWithContext(ctx context.Context, path string, w io.Writer, pairs ...Pair) (n int64, err error)
ReadWithContext will read the file's data.
func (*Storage) Stat ¶
Stat will stat a path to get info of an object.
This function will create a context by default.
func (*Storage) StatWithContext ¶
func (s *Storage) StatWithContext(ctx context.Context, path string, pairs ...Pair) (o *Object, err error)
StatWithContext will stat a path to get info of an object.