v1

package
v1.0.0 Latest Latest
Warning

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

Go to latest
Published: Nov 4, 2020 License: MIT Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	JobStatus_name = map[int32]string{
		0: "JOB_STATUS_UNSPECIFIED",
		1: "JOB_STATUS_QUEUED",
		2: "JOB_STATUS_EXECUTING",
		3: "JOB_STATUS_FAILED",
		4: "JOB_STATUS_CANCELED",
		5: "JOB_STATUS_SUCCESS",
	}
	JobStatus_value = map[string]int32{
		"JOB_STATUS_UNSPECIFIED": 0,
		"JOB_STATUS_QUEUED":      1,
		"JOB_STATUS_EXECUTING":   2,
		"JOB_STATUS_FAILED":      3,
		"JOB_STATUS_CANCELED":    4,
		"JOB_STATUS_SUCCESS":     5,
	}
)

Enum value maps for JobStatus.

View Source
var File_proto_powergate_v1_powergate_proto protoreflect.FileDescriptor

Functions

func RegisterPowergateServiceServer

func RegisterPowergateServiceServer(s *grpc.Server, srv PowergateServiceServer)

Types

type AddrInfo

type AddrInfo struct {
	Name    string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	Type    string `protobuf:"bytes,3,opt,name=type,proto3" json:"type,omitempty"`
	Balance string `protobuf:"bytes,4,opt,name=balance,proto3" json:"balance,omitempty"`
	// contains filtered or unexported fields
}

func (*AddrInfo) Descriptor deprecated

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

Deprecated: Use AddrInfo.ProtoReflect.Descriptor instead.

func (*AddrInfo) GetAddress

func (x *AddrInfo) GetAddress() string

func (*AddrInfo) GetBalance

func (x *AddrInfo) GetBalance() string

func (*AddrInfo) GetName

func (x *AddrInfo) GetName() string

func (*AddrInfo) GetType

func (x *AddrInfo) GetType() string

func (*AddrInfo) ProtoMessage

func (*AddrInfo) ProtoMessage()

func (*AddrInfo) ProtoReflect

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

func (*AddrInfo) Reset

func (x *AddrInfo) Reset()

func (*AddrInfo) String

func (x *AddrInfo) String() string

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 []*AddrInfo `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() []*AddrInfo

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 ApplyStorageConfigRequest

type ApplyStorageConfigRequest struct {
	Cid               string         `protobuf:"bytes,1,opt,name=cid,proto3" json:"cid,omitempty"`
	Config            *StorageConfig `protobuf:"bytes,2,opt,name=config,proto3" json:"config,omitempty"`
	HasConfig         bool           `protobuf:"varint,3,opt,name=has_config,json=hasConfig,proto3" json:"has_config,omitempty"`
	OverrideConfig    bool           `protobuf:"varint,4,opt,name=override_config,json=overrideConfig,proto3" json:"override_config,omitempty"`
	HasOverrideConfig bool           `protobuf:"varint,5,opt,name=has_override_config,json=hasOverrideConfig,proto3" json:"has_override_config,omitempty"`
	// contains filtered or unexported fields
}

func (*ApplyStorageConfigRequest) Descriptor deprecated

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

Deprecated: Use ApplyStorageConfigRequest.ProtoReflect.Descriptor instead.

func (*ApplyStorageConfigRequest) GetCid

func (x *ApplyStorageConfigRequest) GetCid() string

func (*ApplyStorageConfigRequest) GetConfig

func (x *ApplyStorageConfigRequest) GetConfig() *StorageConfig

func (*ApplyStorageConfigRequest) GetHasConfig

func (x *ApplyStorageConfigRequest) GetHasConfig() bool

func (*ApplyStorageConfigRequest) GetHasOverrideConfig

func (x *ApplyStorageConfigRequest) GetHasOverrideConfig() bool

func (*ApplyStorageConfigRequest) GetOverrideConfig

func (x *ApplyStorageConfigRequest) GetOverrideConfig() bool

func (*ApplyStorageConfigRequest) ProtoMessage

func (*ApplyStorageConfigRequest) ProtoMessage()

func (*ApplyStorageConfigRequest) ProtoReflect

func (*ApplyStorageConfigRequest) Reset

func (x *ApplyStorageConfigRequest) Reset()

func (*ApplyStorageConfigRequest) String

func (x *ApplyStorageConfigRequest) String() string

type ApplyStorageConfigResponse

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

func (*ApplyStorageConfigResponse) Descriptor deprecated

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

Deprecated: Use ApplyStorageConfigResponse.ProtoReflect.Descriptor instead.

func (*ApplyStorageConfigResponse) GetJobId

func (x *ApplyStorageConfigResponse) GetJobId() string

func (*ApplyStorageConfigResponse) ProtoMessage

func (*ApplyStorageConfigResponse) ProtoMessage()

func (*ApplyStorageConfigResponse) ProtoReflect

func (*ApplyStorageConfigResponse) Reset

func (x *ApplyStorageConfigResponse) Reset()

func (*ApplyStorageConfigResponse) String

func (x *ApplyStorageConfigResponse) String() string

type BalanceRequest

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

func (*BalanceRequest) Descriptor deprecated

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

Deprecated: Use BalanceRequest.ProtoReflect.Descriptor instead.

func (*BalanceRequest) GetAddress

func (x *BalanceRequest) GetAddress() string

func (*BalanceRequest) ProtoMessage

func (*BalanceRequest) ProtoMessage()

func (*BalanceRequest) ProtoReflect

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

func (*BalanceRequest) Reset

func (x *BalanceRequest) Reset()

func (*BalanceRequest) String

func (x *BalanceRequest) String() string

type BalanceResponse

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

func (*BalanceResponse) Descriptor deprecated

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

Deprecated: Use BalanceResponse.ProtoReflect.Descriptor instead.

func (*BalanceResponse) GetBalance

func (x *BalanceResponse) GetBalance() string

func (*BalanceResponse) ProtoMessage

func (*BalanceResponse) ProtoMessage()

func (*BalanceResponse) ProtoReflect

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

func (*BalanceResponse) Reset

func (x *BalanceResponse) Reset()

func (*BalanceResponse) String

func (x *BalanceResponse) String() string

type BuildInfoRequest

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

func (*BuildInfoRequest) Descriptor deprecated

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

Deprecated: Use BuildInfoRequest.ProtoReflect.Descriptor instead.

func (*BuildInfoRequest) ProtoMessage

func (*BuildInfoRequest) ProtoMessage()

func (*BuildInfoRequest) ProtoReflect

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

func (*BuildInfoRequest) Reset

func (x *BuildInfoRequest) Reset()

func (*BuildInfoRequest) String

func (x *BuildInfoRequest) String() string

type BuildInfoResponse

type BuildInfoResponse struct {
	GitCommit  string `protobuf:"bytes,1,opt,name=git_commit,json=gitCommit,proto3" json:"git_commit,omitempty"`
	GitBranch  string `protobuf:"bytes,2,opt,name=git_branch,json=gitBranch,proto3" json:"git_branch,omitempty"`
	GitState   string `protobuf:"bytes,3,opt,name=git_state,json=gitState,proto3" json:"git_state,omitempty"`
	GitSummary string `protobuf:"bytes,4,opt,name=git_summary,json=gitSummary,proto3" json:"git_summary,omitempty"`
	BuildDate  string `protobuf:"bytes,5,opt,name=build_date,json=buildDate,proto3" json:"build_date,omitempty"`
	Version    string `protobuf:"bytes,6,opt,name=version,proto3" json:"version,omitempty"`
	// contains filtered or unexported fields
}

func (*BuildInfoResponse) Descriptor deprecated

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

Deprecated: Use BuildInfoResponse.ProtoReflect.Descriptor instead.

func (*BuildInfoResponse) GetBuildDate

func (x *BuildInfoResponse) GetBuildDate() string

func (*BuildInfoResponse) GetGitBranch

func (x *BuildInfoResponse) GetGitBranch() string

func (*BuildInfoResponse) GetGitCommit

func (x *BuildInfoResponse) GetGitCommit() string

func (*BuildInfoResponse) GetGitState

func (x *BuildInfoResponse) GetGitState() string

func (*BuildInfoResponse) GetGitSummary

func (x *BuildInfoResponse) GetGitSummary() string

func (*BuildInfoResponse) GetVersion

func (x *BuildInfoResponse) GetVersion() string

func (*BuildInfoResponse) ProtoMessage

func (*BuildInfoResponse) ProtoMessage()

func (*BuildInfoResponse) ProtoReflect

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

func (*BuildInfoResponse) Reset

func (x *BuildInfoResponse) Reset()

func (*BuildInfoResponse) String

func (x *BuildInfoResponse) String() string

type CancelStorageJobRequest

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

func (*CancelStorageJobRequest) Descriptor deprecated

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

Deprecated: Use CancelStorageJobRequest.ProtoReflect.Descriptor instead.

func (*CancelStorageJobRequest) GetJobId

func (x *CancelStorageJobRequest) GetJobId() string

func (*CancelStorageJobRequest) ProtoMessage

func (*CancelStorageJobRequest) ProtoMessage()

func (*CancelStorageJobRequest) ProtoReflect

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

func (*CancelStorageJobRequest) Reset

func (x *CancelStorageJobRequest) Reset()

func (*CancelStorageJobRequest) String

func (x *CancelStorageJobRequest) String() string

type CancelStorageJobResponse

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

func (*CancelStorageJobResponse) Descriptor deprecated

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

Deprecated: Use CancelStorageJobResponse.ProtoReflect.Descriptor instead.

func (*CancelStorageJobResponse) ProtoMessage

func (*CancelStorageJobResponse) ProtoMessage()

func (*CancelStorageJobResponse) ProtoReflect

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

func (*CancelStorageJobResponse) Reset

func (x *CancelStorageJobResponse) Reset()

func (*CancelStorageJobResponse) String

func (x *CancelStorageJobResponse) String() string

type CidInfo

type CidInfo struct {
	Cid                        string         `protobuf:"bytes,1,opt,name=cid,proto3" json:"cid,omitempty"`
	LatestPushedStorageConfig  *StorageConfig `` /* 140-byte string literal not displayed */
	CurrentStorageInfo         *StorageInfo   `protobuf:"bytes,3,opt,name=current_storage_info,json=currentStorageInfo,proto3" json:"current_storage_info,omitempty"`
	QueuedStorageJobs          []*Job         `protobuf:"bytes,4,rep,name=queued_storage_jobs,json=queuedStorageJobs,proto3" json:"queued_storage_jobs,omitempty"`
	ExecutingStorageJob        *Job           `protobuf:"bytes,5,opt,name=executing_storage_job,json=executingStorageJob,proto3" json:"executing_storage_job,omitempty"`
	LatestFinalStorageJob      *Job           `` /* 128-byte string literal not displayed */
	LatestSuccessfulStorageJob *Job           `` /* 143-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*CidInfo) Descriptor deprecated

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

Deprecated: Use CidInfo.ProtoReflect.Descriptor instead.

func (*CidInfo) GetCid

func (x *CidInfo) GetCid() string

func (*CidInfo) GetCurrentStorageInfo

func (x *CidInfo) GetCurrentStorageInfo() *StorageInfo

func (*CidInfo) GetExecutingStorageJob

func (x *CidInfo) GetExecutingStorageJob() *Job

func (*CidInfo) GetLatestFinalStorageJob

func (x *CidInfo) GetLatestFinalStorageJob() *Job

func (*CidInfo) GetLatestPushedStorageConfig

func (x *CidInfo) GetLatestPushedStorageConfig() *StorageConfig

func (*CidInfo) GetLatestSuccessfulStorageJob

func (x *CidInfo) GetLatestSuccessfulStorageJob() *Job

func (*CidInfo) GetQueuedStorageJobs

func (x *CidInfo) GetQueuedStorageJobs() []*Job

func (*CidInfo) ProtoMessage

func (*CidInfo) ProtoMessage()

func (*CidInfo) ProtoReflect

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

func (*CidInfo) Reset

func (x *CidInfo) Reset()

func (*CidInfo) String

func (x *CidInfo) String() string

type CidInfoRequest

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

func (*CidInfoRequest) Descriptor deprecated

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

Deprecated: Use CidInfoRequest.ProtoReflect.Descriptor instead.

func (*CidInfoRequest) GetCids

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

func (*CidInfoRequest) ProtoMessage

func (*CidInfoRequest) ProtoMessage()

func (*CidInfoRequest) ProtoReflect

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

func (*CidInfoRequest) Reset

func (x *CidInfoRequest) Reset()

func (*CidInfoRequest) String

func (x *CidInfoRequest) String() string

type CidInfoResponse

type CidInfoResponse struct {
	CidInfos []*CidInfo `protobuf:"bytes,1,rep,name=cid_infos,json=cidInfos,proto3" json:"cid_infos,omitempty"`
	// contains filtered or unexported fields
}

func (*CidInfoResponse) Descriptor deprecated

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

Deprecated: Use CidInfoResponse.ProtoReflect.Descriptor instead.

func (*CidInfoResponse) GetCidInfos

func (x *CidInfoResponse) GetCidInfos() []*CidInfo

func (*CidInfoResponse) ProtoMessage

func (*CidInfoResponse) ProtoMessage()

func (*CidInfoResponse) ProtoReflect

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

func (*CidInfoResponse) Reset

func (x *CidInfoResponse) Reset()

func (*CidInfoResponse) String

func (x *CidInfoResponse) String() string

type ColdConfig

type ColdConfig struct {
	Enabled  bool       `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
	Filecoin *FilConfig `protobuf:"bytes,2,opt,name=filecoin,proto3" json:"filecoin,omitempty"`
	// contains filtered or unexported fields
}

