buckets

package
v0.0.0-...-89def8d Latest Latest
Warning

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

Go to latest
Published: May 24, 2021 License: MIT Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	PathAccessRole_name = map[int32]string{
		0: "PATH_ACCESS_ROLE_UNSPECIFIED",
		1: "PATH_ACCESS_ROLE_READER",
		2: "PATH_ACCESS_ROLE_WRITER",
		3: "PATH_ACCESS_ROLE_ADMIN",
	}
	PathAccessRole_value = map[string]int32{
		"PATH_ACCESS_ROLE_UNSPECIFIED": 0,
		"PATH_ACCESS_ROLE_READER":      1,
		"PATH_ACCESS_ROLE_WRITER":      2,
		"PATH_ACCESS_ROLE_ADMIN":       3,
	}
)

Enum value maps for PathAccessRole.

View Source
var File_api_pb_buckets_buckets_proto protoreflect.FileDescriptor

Functions

func RegisterAPIServiceServer

func RegisterAPIServiceServer(s *grpc.Server, srv APIServiceServer)

Types

type APIServiceClient

type APIServiceClient interface {
	Create(ctx context.Context, in *CreateRequest, opts ...grpc.CallOption) (*CreateResponse, error)
	Get(ctx context.Context, in *GetRequest, opts ...grpc.CallOption) (*GetResponse, error)
	GetLinks(ctx context.Context, in *GetLinksRequest, opts ...grpc.CallOption) (*GetLinksResponse, error)
	List(ctx context.Context, in *ListRequest, opts ...grpc.CallOption) (*ListResponse, error)
	Remove(ctx context.Context, in *RemoveRequest, opts ...grpc.CallOption) (*RemoveResponse, error)
	ListPath(ctx context.Context, in *ListPathRequest, opts ...grpc.CallOption) (*ListPathResponse, error)
	ListIpfsPath(ctx context.Context, in *ListIpfsPathRequest, opts ...grpc.CallOption) (*ListIpfsPathResponse, error)
	PushPaths(ctx context.Context, opts ...grpc.CallOption) (APIService_PushPathsClient, error)
	PullPath(ctx context.Context, in *PullPathRequest, opts ...grpc.CallOption) (APIService_PullPathClient, error)
	PullIpfsPath(ctx context.Context, in *PullIpfsPathRequest, opts ...grpc.CallOption) (APIService_PullIpfsPathClient, error)
	SetPath(ctx context.Context, in *SetPathRequest, opts ...grpc.CallOption) (*SetPathResponse, error)
	MovePath(ctx context.Context, in *MovePathRequest, opts ...grpc.CallOption) (*MovePathResponse, error)
	RemovePath(ctx context.Context, in *RemovePathRequest, opts ...grpc.CallOption) (*RemovePathResponse, error)
	PushPathAccessRoles(ctx context.Context, in *PushPathAccessRolesRequest, opts ...grpc.CallOption) (*PushPathAccessRolesResponse, error)
	PullPathAccessRoles(ctx context.Context, in *PullPathAccessRolesRequest, opts ...grpc.CallOption) (*PullPathAccessRolesResponse, error)
	PushPathInfo(ctx context.Context, in *PushPathInfoRequest, opts ...grpc.CallOption) (*PushPathInfoResponse, error)
	PullPathInfo(ctx context.Context, in *PullPathInfoRequest, opts ...grpc.CallOption) (*PullPathInfoResponse, error)
}

APIServiceClient is the client API for APIService service.

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

func NewAPIServiceClient

func NewAPIServiceClient(cc grpc.ClientConnInterface) APIServiceClient

type APIService_PullIpfsPathClient

type APIService_PullIpfsPathClient interface {
	Recv() (*PullIpfsPathResponse, error)
	grpc.ClientStream
}

type APIService_PullIpfsPathServer

type APIService_PullIpfsPathServer interface {
	Send(*PullIpfsPathResponse) error
	grpc.ServerStream
}

type APIService_PullPathClient

type APIService_PullPathClient interface {
	Recv() (*PullPathResponse, error)
	grpc.ClientStream
}

type APIService_PullPathServer

type APIService_PullPathServer interface {
	Send(*PullPathResponse) error
	grpc.ServerStream
}

type APIService_PushPathsClient

type APIService_PushPathsClient interface {
	Send(*PushPathsRequest) error
	Recv() (*PushPathsResponse, error)
	grpc.ClientStream
}

type APIService_PushPathsServer

type APIService_PushPathsServer interface {
	Send(*PushPathsResponse) error
	Recv() (*PushPathsRequest, error)
	grpc.ServerStream
}

type Bucket

