adminPb

package
v1.2.6 Latest Latest
Warning

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

Go to latest
Published: Dec 19, 2020 License: MIT Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_powergate_admin_v1_admin_proto protoreflect.FileDescriptor

Functions

func RegisterAdminServiceServer

func RegisterAdminServiceServer(s grpc.ServiceRegistrar, srv AdminServiceServer)

Types

type AddressesRequest

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

func (*AddressesRequest) Descriptor deprecated

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

Deprecated: Use AddressesRequest.ProtoReflect.Descriptor instead.

func (*AddressesRequest) ProtoMessage

func (*AddressesRequest) ProtoMessage()

func (*AddressesRequest) ProtoReflect

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

func (*AddressesRequest) Reset

func (x *AddressesRequest) Reset()

func (*AddressesRequest) String

func (x *AddressesRequest) String() string

type AddressesResponse

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

func (*AddressesResponse) Descriptor deprecated

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

Deprecated: Use AddressesResponse.ProtoReflect.Descriptor instead.

func (*AddressesResponse) GetAddresses

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

func (*AddressesResponse) ProtoMessage

func (*AddressesResponse) ProtoMessage()

func (*AddressesResponse) ProtoReflect

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

func (*AddressesResponse) Reset

func (x *AddressesResponse) Reset()

func (*AddressesResponse) String

func (x *AddressesResponse) String() string

type AdminServiceClient

type AdminServiceClient interface {
	// Wallet
	NewAddress(ctx context.Context, in *NewAddressRequest, opts ...grpc.CallOption) (*NewAddressResponse, error)
	Addresses(ctx context.Context, in *AddressesRequest, opts ...grpc.CallOption) (*AddressesResponse, error)
	SendFil(ctx context.Context, in *SendFilRequest, opts ...grpc.CallOption) (*SendFilResponse, error)
	// Users
	CreateUser(ctx context.Context, in *CreateUserRequest, opts ...grpc.CallOption) (*CreateUserResponse, error)
	Users(ctx context.Context, in *UsersRequest, opts ...grpc.CallOption) (*UsersResponse, error)
	// Jobs
	QueuedStorageJobs(ctx context.Context, in *QueuedStorageJobsRequest, opts ...grpc.CallOption) (*QueuedStorageJobsResponse, error)
	ExecutingStorageJobs(ctx context.Context, in *ExecutingStorageJobsRequest, opts ...grpc.CallOption) (*ExecutingStorageJobsResponse, error)
	LatestFinalStorageJobs(ctx context.Context, in *LatestFinalStorageJobsRequest, opts ...grpc.CallOption) (*LatestFinalStorageJobsResponse, error)
	LatestSuccessfulStorageJobs(ctx context.Context, in *LatestSuccessfulStorageJobsRequest, opts ...grpc.CallOption) (*LatestSuccessfulStorageJobsResponse, error)
	StorageJobsSummary(ctx context.Context, in *StorageJobsSummaryRequest, opts ...grpc.CallOption) (*StorageJobsSummaryResponse, error)
	GCStaged(ctx context.Context, in *GCStagedRequest, opts ...grpc.CallOption) (*GCStagedResponse, error)
	PinnedCids(ctx context.Context, in *PinnedCidsRequest, opts ...grpc.CallOption) (*PinnedCidsResponse, error)
}

AdminServiceClient is the client API for AdminService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type AdminServiceServer

AdminServiceServer is the server API for AdminService service. All implementations must embed UnimplementedAdminServiceServer for forward compatibility

type CreateUserRequest

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

func (*CreateUserRequest) Descriptor deprecated

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

Deprecated: Use CreateUserRequest.ProtoReflect.Descriptor instead.

func (*CreateUserRequest) ProtoMessage

func (*CreateUserRequest) ProtoMessage()

func (*CreateUserRequest) ProtoReflect

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

func (*CreateUserRequest) Reset

func (x *CreateUserRequest) Reset()

func (*CreateUserRequest) String

