pb

package
v0.1.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 11, 2020 License: Apache-2.0 Imports: 17 Imported by: 0

Documentation

Overview

Package pb is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

This section is empty.

Variables

View Source
var (
	EventType_name = map[int32]string{
		0: "ENTRY_ADDED",
		1: "ENTRY_DELETED",
		2: "ENTRY_UPDATED",
		3: "ENTRY_BACKUP_IN_PROGRESS",
		4: "ENTRY_BACKUP_READY",
		5: "ENTRY_RESTORE_IN_PROGRESS",
		6: "ENTRY_RESTORE_READY",
		7: "FOLDER_ADDED",
		8: "FOLDER_DELETED",
		9: "FOLDER_UPDATED",
	}
	EventType_value = map[string]int32{
		"ENTRY_ADDED":               0,
		"ENTRY_DELETED":             1,
		"ENTRY_UPDATED":             2,
		"ENTRY_BACKUP_IN_PROGRESS":  3,
		"ENTRY_BACKUP_READY":        4,
		"ENTRY_RESTORE_IN_PROGRESS": 5,
		"ENTRY_RESTORE_READY":       6,
		"FOLDER_ADDED":              7,
		"FOLDER_DELETED":            8,
		"FOLDER_UPDATED":            9,
	}
)

Enum value maps for EventType.

View Source
var (
	KeyBackupType_name = map[int32]string{
		0: "PASSWORD",
		1: "GOOGLE",
		2: "TWITTER",
		3: "EMAIL",
	}
	KeyBackupType_value = map[string]int32{
		"PASSWORD": 0,
		"GOOGLE":   1,
		"TWITTER":  2,
		"EMAIL":    3,
	}
)

Enum value maps for KeyBackupType.

View Source
var (
	FuseState_name = map[int32]string{
		0: "UNSUPPORTED",
		1: "NOT_INSTALLED",
		2: "UNMOUNTED",
		3: "MOUNTED",
	}
	FuseState_value = map[string]int32{
		"UNSUPPORTED":   0,
		"NOT_INSTALLED": 1,
		"UNMOUNTED":     2,
		"MOUNTED":       3,
	}
)

Enum value maps for FuseState.

View Source
var (
	NotificationType_name = map[int32]string{
		0: "UNKNOWN",
		1: "INVITATION",
		2: "USAGEALERT",
		3: "INVITATION_REPLY",
		4: "REVOKED_INVITATION",
	}
	NotificationType_value = map[string]int32{
		"UNKNOWN":            0,
		"INVITATION":         1,
		"USAGEALERT":         2,
		"INVITATION_REPLY":   3,
		"REVOKED_INVITATION": 4,
	}
)

Enum value maps for NotificationType.

View Source
var (
	InvitationStatus_name = map[int32]string{
		0: "PENDING",
		1: "ACCEPTED",
		2: "REJECTED",
	}
	InvitationStatus_value = map[string]int32{
		"PENDING":  0,
		"ACCEPTED": 1,
		"REJECTED": 2,
	}
)

Enum value maps for InvitationStatus.

View Source
var File_space_proto protoreflect.FileDescriptor

Functions

func RegisterSpaceApiHandler

func RegisterSpaceApiHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterSpaceApiHandler registers the http handlers for service SpaceApi to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterSpaceApiHandlerClient

func RegisterSpaceApiHandlerClient(ctx context.Context, mux *runtime.ServeMux, client SpaceApiClient) error

RegisterSpaceApiHandlerClient registers the http handlers for service SpaceApi to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "SpaceApiClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "SpaceApiClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "SpaceApiClient" to call the correct interceptors.

func RegisterSpaceApiHandlerFromEndpoint

func RegisterSpaceApiHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterSpaceApiHandlerFromEndpoint is same as RegisterSpaceApiHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterSpaceApiHandlerServer

func RegisterSpaceApiHandlerServer(ctx context.Context, mux *runtime.ServeMux, server SpaceApiServer) error

RegisterSpaceApiHandlerServer registers the http handlers for service SpaceApi to "mux". UnaryRPC :call SpaceApiServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features (such as grpc.SendHeader, etc) to stop working. Consider using RegisterSpaceApiHandlerFromEndpoint instead.

func RegisterSpaceApiServer

func RegisterSpaceApiServer(s *grpc.Server, srv SpaceApiServer)

Types

type AddItemResult

type AddItemResult struct {
	SourcePath string `protobuf:"bytes,1,opt,name=sourcePath,proto3" json:"sourcePath,omitempty"`
	BucketPath string `protobuf:"bytes,2,opt,name=bucketPath,proto3" json:"bucketPath,omitempty"`
	Error      string `protobuf:"bytes,3,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*AddItemResult) Descriptor deprecated

func (*AddItemResult) Descriptor() ([]byte, []int)

Deprecated: Use AddItemResult.ProtoReflect.Descriptor instead.

func (*AddItemResult) GetBucketPath

func (x *AddItemResult) GetBucketPath() string

func (*AddItemResult) GetError

func (x *AddItemResult) GetError() string

func (*AddItemResult) GetSourcePath

func (x *AddItemResult) GetSourcePath() string

func (*AddItemResult) ProtoMessage

func (*AddItemResult) ProtoMessage()

func (*AddItemResult) ProtoReflect

func (x *AddItemResult) ProtoReflect() protoreflect.Message

func (*AddItemResult) Reset

func (x *AddItemResult) Reset()

func (*AddItemResult) String

func (x *AddItemResult) String() string

type AddItemsRequest

type AddItemsRequest struct {

	// full paths to file or Folder on FS. Needs to be a location available to the daemon
	SourcePaths []string `protobuf:"bytes,1,rep,name=sourcePaths,proto3" json:"sourcePaths,omitempty"`
	// target path in bucket.
	TargetPath string `protobuf:"bytes,2,opt,name=targetPath,proto3" json:"targetPath,omitempty"`
	// The bucket in which to save the item
	Bucket string `protobuf:"bytes,3,opt,name=bucket,proto3" json:"bucket,omitempty"`
	// contains filtered or unexported fields
}

func (*AddItemsRequest) Descriptor deprecated

func (*AddItemsRequest) Descriptor() ([]byte, []int)

Deprecated: Use AddItemsRequest.ProtoReflect.Descriptor instead.

func (*AddItemsRequest) GetBucket added in v0.0.8

func (x *AddItemsRequest) GetBucket() string

func (*AddItemsRequest) GetSourcePaths

func (x *AddItemsRequest) GetSourcePaths() []string

func (*AddItemsRequest) GetTargetPath

func (x *AddItemsRequest) GetTargetPath() string

func (*AddItemsRequest) ProtoMessage

func (*AddItemsRequest) ProtoMessage()

func (*AddItemsRequest) ProtoReflect

func (x *AddItemsRequest) ProtoReflect() protoreflect.Message

func (*AddItemsRequest) Reset

func (x *AddItemsRequest) Reset()

func (*AddItemsRequest) String

func (x *AddItemsRequest) String() string

type AddItemsResponse

type AddItemsResponse struct {
	Result         *AddItemResult `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
	TotalFiles     int64          `protobuf:"varint,2,opt,name=totalFiles,proto3" json:"totalFiles,omitempty"`
	TotalBytes     int64          `protobuf:"varint,3,opt,name=totalBytes,proto3" json:"totalBytes,omitempty"`
	CompletedFiles int64          `protobuf:"varint,4,opt,name=completedFiles,proto3" json:"completedFiles,omitempty"`
	CompletedBytes int64          `protobuf:"varint,5,opt,name=completedBytes,proto3" json:"completedBytes,omitempty"`
	// contains filtered or unexported fields
}

func (*AddItemsResponse) Descriptor deprecated

func (*AddItemsResponse) Descriptor() ([]byte, []int)

Deprecated: Use AddItemsResponse.ProtoReflect.Descriptor instead.

func (*AddItemsResponse) GetCompletedBytes

func (x *AddItemsResponse) GetCompletedBytes() int64

func (*AddItemsResponse) GetCompletedFiles

func (x *AddItemsResponse) GetCompletedFiles() int64

func (*AddItemsResponse) GetResult

func (x *AddItemsResponse) GetResult() *AddItemResult

func (*AddItemsResponse) GetTotalBytes

func (x *AddItemsResponse) GetTotalBytes() int64

func (*AddItemsResponse) GetTotalFiles

func (x *AddItemsResponse) GetTotalFiles() int64

func (*AddItemsResponse) ProtoMessage

func (*AddItemsResponse) ProtoMessage()

func (*AddItemsResponse) ProtoReflect

func (x *AddItemsResponse) ProtoReflect() protoreflect.Message

func (*AddItemsResponse) Reset

func (x *AddItemsResponse) Reset()

func (*AddItemsResponse) String

func (x *AddItemsResponse) String() string

type AllowedMethod added in v0.1.0

type AllowedMethod struct {
	MethodName string `protobuf:"bytes,1,opt,name=methodName,proto3" json:"methodName,omitempty"`
	// contains filtered or unexported fields
}

func (*AllowedMethod) Descriptor deprecated added in v0.1.0

func (*AllowedMethod) Descriptor() ([]byte, []int)

Deprecated: Use AllowedMethod.ProtoReflect.Descriptor instead.

func (*AllowedMethod) GetMethodName added in v0.1.0

func (x *AllowedMethod) GetMethodName() string

func (*AllowedMethod) ProtoMessage added in v0.1.0

func (*AllowedMethod) ProtoMessage()

func (*AllowedMethod) ProtoReflect added in v0.1.0

func (x *AllowedMethod) ProtoReflect() protoreflect.Message

func (*AllowedMethod) Reset added in v0.1.0

func (x *AllowedMethod) Reset()

func (*AllowedMethod) String added in v0.1.0

func (x *AllowedMethod) String() string

type BackupKeysByPassphraseRequest