type Bucket struct {
	Thread    string               `protobuf:"bytes,1,opt,name=thread,proto3" json:"thread,omitempty"`
	Key       string               `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	Owner     string               `protobuf:"bytes,3,opt,name=owner,proto3" json:"owner,omitempty"`
	Name      string               `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
	Version   int32                `protobuf:"varint,5,opt,name=version,proto3" json:"version,omitempty"`
	LinkKey   string               `protobuf:"bytes,6,opt,name=link_key,json=linkKey,proto3" json:"link_key,omitempty"`
	Path      string               `protobuf:"bytes,7,opt,name=path,proto3" json:"path,omitempty"`
	Metadata  map[string]*Metadata `` /* 157-byte string literal not displayed */
	CreatedAt int64                `protobuf:"varint,9,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	UpdatedAt int64                `protobuf:"varint,10,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,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) GetKey

func (x *Bucket) GetKey() string

func (*Bucket) GetLinkKey

func (x *Bucket) GetLinkKey() string

func (*Bucket) GetMetadata

func (x *Bucket) GetMetadata() map[string]*Metadata

func (*Bucket) GetName

func (x *Bucket) GetName() string

func (*Bucket) GetOwner

func (x *Bucket) GetOwner() string

func (*Bucket) GetPath

func (x *Bucket) GetPath() string

func (*Bucket) GetThread

func (x *Bucket) GetThread() string

func (*Bucket) GetUpdatedAt

func (x *Bucket) GetUpdatedAt() int64

func (*Bucket) GetVersion

func (x *Bucket) GetVersion() int32

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 CreateRequest

type CreateRequest struct {
	Thread  string `protobuf:"bytes,1,opt,name=thread,proto3" json:"thread,omitempty"`
	Name    string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Cid     string `protobuf:"bytes,3,opt,name=cid,proto3" json:"cid,omitempty"`
	Private bool   `protobuf:"varint,4,opt,name=private,proto3" json:"private,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateRequest) Descriptor deprecated

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

Deprecated: Use CreateRequest.ProtoReflect.Descriptor instead.

func (*CreateRequest) GetCid

func (x *CreateRequest) GetCid() string

func (*CreateRequest) GetName

func (x *CreateRequest) GetName() string

func (*CreateRequest) GetPrivate

func (x *CreateRequest) GetPrivate() bool

func (*CreateRequest) GetThread

func (x *CreateRequest) GetThread() string

func (*CreateRequest) ProtoMessage

func (*CreateRequest) ProtoMessage()

func (*CreateRequest) ProtoReflect

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

func (*CreateRequest) Reset

func (x *CreateRequest) Reset()

func (*CreateRequest) String

func (x *CreateRequest) String() string

type CreateResponse

type CreateResponse struct {
	Bucket *Bucket `protobuf:"bytes,1,opt,name=bucket,proto3" json:"bucket,omitempty"`
	Links  *Links  `protobuf:"bytes,2,opt,name=links,proto3" json:"links,omitempty"`
	Pinned int64   `protobuf:"varint,3,opt,name=pinned,proto3" json:"pinned,omitempty"`
	Seed   *Seed   `protobuf:"bytes,4,opt,name=seed,proto3" json:"seed,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateResponse) Descriptor deprecated

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

Deprecated: Use CreateResponse.ProtoReflect.Descriptor instead.

func (*CreateResponse) GetBucket

func (x *CreateResponse) GetBucket() *Bucket
func (x *CreateResponse) GetLinks() *Links

func (*CreateResponse) GetPinned

func (x *CreateResponse) GetPinned() int64

func (*CreateResponse) GetSeed

func (x *CreateResponse) GetSeed() *Seed

func (*CreateResponse) ProtoMessage

func (*CreateResponse) ProtoMessage()

func (*CreateResponse) ProtoReflect

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

func (*CreateResponse) Reset

func (x *CreateResponse) Reset()

func (*CreateResponse) String

func (x *CreateResponse) String() string

type GetLinksRequest

type GetLinksRequest struct {
	Thread string `protobuf:"bytes,1,opt,name=thread,proto3" json:"thread,omitempty"`
	Key    string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	Path   string `protobuf:"bytes,3,opt,name=path,proto3" json:"path,omitempty"`
	// contains filtered or unexported fields
}

func (*GetLinksRequest) Descriptor deprecated

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

Deprecated: Use GetLinksRequest.ProtoReflect.Descriptor instead.

func (*GetLinksRequest) GetKey

func (x *GetLinksRequest) GetKey() string

func (*GetLinksRequest) GetPath

func (x *GetLinksRequest) GetPath() string

func (*GetLinksRequest) GetThread

func (x *GetLinksRequest) GetThread() string

func (*GetLinksRequest) ProtoMessage

func (*GetLinksRequest) ProtoMessage()

func (*GetLinksRequest) ProtoReflect

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

func (*GetLinksRequest) Reset

func (x *GetLinksRequest) Reset()

func (*GetLinksRequest) String

func (x *GetLinksRequest) String() string

type GetLinksResponse

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

func (*GetLinksResponse) Descriptor deprecated

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

Deprecated: Use GetLinksResponse.ProtoReflect.Descriptor instead.

func (x *GetLinksResponse) GetLinks() *Links

func (*GetLinksResponse) ProtoMessage

func (*GetLinksResponse) ProtoMessage()

func (*GetLinksResponse) ProtoReflect

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

func (*GetLinksResponse) Reset

func (x *GetLinksResponse) Reset()

func (*GetLinksResponse) String

func (x *GetLinksResponse) String() string

type GetRequest

type GetRequest struct {
	Thread string `protobuf:"bytes,1,opt,name=thread,proto3" json:"thread,omitempty"`
	Key    string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	// contains filtered or unexported fields
}

func (*GetRequest) Descriptor deprecated

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

Deprecated: Use GetRequest.ProtoReflect.Descriptor instead.

func (*GetRequest) GetKey

func (x *GetRequest) GetKey() string

func (*GetRequest) GetThread

func (x *GetRequest) GetThread() string

func (*GetRequest) ProtoMessage

func (*GetRequest) ProtoMessage()

func (*GetRequest) ProtoReflect

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

func (*GetRequest) Reset

func (x *GetRequest) Reset()

func (*GetRequest) String

func (x *GetRequest) String() string

type GetResponse

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

func (*GetResponse) Descriptor deprecated

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

Deprecated: Use GetResponse.ProtoReflect.Descriptor instead.

func (*GetResponse) GetBucket

func (x *GetResponse) GetBucket() *Bucket
func (x *GetResponse) GetLinks() *Links

func (*GetResponse) ProtoMessage

func (*GetResponse) ProtoMessage()

func (*GetResponse) ProtoReflect

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

func (*GetResponse) Reset

func (x *GetResponse) Reset()

func (*GetResponse) String

func (x *GetResponse) String() string
type Links struct {
	Url  string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
	Www  string `protobuf:"bytes,2,opt,name=www,proto3" json:"www,omitempty"`
	Ipns string `protobuf:"bytes,3,opt,name=ipns,proto3" json:"ipns,omitempty"`
	Bps  string `protobuf:"bytes,4,opt,name=bps,proto3" json:"bps,omitempty"`
	// contains filtered or unexported fields
}

func (*Links) Descriptor deprecated

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

Deprecated: Use Links.ProtoReflect.Descriptor instead.

func (*Links) GetBps

func (x *Links) GetBps() string

func (*Links) GetIpns

func (x *Links) GetIpns() string

func (*Links) GetUrl

func (x *Links) GetUrl() string

func (*Links) GetWww

func (x *Links) GetWww() string

func (*Links) ProtoMessage

func (*Links) ProtoMessage()

func (*Links) ProtoReflect

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

func (*Links) Reset

func (x *Links) Reset()

func (*Links) String

func (x *Links) String() string

type ListIpfsPathRequest

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

func (*ListIpfsPathRequest) Descriptor deprecated

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

Deprecated: Use ListIpfsPathRequest.ProtoReflect.Descriptor instead.

func (*ListIpfsPathRequest) GetPath

func (x *ListIpfsPathRequest) GetPath() string

func (*ListIpfsPathRequest) ProtoMessage

func (*ListIpfsPathRequest) ProtoMessage()

func (*ListIpfsPathRequest) ProtoReflect

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

func (*ListIpfsPathRequest) Reset

func (x *ListIpfsPathRequest) Reset()

func (*ListIpfsPathRequest) String

func (x *ListIpfsPathRequest) String() string

type ListIpfsPathResponse

type ListIpfsPathResponse struct {
	Item *PathItem `protobuf:"bytes,1,opt,name=item,proto3" json:"item,omitempty"`
	// contains filtered or unexported fields
}

func (*ListIpfsPathResponse) Descriptor deprecated

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

Deprecated: Use ListIpfsPathResponse.ProtoReflect.Descriptor instead.

func (*ListIpfsPathResponse) GetItem

func (x *ListIpfsPathResponse) GetItem() *PathItem

func (*ListIpfsPathResponse) ProtoMessage

func (*ListIpfsPathResponse) ProtoMessage()

func (*ListIpfsPathResponse) ProtoReflect

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

func (*ListIpfsPathResponse) Reset

func (x *ListIpfsPathResponse) Reset()

func (*ListIpfsPathResponse) String

func (x *ListIpfsPathResponse) String() string

type ListPathRequest

type ListPathRequest struct {
	Thread string `protobuf:"bytes,1,opt,name=thread,proto3" json:"thread,omitempty"`
	Key    string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	Path   string `protobuf:"bytes,3,opt,name=path,proto3" json:"path,omitempty"`
	// contains filtered or unexported fields
}

func (*ListPathRequest) Descriptor deprecated

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

Deprecated: Use ListPathRequest.ProtoReflect.Descriptor instead.

func (*ListPathRequest) GetKey

func (x *ListPathRequest) GetKey() string

func (*ListPathRequest) GetPath

func (x *ListPathRequest) GetPath() string

func (*ListPathRequest) GetThread

func (x *ListPathRequest) GetThread() string

func (*ListPathRequest) ProtoMessage

func (*ListPathRequest) ProtoMessage()

func (*ListPathRequest) ProtoReflect

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

func (*ListPathRequest) Reset

func (x *ListPathRequest) Reset()

func (*ListPathRequest) String

func (x *ListPathRequest) String() string

type ListPathResponse

type ListPathResponse struct {
	Item   *PathItem `protobuf:"bytes,1,opt,name=item,proto3" json:"item,omitempty"`
	Bucket *Bucket   `protobuf:"bytes,2,opt,name=bucket,proto3" json:"bucket,omitempty"`
	Links  *Links    `protobuf:"bytes,3,opt,name=links,proto3" json:"links,omitempty"`
	// contains filtered or unexported fields
}

func (*ListPathResponse) Descriptor deprecated

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

Deprecated: Use ListPathResponse.ProtoReflect.Descriptor instead.

func (*ListPathResponse) GetBucket

func (x *ListPathResponse) GetBucket() *Bucket

func (*ListPathResponse) GetItem

func (x *ListPathResponse) GetItem() *PathItem
func (x *ListPathResponse) GetLinks() *Links

func (*ListPathResponse) ProtoMessage

func (*ListPathResponse) ProtoMessage()

func (*ListPathResponse) ProtoReflect

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

func (*ListPathResponse) Reset

func (x *ListPathResponse) Reset()

func (*ListPathResponse) String

func (x *ListPathResponse) String() string

type ListRequest

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

func (*ListRequest) Descriptor deprecated

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

Deprecated: Use ListRequest.ProtoReflect.Descriptor instead.

func (*ListRequest) GetThread

func (x *ListRequest) GetThread() string

func (*ListRequest) ProtoMessage

func (*ListRequest) ProtoMessage()

func (*ListRequest) ProtoReflect

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

func (*ListRequest) Reset

func (x *ListRequest) Reset()

func (*ListRequest) String

func (x *ListRequest) String() string

type ListResponse

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

func (*ListResponse) Descriptor deprecated

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

Deprecated: Use ListResponse.ProtoReflect.Descriptor instead.

func (*ListResponse) GetBuckets

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

func (*ListResponse) ProtoMessage

func (*ListResponse) ProtoMessage()

func (*ListResponse) ProtoReflect

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

func (*ListResponse) Reset

func (x *ListResponse) Reset()

func (*ListResponse) String

func (x *ListResponse) String() string

type Metadata

type Metadata struct {
	Key       string                    `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Roles     map[string]PathAccessRole `` /* 187-byte string literal not displayed */
	Info      []byte                    `protobuf:"bytes,3,opt,name=info,proto3" json:"info,omitempty"`
	UpdatedAt int64                     `protobuf:"varint,4,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	// contains filtered or unexported fields
}

func (*Metadata) Descriptor deprecated

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

Deprecated: Use Metadata.ProtoReflect.Descriptor instead.

func (*Metadata) GetInfo

func (x *Metadata) GetInfo() []byte

func (*Metadata) GetKey

func (x *Metadata) GetKey() string

func (*Metadata) GetRoles

func (x *Metadata) GetRoles() map[string]PathAccessRole

func (*Metadata) GetUpdatedAt

func (x *Metadata) GetUpdatedAt() int64

func (*Metadata) ProtoMessage

func (*Metadata) ProtoMessage()

func (*Metadata) ProtoReflect

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

func (*Metadata) Reset

func (x *Metadata) Reset()

func (*Metadata) String

func (x *Metadata) String() string

type MovePathRequest

type MovePathRequest struct {
	Thread   string `protobuf:"bytes,1,opt,name=thread,proto3" json:"thread,omitempty"`
	Key      string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	Root     string `protobuf:"bytes,3,opt,name=root,proto3" json:"root,omitempty"`
	FromPath string `protobuf:"bytes,4,opt,name=from_path,json=fromPath,proto3" json:"from_path,omitempty"`
	ToPath   string `protobuf:"bytes,5,opt,name=to_path,json=toPath,proto3" json:"to_path,omitempty"`
	// contains filtered or unexported fields
}

func (*MovePathRequest) Descriptor deprecated

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

Deprecated: Use MovePathRequest.ProtoReflect.Descriptor instead.

func (*MovePathRequest) GetFromPath

func (x *MovePathRequest) GetFromPath() string

func (*MovePathRequest) GetKey

func (x *MovePathRequest) GetKey() string

func (*MovePathRequest) GetRoot

func (x *MovePathRequest) GetRoot() string

func (*MovePathRequest) GetThread

func (x *MovePathRequest) GetThread() string

func (*MovePathRequest) GetToPath

func (x *MovePathRequest) GetToPath() string

func (*MovePathRequest) ProtoMessage

func (*MovePathRequest) ProtoMessage()

func (*MovePathRequest) ProtoReflect

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

func (*MovePathRequest) Reset

func (x *MovePathRequest) Reset()

func (*MovePathRequest) String

func (x *MovePathRequest) String() string

type MovePathResponse

type MovePathResponse struct {
	Bucket *Bucket `protobuf:"bytes,1,opt,name=bucket,proto3" json:"bucket,omitempty"`
	Pinned int64   `protobuf:"varint,2,opt,name=pinned,proto3" json:"pinned,omitempty"`
	// contains filtered or unexported fields
}

func (*MovePathResponse) Descriptor deprecated

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

Deprecated: Use MovePathResponse.ProtoReflect.Descriptor instead.

func (*MovePathResponse) GetBucket

func (x *MovePathResponse) GetBucket() *Bucket

func (*MovePathResponse) GetPinned

func (x *MovePathResponse) GetPinned() int64

func (*MovePathResponse) ProtoMessage

func (*MovePathResponse) ProtoMessage()

func (*MovePathResponse) ProtoReflect

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

func (*MovePathResponse) Reset

func (x *MovePathResponse) Reset()

func (*MovePathResponse) String

func (x *MovePathResponse) String() string

type PathAccessRole

type PathAccessRole int32
const (
	PathAccessRole_PATH_ACCESS_ROLE_UNSPECIFIED PathAccessRole = 0
	PathAccessRole_PATH_ACCESS_ROLE_READER      PathAccessRole = 1
	PathAccessRole_PATH_ACCESS_ROLE_WRITER      PathAccessRole = 2
	PathAccessRole_PATH_ACCESS_ROLE_ADMIN       PathAccessRole = 3
)

func (PathAccessRole) Descriptor

func (PathAccessRole) Enum

func (x PathAccessRole) Enum() *PathAccessRole

func (PathAccessRole) EnumDescriptor deprecated

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

Deprecated: Use PathAccessRole.Descriptor instead.

func (PathAccessRole) Number

func (PathAccessRole) String

func (x PathAccessRole) String() string

func (PathAccessRole) Type

type PathItem

type PathItem struct {
	Cid        string      `protobuf:"bytes,1,opt,name=cid,proto3" json:"cid,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"`
	Size       int64       `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
	IsDir      bool        `protobuf:"varint,5,opt,name=is_dir,json=isDir,proto3" json:"is_dir,omitempty"`
	Items      []*PathItem `protobuf:"bytes,6,rep,name=items,proto3" json:"items,omitempty"`
	ItemsCount int32       `protobuf:"varint,7,opt,name=items_count,json=itemsCount,proto3" json:"items_count,omitempty"`
	Metadata   *Metadata   `protobuf:"bytes,8,opt,name=metadata,proto3" json:"metadata,omitempty"`
	// contains filtered or unexported fields
}

func (*PathItem) Descriptor deprecated

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

Deprecated: Use PathItem.ProtoReflect.Descriptor instead.

func (*PathItem) GetCid

func (x *PathItem) GetCid() string

func (*PathItem) GetIsDir

func (x *PathItem) GetIsDir() bool

func (*PathItem) GetItems

func (x *PathItem) GetItems() []*PathItem

func (*PathItem) GetItemsCount

func (x *PathItem) GetItemsCount() int32

func (*PathItem) GetMetadata

func (x *PathItem) GetMetadata() *Metadata

func (*PathItem) GetName

func (x *PathItem) GetName() string

func (*PathItem) GetPath

func (x *PathItem) GetPath() string

func (*PathItem) GetSize

func (x *PathItem) GetSize() int64

func (*PathItem) ProtoMessage

func (*PathItem) ProtoMessage()

func (*PathItem) ProtoReflect

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

func (*PathItem) Reset

func (x *PathItem) Reset()

func (*PathItem) String

func (x *PathItem) String() string

type PullIpfsPathRequest

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

func (*PullIpfsPathRequest) Descriptor deprecated

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

Deprecated: Use PullIpfsPathRequest.ProtoReflect.Descriptor instead.

func (*PullIpfsPathRequest) GetPath

func (x *PullIpfsPathRequest) GetPath() string

func (*PullIpfsPathRequest) ProtoMessage

func (*PullIpfsPathRequest) ProtoMessage()

func (*PullIpfsPathRequest) ProtoReflect

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

func (*PullIpfsPathRequest) Reset

func (x *PullIpfsPathRequest) Reset()

func (*PullIpfsPathRequest) String

func (x *PullIpfsPathRequest) String() string

type PullIpfsPathResponse

type PullIpfsPathResponse struct {
	Chunk []byte `protobuf:"bytes,1,opt,name=chunk,proto3" json:"chunk,omitempty"`
	// contains filtered or unexported fields
}

func (*PullIpfsPathResponse) Descriptor deprecated

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

Deprecated: Use PullIpfsPathResponse.ProtoReflect.Descriptor instead.

func (*PullIpfsPathResponse) GetChunk

func (x *PullIpfsPathResponse) GetChunk() []byte

func (*PullIpfsPathResponse) ProtoMessage

func (*PullIpfsPathResponse) ProtoMessage()

func (*PullIpfsPathResponse) ProtoReflect

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

func (*PullIpfsPathResponse) Reset

func (x *PullIpfsPathResponse) Reset()

func (*PullIpfsPathResponse) String

func (x *PullIpfsPathResponse) String() string

type PullPathAccessRolesRequest

type PullPathAccessRolesRequest struct {
	Thread string `protobuf:"bytes,1,opt,name=thread,proto3" json:"thread,omitempty"`
	Key    string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	Path   string `protobuf:"bytes,3,opt,name=path,proto3" json:"path,omitempty"`
	// contains filtered or unexported fields
}

func (*PullPathAccessRolesRequest) Descriptor deprecated

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

Deprecated: Use PullPathAccessRolesRequest.ProtoReflect.Descriptor instead.

func (*PullPathAccessRolesRequest) GetKey

func (x *PullPathAccessRolesRequest) GetKey() string

func (*PullPathAccessRolesRequest) GetPath

func (x *PullPathAccessRolesRequest) GetPath() string

func (*PullPathAccessRolesRequest) GetThread

func (x *PullPathAccessRolesRequest) GetThread() string

func (*PullPathAccessRolesRequest) ProtoMessage

func (*PullPathAccessRolesRequest) ProtoMessage()

func (*PullPathAccessRolesRequest) ProtoReflect

func (*PullPathAccessRolesRequest) Reset

func (x *PullPathAccessRolesRequest) Reset()

func (*PullPathAccessRolesRequest) String

func (x *PullPathAccessRolesRequest) String() string

type PullPathAccessRolesResponse

type PullPathAccessRolesResponse struct {
	Roles map[string]PathAccessRole `` /* 187-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*PullPathAccessRolesResponse) Descriptor deprecated

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

Deprecated: Use PullPathAccessRolesResponse.ProtoReflect.Descriptor instead.

func (*PullPathAccessRolesResponse) GetRoles

func (*PullPathAccessRolesResponse) ProtoMessage

func (*PullPathAccessRolesResponse) ProtoMessage()

func (*PullPathAccessRolesResponse) ProtoReflect

func (*PullPathAccessRolesResponse) Reset

func (x *PullPathAccessRolesResponse) Reset()

func (*PullPathAccessRolesResponse) String

func (x *PullPathAccessRolesResponse) String() string

type PullPathInfoRequest

type PullPathInfoRequest struct {
	Thread string `protobuf:"bytes,1,opt,name=thread,proto3" json:"thread,omitempty"`
	Key    string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	Path   string `protobuf:"bytes,3,opt,name=path,proto3" json:"path,omitempty"`
	// contains filtered or unexported fields
}

func (*PullPathInfoRequest) Descriptor deprecated

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

Deprecated: Use PullPathInfoRequest.ProtoReflect.Descriptor instead.

func (*PullPathInfoRequest) GetKey

func (x *PullPathInfoRequest) GetKey() string

func (*PullPathInfoRequest) GetPath

func (x *PullPathInfoRequest) GetPath() string

func (*PullPathInfoRequest) GetThread

func (x *PullPathInfoRequest) GetThread() string

func (*PullPathInfoRequest) ProtoMessage

func (*PullPathInfoRequest) ProtoMessage()

func (*PullPathInfoRequest) ProtoReflect

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

func (*PullPathInfoRequest) Reset

func (x *PullPathInfoRequest) Reset()

func (*PullPathInfoRequest) String

func (x *PullPathInfoRequest) String() string

type PullPathInfoResponse

type PullPathInfoResponse struct {
	Info []byte `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
	// contains filtered or unexported fields
}

func (*PullPathInfoResponse) Descriptor deprecated

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

Deprecated: Use PullPathInfoResponse.ProtoReflect.Descriptor instead.

func (*PullPathInfoResponse) GetInfo

func (x *PullPathInfoResponse) GetInfo() []byte

func (*PullPathInfoResponse) ProtoMessage

func (*PullPathInfoResponse) ProtoMessage()

func (*PullPathInfoResponse) ProtoReflect

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

func (*PullPathInfoResponse) Reset

func (x *PullPathInfoResponse) Reset()

func (*PullPathInfoResponse) String

func (x *PullPathInfoResponse) String() string

type PullPathRequest

type PullPathRequest struct {
	Thread string `protobuf:"bytes,1,opt,name=thread,proto3" json:"thread,omitempty"`
	Key    string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	Path   string `protobuf:"bytes,3,opt,name=path,proto3" json:"path,omitempty"`
	// contains filtered or unexported fields
}

func (*PullPathRequest) Descriptor deprecated

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

Deprecated: Use PullPathRequest.ProtoReflect.Descriptor instead.

func (*PullPathRequest) GetKey

func (x *PullPathRequest) GetKey() string

func (*PullPathRequest) GetPath

func (x *PullPathRequest) GetPath() string

func (*PullPathRequest) GetThread

func (x *PullPathRequest) GetThread() string

func (*PullPathRequest) ProtoMessage

func (*PullPathRequest) ProtoMessage()

func (*PullPathRequest) ProtoReflect

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

func (*PullPathRequest) Reset

func (x *PullPathRequest) Reset()

func (*PullPathRequest) String

func (x *PullPathRequest) String() string

type PullPathResponse

type PullPathResponse struct {
	Chunk []byte `protobuf:"bytes,1,opt,name=chunk,proto3" json:"chunk,omitempty"`
	// contains filtered or unexported fields
}

func (*PullPathResponse) Descriptor deprecated

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

Deprecated: Use PullPathResponse.ProtoReflect.Descriptor instead.

func (*PullPathResponse) GetChunk

func (x *PullPathResponse) GetChunk() []byte

func (*PullPathResponse) ProtoMessage

func (*PullPathResponse) ProtoMessage()

func (*PullPathResponse) ProtoReflect

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

func (*PullPathResponse) Reset

func (x *PullPathResponse) Reset()

func (*PullPathResponse) String

func (x *PullPathResponse) String() string

type PushPathAccessRolesRequest

type PushPathAccessRolesRequest struct {
	Thread string                    `protobuf:"bytes,1,opt,name=thread,proto3" json:"thread,omitempty"`
	Key    string                    `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	Path   string                    `protobuf:"bytes,3,opt,name=path,proto3" json:"path,omitempty"`
	Root   string                    `protobuf:"bytes,4,opt,name=root,proto3" json:"root,omitempty"`
	Roles  map[string]PathAccessRole `` /* 187-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*PushPathAccessRolesRequest) Descriptor deprecated

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

Deprecated: Use PushPathAccessRolesRequest.ProtoReflect.Descriptor instead.

func (*PushPathAccessRolesRequest) GetKey

func (x *PushPathAccessRolesRequest) GetKey() string

func (*PushPathAccessRolesRequest) GetPath

func (x *PushPathAccessRolesRequest) GetPath() string

func (*PushPathAccessRolesRequest) GetRoles

func (*PushPathAccessRolesRequest) GetRoot

func (x *PushPathAccessRolesRequest) GetRoot() string

func (*PushPathAccessRolesRequest) GetThread

func (x *PushPathAccessRolesRequest) GetThread() string

func (*PushPathAccessRolesRequest) ProtoMessage

func (*PushPathAccessRolesRequest) ProtoMessage()

func (*PushPathAccessRolesRequest) ProtoReflect

func (*PushPathAccessRolesRequest) Reset

func (x *PushPathAccessRolesRequest) Reset()

func (*PushPathAccessRolesRequest) String

func (x *PushPathAccessRolesRequest) String() string

type PushPathAccessRolesResponse

type PushPathAccessRolesResponse struct {
	Bucket *Bucket `protobuf:"bytes,1,opt,name=bucket,proto3" json:"bucket,omitempty"`
	Pinned int64   `protobuf:"varint,2,opt,name=pinned,proto3" json:"pinned,omitempty"`
	// contains filtered or unexported fields
}

func (*PushPathAccessRolesResponse) Descriptor deprecated

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

Deprecated: Use PushPathAccessRolesResponse.ProtoReflect.Descriptor instead.

func (*PushPathAccessRolesResponse) GetBucket

func (x *PushPathAccessRolesResponse) GetBucket() *Bucket

func (*PushPathAccessRolesResponse) GetPinned

func (x *PushPathAccessRolesResponse) GetPinned() int64

func (*PushPathAccessRolesResponse) ProtoMessage

func (*PushPathAccessRolesResponse) ProtoMessage()

func (*PushPathAccessRolesResponse) ProtoReflect

func (*PushPathAccessRolesResponse) Reset

func (x *PushPathAccessRolesResponse) Reset()

func (*PushPathAccessRolesResponse) String

func (x *PushPathAccessRolesResponse) String() string

type PushPathInfoRequest

type PushPathInfoRequest struct {
	Thread string `protobuf:"bytes,1,opt,name=thread,proto3" json:"thread,omitempty"`
	Key    string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	Path   string `protobuf:"bytes,3,opt,name=path,proto3" json:"path,omitempty"`
	Root   string `protobuf:"bytes,4,opt,name=root,proto3" json:"root,omitempty"`
	Info   []byte `protobuf:"bytes,5,opt,name=info,proto3" json:"info,omitempty"`
	// contains filtered or unexported fields
}

func (*PushPathInfoRequest) Descriptor deprecated

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

Deprecated: Use PushPathInfoRequest.ProtoReflect.Descriptor instead.

func (*PushPathInfoRequest) GetInfo

func (x *PushPathInfoRequest) GetInfo() []byte

func (*PushPathInfoRequest) GetKey

func (x *PushPathInfoRequest) GetKey() string

func (*PushPathInfoRequest) GetPath

func (x *PushPathInfoRequest) GetPath() string

func (*PushPathInfoRequest) GetRoot

func (x *PushPathInfoRequest) GetRoot() string

func (*PushPathInfoRequest) GetThread

func (x *PushPathInfoRequest) GetThread() string

func (*PushPathInfoRequest) ProtoMessage

func (*PushPathInfoRequest) ProtoMessage()

func (*PushPathInfoRequest) ProtoReflect

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

func (*PushPathInfoRequest) Reset

func (x *PushPathInfoRequest) Reset()

func (*PushPathInfoRequest) String

func (x *PushPathInfoRequest) String() string

type PushPathInfoResponse

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

func (*PushPathInfoResponse) Descriptor deprecated

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

Deprecated: Use PushPathInfoResponse.ProtoReflect.Descriptor instead.

func (*PushPathInfoResponse) GetBucket

func (x *PushPathInfoResponse) GetBucket() *Bucket

func (*PushPathInfoResponse) ProtoMessage

func (*PushPathInfoResponse) ProtoMessage()

func (*PushPathInfoResponse) ProtoReflect

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

func (*PushPathInfoResponse) Reset

func (x *PushPathInfoResponse) Reset()

func (*PushPathInfoResponse) String

func (x *PushPathInfoResponse) String() string

type PushPathsRequest

type PushPathsRequest struct {

	// Types that are assignable to Payload:
	//	*PushPathsRequest_Header_
	//	*PushPathsRequest_Chunk_
	Payload isPushPathsRequest_Payload `protobuf_oneof:"payload"`
	// contains filtered or unexported fields
}

func (*PushPathsRequest) Descriptor deprecated

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

Deprecated: Use PushPathsRequest.ProtoReflect.Descriptor instead.

func (*PushPathsRequest) GetChunk

func (*PushPathsRequest) GetHeader

func (x *PushPathsRequest) GetHeader() *PushPathsRequest_Header

func (*PushPathsRequest) GetPayload

func (m *PushPathsRequest) GetPayload() isPushPathsRequest_Payload

func (*PushPathsRequest) ProtoMessage

func (*PushPathsRequest) ProtoMessage()

func (*PushPathsRequest) ProtoReflect

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

func (*PushPathsRequest) Reset

func (x *PushPathsRequest) Reset()

func (*PushPathsRequest) String

func (x *PushPathsRequest) String() string

type PushPathsRequest_Chunk

type PushPathsRequest_Chunk struct {
	Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*PushPathsRequest_Chunk) Descriptor deprecated

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

Deprecated: Use PushPathsRequest_Chunk.ProtoReflect.Descriptor instead.

func (*PushPathsRequest_Chunk) GetData

func (x *PushPathsRequest_Chunk) GetData() []byte

func (*PushPathsRequest_Chunk) GetPath

func (x *PushPathsRequest_Chunk) GetPath() string

func (*PushPathsRequest_Chunk) ProtoMessage

func (*PushPathsRequest_Chunk) ProtoMessage()

func (*PushPathsRequest_Chunk) ProtoReflect

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

func (*PushPathsRequest_Chunk) Reset

func (x *PushPathsRequest_Chunk) Reset()

func (*PushPathsRequest_Chunk) String

func (x *PushPathsRequest_Chunk) String() string

type PushPathsRequest_Chunk_

type PushPathsRequest_Chunk_ struct {
	Chunk *PushPathsRequest_Chunk `protobuf:"bytes,2,opt,name=chunk,proto3,oneof"`
}

type PushPathsRequest_Header

type PushPathsRequest_Header struct {
	Thread string `protobuf:"bytes,1,opt,name=thread,proto3" json:"thread,omitempty"`
	Key    string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	Root   string `protobuf:"bytes,3,opt,name=root,proto3" json:"root,omitempty"`
	// contains filtered or unexported fields
}

func (*PushPathsRequest_Header) Descriptor deprecated

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

Deprecated: Use PushPathsRequest_Header.ProtoReflect.Descriptor instead.

func (*PushPathsRequest_Header) GetKey

func (x *PushPathsRequest_Header) GetKey() string

func (*PushPathsRequest_Header) GetRoot

func (x *PushPathsRequest_Header) GetRoot() string

func (*PushPathsRequest_Header) GetThread

func (x *PushPathsRequest_Header) GetThread() string

func (*PushPathsRequest_Header) ProtoMessage

func (*PushPathsRequest_Header) ProtoMessage()

func (*PushPathsRequest_Header) ProtoReflect

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

func (*PushPathsRequest_Header) Reset

func (x *PushPathsRequest_Header) Reset()

func (*PushPathsRequest_Header) String

func (x *PushPathsRequest_Header) String() string

type PushPathsRequest_Header_

type PushPathsRequest_Header_ struct {
	Header *PushPathsRequest_Header `protobuf:"bytes,1,opt,name=header,proto3,oneof"`
}

type PushPathsResponse

type PushPathsResponse struct {
	Bucket *Bucket `protobuf:"bytes,1,opt,name=bucket,proto3" json:"bucket,omitempty"`
	Path   string  `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
	Cid    string  `protobuf:"bytes,3,opt,name=cid,proto3" json:"cid,omitempty"`
	Size   int64   `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
	Pinned int64   `protobuf:"varint,5,opt,name=pinned,proto3" json:"pinned,omitempty"`
	// contains filtered or unexported fields
}

func (*PushPathsResponse) Descriptor deprecated

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

Deprecated: Use PushPathsResponse.ProtoReflect.Descriptor instead.

func (*PushPathsResponse) GetBucket

func (x *PushPathsResponse) GetBucket() *Bucket

func (*PushPathsResponse) GetCid

func (x *PushPathsResponse) GetCid() string

func (*PushPathsResponse) GetPath

func (x *PushPathsResponse) GetPath() string

func (*PushPathsResponse) GetPinned

func (x *PushPathsResponse) GetPinned() int64

func (*PushPathsResponse) GetSize

func (x *PushPathsResponse) GetSize() int64

func (*PushPathsResponse) ProtoMessage

func (*PushPathsResponse) ProtoMessage()

func (*PushPathsResponse) ProtoReflect

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

func (*PushPathsResponse) Reset

func (x *PushPathsResponse) Reset()

func (*PushPathsResponse) String

func (x *PushPathsResponse) String() string

type RemovePathRequest

type RemovePathRequest struct {
	Thread string `protobuf:"bytes,1,opt,name=thread,proto3" json:"thread,omitempty"`
	Key    string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	Root   string `protobuf:"bytes,3,opt,name=root,proto3" json:"root,omitempty"`
	Path   string `protobuf:"bytes,4,opt,name=path,proto3" json:"path,omitempty"`
	// contains filtered or unexported fields
}

func (*RemovePathRequest) Descriptor deprecated

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

Deprecated: Use RemovePathRequest.ProtoReflect.Descriptor instead.

func (*RemovePathRequest) GetKey

func (x *RemovePathRequest) GetKey() string

func (*RemovePathRequest) GetPath

func (x *RemovePathRequest) GetPath() string

func (*RemovePathRequest) GetRoot

func (x *RemovePathRequest) GetRoot() string

func (*RemovePathRequest) GetThread

func (x *RemovePathRequest) GetThread() string

func (*RemovePathRequest) ProtoMessage

func (*RemovePathRequest) ProtoMessage()

func (*RemovePathRequest) ProtoReflect

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

func (*RemovePathRequest) Reset

func (x *RemovePathRequest) Reset()

func (*RemovePathRequest) String

func (x *RemovePathRequest) String() string

type RemovePathResponse

type RemovePathResponse struct {
	Bucket *Bucket `protobuf:"bytes,1,opt,name=bucket,proto3" json:"bucket,omitempty"`
	Pinned int64   `protobuf:"varint,2,opt,name=pinned,proto3" json:"pinned,omitempty"`
	// contains filtered or unexported fields
}

func (*RemovePathResponse) Descriptor deprecated

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

Deprecated: Use RemovePathResponse.ProtoReflect.Descriptor instead.

func (*RemovePathResponse) GetBucket

func (x *RemovePathResponse) GetBucket() *Bucket

func (*RemovePathResponse) GetPinned

func (x *RemovePathResponse) GetPinned() int64

func (*RemovePathResponse) ProtoMessage

func (*RemovePathResponse) ProtoMessage()

func (*RemovePathResponse) ProtoReflect

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

func (*RemovePathResponse) Reset

func (x *RemovePathResponse) Reset()

func (*RemovePathResponse) String

func (x *RemovePathResponse) String() string

type RemoveRequest

type RemoveRequest struct {
	Thread string `protobuf:"bytes,1,opt,name=thread,proto3" json:"thread,omitempty"`
	Key    string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	// contains filtered or unexported fields
}

func (*RemoveRequest) Descriptor deprecated

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

Deprecated: Use RemoveRequest.ProtoReflect.Descriptor instead.

func (*RemoveRequest) GetKey

func (x *RemoveRequest) GetKey() string

func (*RemoveRequest) GetThread

func (x *RemoveRequest) GetThread() string

func (*RemoveRequest) ProtoMessage

func (*RemoveRequest) ProtoMessage()

func (*RemoveRequest) ProtoReflect

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

func (*RemoveRequest) Reset

func (x *RemoveRequest) Reset()

func (*RemoveRequest) String

func (x *RemoveRequest) String() string

type RemoveResponse

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

func (*RemoveResponse) Descriptor deprecated

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

Deprecated: Use RemoveResponse.ProtoReflect.Descriptor instead.

func (*RemoveResponse) GetPinned

func (x *RemoveResponse) GetPinned() int64

func (*RemoveResponse) ProtoMessage

func (*RemoveResponse) ProtoMessage()

func (*RemoveResponse) ProtoReflect

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

func (*RemoveResponse) Reset

func (x *RemoveResponse) Reset()

func (*RemoveResponse) String

func (x *RemoveResponse) String() string

type Seed

type Seed struct {
	Cid  string `protobuf:"bytes,1,opt,name=cid,proto3" json:"cid,omitempty"`
	Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*Seed) Descriptor deprecated

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

Deprecated: Use Seed.ProtoReflect.Descriptor instead.

func (*Seed) GetCid

func (x *Seed) GetCid() string

func (*Seed) GetData

func (x *Seed) GetData() []byte

func (*Seed) ProtoMessage

func (*Seed) ProtoMessage()

func (*Seed) ProtoReflect

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

func (*Seed) Reset

func (x *Seed) Reset()

func (*Seed) String

func (x *Seed) String() string

type SetPathRequest

type SetPathRequest struct {
	Thread string `protobuf:"bytes,1,opt,name=thread,proto3" json:"thread,omitempty"`
	Key    string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	Root   string `protobuf:"bytes,3,opt,name=root,proto3" json:"root,omitempty"`
	Path   string `protobuf:"bytes,4,opt,name=path,proto3" json:"path,omitempty"`
	Cid    string `protobuf:"bytes,5,opt,name=cid,proto3" json:"cid,omitempty"`
	// contains filtered or unexported fields
}

func (*SetPathRequest) Descriptor deprecated

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

Deprecated: Use SetPathRequest.ProtoReflect.Descriptor instead.

func (*SetPathRequest) GetCid

func (x *SetPathRequest) GetCid() string

func (*SetPathRequest) GetKey

func (x *SetPathRequest) GetKey() string

func (*SetPathRequest) GetPath

func (x *SetPathRequest) GetPath() string

func (*SetPathRequest) GetRoot

func (x *SetPathRequest) GetRoot() string

func (*SetPathRequest) GetThread

func (x *SetPathRequest) GetThread() string

func (*SetPathRequest) ProtoMessage

func (*SetPathRequest) ProtoMessage()

func (*SetPathRequest) ProtoReflect

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

func (*SetPathRequest) Reset

func (x *SetPathRequest) Reset()

func (*SetPathRequest) String

func (x *SetPathRequest) String() string

type SetPathResponse

type SetPathResponse struct {
	Bucket *Bucket `protobuf:"bytes,1,opt,name=bucket,proto3" json:"bucket,omitempty"`
	Pinned int64   `protobuf:"varint,2,opt,name=pinned,proto3" json:"pinned,omitempty"`
	// contains filtered or unexported fields
}

func (*SetPathResponse) Descriptor deprecated

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

Deprecated: Use SetPathResponse.ProtoReflect.Descriptor instead.

func (*SetPathResponse) GetBucket

func (x *SetPathResponse) GetBucket() *Bucket

func (*SetPathResponse) GetPinned

func (x *SetPathResponse) GetPinned() int64

func (*SetPathResponse) ProtoMessage

func (*SetPathResponse) ProtoMessage()

func (*SetPathResponse) ProtoReflect

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

func (*SetPathResponse) Reset

func (x *SetPathResponse) Reset()

func (*SetPathResponse) String

func (x *SetPathResponse) String() string

type UnimplementedAPIServiceServer

type UnimplementedAPIServiceServer struct {
}

UnimplementedAPIServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedAPIServiceServer) Create

func (*UnimplementedAPIServiceServer) Get

func (*UnimplementedAPIServiceServer) List

func (*UnimplementedAPIServiceServer) ListIpfsPath

func (*UnimplementedAPIServiceServer) ListPath

func (*UnimplementedAPIServiceServer) MovePath

func (*UnimplementedAPIServiceServer) PullIpfsPath

func (*UnimplementedAPIServiceServer) PullPath

func (*UnimplementedAPIServiceServer) PullPathAccessRoles

func (*UnimplementedAPIServiceServer) PullPathInfo

func (*UnimplementedAPIServiceServer) PushPathAccessRoles

func (*UnimplementedAPIServiceServer) PushPathInfo

func (*UnimplementedAPIServiceServer) PushPaths

func (*UnimplementedAPIServiceServer) Remove

func (*UnimplementedAPIServiceServer) RemovePath

func (*UnimplementedAPIServiceServer) SetPath

Jump to

Keyboard shortcuts

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