func (x *CreateUserRequest) String() string

type CreateUserResponse

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

func (*CreateUserResponse) Descriptor deprecated

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

Deprecated: Use CreateUserResponse.ProtoReflect.Descriptor instead.

func (*CreateUserResponse) GetUser

func (x *CreateUserResponse) GetUser() *User

func (*CreateUserResponse) ProtoMessage

func (*CreateUserResponse) ProtoMessage()

func (*CreateUserResponse) ProtoReflect

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

func (*CreateUserResponse) Reset

func (x *CreateUserResponse) Reset()

func (*CreateUserResponse) String

func (x *CreateUserResponse) String() string

type ExecutingStorageJobsRequest

type ExecutingStorageJobsRequest struct {
	UserId string   `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Cids   []string `protobuf:"bytes,2,rep,name=cids,proto3" json:"cids,omitempty"`
	// contains filtered or unexported fields
}

func (*ExecutingStorageJobsRequest) Descriptor deprecated

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

Deprecated: Use ExecutingStorageJobsRequest.ProtoReflect.Descriptor instead.

func (*ExecutingStorageJobsRequest) GetCids

func (x *ExecutingStorageJobsRequest) GetCids() []string

func (*ExecutingStorageJobsRequest) GetUserId

func (x *ExecutingStorageJobsRequest) GetUserId() string

func (*ExecutingStorageJobsRequest) ProtoMessage

func (*ExecutingStorageJobsRequest) ProtoMessage()

func (*ExecutingStorageJobsRequest) ProtoReflect

func (*ExecutingStorageJobsRequest) Reset

func (x *ExecutingStorageJobsRequest) Reset()

func (*ExecutingStorageJobsRequest) String

func (x *ExecutingStorageJobsRequest) String() string

type ExecutingStorageJobsResponse

type ExecutingStorageJobsResponse struct {
	StorageJobs []*v1.StorageJob `protobuf:"bytes,1,rep,name=storage_jobs,json=storageJobs,proto3" json:"storage_jobs,omitempty"`
	// contains filtered or unexported fields
}

func (*ExecutingStorageJobsResponse) Descriptor deprecated

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

Deprecated: Use ExecutingStorageJobsResponse.ProtoReflect.Descriptor instead.

func (*ExecutingStorageJobsResponse) GetStorageJobs

func (x *ExecutingStorageJobsResponse) GetStorageJobs() []*v1.StorageJob

func (*ExecutingStorageJobsResponse) ProtoMessage

func (*ExecutingStorageJobsResponse) ProtoMessage()

func (*ExecutingStorageJobsResponse) ProtoReflect

func (*ExecutingStorageJobsResponse) Reset

func (x *ExecutingStorageJobsResponse) Reset()

func (*ExecutingStorageJobsResponse) String

type GCStagedRequest added in v1.2.2

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

func (*GCStagedRequest) Descriptor deprecated added in v1.2.2

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

Deprecated: Use GCStagedRequest.ProtoReflect.Descriptor instead.

func (*GCStagedRequest) ProtoMessage added in v1.2.2

func (*GCStagedRequest) ProtoMessage()

func (*GCStagedRequest) ProtoReflect added in v1.2.2

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

func (*GCStagedRequest) Reset added in v1.2.2

func (x *GCStagedRequest) Reset()

func (*GCStagedRequest) String added in v1.2.2

func (x *GCStagedRequest) String() string

type GCStagedResponse added in v1.2.2

type GCStagedResponse struct {
	UnpinnedCids []string `protobuf:"bytes,1,rep,name=unpinned_cids,json=unpinnedCids,proto3" json:"unpinned_cids,omitempty"`
	// contains filtered or unexported fields
}

func (*GCStagedResponse) Descriptor deprecated added in v1.2.2

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

Deprecated: Use GCStagedResponse.ProtoReflect.Descriptor instead.

func (*GCStagedResponse) GetUnpinnedCids added in v1.2.2

func (x *GCStagedResponse) GetUnpinnedCids() []string

func (*GCStagedResponse) ProtoMessage added in v1.2.2

func (*GCStagedResponse) ProtoMessage()

func (*GCStagedResponse) ProtoReflect added in v1.2.2

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

func (*GCStagedResponse) Reset added in v1.2.2

func (x *GCStagedResponse) Reset()

func (*GCStagedResponse) String added in v1.2.2

func (x *GCStagedResponse) String() string

type HSPinnedCid added in v1.2.2

type HSPinnedCid struct {
	Cid   string             `protobuf:"bytes,1,opt,name=cid,proto3" json:"cid,omitempty"`
	Users []*HSPinnedCidUser `protobuf:"bytes,2,rep,name=users,proto3" json:"users,omitempty"`
	// contains filtered or unexported fields
}

func (*HSPinnedCid) Descriptor deprecated added in v1.2.2

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

Deprecated: Use HSPinnedCid.ProtoReflect.Descriptor instead.

func (*HSPinnedCid) GetCid added in v1.2.2

func (x *HSPinnedCid) GetCid() string

func (*HSPinnedCid) GetUsers added in v1.2.2

func (x *HSPinnedCid) GetUsers() []*HSPinnedCidUser

func (*HSPinnedCid) ProtoMessage added in v1.2.2

func (*HSPinnedCid) ProtoMessage()

func (*HSPinnedCid) ProtoReflect added in v1.2.2

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

func (*HSPinnedCid) Reset added in v1.2.2

func (x *HSPinnedCid) Reset()

func (*HSPinnedCid) String added in v1.2.2

func (x *HSPinnedCid) String() string

type HSPinnedCidUser added in v1.2.2

type HSPinnedCidUser struct {
	UserId    string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Staged    bool   `protobuf:"varint,2,opt,name=staged,proto3" json:"staged,omitempty"`
	CreatedAt int64  `protobuf:"varint,3,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	// contains filtered or unexported fields
}

func (*HSPinnedCidUser) Descriptor deprecated added in v1.2.2

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

Deprecated: Use HSPinnedCidUser.ProtoReflect.Descriptor instead.

func (*HSPinnedCidUser) GetCreatedAt added in v1.2.2

func (x *HSPinnedCidUser) GetCreatedAt() int64

func (*HSPinnedCidUser) GetStaged added in v1.2.2

func (x *HSPinnedCidUser) GetStaged() bool

func (*HSPinnedCidUser) GetUserId added in v1.2.2

func (x *HSPinnedCidUser) GetUserId() string

func (*HSPinnedCidUser) ProtoMessage added in v1.2.2

func (*HSPinnedCidUser) ProtoMessage()

func (*HSPinnedCidUser) ProtoReflect added in v1.2.2

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

func (*HSPinnedCidUser) Reset added in v1.2.2

func (x *HSPinnedCidUser) Reset()

func (*HSPinnedCidUser) String added in v1.2.2

func (x *HSPinnedCidUser) String() string

type LatestFinalStorageJobsRequest

type LatestFinalStorageJobsRequest struct {
	UserId string   `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Cids   []string `protobuf:"bytes,2,rep,name=cids,proto3" json:"cids,omitempty"`
	// contains filtered or unexported fields
}

func (*LatestFinalStorageJobsRequest) Descriptor deprecated

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

Deprecated: Use LatestFinalStorageJobsRequest.ProtoReflect.Descriptor instead.

func (*LatestFinalStorageJobsRequest) GetCids

func (x *LatestFinalStorageJobsRequest) GetCids() []string

func (*LatestFinalStorageJobsRequest) GetUserId

func (x *LatestFinalStorageJobsRequest) GetUserId() string

func (*LatestFinalStorageJobsRequest) ProtoMessage

func (*LatestFinalStorageJobsRequest) ProtoMessage()

func (*LatestFinalStorageJobsRequest) ProtoReflect

func (*LatestFinalStorageJobsRequest) Reset

func (x *LatestFinalStorageJobsRequest) Reset()

func (*LatestFinalStorageJobsRequest) String

type LatestFinalStorageJobsResponse

type LatestFinalStorageJobsResponse struct {
	StorageJobs []*v1.StorageJob `protobuf:"bytes,1,rep,name=storage_jobs,json=storageJobs,proto3" json:"storage_jobs,omitempty"`
	// contains filtered or unexported fields
}

func (*LatestFinalStorageJobsResponse) Descriptor deprecated

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

Deprecated: Use LatestFinalStorageJobsResponse.ProtoReflect.Descriptor instead.

func (*LatestFinalStorageJobsResponse) GetStorageJobs

func (x *LatestFinalStorageJobsResponse) GetStorageJobs() []*v1.StorageJob

func (*LatestFinalStorageJobsResponse) ProtoMessage

func (*LatestFinalStorageJobsResponse) ProtoMessage()

func (*LatestFinalStorageJobsResponse) ProtoReflect

func (*LatestFinalStorageJobsResponse) Reset

func (x *LatestFinalStorageJobsResponse) Reset()

func (*LatestFinalStorageJobsResponse) String

type LatestSuccessfulStorageJobsRequest

type LatestSuccessfulStorageJobsRequest struct {
	UserId string   `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Cids   []string `protobuf:"bytes,2,rep,name=cids,proto3" json:"cids,omitempty"`
	// contains filtered or unexported fields
}

func (*LatestSuccessfulStorageJobsRequest) Descriptor deprecated

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

Deprecated: Use LatestSuccessfulStorageJobsRequest.ProtoReflect.Descriptor instead.

func (*LatestSuccessfulStorageJobsRequest) GetCids

func (*LatestSuccessfulStorageJobsRequest) GetUserId

func (*LatestSuccessfulStorageJobsRequest) ProtoMessage

func (*LatestSuccessfulStorageJobsRequest) ProtoMessage()

func (*LatestSuccessfulStorageJobsRequest) ProtoReflect

func (*LatestSuccessfulStorageJobsRequest) Reset

func (*LatestSuccessfulStorageJobsRequest) String

type LatestSuccessfulStorageJobsResponse

type LatestSuccessfulStorageJobsResponse struct {
	StorageJobs []*v1.StorageJob `protobuf:"bytes,1,rep,name=storage_jobs,json=storageJobs,proto3" json:"storage_jobs,omitempty"`
	// contains filtered or unexported fields
}

func (*LatestSuccessfulStorageJobsResponse) Descriptor deprecated

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

Deprecated: Use LatestSuccessfulStorageJobsResponse.ProtoReflect.Descriptor instead.

func (*LatestSuccessfulStorageJobsResponse) GetStorageJobs

func (x *LatestSuccessfulStorageJobsResponse) GetStorageJobs() []*v1.StorageJob

func (*LatestSuccessfulStorageJobsResponse) ProtoMessage

func (*LatestSuccessfulStorageJobsResponse) ProtoMessage()

func (*LatestSuccessfulStorageJobsResponse) ProtoReflect

func (*LatestSuccessfulStorageJobsResponse) Reset

func (*LatestSuccessfulStorageJobsResponse) String

type NewAddressRequest

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

Wallet

func (*NewAddressRequest) Descriptor deprecated

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

Deprecated: Use NewAddressRequest.ProtoReflect.Descriptor instead.

func (*NewAddressRequest) GetAddressType

func (x *NewAddressRequest) GetAddressType() string

func (*NewAddressRequest) ProtoMessage

func (*NewAddressRequest) ProtoMessage()

func (*NewAddressRequest) ProtoReflect

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

func (*NewAddressRequest) Reset

func (x *NewAddressRequest) Reset()

func (*NewAddressRequest) String

func (x *NewAddressRequest) String() string

type NewAddressResponse

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

func (*NewAddressResponse) Descriptor deprecated

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

Deprecated: Use NewAddressResponse.ProtoReflect.Descriptor instead.

func (*NewAddressResponse) GetAddress

func (x *NewAddressResponse) GetAddress() string

func (*NewAddressResponse) ProtoMessage

func (*NewAddressResponse) ProtoMessage()

func (*NewAddressResponse) ProtoReflect

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

func (*NewAddressResponse) Reset

func (x *NewAddressResponse) Reset()

func (*NewAddressResponse) String

func (x *NewAddressResponse) String() string

type PinnedCidsRequest added in v1.2.2

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

func (*PinnedCidsRequest) Descriptor deprecated added in v1.2.2

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

Deprecated: Use PinnedCidsRequest.ProtoReflect.Descriptor instead.

func (*PinnedCidsRequest) ProtoMessage added in v1.2.2

func (*PinnedCidsRequest) ProtoMessage()

func (*PinnedCidsRequest) ProtoReflect added in v1.2.2

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

func (*PinnedCidsRequest) Reset added in v1.2.2

func (x *PinnedCidsRequest) Reset()

func (*PinnedCidsRequest) String added in v1.2.2

func (x *PinnedCidsRequest) String() string

type PinnedCidsResponse added in v1.2.2

type PinnedCidsResponse struct {
	Cids []*HSPinnedCid `protobuf:"bytes,1,rep,name=cids,proto3" json:"cids,omitempty"`
	// contains filtered or unexported fields
}

func (*PinnedCidsResponse) Descriptor deprecated added in v1.2.2

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

Deprecated: Use PinnedCidsResponse.ProtoReflect.Descriptor instead.

func (*PinnedCidsResponse) GetCids added in v1.2.2

func (x *PinnedCidsResponse) GetCids() []*HSPinnedCid

func (*PinnedCidsResponse) ProtoMessage added in v1.2.2

func (*PinnedCidsResponse) ProtoMessage()

func (*PinnedCidsResponse) ProtoReflect added in v1.2.2

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

func (*PinnedCidsResponse) Reset added in v1.2.2

func (x *PinnedCidsResponse) Reset()

func (*PinnedCidsResponse) String added in v1.2.2

func (x *PinnedCidsResponse) String() string

type QueuedStorageJobsRequest