type BackupKeysByPassphraseRequest struct {
	Uuid       string        `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
	Passphrase string        `protobuf:"bytes,2,opt,name=passphrase,proto3" json:"passphrase,omitempty"`
	Type       KeyBackupType `protobuf:"varint,3,opt,name=type,proto3,enum=space.KeyBackupType" json:"type,omitempty"`
	// contains filtered or unexported fields
}

func (*BackupKeysByPassphraseRequest) Descriptor deprecated

func (*BackupKeysByPassphraseRequest) Descriptor() ([]byte, []int)

Deprecated: Use BackupKeysByPassphraseRequest.ProtoReflect.Descriptor instead.

func (*BackupKeysByPassphraseRequest) GetPassphrase

func (x *BackupKeysByPassphraseRequest) GetPassphrase() string

func (*BackupKeysByPassphraseRequest) GetType added in v0.0.34

func (*BackupKeysByPassphraseRequest) GetUuid added in v0.0.13

func (*BackupKeysByPassphraseRequest) ProtoMessage

func (*BackupKeysByPassphraseRequest) ProtoMessage()

func (*BackupKeysByPassphraseRequest) ProtoReflect

func (*BackupKeysByPassphraseRequest) Reset

func (x *BackupKeysByPassphraseRequest) Reset()

func (*BackupKeysByPassphraseRequest) String

type BackupKeysByPassphraseResponse

type BackupKeysByPassphraseResponse struct {
	// contains filtered or unexported fields
}

func (*BackupKeysByPassphraseResponse) Descriptor deprecated

func (*BackupKeysByPassphraseResponse) Descriptor() ([]byte, []int)

Deprecated: Use BackupKeysByPassphraseResponse.ProtoReflect.Descriptor instead.

func (*BackupKeysByPassphraseResponse) ProtoMessage

func (*BackupKeysByPassphraseResponse) ProtoMessage()

func (*BackupKeysByPassphraseResponse) ProtoReflect

func (*BackupKeysByPassphraseResponse) Reset

func (x *BackupKeysByPassphraseResponse) Reset()

func (*BackupKeysByPassphraseResponse) String

type Bucket

type Bucket struct {
	Key              string          `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Name             string          `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Path             string          `protobuf:"bytes,3,opt,name=path,proto3" json:"path,omitempty"`
	CreatedAt        int64           `protobuf:"varint,4,opt,name=createdAt,proto3" json:"createdAt,omitempty"`
	UpdatedAt        int64           `protobuf:"varint,5,opt,name=updatedAt,proto3" json:"updatedAt,omitempty"`
	Members          []*BucketMember `protobuf:"bytes,6,rep,name=members,proto3" json:"members,omitempty"`
	IsPersonalBucket bool            `protobuf:"varint,7,opt,name=isPersonalBucket,proto3" json:"isPersonalBucket,omitempty"`
	IsBackupEnabled  bool            `protobuf:"varint,8,opt,name=isBackupEnabled,proto3" json:"isBackupEnabled,omitempty"`
	ItemsCount       int32           `protobuf:"varint,9,opt,name=itemsCount,proto3" json:"itemsCount,omitempty"`
	// contains filtered or unexported fields
}

func (*Bucket) Descriptor deprecated

func (*Bucket) Descriptor() ([]byte, []int)

Deprecated: Use Bucket.ProtoReflect.Descriptor instead.

func (*Bucket) GetCreatedAt

func (x *Bucket) GetCreatedAt() int64

func (*Bucket) GetIsBackupEnabled added in v0.0.13

func (x *Bucket) GetIsBackupEnabled() bool

func (*Bucket) GetIsPersonalBucket added in v0.0.10

func (x *Bucket) GetIsPersonalBucket() bool

func (*Bucket) GetItemsCount added in v0.0.23

func (x *Bucket) GetItemsCount() int32

func (*Bucket) GetKey

func (x *Bucket) GetKey() string

func (*Bucket) GetMembers added in v0.0.10

func (x *Bucket) GetMembers() []*BucketMember

func (*Bucket) GetName

func (x *Bucket) GetName() string

func (*Bucket) GetPath

func (x *Bucket) GetPath() string

func (*Bucket) GetUpdatedAt

func (x *Bucket) GetUpdatedAt() int64

func (*Bucket) ProtoMessage

func (*Bucket) ProtoMessage()

func (*Bucket) ProtoReflect

func (x *Bucket) ProtoReflect() protoreflect.Message

func (*Bucket) Reset

func (x *Bucket) Reset()

func (*Bucket) String

func (x *Bucket) String() string

type BucketBackupRestoreRequest added in v0.0.28

type BucketBackupRestoreRequest struct {
	Bucket string `protobuf:"bytes,1,opt,name=bucket,proto3" json:"bucket,omitempty"`
	// contains filtered or unexported fields
}

func (*BucketBackupRestoreRequest) Descriptor deprecated added in v0.0.28

func (*BucketBackupRestoreRequest) Descriptor() ([]byte, []int)

Deprecated: Use BucketBackupRestoreRequest.ProtoReflect.Descriptor instead.

func (*BucketBackupRestoreRequest) GetBucket added in v0.0.28

func (x *BucketBackupRestoreRequest) GetBucket() string

func (*BucketBackupRestoreRequest) ProtoMessage added in v0.0.28

func (*BucketBackupRestoreRequest) ProtoMessage()

func (*BucketBackupRestoreRequest) ProtoReflect added in v0.0.28

func (*BucketBackupRestoreRequest) Reset added in v0.0.28

func (x *BucketBackupRestoreRequest) Reset()

func (*BucketBackupRestoreRequest) String added in v0.0.28

func (x *BucketBackupRestoreRequest) String() string

type BucketBackupRestoreResponse added in v0.0.28

type BucketBackupRestoreResponse struct {
	// contains filtered or unexported fields
}

func (*BucketBackupRestoreResponse) Descriptor deprecated added in v0.0.28

func (*BucketBackupRestoreResponse) Descriptor() ([]byte, []int)

Deprecated: Use BucketBackupRestoreResponse.ProtoReflect.Descriptor instead.

func (*BucketBackupRestoreResponse) ProtoMessage added in v0.0.28

func (*BucketBackupRestoreResponse) ProtoMessage()

func (*BucketBackupRestoreResponse) ProtoReflect added in v0.0.28

func (*BucketBackupRestoreResponse) Reset added in v0.0.28

func (x *BucketBackupRestoreResponse) Reset()

func (*BucketBackupRestoreResponse) String added in v0.0.28

func (x *BucketBackupRestoreResponse) String() string

type BucketMember added in v0.0.10

type BucketMember struct {
	Address   string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	PublicKey string `protobuf:"bytes,2,opt,name=publicKey,proto3" json:"publicKey,omitempty"`
	IsOwner   bool   `protobuf:"varint,3,opt,name=isOwner,proto3" json:"isOwner,omitempty"`
	HasJoined bool   `protobuf:"varint,4,opt,name=hasJoined,proto3" json:"hasJoined,omitempty"`
	// contains filtered or unexported fields
}

func (*BucketMember) Descriptor deprecated added in v0.0.10

func (*BucketMember) Descriptor() ([]byte, []int)

Deprecated: Use BucketMember.ProtoReflect.Descriptor instead.

func (*BucketMember) GetAddress added in v0.0.10

func (x *BucketMember) GetAddress() string

func (*BucketMember) GetHasJoined added in v0.0.10

func (x *BucketMember) GetHasJoined() bool

func (*BucketMember) GetIsOwner added in v0.0.10

func (x *BucketMember) GetIsOwner() bool

func (*BucketMember) GetPublicKey added in v0.0.10

func (x *BucketMember) GetPublicKey() string

func (*BucketMember) ProtoMessage added in v0.0.10

func (*BucketMember) ProtoMessage()

func (*BucketMember) ProtoReflect added in v0.0.10

func (x *BucketMember) ProtoReflect() protoreflect.Message

func (*BucketMember) Reset added in v0.0.10

func (x *BucketMember) Reset()

func (*BucketMember) String added in v0.0.10

func (x *BucketMember) String() string

type CreateBucketRequest

type CreateBucketRequest struct {
	Slug string `protobuf:"bytes,1,opt,name=slug,proto3" json:"slug,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateBucketRequest) Descriptor deprecated

func (*CreateBucketRequest) Descriptor() ([]byte, []int)

Deprecated: Use CreateBucketRequest.ProtoReflect.Descriptor instead.

func (*CreateBucketRequest) GetSlug

func (x *CreateBucketRequest) GetSlug() string

func (*CreateBucketRequest) ProtoMessage

func (*CreateBucketRequest) ProtoMessage()

func (*CreateBucketRequest) ProtoReflect

func (x *CreateBucketRequest) ProtoReflect() protoreflect.Message

func (*CreateBucketRequest) Reset

func (x *CreateBucketRequest) Reset()

func (*CreateBucketRequest) String

func (x *CreateBucketRequest) String() string

type CreateBucketResponse

type CreateBucketResponse struct {
	Bucket *Bucket `protobuf:"bytes,1,opt,name=bucket,proto3" json:"bucket,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateBucketResponse) Descriptor deprecated

func (*CreateBucketResponse) Descriptor() ([]byte, []int)

Deprecated: Use CreateBucketResponse.ProtoReflect.Descriptor instead.

func (*CreateBucketResponse) GetBucket

func (x *CreateBucketResponse) GetBucket() *Bucket

func (*CreateBucketResponse) ProtoMessage

func (*CreateBucketResponse) ProtoMessage()

func (*CreateBucketResponse) ProtoReflect

func (x *CreateBucketResponse) ProtoReflect() protoreflect.Message

func (*CreateBucketResponse) Reset

func (x *CreateBucketResponse) Reset()

func (*CreateBucketResponse) String

func (x *CreateBucketResponse) String() string

type CreateFolderRequest

type CreateFolderRequest struct {

	// target path in bucket to add new empty folder
	Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	// The bucket in which to add the folder
	Bucket string `protobuf:"bytes,2,opt,name=bucket,proto3" json:"bucket,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateFolderRequest) Descriptor deprecated

func (*CreateFolderRequest) Descriptor() ([]byte, []int)

Deprecated: Use CreateFolderRequest.ProtoReflect.Descriptor instead.

func (*CreateFolderRequest) GetBucket added in v0.0.8

func (x *CreateFolderRequest) GetBucket() string

func (*CreateFolderRequest) GetPath

func (x *CreateFolderRequest) GetPath() string

func (*CreateFolderRequest) ProtoMessage

func (*CreateFolderRequest) ProtoMessage()

func (*CreateFolderRequest) ProtoReflect

func (x *CreateFolderRequest) ProtoReflect() protoreflect.Message

func (*CreateFolderRequest) Reset

func (x *CreateFolderRequest) Reset()

func (*CreateFolderRequest) String

func (x *CreateFolderRequest) String() string

type CreateFolderResponse

type CreateFolderResponse struct {
	// contains filtered or unexported fields
}

not sure we need to return anything other than an error if we failed

func (*CreateFolderResponse) Descriptor deprecated

func (*CreateFolderResponse) Descriptor() ([]byte, []int)

Deprecated: Use CreateFolderResponse.ProtoReflect.Descriptor instead.

func (*CreateFolderResponse) ProtoMessage

func (*CreateFolderResponse) ProtoMessage()

func (*CreateFolderResponse) ProtoReflect

func (x *CreateFolderResponse) ProtoReflect() protoreflect.Message

func (*CreateFolderResponse) Reset

func (x *CreateFolderResponse) Reset()

func (*CreateFolderResponse) String

func (x *CreateFolderResponse) String() string

type CreateLocalKeysBackupRequest added in v0.0.11

type CreateLocalKeysBackupRequest struct {

	// The path in which to save the backup
	PathToKeyBackup string `protobuf:"bytes,1,opt,name=pathToKeyBackup,proto3" json:"pathToKeyBackup,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateLocalKeysBackupRequest) Descriptor deprecated added in v0.0.11

func (*CreateLocalKeysBackupRequest) Descriptor() ([]byte, []int)

Deprecated: Use CreateLocalKeysBackupRequest.ProtoReflect.Descriptor instead.

func (*CreateLocalKeysBackupRequest) GetPathToKeyBackup added in v0.0.11

func (x *CreateLocalKeysBackupRequest) GetPathToKeyBackup() string

func (*CreateLocalKeysBackupRequest) ProtoMessage added in v0.0.11

func (*CreateLocalKeysBackupRequest) ProtoMessage()

func (*CreateLocalKeysBackupRequest) ProtoReflect added in v0.0.11

func (*CreateLocalKeysBackupRequest) Reset added in v0.0.11

func (x *CreateLocalKeysBackupRequest) Reset()

func (*CreateLocalKeysBackupRequest) String added in v0.0.11

type CreateLocalKeysBackupResponse added in v0.0.11

type CreateLocalKeysBackupResponse struct {
	// contains filtered or unexported fields
}

func (*CreateLocalKeysBackupResponse) Descriptor deprecated added in v0.0.11

func (*CreateLocalKeysBackupResponse) Descriptor() ([]byte, []int)

Deprecated: Use CreateLocalKeysBackupResponse.ProtoReflect.Descriptor instead.

func (*CreateLocalKeysBackupResponse) ProtoMessage added in v0.0.11

func (*CreateLocalKeysBackupResponse) ProtoMessage()

func (*CreateLocalKeysBackupResponse) ProtoReflect added in v0.0.11

func (*CreateLocalKeysBackupResponse) Reset added in v0.0.11

func (x *CreateLocalKeysBackupResponse) Reset()

func (*CreateLocalKeysBackupResponse) String added in v0.0.11

type DeleteAccountRequest added in v0.0.12

type DeleteAccountRequest struct {
	// contains filtered or unexported fields
}

func (*DeleteAccountRequest) Descriptor deprecated added in v0.0.12

func (*DeleteAccountRequest) Descriptor() ([]byte, []int)

Deprecated: Use DeleteAccountRequest.ProtoReflect.Descriptor instead.

func (*DeleteAccountRequest) ProtoMessage added in v0.0.12

func (*DeleteAccountRequest) ProtoMessage()

func (*DeleteAccountRequest) ProtoReflect added in v0.0.12

func (x *DeleteAccountRequest) ProtoReflect() protoreflect.Message

func (*DeleteAccountRequest) Reset added in v0.0.12

func (x *DeleteAccountRequest) Reset()

func (*DeleteAccountRequest) String added in v0.0.12

func (x *DeleteAccountRequest) String() string

type DeleteAccountResponse added in v0.0.12

type DeleteAccountResponse struct {
	// contains filtered or unexported fields
}

func (*DeleteAccountResponse) Descriptor deprecated added in v0.0.12

func (*DeleteAccountResponse) Descriptor() ([]byte, []int)

Deprecated: Use DeleteAccountResponse.ProtoReflect.Descriptor instead.

func (*DeleteAccountResponse) ProtoMessage added in v0.0.12

func (*DeleteAccountResponse) ProtoMessage()

func (*DeleteAccountResponse) ProtoReflect added in v0.0.12

func (x *DeleteAccountResponse) ProtoReflect() protoreflect.Message

func (*DeleteAccountResponse) Reset added in v0.0.12

func (x *DeleteAccountResponse) Reset()

func (*DeleteAccountResponse) String added in v0.0.12

func (x *DeleteAccountResponse) String() string

type DeleteKeyPairRequest added in v0.0.12

type DeleteKeyPairRequest struct {
	// contains filtered or unexported fields
}

func (*DeleteKeyPairRequest) Descriptor deprecated added in v0.0.12

func (*DeleteKeyPairRequest) Descriptor() ([]byte, []int)

Deprecated: Use DeleteKeyPairRequest.ProtoReflect.Descriptor instead.

func (*DeleteKeyPairRequest) ProtoMessage added in v0.0.12

func (*DeleteKeyPairRequest) ProtoMessage()

func (*DeleteKeyPairRequest) ProtoReflect added in v0.0.12

func (x *DeleteKeyPairRequest) ProtoReflect() protoreflect.Message

func (*DeleteKeyPairRequest) Reset added in v0.0.12

func (x *DeleteKeyPairRequest) Reset()

func (*DeleteKeyPairRequest) String added in v0.0.12

func (x *DeleteKeyPairRequest) String() string

type DeleteKeyPairResponse added in v0.0.12

type DeleteKeyPairResponse struct {
	// contains filtered or unexported fields
}

func (*DeleteKeyPairResponse) Descriptor deprecated added in v0.0.12

func (*DeleteKeyPairResponse) Descriptor() ([]byte, []int)

Deprecated: Use DeleteKeyPairResponse.ProtoReflect.Descriptor instead.

func (*DeleteKeyPairResponse) ProtoMessage added in v0.0.12

func (*DeleteKeyPairResponse) ProtoMessage()

func (*DeleteKeyPairResponse) ProtoReflect added in v0.0.12

func (x *DeleteKeyPairResponse) ProtoReflect() protoreflect.Message

func (*DeleteKeyPairResponse) Reset added in v0.0.12

func (x *DeleteKeyPairResponse) Reset()

func (*DeleteKeyPairResponse) String added in v0.0.12

func (x *DeleteKeyPairResponse) String() string

type EventType

type EventType int32
const (
	EventType_ENTRY_ADDED               EventType = 0
	EventType_ENTRY_DELETED             EventType = 1
	EventType_ENTRY_UPDATED             EventType = 2
	EventType_ENTRY_BACKUP_IN_PROGRESS  EventType = 3
	EventType_ENTRY_BACKUP_READY        EventType = 4
	EventType_ENTRY_RESTORE_IN_PROGRESS EventType = 5
	EventType_ENTRY_RESTORE_READY       EventType = 6
	EventType_FOLDER_ADDED              EventType = 7
	EventType_FOLDER_DELETED            EventType = 8
	EventType_FOLDER_UPDATED            EventType = 9
)

func (EventType) Descriptor

func (EventType) Descriptor() protoreflect.EnumDescriptor

func (EventType) Enum

func (x EventType) Enum() *EventType

func (EventType) EnumDescriptor deprecated

func (EventType) EnumDescriptor() ([]byte, []int)

Deprecated: Use EventType.Descriptor instead.

func (EventType) Number

func (x EventType) Number() protoreflect.EnumNumber

func (EventType) String

func (x EventType) String() string

func (EventType) Type

type FileEventResponse

type FileEventResponse struct {
	Type   EventType           `protobuf:"varint,1,opt,name=type,proto3,enum=space.EventType" json:"type,omitempty"`
	Entry  *ListDirectoryEntry `protobuf:"bytes,2,opt,name=entry,proto3" json:"entry,omitempty"`
	Bucket string              `protobuf:"bytes,3,opt,name=bucket,proto3" json:"bucket,omitempty"`
	DbId   string              `protobuf:"bytes,4,opt,name=dbId,proto3" json:"dbId,omitempty"`
	// contains filtered or unexported fields
}

func (*FileEventResponse) Descriptor deprecated

func (*FileEventResponse) Descriptor() ([]byte, []int)

Deprecated: Use FileEventResponse.ProtoReflect.Descriptor instead.

func (*FileEventResponse) GetBucket added in v0.0.33

func (x *FileEventResponse) GetBucket() string

func (*FileEventResponse) GetDbId added in v0.0.33

func (x *FileEventResponse) GetDbId() string

func (*FileEventResponse) GetEntry

func (x *FileEventResponse) GetEntry() *ListDirectoryEntry

func (*FileEventResponse) GetType

func (x *FileEventResponse) GetType() EventType

func (*FileEventResponse) ProtoMessage

func (*FileEventResponse) ProtoMessage()

func (*FileEventResponse) ProtoReflect

func (x *FileEventResponse) ProtoReflect() protoreflect.Message

func (*FileEventResponse) Reset

func (x *FileEventResponse) Reset()

func (*FileEventResponse) String

func (x *FileEventResponse) String() string

type FileMember added in v0.0.13

type FileMember struct {
	PublicKey string `protobuf:"bytes,1,opt,name=publicKey,proto3" json:"publicKey,omitempty"`
	Address   string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	// contains filtered or unexported fields
}

func (*FileMember) Descriptor deprecated added in v0.0.13

func (*FileMember) Descriptor() ([]byte, []int)

Deprecated: Use FileMember.ProtoReflect.Descriptor instead.

func (*FileMember) GetAddress added in v0.0.13

func (x *FileMember) GetAddress() string

func (*FileMember) GetPublicKey added in v0.0.13

func (x *FileMember) GetPublicKey() string

func (*FileMember) ProtoMessage added in v0.0.13

func (*FileMember) ProtoMessage()

func (*FileMember) ProtoReflect added in v0.0.13

func (x *FileMember) ProtoReflect() protoreflect.Message

func (*FileMember) Reset added in v0.0.13

func (x *FileMember) Reset()

func (*FileMember) String added in v0.0.13

func (x *FileMember) String() string

type FullPath added in v0.0.13

type FullPath struct {
	DbId   string `protobuf:"bytes,1,opt,name=dbId,proto3" json:"dbId,omitempty"` // optional field to specify shared with me file
	Bucket string `protobuf:"bytes,2,opt,name=bucket,proto3" json:"bucket,omitempty"`
	Path   string `protobuf:"bytes,3,opt,name=path,proto3" json:"path,omitempty"`
	// contains filtered or unexported fields
}

func (*FullPath) Descriptor deprecated added in v0.0.13

func (*FullPath) Descriptor() ([]byte, []int)

Deprecated: Use FullPath.ProtoReflect.Descriptor instead.

func (*FullPath) GetBucket added in v0.0.13

func (x *FullPath) GetBucket() string

func (*FullPath) GetDbId added in v0.0.13

func (x *FullPath) GetDbId() string

func (*FullPath) GetPath added in v0.0.13

func (x *FullPath) GetPath() string

func (*FullPath) ProtoMessage added in v0.0.13

func (*FullPath) ProtoMessage()

func (*FullPath) ProtoReflect added in v0.0.13

func (x *FullPath) ProtoReflect() protoreflect.Message

func (*FullPath) Reset added in v0.0.13

func (x *FullPath) Reset()

func (*FullPath) String added in v0.0.13

func (x *FullPath) String() string

type FuseDriveResponse

type FuseDriveResponse struct {
	State     FuseState `protobuf:"varint,1,opt,name=state,proto3,enum=space.FuseState" json:"state,omitempty"`
	MountPath string    `protobuf:"bytes,2,opt,name=mountPath,proto3" json:"mountPath,omitempty"`
	// contains filtered or unexported fields
}

func (*FuseDriveResponse) Descriptor deprecated

func (*FuseDriveResponse) Descriptor() ([]byte, []int)

Deprecated: Use FuseDriveResponse.ProtoReflect.Descriptor instead.

func (*FuseDriveResponse) GetMountPath added in v0.1.3

func (x *FuseDriveResponse) GetMountPath() string

func (*FuseDriveResponse) GetState added in v0.1.3

func (x *FuseDriveResponse) GetState() FuseState

func (*FuseDriveResponse) ProtoMessage

func (*FuseDriveResponse) ProtoMessage()

func (*FuseDriveResponse) ProtoReflect

func (x *FuseDriveResponse) ProtoReflect() protoreflect.Message

func (*FuseDriveResponse) Reset

func (x *FuseDriveResponse) Reset()

func (*FuseDriveResponse) String

func (x *FuseDriveResponse) String() string

type FuseState added in v0.1.3

type FuseState int32
const (
	FuseState_UNSUPPORTED   FuseState = 0
	FuseState_NOT_INSTALLED FuseState = 1
	FuseState_UNMOUNTED     FuseState = 2
	FuseState_MOUNTED       FuseState = 3
)

func (FuseState) Descriptor added in v0.1.3

func (FuseState) Descriptor() protoreflect.EnumDescriptor

func (FuseState) Enum added in v0.1.3

func (x FuseState) Enum() *FuseState

func (FuseState) EnumDescriptor deprecated added in v0.1.3

func (FuseState) EnumDescriptor() ([]byte, []int)

Deprecated: Use FuseState.Descriptor instead.

func (FuseState) Number added in v0.1.3

func (x FuseState) Number() protoreflect.EnumNumber

func (FuseState) String added in v0.1.3

func (x FuseState) String() string

func (FuseState) Type added in v0.1.3

type GenerateAppTokenRequest added in v0.1.0

type GenerateAppTokenRequest struct {
	AllowedMethods []*AllowedMethod `protobuf:"bytes,1,rep,name=allowedMethods,proto3" json:"allowedMethods,omitempty"`
	// contains filtered or unexported fields
}

func (*GenerateAppTokenRequest) Descriptor deprecated added in v0.1.0

func (*GenerateAppTokenRequest) Descriptor() ([]byte, []int)

Deprecated: Use GenerateAppTokenRequest.ProtoReflect.Descriptor instead.

func (*GenerateAppTokenRequest) GetAllowedMethods added in v0.1.0

func (x *GenerateAppTokenRequest) GetAllowedMethods() []*AllowedMethod

func (*GenerateAppTokenRequest) ProtoMessage added in v0.1.0

func (*GenerateAppTokenRequest) ProtoMessage()

func (*GenerateAppTokenRequest) ProtoReflect added in v0.1.0

func (x *GenerateAppTokenRequest) ProtoReflect() protoreflect.Message

func (*GenerateAppTokenRequest) Reset added in v0.1.0

func (x *GenerateAppTokenRequest) Reset()

func (*GenerateAppTokenRequest) String added in v0.1.0

func (x *GenerateAppTokenRequest) String() string

type GenerateAppTokenResponse added in v0.1.0

type GenerateAppTokenResponse struct {
	AppToken string `protobuf:"bytes,1,opt,name=appToken,proto3" json:"appToken,omitempty"`
	// contains filtered or unexported fields
}

func (*GenerateAppTokenResponse) Descriptor deprecated added in v0.1.0

func (*GenerateAppTokenResponse) Descriptor() ([]byte, []int)

Deprecated: Use GenerateAppTokenResponse.ProtoReflect.Descriptor instead.

func (*GenerateAppTokenResponse) GetAppToken added in v0.1.0

func (x *GenerateAppTokenResponse) GetAppToken() string

func (*GenerateAppTokenResponse) ProtoMessage added in v0.1.0

func (*GenerateAppTokenResponse) ProtoMessage()

func (*GenerateAppTokenResponse) ProtoReflect added in v0.1.0

func (x *GenerateAppTokenResponse) ProtoReflect() protoreflect.Message

func (*GenerateAppTokenResponse) Reset added in v0.1.0

func (x *GenerateAppTokenResponse) Reset()

func (*GenerateAppTokenResponse) String added in v0.1.0

func (x *GenerateAppTokenResponse) String() string

type GenerateKeyPairRequest

type GenerateKeyPairRequest struct {
	// contains filtered or unexported fields
}

func (*GenerateKeyPairRequest) Descriptor deprecated

func (*GenerateKeyPairRequest) Descriptor() ([]byte, []int)

Deprecated: Use GenerateKeyPairRequest.ProtoReflect.Descriptor instead.

func (*GenerateKeyPairRequest) ProtoMessage

func (*GenerateKeyPairRequest) ProtoMessage()

func (*GenerateKeyPairRequest) ProtoReflect

func (x *GenerateKeyPairRequest) ProtoReflect() protoreflect.Message

func (*GenerateKeyPairRequest) Reset

func (x *GenerateKeyPairRequest) Reset()

func (*GenerateKeyPairRequest) String

func (x *GenerateKeyPairRequest) String() string

type GenerateKeyPairResponse

type GenerateKeyPairResponse struct {
	Mnemonic string `protobuf:"bytes,1,opt,name=mnemonic,proto3" json:"mnemonic,omitempty"`
	// contains filtered or unexported fields
}

func (*GenerateKeyPairResponse) Descriptor deprecated

func (*GenerateKeyPairResponse) Descriptor() ([]byte, []int)

Deprecated: Use GenerateKeyPairResponse.ProtoReflect.Descriptor instead.

func (*GenerateKeyPairResponse) GetMnemonic added in v0.0.13

func (x *GenerateKeyPairResponse) GetMnemonic() string

func (*GenerateKeyPairResponse) ProtoMessage

func (*GenerateKeyPairResponse) ProtoMessage()

func (*GenerateKeyPairResponse) ProtoReflect

func (x *GenerateKeyPairResponse) ProtoReflect() protoreflect.Message

func (*GenerateKeyPairResponse) Reset

func (x *GenerateKeyPairResponse) Reset()

func (*GenerateKeyPairResponse) String

func (x *GenerateKeyPairResponse) String() string

type GeneratePublicFileLinkRequest added in v0.0.10

type GeneratePublicFileLinkRequest struct {
	Bucket    string   `protobuf:"bytes,1,opt,name=bucket,proto3" json:"bucket,omitempty"`
	ItemPaths []string `protobuf:"bytes,2,rep,name=itemPaths,proto3" json:"itemPaths,omitempty"`
	Password  string   `protobuf:"bytes,3,opt,name=password,proto3" json:"password,omitempty"`
	// optional field to specify db id
	// for shared with me files
	DbId string `protobuf:"bytes,4,opt,name=dbId,proto3" json:"dbId,omitempty"`
	// contains filtered or unexported fields
}

func (*GeneratePublicFileLinkRequest) Descriptor deprecated added in v0.0.10

func (*GeneratePublicFileLinkRequest) Descriptor() ([]byte, []int)

Deprecated: Use GeneratePublicFileLinkRequest.ProtoReflect.Descriptor instead.

func (*GeneratePublicFileLinkRequest) GetBucket added in v0.0.10

func (x *GeneratePublicFileLinkRequest) GetBucket() string

func (*GeneratePublicFileLinkRequest) GetDbId added in v0.0.13

func (*GeneratePublicFileLinkRequest) GetItemPaths added in v0.0.10

func (x *GeneratePublicFileLinkRequest) GetItemPaths() []string

func (*GeneratePublicFileLinkRequest) GetPassword added in v0.0.10

func (x *GeneratePublicFileLinkRequest) GetPassword() string

func (*GeneratePublicFileLinkRequest) ProtoMessage added in v0.0.10

func (*GeneratePublicFileLinkRequest) ProtoMessage()

func (*GeneratePublicFileLinkRequest) ProtoReflect added in v0.0.10

func (*GeneratePublicFileLinkRequest) Reset added in v0.0.10

func (x *GeneratePublicFileLinkRequest) Reset()

func (*GeneratePublicFileLinkRequest) String added in v0.0.10

type GeneratePublicFileLinkResponse added in v0.0.10

type GeneratePublicFileLinkResponse struct {
	Link    string `protobuf:"bytes,1,opt,name=link,proto3" json:"link,omitempty"`
	FileCid string `protobuf:"bytes,2,opt,name=fileCid,proto3" json:"fileCid,omitempty"`
	// contains filtered or unexported fields
}

func (*GeneratePublicFileLinkResponse) Descriptor deprecated added in v0.0.10

func (*GeneratePublicFileLinkResponse) Descriptor() ([]byte, []int)

Deprecated: Use GeneratePublicFileLinkResponse.ProtoReflect.Descriptor instead.

func (*GeneratePublicFileLinkResponse) GetFileCid added in v0.0.10

func (x *GeneratePublicFileLinkResponse) GetFileCid() string

func (*GeneratePublicFileLinkResponse) ProtoMessage added in v0.0.10

func (*GeneratePublicFileLinkResponse) ProtoMessage()

func (*GeneratePublicFileLinkResponse) ProtoReflect added in v0.0.10

func (*GeneratePublicFileLinkResponse) Reset added in v0.0.10

func (x *GeneratePublicFileLinkResponse) Reset()

func (*GeneratePublicFileLinkResponse) String added in v0.0.10

type GetAPISessionTokensRequest added in v0.0.13

type GetAPISessionTokensRequest struct {
	// contains filtered or unexported fields
}

func (*GetAPISessionTokensRequest) Descriptor deprecated added in v0.0.13

func (*GetAPISessionTokensRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetAPISessionTokensRequest.ProtoReflect.Descriptor instead.

func (*GetAPISessionTokensRequest) ProtoMessage added in v0.0.13

func (*GetAPISessionTokensRequest) ProtoMessage()

func (*GetAPISessionTokensRequest) ProtoReflect added in v0.0.13

func (*GetAPISessionTokensRequest) Reset added in v0.0.13

func (x *GetAPISessionTokensRequest) Reset()

func (*GetAPISessionTokensRequest) String added in v0.0.13

func (x *GetAPISessionTokensRequest) String() string

type GetAPISessionTokensResponse added in v0.0.13

type GetAPISessionTokensResponse struct {
	HubToken      string `protobuf:"bytes,1,opt,name=hubToken,proto3" json:"hubToken,omitempty"`
	ServicesToken string `protobuf:"bytes,2,opt,name=servicesToken,proto3" json:"servicesToken,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAPISessionTokensResponse) Descriptor deprecated added in v0.0.13

func (*GetAPISessionTokensResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetAPISessionTokensResponse.ProtoReflect.Descriptor instead.

func (*GetAPISessionTokensResponse) GetHubToken added in v0.0.13

func (x *GetAPISessionTokensResponse) GetHubToken() string

func (*GetAPISessionTokensResponse) GetServicesToken added in v0.0.13

func (x *GetAPISessionTokensResponse) GetServicesToken() string

func (*GetAPISessionTokensResponse) ProtoMessage added in v0.0.13

func (*GetAPISessionTokensResponse) ProtoMessage()

func (*GetAPISessionTokensResponse) ProtoReflect added in v0.0.13

func (*GetAPISessionTokensResponse) Reset added in v0.0.13

func (x *GetAPISessionTokensResponse) Reset()

func (*GetAPISessionTokensResponse) String added in v0.0.13

func (x *GetAPISessionTokensResponse) String() string

type GetNotificationsRequest added in v0.0.11

type GetNotificationsRequest struct {
	Seek  string `protobuf:"bytes,1,opt,name=seek,proto3" json:"seek,omitempty"`
	Limit int64  `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
	// contains filtered or unexported fields
}

func (*GetNotificationsRequest) Descriptor deprecated added in v0.0.11

func (*GetNotificationsRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetNotificationsRequest.ProtoReflect.Descriptor instead.

func (*GetNotificationsRequest) GetLimit added in v0.0.11

func (x *GetNotificationsRequest) GetLimit() int64

func (*GetNotificationsRequest) GetSeek added in v0.0.11

func (x *GetNotificationsRequest) GetSeek() string

func (*GetNotificationsRequest) ProtoMessage added in v0.0.11

func (*GetNotificationsRequest) ProtoMessage()

func (*GetNotificationsRequest) ProtoReflect added in v0.0.11

func (x *GetNotificationsRequest) ProtoReflect() protoreflect.Message

func (*GetNotificationsRequest) Reset added in v0.0.11

func (x *GetNotificationsRequest) Reset()

func (*GetNotificationsRequest) String added in v0.0.11

func (x *GetNotificationsRequest) String() string

type GetNotificationsResponse added in v0.0.11

type GetNotificationsResponse struct {
	Notifications []*Notification `protobuf:"bytes,1,rep,name=notifications,proto3" json:"notifications,omitempty"`
	NextOffset    string          `protobuf:"bytes,2,opt,name=nextOffset,proto3" json:"nextOffset,omitempty"`
	LastSeenAt    int64           `protobuf:"varint,3,opt,name=lastSeenAt,proto3" json:"lastSeenAt,omitempty"`
	// contains filtered or unexported fields
}

func (*GetNotificationsResponse) Descriptor deprecated added in v0.0.11

func (*GetNotificationsResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetNotificationsResponse.ProtoReflect.Descriptor instead.

func (*GetNotificationsResponse) GetLastSeenAt added in v0.0.13

func (x *GetNotificationsResponse) GetLastSeenAt() int64

func (*GetNotificationsResponse) GetNextOffset added in v0.0.11

func (x *GetNotificationsResponse) GetNextOffset() string

func (*GetNotificationsResponse) GetNotifications added in v0.0.11

func (x *GetNotificationsResponse) GetNotifications() []*Notification

func (*GetNotificationsResponse) ProtoMessage added in v0.0.11

func (*GetNotificationsResponse) ProtoMessage()

func (*GetNotificationsResponse) ProtoReflect added in v0.0.11

func (x *GetNotificationsResponse) ProtoReflect() protoreflect.Message

func (*GetNotificationsResponse) Reset added in v0.0.11

func (x *GetNotificationsResponse) Reset()

func (*GetNotificationsResponse) String added in v0.0.11

func (x *GetNotificationsResponse) String() string

type GetPublicKeyRequest added in v0.0.11

type GetPublicKeyRequest struct {
	// contains filtered or unexported fields
}

func (*GetPublicKeyRequest) Descriptor deprecated added in v0.0.11

func (*GetPublicKeyRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetPublicKeyRequest.ProtoReflect.Descriptor instead.

func (*GetPublicKeyRequest) ProtoMessage added in v0.0.11

func (*GetPublicKeyRequest) ProtoMessage()

func (*GetPublicKeyRequest) ProtoReflect added in v0.0.11

func (x *GetPublicKeyRequest) ProtoReflect() protoreflect.Message

func (*GetPublicKeyRequest) Reset added in v0.0.11

func (x *GetPublicKeyRequest) Reset()

func (*GetPublicKeyRequest) String added in v0.0.11

func (x *GetPublicKeyRequest) String() string

type GetPublicKeyResponse added in v0.0.11

type GetPublicKeyResponse struct {

	// Public key encoded in hex
	PublicKey string `protobuf:"bytes,1,opt,name=publicKey,proto3" json:"publicKey,omitempty"`
	// contains filtered or unexported fields
}

func (*GetPublicKeyResponse) Descriptor deprecated added in v0.0.11

func (*GetPublicKeyResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetPublicKeyResponse.ProtoReflect.Descriptor instead.

func (*GetPublicKeyResponse) GetPublicKey added in v0.0.11

func (x *GetPublicKeyResponse) GetPublicKey() string

func (*GetPublicKeyResponse) ProtoMessage added in v0.0.11

func (*GetPublicKeyResponse) ProtoMessage()

func (*GetPublicKeyResponse) ProtoReflect added in v0.0.11

func (x *GetPublicKeyResponse) ProtoReflect() protoreflect.Message

func (*GetPublicKeyResponse) Reset added in v0.0.11

func (x *GetPublicKeyResponse) Reset()

func (*GetPublicKeyResponse) String added in v0.0.11

func (x *GetPublicKeyResponse) String() string

type GetRecentlySharedWithRequest added in v0.0.13

type GetRecentlySharedWithRequest struct {
	// contains filtered or unexported fields
}

func (*GetRecentlySharedWithRequest) Descriptor deprecated added in v0.0.13

func (*GetRecentlySharedWithRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetRecentlySharedWithRequest.ProtoReflect.Descriptor instead.

func (*GetRecentlySharedWithRequest) ProtoMessage added in v0.0.13

func (*GetRecentlySharedWithRequest) ProtoMessage()

func (*GetRecentlySharedWithRequest) ProtoReflect added in v0.0.13

func (*GetRecentlySharedWithRequest) Reset added in v0.0.13

func (x *GetRecentlySharedWithRequest) Reset()

func (*GetRecentlySharedWithRequest) String added in v0.0.13

type GetRecentlySharedWithResponse added in v0.0.13

type GetRecentlySharedWithResponse struct {
	Members []*FileMember `protobuf:"bytes,1,rep,name=members,proto3" json:"members,omitempty"`
	// contains filtered or unexported fields
}

func (*GetRecentlySharedWithResponse) Descriptor deprecated added in v0.0.13

func (*GetRecentlySharedWithResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetRecentlySharedWithResponse.ProtoReflect.Descriptor instead.

func (*GetRecentlySharedWithResponse) GetMembers added in v0.0.13

func (x *GetRecentlySharedWithResponse) GetMembers() []*FileMember

func (*GetRecentlySharedWithResponse) ProtoMessage added in v0.0.13

func (*GetRecentlySharedWithResponse) ProtoMessage()

func (*GetRecentlySharedWithResponse) ProtoReflect added in v0.0.13

func (*GetRecentlySharedWithResponse) Reset added in v0.0.13

func (x *GetRecentlySharedWithResponse) Reset()

func (*GetRecentlySharedWithResponse) String added in v0.0.13

type GetSharedByMeFilesRequest added in v0.0.34

type GetSharedByMeFilesRequest struct {
	Seek  string `protobuf:"bytes,1,opt,name=seek,proto3" json:"seek,omitempty"`
	Limit int64  `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
	// contains filtered or unexported fields
}

func (*GetSharedByMeFilesRequest) Descriptor deprecated added in v0.0.34

func (*GetSharedByMeFilesRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetSharedByMeFilesRequest.ProtoReflect.Descriptor instead.

func (*GetSharedByMeFilesRequest) GetLimit added in v0.0.34

func (x *GetSharedByMeFilesRequest) GetLimit() int64

func (*GetSharedByMeFilesRequest) GetSeek added in v0.0.34

func (x *GetSharedByMeFilesRequest) GetSeek() string

func (*GetSharedByMeFilesRequest) ProtoMessage added in v0.0.34

func (*GetSharedByMeFilesRequest) ProtoMessage()

func (*GetSharedByMeFilesRequest) ProtoReflect added in v0.0.34

func (*GetSharedByMeFilesRequest) Reset added in v0.0.34

func (x *GetSharedByMeFilesRequest) Reset()

func (*GetSharedByMeFilesRequest) String added in v0.0.34

func (x *GetSharedByMeFilesRequest) String() string

type GetSharedByMeFilesResponse added in v0.0.34

type GetSharedByMeFilesResponse struct {
	Items      []*SharedListDirectoryEntry `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"`
	NextOffset string                      `protobuf:"bytes,2,opt,name=nextOffset,proto3" json:"nextOffset,omitempty"`
	// contains filtered or unexported fields
}

func (*GetSharedByMeFilesResponse) Descriptor deprecated added in v0.0.34

func (*GetSharedByMeFilesResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetSharedByMeFilesResponse.ProtoReflect.Descriptor instead.

func (*GetSharedByMeFilesResponse) GetItems added in v0.0.34

func (*GetSharedByMeFilesResponse) GetNextOffset added in v0.0.34

func (x *GetSharedByMeFilesResponse) GetNextOffset() string

func (*GetSharedByMeFilesResponse) ProtoMessage added in v0.0.34

func (*GetSharedByMeFilesResponse) ProtoMessage()

func (*GetSharedByMeFilesResponse) ProtoReflect added in v0.0.34

func (*GetSharedByMeFilesResponse) Reset added in v0.0.34

func (x *GetSharedByMeFilesResponse) Reset()

func (*GetSharedByMeFilesResponse) String added in v0.0.34

func (x *GetSharedByMeFilesResponse) String() string

type GetSharedWithMeFilesRequest added in v0.0.13

type GetSharedWithMeFilesRequest struct {
	Seek  string `protobuf:"bytes,1,opt,name=seek,proto3" json:"seek,omitempty"`
	Limit int64  `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
	// contains filtered or unexported fields
}

func (*GetSharedWithMeFilesRequest) Descriptor deprecated added in v0.0.13

func (*GetSharedWithMeFilesRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetSharedWithMeFilesRequest.ProtoReflect.Descriptor instead.

func (*GetSharedWithMeFilesRequest) GetLimit added in v0.0.13

func (x *GetSharedWithMeFilesRequest) GetLimit() int64

func (*GetSharedWithMeFilesRequest) GetSeek added in v0.0.13

func (x *GetSharedWithMeFilesRequest) GetSeek() string

func (*GetSharedWithMeFilesRequest) ProtoMessage added in v0.0.13

func (*GetSharedWithMeFilesRequest) ProtoMessage()

func (*GetSharedWithMeFilesRequest) ProtoReflect added in v0.0.13

func (*GetSharedWithMeFilesRequest) Reset added in v0.0.13

func (x *GetSharedWithMeFilesRequest) Reset()

func (*GetSharedWithMeFilesRequest) String added in v0.0.13

func (x *GetSharedWithMeFilesRequest) String() string

type GetSharedWithMeFilesResponse added in v0.0.13

type GetSharedWithMeFilesResponse struct {
	Items      []*SharedListDirectoryEntry `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"`
	NextOffset string                      `protobuf:"bytes,2,opt,name=nextOffset,proto3" json:"nextOffset,omitempty"`
	// contains filtered or unexported fields
}

func (*GetSharedWithMeFilesResponse) Descriptor deprecated added in v0.0.13

func (*GetSharedWithMeFilesResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetSharedWithMeFilesResponse.ProtoReflect.Descriptor instead.

func (*GetSharedWithMeFilesResponse) GetItems added in v0.0.13

func (*GetSharedWithMeFilesResponse) GetNextOffset added in v0.0.13

func (x *GetSharedWithMeFilesResponse) GetNextOffset() string

func (*GetSharedWithMeFilesResponse) ProtoMessage added in v0.0.13

func (*GetSharedWithMeFilesResponse) ProtoMessage()

func (*GetSharedWithMeFilesResponse) ProtoReflect added in v0.0.13

func (*GetSharedWithMeFilesResponse) Reset added in v0.0.13

func (x *GetSharedWithMeFilesResponse) Reset()

func (*GetSharedWithMeFilesResponse) String added in v0.0.13

type GetStoredMnemonicRequest added in v0.0.13

type GetStoredMnemonicRequest struct {
	// contains filtered or unexported fields
}

func (*GetStoredMnemonicRequest) Descriptor deprecated added in v0.0.13

func (*GetStoredMnemonicRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetStoredMnemonicRequest.ProtoReflect.Descriptor instead.

func (*GetStoredMnemonicRequest) ProtoMessage added in v0.0.13

func (*GetStoredMnemonicRequest) ProtoMessage()

func (*GetStoredMnemonicRequest) ProtoReflect added in v0.0.13

func (x *GetStoredMnemonicRequest) ProtoReflect() protoreflect.Message

func (*GetStoredMnemonicRequest) Reset added in v0.0.13

func (x *GetStoredMnemonicRequest) Reset()

func (*GetStoredMnemonicRequest) String added in v0.0.13

func (x *GetStoredMnemonicRequest) String() string

type GetStoredMnemonicResponse added in v0.0.13

type GetStoredMnemonicResponse struct {
	Mnemonic string `protobuf:"bytes,1,opt,name=mnemonic,proto3" json:"mnemonic,omitempty"`
	// contains filtered or unexported fields
}

func (*GetStoredMnemonicResponse) Descriptor deprecated added in v0.0.13

func (*GetStoredMnemonicResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetStoredMnemonicResponse.ProtoReflect.Descriptor instead.

func (*GetStoredMnemonicResponse) GetMnemonic added in v0.0.13

func (x *GetStoredMnemonicResponse) GetMnemonic() string

func (*GetStoredMnemonicResponse) ProtoMessage added in v0.0.13

func (*GetStoredMnemonicResponse) ProtoMessage()

func (*GetStoredMnemonicResponse) ProtoReflect added in v0.0.13

func (*GetStoredMnemonicResponse) Reset added in v0.0.13

func (x *GetStoredMnemonicResponse) Reset()

func (*GetStoredMnemonicResponse) String added in v0.0.13

func (x *GetStoredMnemonicResponse) String() string

type GetUsageInfoRequest added in v0.0.13

type GetUsageInfoRequest struct {
	// contains filtered or unexported fields
}

func (*GetUsageInfoRequest) Descriptor deprecated added in v0.0.13

func (*GetUsageInfoRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetUsageInfoRequest.ProtoReflect.Descriptor instead.

func (*GetUsageInfoRequest) ProtoMessage added in v0.0.13

func (*GetUsageInfoRequest) ProtoMessage()

func (*GetUsageInfoRequest) ProtoReflect added in v0.0.13

func (x *GetUsageInfoRequest) ProtoReflect() protoreflect.Message

func (*GetUsageInfoRequest) Reset added in v0.0.13

func (x *GetUsageInfoRequest) Reset()

func (*GetUsageInfoRequest) String added in v0.0.13

func (x *GetUsageInfoRequest) String() string

type GetUsageInfoResponse added in v0.0.13

type GetUsageInfoResponse struct {
	LocalStarogeUsed   uint64 `protobuf:"varint,1,opt,name=localStarogeUsed,proto3" json:"localStarogeUsed,omitempty"`
	LocalBandwidthUsed uint64 `protobuf:"varint,2,opt,name=localBandwidthUsed,proto3" json:"localBandwidthUsed,omitempty"`
	SpaceStorageUsed   uint64 `protobuf:"varint,3,opt,name=spaceStorageUsed,proto3" json:"spaceStorageUsed,omitempty"`
	SpaceBandwidthUsed uint64 `protobuf:"varint,4,opt,name=spaceBandwidthUsed,proto3" json:"spaceBandwidthUsed,omitempty"`
	UsageQuota         uint64 `protobuf:"varint,5,opt,name=usageQuota,proto3" json:"usageQuota,omitempty"`
	// contains filtered or unexported fields
}

func (*GetUsageInfoResponse) Descriptor deprecated added in v0.0.13

func (*GetUsageInfoResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetUsageInfoResponse.ProtoReflect.Descriptor instead.

func (*GetUsageInfoResponse) GetLocalBandwidthUsed added in v0.0.13

func (x *GetUsageInfoResponse) GetLocalBandwidthUsed() uint64

func (*GetUsageInfoResponse) GetLocalStarogeUsed added in v0.0.13

func (x *GetUsageInfoResponse) GetLocalStarogeUsed() uint64

func (*GetUsageInfoResponse) GetSpaceBandwidthUsed added in v0.0.13

func (x *GetUsageInfoResponse) GetSpaceBandwidthUsed() uint64

func (*GetUsageInfoResponse) GetSpaceStorageUsed added in v0.0.13

func (x *GetUsageInfoResponse) GetSpaceStorageUsed() uint64

func (*GetUsageInfoResponse) GetUsageQuota added in v0.0.13

func (x *GetUsageInfoResponse) GetUsageQuota() uint64

func (*GetUsageInfoResponse) ProtoMessage added in v0.0.13

func (*GetUsageInfoResponse) ProtoMessage()

func (*GetUsageInfoResponse) ProtoReflect added in v0.0.13

func (x *GetUsageInfoResponse) ProtoReflect() protoreflect.Message

func (*GetUsageInfoResponse) Reset added in v0.0.13

func (x *GetUsageInfoResponse) Reset()

func (*GetUsageInfoResponse) String added in v0.0.13

func (x *GetUsageInfoResponse) String() string

type HandleFilesInvitationRequest added in v0.0.13

type HandleFilesInvitationRequest struct {
	InvitationID string `protobuf:"bytes,1,opt,name=invitationID,proto3" json:"invitationID,omitempty"`
	Accept       bool   `protobuf:"varint,2,opt,name=accept,proto3" json:"accept,omitempty"`
	// contains filtered or unexported fields
}

func (*HandleFilesInvitationRequest) Descriptor deprecated added in v0.0.13

func (*HandleFilesInvitationRequest) Descriptor() ([]byte, []int)

Deprecated: Use HandleFilesInvitationRequest.ProtoReflect.Descriptor instead.

func (*HandleFilesInvitationRequest) GetAccept added in v0.0.13

func (x *HandleFilesInvitationRequest) GetAccept() bool

func (*HandleFilesInvitationRequest) GetInvitationID added in v0.0.13

func (x *HandleFilesInvitationRequest) GetInvitationID() string

func (*HandleFilesInvitationRequest) ProtoMessage added in v0.0.13

func (*HandleFilesInvitationRequest) ProtoMessage()

func (*HandleFilesInvitationRequest) ProtoReflect added in v0.0.13

func (*HandleFilesInvitationRequest) Reset added in v0.0.13

func (x *HandleFilesInvitationRequest) Reset()

func (*HandleFilesInvitationRequest) String added in v0.0.13

type HandleFilesInvitationResponse added in v0.0.13

type HandleFilesInvitationResponse struct {
	// contains filtered or unexported fields
}

func (*HandleFilesInvitationResponse) Descriptor deprecated added in v0.0.13

func (*HandleFilesInvitationResponse) Descriptor() ([]byte, []int)

Deprecated: Use HandleFilesInvitationResponse.ProtoReflect.Descriptor instead.

func (*HandleFilesInvitationResponse) ProtoMessage added in v0.0.13

func (*HandleFilesInvitationResponse) ProtoMessage()

func (*HandleFilesInvitationResponse) ProtoReflect added in v0.0.13

func (*HandleFilesInvitationResponse) Reset added in v0.0.13

func (x *HandleFilesInvitationResponse) Reset()

func (*HandleFilesInvitationResponse) String added in v0.0.13

type InitializeMasterAppTokenRequest added in v0.1.0

type InitializeMasterAppTokenRequest struct {
	// contains filtered or unexported fields
}

func (*InitializeMasterAppTokenRequest) Descriptor deprecated added in v0.1.0

func (*InitializeMasterAppTokenRequest) Descriptor() ([]byte, []int)

Deprecated: Use InitializeMasterAppTokenRequest.ProtoReflect.Descriptor instead.

func (*InitializeMasterAppTokenRequest) ProtoMessage added in v0.1.0

func (*InitializeMasterAppTokenRequest) ProtoMessage()

func (*InitializeMasterAppTokenRequest) ProtoReflect added in v0.1.0

func (*InitializeMasterAppTokenRequest) Reset added in v0.1.0

func (*InitializeMasterAppTokenRequest) String added in v0.1.0

type InitializeMasterAppTokenResponse added in v0.1.0

type InitializeMasterAppTokenResponse struct {
	AppToken string `protobuf:"bytes,1,opt,name=appToken,proto3" json:"appToken,omitempty"`
	// contains filtered or unexported fields
}

func (*InitializeMasterAppTokenResponse) Descriptor deprecated added in v0.1.0

func (*InitializeMasterAppTokenResponse) Descriptor() ([]byte, []int)

Deprecated: Use InitializeMasterAppTokenResponse.ProtoReflect.Descriptor instead.

func (*InitializeMasterAppTokenResponse) GetAppToken added in v0.1.0

func (x *InitializeMasterAppTokenResponse) GetAppToken() string

func (*InitializeMasterAppTokenResponse) ProtoMessage added in v0.1.0

func (*InitializeMasterAppTokenResponse) ProtoMessage()

func (*InitializeMasterAppTokenResponse) ProtoReflect added in v0.1.0

func (*InitializeMasterAppTokenResponse) Reset added in v0.1.0

func (*InitializeMasterAppTokenResponse) String added in v0.1.0

type Invitation added in v0.0.10

type Invitation struct {
	InviterPublicKey string           `protobuf:"bytes,1,opt,name=inviterPublicKey,proto3" json:"inviterPublicKey,omitempty"`
	InvitationID     string           `protobuf:"bytes,2,opt,name=invitationID,proto3" json:"invitationID,omitempty"`
	Status           InvitationStatus `protobuf:"varint,4,opt,name=status,proto3,enum=space.InvitationStatus" json:"status,omitempty"`
	ItemPaths        []*FullPath      `protobuf:"bytes,5,rep,name=itemPaths,proto3" json:"itemPaths,omitempty"`
	// contains filtered or unexported fields
}

func (*Invitation) Descriptor deprecated added in v0.0.10

func (*Invitation) Descriptor() ([]byte, []int)

Deprecated: Use Invitation.ProtoReflect.Descriptor instead.

func (*Invitation) GetInvitationID added in v0.0.10

func (x *Invitation) GetInvitationID() string

func (*Invitation) GetInviterPublicKey added in v0.0.10

func (x *Invitation) GetInviterPublicKey() string

func (*Invitation) GetItemPaths added in v0.0.11

func (x *Invitation) GetItemPaths() []*FullPath

func (*Invitation) GetStatus added in v0.0.11

func (x *Invitation) GetStatus() InvitationStatus

func (*Invitation) ProtoMessage added in v0.0.10

func (*Invitation) ProtoMessage()

func (*Invitation) ProtoReflect added in v0.0.10

func (x *Invitation) ProtoReflect() protoreflect.Message

func (*Invitation) Reset added in v0.0.10

func (x *Invitation) Reset()

func (*Invitation) String added in v0.0.10

func (x *Invitation) String() string

type InvitationAccept added in v0.0.14

type InvitationAccept struct {
	InvitationID string `protobuf:"bytes,2,opt,name=invitationID,proto3" json:"invitationID,omitempty"`
	// contains filtered or unexported fields
}

func (*InvitationAccept) Descriptor deprecated added in v0.0.14

func (*InvitationAccept) Descriptor() ([]byte, []int)

Deprecated: Use InvitationAccept.ProtoReflect.Descriptor instead.

func (*InvitationAccept) GetInvitationID added in v0.0.14

func (x *InvitationAccept) GetInvitationID() string

func (*InvitationAccept) ProtoMessage added in v0.0.14

func (*InvitationAccept) ProtoMessage()

func (*InvitationAccept) ProtoReflect added in v0.0.14

func (x *InvitationAccept) ProtoReflect() protoreflect.Message

func (*InvitationAccept) Reset added in v0.0.14

func (x *InvitationAccept) Reset()

func (*InvitationAccept) String added in v0.0.14

func (x *InvitationAccept) String() string

type InvitationStatus added in v0.0.11

type InvitationStatus int32
const (
	InvitationStatus_PENDING  InvitationStatus = 0
	InvitationStatus_ACCEPTED InvitationStatus = 1
	InvitationStatus_REJECTED InvitationStatus = 2
)

func (InvitationStatus) Descriptor added in v0.0.11

func (InvitationStatus) Enum added in v0.0.11

func (InvitationStatus) EnumDescriptor deprecated added in v0.0.11

func (InvitationStatus) EnumDescriptor() ([]byte, []int)

Deprecated: Use InvitationStatus.Descriptor instead.

func (InvitationStatus) Number added in v0.0.11

func (InvitationStatus) String added in v0.0.11

func (x InvitationStatus) String() string

func (InvitationStatus) Type added in v0.0.11

type JoinBucketRequest added in v0.0.8

type JoinBucketRequest struct {
	Threadinfo *ThreadInfo `protobuf:"bytes,1,opt,name=threadinfo,proto3" json:"threadinfo,omitempty"`
	Bucket     string      `protobuf:"bytes,2,opt,name=bucket,proto3" json:"bucket,omitempty"`
	// contains filtered or unexported fields
}

func (*JoinBucketRequest) Descriptor deprecated added in v0.0.8

func (*JoinBucketRequest) Descriptor() ([]byte, []int)

Deprecated: Use JoinBucketRequest.ProtoReflect.Descriptor instead.

func (*JoinBucketRequest) GetBucket added in v0.0.8

func (x *JoinBucketRequest) GetBucket() string

func (*JoinBucketRequest) GetThreadinfo added in v0.0.8

func (x *JoinBucketRequest) GetThreadinfo() *ThreadInfo

func (*JoinBucketRequest) ProtoMessage added in v0.0.8

func (*JoinBucketRequest) ProtoMessage()

func (*JoinBucketRequest) ProtoReflect added in v0.0.8

func (x *JoinBucketRequest) ProtoReflect() protoreflect.Message

func (*JoinBucketRequest) Reset added in v0.0.8

func (x *JoinBucketRequest) Reset()

func (*JoinBucketRequest) String added in v0.0.8

func (x *JoinBucketRequest) String() string

type JoinBucketResponse added in v0.0.8

type JoinBucketResponse struct {
	Result bool `protobuf:"varint,1,opt,name=result,proto3" json:"result,omitempty"`
	// contains filtered or unexported fields
}

func (*JoinBucketResponse) Descriptor deprecated added in v0.0.8

func (*JoinBucketResponse) Descriptor() ([]byte, []int)

Deprecated: Use JoinBucketResponse.ProtoReflect.Descriptor instead.

func (*JoinBucketResponse) GetResult added in v0.0.8

func (x *JoinBucketResponse) GetResult() bool

func (*JoinBucketResponse) ProtoMessage added in v0.0.8

func (*JoinBucketResponse) ProtoMessage()

func (*JoinBucketResponse) ProtoReflect added in v0.0.8

func (x *JoinBucketResponse) ProtoReflect() protoreflect.Message

func (*JoinBucketResponse) Reset added in v0.0.8

func (x *JoinBucketResponse) Reset()

func (*JoinBucketResponse) String added in v0.0.8

func (x *JoinBucketResponse) String() string

type KeyBackupType added in v0.0.34

type KeyBackupType int32
const (
	KeyBackupType_PASSWORD KeyBackupType = 0
	KeyBackupType_GOOGLE   KeyBackupType = 1
	KeyBackupType_TWITTER  KeyBackupType = 2
	KeyBackupType_EMAIL    KeyBackupType = 3
)

func (KeyBackupType) Descriptor added in v0.0.34

func (KeyBackupType) Enum added in v0.0.34

func (x KeyBackupType) Enum() *KeyBackupType

func (KeyBackupType) EnumDescriptor deprecated added in v0.0.34

func (KeyBackupType) EnumDescriptor() ([]byte, []int)

Deprecated: Use KeyBackupType.Descriptor instead.

func (KeyBackupType) Number added in v0.0.34

func (KeyBackupType) String added in v0.0.34

func (x KeyBackupType) String() string

func (KeyBackupType) Type added in v0.0.34

type ListBucketsRequest added in v0.0.8

type ListBucketsRequest struct {
	// contains filtered or unexported fields
}

func (*ListBucketsRequest) Descriptor deprecated added in v0.0.8

func (*ListBucketsRequest) Descriptor() ([]byte, []int)

Deprecated: Use ListBucketsRequest.ProtoReflect.Descriptor instead.

func (*ListBucketsRequest) ProtoMessage added in v0.0.8

func (*ListBucketsRequest) ProtoMessage()

func (*ListBucketsRequest) ProtoReflect added in v0.0.8

func (x *ListBucketsRequest) ProtoReflect() protoreflect.Message

func (*ListBucketsRequest) Reset added in v0.0.8

func (x *ListBucketsRequest) Reset()

func (*ListBucketsRequest) String added in v0.0.8

func (x *ListBucketsRequest) String() string

type ListBucketsResponse added in v0.0.8

type ListBucketsResponse struct {
	Buckets []*Bucket `protobuf:"bytes,1,rep,name=buckets,proto3" json:"buckets,omitempty"`
	// contains filtered or unexported fields
}

func (*ListBucketsResponse) Descriptor deprecated added in v0.0.8

func (*ListBucketsResponse) Descriptor() ([]byte, []int)

Deprecated: Use ListBucketsResponse.ProtoReflect.Descriptor instead.

func (*ListBucketsResponse) GetBuckets added in v0.0.8

func (x *ListBucketsResponse) GetBuckets() []*Bucket

func (*ListBucketsResponse) ProtoMessage added in v0.0.8

func (*ListBucketsResponse) ProtoMessage()

func (*ListBucketsResponse) ProtoReflect added in v0.0.8

func (x *ListBucketsResponse) ProtoReflect() protoreflect.Message

func (*ListBucketsResponse) Reset added in v0.0.8

func (x *ListBucketsResponse) Reset()

func (*ListBucketsResponse) String added in v0.0.8

func (x *ListBucketsResponse) String() string

type ListDirectoriesRequest

type ListDirectoriesRequest struct {
	Bucket      string `protobuf:"bytes,1,opt,name=bucket,proto3" json:"bucket,omitempty"`
	OmitMembers bool   `protobuf:"varint,2,opt,name=omitMembers,proto3" json:"omitMembers,omitempty"`
	// contains filtered or unexported fields
}

func (*ListDirectoriesRequest) Descriptor deprecated

func (*ListDirectoriesRequest) Descriptor() ([]byte, []int)

Deprecated: Use ListDirectoriesRequest.ProtoReflect.Descriptor instead.

func (*ListDirectoriesRequest) GetBucket added in v0.0.8

func (x *ListDirectoriesRequest) GetBucket() string

func (*ListDirectoriesRequest) GetOmitMembers added in v0.0.26

func (x *ListDirectoriesRequest) GetOmitMembers() bool

func (*ListDirectoriesRequest) ProtoMessage

func (*ListDirectoriesRequest) ProtoMessage()

func (*ListDirectoriesRequest) ProtoReflect

func (x *ListDirectoriesRequest) ProtoReflect() protoreflect.Message

func (*ListDirectoriesRequest) Reset

func (x *ListDirectoriesRequest) Reset()

func (*ListDirectoriesRequest) String

func (x *ListDirectoriesRequest) String() string

type ListDirectoriesResponse

type ListDirectoriesResponse struct {
	Entries []*ListDirectoryEntry `protobuf:"bytes,1,rep,name=entries,proto3" json:"entries,omitempty"`
	// contains filtered or unexported fields
}

func (*ListDirectoriesResponse) Descriptor deprecated

func (*ListDirectoriesResponse) Descriptor() ([]byte, []int)

Deprecated: Use ListDirectoriesResponse.ProtoReflect.Descriptor instead.

func (*ListDirectoriesResponse) GetEntries

func (x *ListDirectoriesResponse) GetEntries() []*ListDirectoryEntry

func (*ListDirectoriesResponse) ProtoMessage

func (*ListDirectoriesResponse) ProtoMessage()

func (*ListDirectoriesResponse) ProtoReflect

func (x *ListDirectoriesResponse) ProtoReflect() protoreflect.Message

func (*ListDirectoriesResponse) Reset

func (x *ListDirectoriesResponse) Reset()

func (*ListDirectoriesResponse) String

func (x *ListDirectoriesResponse) String() string

type ListDirectoryEntry

type ListDirectoryEntry struct {
	Path                string        `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	IsDir               bool          `protobuf:"varint,2,opt,name=isDir,proto3" json:"isDir,omitempty"`
	Name                string        `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	SizeInBytes         string        `protobuf:"bytes,4,opt,name=sizeInBytes,proto3" json:"sizeInBytes,omitempty"`
	Created             string        `protobuf:"bytes,5,opt,name=created,proto3" json:"created,omitempty"`
	Updated             string        `protobuf:"bytes,6,opt,name=updated,proto3" json:"updated,omitempty"`
	FileExtension       string        `protobuf:"bytes,7,opt,name=fileExtension,proto3" json:"fileExtension,omitempty"`
	IpfsHash            string        `protobuf:"bytes,8,opt,name=ipfsHash,proto3" json:"ipfsHash,omitempty"`
	IsLocallyAvailable  bool          `protobuf:"varint,9,opt,name=isLocallyAvailable,proto3" json:"isLocallyAvailable,omitempty"`
	BackupCount         int64         `protobuf:"varint,10,opt,name=backupCount,proto3" json:"backupCount,omitempty"`
	Members             []*FileMember `protobuf:"bytes,11,rep,name=members,proto3" json:"members,omitempty"`
	IsBackupInProgress  bool          `protobuf:"varint,12,opt,name=isBackupInProgress,proto3" json:"isBackupInProgress,omitempty"`
	IsRestoreInProgress bool          `protobuf:"varint,13,opt,name=isRestoreInProgress,proto3" json:"isRestoreInProgress,omitempty"`
	// contains filtered or unexported fields
}

func (*ListDirectoryEntry) Descriptor deprecated

func (*ListDirectoryEntry) Descriptor() ([]byte, []int)

Deprecated: Use ListDirectoryEntry.ProtoReflect.Descriptor instead.

func (*ListDirectoryEntry) GetBackupCount added in v0.0.13

func (x *ListDirectoryEntry) GetBackupCount() int64

func (*ListDirectoryEntry) GetCreated

func (x *ListDirectoryEntry) GetCreated() string

func (*ListDirectoryEntry) GetFileExtension

func (x *ListDirectoryEntry) GetFileExtension() string

func (*ListDirectoryEntry) GetIpfsHash

func (x *ListDirectoryEntry) GetIpfsHash() string

func (*ListDirectoryEntry) GetIsBackupInProgress added in v0.0.23

func (x *ListDirectoryEntry) GetIsBackupInProgress() bool

func (*ListDirectoryEntry) GetIsDir

func (x *ListDirectoryEntry) GetIsDir() bool

func (*ListDirectoryEntry) GetIsLocallyAvailable added in v0.0.13

func (x *ListDirectoryEntry) GetIsLocallyAvailable() bool

func (*ListDirectoryEntry) GetIsRestoreInProgress added in v0.0.28

func (x *ListDirectoryEntry) GetIsRestoreInProgress() bool

func (*ListDirectoryEntry) GetMembers added in v0.0.13

func (x *ListDirectoryEntry) GetMembers() []*FileMember

func (*ListDirectoryEntry) GetName

func (x *ListDirectoryEntry) GetName() string

func (*ListDirectoryEntry) GetPath

func (x *ListDirectoryEntry) GetPath() string

func (*ListDirectoryEntry) GetSizeInBytes

func (x *ListDirectoryEntry) GetSizeInBytes() string

func (*ListDirectoryEntry) GetUpdated

func (x *ListDirectoryEntry) GetUpdated() string

func (*ListDirectoryEntry) ProtoMessage

func (*ListDirectoryEntry) ProtoMessage()

func (*ListDirectoryEntry) ProtoReflect

func (x *ListDirectoryEntry) ProtoReflect() protoreflect.Message

func (*ListDirectoryEntry) Reset

func (x *ListDirectoryEntry) Reset()

func (*ListDirectoryEntry) String

func (x *ListDirectoryEntry) String() string

type ListDirectoryRequest

type ListDirectoryRequest struct {
	Path        string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	Bucket      string `protobuf:"bytes,2,opt,name=bucket,proto3" json:"bucket,omitempty"`
	OmitMembers bool   `protobuf:"varint,3,opt,name=omitMembers,proto3" json:"omitMembers,omitempty"`
	// contains filtered or unexported fields
}

func (*ListDirectoryRequest) Descriptor deprecated

func (*ListDirectoryRequest) Descriptor() ([]byte, []int)

Deprecated: Use ListDirectoryRequest.ProtoReflect.Descriptor instead.

func (*ListDirectoryRequest) GetBucket added in v0.0.8

func (x *ListDirectoryRequest) GetBucket() string

func (*ListDirectoryRequest) GetOmitMembers added in v0.0.26

func (x *ListDirectoryRequest) GetOmitMembers() bool

func (*ListDirectoryRequest) GetPath

func (x *ListDirectoryRequest) GetPath() string

func (*ListDirectoryRequest) ProtoMessage

func (*ListDirectoryRequest) ProtoMessage()

func (*ListDirectoryRequest) ProtoReflect

func (x *ListDirectoryRequest) ProtoReflect() protoreflect.Message

func (*ListDirectoryRequest) Reset

func (x *ListDirectoryRequest) Reset()

func (*ListDirectoryRequest) String

func (x *ListDirectoryRequest) String() string

type ListDirectoryResponse

type ListDirectoryResponse struct {
	Entries []*ListDirectoryEntry `protobuf:"bytes,1,rep,name=entries,proto3" json:"entries,omitempty"`
	// contains filtered or unexported fields
}

func (*ListDirectoryResponse) Descriptor deprecated

func (*ListDirectoryResponse) Descriptor() ([]byte, []int)

Deprecated: Use ListDirectoryResponse.ProtoReflect.Descriptor instead.

func (*ListDirectoryResponse) GetEntries

func (x *ListDirectoryResponse) GetEntries() []*ListDirectoryEntry

func (*ListDirectoryResponse) ProtoMessage

func (*ListDirectoryResponse) ProtoMessage()

func (*ListDirectoryResponse) ProtoReflect

func (x *ListDirectoryResponse) ProtoReflect() protoreflect.Message

func (*ListDirectoryResponse) Reset

func (x *ListDirectoryResponse) Reset()

func (*ListDirectoryResponse) String

func (x *ListDirectoryResponse) String() string

type Notification added in v0.0.11

type Notification struct {
	ID      string `protobuf:"bytes,1,opt,name=ID,proto3" json:"ID,omitempty"` // underlying message id from textile
	Subject string `protobuf:"bytes,2,opt,name=subject,proto3" json:"subject,omitempty"`
	Body    string `protobuf:"bytes,3,opt,name=body,proto3" json:"body,omitempty"`
	// Types that are assignable to RelatedObject:
	//	*Notification_InvitationValue
	//	*Notification_UsageAlert
	//	*Notification_InvitationAccept
	//	*Notification_RevokedInvitation
	RelatedObject isNotification_RelatedObject `protobuf_oneof:"relatedObject"`
	Type          NotificationType             `protobuf:"varint,8,opt,name=type,proto3,enum=space.NotificationType" json:"type,omitempty"`
	CreatedAt     int64                        `protobuf:"varint,9,opt,name=createdAt,proto3" json:"createdAt,omitempty"`
	ReadAt        int64                        `protobuf:"varint,10,opt,name=readAt,proto3" json:"readAt,omitempty"`
	// contains filtered or unexported fields
}

func (*Notification) Descriptor deprecated added in v0.0.11

func (*Notification) Descriptor() ([]byte, []int)

Deprecated: Use Notification.ProtoReflect.Descriptor instead.

func (*Notification) GetBody added in v0.0.11

func (x *Notification) GetBody() string

func (*Notification) GetCreatedAt added in v0.0.11

func (x *Notification) GetCreatedAt() int64

func (*Notification) GetID added in v0.0.11

func (x *Notification) GetID() string

func (*Notification) GetInvitationAccept added in v0.0.14

func (x *Notification) GetInvitationAccept() *InvitationAccept

func (*Notification) GetInvitationValue added in v0.0.11

func (x *Notification) GetInvitationValue() *Invitation

func (*Notification) GetReadAt added in v0.0.11

func (x *Notification) GetReadAt() int64

func (*Notification) GetRelatedObject added in v0.0.11

func (m *Notification) GetRelatedObject() isNotification_RelatedObject

func (*Notification) GetRevokedInvitation added in v0.1.3

func (x *Notification) GetRevokedInvitation() *RevokedInvitation

func (*Notification) GetSubject added in v0.0.11

func (x *Notification) GetSubject() string

func (*Notification) GetType added in v0.0.11

func (x *Notification) GetType() NotificationType

func (*Notification) GetUsageAlert added in v0.0.13

func (x *Notification) GetUsageAlert() *UsageAlert

func (*Notification) ProtoMessage added in v0.0.11

func (*Notification) ProtoMessage()

func (*Notification) ProtoReflect added in v0.0.11

func (x *Notification) ProtoReflect() protoreflect.Message

func (*Notification) Reset added in v0.0.11

func (x *Notification) Reset()

func (*Notification) String added in v0.0.11

func (x *Notification) String() string

type NotificationEventResponse added in v0.0.11

type NotificationEventResponse struct {
	Notification *Notification `protobuf:"bytes,1,opt,name=notification,proto3" json:"notification,omitempty"`
	// contains filtered or unexported fields
}

func (*NotificationEventResponse) Descriptor deprecated added in v0.0.11

func (*NotificationEventResponse) Descriptor() ([]byte, []int)

Deprecated: Use NotificationEventResponse.ProtoReflect.Descriptor instead.

func (*NotificationEventResponse) GetNotification added in v0.0.11

func (x *NotificationEventResponse) GetNotification() *Notification

func (*NotificationEventResponse) ProtoMessage added in v0.0.11

func (*NotificationEventResponse) ProtoMessage()

func (*NotificationEventResponse) ProtoReflect added in v0.0.11

func (*NotificationEventResponse) Reset added in v0.0.11

func (x *NotificationEventResponse) Reset()

func (*NotificationEventResponse) String added in v0.0.11

func (x *NotificationEventResponse) String() string

type NotificationType added in v0.0.11

type NotificationType int32
const (
	NotificationType_UNKNOWN            NotificationType = 0
	NotificationType_INVITATION         NotificationType = 1
	NotificationType_USAGEALERT         NotificationType = 2
	NotificationType_INVITATION_REPLY   NotificationType = 3
	NotificationType_REVOKED_INVITATION NotificationType = 4
)

func (NotificationType) Descriptor added in v0.0.11

func (NotificationType) Enum added in v0.0.11

func (NotificationType) EnumDescriptor deprecated added in v0.0.11

func (NotificationType) EnumDescriptor() ([]byte, []int)

Deprecated: Use NotificationType.Descriptor instead.

func (NotificationType) Number added in v0.0.11

func (NotificationType) String added in v0.0.11

func (x NotificationType) String() string

func (NotificationType) Type added in v0.0.11

type Notification_InvitationAccept added in v0.0.14

type Notification_InvitationAccept struct {
	InvitationAccept *InvitationAccept `protobuf:"bytes,6,opt,name=invitationAccept,proto3,oneof"`
}

type Notification_InvitationValue added in v0.0.11

type Notification_InvitationValue struct {
	InvitationValue *Invitation `protobuf:"bytes,4,opt,name=invitationValue,proto3,oneof"`
}

type Notification_RevokedInvitation added in v0.1.3

type Notification_RevokedInvitation struct {
	RevokedInvitation *RevokedInvitation `protobuf:"bytes,7,opt,name=revokedInvitation,proto3,oneof"`
}

type Notification_UsageAlert added in v0.0.13

type Notification_UsageAlert struct {
	UsageAlert *UsageAlert `protobuf:"bytes,5,opt,name=usageAlert,proto3,oneof"`
}

type OpenFileRequest

type OpenFileRequest struct {
	Path   string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	Bucket string `protobuf:"bytes,2,opt,name=bucket,proto3" json:"bucket,omitempty"`
	DbId   string `protobuf:"bytes,3,opt,name=dbId,proto3" json:"dbId,omitempty"` // optional field to specify shared with me file
	// contains filtered or unexported fields
}

func (*OpenFileRequest) Descriptor deprecated

func (*OpenFileRequest) Descriptor() ([]byte, []int)

Deprecated: Use OpenFileRequest.ProtoReflect.Descriptor instead.

func (*OpenFileRequest) GetBucket added in v0.0.8

func (x *OpenFileRequest) GetBucket() string

func (*OpenFileRequest) GetDbId added in v0.0.14

func (x *OpenFileRequest) GetDbId() string

func (*OpenFileRequest) GetPath

func (x *OpenFileRequest) GetPath() string

func (*OpenFileRequest) ProtoMessage

func (*OpenFileRequest) ProtoMessage()

func (*OpenFileRequest) ProtoReflect

func (x *OpenFileRequest) ProtoReflect() protoreflect.Message

func (*OpenFileRequest) Reset

func (x *OpenFileRequest) Reset()

func (*OpenFileRequest) String

func (x *OpenFileRequest) String() string

type OpenFileResponse

type OpenFileResponse struct {
	Location string `protobuf:"bytes,1,opt,name=location,proto3" json:"location,omitempty"`
	// contains filtered or unexported fields
}

func (*OpenFileResponse) Descriptor deprecated

func (*OpenFileResponse) Descriptor() ([]byte, []int)

Deprecated: Use OpenFileResponse.ProtoReflect.Descriptor instead.

func (*OpenFileResponse) GetLocation

func (x *OpenFileResponse) GetLocation() string

func (*OpenFileResponse) ProtoMessage

func (*OpenFileResponse) ProtoMessage()

func (*OpenFileResponse) ProtoReflect

func (x *OpenFileResponse) ProtoReflect() protoreflect.Message

func (*OpenFileResponse) Reset

func (x *OpenFileResponse) Reset()

func (*OpenFileResponse) String

func (x *OpenFileResponse) String() string

type OpenPublicFileRequest added in v0.0.10

type OpenPublicFileRequest struct {
	FileCid  string `protobuf:"bytes,1,opt,name=fileCid,proto3" json:"fileCid,omitempty"`
	Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
	Filename string `protobuf:"bytes,3,opt,name=filename,proto3" json:"filename,omitempty"`
	// contains filtered or unexported fields
}

func (*OpenPublicFileRequest) Descriptor deprecated added in v0.0.10

func (*OpenPublicFileRequest) Descriptor() ([]byte, []int)

Deprecated: Use OpenPublicFileRequest.ProtoReflect.Descriptor instead.

func (*OpenPublicFileRequest) GetFileCid added in v0.0.10

func (x *OpenPublicFileRequest) GetFileCid() string

func (*OpenPublicFileRequest) GetFilename added in v0.0.10

func (x *OpenPublicFileRequest) GetFilename() string

func (*OpenPublicFileRequest) GetPassword added in v0.0.26

func (x *OpenPublicFileRequest) GetPassword() string

func (*OpenPublicFileRequest) ProtoMessage added in v0.0.10

func (*OpenPublicFileRequest) ProtoMessage()

func (*OpenPublicFileRequest) ProtoReflect added in v0.0.10

func (x *OpenPublicFileRequest) ProtoReflect() protoreflect.Message

func (*OpenPublicFileRequest) Reset added in v0.0.10

func (x *OpenPublicFileRequest) Reset()

func (*OpenPublicFileRequest) String added in v0.0.10

func (x *OpenPublicFileRequest) String() string

type OpenPublicFileResponse added in v0.0.10

type OpenPublicFileResponse struct {
	Location string `protobuf:"bytes,1,opt,name=location,proto3" json:"location,omitempty"`
	// contains filtered or unexported fields
}

func (*OpenPublicFileResponse) Descriptor deprecated added in v0.0.10

func (*OpenPublicFileResponse) Descriptor() ([]byte, []int)

Deprecated: Use OpenPublicFileResponse.ProtoReflect.Descriptor instead.

func (*OpenPublicFileResponse) GetLocation added in v0.0.10

func (x *OpenPublicFileResponse) GetLocation() string

func (*OpenPublicFileResponse) ProtoMessage added in v0.0.10

func (*OpenPublicFileResponse) ProtoMessage()

func (*OpenPublicFileResponse) ProtoReflect added in v0.0.10

func (x *OpenPublicFileResponse) ProtoReflect() protoreflect.Message

func (*OpenPublicFileResponse) Reset added in v0.0.10

func (x *OpenPublicFileResponse) Reset()

func (*OpenPublicFileResponse) String added in v0.0.10

func (x *OpenPublicFileResponse) String() string

type ReadNotificationRequest added in v0.0.11

type ReadNotificationRequest struct {
	ID string `protobuf:"bytes,1,opt,name=ID,proto3" json:"ID,omitempty"`
	// contains filtered or unexported fields
}

func (*ReadNotificationRequest) Descriptor deprecated added in v0.0.11

func (*ReadNotificationRequest) Descriptor() ([]byte, []int)

Deprecated: Use ReadNotificationRequest.ProtoReflect.Descriptor instead.

func (*ReadNotificationRequest) GetID added in v0.0.11

func (x *ReadNotificationRequest) GetID() string

func (*ReadNotificationRequest) ProtoMessage added in v0.0.11

func (*ReadNotificationRequest) ProtoMessage()

func (*ReadNotificationRequest) ProtoReflect added in v0.0.11

func (x *ReadNotificationRequest) ProtoReflect() protoreflect.Message

func (*ReadNotificationRequest) Reset added in v0.0.11

func (x *ReadNotificationRequest) Reset()

func (*ReadNotificationRequest) String added in v0.0.11

func (x *ReadNotificationRequest) String() string

type ReadNotificationResponse added in v0.0.11

type ReadNotificationResponse struct {
	// contains filtered or unexported fields
}

func (*ReadNotificationResponse) Descriptor deprecated added in v0.0.11

func (*ReadNotificationResponse) Descriptor() ([]byte, []int)

Deprecated: Use ReadNotificationResponse.ProtoReflect.Descriptor instead.

func (*ReadNotificationResponse) ProtoMessage added in v0.0.11

func (*ReadNotificationResponse) ProtoMessage()

func (*ReadNotificationResponse) ProtoReflect added in v0.0.11

func (x *ReadNotificationResponse) ProtoReflect() protoreflect.Message

func (*ReadNotificationResponse) Reset added in v0.0.11

func (x *ReadNotificationResponse) Reset()

func (*ReadNotificationResponse) String added in v0.0.11

func (x *ReadNotificationResponse) String() string

type RecoverKeysByLocalBackupRequest added in v0.0.11

type RecoverKeysByLocalBackupRequest struct {
	PathToKeyBackup string `protobuf:"bytes,1,opt,name=pathToKeyBackup,proto3" json:"pathToKeyBackup,omitempty"`
	// contains filtered or unexported fields
}

func (*RecoverKeysByLocalBackupRequest) Descriptor deprecated added in v0.0.11

func (*RecoverKeysByLocalBackupRequest) Descriptor() ([]byte, []int)

Deprecated: Use RecoverKeysByLocalBackupRequest.ProtoReflect.Descriptor instead.

func (*RecoverKeysByLocalBackupRequest) GetPathToKeyBackup added in v0.0.11

func (x *RecoverKeysByLocalBackupRequest) GetPathToKeyBackup() string

func (*RecoverKeysByLocalBackupRequest) ProtoMessage added in v0.0.11

func (*RecoverKeysByLocalBackupRequest) ProtoMessage()

func (*RecoverKeysByLocalBackupRequest) ProtoReflect added in v0.0.11

func (*RecoverKeysByLocalBackupRequest) Reset added in v0.0.11

func (*RecoverKeysByLocalBackupRequest) String added in v0.0.11

type RecoverKeysByLocalBackupResponse added in v0.0.11

type RecoverKeysByLocalBackupResponse struct {
	// contains filtered or unexported fields
}

func (*RecoverKeysByLocalBackupResponse) Descriptor deprecated added in v0.0.11

func (*RecoverKeysByLocalBackupResponse) Descriptor() ([]byte, []int)

Deprecated: Use RecoverKeysByLocalBackupResponse.ProtoReflect.Descriptor instead.

func (*RecoverKeysByLocalBackupResponse) ProtoMessage added in v0.0.11

func (*RecoverKeysByLocalBackupResponse) ProtoMessage()

func (*RecoverKeysByLocalBackupResponse) ProtoReflect added in v0.0.11

func (*RecoverKeysByLocalBackupResponse) Reset added in v0.0.11

func (*RecoverKeysByLocalBackupResponse) String added in v0.0.11

type RecoverKeysByPassphraseRequest

type RecoverKeysByPassphraseRequest struct {
	Uuid       string        `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
	Passphrase string        `protobuf:"bytes,2,opt,name=passphrase,proto3" json:"passphrase,omitempty"`
	Type       KeyBackupType `protobuf:"varint,3,opt,name=type,proto3,enum=space.KeyBackupType" json:"type,omitempty"`
	// contains filtered or unexported fields
}

func (*RecoverKeysByPassphraseRequest) Descriptor deprecated

func (*RecoverKeysByPassphraseRequest) Descriptor() ([]byte, []int)

Deprecated: Use RecoverKeysByPassphraseRequest.ProtoReflect.Descriptor instead.

func (*RecoverKeysByPassphraseRequest) GetPassphrase

func (x *RecoverKeysByPassphraseRequest) GetPassphrase() string

func (*RecoverKeysByPassphraseRequest) GetType added in v0.1.3

func (*RecoverKeysByPassphraseRequest) GetUuid added in v0.0.13

func (*RecoverKeysByPassphraseRequest) ProtoMessage

func (*RecoverKeysByPassphraseRequest) ProtoMessage()

func (*RecoverKeysByPassphraseRequest) ProtoReflect

func (*RecoverKeysByPassphraseRequest) Reset

func (x *RecoverKeysByPassphraseRequest) Reset()

func (*RecoverKeysByPassphraseRequest) String

type RecoverKeysByPassphraseResponse

type RecoverKeysByPassphraseResponse struct {
	// contains filtered or unexported fields
}

func (*RecoverKeysByPassphraseResponse) Descriptor deprecated

func (*RecoverKeysByPassphraseResponse) Descriptor() ([]byte, []int)

Deprecated: Use RecoverKeysByPassphraseResponse.ProtoReflect.Descriptor instead.

func (*RecoverKeysByPassphraseResponse) ProtoMessage

func (*RecoverKeysByPassphraseResponse) ProtoMessage()

func (*RecoverKeysByPassphraseResponse) ProtoReflect

func (*RecoverKeysByPassphraseResponse) Reset

func (*RecoverKeysByPassphraseResponse) String

type RemoveDirOrFileRequest added in v0.1.3

type RemoveDirOrFileRequest struct {
	Path   string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	Bucket string `protobuf:"bytes,2,opt,name=bucket,proto3" json:"bucket,omitempty"`
	// contains filtered or unexported fields
}

func (*RemoveDirOrFileRequest) Descriptor deprecated added in v0.1.3

func (*RemoveDirOrFileRequest) Descriptor() ([]byte, []int)

Deprecated: Use RemoveDirOrFileRequest.ProtoReflect.Descriptor instead.

func (*RemoveDirOrFileRequest) GetBucket added in v0.1.3

func (x *RemoveDirOrFileRequest) GetBucket() string

func (*RemoveDirOrFileRequest) GetPath added in v0.1.3

func (x *RemoveDirOrFileRequest) GetPath() string

func (*RemoveDirOrFileRequest) ProtoMessage added in v0.1.3

func (*RemoveDirOrFileRequest) ProtoMessage()

func (*RemoveDirOrFileRequest) ProtoReflect added in v0.1.3

func (x *RemoveDirOrFileRequest) ProtoReflect() protoreflect.Message

func (*RemoveDirOrFileRequest) Reset added in v0.1.3

func (x *RemoveDirOrFileRequest) Reset()

func (*RemoveDirOrFileRequest) String added in v0.1.3

func (x *RemoveDirOrFileRequest) String() string

type RemoveDirOrFileResponse added in v0.1.3

type RemoveDirOrFileResponse struct {
	// contains filtered or unexported fields
}

func (*RemoveDirOrFileResponse) Descriptor deprecated added in v0.1.3

func (*RemoveDirOrFileResponse) Descriptor() ([]byte, []int)

Deprecated: Use RemoveDirOrFileResponse.ProtoReflect.Descriptor instead.

func (*RemoveDirOrFileResponse) ProtoMessage added in v0.1.3

func (*RemoveDirOrFileResponse) ProtoMessage()

func (*RemoveDirOrFileResponse) ProtoReflect added in v0.1.3

func (x *RemoveDirOrFileResponse) ProtoReflect() protoreflect.Message

func (*RemoveDirOrFileResponse) Reset added in v0.1.3

func (x *RemoveDirOrFileResponse) Reset()

func (*RemoveDirOrFileResponse) String added in v0.1.3

func (x *RemoveDirOrFileResponse) String() string

type RestoreKeyPairViaMnemonicRequest added in v0.0.13

type RestoreKeyPairViaMnemonicRequest struct {
	Mnemonic string `protobuf:"bytes,1,opt,name=mnemonic,proto3" json:"mnemonic,omitempty"`
	// contains filtered or unexported fields
}

func (*RestoreKeyPairViaMnemonicRequest) Descriptor deprecated added in v0.0.13

func (*RestoreKeyPairViaMnemonicRequest) Descriptor() ([]byte, []int)

Deprecated: Use RestoreKeyPairViaMnemonicRequest.ProtoReflect.Descriptor instead.

func (*RestoreKeyPairViaMnemonicRequest) GetMnemonic added in v0.0.13

func (x *RestoreKeyPairViaMnemonicRequest) GetMnemonic() string

func (*RestoreKeyPairViaMnemonicRequest) ProtoMessage added in v0.0.13

func (*RestoreKeyPairViaMnemonicRequest) ProtoMessage()

func (*RestoreKeyPairViaMnemonicRequest) ProtoReflect added in v0.0.13

func (*RestoreKeyPairViaMnemonicRequest) Reset added in v0.0.13

func (*RestoreKeyPairViaMnemonicRequest) String added in v0.0.13

type RestoreKeyPairViaMnemonicResponse added in v0.0.13

type RestoreKeyPairViaMnemonicResponse struct {
	// contains filtered or unexported fields
}

func (*RestoreKeyPairViaMnemonicResponse) Descriptor deprecated added in v0.0.13

func (*RestoreKeyPairViaMnemonicResponse) Descriptor() ([]byte, []int)

Deprecated: Use RestoreKeyPairViaMnemonicResponse.ProtoReflect.Descriptor instead.

func (*RestoreKeyPairViaMnemonicResponse) ProtoMessage added in v0.0.13

func (*RestoreKeyPairViaMnemonicResponse) ProtoMessage()

func (*RestoreKeyPairViaMnemonicResponse) ProtoReflect added in v0.0.13

func (*RestoreKeyPairViaMnemonicResponse) Reset added in v0.0.13

func (*RestoreKeyPairViaMnemonicResponse) String added in v0.0.13

type RevokedInvitation added in v0.1.3

type RevokedInvitation struct {
	InviterPublicKey string      `protobuf:"bytes,1,opt,name=inviterPublicKey,proto3" json:"inviterPublicKey,omitempty"`
	ItemPaths        []*FullPath `protobuf:"bytes,5,rep,name=itemPaths,proto3" json:"itemPaths,omitempty"`
	// contains filtered or unexported fields
}

func (*RevokedInvitation) Descriptor deprecated added in v0.1.3

func (*RevokedInvitation) Descriptor() ([]byte, []int)

Deprecated: Use RevokedInvitation.ProtoReflect.Descriptor instead.

func (*RevokedInvitation) GetInviterPublicKey added in v0.1.3

func (x *RevokedInvitation) GetInviterPublicKey() string

func (*RevokedInvitation) GetItemPaths added in v0.1.3

func (x *RevokedInvitation) GetItemPaths() []*FullPath

func (*RevokedInvitation) ProtoMessage added in v0.1.3

func (*RevokedInvitation) ProtoMessage()

func (*RevokedInvitation) ProtoReflect added in v0.1.3

func (x *RevokedInvitation) ProtoReflect() protoreflect.Message

func (*RevokedInvitation) Reset added in v0.1.3

func (x *RevokedInvitation) Reset()

func (*RevokedInvitation) String added in v0.1.3

func (x *RevokedInvitation) String() string

type SearchFilesDirectoryEntry added in v0.0.30

type SearchFilesDirectoryEntry struct {
	Entry  *ListDirectoryEntry `protobuf:"bytes,1,opt,name=entry,proto3" json:"entry,omitempty"`
	DbId   string              `protobuf:"bytes,2,opt,name=dbId,proto3" json:"dbId,omitempty"`
	Bucket string              `protobuf:"bytes,3,opt,name=bucket,proto3" json:"bucket,omitempty"`
	// contains filtered or unexported fields
}

func (*SearchFilesDirectoryEntry) Descriptor deprecated added in v0.0.30

func (*SearchFilesDirectoryEntry) Descriptor() ([]byte, []int)

Deprecated: Use SearchFilesDirectoryEntry.ProtoReflect.Descriptor instead.

func (*SearchFilesDirectoryEntry) GetBucket added in v0.0.30

func (x *SearchFilesDirectoryEntry) GetBucket() string

func (*SearchFilesDirectoryEntry) GetDbId added in v0.0.30

func (x *SearchFilesDirectoryEntry) GetDbId() string

func (*SearchFilesDirectoryEntry) GetEntry added in v0.0.30

func (*SearchFilesDirectoryEntry) ProtoMessage added in v0.0.30

func (*SearchFilesDirectoryEntry) ProtoMessage()

func (*SearchFilesDirectoryEntry) ProtoReflect added in v0.0.30

func (*SearchFilesDirectoryEntry) Reset added in v0.0.30

func (x *SearchFilesDirectoryEntry) Reset()

func (*SearchFilesDirectoryEntry) String added in v0.0.30

func (x *SearchFilesDirectoryEntry) String() string

type SearchFilesRequest added in v0.0.30

type SearchFilesRequest struct {
	Query string `protobuf:"bytes,1,opt,name=query,proto3" json:"query,omitempty"`
	// contains filtered or unexported fields
}

func (*SearchFilesRequest) Descriptor deprecated added in v0.0.30

func (*SearchFilesRequest) Descriptor() ([]byte, []int)

Deprecated: Use SearchFilesRequest.ProtoReflect.Descriptor instead.

func (*SearchFilesRequest) GetQuery added in v0.0.30

func (x *SearchFilesRequest) GetQuery() string

func (*SearchFilesRequest) ProtoMessage added in v0.0.30

func (*SearchFilesRequest) ProtoMessage()

func (*SearchFilesRequest) ProtoReflect added in v0.0.30

func (x *SearchFilesRequest) ProtoReflect() protoreflect.Message

func (*SearchFilesRequest) Reset added in v0.0.30

func (x *SearchFilesRequest) Reset()

func (*SearchFilesRequest) String added in v0.0.30

func (x *SearchFilesRequest) String() string

type SearchFilesResponse added in v0.0.30

type SearchFilesResponse struct {
	Entries []*SearchFilesDirectoryEntry `protobuf:"bytes,1,rep,name=entries,proto3" json:"entries,omitempty"`
	Query   string                       `protobuf:"bytes,2,opt,name=query,proto3" json:"query,omitempty"`
	// contains filtered or unexported fields
}

func (*SearchFilesResponse) Descriptor deprecated added in v0.0.30

func (*SearchFilesResponse) Descriptor() ([]byte, []int)

Deprecated: Use SearchFilesResponse.ProtoReflect.Descriptor instead.

func (*SearchFilesResponse) GetEntries added in v0.0.30

func (*SearchFilesResponse) GetQuery added in v0.0.30

func (x *SearchFilesResponse) GetQuery() string

func (*SearchFilesResponse) ProtoMessage added in v0.0.30

func (*SearchFilesResponse) ProtoMessage()

func (*SearchFilesResponse) ProtoReflect added in v0.0.30

func (x *SearchFilesResponse) ProtoReflect() protoreflect.Message

func (*SearchFilesResponse) Reset added in v0.0.30

func (x *SearchFilesResponse) Reset()

func (*SearchFilesResponse) String added in v0.0.30

func (x *SearchFilesResponse) String() string

type SetNotificationsLastSeenAtRequest added in v0.0.13

type SetNotificationsLastSeenAtRequest struct {
	Timestamp int64 `protobuf:"varint,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	// contains filtered or unexported fields
}

func (*SetNotificationsLastSeenAtRequest) Descriptor deprecated added in v0.0.13

func (*SetNotificationsLastSeenAtRequest) Descriptor() ([]byte, []int)

Deprecated: Use SetNotificationsLastSeenAtRequest.ProtoReflect.Descriptor instead.

func (*SetNotificationsLastSeenAtRequest) GetTimestamp added in v0.0.13

func (x *SetNotificationsLastSeenAtRequest) GetTimestamp() int64

func (*SetNotificationsLastSeenAtRequest) ProtoMessage added in v0.0.13

func (*SetNotificationsLastSeenAtRequest) ProtoMessage()

func (*SetNotificationsLastSeenAtRequest) ProtoReflect added in v0.0.13

func (*SetNotificationsLastSeenAtRequest) Reset added in v0.0.13

func (*SetNotificationsLastSeenAtRequest) String added in v0.0.13

type SetNotificationsLastSeenAtResponse added in v0.0.13

type SetNotificationsLastSeenAtResponse struct {
	// contains filtered or unexported fields
}

func (*SetNotificationsLastSeenAtResponse) Descriptor deprecated added in v0.0.13

func (*SetNotificationsLastSeenAtResponse) Descriptor() ([]byte, []int)

Deprecated: Use SetNotificationsLastSeenAtResponse.ProtoReflect.Descriptor instead.

func (*SetNotificationsLastSeenAtResponse) ProtoMessage added in v0.0.13

func (*SetNotificationsLastSeenAtResponse) ProtoMessage()

func (*SetNotificationsLastSeenAtResponse) ProtoReflect added in v0.0.13

func (*SetNotificationsLastSeenAtResponse) Reset added in v0.0.13

func (*SetNotificationsLastSeenAtResponse) String added in v0.0.13

type ShareBucketRequest added in v0.0.8

type ShareBucketRequest struct {
	Bucket string `protobuf:"bytes,1,opt,name=bucket,proto3" json:"bucket,omitempty"`
	// contains filtered or unexported fields
}

func (*ShareBucketRequest) Descriptor deprecated added in v0.0.8

func (*ShareBucketRequest) Descriptor() ([]byte, []int)

Deprecated: Use ShareBucketRequest.ProtoReflect.Descriptor instead.

func (*ShareBucketRequest) GetBucket added in v0.0.8

func (x *ShareBucketRequest) GetBucket() string

func (*ShareBucketRequest) ProtoMessage added in v0.0.8

func (*ShareBucketRequest) ProtoMessage()

func (*ShareBucketRequest) ProtoReflect added in v0.0.8

func (x *ShareBucketRequest) ProtoReflect() protoreflect.Message

func (*ShareBucketRequest) Reset added in v0.0.8

func (x *ShareBucketRequest) Reset()

func (*ShareBucketRequest) String added in v0.0.8

func (x *ShareBucketRequest) String() string

type ShareBucketResponse added in v0.0.8

type ShareBucketResponse struct {
	Threadinfo *ThreadInfo `protobuf:"bytes,1,opt,name=threadinfo,proto3" json:"threadinfo,omitempty"`
	// contains filtered or unexported fields
}

func (*ShareBucketResponse) Descriptor deprecated added in v0.0.8

func (*ShareBucketResponse) Descriptor() ([]byte, []int)

Deprecated: Use ShareBucketResponse.ProtoReflect.Descriptor instead.

func (*ShareBucketResponse) GetThreadinfo added in v0.0.8

func (x *ShareBucketResponse) GetThreadinfo() *ThreadInfo

func (*ShareBucketResponse) ProtoMessage added in v0.0.8

func (*ShareBucketResponse) ProtoMessage()

func (*ShareBucketResponse) ProtoReflect added in v0.0.8

func (x *ShareBucketResponse) ProtoReflect() protoreflect.Message

func (*ShareBucketResponse) Reset added in v0.0.8

func (x *ShareBucketResponse) Reset()

func (*ShareBucketResponse) String added in v0.0.8

func (x *ShareBucketResponse) String() string

type ShareFilesViaPublicKeyRequest added in v0.0.13

type ShareFilesViaPublicKeyRequest struct {
	PublicKeys []string    `protobuf:"bytes,1,rep,name=publicKeys,proto3" json:"publicKeys,omitempty"`
	Paths      []*FullPath `protobuf:"bytes,2,rep,name=paths,proto3" json:"paths,omitempty"`
	// contains filtered or unexported fields
}

func (*ShareFilesViaPublicKeyRequest) Descriptor deprecated added in v0.0.13

func (*ShareFilesViaPublicKeyRequest) Descriptor() ([]byte, []int)

Deprecated: Use ShareFilesViaPublicKeyRequest.ProtoReflect.Descriptor instead.

func (*ShareFilesViaPublicKeyRequest) GetPaths added in v0.0.13

func (x *ShareFilesViaPublicKeyRequest) GetPaths() []*FullPath

func (*ShareFilesViaPublicKeyRequest) GetPublicKeys added in v0.0.13

func (x *ShareFilesViaPublicKeyRequest) GetPublicKeys() []string

func (*ShareFilesViaPublicKeyRequest) ProtoMessage added in v0.0.13

func (*ShareFilesViaPublicKeyRequest) ProtoMessage()

func (*ShareFilesViaPublicKeyRequest) ProtoReflect added in v0.0.13

func (*ShareFilesViaPublicKeyRequest) Reset added in v0.0.13

func (x *ShareFilesViaPublicKeyRequest) Reset()

func (*ShareFilesViaPublicKeyRequest) String added in v0.0.13

type ShareFilesViaPublicKeyResponse added in v0.0.13

type ShareFilesViaPublicKeyResponse struct {
	// contains filtered or unexported fields
}

func (*ShareFilesViaPublicKeyResponse) Descriptor deprecated added in v0.0.13

func (*ShareFilesViaPublicKeyResponse) Descriptor() ([]byte, []int)

Deprecated: Use ShareFilesViaPublicKeyResponse.ProtoReflect.Descriptor instead.

func (*ShareFilesViaPublicKeyResponse) ProtoMessage added in v0.0.13

func (*ShareFilesViaPublicKeyResponse) ProtoMessage()

func (*ShareFilesViaPublicKeyResponse) ProtoReflect added in v0.0.13

func (*ShareFilesViaPublicKeyResponse) Reset added in v0.0.13

func (x *ShareFilesViaPublicKeyResponse) Reset()

func (*ShareFilesViaPublicKeyResponse) String added in v0.0.13

type SharedListDirectoryEntry added in v0.0.13

type SharedListDirectoryEntry struct {
	Entry        *ListDirectoryEntry `protobuf:"bytes,1,opt,name=entry,proto3" json:"entry,omitempty"`
	DbId         string              `protobuf:"bytes,2,opt,name=dbId,proto3" json:"dbId,omitempty"`
	Bucket       string              `protobuf:"bytes,3,opt,name=bucket,proto3" json:"bucket,omitempty"`
	IsPublicLink bool                `protobuf:"varint,4,opt,name=isPublicLink,proto3" json:"isPublicLink,omitempty"`
	SharedBy     string              `protobuf:"bytes,5,opt,name=sharedBy,proto3" json:"sharedBy,omitempty"`
	// contains filtered or unexported fields
}

func (*SharedListDirectoryEntry) Descriptor deprecated added in v0.0.13

func (*SharedListDirectoryEntry) Descriptor() ([]byte, []int)

Deprecated: Use SharedListDirectoryEntry.ProtoReflect.Descriptor instead.

func (*SharedListDirectoryEntry) GetBucket added in v0.0.13

func (x *SharedListDirectoryEntry) GetBucket() string

func (*SharedListDirectoryEntry) GetDbId added in v0.0.13

func (x *SharedListDirectoryEntry) GetDbId() string

func (*SharedListDirectoryEntry) GetEntry added in v0.0.13

func (x *SharedListDirectoryEntry) GetIsPublicLink() bool

func (*SharedListDirectoryEntry) GetSharedBy added in v0.1.3

func (x *SharedListDirectoryEntry) GetSharedBy() string

func (*SharedListDirectoryEntry) ProtoMessage added in v0.0.13

func (*SharedListDirectoryEntry) ProtoMessage()

func (*SharedListDirectoryEntry) ProtoReflect added in v0.0.13

func (x *SharedListDirectoryEntry) ProtoReflect() protoreflect.Message

func (*SharedListDirectoryEntry) Reset added in v0.0.13

func (x *SharedListDirectoryEntry) Reset()

func (*SharedListDirectoryEntry) String added in v0.0.13

func (x *SharedListDirectoryEntry) String() string

type SpaceApiClient

type SpaceApiClient interface {
	// Get all folder or files in the default bucket. It fetches all subdirectories too.
	ListDirectories(ctx context.Context, in *ListDirectoriesRequest, opts ...grpc.CallOption) (*ListDirectoriesResponse, error)
	// Get the folder or files in the path directory.
	// Unlike ListDirectories, this only returns immediate children at path.
	ListDirectory(ctx context.Context, in *ListDirectoryRequest, opts ...grpc.CallOption) (*ListDirectoryResponse, error)
	// Generate Key Pair for current account.
	// This will return error if daemon account already has keypairs
	GenerateKeyPair(ctx context.Context, in *GenerateKeyPairRequest, opts ...grpc.CallOption) (*GenerateKeyPairResponse, error)
	GetStoredMnemonic(ctx context.Context, in *GetStoredMnemonicRequest, opts ...grpc.CallOption) (*GetStoredMnemonicResponse, error)
	// Restores a keypair given a mnemonic.
	// This will override any existing key pair
	RestoreKeyPairViaMnemonic(ctx context.Context, in *RestoreKeyPairViaMnemonicRequest, opts ...grpc.CallOption) (*RestoreKeyPairViaMnemonicResponse, error)
	DeleteKeyPair(ctx context.Context, in *DeleteKeyPairRequest, opts ...grpc.CallOption) (*DeleteKeyPairResponse, error)
	// Force Generation of KeyPair. This will override existing keys stored in daemon.
	GenerateKeyPairWithForce(ctx context.Context, in *GenerateKeyPairRequest, opts ...grpc.CallOption) (*GenerateKeyPairResponse, error)
	GetPublicKey(ctx context.Context, in *GetPublicKeyRequest, opts ...grpc.CallOption) (*GetPublicKeyResponse, error)
	// Subscribe to file events. This streams responses to the caller
	Subscribe(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (SpaceApi_SubscribeClient, error)
	// Subscribe to textile events. This streams responses to the caller
	TxlSubscribe(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (SpaceApi_TxlSubscribeClient, error)
	// Open a file in the daemon.
	// Daemon keeps track of all open files and closes them if no activity is noticed after a while
	OpenFile(ctx context.Context, in *OpenFileRequest, opts ...grpc.CallOption) (*OpenFileResponse, error)
	// Removes a file or dir from a bucket
	RemoveDirOrFile(ctx context.Context, in *RemoveDirOrFileRequest, opts ...grpc.CallOption) (*RemoveDirOrFileResponse, error)
	// Generates a copy of the file that's accessible through IPFS gateways
	GeneratePublicFileLink(ctx context.Context, in *GeneratePublicFileLinkRequest, opts ...grpc.CallOption) (*GeneratePublicFileLinkResponse, error)
	// Gets the files that are shared with this recipient
	GetSharedWithMeFiles(ctx context.Context, in *GetSharedWithMeFilesRequest, opts ...grpc.CallOption) (*GetSharedWithMeFilesResponse, error)
	// Gets the files that are shared by the sender
	GetSharedByMeFiles(ctx context.Context, in *GetSharedByMeFilesRequest, opts ...grpc.CallOption) (*GetSharedByMeFilesResponse, error)
	// Open an encrypted public shared file in the daemon.
	// This requires the decryption key and file hash/cid to work
	OpenPublicFile(ctx context.Context, in *OpenPublicFileRequest, opts ...grpc.CallOption) (*OpenPublicFileResponse, error)
	// Adds items (files/folders) to be uploaded to the bucket.
	AddItems(ctx context.Context, in *AddItemsRequest, opts ...grpc.CallOption) (SpaceApi_AddItemsClient, error)
	// Creates a folder/directory at the specified path
	CreateFolder(ctx context.Context, in *CreateFolderRequest, opts ...grpc.CallOption) (*CreateFolderResponse, error)
	// Toggle FUSE drive to be mounted or unmounted
	ToggleFuseDrive(ctx context.Context, in *ToggleFuseRequest, opts ...grpc.CallOption) (*FuseDriveResponse, error)
	// Get status of FUSE drive. If mounted or unmounted
	GetFuseDriveStatus(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*FuseDriveResponse, error)
	// Create a new bucket owned by current user (aka keypair)
	CreateBucket(ctx context.Context, in *CreateBucketRequest, opts ...grpc.CallOption) (*CreateBucketResponse, error)
	// Backup Key by Passphrase
	BackupKeysByPassphrase(ctx context.Context, in *BackupKeysByPassphraseRequest, opts ...grpc.CallOption) (*BackupKeysByPassphraseResponse, error)
	// Recover Keys by Passphrase
	RecoverKeysByPassphrase(ctx context.Context, in *RecoverKeysByPassphraseRequest, opts ...grpc.CallOption) (*RecoverKeysByPassphraseResponse, error)
	// Tests a passphrase to see if it matches the one previously used
	TestKeysPassphrase(ctx context.Context, in *TestKeysPassphraseRequest, opts ...grpc.CallOption) (*TestKeysPassphraseResponse, error)
	CreateLocalKeysBackup(ctx context.Context, in *CreateLocalKeysBackupRequest, opts ...grpc.CallOption) (*CreateLocalKeysBackupResponse, error)
	RecoverKeysByLocalBackup(ctx context.Context, in *RecoverKeysByLocalBackupRequest, opts ...grpc.CallOption) (*RecoverKeysByLocalBackupResponse, error)
	// Share bucket
	ShareBucket(ctx context.Context, in *ShareBucketRequest, opts ...grpc.CallOption) (*ShareBucketResponse, error)
	// Join bucket
	JoinBucket(ctx context.Context, in *JoinBucketRequest, opts ...grpc.CallOption) (*JoinBucketResponse, error)
	// Share bucket via public key using Textile Hub inboxing
	ShareFilesViaPublicKey(ctx context.Context, in *ShareFilesViaPublicKeyRequest, opts ...grpc.CallOption) (*ShareFilesViaPublicKeyResponse, error)
	// Remove public keys for shared files in buckets
	UnshareFilesViaPublicKey(ctx context.Context, in *UnshareFilesViaPublicKeyRequest, opts ...grpc.CallOption) (*UnshareFilesViaPublicKeyResponse, error)
	HandleFilesInvitation(ctx context.Context, in *HandleFilesInvitationRequest, opts ...grpc.CallOption) (*HandleFilesInvitationResponse, error)
	NotificationSubscribe(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (SpaceApi_NotificationSubscribeClient, error)
	ListBuckets(ctx context.Context, in *ListBucketsRequest, opts ...grpc.CallOption) (*ListBucketsResponse, error)
	GetNotifications(ctx context.Context, in *GetNotificationsRequest, opts ...grpc.CallOption) (*GetNotificationsResponse, error)
	ReadNotification(ctx context.Context, in *ReadNotificationRequest, opts ...grpc.CallOption) (*ReadNotificationResponse, error)
	DeleteAccount(ctx context.Context, in *DeleteAccountRequest, opts ...grpc.CallOption) (*DeleteAccountResponse, error)
	ToggleBucketBackup(ctx context.Context, in *ToggleBucketBackupRequest, opts ...grpc.CallOption) (*ToggleBucketBackupResponse, error)
	BucketBackupRestore(ctx context.Context, in *BucketBackupRestoreRequest, opts ...grpc.CallOption) (*BucketBackupRestoreResponse, error)
	GetUsageInfo(ctx context.Context, in *GetUsageInfoRequest, opts ...grpc.CallOption) (*GetUsageInfoResponse, error)
	GetAPISessionTokens(ctx context.Context, in *GetAPISessionTokensRequest, opts ...grpc.CallOption) (*GetAPISessionTokensResponse, error)
	// Returns a list of addresses / public keys of clients to which files where shared or received, ordered by date
	GetRecentlySharedWith(ctx context.Context, in *GetRecentlySharedWithRequest, opts ...grpc.CallOption) (*GetRecentlySharedWithResponse, error)
	// This will set the last read timestamp for the user so that the client
	// can check if newer notifications are present for UX
	SetNotificationsLastSeenAt(ctx context.Context, in *SetNotificationsLastSeenAtRequest, opts ...grpc.CallOption) (*SetNotificationsLastSeenAtResponse, error)
	// Search for files across all users bucket
	SearchFiles(ctx context.Context, in *SearchFilesRequest, opts ...grpc.CallOption) (*SearchFilesResponse, error)
	// Initialize master app token
	// App tokens are used to authorize scoped access to a range of methods
	// Master token can only be generated once and has access to all methods
	InitializeMasterAppToken(ctx context.Context, in *InitializeMasterAppTokenRequest, opts ...grpc.CallOption) (*InitializeMasterAppTokenResponse, error)
	// Generates an app token with scoped access.
	GenerateAppToken(ctx context.Context, in *GenerateAppTokenRequest, opts ...grpc.CallOption) (*GenerateAppTokenResponse, error)
}

SpaceApiClient is the client API for SpaceApi service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewSpaceApiClient

func NewSpaceApiClient(cc grpc.ClientConnInterface) SpaceApiClient

type SpaceApiServer

type SpaceApiServer interface {
	// Get all folder or files in the default bucket. It fetches all subdirectories too.
	ListDirectories(context.Context, *ListDirectoriesRequest) (*ListDirectoriesResponse, error)
	// Get the folder or files in the path directory.
	// Unlike ListDirectories, this only returns immediate children at path.
	ListDirectory(context.Context, *ListDirectoryRequest) (*ListDirectoryResponse, error)
	// Generate Key Pair for current account.
	// This will return error if daemon account already has keypairs
	GenerateKeyPair(context.Context, *GenerateKeyPairRequest) (*GenerateKeyPairResponse, error)
	GetStoredMnemonic(context.Context, *GetStoredMnemonicRequest) (*GetStoredMnemonicResponse, error)
	// Restores a keypair given a mnemonic.
	// This will override any existing key pair
	RestoreKeyPairViaMnemonic(context.Context, *RestoreKeyPairViaMnemonicRequest) (*RestoreKeyPairViaMnemonicResponse, error)
	DeleteKeyPair(context.Context, *DeleteKeyPairRequest) (*DeleteKeyPairResponse, error)
	// Force Generation of KeyPair. This will override existing keys stored in daemon.
	GenerateKeyPairWithForce(context.Context, *GenerateKeyPairRequest) (*GenerateKeyPairResponse, error)
	GetPublicKey(context.Context, *GetPublicKeyRequest) (*GetPublicKeyResponse, error)
	// Subscribe to file events. This streams responses to the caller
	Subscribe(*empty.Empty, SpaceApi_SubscribeServer) error
	// Subscribe to textile events. This streams responses to the caller
	TxlSubscribe(*empty.Empty, SpaceApi_TxlSubscribeServer) error
	// Open a file in the daemon.
	// Daemon keeps track of all open files and closes them if no activity is noticed after a while
	OpenFile(context.Context, *OpenFileRequest) (*OpenFileResponse, error)
	// Removes a file or dir from a bucket
	RemoveDirOrFile(context.Context, *RemoveDirOrFileRequest) (*RemoveDirOrFileResponse, error)
	// Generates a copy of the file that's accessible through IPFS gateways
	GeneratePublicFileLink(context.Context, *GeneratePublicFileLinkRequest) (*GeneratePublicFileLinkResponse, error)
	// Gets the files that are shared with this recipient
	GetSharedWithMeFiles(context.Context, *GetSharedWithMeFilesRequest) (*GetSharedWithMeFilesResponse, error)
	// Gets the files that are shared by the sender
	GetSharedByMeFiles(context.Context, *GetSharedByMeFilesRequest) (*GetSharedByMeFilesResponse, error)
	// Open an encrypted public shared file in the daemon.
	// This requires the decryption key and file hash/cid to work
	OpenPublicFile(context.Context, *OpenPublicFileRequest) (*OpenPublicFileResponse, error)
	// Adds items (files/folders) to be uploaded to the bucket.
	AddItems(*AddItemsRequest, SpaceApi_AddItemsServer) error
	// Creates a folder/directory at the specified path
	CreateFolder(context.Context, *CreateFolderRequest) (*CreateFolderResponse, error)
	// Toggle FUSE drive to be mounted or unmounted
	ToggleFuseDrive(context.Context, *ToggleFuseRequest) (*FuseDriveResponse, error)
	// Get status of FUSE drive. If mounted or unmounted
	GetFuseDriveStatus(context.Context, *empty.Empty) (*FuseDriveResponse, error)
	// Create a new bucket owned by current user (aka keypair)
	CreateBucket(context.Context, *CreateBucketRequest) (*CreateBucketResponse, error)
	// Backup Key by Passphrase
	BackupKeysByPassphrase(context.Context, *BackupKeysByPassphraseRequest) (*BackupKeysByPassphraseResponse, error)
	// Recover Keys by Passphrase
	RecoverKeysByPassphrase(context.Context, *RecoverKeysByPassphraseRequest) (*RecoverKeysByPassphraseResponse, error)
	// Tests a passphrase to see if it matches the one previously used
	TestKeysPassphrase(context.Context, *TestKeysPassphraseRequest) (*TestKeysPassphraseResponse, error)
	CreateLocalKeysBackup(context.Context, *CreateLocalKeysBackupRequest) (*CreateLocalKeysBackupResponse, error)
	RecoverKeysByLocalBackup(context.Context, *RecoverKeysByLocalBackupRequest) (*RecoverKeysByLocalBackupResponse, error)
	// Share bucket
	ShareBucket(context.Context, *ShareBucketRequest) (*ShareBucketResponse, error)
	// Join bucket
	JoinBucket(context.Context, *JoinBucketRequest) (*JoinBucketResponse, error)
	// Share bucket via public key using Textile Hub inboxing
	ShareFilesViaPublicKey(context.Context, *ShareFilesViaPublicKeyRequest) (*ShareFilesViaPublicKeyResponse, error)
	// Remove public keys for shared files in buckets
	UnshareFilesViaPublicKey(context.Context, *UnshareFilesViaPublicKeyRequest) (*UnshareFilesViaPublicKeyResponse, error)
	HandleFilesInvitation(context.Context, *HandleFilesInvitationRequest) (*HandleFilesInvitationResponse, error)
	NotificationSubscribe(*empty.Empty, SpaceApi_NotificationSubscribeServer) error
	ListBuckets(context.Context, *ListBucketsRequest) (*ListBucketsResponse, error)
	GetNotifications(context.Context, *GetNotificationsRequest) (*GetNotificationsResponse, error)
	ReadNotification(context.Context, *ReadNotificationRequest) (*ReadNotificationResponse, error)
	DeleteAccount(context.Context, *DeleteAccountRequest) (*DeleteAccountResponse, error)
	ToggleBucketBackup(context.Context, *ToggleBucketBackupRequest) (*ToggleBucketBackupResponse, error)
	BucketBackupRestore(context.Context, *BucketBackupRestoreRequest) (*BucketBackupRestoreResponse, error)
	GetUsageInfo(context.Context, *GetUsageInfoRequest) (*GetUsageInfoResponse, error)
	GetAPISessionTokens(context.Context, *GetAPISessionTokensRequest) (*GetAPISessionTokensResponse, error)
	// Returns a list of addresses / public keys of clients to which files where shared or received, ordered by date
	GetRecentlySharedWith(context.Context, *GetRecentlySharedWithRequest) (*GetRecentlySharedWithResponse, error)
	// This will set the last read timestamp for the user so that the client
	// can check if newer notifications are present for UX
	SetNotificationsLastSeenAt(context.Context, *SetNotificationsLastSeenAtRequest) (*SetNotificationsLastSeenAtResponse, error)
	// Search for files across all users bucket
	SearchFiles(context.Context, *SearchFilesRequest) (*SearchFilesResponse, error)
	// Initialize master app token
	// App tokens are used to authorize scoped access to a range of methods
	// Master token can only be generated once and has access to all methods
	InitializeMasterAppToken(context.Context, *InitializeMasterAppTokenRequest) (*InitializeMasterAppTokenResponse, error)
	// Generates an app token with scoped access.
	GenerateAppToken(context.Context, *GenerateAppTokenRequest) (*GenerateAppTokenResponse, error)
}

SpaceApiServer is the server API for SpaceApi service.

type SpaceApi_AddItemsClient

type SpaceApi_AddItemsClient interface {
	Recv() (*AddItemsResponse, error)
	grpc.ClientStream
}

type SpaceApi_AddItemsServer

type SpaceApi_AddItemsServer interface {
	Send(*AddItemsResponse) error
	grpc.ServerStream
}

type SpaceApi_NotificationSubscribeClient added in v0.0.11

type SpaceApi_NotificationSubscribeClient interface {
	Recv() (*NotificationEventResponse, error)
	grpc.ClientStream
}

type SpaceApi_NotificationSubscribeServer added in v0.0.11

type SpaceApi_NotificationSubscribeServer interface {
	Send(*NotificationEventResponse) error
	grpc.ServerStream
}

type SpaceApi_SubscribeClient

type SpaceApi_SubscribeClient interface {
	Recv() (*FileEventResponse, error)
	grpc.ClientStream
}

type SpaceApi_SubscribeServer

type SpaceApi_SubscribeServer interface {
	Send(*FileEventResponse) error
	grpc.ServerStream
}

type SpaceApi_TxlSubscribeClient

type SpaceApi_TxlSubscribeClient interface {
	Recv() (*TextileEventResponse, error)
	grpc.ClientStream
}

type SpaceApi_TxlSubscribeServer

type SpaceApi_TxlSubscribeServer interface {
	Send(*TextileEventResponse) error
	grpc.ServerStream
}

type TestKeysPassphraseRequest added in v0.0.13

type TestKeysPassphraseRequest struct {
	Uuid       string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
	Passphrase string `protobuf:"bytes,2,opt,name=passphrase,proto3" json:"passphrase,omitempty"`
	// contains filtered or unexported fields
}

func (*TestKeysPassphraseRequest) Descriptor deprecated added in v0.0.13

func (*TestKeysPassphraseRequest) Descriptor() ([]byte, []int)

Deprecated: Use TestKeysPassphraseRequest.ProtoReflect.Descriptor instead.

func (*TestKeysPassphraseRequest) GetPassphrase added in v0.0.13

func (x *TestKeysPassphraseRequest) GetPassphrase() string

func (*TestKeysPassphraseRequest) GetUuid added in v0.0.13

func (x *TestKeysPassphraseRequest) GetUuid() string

func (*TestKeysPassphraseRequest) ProtoMessage added in v0.0.13

func (*TestKeysPassphraseRequest) ProtoMessage()

func (*TestKeysPassphraseRequest) ProtoReflect added in v0.0.13

func (*TestKeysPassphraseRequest) Reset added in v0.0.13

func (x *TestKeysPassphraseRequest) Reset()

func (*TestKeysPassphraseRequest) String added in v0.0.13

func (x *TestKeysPassphraseRequest) String() string

type TestKeysPassphraseResponse added in v0.0.13

type TestKeysPassphraseResponse struct {
	// contains filtered or unexported fields
}

func (*TestKeysPassphraseResponse) Descriptor deprecated added in v0.0.13

func (*TestKeysPassphraseResponse) Descriptor() ([]byte, []int)

Deprecated: Use TestKeysPassphraseResponse.ProtoReflect.Descriptor instead.

func (*TestKeysPassphraseResponse) ProtoMessage added in v0.0.13

func (*TestKeysPassphraseResponse) ProtoMessage()

func (*TestKeysPassphraseResponse) ProtoReflect added in v0.0.13

func (*TestKeysPassphraseResponse) Reset added in v0.0.13

func (x *TestKeysPassphraseResponse) Reset()

func (*TestKeysPassphraseResponse) String added in v0.0.13

func (x *TestKeysPassphraseResponse) String() string

type TextileEventResponse

type TextileEventResponse struct {
	Bucket string `protobuf:"bytes,1,opt,name=bucket,proto3" json:"bucket,omitempty"`
	// contains filtered or unexported fields
}

func (*TextileEventResponse) Descriptor deprecated

func (*TextileEventResponse) Descriptor() ([]byte, []int)

Deprecated: Use TextileEventResponse.ProtoReflect.Descriptor instead.

func (*TextileEventResponse) GetBucket

func (x *TextileEventResponse) GetBucket() string

func (*TextileEventResponse) ProtoMessage

func (*TextileEventResponse) ProtoMessage()

func (*TextileEventResponse) ProtoReflect

func (x *TextileEventResponse) ProtoReflect() protoreflect.Message

func (*TextileEventResponse) Reset

func (x *TextileEventResponse) Reset()

func (*TextileEventResponse) String

func (x *TextileEventResponse) String() string

type ThreadInfo added in v0.0.8

type ThreadInfo struct {
	Addresses []string `protobuf:"bytes,1,rep,name=addresses,proto3" json:"addresses,omitempty"`
	Key       string   `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	// contains filtered or unexported fields
}

func (*ThreadInfo) Descriptor deprecated added in v0.0.8

func (*ThreadInfo) Descriptor() ([]byte, []int)

Deprecated: Use ThreadInfo.ProtoReflect.Descriptor instead.

func (*ThreadInfo) GetAddresses added in v0.0.8

func (x *ThreadInfo) GetAddresses() []string

func (*ThreadInfo) GetKey added in v0.0.8

func (x *ThreadInfo) GetKey() string

func (*ThreadInfo) ProtoMessage added in v0.0.8

func (*ThreadInfo) ProtoMessage()

func (*ThreadInfo) ProtoReflect added in v0.0.8

func (x *ThreadInfo) ProtoReflect() protoreflect.Message

func (*ThreadInfo) Reset added in v0.0.8

func (x *ThreadInfo) Reset()

func (*ThreadInfo) String added in v0.0.8

func (x *ThreadInfo) String() string

type ToggleBucketBackupRequest added in v0.0.13

type ToggleBucketBackupRequest struct {
	Bucket string `protobuf:"bytes,1,opt,name=bucket,proto3" json:"bucket,omitempty"`
	Backup bool   `protobuf:"varint,2,opt,name=backup,proto3" json:"backup,omitempty"`
	// contains filtered or unexported fields
}

func (*ToggleBucketBackupRequest) Descriptor deprecated added in v0.0.13

func (*ToggleBucketBackupRequest) Descriptor() ([]byte, []int)

Deprecated: Use ToggleBucketBackupRequest.ProtoReflect.Descriptor instead.

func (*ToggleBucketBackupRequest) GetBackup added in v0.0.13

func (x *ToggleBucketBackupRequest) GetBackup() bool

func (*ToggleBucketBackupRequest) GetBucket added in v0.0.13

func (x *ToggleBucketBackupRequest) GetBucket() string

func (*ToggleBucketBackupRequest) ProtoMessage added in v0.0.13

func (*ToggleBucketBackupRequest) ProtoMessage()

func (*ToggleBucketBackupRequest) ProtoReflect added in v0.0.13

func (*ToggleBucketBackupRequest) Reset added in v0.0.13

func (x *ToggleBucketBackupRequest) Reset()

func (*ToggleBucketBackupRequest) String added in v0.0.13

func (x *ToggleBucketBackupRequest) String() string

type ToggleBucketBackupResponse added in v0.0.13

type ToggleBucketBackupResponse struct {
	// contains filtered or unexported fields
}

func (*ToggleBucketBackupResponse) Descriptor deprecated added in v0.0.13

func (*ToggleBucketBackupResponse) Descriptor() ([]byte, []int)

Deprecated: Use ToggleBucketBackupResponse.ProtoReflect.Descriptor instead.

func (*ToggleBucketBackupResponse) ProtoMessage added in v0.0.13

func (*ToggleBucketBackupResponse) ProtoMessage()

func (*ToggleBucketBackupResponse) ProtoReflect added in v0.0.13

func (*ToggleBucketBackupResponse) Reset added in v0.0.13

func (x *ToggleBucketBackupResponse) Reset()

func (*ToggleBucketBackupResponse) String added in v0.0.13

func (x *ToggleBucketBackupResponse) String() string

type ToggleFuseRequest

type ToggleFuseRequest struct {
	MountDrive bool `protobuf:"varint,1,opt,name=mountDrive,proto3" json:"mountDrive,omitempty"`
	// contains filtered or unexported fields
}

func (*ToggleFuseRequest) Descriptor deprecated

func (*ToggleFuseRequest) Descriptor() ([]byte, []int)

Deprecated: Use ToggleFuseRequest.ProtoReflect.Descriptor instead.

func (*ToggleFuseRequest) GetMountDrive

func (x *ToggleFuseRequest) GetMountDrive() bool

func (*ToggleFuseRequest) ProtoMessage

func (*ToggleFuseRequest) ProtoMessage()

func (*ToggleFuseRequest) ProtoReflect

func (x *ToggleFuseRequest) ProtoReflect() protoreflect.Message

func (*ToggleFuseRequest) Reset

func (x *ToggleFuseRequest) Reset()

func (*ToggleFuseRequest) String

func (x *ToggleFuseRequest) String() string

type UnimplementedSpaceApiServer

type UnimplementedSpaceApiServer struct {
}

UnimplementedSpaceApiServer can be embedded to have forward compatible implementations.

func (*UnimplementedSpaceApiServer) AddItems

func (*UnimplementedSpaceApiServer) BucketBackupRestore added in v0.0.28

func (*UnimplementedSpaceApiServer) CreateBucket

func (*UnimplementedSpaceApiServer) CreateFolder

func (*UnimplementedSpaceApiServer) CreateLocalKeysBackup added in v0.0.11

func (*UnimplementedSpaceApiServer) DeleteAccount added in v0.0.12

func (*UnimplementedSpaceApiServer) DeleteKeyPair added in v0.0.12

func (*UnimplementedSpaceApiServer) GenerateAppToken added in v0.1.0

func (*UnimplementedSpaceApiServer) GenerateKeyPair

func (*UnimplementedSpaceApiServer) GenerateKeyPairWithForce

func (*UnimplementedSpaceApiServer) GetAPISessionTokens added in v0.0.13

func (*UnimplementedSpaceApiServer) GetFuseDriveStatus

func (*UnimplementedSpaceApiServer) GetNotifications added in v0.0.11

func (*UnimplementedSpaceApiServer) GetPublicKey added in v0.0.11

func (*UnimplementedSpaceApiServer) GetRecentlySharedWith added in v0.0.13

func (*UnimplementedSpaceApiServer) GetSharedByMeFiles added in v0.0.34

func (*UnimplementedSpaceApiServer) GetSharedWithMeFiles added in v0.0.13

func (*UnimplementedSpaceApiServer) GetStoredMnemonic added in v0.0.13

func (*UnimplementedSpaceApiServer) GetUsageInfo added in v0.0.13

func (*UnimplementedSpaceApiServer) HandleFilesInvitation added in v0.0.13

func (*UnimplementedSpaceApiServer) InitializeMasterAppToken added in v0.1.0

func (*UnimplementedSpaceApiServer) JoinBucket added in v0.0.8

func (*UnimplementedSpaceApiServer) ListBuckets added in v0.0.8

func (*UnimplementedSpaceApiServer) ListDirectories

func (*UnimplementedSpaceApiServer) ListDirectory

func (*UnimplementedSpaceApiServer) NotificationSubscribe added in v0.0.11

func (*UnimplementedSpaceApiServer) OpenFile

func (*UnimplementedSpaceApiServer) OpenPublicFile added in v0.0.10

func (*UnimplementedSpaceApiServer) ReadNotification added in v0.0.11

func (*UnimplementedSpaceApiServer) RecoverKeysByLocalBackup added in v0.0.11

func (*UnimplementedSpaceApiServer) RemoveDirOrFile added in v0.1.3

func (*UnimplementedSpaceApiServer) RestoreKeyPairViaMnemonic added in v0.0.13

func (*UnimplementedSpaceApiServer) SearchFiles added in v0.0.30

func (*UnimplementedSpaceApiServer) SetNotificationsLastSeenAt added in v0.0.13

func (*UnimplementedSpaceApiServer) ShareBucket added in v0.0.8

func (*UnimplementedSpaceApiServer) ShareFilesViaPublicKey added in v0.0.13

func (*UnimplementedSpaceApiServer) Subscribe

func (*UnimplementedSpaceApiServer) TestKeysPassphrase added in v0.0.13

func (*UnimplementedSpaceApiServer) ToggleBucketBackup added in v0.0.13

func (*UnimplementedSpaceApiServer) ToggleFuseDrive

func (*UnimplementedSpaceApiServer) TxlSubscribe

func (*UnimplementedSpaceApiServer) UnshareFilesViaPublicKey added in v0.1.3

type UnshareFilesViaPublicKeyRequest added in v0.1.3

type UnshareFilesViaPublicKeyRequest struct {
	PublicKeys []string    `protobuf:"bytes,1,rep,name=publicKeys,proto3" json:"publicKeys,omitempty"`
	Paths      []*FullPath `protobuf:"bytes,2,rep,name=paths,proto3" json:"paths,omitempty"`
	// contains filtered or unexported fields
}

func (*UnshareFilesViaPublicKeyRequest) Descriptor deprecated added in v0.1.3

func (*UnshareFilesViaPublicKeyRequest) Descriptor() ([]byte, []int)

Deprecated: Use UnshareFilesViaPublicKeyRequest.ProtoReflect.Descriptor instead.

func (*UnshareFilesViaPublicKeyRequest) GetPaths added in v0.1.3

func (x *UnshareFilesViaPublicKeyRequest) GetPaths() []*FullPath

func (*UnshareFilesViaPublicKeyRequest) GetPublicKeys added in v0.1.3

func (x *UnshareFilesViaPublicKeyRequest) GetPublicKeys() []string

func (*UnshareFilesViaPublicKeyRequest) ProtoMessage added in v0.1.3

func (*UnshareFilesViaPublicKeyRequest) ProtoMessage()

func (*UnshareFilesViaPublicKeyRequest) ProtoReflect added in v0.1.3

func (*UnshareFilesViaPublicKeyRequest) Reset added in v0.1.3

func (*UnshareFilesViaPublicKeyRequest) String added in v0.1.3

type UnshareFilesViaPublicKeyResponse added in v0.1.3

type UnshareFilesViaPublicKeyResponse struct {
	// contains filtered or unexported fields
}

func (*UnshareFilesViaPublicKeyResponse) Descriptor deprecated added in v0.1.3

func (*UnshareFilesViaPublicKeyResponse) Descriptor() ([]byte, []int)

Deprecated: Use UnshareFilesViaPublicKeyResponse.ProtoReflect.Descriptor instead.

func (*UnshareFilesViaPublicKeyResponse) ProtoMessage added in v0.1.3

func (*UnshareFilesViaPublicKeyResponse) ProtoMessage()

func (*UnshareFilesViaPublicKeyResponse) ProtoReflect added in v0.1.3

func (*UnshareFilesViaPublicKeyResponse) Reset added in v0.1.3

func (*UnshareFilesViaPublicKeyResponse) String added in v0.1.3

type UsageAlert added in v0.0.13

type UsageAlert struct {
	Used    int64  `protobuf:"varint,1,opt,name=used,proto3" json:"used,omitempty"`
	Limit   int64  `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
	Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*UsageAlert) Descriptor deprecated added in v0.0.13

func (*UsageAlert) Descriptor() ([]byte, []int)

Deprecated: Use UsageAlert.ProtoReflect.Descriptor instead.

func (*UsageAlert) GetLimit added in v0.0.13

func (x *UsageAlert) GetLimit() int64

func (*UsageAlert) GetMessage added in v0.0.13

func (x *UsageAlert) GetMessage() string

func (*UsageAlert) GetUsed added in v0.0.13

func (x *UsageAlert) GetUsed() int64

func (*UsageAlert) ProtoMessage added in v0.0.13

func (*UsageAlert) ProtoMessage()

func (*UsageAlert) ProtoReflect added in v0.0.13

func (x *UsageAlert) ProtoReflect() protoreflect.Message

func (*UsageAlert) Reset added in v0.0.13

func (x *UsageAlert) Reset()

func (*UsageAlert) String added in v0.0.13

func (x *UsageAlert) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL