api_buckets_pb

package
v2.1.3 Latest Latest
Warning

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

Go to latest
Published: Oct 23, 2020 License: MIT Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var ArchiveStatusResponse_Status_name = map[int32]string{
	0: "STATUS_UNSPECIFIED",
	1: "STATUS_EXECUTING",
	2: "STATUS_FAILED",
	3: "STATUS_DONE",
	4: "STATUS_CANCELED",
}
View Source
var ArchiveStatusResponse_Status_value = map[string]int32{
	"STATUS_UNSPECIFIED": 0,
	"STATUS_EXECUTING":   1,
	"STATUS_FAILED":      2,
	"STATUS_DONE":        3,
	"STATUS_CANCELED":    4,
}
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",
}
View Source
var 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,
}

Functions

func RegisterAPIServiceServer

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

Types

type APIServiceClient

type APIServiceClient interface {
	List(ctx context.Context, in *ListRequest, opts ...grpc.CallOption) (*ListResponse, error)
	Create(ctx context.Context, in *CreateRequest, opts ...grpc.CallOption) (*CreateResponse, error)
	Root(ctx context.Context, in *RootRequest, opts ...grpc.CallOption) (*RootResponse, error)
	Links(ctx context.Context, in *LinksRequest, opts ...grpc.CallOption) (*LinksResponse, error)
	ListPath(ctx context.Context, in *ListPathRequest, opts ...grpc.CallOption) (*ListPathResponse, error)
	ListIpfsPath(ctx context.Context, in *ListIpfsPathRequest, opts ...grpc.CallOption) (*ListIpfsPathResponse, error)
	PushPath(ctx context.Context, opts ...grpc.CallOption) (APIService_PushPathClient, 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)
	Remove(ctx context.Context, in *RemoveRequest, opts ...grpc.CallOption) (*RemoveResponse, 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)
	// Archive
	DefaultArchiveConfig(ctx context.Context, in *DefaultArchiveConfigRequest, opts ...grpc.CallOption) (*DefaultArchiveConfigResponse, error)
	SetDefaultArchiveConfig(ctx context.Context, in *SetDefaultArchiveConfigRequest, opts ...grpc.CallOption) (*SetDefaultArchiveConfigResponse, error)
	Archive(ctx context.Context, in *ArchiveRequest, opts ...grpc.CallOption) (*ArchiveResponse, error)
	ArchiveStatus(ctx context.Context, in *ArchiveStatusRequest, opts ...grpc.CallOption) (*ArchiveStatusResponse, error)
	ArchiveInfo(ctx context.Context, in *ArchiveInfoRequest, opts ...grpc.CallOption) (*ArchiveInfoResponse, error)
	ArchiveWatch(ctx context.Context, in *ArchiveWatchRequest, opts ...grpc.CallOption) (APIService_ArchiveWatchClient, 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.ClientConn) APIServiceClient

type APIServiceServer

type APIServiceServer interface {
	List(context.Context, *ListRequest) (*ListResponse, error)
	Create(context.Context, *CreateRequest) (*CreateResponse, error)
	Root(context.Context, *RootRequest) (*RootResponse, error)
	Links(context.Context, *LinksRequest) (*LinksResponse, error)
	ListPath(context.Context, *ListPathRequest) (*ListPathResponse, error)
	ListIpfsPath(context.Context, *ListIpfsPathRequest) (*ListIpfsPathResponse, error)
	PushPath(APIService_PushPathServer) error
	PullPath(*PullPathRequest, APIService_PullPathServer) error
	PullIpfsPath(*PullIpfsPathRequest, APIService_PullIpfsPathServer) error
	SetPath(context.Context, *SetPathRequest) (*SetPathResponse, error)
	Remove(context.Context, *RemoveRequest) (*RemoveResponse, error)
	RemovePath(context.Context, *RemovePathRequest) (*RemovePathResponse, error)
	PushPathAccessRoles(context.Context, *PushPathAccessRolesRequest) (*PushPathAccessRolesResponse, error)
	PullPathAccessRoles(context.Context, *PullPathAccessRolesRequest) (*PullPathAccessRolesResponse, error)
	// Archive
	DefaultArchiveConfig(context.Context, *DefaultArchiveConfigRequest) (*DefaultArchiveConfigResponse, error)
	SetDefaultArchiveConfig(context.Context, *SetDefaultArchiveConfigRequest) (*SetDefaultArchiveConfigResponse, error)
	Archive(context.Context, *ArchiveRequest) (*ArchiveResponse, error)
	ArchiveStatus(context.Context, *ArchiveStatusRequest) (*ArchiveStatusResponse, error)
	ArchiveInfo(context.Context, *ArchiveInfoRequest) (*ArchiveInfoResponse, error)
	ArchiveWatch(*ArchiveWatchRequest, APIService_ArchiveWatchServer) error
}

APIServiceServer is the server API for APIService service.

type APIService_ArchiveWatchClient

type APIService_ArchiveWatchClient interface {
	Recv() (*ArchiveWatchResponse, error)
	grpc.ClientStream
}

type APIService_ArchiveWatchServer

type APIService_ArchiveWatchServer interface {
	Send(*ArchiveWatchResponse) error
	grpc.ServerStream
}

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_PushPathClient

type APIService_PushPathClient interface {
	Send(*PushPathRequest) error
	Recv() (*PushPathResponse, error)
	grpc.ClientStream
}

type APIService_PushPathServer

type APIService_PushPathServer interface {
	Send(*PushPathResponse) error
	Recv() (*PushPathRequest, error)
	grpc.ServerStream
}

type ArchiveConfig added in v2.1.0

type ArchiveConfig struct {
	RepFactor            int32         `protobuf:"varint,1,opt,name=rep_factor,json=repFactor,proto3" json:"rep_factor,omitempty"`
	DealMinDuration      int64         `protobuf:"varint,2,opt,name=deal_min_duration,json=dealMinDuration,proto3" json:"deal_min_duration,omitempty"`
	ExcludedMiners       []string      `protobuf:"bytes,3,rep,name=excluded_miners,json=excludedMiners,proto3" json:"excluded_miners,omitempty"`
	TrustedMiners        []string      `protobuf:"bytes,4,rep,name=trusted_miners,json=trustedMiners,proto3" json:"trusted_miners,omitempty"`
	CountryCodes         []string      `protobuf:"bytes,5,rep,name=country_codes,json=countryCodes,proto3" json:"country_codes,omitempty"`
	Renew                *ArchiveRenew `protobuf:"bytes,6,opt,name=renew,proto3" json:"renew,omitempty"`
	Addr                 string        `protobuf:"bytes,7,opt,name=addr,proto3" json:"addr,omitempty"`
	MaxPrice             uint64        `protobuf:"varint,8,opt,name=max_price,json=maxPrice,proto3" json:"max_price,omitempty"`
	FastRetrieval        bool          `protobuf:"varint,9,opt,name=fast_retrieval,json=fastRetrieval,proto3" json:"fast_retrieval,omitempty"`
	DealStartOffset      int64         `protobuf:"varint,10,opt,name=deal_start_offset,json=dealStartOffset,proto3" json:"deal_start_offset,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
}

func (*ArchiveConfig) Descriptor added in v2.1.0

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

func (*ArchiveConfig) GetAddr added in v2.1.0

func (m *ArchiveConfig) GetAddr() string

func (*ArchiveConfig) GetCountryCodes added in v2.1.0

func (m *ArchiveConfig) GetCountryCodes() []string

func (*ArchiveConfig) GetDealMinDuration added in v2.1.0

func (m *ArchiveConfig) GetDealMinDuration() int64

func (*ArchiveConfig) GetDealStartOffset added in v2.1.0

func (m *ArchiveConfig) GetDealStartOffset() int64

func (*ArchiveConfig) GetExcludedMiners added in v2.1.0

func (m *ArchiveConfig) GetExcludedMiners() []string

func (*ArchiveConfig) GetFastRetrieval added in v2.1.0

func (m *ArchiveConfig) GetFastRetrieval() bool

func (*ArchiveConfig) GetMaxPrice added in v2.1.0

func (m *ArchiveConfig) GetMaxPrice() uint64

func (*ArchiveConfig) GetRenew added in v2.1.0

func (m *ArchiveConfig) GetRenew() *ArchiveRenew

func (*ArchiveConfig) GetRepFactor added in v2.1.0

func (m *ArchiveConfig) GetRepFactor() int32

func (*ArchiveConfig) GetTrustedMiners added in v2.1.0

func (m *ArchiveConfig) GetTrustedMiners() []string

func (*ArchiveConfig) ProtoMessage added in v2.1.0

func (*ArchiveConfig) ProtoMessage()

func (*ArchiveConfig) Reset added in v2.1.0

func (m *ArchiveConfig) Reset()

func (*ArchiveConfig) String added in v2.1.0

func (m *ArchiveConfig) String() string

func (*ArchiveConfig) XXX_DiscardUnknown added in v2.1.0

func (m *ArchiveConfig) XXX_DiscardUnknown()

func (*ArchiveConfig) XXX_Marshal added in v2.1.0

func (m *ArchiveConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ArchiveConfig) XXX_Merge added in v2.1.0

func (m *ArchiveConfig) XXX_Merge(src proto.Message)

func (*ArchiveConfig) XXX_Size added in v2.1.0

func (m *ArchiveConfig) XXX_Size() int

func (*ArchiveConfig) XXX_Unmarshal added in v2.1.0

func (m *ArchiveConfig) XXX_Unmarshal(b []byte) error

type ArchiveInfoRequest

type ArchiveInfoRequest struct {
	Key                  string   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ArchiveInfoRequest) Descriptor

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

func (*ArchiveInfoRequest) GetKey

func (m *ArchiveInfoRequest) GetKey() string

func (*ArchiveInfoRequest) ProtoMessage

func (*ArchiveInfoRequest) ProtoMessage()

func (*ArchiveInfoRequest) Reset

func (m *ArchiveInfoRequest) Reset()

func (*ArchiveInfoRequest) String

func (m *ArchiveInfoRequest) String() string

func (*ArchiveInfoRequest) XXX_DiscardUnknown

func (m *ArchiveInfoRequest) XXX_DiscardUnknown()

func (*ArchiveInfoRequest) XXX_Marshal

func (m *ArchiveInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ArchiveInfoRequest) XXX_Merge

func (m *ArchiveInfoRequest) XXX_Merge(src proto.Message)

func (*ArchiveInfoRequest) XXX_Size

func (m *ArchiveInfoRequest) XXX_Size() int

func (*ArchiveInfoRequest) XXX_Unmarshal

func (m *ArchiveInfoRequest) XXX_Unmarshal(b []byte) error

type ArchiveInfoResponse

type ArchiveInfoResponse struct {
	Key                  string                       `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Archive              *ArchiveInfoResponse_Archive `protobuf:"bytes,2,opt,name=archive,proto3" json:"archive,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                     `json:"-"`
	XXX_unrecognized     []byte                       `json:"-"`
	XXX_sizecache        int32                        `json:"-"`
}

func (*ArchiveInfoResponse) Descriptor

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

func (*ArchiveInfoResponse) GetArchive

func (*ArchiveInfoResponse) GetKey

func (m *ArchiveInfoResponse) GetKey() string

func (*ArchiveInfoResponse) ProtoMessage

func (*ArchiveInfoResponse) ProtoMessage()

func (*ArchiveInfoResponse) Reset

func (m *ArchiveInfoResponse) Reset()

func (*ArchiveInfoResponse) String

func (m *ArchiveInfoResponse) String() string

func (*ArchiveInfoResponse) XXX_DiscardUnknown

func (m *ArchiveInfoResponse) XXX_DiscardUnknown()

func (*ArchiveInfoResponse) XXX_Marshal

func (m *ArchiveInfoResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ArchiveInfoResponse) XXX_Merge

func (m *ArchiveInfoResponse) XXX_Merge(src proto.Message)

func (*ArchiveInfoResponse) XXX_Size

func (m *ArchiveInfoResponse) XXX_Size() int

func (*ArchiveInfoResponse) XXX_Unmarshal

func (m *ArchiveInfoResponse) XXX_Unmarshal(b []byte) error

type ArchiveInfoResponse_Archive

type ArchiveInfoResponse_Archive struct {
	Cid                  string                              `protobuf:"bytes,1,opt,name=cid,proto3" json:"cid,omitempty"`
	Deals                []*ArchiveInfoResponse_Archive_Deal `protobuf:"bytes,2,rep,name=deals,proto3" json:"deals,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                            `json:"-"`
	XXX_unrecognized     []byte                              `json:"-"`
	XXX_sizecache        int32                               `json:"-"`
}

func (*ArchiveInfoResponse_Archive) Descriptor

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

func (*ArchiveInfoResponse_Archive) GetCid

func (m *ArchiveInfoResponse_Archive) GetCid() string

func (*ArchiveInfoResponse_Archive) GetDeals

func (*ArchiveInfoResponse_Archive) ProtoMessage

func (*ArchiveInfoResponse_Archive) ProtoMessage()

func (*ArchiveInfoResponse_Archive) Reset

func (m *ArchiveInfoResponse_Archive) Reset()

func (*ArchiveInfoResponse_Archive) String

func (m *ArchiveInfoResponse_Archive) String() string

func (*ArchiveInfoResponse_Archive) XXX_DiscardUnknown

func (m *ArchiveInfoResponse_Archive) XXX_DiscardUnknown()

func (*ArchiveInfoResponse_Archive) XXX_Marshal

func (m *ArchiveInfoResponse_Archive) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ArchiveInfoResponse_Archive) XXX_Merge

func (m *ArchiveInfoResponse_Archive) XXX_Merge(src proto.Message)

func (*ArchiveInfoResponse_Archive) XXX_Size

func (m *ArchiveInfoResponse_Archive) XXX_Size() int

func (*ArchiveInfoResponse_Archive) XXX_Unmarshal

func (m *ArchiveInfoResponse_Archive) XXX_Unmarshal(b []byte) error

type ArchiveInfoResponse_Archive_Deal

type ArchiveInfoResponse_Archive_Deal struct {
	ProposalCid          string   `protobuf:"bytes,1,opt,name=proposal_cid,json=proposalCid,proto3" json:"proposal_cid,omitempty"`
	Miner                string   `protobuf:"bytes,2,opt,name=miner,proto3" json:"miner,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ArchiveInfoResponse_Archive_Deal) Descriptor

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

func (*ArchiveInfoResponse_Archive_Deal) GetMiner

func (*ArchiveInfoResponse_Archive_Deal) GetProposalCid

func (m *ArchiveInfoResponse_Archive_Deal) GetProposalCid() string

func (*ArchiveInfoResponse_Archive_Deal) ProtoMessage

func (*ArchiveInfoResponse_Archive_Deal) ProtoMessage()

func (*ArchiveInfoResponse_Archive_Deal) Reset

func (*ArchiveInfoResponse_Archive_Deal) String

func (*ArchiveInfoResponse_Archive_Deal) XXX_DiscardUnknown

func (m *ArchiveInfoResponse_Archive_Deal) XXX_DiscardUnknown()

func (*ArchiveInfoResponse_Archive_Deal) XXX_Marshal

func (m *ArchiveInfoResponse_Archive_Deal) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ArchiveInfoResponse_Archive_Deal) XXX_Merge

func (*ArchiveInfoResponse_Archive_Deal) XXX_Size

func (m *ArchiveInfoResponse_Archive_Deal) XXX_Size() int

func (*ArchiveInfoResponse_Archive_Deal) XXX_Unmarshal

func (m *ArchiveInfoResponse_Archive_Deal) XXX_Unmarshal(b []byte) error

type ArchiveRenew added in v2.1.0

type ArchiveRenew struct {
	Enabled              bool     `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
	Threshold            int32    `protobuf:"varint,2,opt,name=threshold,proto3" json:"threshold,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ArchiveRenew) Descriptor added in v2.1.0

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

func (*ArchiveRenew) GetEnabled added in v2.1.0

func (m *ArchiveRenew) GetEnabled() bool

func (*ArchiveRenew) GetThreshold added in v2.1.0

func (m *ArchiveRenew) GetThreshold() int32

func (*ArchiveRenew) ProtoMessage added in v2.1.0

func (*ArchiveRenew) ProtoMessage()

func (*ArchiveRenew) Reset added in v2.1.0

func (m *ArchiveRenew) Reset()

func (*ArchiveRenew) String added in v2.1.0

func (m *ArchiveRenew) String() string

func (*ArchiveRenew) XXX_DiscardUnknown added in v2.1.0

func (m *ArchiveRenew) XXX_DiscardUnknown()

func (*ArchiveRenew) XXX_Marshal added in v2.1.0

func (m *ArchiveRenew) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ArchiveRenew) XXX_Merge added in v2.1.0

func (m *ArchiveRenew) XXX_Merge(src proto.Message)

func (*ArchiveRenew) XXX_Size added in v2.1.0

func (m *ArchiveRenew) XXX_Size() int

func (*ArchiveRenew) XXX_Unmarshal added in v2.1.0

func (m *ArchiveRenew) XXX_Unmarshal(b []byte) error

type ArchiveRequest

type ArchiveRequest struct {
	Key                  string         `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	ArchiveConfig        *ArchiveConfig `protobuf:"bytes,2,opt,name=archive_config,json=archiveConfig,proto3" json:"archive_config,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*ArchiveRequest) Descriptor

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

func (*ArchiveRequest) GetArchiveConfig added in v2.1.0

func (m *ArchiveRequest) GetArchiveConfig() *ArchiveConfig

func (*ArchiveRequest) GetKey

func (m *ArchiveRequest) GetKey() string

func (*ArchiveRequest) ProtoMessage

func (*ArchiveRequest) ProtoMessage()

func (*ArchiveRequest) Reset

func (m *ArchiveRequest) Reset()

func (*ArchiveRequest) String

func (m *ArchiveRequest) String() string

func (*ArchiveRequest) XXX_DiscardUnknown

func (m *ArchiveRequest) XXX_DiscardUnknown()

func (*ArchiveRequest) XXX_Marshal

func (m *ArchiveRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ArchiveRequest) XXX_Merge

func (m *ArchiveRequest) XXX_Merge(src proto.Message)

func (*ArchiveRequest) XXX_Size

func (m *ArchiveRequest) XXX_Size() int

func (*ArchiveRequest) XXX_Unmarshal

func (m *ArchiveRequest) XXX_Unmarshal(b []byte) error

type ArchiveResponse

type ArchiveResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ArchiveResponse) Descriptor

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

func (*ArchiveResponse) ProtoMessage

func (*ArchiveResponse) ProtoMessage()

func (*ArchiveResponse) Reset

func (m *ArchiveResponse) Reset()

func (*ArchiveResponse) String

func (m *ArchiveResponse) String() string

func (*ArchiveResponse) XXX_DiscardUnknown

func (m *ArchiveResponse) XXX_DiscardUnknown()

func (*ArchiveResponse) XXX_Marshal

func (m *ArchiveResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ArchiveResponse) XXX_Merge

func (m *ArchiveResponse) XXX_Merge(src proto.Message)

func (*ArchiveResponse) XXX_Size

func (m *ArchiveResponse) XXX_Size() int

func (*ArchiveResponse) XXX_Unmarshal

func (m *ArchiveResponse) XXX_Unmarshal(b []byte) error

type ArchiveStatusRequest

type ArchiveStatusRequest struct {
	Key                  string   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ArchiveStatusRequest) Descriptor

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

func (*ArchiveStatusRequest) GetKey

func (m *ArchiveStatusRequest) GetKey() string

func (*ArchiveStatusRequest) ProtoMessage

func (*ArchiveStatusRequest) ProtoMessage()

func (*ArchiveStatusRequest) Reset

func (m *ArchiveStatusRequest) Reset()

func (*ArchiveStatusRequest) String

func (m *ArchiveStatusRequest) String() string

func (*ArchiveStatusRequest) XXX_DiscardUnknown

func (m *ArchiveStatusRequest) XXX_DiscardUnknown()

func (*ArchiveStatusRequest) XXX_Marshal

func (m *ArchiveStatusRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ArchiveStatusRequest) XXX_Merge

func (m *ArchiveStatusRequest) XXX_Merge(src proto.Message)

func (*ArchiveStatusRequest) XXX_Size

func (m *ArchiveStatusRequest) XXX_Size() int

func (*ArchiveStatusRequest) XXX_Unmarshal

func (m *ArchiveStatusRequest) XXX_Unmarshal(b []byte) error

type ArchiveStatusResponse

type ArchiveStatusResponse struct {
	Key                  string                       `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Status               ArchiveStatusResponse_Status `protobuf:"varint,2,opt,name=status,proto3,enum=api.buckets.pb.ArchiveStatusResponse_Status" json:"status,omitempty"`
	FailedMsg            string                       `protobuf:"bytes,3,opt,name=failed_msg,json=failedMsg,proto3" json:"failed_msg,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                     `json:"-"`
	XXX_unrecognized     []byte                       `json:"-"`
	XXX_sizecache        int32                        `json:"-"`
}

func (*ArchiveStatusResponse) Descriptor

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

func (*ArchiveStatusResponse) GetFailedMsg

func (m *ArchiveStatusResponse) GetFailedMsg() string

func (*ArchiveStatusResponse) GetKey

func (m *ArchiveStatusResponse) GetKey() string

func (*ArchiveStatusResponse) GetStatus

func (*ArchiveStatusResponse) ProtoMessage

func (*ArchiveStatusResponse) ProtoMessage()

func (*ArchiveStatusResponse) Reset

func (m *ArchiveStatusResponse) Reset()

func (*ArchiveStatusResponse) String

func (m *ArchiveStatusResponse) String() string

func (*ArchiveStatusResponse) XXX_DiscardUnknown

func (m *ArchiveStatusResponse) XXX_DiscardUnknown()

func (*ArchiveStatusResponse) XXX_Marshal

func (m *ArchiveStatusResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ArchiveStatusResponse) XXX_Merge

func (m *ArchiveStatusResponse) XXX_Merge(src proto.Message)

func (*ArchiveStatusResponse) XXX_Size

func (m *ArchiveStatusResponse) XXX_Size() int

func (*ArchiveStatusResponse) XXX_Unmarshal

func (m *ArchiveStatusResponse) XXX_Unmarshal(b []byte) error

type ArchiveStatusResponse_Status

type ArchiveStatusResponse_Status int32
const (
	ArchiveStatusResponse_STATUS_UNSPECIFIED ArchiveStatusResponse_Status = 0
	ArchiveStatusResponse_STATUS_EXECUTING   ArchiveStatusResponse_Status = 1
	ArchiveStatusResponse_STATUS_FAILED      ArchiveStatusResponse_Status = 2
	ArchiveStatusResponse_STATUS_DONE        ArchiveStatusResponse_Status = 3
	ArchiveStatusResponse_STATUS_CANCELED    ArchiveStatusResponse_Status = 4
)

func (ArchiveStatusResponse_Status) EnumDescriptor

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

func (ArchiveStatusResponse_Status) String

type ArchiveWatchRequest

type ArchiveWatchRequest struct {
	Key                  string   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ArchiveWatchRequest) Descriptor

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

func (*ArchiveWatchRequest) GetKey

func (m *ArchiveWatchRequest) GetKey() string

func (*ArchiveWatchRequest) ProtoMessage

func (*ArchiveWatchRequest) ProtoMessage()

func (*ArchiveWatchRequest) Reset

func (m *ArchiveWatchRequest) Reset()

func (*ArchiveWatchRequest) String

func (m *ArchiveWatchRequest) String() string

func (*ArchiveWatchRequest) XXX_DiscardUnknown

func (m *ArchiveWatchRequest) XXX_DiscardUnknown()

func (*ArchiveWatchRequest) XXX_Marshal

func (m *ArchiveWatchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ArchiveWatchRequest) XXX_Merge

func (m *ArchiveWatchRequest) XXX_Merge(src proto.Message)

func (*ArchiveWatchRequest) XXX_Size

func (m *ArchiveWatchRequest) XXX_Size() int

func (*ArchiveWatchRequest) XXX_Unmarshal

func (m *ArchiveWatchRequest) XXX_Unmarshal(b []byte) error

type ArchiveWatchResponse

type ArchiveWatchResponse struct {
	Msg                  string   `protobuf:"bytes,1,opt,name=msg,proto3" json:"msg,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ArchiveWatchResponse) Descriptor

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

func (*ArchiveWatchResponse) GetMsg

func (m *ArchiveWatchResponse) GetMsg() string

func (*ArchiveWatchResponse) ProtoMessage

func (*ArchiveWatchResponse) ProtoMessage()

func (*ArchiveWatchResponse) Reset

func (m *ArchiveWatchResponse) Reset()

func (*ArchiveWatchResponse) String

func (m *ArchiveWatchResponse) String() string

func (*ArchiveWatchResponse) XXX_DiscardUnknown

func (m *ArchiveWatchResponse) XXX_DiscardUnknown()

func (*ArchiveWatchResponse) XXX_Marshal

func (m *ArchiveWatchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ArchiveWatchResponse) XXX_Merge

func (m *ArchiveWatchResponse) XXX_Merge(src proto.Message)

func (*ArchiveWatchResponse) XXX_Size

func (m *ArchiveWatchResponse) XXX_Size() int

func (*ArchiveWatchResponse) XXX_Unmarshal

func (m *ArchiveWatchResponse) XXX_Unmarshal(b []byte) error

type CreateRequest

type CreateRequest struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	BootstrapCid         string   `protobuf:"bytes,2,opt,name=bootstrap_cid,json=bootstrapCid,proto3" json:"bootstrap_cid,omitempty"`
	Private              bool     `protobuf:"varint,3,opt,name=private,proto3" json:"private,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CreateRequest) Descriptor

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

func (*CreateRequest) GetBootstrapCid

func (m *CreateRequest) GetBootstrapCid() string

func (*CreateRequest) GetName

func (m *CreateRequest) GetName() string

func (*CreateRequest) GetPrivate

func (m *CreateRequest) GetPrivate() bool

func (*CreateRequest) ProtoMessage

func (*CreateRequest) ProtoMessage()

func (*CreateRequest) Reset

func (m *CreateRequest) Reset()

func (*CreateRequest) String

func (m *CreateRequest) String() string

func (*CreateRequest) XXX_DiscardUnknown

func (m *CreateRequest) XXX_DiscardUnknown()

func (*CreateRequest) XXX_Marshal

func (m *CreateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateRequest) XXX_Merge

func (m *CreateRequest) XXX_Merge(src proto.Message)

func (*CreateRequest) XXX_Size

func (m *CreateRequest) XXX_Size() int

func (*CreateRequest) XXX_Unmarshal

func (m *CreateRequest) XXX_Unmarshal(b []byte) error

type CreateResponse

type CreateResponse struct {
	Root                 *Root          `protobuf:"bytes,1,opt,name=root,proto3" json:"root,omitempty"`
	Links                *LinksResponse `protobuf:"bytes,2,opt,name=links,proto3" json:"links,omitempty"`
	Seed                 []byte         `protobuf:"bytes,3,opt,name=seed,proto3" json:"seed,omitempty"`
	SeedCid              string         `protobuf:"bytes,4,opt,name=seed_cid,json=seedCid,proto3" json:"seed_cid,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*CreateResponse) Descriptor

func (*CreateResponse) Descriptor() ([]byte, []int)
func (m *CreateResponse) GetLinks() *LinksResponse

func (*CreateResponse) GetRoot

func (m *CreateResponse) GetRoot() *Root

func (*CreateResponse) GetSeed

func (m *CreateResponse) GetSeed() []byte

func (*CreateResponse) GetSeedCid

func (m *CreateResponse) GetSeedCid() string

func (*CreateResponse) ProtoMessage

func (*CreateResponse) ProtoMessage()

func (*CreateResponse) Reset

func (m *CreateResponse) Reset()

func (*CreateResponse) String

func (m *CreateResponse) String() string

func (*CreateResponse) XXX_DiscardUnknown

func (m *CreateResponse) XXX_DiscardUnknown()

func (*CreateResponse) XXX_Marshal

func (m *CreateResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateResponse) XXX_Merge

func (m *CreateResponse) XXX_Merge(src proto.Message)

func (*CreateResponse) XXX_Size

func (m *CreateResponse) XXX_Size() int

func (*CreateResponse) XXX_Unmarshal

func (m *CreateResponse) XXX_Unmarshal(b []byte) error

type DefaultArchiveConfigRequest added in v2.1.0

type DefaultArchiveConfigRequest struct {
	Key                  string   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DefaultArchiveConfigRequest) Descriptor added in v2.1.0

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

func (*DefaultArchiveConfigRequest) GetKey added in v2.1.0

func (m *DefaultArchiveConfigRequest) GetKey() string

func (*DefaultArchiveConfigRequest) ProtoMessage added in v2.1.0

func (*DefaultArchiveConfigRequest) ProtoMessage()

func (*DefaultArchiveConfigRequest) Reset added in v2.1.0

func (m *DefaultArchiveConfigRequest) Reset()

func (*DefaultArchiveConfigRequest) String added in v2.1.0

func (m *DefaultArchiveConfigRequest) String() string

func (*DefaultArchiveConfigRequest) XXX_DiscardUnknown added in v2.1.0

func (m *DefaultArchiveConfigRequest) XXX_DiscardUnknown()

func (*DefaultArchiveConfigRequest) XXX_Marshal added in v2.1.0

func (m *DefaultArchiveConfigRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DefaultArchiveConfigRequest) XXX_Merge added in v2.1.0

func (m *DefaultArchiveConfigRequest) XXX_Merge(src proto.Message)

func (*DefaultArchiveConfigRequest) XXX_Size added in v2.1.0

func (m *DefaultArchiveConfigRequest) XXX_Size() int

func (*DefaultArchiveConfigRequest) XXX_Unmarshal added in v2.1.0

func (m *DefaultArchiveConfigRequest) XXX_Unmarshal(b []byte) error

type DefaultArchiveConfigResponse added in v2.1.0

type DefaultArchiveConfigResponse struct {
	ArchiveConfig        *ArchiveConfig `protobuf:"bytes,1,opt,name=archive_config,json=archiveConfig,proto3" json:"archive_config,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*DefaultArchiveConfigResponse) Descriptor added in v2.1.0

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

func (*DefaultArchiveConfigResponse) GetArchiveConfig added in v2.1.0

func (m *DefaultArchiveConfigResponse) GetArchiveConfig() *ArchiveConfig

func (*DefaultArchiveConfigResponse) ProtoMessage added in v2.1.0

func (*DefaultArchiveConfigResponse) ProtoMessage()

func (*DefaultArchiveConfigResponse) Reset added in v2.1.0

func (m *DefaultArchiveConfigResponse) Reset()

func (*DefaultArchiveConfigResponse) String added in v2.1.0

func (*DefaultArchiveConfigResponse) XXX_DiscardUnknown added in v2.1.0

func (m *DefaultArchiveConfigResponse) XXX_DiscardUnknown()

func (*DefaultArchiveConfigResponse) XXX_Marshal added in v2.1.0

func (m *DefaultArchiveConfigResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DefaultArchiveConfigResponse) XXX_Merge added in v2.1.0

func (m *DefaultArchiveConfigResponse) XXX_Merge(src proto.Message)

func (*DefaultArchiveConfigResponse) XXX_Size added in v2.1.0

func (m *DefaultArchiveConfigResponse) XXX_Size() int

func (*DefaultArchiveConfigResponse) XXX_Unmarshal added in v2.1.0

func (m *DefaultArchiveConfigResponse) XXX_Unmarshal(b []byte) error

type LinksRequest

type LinksRequest struct {
	Key                  string   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Path                 string   `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*LinksRequest) Descriptor

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

func (*LinksRequest) GetKey

func (m *LinksRequest) GetKey() string

func (*LinksRequest) GetPath

func (m *LinksRequest) GetPath() string

func (*LinksRequest) ProtoMessage

func (*LinksRequest) ProtoMessage()

func (*LinksRequest) Reset

func (m *LinksRequest) Reset()

func (*LinksRequest) String

func (m *LinksRequest) String() string

func (*LinksRequest) XXX_DiscardUnknown

func (m *LinksRequest) XXX_DiscardUnknown()

func (*LinksRequest) XXX_Marshal

func (m *LinksRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LinksRequest) XXX_Merge

func (m *LinksRequest) XXX_Merge(src proto.Message)

func (*LinksRequest) XXX_Size

func (m *LinksRequest) XXX_Size() int

func (*LinksRequest) XXX_Unmarshal

func (m *LinksRequest) XXX_Unmarshal(b []byte) error

type LinksResponse

type LinksResponse 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"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*LinksResponse) Descriptor

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

func (*LinksResponse) GetIpns

func (m *LinksResponse) GetIpns() string

func (*LinksResponse) GetUrl

func (m *LinksResponse) GetUrl() string

func (*LinksResponse) GetWww

func (m *LinksResponse) GetWww() string

func (*LinksResponse) ProtoMessage

func (*LinksResponse) ProtoMessage()

func (*LinksResponse) Reset

func (m *LinksResponse) Reset()

func (*LinksResponse) String

func (m *LinksResponse) String() string

func (*LinksResponse) XXX_DiscardUnknown

func (m *LinksResponse) XXX_DiscardUnknown()

func (*LinksResponse) XXX_Marshal

func (m *LinksResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LinksResponse) XXX_Merge

func (m *LinksResponse) XXX_Merge(src proto.Message)

func (*LinksResponse) XXX_Size

func (m *LinksResponse) XXX_Size() int

func (*LinksResponse) XXX_Unmarshal

func (m *LinksResponse) XXX_Unmarshal(b []byte) error

type ListIpfsPathRequest

type ListIpfsPathRequest struct {
	Path                 string   `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ListIpfsPathRequest) Descriptor

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

func (*ListIpfsPathRequest) GetPath

func (m *ListIpfsPathRequest) GetPath() string

func (*ListIpfsPathRequest) ProtoMessage

func (*ListIpfsPathRequest) ProtoMessage()

func (*ListIpfsPathRequest) Reset

func (m *ListIpfsPathRequest) Reset()

func (*ListIpfsPathRequest) String

func (m *ListIpfsPathRequest) String() string

func (*ListIpfsPathRequest) XXX_DiscardUnknown

func (m *ListIpfsPathRequest) XXX_DiscardUnknown()

func (*ListIpfsPathRequest) XXX_Marshal

func (m *ListIpfsPathRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListIpfsPathRequest) XXX_Merge

func (m *ListIpfsPathRequest) XXX_Merge(src proto.Message)

func (*ListIpfsPathRequest) XXX_Size

func (m *ListIpfsPathRequest) XXX_Size() int

func (*ListIpfsPathRequest) XXX_Unmarshal

func (m *ListIpfsPathRequest) XXX_Unmarshal(b []byte) error

type ListIpfsPathResponse

type ListIpfsPathResponse struct {
	Item                 *PathItem `protobuf:"bytes,1,opt,name=item,proto3" json:"item,omitempty"`
	XXX_NoUnkeyedLiteral struct{}  `json:"-"`
	XXX_unrecognized     []byte    `json:"-"`
	XXX_sizecache        int32     `json:"-"`
}

func (*ListIpfsPathResponse) Descriptor

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

func (*ListIpfsPathResponse) GetItem

func (m *ListIpfsPathResponse) GetItem() *PathItem

func (*ListIpfsPathResponse) ProtoMessage

func (*ListIpfsPathResponse) ProtoMessage()

func (*ListIpfsPathResponse) Reset

func (m *ListIpfsPathResponse) Reset()

func (*ListIpfsPathResponse) String

func (m *ListIpfsPathResponse) String() string

func (*ListIpfsPathResponse) XXX_DiscardUnknown

func (m *ListIpfsPathResponse) XXX_DiscardUnknown()

func (*ListIpfsPathResponse) XXX_Marshal

func (m *ListIpfsPathResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListIpfsPathResponse) XXX_Merge

func (m *ListIpfsPathResponse) XXX_Merge(src proto.Message)

func (*ListIpfsPathResponse) XXX_Size

func (m *ListIpfsPathResponse) XXX_Size() int

func (*ListIpfsPathResponse) XXX_Unmarshal

func (m *ListIpfsPathResponse) XXX_Unmarshal(b []byte) error

type ListPathRequest

type ListPathRequest struct {
	Key                  string   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Path                 string   `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ListPathRequest) Descriptor

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

func (*ListPathRequest) GetKey

func (m *ListPathRequest) GetKey() string

func (*ListPathRequest) GetPath

func (m *ListPathRequest) GetPath() string

func (*ListPathRequest) ProtoMessage

func (*ListPathRequest) ProtoMessage()

func (*ListPathRequest) Reset

func (m *ListPathRequest) Reset()

func (*ListPathRequest) String

func (m *ListPathRequest) String() string

func (*ListPathRequest) XXX_DiscardUnknown

func (m *ListPathRequest) XXX_DiscardUnknown()

func (*ListPathRequest) XXX_Marshal

func (m *ListPathRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListPathRequest) XXX_Merge

func (m *ListPathRequest) XXX_Merge(src proto.Message)

func (*ListPathRequest) XXX_Size

func (m *ListPathRequest) XXX_Size() int

func (*ListPathRequest) XXX_Unmarshal

func (m *ListPathRequest) XXX_Unmarshal(b []byte) error

type ListPathResponse

type ListPathResponse struct {
	Item                 *PathItem `protobuf:"bytes,1,opt,name=item,proto3" json:"item,omitempty"`
	Root                 *Root     `protobuf:"bytes,2,opt,name=root,proto3" json:"root,omitempty"`
	XXX_NoUnkeyedLiteral struct{}  `json:"-"`
	XXX_unrecognized     []byte    `json:"-"`
	XXX_sizecache        int32     `json:"-"`
}

func (*ListPathResponse) Descriptor

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

func (*ListPathResponse) GetItem

func (m *ListPathResponse) GetItem() *PathItem

func (*ListPathResponse) GetRoot

func (m *ListPathResponse) GetRoot() *Root

func (*ListPathResponse) ProtoMessage

func (*ListPathResponse) ProtoMessage()

func (*ListPathResponse) Reset

func (m *ListPathResponse) Reset()

func (*ListPathResponse) String

func (m *ListPathResponse) String() string

func (*ListPathResponse) XXX_DiscardUnknown

func (m *ListPathResponse) XXX_DiscardUnknown()

func (*ListPathResponse) XXX_Marshal

func (m *ListPathResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListPathResponse) XXX_Merge

func (m *ListPathResponse) XXX_Merge(src proto.Message)

func (*ListPathResponse) XXX_Size

func (m *ListPathResponse) XXX_Size() int

func (*ListPathResponse) XXX_Unmarshal

func (m *ListPathResponse) XXX_Unmarshal(b []byte) error

type ListRequest

type ListRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ListRequest) Descriptor

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

func (*ListRequest) ProtoMessage

func (*ListRequest) ProtoMessage()

func (*ListRequest) Reset

func (m *ListRequest) Reset()

func (*ListRequest) String

func (m *ListRequest) String() string

func (*ListRequest) XXX_DiscardUnknown

func (m *ListRequest) XXX_DiscardUnknown()

func (*ListRequest) XXX_Marshal

func (m *ListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListRequest) XXX_Merge

func (m *ListRequest) XXX_Merge(src proto.Message)

func (*ListRequest) XXX_Size

func (m *ListRequest) XXX_Size() int

func (*ListRequest) XXX_Unmarshal

func (m *ListRequest) XXX_Unmarshal(b []byte) error

type ListResponse

type ListResponse struct {
	Roots                []*Root  `protobuf:"bytes,1,rep,name=roots,proto3" json:"roots,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ListResponse) Descriptor

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

func (*ListResponse) GetRoots

func (m *ListResponse) GetRoots() []*Root

func (*ListResponse) ProtoMessage

func (*ListResponse) ProtoMessage()

func (*ListResponse) Reset

func (m *ListResponse) Reset()

func (*ListResponse) String

func (m *ListResponse) String() string

func (*ListResponse) XXX_DiscardUnknown

func (m *ListResponse) XXX_DiscardUnknown()

func (*ListResponse) XXX_Marshal

func (m *ListResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListResponse) XXX_Merge

func (m *ListResponse) XXX_Merge(src proto.Message)

func (*ListResponse) XXX_Size

func (m *ListResponse) XXX_Size() int

func (*ListResponse) XXX_Unmarshal

func (m *ListResponse) XXX_Unmarshal(b []byte) error

type Metadata

type Metadata struct {
	Roles                map[string]PathAccessRole `` /* 187-byte string literal not displayed */
	UpdatedAt            int64                     `protobuf:"varint,2,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                  `json:"-"`
	XXX_unrecognized     []byte                    `json:"-"`
	XXX_sizecache        int32                     `json:"-"`
}

func (*Metadata) Descriptor

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

func (*Metadata) GetRoles

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

func (*Metadata) GetUpdatedAt

func (m *Metadata) GetUpdatedAt() int64

func (*Metadata) ProtoMessage

func (*Metadata) ProtoMessage()

func (*Metadata) Reset

func (m *Metadata) Reset()

func (*Metadata) String

func (m *Metadata) String() string

func (*Metadata) XXX_DiscardUnknown

func (m *Metadata) XXX_DiscardUnknown()

func (*Metadata) XXX_Marshal

func (m *Metadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Metadata) XXX_Merge

func (m *Metadata) XXX_Merge(src proto.Message)

func (*Metadata) XXX_Size

func (m *Metadata) XXX_Size() int

func (*Metadata) XXX_Unmarshal

func (m *Metadata) XXX_Unmarshal(b []byte) error

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) EnumDescriptor

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

func (PathAccessRole) String

func (x PathAccessRole) String() string

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,9,opt,name=metadata,proto3" json:"metadata,omitempty"`
	XXX_NoUnkeyedLiteral struct{}    `json:"-"`
	XXX_unrecognized     []byte      `json:"-"`
	XXX_sizecache        int32       `json:"-"`
}

func (*PathItem) Descriptor

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

func (*PathItem) GetCid

func (m *PathItem) GetCid() string

func (*PathItem) GetIsDir

func (m *PathItem) GetIsDir() bool

func (*PathItem) GetItems

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

func (*PathItem) GetItemsCount

func (m *PathItem) GetItemsCount() int32

func (*PathItem) GetMetadata

func (m *PathItem) GetMetadata() *Metadata

func (*PathItem) GetName

func (m *PathItem) GetName() string

func (*PathItem) GetPath

func (m *PathItem) GetPath() string

func (*PathItem) GetSize

func (m *PathItem) GetSize() int64

func (*PathItem) ProtoMessage

func (*PathItem) ProtoMessage()

func (*PathItem) Reset

func (m *PathItem) Reset()

func (*PathItem) String

func (m *PathItem) String() string

func (*PathItem) XXX_DiscardUnknown

func (m *PathItem) XXX_DiscardUnknown()

func (*PathItem) XXX_Marshal

func (m *PathItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PathItem) XXX_Merge

func (m *PathItem) XXX_Merge(src proto.Message)

func (*PathItem) XXX_Size

func (m *PathItem) XXX_Size() int

func (*PathItem) XXX_Unmarshal

func (m *PathItem) XXX_Unmarshal(b []byte) error

type PullIpfsPathRequest

type PullIpfsPathRequest struct {
	Path                 string   `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PullIpfsPathRequest) Descriptor

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

func (*PullIpfsPathRequest) GetPath

func (m *PullIpfsPathRequest) GetPath() string

func (*PullIpfsPathRequest) ProtoMessage

func (*PullIpfsPathRequest) ProtoMessage()

func (*PullIpfsPathRequest) Reset

func (m *PullIpfsPathRequest) Reset()

func (*PullIpfsPathRequest) String

func (m *PullIpfsPathRequest) String() string

func (*PullIpfsPathRequest) XXX_DiscardUnknown

func (m *PullIpfsPathRequest) XXX_DiscardUnknown()

func (*PullIpfsPathRequest) XXX_Marshal

func (m *PullIpfsPathRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PullIpfsPathRequest) XXX_Merge

func (m *PullIpfsPathRequest) XXX_Merge(src proto.Message)

func (*PullIpfsPathRequest) XXX_Size

func (m *PullIpfsPathRequest) XXX_Size() int

func (*PullIpfsPathRequest) XXX_Unmarshal

func (m *PullIpfsPathRequest) XXX_Unmarshal(b []byte) error

type PullIpfsPathResponse

type PullIpfsPathResponse struct {
	Chunk                []byte   `protobuf:"bytes,1,opt,name=chunk,proto3" json:"chunk,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PullIpfsPathResponse) Descriptor

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

func (*PullIpfsPathResponse) GetChunk

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

func (*PullIpfsPathResponse) ProtoMessage

func (*PullIpfsPathResponse) ProtoMessage()

func (*PullIpfsPathResponse) Reset

func (m *PullIpfsPathResponse) Reset()

func (*PullIpfsPathResponse) String

func (m *PullIpfsPathResponse) String() string

func (*PullIpfsPathResponse) XXX_DiscardUnknown

func (m *PullIpfsPathResponse) XXX_DiscardUnknown()

func (*PullIpfsPathResponse) XXX_Marshal

func (m *PullIpfsPathResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PullIpfsPathResponse) XXX_Merge

func (m *PullIpfsPathResponse) XXX_Merge(src proto.Message)

func (*PullIpfsPathResponse) XXX_Size

func (m *PullIpfsPathResponse) XXX_Size() int

func (*PullIpfsPathResponse) XXX_Unmarshal

func (m *PullIpfsPathResponse) XXX_Unmarshal(b []byte) error

type PullPathAccessRolesRequest

type PullPathAccessRolesRequest struct {
	Key                  string   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Path                 string   `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PullPathAccessRolesRequest) Descriptor

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

func (*PullPathAccessRolesRequest) GetKey

func (m *PullPathAccessRolesRequest) GetKey() string

func (*PullPathAccessRolesRequest) GetPath

func (m *PullPathAccessRolesRequest) GetPath() string

func (*PullPathAccessRolesRequest) ProtoMessage

func (*PullPathAccessRolesRequest) ProtoMessage()

func (*PullPathAccessRolesRequest) Reset

func (m *PullPathAccessRolesRequest) Reset()

func (*PullPathAccessRolesRequest) String

func (m *PullPathAccessRolesRequest) String() string

func (*PullPathAccessRolesRequest) XXX_DiscardUnknown

func (m *PullPathAccessRolesRequest) XXX_DiscardUnknown()

func (*PullPathAccessRolesRequest) XXX_Marshal

func (m *PullPathAccessRolesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PullPathAccessRolesRequest) XXX_Merge

func (m *PullPathAccessRolesRequest) XXX_Merge(src proto.Message)

func (*PullPathAccessRolesRequest) XXX_Size

func (m *PullPathAccessRolesRequest) XXX_Size() int

func (*PullPathAccessRolesRequest) XXX_Unmarshal

func (m *PullPathAccessRolesRequest) XXX_Unmarshal(b []byte) error

type PullPathAccessRolesResponse

type PullPathAccessRolesResponse struct {
	Roles                map[string]PathAccessRole `` /* 187-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}                  `json:"-"`
	XXX_unrecognized     []byte                    `json:"-"`
	XXX_sizecache        int32                     `json:"-"`
}

func (*PullPathAccessRolesResponse) Descriptor

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

func (*PullPathAccessRolesResponse) GetRoles

func (*PullPathAccessRolesResponse) ProtoMessage

func (*PullPathAccessRolesResponse) ProtoMessage()

func (*PullPathAccessRolesResponse) Reset

func (m *PullPathAccessRolesResponse) Reset()

func (*PullPathAccessRolesResponse) String

func (m *PullPathAccessRolesResponse) String() string

func (*PullPathAccessRolesResponse) XXX_DiscardUnknown

func (m *PullPathAccessRolesResponse) XXX_DiscardUnknown()

func (*PullPathAccessRolesResponse) XXX_Marshal

func (m *PullPathAccessRolesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PullPathAccessRolesResponse) XXX_Merge

func (m *PullPathAccessRolesResponse) XXX_Merge(src proto.Message)

func (*PullPathAccessRolesResponse) XXX_Size

func (m *PullPathAccessRolesResponse) XXX_Size() int

func (*PullPathAccessRolesResponse) XXX_Unmarshal

func (m *PullPathAccessRolesResponse) XXX_Unmarshal(b []byte) error

type PullPathRequest

type PullPathRequest struct {
	Key                  string   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Path                 string   `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PullPathRequest) Descriptor

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

func (*PullPathRequest) GetKey

func (m *PullPathRequest) GetKey() string

func (*PullPathRequest) GetPath

func (m *PullPathRequest) GetPath() string

func (*PullPathRequest) ProtoMessage

func (*PullPathRequest) ProtoMessage()

func (*PullPathRequest) Reset

func (m *PullPathRequest) Reset()

func (*PullPathRequest) String

func (m *PullPathRequest) String() string

func (*PullPathRequest) XXX_DiscardUnknown

func (m *PullPathRequest) XXX_DiscardUnknown()

func (*PullPathRequest) XXX_Marshal

func (m *PullPathRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PullPathRequest) XXX_Merge

func (m *PullPathRequest) XXX_Merge(src proto.Message)

func (*PullPathRequest) XXX_Size

func (m *PullPathRequest) XXX_Size() int

func (*PullPathRequest) XXX_Unmarshal

func (m *PullPathRequest) XXX_Unmarshal(b []byte) error

type PullPathResponse

type PullPathResponse struct {
	Chunk                []byte   `protobuf:"bytes,1,opt,name=chunk,proto3" json:"chunk,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PullPathResponse) Descriptor

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

func (*PullPathResponse) GetChunk

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

func (*PullPathResponse) ProtoMessage

func (*PullPathResponse) ProtoMessage()

func (*PullPathResponse) Reset

func (m *PullPathResponse) Reset()

func (*PullPathResponse) String

func (m *PullPathResponse) String() string

func (*PullPathResponse) XXX_DiscardUnknown

func (m *PullPathResponse) XXX_DiscardUnknown()

func (*PullPathResponse) XXX_Marshal

func (m *PullPathResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PullPathResponse) XXX_Merge

func (m *PullPathResponse) XXX_Merge(src proto.Message)

func (*PullPathResponse) XXX_Size

func (m *PullPathResponse) XXX_Size() int

func (*PullPathResponse) XXX_Unmarshal

func (m *PullPathResponse) XXX_Unmarshal(b []byte) error

type PushPathAccessRolesRequest

type PushPathAccessRolesRequest struct {
	Key                  string                    `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Path                 string                    `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
	Roles                map[string]PathAccessRole `` /* 187-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}                  `json:"-"`
	XXX_unrecognized     []byte                    `json:"-"`
	XXX_sizecache        int32                     `json:"-"`
}

func (*PushPathAccessRolesRequest) Descriptor

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

func (*PushPathAccessRolesRequest) GetKey

func (m *PushPathAccessRolesRequest) GetKey() string

func (*PushPathAccessRolesRequest) GetPath

func (m *PushPathAccessRolesRequest) GetPath() string

func (*PushPathAccessRolesRequest) GetRoles

func (*PushPathAccessRolesRequest) ProtoMessage

func (*PushPathAccessRolesRequest) ProtoMessage()

func (*PushPathAccessRolesRequest) Reset

func (m *PushPathAccessRolesRequest) Reset()

func (*PushPathAccessRolesRequest) String

func (m *PushPathAccessRolesRequest) String() string

func (*PushPathAccessRolesRequest) XXX_DiscardUnknown

func (m *PushPathAccessRolesRequest) XXX_DiscardUnknown()

func (*PushPathAccessRolesRequest) XXX_Marshal

func (m *PushPathAccessRolesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PushPathAccessRolesRequest) XXX_Merge

func (m *PushPathAccessRolesRequest) XXX_Merge(src proto.Message)

func (*PushPathAccessRolesRequest) XXX_Size

func (m *PushPathAccessRolesRequest) XXX_Size() int

func (*PushPathAccessRolesRequest) XXX_Unmarshal

func (m *PushPathAccessRolesRequest) XXX_Unmarshal(b []byte) error

type PushPathAccessRolesResponse

type PushPathAccessRolesResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PushPathAccessRolesResponse) Descriptor

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

func (*PushPathAccessRolesResponse) ProtoMessage

func (*PushPathAccessRolesResponse) ProtoMessage()

func (*PushPathAccessRolesResponse) Reset

func (m *PushPathAccessRolesResponse) Reset()

func (*PushPathAccessRolesResponse) String

func (m *PushPathAccessRolesResponse) String() string

func (*PushPathAccessRolesResponse) XXX_DiscardUnknown

func (m *PushPathAccessRolesResponse) XXX_DiscardUnknown()

func (*PushPathAccessRolesResponse) XXX_Marshal

func (m *PushPathAccessRolesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PushPathAccessRolesResponse) XXX_Merge

func (m *PushPathAccessRolesResponse) XXX_Merge(src proto.Message)

func (*PushPathAccessRolesResponse) XXX_Size

func (m *PushPathAccessRolesResponse) XXX_Size() int

func (*PushPathAccessRolesResponse) XXX_Unmarshal

func (m *PushPathAccessRolesResponse) XXX_Unmarshal(b []byte) error

type PushPathRequest

type PushPathRequest struct {
	// Types that are valid to be assigned to Payload:
	//	*PushPathRequest_Header_
	//	*PushPathRequest_Chunk
	Payload              isPushPathRequest_Payload `protobuf_oneof:"payload"`
	XXX_NoUnkeyedLiteral struct{}                  `json:"-"`
	XXX_unrecognized     []byte                    `json:"-"`
	XXX_sizecache        int32                     `json:"-"`
}

func (*PushPathRequest) Descriptor

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

func (*PushPathRequest) GetChunk

func (m *PushPathRequest) GetChunk() []byte

func (*PushPathRequest) GetHeader

func (m *PushPathRequest) GetHeader() *PushPathRequest_Header

func (*PushPathRequest) GetPayload

func (m *PushPathRequest) GetPayload() isPushPathRequest_Payload

func (*PushPathRequest) ProtoMessage

func (*PushPathRequest) ProtoMessage()

func (*PushPathRequest) Reset

func (m *PushPathRequest) Reset()

func (*PushPathRequest) String

func (m *PushPathRequest) String() string

func (*PushPathRequest) XXX_DiscardUnknown

func (m *PushPathRequest) XXX_DiscardUnknown()

func (*PushPathRequest) XXX_Marshal

func (m *PushPathRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PushPathRequest) XXX_Merge

func (m *PushPathRequest) XXX_Merge(src proto.Message)

func (*PushPathRequest) XXX_OneofWrappers

func (*PushPathRequest) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*PushPathRequest) XXX_Size

func (m *PushPathRequest) XXX_Size() int

func (*PushPathRequest) XXX_Unmarshal

func (m *PushPathRequest) XXX_Unmarshal(b []byte) error

type PushPathRequest_Chunk

type PushPathRequest_Chunk struct {
	Chunk []byte `protobuf:"bytes,2,opt,name=chunk,proto3,oneof"`
}

type PushPathRequest_Header

type PushPathRequest_Header struct {
	Key                  string   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Path                 string   `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
	Root                 string   `protobuf:"bytes,3,opt,name=root,proto3" json:"root,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PushPathRequest_Header) Descriptor

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

func (*PushPathRequest_Header) GetKey

func (m *PushPathRequest_Header) GetKey() string

func (*PushPathRequest_Header) GetPath

func (m *PushPathRequest_Header) GetPath() string

func (*PushPathRequest_Header) GetRoot

func (m *PushPathRequest_Header) GetRoot() string

func (*PushPathRequest_Header) ProtoMessage

func (*PushPathRequest_Header) ProtoMessage()

func (*PushPathRequest_Header) Reset

func (m *PushPathRequest_Header) Reset()

func (*PushPathRequest_Header) String

func (m *PushPathRequest_Header) String() string

func (*PushPathRequest_Header) XXX_DiscardUnknown

func (m *PushPathRequest_Header) XXX_DiscardUnknown()

func (*PushPathRequest_Header) XXX_Marshal

func (m *PushPathRequest_Header) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PushPathRequest_Header) XXX_Merge

func (m *PushPathRequest_Header) XXX_Merge(src proto.Message)

func (*PushPathRequest_Header) XXX_Size

func (m *PushPathRequest_Header) XXX_Size() int

func (*PushPathRequest_Header) XXX_Unmarshal

func (m *PushPathRequest_Header) XXX_Unmarshal(b []byte) error

type PushPathRequest_Header_

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

type PushPathResponse

type PushPathResponse struct {
	// Types that are valid to be assigned to Payload:
	//	*PushPathResponse_Event_
	//	*PushPathResponse_Error
	Payload              isPushPathResponse_Payload `protobuf_oneof:"payload"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*PushPathResponse) Descriptor

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

func (*PushPathResponse) GetError

func (m *PushPathResponse) GetError() string

func (*PushPathResponse) GetEvent

func (*PushPathResponse) GetPayload

func (m *PushPathResponse) GetPayload() isPushPathResponse_Payload

func (*PushPathResponse) ProtoMessage

func (*PushPathResponse) ProtoMessage()

func (*PushPathResponse) Reset

func (m *PushPathResponse) Reset()

func (*PushPathResponse) String

func (m *PushPathResponse) String() string

func (*PushPathResponse) XXX_DiscardUnknown

func (m *PushPathResponse) XXX_DiscardUnknown()

func (*PushPathResponse) XXX_Marshal

func (m *PushPathResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PushPathResponse) XXX_Merge

func (m *PushPathResponse) XXX_Merge(src proto.Message)

func (*PushPathResponse) XXX_OneofWrappers

func (*PushPathResponse) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*PushPathResponse) XXX_Size

func (m *PushPathResponse) XXX_Size() int

func (*PushPathResponse) XXX_Unmarshal

func (m *PushPathResponse) XXX_Unmarshal(b []byte) error

type PushPathResponse_Error

type PushPathResponse_Error struct {
	Error string `protobuf:"bytes,2,opt,name=error,proto3,oneof"`
}

type PushPathResponse_Event

type PushPathResponse_Event struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Path                 string   `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
	Bytes                int64    `protobuf:"varint,3,opt,name=bytes,proto3" json:"bytes,omitempty"`
	Size                 string   `protobuf:"bytes,4,opt,name=size,proto3" json:"size,omitempty"`
	Root                 *Root    `protobuf:"bytes,5,opt,name=root,proto3" json:"root,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PushPathResponse_Event) Descriptor

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

func (*PushPathResponse_Event) GetBytes

func (m *PushPathResponse_Event) GetBytes() int64

func (*PushPathResponse_Event) GetName

func (m *PushPathResponse_Event) GetName() string

func (*PushPathResponse_Event) GetPath

func (m *PushPathResponse_Event) GetPath() string

func (*PushPathResponse_Event) GetRoot

func (m *PushPathResponse_Event) GetRoot() *Root

func (*PushPathResponse_Event) GetSize

func (m *PushPathResponse_Event) GetSize() string