type QueuedStorageJobsRequest struct {
	UserId string   `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Cids   []string `protobuf:"bytes,2,rep,name=cids,proto3" json:"cids,omitempty"`
	// contains filtered or unexported fields
}

func (*QueuedStorageJobsRequest) Descriptor deprecated

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

Deprecated: Use QueuedStorageJobsRequest.ProtoReflect.Descriptor instead.

func (*QueuedStorageJobsRequest) GetCids

func (x *QueuedStorageJobsRequest) GetCids() []string

func (*QueuedStorageJobsRequest) GetUserId

func (x *QueuedStorageJobsRequest) GetUserId() string

func (*QueuedStorageJobsRequest) ProtoMessage

func (*QueuedStorageJobsRequest) ProtoMessage()

func (*QueuedStorageJobsRequest) ProtoReflect

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

func (*QueuedStorageJobsRequest) Reset

func (x *QueuedStorageJobsRequest) Reset()

func (*QueuedStorageJobsRequest) String

func (x *QueuedStorageJobsRequest) String() string

type QueuedStorageJobsResponse

type QueuedStorageJobsResponse struct {
	StorageJobs []*v1.StorageJob `protobuf:"bytes,1,rep,name=storage_jobs,json=storageJobs,proto3" json:"storage_jobs,omitempty"`
	// contains filtered or unexported fields
}

func (*QueuedStorageJobsResponse) Descriptor deprecated

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

Deprecated: Use QueuedStorageJobsResponse.ProtoReflect.Descriptor instead.

func (*QueuedStorageJobsResponse) GetStorageJobs

func (x *QueuedStorageJobsResponse) GetStorageJobs() []*v1.StorageJob

func (*QueuedStorageJobsResponse) ProtoMessage

func (*QueuedStorageJobsResponse) ProtoMessage()

func (*QueuedStorageJobsResponse) ProtoReflect

func (*QueuedStorageJobsResponse) Reset

func (x *QueuedStorageJobsResponse) Reset()

func (*QueuedStorageJobsResponse) String

func (x *QueuedStorageJobsResponse) String() string

type SendFilRequest

type SendFilRequest struct {
	From   string `protobuf:"bytes,1,opt,name=from,proto3" json:"from,omitempty"`
	To     string `protobuf:"bytes,2,opt,name=to,proto3" json:"to,omitempty"`
	Amount string `protobuf:"bytes,3,opt,name=amount,proto3" json:"amount,omitempty"`
	// contains filtered or unexported fields
}

func (*SendFilRequest) Descriptor deprecated

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

Deprecated: Use SendFilRequest.ProtoReflect.Descriptor instead.

func (*SendFilRequest) GetAmount

func (x *SendFilRequest) GetAmount() string

func (*SendFilRequest) GetFrom

func (x *SendFilRequest) GetFrom() string

func (*SendFilRequest) GetTo

func (x *SendFilRequest) GetTo() string

func (*SendFilRequest) ProtoMessage

func (*SendFilRequest) ProtoMessage()

func (*SendFilRequest) ProtoReflect

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

func (*SendFilRequest) Reset

func (x *SendFilRequest) Reset()

func (*SendFilRequest) String

func (x *SendFilRequest) String() string

type SendFilResponse

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

func (*SendFilResponse) Descriptor deprecated

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

Deprecated: Use SendFilResponse.ProtoReflect.Descriptor instead.

func (*SendFilResponse) ProtoMessage

func (*SendFilResponse) ProtoMessage()

func (*SendFilResponse) ProtoReflect

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

func (*SendFilResponse) Reset

func (x *SendFilResponse) Reset()

func (*SendFilResponse) String

func (x *SendFilResponse) String() string

type StorageJobsSummaryRequest

type StorageJobsSummaryRequest struct {
	UserId string   `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Cids   []string `protobuf:"bytes,2,rep,name=cids,proto3" json:"cids,omitempty"`
	// contains filtered or unexported fields
}

func (*StorageJobsSummaryRequest) Descriptor deprecated

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

Deprecated: Use StorageJobsSummaryRequest.ProtoReflect.Descriptor instead.

func (*StorageJobsSummaryRequest) GetCids

func (x *StorageJobsSummaryRequest) GetCids() []string

func (*StorageJobsSummaryRequest) GetUserId

func (x *StorageJobsSummaryRequest) GetUserId() string

func (*StorageJobsSummaryRequest) ProtoMessage

func (*StorageJobsSummaryRequest) ProtoMessage()

func (*StorageJobsSummaryRequest) ProtoReflect

func (*StorageJobsSummaryRequest) Reset

func (x *StorageJobsSummaryRequest) Reset()

func (*StorageJobsSummaryRequest) String

func (x *StorageJobsSummaryRequest) String() string

type StorageJobsSummaryResponse