func (*ColdConfig) Descriptor deprecated

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

Deprecated: Use ColdConfig.ProtoReflect.Descriptor instead.

func (*ColdConfig) GetEnabled

func (x *ColdConfig) GetEnabled() bool

func (*ColdConfig) GetFilecoin

func (x *ColdConfig) GetFilecoin() *FilConfig

func (*ColdConfig) ProtoMessage

func (*ColdConfig) ProtoMessage()

func (*ColdConfig) ProtoReflect

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

func (*ColdConfig) Reset

func (x *ColdConfig) Reset()

func (*ColdConfig) String

func (x *ColdConfig) String() string

type ColdInfo

type ColdInfo struct {
	Enabled  bool     `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
	Filecoin *FilInfo `protobuf:"bytes,2,opt,name=filecoin,proto3" json:"filecoin,omitempty"`
	// contains filtered or unexported fields
}

func (*ColdInfo) Descriptor deprecated

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

Deprecated: Use ColdInfo.ProtoReflect.Descriptor instead.

func (*ColdInfo) GetEnabled

func (x *ColdInfo) GetEnabled() bool

func (*ColdInfo) GetFilecoin

func (x *ColdInfo) GetFilecoin() *FilInfo

func (*ColdInfo) ProtoMessage

func (*ColdInfo) ProtoMessage()

func (*ColdInfo) ProtoReflect

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

func (*ColdInfo) Reset

func (x *ColdInfo) Reset()

func (*ColdInfo) String

func (x *ColdInfo) String() string

type DealError

type DealError 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"`
	Message     string `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*DealError) Descriptor deprecated

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

Deprecated: Use DealError.ProtoReflect.Descriptor instead.

func (*DealError) GetMessage

func (x *DealError) GetMessage() string

func (*DealError) GetMiner

func (x *DealError) GetMiner() string

func (*DealError) GetProposalCid

func (x *DealError) GetProposalCid() string

func (*DealError) ProtoMessage

func (*DealError) ProtoMessage()

func (*DealError) ProtoReflect

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

func (*DealError) Reset

func (x *DealError) Reset()

func (*DealError) String

func (x *DealError) String() string

type DealInfo

type DealInfo struct {
	ProposalCid     string `protobuf:"bytes,1,opt,name=proposal_cid,json=proposalCid,proto3" json:"proposal_cid,omitempty"`
	StateId         uint64 `protobuf:"varint,2,opt,name=state_id,json=stateId,proto3" json:"state_id,omitempty"`
	StateName       string `protobuf:"bytes,3,opt,name=state_name,json=stateName,proto3" json:"state_name,omitempty"`
	Miner           string `protobuf:"bytes,4,opt,name=miner,proto3" json:"miner,omitempty"`
	PieceCid        string `protobuf:"bytes,5,opt,name=piece_cid,json=pieceCid,proto3" json:"piece_cid,omitempty"`
	Size            uint64 `protobuf:"varint,6,opt,name=size,proto3" json:"size,omitempty"`
	PricePerEpoch   uint64 `protobuf:"varint,7,opt,name=price_per_epoch,json=pricePerEpoch,proto3" json:"price_per_epoch,omitempty"`
	StartEpoch      uint64 `protobuf:"varint,8,opt,name=start_epoch,json=startEpoch,proto3" json:"start_epoch,omitempty"`
	Duration        uint64 `protobuf:"varint,9,opt,name=duration,proto3" json:"duration,omitempty"`
	DealId          uint64 `protobuf:"varint,10,opt,name=deal_id,json=dealId,proto3" json:"deal_id,omitempty"`
	ActivationEpoch int64  `protobuf:"varint,11,opt,name=activation_epoch,json=activationEpoch,proto3" json:"activation_epoch,omitempty"`
	Message         string `protobuf:"bytes,12,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*DealInfo) Descriptor deprecated

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

Deprecated: Use DealInfo.ProtoReflect.Descriptor instead.

func (*DealInfo) GetActivationEpoch

func (x *DealInfo) GetActivationEpoch() int64

func (*DealInfo) GetDealId

func (x *DealInfo) GetDealId() uint64

func (*DealInfo) GetDuration

func (x *DealInfo) GetDuration() uint64

func (*DealInfo) GetMessage

func (x *DealInfo) GetMessage() string

func (*DealInfo) GetMiner

func (x *DealInfo) GetMiner() string

func (*DealInfo) GetPieceCid

func (x *DealInfo) GetPieceCid() string

func (*DealInfo) GetPricePerEpoch

func (x *DealInfo) GetPricePerEpoch() uint64

func (*DealInfo) GetProposalCid

func (x *DealInfo) GetProposalCid() string

func (*DealInfo) GetSize

func (x *DealInfo) GetSize() uint64

func (*DealInfo) GetStartEpoch

func (x *DealInfo) GetStartEpoch() uint64

func (*DealInfo) GetStateId

func (x *DealInfo) GetStateId() uint64

func (*DealInfo) GetStateName

func (x *DealInfo) GetStateName() string

func (*DealInfo) ProtoMessage

func (*DealInfo) ProtoMessage()

func (*DealInfo) ProtoReflect

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

func (*DealInfo) Reset

func (x *DealInfo) Reset()

func (*DealInfo) String

func (x *DealInfo) String() string

type DealRecordsConfig

type DealRecordsConfig struct {
	FromAddrs      []string `protobuf:"bytes,1,rep,name=from_addrs,json=fromAddrs,proto3" json:"from_addrs,omitempty"`
	DataCids       []string `protobuf:"bytes,2,rep,name=data_cids,json=dataCids,proto3" json:"data_cids,omitempty"`
	IncludePending bool     `protobuf:"varint,3,opt,name=include_pending,json=includePending,proto3" json:"include_pending,omitempty"`
	IncludeFinal   bool     `protobuf:"varint,4,opt,name=include_final,json=includeFinal,proto3" json:"include_final,omitempty"`
	Ascending      bool     `protobuf:"varint,5,opt,name=ascending,proto3" json:"ascending,omitempty"`
	// contains filtered or unexported fields
}

func (*DealRecordsConfig) Descriptor deprecated

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

Deprecated: Use DealRecordsConfig.ProtoReflect.Descriptor instead.

func (*DealRecordsConfig) GetAscending

func (x *DealRecordsConfig) GetAscending() bool

func (*DealRecordsConfig) GetDataCids

func (x *DealRecordsConfig) GetDataCids() []string

func (*DealRecordsConfig) GetFromAddrs

func (x *DealRecordsConfig) GetFromAddrs() []string

func (*DealRecordsConfig) GetIncludeFinal

func (x *DealRecordsConfig) GetIncludeFinal() bool

func (*DealRecordsConfig) GetIncludePending

func (x *DealRecordsConfig) GetIncludePending() bool

func (*DealRecordsConfig) ProtoMessage

func (*DealRecordsConfig) ProtoMessage()

func (*DealRecordsConfig) ProtoReflect

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

func (*DealRecordsConfig) Reset

func (x *DealRecordsConfig) Reset()

func (*DealRecordsConfig) String

func (x *DealRecordsConfig) String() string

type DefaultStorageConfigRequest

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

func (*DefaultStorageConfigRequest) Descriptor deprecated

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

Deprecated: Use DefaultStorageConfigRequest.ProtoReflect.Descriptor instead.

func (*DefaultStorageConfigRequest) ProtoMessage

func (*DefaultStorageConfigRequest) ProtoMessage()

func (*DefaultStorageConfigRequest) ProtoReflect

func (*DefaultStorageConfigRequest) Reset

func (x *DefaultStorageConfigRequest) Reset()

func (*DefaultStorageConfigRequest) String

func (x *DefaultStorageConfigRequest) String() string

type DefaultStorageConfigResponse

type DefaultStorageConfigResponse struct {
	DefaultStorageConfig *StorageConfig `protobuf:"bytes,1,opt,name=default_storage_config,json=defaultStorageConfig,proto3" json:"default_storage_config,omitempty"`
	// contains filtered or unexported fields
}

func (*DefaultStorageConfigResponse) Descriptor deprecated

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

Deprecated: Use DefaultStorageConfigResponse.ProtoReflect.Descriptor instead.

func (*DefaultStorageConfigResponse) GetDefaultStorageConfig

func (x *DefaultStorageConfigResponse) GetDefaultStorageConfig() *StorageConfig

func (*DefaultStorageConfigResponse) ProtoMessage

func (*DefaultStorageConfigResponse) ProtoMessage()

func (*DefaultStorageConfigResponse) ProtoReflect

func (*DefaultStorageConfigResponse) Reset

func (x *DefaultStorageConfigResponse) Reset()

func (*DefaultStorageConfigResponse) String

type ExecutingStorageJobsRequest

type ExecutingStorageJobsRequest struct {
	Cids []string `protobuf:"bytes,1,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) 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 []*Job `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() []*Job

func (*ExecutingStorageJobsResponse) ProtoMessage

func (*ExecutingStorageJobsResponse) ProtoMessage()

func (*ExecutingStorageJobsResponse) ProtoReflect

func (*ExecutingStorageJobsResponse) Reset

func (x *ExecutingStorageJobsResponse) Reset()

func (*ExecutingStorageJobsResponse) String

type FilConfig

type FilConfig struct {
	ReplicationFactor int64     `protobuf:"varint,1,opt,name=replication_factor,json=replicationFactor,proto3" json:"replication_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             *FilRenew `protobuf:"bytes,6,opt,name=renew,proto3" json:"renew,omitempty"`
	Address           string    `protobuf:"bytes,7,opt,name=address,proto3" json:"address,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"`
	// contains filtered or unexported fields
}

func (*FilConfig) Descriptor deprecated

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

Deprecated: Use FilConfig.ProtoReflect.Descriptor instead.

func (*FilConfig) GetAddress

func (x *FilConfig) GetAddress() string

func (*FilConfig) GetCountryCodes

func (x *FilConfig) GetCountryCodes() []string

func (*FilConfig) GetDealMinDuration

func (x *FilConfig) GetDealMinDuration() int64

func (*FilConfig) GetDealStartOffset

func (x *FilConfig) GetDealStartOffset() int64

func (*FilConfig) GetExcludedMiners

func (x *FilConfig) GetExcludedMiners() []string

func (*FilConfig) GetFastRetrieval

func (x *FilConfig) GetFastRetrieval() bool

func (*FilConfig) GetMaxPrice

func (x *FilConfig) GetMaxPrice() uint64

func (*FilConfig) GetRenew

func (x *FilConfig) GetRenew() *FilRenew

func (*FilConfig) GetReplicationFactor

func (x *FilConfig) GetReplicationFactor() int64

func (*FilConfig) GetTrustedMiners

func (x *FilConfig) GetTrustedMiners() []string

func (*FilConfig) ProtoMessage

func (*FilConfig) ProtoMessage()

func (*FilConfig) ProtoReflect

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

func (*FilConfig) Reset

func (x *FilConfig) Reset()

func (*FilConfig) String

func (x *FilConfig) String() string

type FilInfo

type FilInfo struct {
	DataCid   string        `protobuf:"bytes,1,opt,name=data_cid,json=dataCid,proto3" json:"data_cid,omitempty"`
	Size      uint64        `protobuf:"varint,2,opt,name=size,proto3" json:"size,omitempty"`
	Proposals []*FilStorage `protobuf:"bytes,3,rep,name=proposals,proto3" json:"proposals,omitempty"`
	// contains filtered or unexported fields
}

func (*FilInfo) Descriptor deprecated

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

Deprecated: Use FilInfo.ProtoReflect.Descriptor instead.

func (*FilInfo) GetDataCid

func (x *FilInfo) GetDataCid() string

func (*FilInfo) GetProposals

func (x *FilInfo) GetProposals() []*FilStorage

func (*FilInfo) GetSize

func (x *FilInfo) GetSize() uint64

func (*FilInfo) ProtoMessage

func (*FilInfo) ProtoMessage()

func (*FilInfo) ProtoReflect

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

func (*FilInfo) Reset

func (x *FilInfo) Reset()

func (*FilInfo) String

func (x *FilInfo) String() string

type FilRenew

type FilRenew struct {
	Enabled   bool  `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
	Threshold int64 `protobuf:"varint,2,opt,name=threshold,proto3" json:"threshold,omitempty"`
	// contains filtered or unexported fields
}

func (*FilRenew) Descriptor deprecated

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

Deprecated: Use FilRenew.ProtoReflect.Descriptor instead.

func (*FilRenew) GetEnabled

func (x *FilRenew) GetEnabled() bool

func (*FilRenew) GetThreshold

func (x *FilRenew) GetThreshold() int64

func (*FilRenew) ProtoMessage

func (*FilRenew) ProtoMessage()

func (*FilRenew) ProtoReflect

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

func (*FilRenew) Reset

func (x *FilRenew) Reset()

func (*FilRenew) String

func (x *FilRenew) String() string

type FilStorage

type FilStorage struct {
	ProposalCid     string `protobuf:"bytes,1,opt,name=proposal_cid,json=proposalCid,proto3" json:"proposal_cid,omitempty"`
	Renewed         bool   `protobuf:"varint,2,opt,name=renewed,proto3" json:"renewed,omitempty"`
	Duration        int64  `protobuf:"varint,3,opt,name=duration,proto3" json:"duration,omitempty"`
	ActivationEpoch int64  `protobuf:"varint,4,opt,name=activation_epoch,json=activationEpoch,proto3" json:"activation_epoch,omitempty"`
	StartEpoch      uint64 `protobuf:"varint,5,opt,name=start_epoch,json=startEpoch,proto3" json:"start_epoch,omitempty"`
	Miner           string `protobuf:"bytes,6,opt,name=miner,proto3" json:"miner,omitempty"`
	EpochPrice      uint64 `protobuf:"varint,7,opt,name=epoch_price,json=epochPrice,proto3" json:"epoch_price,omitempty"`
	PieceCid        string `protobuf:"bytes,8,opt,name=piece_cid,json=pieceCid,proto3" json:"piece_cid,omitempty"`
	// contains filtered or unexported fields
}

func (*FilStorage) Descriptor deprecated

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

Deprecated: Use FilStorage.ProtoReflect.Descriptor instead.

func (*FilStorage) GetActivationEpoch

func (x *FilStorage) GetActivationEpoch() int64

func (*FilStorage) GetDuration

func (x *FilStorage) GetDuration() int64

func (*FilStorage) GetEpochPrice

func (x *FilStorage) GetEpochPrice() uint64

func (*FilStorage) GetMiner

func (x *FilStorage) GetMiner() string

func (*FilStorage) GetPieceCid

func (x *FilStorage) GetPieceCid() string

func (*FilStorage) GetProposalCid

func (x *FilStorage) GetProposalCid() string

func (*FilStorage) GetRenewed

func (x *FilStorage) GetRenewed() bool

func (*FilStorage) GetStartEpoch

func (x *FilStorage) GetStartEpoch() uint64

func (*FilStorage) ProtoMessage

func (*FilStorage) ProtoMessage()

func (*FilStorage) ProtoReflect

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

func (*FilStorage) Reset

func (x *FilStorage) Reset()

func (*FilStorage) String

func (x *FilStorage) String() string

type GetRequest

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

func (*GetRequest) Descriptor deprecated

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

Deprecated: Use GetRequest.ProtoReflect.Descriptor instead.

func (*GetRequest) GetCid

func (x *GetRequest) GetCid() string

func (*GetRequest) ProtoMessage

func (*GetRequest) ProtoMessage()

func (*GetRequest) ProtoReflect

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

func (*GetRequest) Reset

func (x *GetRequest) Reset()

func (*GetRequest) String

func (x *GetRequest) String() string

type GetResponse

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

func (*GetResponse) Descriptor deprecated

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

Deprecated: Use GetResponse.ProtoReflect.Descriptor instead.

func (*GetResponse) GetChunk

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

func (*GetResponse) ProtoMessage

func (*GetResponse) ProtoMessage()

func (*GetResponse) ProtoReflect

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

func (*GetResponse) Reset

func (x *GetResponse) Reset()

func (*GetResponse) String

func (x *GetResponse) String() string

type HotConfig

type HotConfig struct {
	Enabled          bool        `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
	AllowUnfreeze    bool        `protobuf:"varint,2,opt,name=allow_unfreeze,json=allowUnfreeze,proto3" json:"allow_unfreeze,omitempty"`
	UnfreezeMaxPrice uint64      `protobuf:"varint,3,opt,name=unfreeze_max_price,json=unfreezeMaxPrice,proto3" json:"unfreeze_max_price,omitempty"`
	Ipfs             *IpfsConfig `protobuf:"bytes,4,opt,name=ipfs,proto3" json:"ipfs,omitempty"`
	// contains filtered or unexported fields
}

func (*HotConfig) Descriptor deprecated

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

Deprecated: Use HotConfig.ProtoReflect.Descriptor instead.

func (*HotConfig) GetAllowUnfreeze

func (x *HotConfig) GetAllowUnfreeze() bool

func (*HotConfig) GetEnabled

func (x *HotConfig) GetEnabled() bool

func (*HotConfig) GetIpfs

func (x *HotConfig) GetIpfs() *IpfsConfig

func (*HotConfig) GetUnfreezeMaxPrice

func (x *HotConfig) GetUnfreezeMaxPrice() uint64

func (*HotConfig) ProtoMessage

func (*HotConfig) ProtoMessage()

func (*HotConfig) ProtoReflect

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

func (*HotConfig) Reset

func (x *HotConfig) Reset()

func (*HotConfig) String

func (x *HotConfig) String() string

type HotInfo

type HotInfo struct {
	Enabled bool         `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
	Size    int64        `protobuf:"varint,2,opt,name=size,proto3" json:"size,omitempty"`
	Ipfs    *IpfsHotInfo `protobuf:"bytes,3,opt,name=ipfs,proto3" json:"ipfs,omitempty"`
	// contains filtered or unexported fields
}

func (*HotInfo) Descriptor deprecated

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

Deprecated: Use HotInfo.ProtoReflect.Descriptor instead.

func (*HotInfo) GetEnabled

func (x *HotInfo) GetEnabled() bool

func (*HotInfo) GetIpfs

func (x *HotInfo) GetIpfs() *IpfsHotInfo

func (*HotInfo) GetSize

func (x *HotInfo) GetSize() int64

func (*HotInfo) ProtoMessage

func (*HotInfo) ProtoMessage()

func (*HotInfo) ProtoReflect

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

func (*HotInfo) Reset

func (x *HotInfo) Reset()

func (*HotInfo) String

func (x *HotInfo) String() string

type IpfsConfig

type IpfsConfig struct {
	AddTimeout int64 `protobuf:"varint,1,opt,name=add_timeout,json=addTimeout,proto3" json:"add_timeout,omitempty"`
	// contains filtered or unexported fields
}

func (*IpfsConfig) Descriptor deprecated

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

Deprecated: Use IpfsConfig.ProtoReflect.Descriptor instead.

func (*IpfsConfig) GetAddTimeout

func (x *IpfsConfig) GetAddTimeout() int64

func (*IpfsConfig) ProtoMessage

func (*IpfsConfig) ProtoMessage()

func (*IpfsConfig) ProtoReflect

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

func (*IpfsConfig) Reset

func (x *IpfsConfig) Reset()

func (*IpfsConfig) String

func (x *IpfsConfig) String() string

type IpfsHotInfo

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

func (*IpfsHotInfo) Descriptor deprecated

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

Deprecated: Use IpfsHotInfo.ProtoReflect.Descriptor instead.

func (*IpfsHotInfo) GetCreated

func (x *IpfsHotInfo) GetCreated() int64

func (*IpfsHotInfo) ProtoMessage

func (*IpfsHotInfo) ProtoMessage()

func (*IpfsHotInfo) ProtoReflect

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

func (*IpfsHotInfo) Reset

func (x *IpfsHotInfo) Reset()

func (*IpfsHotInfo) String

func (x *IpfsHotInfo) String() string

type Job

type Job struct {
	Id         string       `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	ApiId      string       `protobuf:"bytes,2,opt,name=api_id,json=apiId,proto3" json:"api_id,omitempty"`
	Cid        string       `protobuf:"bytes,3,opt,name=cid,proto3" json:"cid,omitempty"`
	Status     JobStatus    `protobuf:"varint,4,opt,name=status,proto3,enum=proto.powergate.v1.JobStatus" json:"status,omitempty"`
	ErrorCause string       `protobuf:"bytes,5,opt,name=error_cause,json=errorCause,proto3" json:"error_cause,omitempty"`
	DealInfo   []*DealInfo  `protobuf:"bytes,6,rep,name=deal_info,json=dealInfo,proto3" json:"deal_info,omitempty"`
	DealErrors []*DealError `protobuf:"bytes,7,rep,name=deal_errors,json=dealErrors,proto3" json:"deal_errors,omitempty"`
	CreatedAt  int64        `protobuf:"varint,8,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	// contains filtered or unexported fields
}

func (*Job) Descriptor deprecated

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

Deprecated: Use Job.ProtoReflect.Descriptor instead.

func (*Job) GetApiId

func (x *Job) GetApiId() string

func (*Job) GetCid

func (x *Job) GetCid() string

func (*Job) GetCreatedAt

func (x *Job) GetCreatedAt() int64

func (*Job) GetDealErrors

func (x *Job) GetDealErrors() []*DealError

func (*Job) GetDealInfo

func (x *Job) GetDealInfo() []*DealInfo

func (*Job) GetErrorCause

func (x *Job) GetErrorCause() string

func (*Job) GetId

func (x *Job) GetId() string

func (*Job) GetStatus

func (x *Job) GetStatus() JobStatus

func (*Job) ProtoMessage

func (*Job) ProtoMessage()

func (*Job) ProtoReflect

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

func (*Job) Reset

func (x *Job) Reset()

func (*Job) String

func (x *Job) String() string

type JobCounts

type JobCounts struct {
	Queued           int32 `protobuf:"varint,1,opt,name=queued,proto3" json:"queued,omitempty"`
	Executing        int32 `protobuf:"varint,2,opt,name=executing,proto3" json:"executing,omitempty"`
	LatestFinal      int32 `protobuf:"varint,3,opt,name=latest_final,json=latestFinal,proto3" json:"latest_final,omitempty"`
	LatestSuccessful int32 `protobuf:"varint,4,opt,name=latest_successful,json=latestSuccessful,proto3" json:"latest_successful,omitempty"`
	// contains filtered or unexported fields
}

func (*JobCounts) Descriptor deprecated

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

Deprecated: Use JobCounts.ProtoReflect.Descriptor instead.

func (*JobCounts) GetExecuting

func (x *JobCounts) GetExecuting() int32

func (*JobCounts) GetLatestFinal

func (x *JobCounts) GetLatestFinal() int32

func (*JobCounts) GetLatestSuccessful

func (x *JobCounts) GetLatestSuccessful() int32

func (*JobCounts) GetQueued

func (x *JobCounts) GetQueued() int32

func (*JobCounts) ProtoMessage

func (*JobCounts) ProtoMessage()

func (*JobCounts) ProtoReflect

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

func (*JobCounts) Reset

func (x *JobCounts) Reset()

func (*JobCounts) String

func (x *JobCounts) String() string

type JobStatus

type JobStatus int32
const (
	JobStatus_JOB_STATUS_UNSPECIFIED JobStatus = 0
	JobStatus_JOB_STATUS_QUEUED      JobStatus = 1
	JobStatus_JOB_STATUS_EXECUTING   JobStatus = 2
	JobStatus_JOB_STATUS_FAILED      JobStatus = 3
	JobStatus_JOB_STATUS_CANCELED    JobStatus = 4
	JobStatus_JOB_STATUS_SUCCESS     JobStatus = 5
)

func (JobStatus) Descriptor

func (JobStatus) Descriptor() protoreflect.EnumDescriptor

func (JobStatus) Enum

func (x JobStatus) Enum() *JobStatus

func (JobStatus) EnumDescriptor deprecated

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

Deprecated: Use JobStatus.Descriptor instead.

func (JobStatus) Number

func (x JobStatus) Number() protoreflect.EnumNumber

func (JobStatus) String

func (x JobStatus) String() string

func (JobStatus) Type

type LatestFinalStorageJobsRequest

type LatestFinalStorageJobsRequest struct {
	Cids []string `protobuf:"bytes,1,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) ProtoMessage

func (*LatestFinalStorageJobsRequest) ProtoMessage()

func (*LatestFinalStorageJobsRequest) ProtoReflect

func (*LatestFinalStorageJobsRequest) Reset

func (x *LatestFinalStorageJobsRequest) Reset()

func (*LatestFinalStorageJobsRequest) String

type LatestFinalStorageJobsResponse

type LatestFinalStorageJobsResponse struct {
	StorageJobs []*Job `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() []*Job

func (*LatestFinalStorageJobsResponse) ProtoMessage

func (*LatestFinalStorageJobsResponse) ProtoMessage()

func (*LatestFinalStorageJobsResponse) ProtoReflect

func (*LatestFinalStorageJobsResponse) Reset

func (x *LatestFinalStorageJobsResponse) Reset()

func (*LatestFinalStorageJobsResponse) String

type LatestSuccessfulStorageJobsRequest

type LatestSuccessfulStorageJobsRequest struct {
	Cids []string `protobuf:"bytes,1,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) ProtoMessage

func (*LatestSuccessfulStorageJobsRequest) ProtoMessage()

func (*LatestSuccessfulStorageJobsRequest) ProtoReflect

func (*LatestSuccessfulStorageJobsRequest) Reset

func (*LatestSuccessfulStorageJobsRequest) String

type LatestSuccessfulStorageJobsResponse

type LatestSuccessfulStorageJobsResponse struct {
	StorageJobs []*Job `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() []*Job

func (*LatestSuccessfulStorageJobsResponse) ProtoMessage

func (*LatestSuccessfulStorageJobsResponse) ProtoMessage()

func (*LatestSuccessfulStorageJobsResponse) ProtoReflect

func (*LatestSuccessfulStorageJobsResponse) Reset

func (*LatestSuccessfulStorageJobsResponse) String

type LogEntry

type LogEntry struct {
	Cid     string `protobuf:"bytes,1,opt,name=cid,proto3" json:"cid,omitempty"`
	JobId   string `protobuf:"bytes,2,opt,name=job_id,json=jobId,proto3" json:"job_id,omitempty"`
	Time    int64  `protobuf:"varint,3,opt,name=time,proto3" json:"time,omitempty"`
	Message string `protobuf:"bytes,4,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*LogEntry) Descriptor deprecated

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

Deprecated: Use LogEntry.ProtoReflect.Descriptor instead.

func (*LogEntry) GetCid

func (x *LogEntry) GetCid() string

func (*LogEntry) GetJobId

func (x *LogEntry) GetJobId() string

func (*LogEntry) GetMessage

func (x *LogEntry) GetMessage() string

func (*LogEntry) GetTime

func (x *LogEntry) GetTime() int64

func (*LogEntry) ProtoMessage

func (*LogEntry) ProtoMessage()

func (*LogEntry) ProtoReflect

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

func (*LogEntry) Reset

func (x *LogEntry) Reset()

func (*LogEntry) String

func (x *LogEntry) String() string

type NewAddressRequest

type NewAddressRequest struct {
	Name        string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	AddressType string `protobuf:"bytes,2,opt,name=address_type,json=addressType,proto3" json:"address_type,omitempty"`
	MakeDefault bool   `protobuf:"varint,3,opt,name=make_default,json=makeDefault,proto3" json:"make_default,omitempty"`
	// contains filtered or unexported fields
}

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

func (x *NewAddressRequest) GetMakeDefault() bool

func (*NewAddressRequest) GetName

func (x *NewAddressRequest) GetName() 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 PowergateServiceClient

type PowergateServiceClient interface {
	// Top level
	BuildInfo(ctx context.Context, in *BuildInfoRequest, opts ...grpc.CallOption) (*BuildInfoResponse, error)
	StorageProfileIdentifier(ctx context.Context, in *StorageProfileIdentifierRequest, opts ...grpc.CallOption) (*StorageProfileIdentifierResponse, error)
	// Storage config
	DefaultStorageConfig(ctx context.Context, in *DefaultStorageConfigRequest, opts ...grpc.CallOption) (*DefaultStorageConfigResponse, error)
	SetDefaultStorageConfig(ctx context.Context, in *SetDefaultStorageConfigRequest, opts ...grpc.CallOption) (*SetDefaultStorageConfigResponse, error)
	ApplyStorageConfig(ctx context.Context, in *ApplyStorageConfigRequest, opts ...grpc.CallOption) (*ApplyStorageConfigResponse, error)
	Remove(ctx context.Context, in *RemoveRequest, opts ...grpc.CallOption) (*RemoveResponse, error)
	// Data
	Stage(ctx context.Context, opts ...grpc.CallOption) (PowergateService_StageClient, error)
	ReplaceData(ctx context.Context, in *ReplaceDataRequest, opts ...grpc.CallOption) (*ReplaceDataResponse, error)
	Get(ctx context.Context, in *GetRequest, opts ...grpc.CallOption) (PowergateService_GetClient, error)
	WatchLogs(ctx context.Context, in *WatchLogsRequest, opts ...grpc.CallOption) (PowergateService_WatchLogsClient, error)
	CidInfo(ctx context.Context, in *CidInfoRequest, opts ...grpc.CallOption) (*CidInfoResponse, error)
	// Wallet
	Balance(ctx context.Context, in *BalanceRequest, opts ...grpc.CallOption) (*BalanceResponse, error)
	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)
	SignMessage(ctx context.Context, in *SignMessageRequest, opts ...grpc.CallOption) (*SignMessageResponse, error)
	VerifyMessage(ctx context.Context, in *VerifyMessageRequest, opts ...grpc.CallOption) (*VerifyMessageResponse, error)
	// Storage Jobs
	StorageJob(ctx context.Context, in *StorageJobRequest, opts ...grpc.CallOption) (*StorageJobResponse, error)
	StorageConfigForJob(ctx context.Context, in *StorageConfigForJobRequest, opts ...grpc.CallOption) (*StorageConfigForJobResponse, error)
	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)
	WatchStorageJobs(ctx context.Context, in *WatchStorageJobsRequest, opts ...grpc.CallOption) (PowergateService_WatchStorageJobsClient, error)
	CancelStorageJob(ctx context.Context, in *CancelStorageJobRequest, opts ...grpc.CallOption) (*CancelStorageJobResponse, error)
	// Deals
	StorageDealRecords(ctx context.Context, in *StorageDealRecordsRequest, opts ...grpc.CallOption) (*StorageDealRecordsResponse, error)
	RetrievalDealRecords(ctx context.Context, in *RetrievalDealRecordsRequest, opts ...grpc.CallOption) (*RetrievalDealRecordsResponse, error)
}

PowergateServiceClient is the client API for PowergateService service.

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

type PowergateServiceServer

type PowergateServiceServer interface {
	// Top level
	BuildInfo(context.Context, *BuildInfoRequest) (*BuildInfoResponse, error)
	StorageProfileIdentifier(context.Context, *StorageProfileIdentifierRequest) (*StorageProfileIdentifierResponse, error)
	// Storage config
	DefaultStorageConfig(context.Context, *DefaultStorageConfigRequest) (*DefaultStorageConfigResponse, error)
	SetDefaultStorageConfig(context.Context, *SetDefaultStorageConfigRequest) (*SetDefaultStorageConfigResponse, error)
	ApplyStorageConfig(context.Context, *ApplyStorageConfigRequest) (*ApplyStorageConfigResponse, error)
	Remove(context.Context, *RemoveRequest) (*RemoveResponse, error)
	// Data
	Stage(PowergateService_StageServer) error
	ReplaceData(context.Context, *ReplaceDataRequest) (*ReplaceDataResponse, error)
	Get(*GetRequest, PowergateService_GetServer) error
	WatchLogs(*WatchLogsRequest, PowergateService_WatchLogsServer) error
	CidInfo(context.Context, *CidInfoRequest) (*CidInfoResponse, error)
	// Wallet
	Balance(context.Context, *BalanceRequest) (*BalanceResponse, error)
	NewAddress(context.Context, *NewAddressRequest) (*NewAddressResponse, error)
	Addresses(context.Context, *AddressesRequest) (*AddressesResponse, error)
	SendFil(context.Context, *SendFilRequest) (*SendFilResponse, error)
	SignMessage(context.Context, *SignMessageRequest) (*SignMessageResponse, error)
	VerifyMessage(context.Context, *VerifyMessageRequest) (*VerifyMessageResponse, error)
	// Storage Jobs
	StorageJob(context.Context, *StorageJobRequest) (*StorageJobResponse, error)
	StorageConfigForJob(context.Context, *StorageConfigForJobRequest) (*StorageConfigForJobResponse, error)
	QueuedStorageJobs(context.Context, *QueuedStorageJobsRequest) (*QueuedStorageJobsResponse, error)
	ExecutingStorageJobs(context.Context, *ExecutingStorageJobsRequest) (*ExecutingStorageJobsResponse, error)
	LatestFinalStorageJobs(context.Context, *LatestFinalStorageJobsRequest) (*LatestFinalStorageJobsResponse, error)
	LatestSuccessfulStorageJobs(context.Context, *LatestSuccessfulStorageJobsRequest) (*LatestSuccessfulStorageJobsResponse, error)
	StorageJobsSummary(context.Context, *StorageJobsSummaryRequest) (*StorageJobsSummaryResponse, error)
	WatchStorageJobs(*WatchStorageJobsRequest, PowergateService_WatchStorageJobsServer) error
	CancelStorageJob(context.Context, *CancelStorageJobRequest) (*CancelStorageJobResponse, error)
	// Deals
	StorageDealRecords(context.Context, *StorageDealRecordsRequest) (*StorageDealRecordsResponse, error)
	RetrievalDealRecords(context.Context, *RetrievalDealRecordsRequest) (*RetrievalDealRecordsResponse, error)
}

PowergateServiceServer is the server API for PowergateService service.

type PowergateService_GetClient

type PowergateService_GetClient interface {
	Recv() (*GetResponse, error)
	grpc.ClientStream
}

type PowergateService_GetServer

type PowergateService_GetServer interface {
	Send(*GetResponse) error
	grpc.ServerStream
}

type PowergateService_StageClient

type PowergateService_StageClient interface {
	Send(*StageRequest) error
	CloseAndRecv() (*StageResponse, error)
	grpc.ClientStream
}

type PowergateService_StageServer

type PowergateService_StageServer interface {
	SendAndClose(*StageResponse) error
	Recv() (*StageRequest, error)
	grpc.ServerStream
}

type PowergateService_WatchLogsClient

type PowergateService_WatchLogsClient interface {
	Recv() (*WatchLogsResponse, error)
	grpc.ClientStream
}

type PowergateService_WatchLogsServer

type PowergateService_WatchLogsServer interface {
	Send(*WatchLogsResponse) error
	grpc.ServerStream
}

type PowergateService_WatchStorageJobsClient

type PowergateService_WatchStorageJobsClient interface {
	Recv() (*WatchStorageJobsResponse, error)
	grpc.ClientStream
}

type PowergateService_WatchStorageJobsServer

type PowergateService_WatchStorageJobsServer interface {
	Send(*WatchStorageJobsResponse) error
	grpc.ServerStream
}

type QueuedStorageJobsRequest

type QueuedStorageJobsRequest struct {
	Cids []string `protobuf:"bytes,1,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) 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 []*Job `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() []*Job

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 RemoveRequest

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

func (*RemoveRequest) Descriptor deprecated

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

Deprecated: Use RemoveRequest.ProtoReflect.Descriptor instead.

func (*RemoveRequest) GetCid

func (x *RemoveRequest) GetCid() string

func (*RemoveRequest) ProtoMessage

func (*RemoveRequest) ProtoMessage()

func (*RemoveRequest) ProtoReflect

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

func (*RemoveRequest) Reset

func (x *RemoveRequest) Reset()

func (*RemoveRequest) String

func (x *RemoveRequest) String() string

type RemoveResponse

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

func (*RemoveResponse) Descriptor deprecated

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

Deprecated: Use RemoveResponse.ProtoReflect.Descriptor instead.

func (*RemoveResponse) ProtoMessage

func (*RemoveResponse) ProtoMessage()

func (*RemoveResponse) ProtoReflect

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

func (*RemoveResponse) Reset

func (x *RemoveResponse) Reset()

func (*RemoveResponse) String

func (x *RemoveResponse) String() string

type ReplaceDataRequest

type ReplaceDataRequest struct {
	Cid1 string `protobuf:"bytes,1,opt,name=cid1,proto3" json:"cid1,omitempty"`
	Cid2 string `protobuf:"bytes,2,opt,name=cid2,proto3" json:"cid2,omitempty"`
	// contains filtered or unexported fields
}

func (*ReplaceDataRequest) Descriptor deprecated

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

Deprecated: Use ReplaceDataRequest.ProtoReflect.Descriptor instead.

func (*ReplaceDataRequest) GetCid1

func (x *ReplaceDataRequest) GetCid1() string

func (*ReplaceDataRequest) GetCid2

func (x *ReplaceDataRequest) GetCid2() string

func (*ReplaceDataRequest) ProtoMessage

func (*ReplaceDataRequest) ProtoMessage()

func (*ReplaceDataRequest) ProtoReflect

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

func (*ReplaceDataRequest) Reset

func (x *ReplaceDataRequest) Reset()

func (*ReplaceDataRequest) String

func (x *ReplaceDataRequest) String() string

type ReplaceDataResponse

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

func (*ReplaceDataResponse) Descriptor deprecated

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

Deprecated: Use ReplaceDataResponse.ProtoReflect.Descriptor instead.

func (*ReplaceDataResponse) GetJobId

func (x *ReplaceDataResponse) GetJobId() string

func (*ReplaceDataResponse) ProtoMessage

func (*ReplaceDataResponse) ProtoMessage()

func (*ReplaceDataResponse) ProtoReflect

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

func (*ReplaceDataResponse) Reset

func (x *ReplaceDataResponse) Reset()

func (*ReplaceDataResponse) String

func (x *ReplaceDataResponse) String() string

type RetrievalDealInfo

type RetrievalDealInfo struct {
	RootCid                 string `protobuf:"bytes,1,opt,name=root_cid,json=rootCid,proto3" json:"root_cid,omitempty"`
	Size                    uint64 `protobuf:"varint,2,opt,name=size,proto3" json:"size,omitempty"`
	MinPrice                uint64 `protobuf:"varint,3,opt,name=min_price,json=minPrice,proto3" json:"min_price,omitempty"`
	PaymentInterval         uint64 `protobuf:"varint,4,opt,name=payment_interval,json=paymentInterval,proto3" json:"payment_interval,omitempty"`
	PaymentIntervalIncrease uint64 `` /* 133-byte string literal not displayed */
	Miner                   string `protobuf:"bytes,6,opt,name=miner,proto3" json:"miner,omitempty"`
	MinerPeerId             string `protobuf:"bytes,7,opt,name=miner_peer_id,json=minerPeerId,proto3" json:"miner_peer_id,omitempty"`
	// contains filtered or unexported fields
}

func (*RetrievalDealInfo) Descriptor deprecated

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

Deprecated: Use RetrievalDealInfo.ProtoReflect.Descriptor instead.

func (*RetrievalDealInfo) GetMinPrice

func (x *RetrievalDealInfo) GetMinPrice() uint64

func (*RetrievalDealInfo) GetMiner

func (x *RetrievalDealInfo) GetMiner() string

func (*RetrievalDealInfo) GetMinerPeerId

func (x *RetrievalDealInfo) GetMinerPeerId() string

func (*RetrievalDealInfo) GetPaymentInterval

func (x *RetrievalDealInfo) GetPaymentInterval() uint64

func (*RetrievalDealInfo) GetPaymentIntervalIncrease

func (x *RetrievalDealInfo) GetPaymentIntervalIncrease() uint64

func (*RetrievalDealInfo) GetRootCid

func (x *RetrievalDealInfo) GetRootCid() string

func (*RetrievalDealInfo) GetSize

func (x *RetrievalDealInfo) GetSize() uint64

func (*RetrievalDealInfo) ProtoMessage

func (*RetrievalDealInfo) ProtoMessage()

func (*RetrievalDealInfo) ProtoReflect

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

func (*RetrievalDealInfo) Reset

func (x *RetrievalDealInfo) Reset()

func (*RetrievalDealInfo) String

func (x *RetrievalDealInfo) String() string

type RetrievalDealRecord

type RetrievalDealRecord struct {
	Address  string             `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Time     int64              `protobuf:"varint,2,opt,name=time,proto3" json:"time,omitempty"`
	DealInfo *RetrievalDealInfo `protobuf:"bytes,3,opt,name=deal_info,json=dealInfo,proto3" json:"deal_info,omitempty"`
	// contains filtered or unexported fields
}

func (*RetrievalDealRecord) Descriptor deprecated

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

Deprecated: Use RetrievalDealRecord.ProtoReflect.Descriptor instead.

func (*RetrievalDealRecord) GetAddress

func (x *RetrievalDealRecord) GetAddress() string

func (*RetrievalDealRecord) GetDealInfo

func (x *RetrievalDealRecord) GetDealInfo() *RetrievalDealInfo

func (*RetrievalDealRecord) GetTime

func (x *RetrievalDealRecord) GetTime() int64

func (*RetrievalDealRecord) ProtoMessage

func (*RetrievalDealRecord) ProtoMessage()

func (*RetrievalDealRecord) ProtoReflect

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

func (*RetrievalDealRecord) Reset

func (x *RetrievalDealRecord) Reset()

func (*RetrievalDealRecord) String

func (x *RetrievalDealRecord) String() string

type RetrievalDealRecordsRequest

type RetrievalDealRecordsRequest struct {
	Config *DealRecordsConfig `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"`
	// contains filtered or unexported fields
}

func (*RetrievalDealRecordsRequest) Descriptor deprecated

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

Deprecated: Use RetrievalDealRecordsRequest.ProtoReflect.Descriptor instead.

func (*RetrievalDealRecordsRequest) GetConfig

func (*RetrievalDealRecordsRequest) ProtoMessage

func (*RetrievalDealRecordsRequest) ProtoMessage()

func (*RetrievalDealRecordsRequest) ProtoReflect

func (*RetrievalDealRecordsRequest) Reset

func (x *RetrievalDealRecordsRequest) Reset()

func (*RetrievalDealRecordsRequest) String

func (x *RetrievalDealRecordsRequest) String() string

type RetrievalDealRecordsResponse

type RetrievalDealRecordsResponse struct {
	Records []*RetrievalDealRecord `protobuf:"bytes,1,rep,name=records,proto3" json:"records,omitempty"`
	// contains filtered or unexported fields
}

func (*RetrievalDealRecordsResponse) Descriptor deprecated

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

Deprecated: Use RetrievalDealRecordsResponse.ProtoReflect.Descriptor instead.

func (*RetrievalDealRecordsResponse) GetRecords

func (*RetrievalDealRecordsResponse) ProtoMessage

func (*RetrievalDealRecordsResponse) ProtoMessage()

func (*RetrievalDealRecordsResponse) ProtoReflect

func (*RetrievalDealRecordsResponse) Reset

func (x *RetrievalDealRecordsResponse) Reset()

func (*RetrievalDealRecordsResponse) 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 SetDefaultStorageConfigRequest

type SetDefaultStorageConfigRequest struct {
	Config *StorageConfig `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"`
	// contains filtered or unexported fields
}

func (*SetDefaultStorageConfigRequest) Descriptor deprecated

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

Deprecated: Use SetDefaultStorageConfigRequest.ProtoReflect.Descriptor instead.

func (*SetDefaultStorageConfigRequest) GetConfig

func (*SetDefaultStorageConfigRequest) ProtoMessage

func (*SetDefaultStorageConfigRequest) ProtoMessage()

func (*SetDefaultStorageConfigRequest) ProtoReflect

func (*SetDefaultStorageConfigRequest) Reset

func (x *SetDefaultStorageConfigRequest) Reset()

func (*SetDefaultStorageConfigRequest) String

type SetDefaultStorageConfigResponse

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

func (*SetDefaultStorageConfigResponse) Descriptor deprecated

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

Deprecated: Use SetDefaultStorageConfigResponse.ProtoReflect.Descriptor instead.

func (*SetDefaultStorageConfigResponse) ProtoMessage

func (*SetDefaultStorageConfigResponse) ProtoMessage()

func (*SetDefaultStorageConfigResponse) ProtoReflect

func (*SetDefaultStorageConfigResponse) Reset

func (*SetDefaultStorageConfigResponse) String

type SignMessageRequest

type SignMessageRequest struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Message []byte `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*SignMessageRequest) Descriptor deprecated

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

Deprecated: Use SignMessageRequest.ProtoReflect.Descriptor instead.

func (*SignMessageRequest) GetAddress

func (x *SignMessageRequest) GetAddress() string

func (*SignMessageRequest) GetMessage

func (x *SignMessageRequest) GetMessage() []byte

func (*SignMessageRequest) ProtoMessage

func (*SignMessageRequest) ProtoMessage()

func (*SignMessageRequest) ProtoReflect

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

func (*SignMessageRequest) Reset

func (x *SignMessageRequest) Reset()

func (*SignMessageRequest) String

func (x *SignMessageRequest) String() string

type SignMessageResponse

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

func (*SignMessageResponse) Descriptor deprecated

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

Deprecated: Use SignMessageResponse.ProtoReflect.Descriptor instead.

func (*SignMessageResponse) GetSignature

func (x *SignMessageResponse) GetSignature() []byte

func (*SignMessageResponse) ProtoMessage

func (*SignMessageResponse) ProtoMessage()

func (*SignMessageResponse) ProtoReflect

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

func (*SignMessageResponse) Reset

func (x *SignMessageResponse) Reset()

func (*SignMessageResponse) String

func (x *SignMessageResponse) String() string

type StageRequest

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

func (*StageRequest) Descriptor deprecated

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

Deprecated: Use StageRequest.ProtoReflect.Descriptor instead.

func (*StageRequest) GetChunk

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

func (*StageRequest) ProtoMessage

func (*StageRequest) ProtoMessage()

func (*StageRequest) ProtoReflect

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

func (*StageRequest) Reset

func (x *StageRequest) Reset()

func (*StageRequest) String

func (x *StageRequest) String() string

type StageResponse

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

func (*StageResponse) Descriptor deprecated

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

Deprecated: Use StageResponse.ProtoReflect.Descriptor instead.

func (*StageResponse) GetCid

func (x *StageResponse) GetCid() string

func (*StageResponse) ProtoMessage

func (*StageResponse) ProtoMessage()

func (*StageResponse) ProtoReflect

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

func (*StageResponse) Reset

func (x *StageResponse) Reset()

func (*StageResponse) String

func (x *StageResponse) String() string

type StorageConfig

type StorageConfig struct {
	Hot        *HotConfig  `protobuf:"bytes,1,opt,name=hot,proto3" json:"hot,omitempty"`
	Cold       *ColdConfig `protobuf:"bytes,2,opt,name=cold,proto3" json:"cold,omitempty"`
	Repairable bool        `protobuf:"varint,3,opt,name=repairable,proto3" json:"repairable,omitempty"`
	// contains filtered or unexported fields
}

func (*StorageConfig) Descriptor deprecated

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

Deprecated: Use StorageConfig.ProtoReflect.Descriptor instead.

func (*StorageConfig) GetCold

func (x *StorageConfig) GetCold() *ColdConfig

func (*StorageConfig) GetHot

func (x *StorageConfig) GetHot() *HotConfig

func (*StorageConfig) GetRepairable

func (x *StorageConfig) GetRepairable() bool

func (*StorageConfig) ProtoMessage

func (*StorageConfig) ProtoMessage()

func (*StorageConfig) ProtoReflect

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

func (*StorageConfig) Reset

func (x *StorageConfig) Reset()

func (*StorageConfig) String

func (x *StorageConfig) String() string

type StorageConfigForJobRequest

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

func (*StorageConfigForJobRequest) Descriptor deprecated

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

Deprecated: Use StorageConfigForJobRequest.ProtoReflect.Descriptor instead.

func (*StorageConfigForJobRequest) GetJobId

func (x *StorageConfigForJobRequest) GetJobId() string

func (*StorageConfigForJobRequest) ProtoMessage

func (*StorageConfigForJobRequest) ProtoMessage()

func (*StorageConfigForJobRequest) ProtoReflect

func (*StorageConfigForJobRequest) Reset

func (x *StorageConfigForJobRequest) Reset()

func (*StorageConfigForJobRequest) String

func (x *StorageConfigForJobRequest) String() string

type StorageConfigForJobResponse

type StorageConfigForJobResponse struct {
	StorageConfig *StorageConfig `protobuf:"bytes,1,opt,name=storage_config,json=storageConfig,proto3" json:"storage_config,omitempty"`
	// contains filtered or unexported fields
}

func (*StorageConfigForJobResponse) Descriptor deprecated

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

Deprecated: Use StorageConfigForJobResponse.ProtoReflect.Descriptor instead.

func (*StorageConfigForJobResponse) GetStorageConfig

func (x *StorageConfigForJobResponse) GetStorageConfig() *StorageConfig

func (*StorageConfigForJobResponse) ProtoMessage

func (*StorageConfigForJobResponse) ProtoMessage()

func (*StorageConfigForJobResponse) ProtoReflect

func (*StorageConfigForJobResponse) Reset

func (x *StorageConfigForJobResponse) Reset()

func (*StorageConfigForJobResponse) String

func (x *StorageConfigForJobResponse) String() string

type StorageDealInfo

type StorageDealInfo struct {
	ProposalCid     string `protobuf:"bytes,1,opt,name=proposal_cid,json=proposalCid,proto3" json:"proposal_cid,omitempty"`
	StateId         uint64 `protobuf:"varint,2,opt,name=state_id,json=stateId,proto3" json:"state_id,omitempty"`
	StateName       string `protobuf:"bytes,3,opt,name=state_name,json=stateName,proto3" json:"state_name,omitempty"`
	Miner           string `protobuf:"bytes,4,opt,name=miner,proto3" json:"miner,omitempty"`
	PieceCid        string `protobuf:"bytes,5,opt,name=piece_cid,json=pieceCid,proto3" json:"piece_cid,omitempty"`
	Size            uint64 `protobuf:"varint,6,opt,name=size,proto3" json:"size,omitempty"`
	PricePerEpoch   uint64 `protobuf:"varint,7,opt,name=price_per_epoch,json=pricePerEpoch,proto3" json:"price_per_epoch,omitempty"`
	StartEpoch      uint64 `protobuf:"varint,8,opt,name=start_epoch,json=startEpoch,proto3" json:"start_epoch,omitempty"`
	Duration        uint64 `protobuf:"varint,9,opt,name=duration,proto3" json:"duration,omitempty"`
	DealId          uint64 `protobuf:"varint,10,opt,name=deal_id,json=dealId,proto3" json:"deal_id,omitempty"`
	ActivationEpoch int64  `protobuf:"varint,11,opt,name=activation_epoch,json=activationEpoch,proto3" json:"activation_epoch,omitempty"`
	Message         string `protobuf:"bytes,12,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*StorageDealInfo) Descriptor deprecated

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

Deprecated: Use StorageDealInfo.ProtoReflect.Descriptor instead.

func (*StorageDealInfo) GetActivationEpoch

func (x *StorageDealInfo) GetActivationEpoch() int64

func (*StorageDealInfo) GetDealId

func (x *StorageDealInfo) GetDealId() uint64

func (*StorageDealInfo) GetDuration

func (x *StorageDealInfo) GetDuration() uint64

func (*StorageDealInfo) GetMessage

func (x *StorageDealInfo) GetMessage() string

func (*StorageDealInfo) GetMiner

func (x *StorageDealInfo) GetMiner() string

func (*StorageDealInfo) GetPieceCid

func (x *StorageDealInfo) GetPieceCid() string

func (*StorageDealInfo) GetPricePerEpoch

func (x *StorageDealInfo) GetPricePerEpoch() uint64

func (*StorageDealInfo) GetProposalCid

func (x *StorageDealInfo) GetProposalCid() string

func (*StorageDealInfo) GetSize

func (x *StorageDealInfo) GetSize() uint64

func (*StorageDealInfo) GetStartEpoch

func (x *StorageDealInfo) GetStartEpoch() uint64

func (*StorageDealInfo) GetStateId

func (x *StorageDealInfo) GetStateId() uint64

func (*StorageDealInfo) GetStateName

func (x *StorageDealInfo) GetStateName() string

func (*StorageDealInfo) ProtoMessage

func (*StorageDealInfo) ProtoMessage()

func (*StorageDealInfo) ProtoReflect

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

func (*StorageDealInfo) Reset

func (x *StorageDealInfo) Reset()

func (*StorageDealInfo) String

func (x *StorageDealInfo) String() string

type StorageDealRecord

type StorageDealRecord struct {
	RootCid  string           `protobuf:"bytes,1,opt,name=root_cid,json=rootCid,proto3" json:"root_cid,omitempty"`
	Address  string           `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	Time     int64            `protobuf:"varint,3,opt,name=time,proto3" json:"time,omitempty"`
	Pending  bool             `protobuf:"varint,4,opt,name=pending,proto3" json:"pending,omitempty"`
	DealInfo *StorageDealInfo `protobuf:"bytes,5,opt,name=deal_info,json=dealInfo,proto3" json:"deal_info,omitempty"`
	// contains filtered or unexported fields
}

func (*StorageDealRecord) Descriptor deprecated

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

Deprecated: Use StorageDealRecord.ProtoReflect.Descriptor instead.

func (*StorageDealRecord) GetAddress

func (x *StorageDealRecord) GetAddress() string

func (*StorageDealRecord) GetDealInfo

func (x *StorageDealRecord) GetDealInfo() *StorageDealInfo

func (*StorageDealRecord) GetPending

func (x *StorageDealRecord) GetPending() bool

func (*StorageDealRecord) GetRootCid

func (x *StorageDealRecord) GetRootCid() string

func (*StorageDealRecord) GetTime

func (x *StorageDealRecord) GetTime() int64

func (*StorageDealRecord) ProtoMessage

func (*StorageDealRecord) ProtoMessage()

func (*StorageDealRecord) ProtoReflect

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

func (*StorageDealRecord) Reset

func (x *StorageDealRecord) Reset()

func (*StorageDealRecord) String

func (x *StorageDealRecord) String() string

type StorageDealRecordsRequest

type StorageDealRecordsRequest struct {
	Config *DealRecordsConfig `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"`
	// contains filtered or unexported fields
}

func (*StorageDealRecordsRequest) Descriptor deprecated

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

Deprecated: Use StorageDealRecordsRequest.ProtoReflect.Descriptor instead.

func (*StorageDealRecordsRequest) GetConfig

func (*StorageDealRecordsRequest) ProtoMessage

func (*StorageDealRecordsRequest) ProtoMessage()

func (*StorageDealRecordsRequest) ProtoReflect

func (*StorageDealRecordsRequest) Reset

func (x *StorageDealRecordsRequest) Reset()

func (*StorageDealRecordsRequest) String

func (x *StorageDealRecordsRequest) String() string

type StorageDealRecordsResponse

type StorageDealRecordsResponse struct {
	Records []*StorageDealRecord `protobuf:"bytes,1,rep,name=records,proto3" json:"records,omitempty"`
	// contains filtered or unexported fields
}

func (*StorageDealRecordsResponse) Descriptor deprecated

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

Deprecated: Use StorageDealRecordsResponse.ProtoReflect.Descriptor instead.

func (*StorageDealRecordsResponse) GetRecords

func (x *StorageDealRecordsResponse) GetRecords() []*StorageDealRecord

func (*StorageDealRecordsResponse) ProtoMessage

func (*StorageDealRecordsResponse) ProtoMessage()

func (*StorageDealRecordsResponse) ProtoReflect

func (*StorageDealRecordsResponse) Reset

func (x *StorageDealRecordsResponse) Reset()

func (*StorageDealRecordsResponse) String

func (x *StorageDealRecordsResponse) String() string

type StorageInfo

type StorageInfo struct {
	JobId   string    `protobuf:"bytes,1,opt,name=job_id,json=jobId,proto3" json:"job_id,omitempty"`
	Cid     string    `protobuf:"bytes,2,opt,name=cid,proto3" json:"cid,omitempty"`
	Created int64     `protobuf:"varint,3,opt,name=created,proto3" json:"created,omitempty"`
	Hot     *HotInfo  `protobuf:"bytes,4,opt,name=hot,proto3" json:"hot,omitempty"`
	Cold    *ColdInfo `protobuf:"bytes,5,opt,name=cold,proto3" json:"cold,omitempty"`
	// contains filtered or unexported fields
}

func (*StorageInfo) Descriptor deprecated

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

Deprecated: Use StorageInfo.ProtoReflect.Descriptor instead.

func (*StorageInfo) GetCid

func (x *StorageInfo) GetCid() string

func (*StorageInfo) GetCold

func (x *StorageInfo) GetCold() *ColdInfo

func (*StorageInfo) GetCreated

func (x *StorageInfo) GetCreated() int64

func (*StorageInfo) GetHot

func (x *StorageInfo) GetHot() *HotInfo

func (*StorageInfo) GetJobId

func (x *StorageInfo) GetJobId() string

func (*StorageInfo) ProtoMessage

func (*StorageInfo) ProtoMessage()

func (*StorageInfo) ProtoReflect

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

func (*StorageInfo) Reset

func (x *StorageInfo) Reset()

func (*StorageInfo) String

func (x *StorageInfo) String() string

type StorageJobRequest

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

func (*StorageJobRequest) Descriptor deprecated

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

Deprecated: Use StorageJobRequest.ProtoReflect.Descriptor instead.

func (*StorageJobRequest) GetJobId

func (x *StorageJobRequest) GetJobId() string

func (*StorageJobRequest) ProtoMessage

func (*StorageJobRequest) ProtoMessage()

func (*StorageJobRequest) ProtoReflect

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

func (*StorageJobRequest) Reset

func (x *StorageJobRequest) Reset()

func (*StorageJobRequest) String

func (x *StorageJobRequest) String() string

type StorageJobResponse

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

func (*StorageJobResponse) Descriptor deprecated

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

Deprecated: Use StorageJobResponse.ProtoReflect.Descriptor instead.

func (*StorageJobResponse) GetJob

func (x *StorageJobResponse) GetJob() *Job

func (*StorageJobResponse) ProtoMessage

func (*StorageJobResponse) ProtoMessage()

func (*StorageJobResponse) ProtoReflect

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

func (*StorageJobResponse) Reset

func (x *StorageJobResponse) Reset()

func (*StorageJobResponse) String

func (x *StorageJobResponse) String() string

type StorageJobsSummaryRequest

type StorageJobsSummaryRequest struct {
	Cids []string `protobuf:"bytes,1,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) 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                   *JobCounts `protobuf:"bytes,1,opt,name=job_counts,json=jobCounts,proto3" json:"job_counts,omitempty"`
	QueuedStorageJobs           []*Job     `protobuf:"bytes,2,rep,name=queued_storage_jobs,json=queuedStorageJobs,proto3" json:"queued_storage_jobs,omitempty"`
	ExecutingStorageJobs        []*Job     `protobuf:"bytes,3,rep,name=executing_storage_jobs,json=executingStorageJobs,proto3" json:"executing_storage_jobs,omitempty"`
	LatestFinalStorageJobs      []*Job     `` /* 131-byte string literal not displayed */
	LatestSuccessfulStorageJobs []*Job     `` /* 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() []*Job

func (*StorageJobsSummaryResponse) GetJobCounts

func (x *StorageJobsSummaryResponse) GetJobCounts() *JobCounts

func (*StorageJobsSummaryResponse) GetLatestFinalStorageJobs

func (x *StorageJobsSummaryResponse) GetLatestFinalStorageJobs() []*Job

func (*StorageJobsSummaryResponse) GetLatestSuccessfulStorageJobs

func (x *StorageJobsSummaryResponse) GetLatestSuccessfulStorageJobs() []*Job

func (*StorageJobsSummaryResponse) GetQueuedStorageJobs

func (x *StorageJobsSummaryResponse) GetQueuedStorageJobs() []*Job

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 StorageProfileIdentifierRequest

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

func (*StorageProfileIdentifierRequest) Descriptor deprecated

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

Deprecated: Use StorageProfileIdentifierRequest.ProtoReflect.Descriptor instead.

func (*StorageProfileIdentifierRequest) ProtoMessage

func (*StorageProfileIdentifierRequest) ProtoMessage()

func (*StorageProfileIdentifierRequest) ProtoReflect

func (*StorageProfileIdentifierRequest) Reset

func (*StorageProfileIdentifierRequest) String

type StorageProfileIdentifierResponse

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

func (*StorageProfileIdentifierResponse) Descriptor deprecated

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

Deprecated: Use StorageProfileIdentifierResponse.ProtoReflect.Descriptor instead.

func (*StorageProfileIdentifierResponse) GetId

func (*StorageProfileIdentifierResponse) ProtoMessage

func (*StorageProfileIdentifierResponse) ProtoMessage()

func (*StorageProfileIdentifierResponse) ProtoReflect

func (*StorageProfileIdentifierResponse) Reset

func (*StorageProfileIdentifierResponse) String

type UnimplementedPowergateServiceServer

type UnimplementedPowergateServiceServer struct {
}

UnimplementedPowergateServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedPowergateServiceServer) Addresses

func (*UnimplementedPowergateServiceServer) ApplyStorageConfig

func (*UnimplementedPowergateServiceServer) Balance

func (*UnimplementedPowergateServiceServer) BuildInfo

func (*UnimplementedPowergateServiceServer) CancelStorageJob

func (*UnimplementedPowergateServiceServer) CidInfo

func (*UnimplementedPowergateServiceServer) DefaultStorageConfig

func (*UnimplementedPowergateServiceServer) ExecutingStorageJobs

func (*UnimplementedPowergateServiceServer) Get

func (*UnimplementedPowergateServiceServer) NewAddress

func (*UnimplementedPowergateServiceServer) QueuedStorageJobs

func (*UnimplementedPowergateServiceServer) Remove

func (*UnimplementedPowergateServiceServer) ReplaceData

func (*UnimplementedPowergateServiceServer) RetrievalDealRecords

func (*UnimplementedPowergateServiceServer) SendFil

func (*UnimplementedPowergateServiceServer) SignMessage

func (*UnimplementedPowergateServiceServer) Stage

func (*UnimplementedPowergateServiceServer) StorageConfigForJob

func (*UnimplementedPowergateServiceServer) StorageDealRecords

func (*UnimplementedPowergateServiceServer) StorageJob

func (*UnimplementedPowergateServiceServer) StorageJobsSummary

func (*UnimplementedPowergateServiceServer) VerifyMessage

func (*UnimplementedPowergateServiceServer) WatchLogs

type VerifyMessageRequest

type VerifyMessageRequest struct {
	Address   string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Message   []byte `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	Signature []byte `protobuf:"bytes,3,opt,name=signature,proto3" json:"signature,omitempty"`
	// contains filtered or unexported fields
}

func (*VerifyMessageRequest) Descriptor deprecated

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

Deprecated: Use VerifyMessageRequest.ProtoReflect.Descriptor instead.

func (*VerifyMessageRequest) GetAddress

func (x *VerifyMessageRequest) GetAddress() string

func (*VerifyMessageRequest) GetMessage

func (x *VerifyMessageRequest) GetMessage() []byte

func (*VerifyMessageRequest) GetSignature

func (x *VerifyMessageRequest) GetSignature() []byte

func (*VerifyMessageRequest) ProtoMessage

func (*VerifyMessageRequest) ProtoMessage()

func (*VerifyMessageRequest) ProtoReflect

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

func (*VerifyMessageRequest) Reset

func (x *VerifyMessageRequest) Reset()

func (*VerifyMessageRequest) String

func (x *VerifyMessageRequest) String() string

type VerifyMessageResponse

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

func (*VerifyMessageResponse) Descriptor deprecated

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

Deprecated: Use VerifyMessageResponse.ProtoReflect.Descriptor instead.

func (*VerifyMessageResponse) GetOk

func (x *VerifyMessageResponse) GetOk() bool

func (*VerifyMessageResponse) ProtoMessage

func (*VerifyMessageResponse) ProtoMessage()

func (*VerifyMessageResponse) ProtoReflect

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

func (*VerifyMessageResponse) Reset

func (x *VerifyMessageResponse) Reset()

func (*VerifyMessageResponse) String

func (x *VerifyMessageResponse) String() string

type WatchLogsRequest

type WatchLogsRequest struct {
	Cid     string `protobuf:"bytes,1,opt,name=cid,proto3" json:"cid,omitempty"`
	JobId   string `protobuf:"bytes,2,opt,name=job_id,json=jobId,proto3" json:"job_id,omitempty"`
	History bool   `protobuf:"varint,3,opt,name=history,proto3" json:"history,omitempty"`
	// contains filtered or unexported fields
}

func (*WatchLogsRequest) Descriptor deprecated

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

Deprecated: Use WatchLogsRequest.ProtoReflect.Descriptor instead.

func (*WatchLogsRequest) GetCid

func (x *WatchLogsRequest) GetCid() string

func (*WatchLogsRequest) GetHistory

func (x *WatchLogsRequest) GetHistory() bool

func (*WatchLogsRequest) GetJobId

func (x *WatchLogsRequest) GetJobId() string

func (*WatchLogsRequest) ProtoMessage

func (*WatchLogsRequest) ProtoMessage()

func (*WatchLogsRequest) ProtoReflect

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

func (*WatchLogsRequest) Reset

func (x *WatchLogsRequest) Reset()

func (*WatchLogsRequest) String

func (x *WatchLogsRequest) String() string

type WatchLogsResponse

type WatchLogsResponse struct {
	LogEntry *LogEntry `protobuf:"bytes,1,opt,name=log_entry,json=logEntry,proto3" json:"log_entry,omitempty"`
	// contains filtered or unexported fields
}

func (*WatchLogsResponse) Descriptor deprecated

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

Deprecated: Use WatchLogsResponse.ProtoReflect.Descriptor instead.

func (*WatchLogsResponse) GetLogEntry

func (x *WatchLogsResponse) GetLogEntry() *LogEntry

func (*WatchLogsResponse) ProtoMessage

func (*WatchLogsResponse) ProtoMessage()

func (*WatchLogsResponse) ProtoReflect

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

func (*WatchLogsResponse) Reset

func (x *WatchLogsResponse) Reset()

func (*WatchLogsResponse) String

func (x *WatchLogsResponse) String() string

type WatchStorageJobsRequest

type WatchStorageJobsRequest struct {
	JobIds []string `protobuf:"bytes,1,rep,name=job_ids,json=jobIds,proto3" json:"job_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*WatchStorageJobsRequest) Descriptor deprecated

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

Deprecated: Use WatchStorageJobsRequest.ProtoReflect.Descriptor instead.

func (*WatchStorageJobsRequest) GetJobIds

func (x *WatchStorageJobsRequest) GetJobIds() []string

func (*WatchStorageJobsRequest) ProtoMessage

func (*WatchStorageJobsRequest) ProtoMessage()

func (*WatchStorageJobsRequest) ProtoReflect

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

func (*WatchStorageJobsRequest) Reset

func (x *WatchStorageJobsRequest) Reset()

func (*WatchStorageJobsRequest) String

func (x *WatchStorageJobsRequest) String() string

type WatchStorageJobsResponse

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

func (*WatchStorageJobsResponse) Descriptor deprecated

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

Deprecated: Use WatchStorageJobsResponse.ProtoReflect.Descriptor instead.

func (*WatchStorageJobsResponse) GetJob

func (x *WatchStorageJobsResponse) GetJob() *Job

func (*WatchStorageJobsResponse) ProtoMessage

func (*WatchStorageJobsResponse) ProtoMessage()

func (*WatchStorageJobsResponse) ProtoReflect

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

func (*WatchStorageJobsResponse) Reset

func (x *WatchStorageJobsResponse) Reset()

func (*WatchStorageJobsResponse) String

func (x *WatchStorageJobsResponse) String() string

Jump to

Keyboard shortcuts

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