func (*PushPathResponse_Event) ProtoMessage

func (*PushPathResponse_Event) ProtoMessage()

func (*PushPathResponse_Event) Reset

func (m *PushPathResponse_Event) Reset()

func (*PushPathResponse_Event) String

func (m *PushPathResponse_Event) String() string

func (*PushPathResponse_Event) XXX_DiscardUnknown

func (m *PushPathResponse_Event) XXX_DiscardUnknown()

func (*PushPathResponse_Event) XXX_Marshal

func (m *PushPathResponse_Event) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PushPathResponse_Event) XXX_Merge

func (m *PushPathResponse_Event) XXX_Merge(src proto.Message)

func (*PushPathResponse_Event) XXX_Size

func (m *PushPathResponse_Event) XXX_Size() int

func (*PushPathResponse_Event) XXX_Unmarshal

func (m *PushPathResponse_Event) XXX_Unmarshal(b []byte) error

type PushPathResponse_Event_

type PushPathResponse_Event_ struct {
	Event *PushPathResponse_Event `protobuf:"bytes,1,opt,name=event,proto3,oneof"`
}

type RemovePathRequest

type RemovePathRequest struct {
	Key                  string   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Path                 string   `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
	Root                 string   `protobuf:"bytes,3,opt,name=root,proto3" json:"root,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RemovePathRequest) Descriptor

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

func (*RemovePathRequest) GetKey

func (m *RemovePathRequest) GetKey() string

func (*RemovePathRequest) GetPath

func (m *RemovePathRequest) GetPath() string

func (*RemovePathRequest) GetRoot

func (m *RemovePathRequest) GetRoot() string

func (*RemovePathRequest) ProtoMessage

func (*RemovePathRequest) ProtoMessage()

func (*RemovePathRequest) Reset

func (m *RemovePathRequest) Reset()

func (*RemovePathRequest) String

func (m *RemovePathRequest) String() string

func (*RemovePathRequest) XXX_DiscardUnknown

func (m *RemovePathRequest) XXX_DiscardUnknown()

func (*RemovePathRequest) XXX_Marshal

func (m *RemovePathRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RemovePathRequest) XXX_Merge

func (m *RemovePathRequest) XXX_Merge(src proto.Message)

func (*RemovePathRequest) XXX_Size

func (m *RemovePathRequest) XXX_Size() int

func (*RemovePathRequest) XXX_Unmarshal

func (m *RemovePathRequest) XXX_Unmarshal(b []byte) error

type RemovePathResponse

type RemovePathResponse struct {
	Root                 *Root    `protobuf:"bytes,1,opt,name=root,proto3" json:"root,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RemovePathResponse) Descriptor

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

func (*RemovePathResponse) GetRoot

func (m *RemovePathResponse) GetRoot() *Root

func (*RemovePathResponse) ProtoMessage

func (*RemovePathResponse) ProtoMessage()

func (*RemovePathResponse) Reset

func (m *RemovePathResponse) Reset()

func (*RemovePathResponse) String

func (m *RemovePathResponse) String() string

func (*RemovePathResponse) XXX_DiscardUnknown

func (m *RemovePathResponse) XXX_DiscardUnknown()

func (*RemovePathResponse) XXX_Marshal

func (m *RemovePathResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RemovePathResponse) XXX_Merge

func (m *RemovePathResponse) XXX_Merge(src proto.Message)

func (*RemovePathResponse) XXX_Size

func (m *RemovePathResponse) XXX_Size() int

func (*RemovePathResponse) XXX_Unmarshal

func (m *RemovePathResponse) XXX_Unmarshal(b []byte) error

type RemoveRequest

type RemoveRequest struct {
	Key                  string   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RemoveRequest) Descriptor

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

func (*RemoveRequest) GetKey

func (m *RemoveRequest) GetKey() string

func (*RemoveRequest) ProtoMessage

func (*RemoveRequest) ProtoMessage()

func (*RemoveRequest) Reset

func (m *RemoveRequest) Reset()

func (*RemoveRequest) String

func (m *RemoveRequest) String() string

func (*RemoveRequest) XXX_DiscardUnknown

func (m *RemoveRequest) XXX_DiscardUnknown()

func (*RemoveRequest) XXX_Marshal

func (m *RemoveRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RemoveRequest) XXX_Merge

func (m *RemoveRequest) XXX_Merge(src proto.Message)

func (*RemoveRequest) XXX_Size

func (m *RemoveRequest) XXX_Size() int

func (*RemoveRequest) XXX_Unmarshal

func (m *RemoveRequest) XXX_Unmarshal(b []byte) error

type RemoveResponse

type RemoveResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RemoveResponse) Descriptor

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

func (*RemoveResponse) ProtoMessage

func (*RemoveResponse) ProtoMessage()

func (*RemoveResponse) Reset

func (m *RemoveResponse) Reset()

func (*RemoveResponse) String

func (m *RemoveResponse) String() string

func (*RemoveResponse) XXX_DiscardUnknown

func (m *RemoveResponse) XXX_DiscardUnknown()

func (*RemoveResponse) XXX_Marshal

func (m *RemoveResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RemoveResponse) XXX_Merge

func (m *RemoveResponse) XXX_Merge(src proto.Message)

func (*RemoveResponse) XXX_Size

func (m *RemoveResponse) XXX_Size() int

func (*RemoveResponse) XXX_Unmarshal

func (m *RemoveResponse) XXX_Unmarshal(b []byte) error

type Root

type Root 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=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	UpdatedAt            int64     `protobuf:"varint,5,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	Thread               string    `protobuf:"bytes,6,opt,name=thread,proto3" json:"thread,omitempty"`
	Owner                string    `protobuf:"bytes,7,opt,name=owner,proto3" json:"owner,omitempty"`
	Version              int32     `protobuf:"varint,8,opt,name=version,proto3" json:"version,omitempty"`
	Metadata             *Metadata `protobuf:"bytes,9,opt,name=metadata,proto3" json:"metadata,omitempty"`
	XXX_NoUnkeyedLiteral struct{}  `json:"-"`
	XXX_unrecognized     []byte    `json:"-"`
	XXX_sizecache        int32     `json:"-"`
}

func (*Root) Descriptor

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

func (*Root) GetCreatedAt

func (m *Root) GetCreatedAt() int64

func (*Root) GetKey

func (m *Root) GetKey() string

func (*Root) GetMetadata

func (m *Root) GetMetadata() *Metadata

func (*Root) GetName

func (m *Root) GetName() string

func (*Root) GetOwner

func (m *Root) GetOwner() string

func (*Root) GetPath

func (m *Root) GetPath() string

func (*Root) GetThread

func (m *Root) GetThread() string

func (*Root) GetUpdatedAt

func (m *Root) GetUpdatedAt() int64

func (*Root) GetVersion

func (m *Root) GetVersion() int32

func (*Root) ProtoMessage

func (*Root) ProtoMessage()

func (*Root) Reset

func (m *Root) Reset()

func (*Root) String

func (m *Root) String() string

func (*Root) XXX_DiscardUnknown

func (m *Root) XXX_DiscardUnknown()

func (*Root) XXX_Marshal

func (m *Root) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Root) XXX_Merge