type StorageJobsSummaryResponse struct {
	JobCounts                   *v1.JobCounts    `protobuf:"bytes,1,opt,name=job_counts,json=jobCounts,proto3" json:"job_counts,omitempty"`
	QueuedStorageJobs           []*v1.StorageJob `protobuf:"bytes,2,rep,name=queued_storage_jobs,json=queuedStorageJobs,proto3" json:"queued_storage_jobs,omitempty"`
	ExecutingStorageJobs        []*v1.StorageJob `protobuf:"bytes,3,rep,name=executing_storage_jobs,json=executingStorageJobs,proto3" json:"executing_storage_jobs,omitempty"`
	LatestFinalStorageJobs      []*v1.StorageJob `` /* 131-byte string literal not displayed */
	LatestSuccessfulStorageJobs []*v1.StorageJob `` /* 146-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*StorageJobsSummaryResponse) Descriptor deprecated

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

Deprecated: Use StorageJobsSummaryResponse.ProtoReflect.Descriptor instead.

func (*StorageJobsSummaryResponse) GetExecutingStorageJobs

func (x *StorageJobsSummaryResponse) GetExecutingStorageJobs() []*v1.StorageJob

func (*StorageJobsSummaryResponse) GetJobCounts

func (x *StorageJobsSummaryResponse) GetJobCounts() *v1.JobCounts

func (*StorageJobsSummaryResponse) GetLatestFinalStorageJobs

func (x *StorageJobsSummaryResponse) GetLatestFinalStorageJobs() []*v1.StorageJob

func (*StorageJobsSummaryResponse) GetLatestSuccessfulStorageJobs

func (x *StorageJobsSummaryResponse) GetLatestSuccessfulStorageJobs() []*v1.StorageJob

func (*StorageJobsSummaryResponse) GetQueuedStorageJobs

func (x *StorageJobsSummaryResponse) GetQueuedStorageJobs() []*v1.StorageJob

func (*StorageJobsSummaryResponse) ProtoMessage

func (*StorageJobsSummaryResponse) ProtoMessage()

func (*StorageJobsSummaryResponse) ProtoReflect

func (*StorageJobsSummaryResponse) Reset

func (x *StorageJobsSummaryResponse) Reset()

func (*StorageJobsSummaryResponse) String

func (x *StorageJobsSummaryResponse) String() string

type UnimplementedAdminServiceServer

type UnimplementedAdminServiceServer struct {
}

UnimplementedAdminServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedAdminServiceServer) Addresses

func (UnimplementedAdminServiceServer) CreateUser

func (UnimplementedAdminServiceServer) GCStaged added in v1.2.2

func (UnimplementedAdminServiceServer) NewAddress

func (UnimplementedAdminServiceServer) PinnedCids added in v1.2.2

func (UnimplementedAdminServiceServer) QueuedStorageJobs

func (UnimplementedAdminServiceServer) SendFil

func (UnimplementedAdminServiceServer) StorageJobsSummary

func (UnimplementedAdminServiceServer) Users

type UnsafeAdminServiceServer

type UnsafeAdminServiceServer interface {
	// contains filtered or unexported methods
}

UnsafeAdminServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to AdminServiceServer will result in compilation errors.

type User

type User struct {
	Id    string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Token string `protobuf:"bytes,2,opt,name=token,proto3" json:"token,omitempty"`
	// contains filtered or unexported fields
}

func (*User) Descriptor deprecated

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

Deprecated: Use User.ProtoReflect.Descriptor instead.

func (*User) GetId

func (x *User) GetId() string

func (*User) GetToken

func (x *User) GetToken() string

func (*User) ProtoMessage

func (*User) ProtoMessage()

func (*User) ProtoReflect

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

func (*User) Reset

func (x *User) Reset()

func (*User) String

func (x *User) String() string

type UsersRequest

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

func (*UsersRequest) Descriptor deprecated

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

Deprecated: Use UsersRequest.ProtoReflect.Descriptor instead.

func (*UsersRequest) ProtoMessage

func (*UsersRequest) ProtoMessage()

func (*UsersRequest) ProtoReflect

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

func (*UsersRequest) Reset

func (x *UsersRequest) Reset()

func (*UsersRequest) String

func (x *UsersRequest) String() string

type UsersResponse

type UsersResponse struct {
	Users []*User `protobuf:"bytes,1,rep,name=users,proto3" json:"users,omitempty"`
	// contains filtered or unexported fields
}

func (*UsersResponse) Descriptor deprecated

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

Deprecated: Use UsersResponse.ProtoReflect.Descriptor instead.

func (*UsersResponse) GetUsers

func (x *UsersResponse) GetUsers() []*User

func (*UsersResponse) ProtoMessage

func (*UsersResponse) ProtoMessage()

func (*UsersResponse) ProtoReflect

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

func (*UsersResponse) Reset

func (x *UsersResponse) Reset()

func (*UsersResponse) String

func (x *UsersResponse) String() string

Jump to

Keyboard shortcuts

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