func (m *Root) XXX_Merge(src proto.Message)

func (*Root) XXX_Size

func (m *Root) XXX_Size() int

func (*Root) XXX_Unmarshal

func (m *Root) XXX_Unmarshal(b []byte) error

type RootRequest

type RootRequest struct {
	Key                  string   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RootRequest) Descriptor

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

func (*RootRequest) GetKey

func (m *RootRequest) GetKey() string

func (*RootRequest) ProtoMessage

func (*RootRequest) ProtoMessage()

func (*RootRequest) Reset

func (m *RootRequest) Reset()

func (*RootRequest) String

func (m *RootRequest) String() string

func (*RootRequest) XXX_DiscardUnknown

func (m *RootRequest) XXX_DiscardUnknown()

func (*RootRequest) XXX_Marshal

func (m *RootRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RootRequest) XXX_Merge

func (m *RootRequest) XXX_Merge(src proto.Message)

func (*RootRequest) XXX_Size

func (m *RootRequest) XXX_Size() int

func (*RootRequest) XXX_Unmarshal

func (m *RootRequest) XXX_Unmarshal(b []byte) error

type RootResponse

type RootResponse struct {
	Root                 *Root    `protobuf:"bytes,1,opt,name=root,proto3" json:"root,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RootResponse) Descriptor

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

func (*RootResponse) GetRoot

func (m *RootResponse) GetRoot() *Root

func (*RootResponse) ProtoMessage

func (*RootResponse) ProtoMessage()

func (*RootResponse) Reset

func (m *RootResponse) Reset()

func (*RootResponse) String

func (m *RootResponse) String() string

func (*RootResponse) XXX_DiscardUnknown

func (m *RootResponse) XXX_DiscardUnknown()

func (*RootResponse) XXX_Marshal

func (m *RootResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RootResponse) XXX_Merge

func (m *RootResponse) XXX_Merge(src proto.Message)

func (*RootResponse) XXX_Size

func (m *RootResponse) XXX_Size() int

func (*RootResponse) XXX_Unmarshal

func (m *RootResponse) XXX_Unmarshal(b []byte) error

type SetDefaultArchiveConfigRequest added in v2.1.0

type SetDefaultArchiveConfigRequest struct {
	Key                  string         `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	ArchiveConfig        *ArchiveConfig `protobuf:"bytes,2,opt,name=archive_config,json=archiveConfig,proto3" json:"archive_config,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*SetDefaultArchiveConfigRequest) Descriptor added in v2.1.0

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

func (*SetDefaultArchiveConfigRequest) GetArchiveConfig added in v2.1.0

func (m *SetDefaultArchiveConfigRequest) GetArchiveConfig() *ArchiveConfig

func (*SetDefaultArchiveConfigRequest) GetKey added in v2.1.0

func (*SetDefaultArchiveConfigRequest) ProtoMessage added in v2.1.0

func (*SetDefaultArchiveConfigRequest) ProtoMessage()

func (*SetDefaultArchiveConfigRequest) Reset added in v2.1.0

func (m *SetDefaultArchiveConfigRequest) Reset()

func (*SetDefaultArchiveConfigRequest) String added in v2.1.0

func (*SetDefaultArchiveConfigRequest) XXX_DiscardUnknown added in v2.1.0

func (m *SetDefaultArchiveConfigRequest) XXX_DiscardUnknown()

func (*SetDefaultArchiveConfigRequest) XXX_Marshal added in v2.1.0

func (m *SetDefaultArchiveConfigRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SetDefaultArchiveConfigRequest) XXX_Merge added in v2.1.0

func (m *SetDefaultArchiveConfigRequest) XXX_Merge(src proto.Message)

func (*SetDefaultArchiveConfigRequest) XXX_Size added in v2.1.0

func (m *SetDefaultArchiveConfigRequest) XXX_Size() int

func (*SetDefaultArchiveConfigRequest) XXX_Unmarshal added in v2.1.0

func (m *SetDefaultArchiveConfigRequest) XXX_Unmarshal(b []byte) error

type SetDefaultArchiveConfigResponse added in v2.1.0

type SetDefaultArchiveConfigResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SetDefaultArchiveConfigResponse) Descriptor added in v2.1.0

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

func (*SetDefaultArchiveConfigResponse) ProtoMessage added in v2.1.0

func (*SetDefaultArchiveConfigResponse) ProtoMessage()

func (*SetDefaultArchiveConfigResponse) Reset added in v2.1.0

func (*SetDefaultArchiveConfigResponse) String added in v2.1.0

func (*SetDefaultArchiveConfigResponse) XXX_DiscardUnknown added in v2.1.0

func (m *SetDefaultArchiveConfigResponse) XXX_DiscardUnknown()

func (*SetDefaultArchiveConfigResponse) XXX_Marshal added in v2.1.0

func (m *SetDefaultArchiveConfigResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SetDefaultArchiveConfigResponse) XXX_Merge added in v2.1.0

func (m *SetDefaultArchiveConfigResponse) XXX_Merge(src proto.Message)

func (*SetDefaultArchiveConfigResponse) XXX_Size added in v2.1.0

func (m *SetDefaultArchiveConfigResponse) XXX_Size() int

func (*SetDefaultArchiveConfigResponse) XXX_Unmarshal added in v2.1.0

func (m *SetDefaultArchiveConfigResponse) XXX_Unmarshal(b []byte) error

type SetPathRequest

type SetPathRequest struct {
	Key                  string   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,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"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SetPathRequest) Descriptor

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

func (*SetPathRequest) GetCid

func (m *SetPathRequest) GetCid() string

func (*SetPathRequest) GetKey

func (m *SetPathRequest) GetKey() string

func (*SetPathRequest) GetPath

func (m *SetPathRequest) GetPath() string

func (*SetPathRequest) ProtoMessage

func (*SetPathRequest) ProtoMessage()

func (*SetPathRequest) Reset

func (m *SetPathRequest) Reset()

func (*SetPathRequest) String

func (m *SetPathRequest) String() string

func (*SetPathRequest) XXX_DiscardUnknown

func (m *SetPathRequest) XXX_DiscardUnknown()

func (*SetPathRequest) XXX_Marshal

func (m *SetPathRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SetPathRequest) XXX_Merge

func (m *SetPathRequest) XXX_Merge(src proto.Message)

func (*SetPathRequest) XXX_Size

func (m *SetPathRequest) XXX_Size() int

func (*SetPathRequest) XXX_Unmarshal

func (m *SetPathRequest) XXX_Unmarshal(b []byte) error

type SetPathResponse

type SetPathResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SetPathResponse) Descriptor

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

func (*SetPathResponse) ProtoMessage

func (*SetPathResponse) ProtoMessage()

func (*SetPathResponse) Reset

func (m *SetPathResponse) Reset()

func (*SetPathResponse) String

func (m *SetPathResponse) String() string

func (*SetPathResponse) XXX_DiscardUnknown

func (m *SetPathResponse) XXX_DiscardUnknown()

func (*SetPathResponse) XXX_Marshal

func (m *SetPathResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SetPathResponse) XXX_Merge

func (m *SetPathResponse) XXX_Merge(src proto.Message)

func (*SetPathResponse) XXX_Size

func (m *SetPathResponse) XXX_Size() int

func (*SetPathResponse) XXX_Unmarshal

func (m *SetPathResponse) XXX_Unmarshal(b []byte) error

type UnimplementedAPIServiceServer

type UnimplementedAPIServiceServer struct {
}

UnimplementedAPIServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedAPIServiceServer) Archive

func (*UnimplementedAPIServiceServer) ArchiveInfo

func (*UnimplementedAPIServiceServer) ArchiveStatus

func (*UnimplementedAPIServiceServer) ArchiveWatch

func (*UnimplementedAPIServiceServer) Create

func (*UnimplementedAPIServiceServer) DefaultArchiveConfig added in v2.1.0

func (*UnimplementedAPIServiceServer) List

func (*UnimplementedAPIServiceServer) ListIpfsPath

func (*UnimplementedAPIServiceServer) ListPath

func (*UnimplementedAPIServiceServer) PullIpfsPath

func (*UnimplementedAPIServiceServer) PullPath

func (*UnimplementedAPIServiceServer) PullPathAccessRoles

func (*UnimplementedAPIServiceServer) PushPath

func (*UnimplementedAPIServiceServer) PushPathAccessRoles

func (*UnimplementedAPIServiceServer) Remove

func (*UnimplementedAPIServiceServer) RemovePath

func (*UnimplementedAPIServiceServer) Root

func (*UnimplementedAPIServiceServer) SetDefaultArchiveConfig added in v2.1.0

func (*UnimplementedAPIServiceServer) SetPath

Jump to

Keyboard shortcuts

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