pfs

package
v2.9.4 Latest Latest
Warning

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

Go to latest
Published: Apr 8, 2024 License: Apache-2.0 Imports: 42 Imported by: 3

Documentation

Overview

Package pfs is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	// ChunkSize is the size of file chunks when resumable upload is used
	ChunkSize = int64(512 * 1024 * 1024) // 512 MB

	// default system repo types
	UserRepoType = "user"
	MetaRepoType = "meta"
	SpecRepoType = "spec"

	DefaultProjectName = "default"
)
View Source
const (
	API_CreateRepo_FullMethodName       = "/pfs_v2.API/CreateRepo"
	API_InspectRepo_FullMethodName      = "/pfs_v2.API/InspectRepo"
	API_ListRepo_FullMethodName         = "/pfs_v2.API/ListRepo"
	API_DeleteRepo_FullMethodName       = "/pfs_v2.API/DeleteRepo"
	API_DeleteRepos_FullMethodName      = "/pfs_v2.API/DeleteRepos"
	API_StartCommit_FullMethodName      = "/pfs_v2.API/StartCommit"
	API_FinishCommit_FullMethodName     = "/pfs_v2.API/FinishCommit"
	API_ClearCommit_FullMethodName      = "/pfs_v2.API/ClearCommit"
	API_InspectCommit_FullMethodName    = "/pfs_v2.API/InspectCommit"
	API_ListCommit_FullMethodName       = "/pfs_v2.API/ListCommit"
	API_SubscribeCommit_FullMethodName  = "/pfs_v2.API/SubscribeCommit"
	API_SquashCommit_FullMethodName     = "/pfs_v2.API/SquashCommit"
	API_DropCommit_FullMethodName       = "/pfs_v2.API/DropCommit"
	API_InspectCommitSet_FullMethodName = "/pfs_v2.API/InspectCommitSet"
	API_ListCommitSet_FullMethodName    = "/pfs_v2.API/ListCommitSet"
	API_SquashCommitSet_FullMethodName  = "/pfs_v2.API/SquashCommitSet"
	API_DropCommitSet_FullMethodName    = "/pfs_v2.API/DropCommitSet"
	API_FindCommits_FullMethodName      = "/pfs_v2.API/FindCommits"
	API_CreateBranch_FullMethodName     = "/pfs_v2.API/CreateBranch"
	API_InspectBranch_FullMethodName    = "/pfs_v2.API/InspectBranch"
	API_ListBranch_FullMethodName       = "/pfs_v2.API/ListBranch"
	API_DeleteBranch_FullMethodName     = "/pfs_v2.API/DeleteBranch"
	API_ModifyFile_FullMethodName       = "/pfs_v2.API/ModifyFile"
	API_GetFile_FullMethodName          = "/pfs_v2.API/GetFile"
	API_GetFileTAR_FullMethodName       = "/pfs_v2.API/GetFileTAR"
	API_InspectFile_FullMethodName      = "/pfs_v2.API/InspectFile"
	API_ListFile_FullMethodName         = "/pfs_v2.API/ListFile"
	API_WalkFile_FullMethodName         = "/pfs_v2.API/WalkFile"
	API_GlobFile_FullMethodName         = "/pfs_v2.API/GlobFile"
	API_DiffFile_FullMethodName         = "/pfs_v2.API/DiffFile"
	API_ActivateAuth_FullMethodName     = "/pfs_v2.API/ActivateAuth"
	API_DeleteAll_FullMethodName        = "/pfs_v2.API/DeleteAll"
	API_Fsck_FullMethodName             = "/pfs_v2.API/Fsck"
	API_CreateFileSet_FullMethodName    = "/pfs_v2.API/CreateFileSet"
	API_GetFileSet_FullMethodName       = "/pfs_v2.API/GetFileSet"
	API_AddFileSet_FullMethodName       = "/pfs_v2.API/AddFileSet"
	API_RenewFileSet_FullMethodName     = "/pfs_v2.API/RenewFileSet"
	API_ComposeFileSet_FullMethodName   = "/pfs_v2.API/ComposeFileSet"
	API_ShardFileSet_FullMethodName     = "/pfs_v2.API/ShardFileSet"
	API_CheckStorage_FullMethodName     = "/pfs_v2.API/CheckStorage"
	API_PutCache_FullMethodName         = "/pfs_v2.API/PutCache"
	API_GetCache_FullMethodName         = "/pfs_v2.API/GetCache"
	API_ClearCache_FullMethodName       = "/pfs_v2.API/ClearCache"
	API_ListTask_FullMethodName         = "/pfs_v2.API/ListTask"
	API_Egress_FullMethodName           = "/pfs_v2.API/Egress"
	API_CreateProject_FullMethodName    = "/pfs_v2.API/CreateProject"
	API_InspectProject_FullMethodName   = "/pfs_v2.API/InspectProject"
	API_InspectProjectV2_FullMethodName = "/pfs_v2.API/InspectProjectV2"
	API_ListProject_FullMethodName      = "/pfs_v2.API/ListProject"
	API_DeleteProject_FullMethodName    = "/pfs_v2.API/DeleteProject"
)

Variables

View Source
var (
	OriginKind_name = map[int32]string{
		0: "ORIGIN_KIND_UNKNOWN",
		1: "USER",
		2: "AUTO",
		3: "FSCK",
	}
	OriginKind_value = map[string]int32{
		"ORIGIN_KIND_UNKNOWN": 0,
		"USER":                1,
		"AUTO":                2,
		"FSCK":                3,
	}
)

Enum value maps for OriginKind.

View Source
var (
	FileType_name = map[int32]string{
		0: "RESERVED",
		1: "FILE",
		2: "DIR",
	}
	FileType_value = map[string]int32{
		"RESERVED": 0,
		"FILE":     1,
		"DIR":      2,
	}
)

Enum value maps for FileType.

View Source
var (
	CommitState_name = map[int32]string{
		0: "COMMIT_STATE_UNKNOWN",
		1: "STARTED",
		2: "READY",
		3: "FINISHING",
		4: "FINISHED",
	}
	CommitState_value = map[string]int32{
		"COMMIT_STATE_UNKNOWN": 0,
		"STARTED":              1,
		"READY":                2,
		"FINISHING":            3,
		"FINISHED":             4,
	}
)

Enum value maps for CommitState.

View Source
var (
	Delimiter_name = map[int32]string{
		0: "NONE",
		1: "JSON",
		2: "LINE",
		3: "SQL",
		4: "CSV",
	}
	Delimiter_value = map[string]int32{
		"NONE": 0,
		"JSON": 1,
		"LINE": 2,
		"SQL":  3,
		"CSV":  4,
	}
)

Enum value maps for Delimiter.

View Source
var (
	GetFileSetRequest_FileSetType_name = map[int32]string{
		0: "TOTAL",
		1: "DIFF",
	}
	GetFileSetRequest_FileSetType_value = map[string]int32{
		"TOTAL": 0,
		"DIFF":  1,
	}
)

Enum value maps for GetFileSetRequest_FileSetType.

View Source
var (
	SQLDatabaseEgress_FileFormat_Type_name = map[int32]string{
		0: "UNKNOWN",
		1: "CSV",
		2: "JSON",
		3: "PARQUET",
	}
	SQLDatabaseEgress_FileFormat_Type_value = map[string]int32{
		"UNKNOWN": 0,
		"CSV":     1,
		"JSON":    2,
		"PARQUET": 3,
	}
)

Enum value maps for SQLDatabaseEgress_FileFormat_Type.

View Source
var API_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "pfs_v2.API",
	HandlerType: (*APIServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "CreateRepo",
			Handler:    _API_CreateRepo_Handler,
		},
		{
			MethodName: "InspectRepo",
			Handler:    _API_InspectRepo_Handler,
		},
		{
			MethodName: "DeleteRepo",
			Handler:    _API_DeleteRepo_Handler,
		},
		{
			MethodName: "DeleteRepos",
			Handler:    _API_DeleteRepos_Handler,
		},
		{
			MethodName: "StartCommit",
			Handler:    _API_StartCommit_Handler,
		},
		{
			MethodName: "FinishCommit",
			Handler:    _API_FinishCommit_Handler,
		},
		{
			MethodName: "ClearCommit",
			Handler:    _API_ClearCommit_Handler,
		},
		{
			MethodName: "InspectCommit",
			Handler:    _API_InspectCommit_Handler,
		},
		{
			MethodName: "SquashCommit",
			Handler:    _API_SquashCommit_Handler,
		},
		{
			MethodName: "DropCommit",
			Handler:    _API_DropCommit_Handler,
		},
		{
			MethodName: "SquashCommitSet",
			Handler:    _API_SquashCommitSet_Handler,
		},
		{
			MethodName: "DropCommitSet",
			Handler:    _API_DropCommitSet_Handler,
		},
		{
			MethodName: "CreateBranch",
			Handler:    _API_CreateBranch_Handler,
		},
		{
			MethodName: "InspectBranch",
			Handler:    _API_InspectBranch_Handler,
		},
		{
			MethodName: "DeleteBranch",
			Handler:    _API_DeleteBranch_Handler,
		},
		{
			MethodName: "InspectFile",
			Handler:    _API_InspectFile_Handler,
		},
		{
			MethodName: "ActivateAuth",
			Handler:    _API_ActivateAuth_Handler,
		},
		{
			MethodName: "DeleteAll",
			Handler:    _API_DeleteAll_Handler,
		},
		{
			MethodName: "GetFileSet",
			Handler:    _API_GetFileSet_Handler,
		},
		{
			MethodName: "AddFileSet",
			Handler:    _API_AddFileSet_Handler,
		},
		{
			MethodName: "RenewFileSet",
			Handler:    _API_RenewFileSet_Handler,
		},
		{
			MethodName: "ComposeFileSet",
			Handler:    _API_ComposeFileSet_Handler,
		},
		{
			MethodName: "ShardFileSet",
			Handler:    _API_ShardFileSet_Handler,
		},
		{
			MethodName: "CheckStorage",
			Handler:    _API_CheckStorage_Handler,
		},
		{
			MethodName: "PutCache",
			Handler:    _API_PutCache_Handler,
		},
		{
			MethodName: "GetCache",
			Handler:    _API_GetCache_Handler,
		},
		{
			MethodName: "ClearCache",
			Handler:    _API_ClearCache_Handler,
		},
		{
			MethodName: "Egress",
			Handler:    _API_Egress_Handler,
		},
		{
			MethodName: "CreateProject",
			Handler:    _API_CreateProject_Handler,
		},
		{
			MethodName: "InspectProject",
			Handler:    _API_InspectProject_Handler,
		},
		{
			MethodName: "InspectProjectV2",
			Handler:    _API_InspectProjectV2_Handler,
		},
		{
			MethodName: "DeleteProject",
			Handler:    _API_DeleteProject_Handler,
		},
	},
	Streams: []grpc.StreamDesc{
		{
			StreamName:    "ListRepo",
			Handler:       _API_ListRepo_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "ListCommit",
			Handler:       _API_ListCommit_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "SubscribeCommit",
			Handler:       _API_SubscribeCommit_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "InspectCommitSet",
			Handler:       _API_InspectCommitSet_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "ListCommitSet",
			Handler:       _API_ListCommitSet_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "FindCommits",
			Handler:       _API_FindCommits_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "ListBranch",
			Handler:       _API_ListBranch_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "ModifyFile",
			Handler:       _API_ModifyFile_Handler,
			ClientStreams: true,
		},
		{
			StreamName:    "GetFile",
			Handler:       _API_GetFile_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "GetFileTAR",
			Handler:       _API_GetFileTAR_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "ListFile",
			Handler:       _API_ListFile_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "WalkFile",
			Handler:       _API_WalkFile_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "GlobFile",
			Handler:       _API_GlobFile_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "DiffFile",
			Handler:       _API_DiffFile_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "Fsck",
			Handler:       _API_Fsck_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "CreateFileSet",
			Handler:       _API_CreateFileSet_Handler,
			ClientStreams: true,
		},
		{
			StreamName:    "ListTask",
			Handler:       _API_ListTask_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "ListProject",
			Handler:       _API_ListProject_Handler,
			ServerStreams: true,
		},
	},
	Metadata: "pfs/pfs.proto",
}

API_ServiceDesc is the grpc.ServiceDesc for API service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var File_pfs_pfs_proto protoreflect.FileDescriptor

Functions

func DecodeHash

func DecodeHash(hash string) ([]byte, error)

DecodeHash decodes a hash into bytes.

func EncodeHash

func EncodeHash(bytes []byte) string

EncodeHash encodes a hash into a readable format.

func NewHash

func NewHash() hash.Hash

NewHash returns a hash that PFS uses internally to compute checksums.

func RegisterAPIHandler added in v2.8.0

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

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

func RegisterAPIHandlerClient added in v2.8.0

func RegisterAPIHandlerClient(ctx context.Context, mux *runtime.ServeMux, client APIClient) error

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

func RegisterAPIHandlerFromEndpoint added in v2.8.0

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

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

func RegisterAPIHandlerServer added in v2.8.0

func RegisterAPIHandlerServer(ctx context.Context, mux *runtime.ServeMux, server APIServer) error

RegisterAPIHandlerServer registers the http handlers for service API to "mux". UnaryRPC :call APIServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterAPIHandlerFromEndpoint instead.

func RegisterAPIServer

func RegisterAPIServer(s grpc.ServiceRegistrar, srv APIServer)

Types

type APIClient

type APIClient interface {
	// CreateRepo creates a new repo.
	CreateRepo(ctx context.Context, in *CreateRepoRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	// InspectRepo returns info about a repo.
	InspectRepo(ctx context.Context, in *InspectRepoRequest, opts ...grpc.CallOption) (*RepoInfo, error)
	// ListRepo returns info about all repos.
	ListRepo(ctx context.Context, in *ListRepoRequest, opts ...grpc.CallOption) (API_ListRepoClient, error)
	// DeleteRepo deletes a repo.
	DeleteRepo(ctx context.Context, in *DeleteRepoRequest, opts ...grpc.CallOption) (*DeleteRepoResponse, error)
	// DeleteRepos deletes more than one repo at once.  It attempts to
	// delete every repo matching the DeleteReposRequest.  When deleting
	// all repos matching a project, any repos not deletable by the
	// caller will remain, and the project will not be empty; this is
	// not an error.  The returned DeleteReposResponse will contain a
	// list of all actually-deleted repos.
	DeleteRepos(ctx context.Context, in *DeleteReposRequest, opts ...grpc.CallOption) (*DeleteReposResponse, error)
	// StartCommit creates a new write commit from a parent commit.
	StartCommit(ctx context.Context, in *StartCommitRequest, opts ...grpc.CallOption) (*Commit, error)
	// FinishCommit turns a write commit into a read commit.
	FinishCommit(ctx context.Context, in *FinishCommitRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	// ClearCommit removes all data from the commit.
	ClearCommit(ctx context.Context, in *ClearCommitRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	// InspectCommit returns the info about a commit.
	InspectCommit(ctx context.Context, in *InspectCommitRequest, opts ...grpc.CallOption) (*CommitInfo, error)
	// ListCommit returns info about all commits.
	ListCommit(ctx context.Context, in *ListCommitRequest, opts ...grpc.CallOption) (API_ListCommitClient, error)
	// SubscribeCommit subscribes for new commits on a given branch.
	SubscribeCommit(ctx context.Context, in *SubscribeCommitRequest, opts ...grpc.CallOption) (API_SubscribeCommitClient, error)
	// SquashCommit squashes the provided commit into its children.
	SquashCommit(ctx context.Context, in *SquashCommitRequest, opts ...grpc.CallOption) (*SquashCommitResponse, error)
	// DropCommit drops the provided commit.
	DropCommit(ctx context.Context, in *DropCommitRequest, opts ...grpc.CallOption) (*DropCommitResponse, error)
	// InspectCommitSet returns the info about a CommitSet.
	InspectCommitSet(ctx context.Context, in *InspectCommitSetRequest, opts ...grpc.CallOption) (API_InspectCommitSetClient, error)
	// ListCommitSet returns info about all CommitSets.
	ListCommitSet(ctx context.Context, in *ListCommitSetRequest, opts ...grpc.CallOption) (API_ListCommitSetClient, error)
	// SquashCommitSet squashes the commits of a CommitSet into their children.
	// Deprecated: Use SquashCommit instead.
	SquashCommitSet(ctx context.Context, in *SquashCommitSetRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	// DropCommitSet drops the commits of a CommitSet and all data included in the commits.
	// Deprecated: Use DropCommit instead.
	DropCommitSet(ctx context.Context, in *DropCommitSetRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	// FindCommits searches for commits that reference a supplied file being modified in a branch.
	FindCommits(ctx context.Context, in *FindCommitsRequest, opts ...grpc.CallOption) (API_FindCommitsClient, error)
	// CreateBranch creates a new branch.
	CreateBranch(ctx context.Context, in *CreateBranchRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	// InspectBranch returns info about a branch.
	InspectBranch(ctx context.Context, in *InspectBranchRequest, opts ...grpc.CallOption) (*BranchInfo, error)
	// ListBranch returns info about the heads of branches.
	ListBranch(ctx context.Context, in *ListBranchRequest, opts ...grpc.CallOption) (API_ListBranchClient, error)
	// DeleteBranch deletes a branch; note that the commits still exist.
	DeleteBranch(ctx context.Context, in *DeleteBranchRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	// ModifyFile performs modifications on a set of files.
	ModifyFile(ctx context.Context, opts ...grpc.CallOption) (API_ModifyFileClient, error)
	// GetFile returns the contents of a single file
	GetFile(ctx context.Context, in *GetFileRequest, opts ...grpc.CallOption) (API_GetFileClient, error)
	// GetFileTAR returns a TAR stream of the contents matched by the request
	GetFileTAR(ctx context.Context, in *GetFileRequest, opts ...grpc.CallOption) (API_GetFileTARClient, error)
	// InspectFile returns info about a file.
	InspectFile(ctx context.Context, in *InspectFileRequest, opts ...grpc.CallOption) (*FileInfo, error)
	// ListFile returns info about all files.
	ListFile(ctx context.Context, in *ListFileRequest, opts ...grpc.CallOption) (API_ListFileClient, error)
	// WalkFile walks over all the files under a directory, including children of children.
	WalkFile(ctx context.Context, in *WalkFileRequest, opts ...grpc.CallOption) (API_WalkFileClient, error)
	// GlobFile returns info about all files.
	GlobFile(ctx context.Context, in *GlobFileRequest, opts ...grpc.CallOption) (API_GlobFileClient, error)
	// DiffFile returns the differences between 2 paths at 2 commits.
	DiffFile(ctx context.Context, in *DiffFileRequest, opts ...grpc.CallOption) (API_DiffFileClient, error)
	// ActivateAuth creates a role binding for all existing repos
	ActivateAuth(ctx context.Context, in *ActivateAuthRequest, opts ...grpc.CallOption) (*ActivateAuthResponse, error)
	// DeleteAll deletes everything.
	DeleteAll(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*emptypb.Empty, error)
	// Fsck does a file system consistency check for pfs.
	Fsck(ctx context.Context, in *FsckRequest, opts ...grpc.CallOption) (API_FsckClient, error)
	// FileSet API
	// CreateFileSet creates a new file set.
	CreateFileSet(ctx context.Context, opts ...grpc.CallOption) (API_CreateFileSetClient, error)
	// GetFileSet returns a file set with the data from a commit
	GetFileSet(ctx context.Context, in *GetFileSetRequest, opts ...grpc.CallOption) (*CreateFileSetResponse, error)
	// AddFileSet associates a file set with a commit
	AddFileSet(ctx context.Context, in *AddFileSetRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	// RenewFileSet prevents a file set from being deleted for a set amount of time.
	RenewFileSet(ctx context.Context, in *RenewFileSetRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	// ComposeFileSet composes a file set from a list of file sets.
	ComposeFileSet(ctx context.Context, in *ComposeFileSetRequest, opts ...grpc.CallOption) (*CreateFileSetResponse, error)
	ShardFileSet(ctx context.Context, in *ShardFileSetRequest, opts ...grpc.CallOption) (*ShardFileSetResponse, error)
	// CheckStorage runs integrity checks for the storage layer.
	CheckStorage(ctx context.Context, in *CheckStorageRequest, opts ...grpc.CallOption) (*CheckStorageResponse, error)
	PutCache(ctx context.Context, in *PutCacheRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	GetCache(ctx context.Context, in *GetCacheRequest, opts ...grpc.CallOption) (*GetCacheResponse, error)
	ClearCache(ctx context.Context, in *ClearCacheRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	// ListTask lists PFS tasks
	ListTask(ctx context.Context, in *task.ListTaskRequest, opts ...grpc.CallOption) (API_ListTaskClient, error)
	// Egress writes data from a commit to an external system
	Egress(ctx context.Context, in *EgressRequest, opts ...grpc.CallOption) (*EgressResponse, error)
	// Project API
	// CreateProject creates a new project.
	CreateProject(ctx context.Context, in *CreateProjectRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	// InspectProject returns info about a project.
	InspectProject(ctx context.Context, in *InspectProjectRequest, opts ...grpc.CallOption) (*ProjectInfo, error)
	// InspectProjectV2 returns info about and defaults for a project.
	InspectProjectV2(ctx context.Context, in *InspectProjectV2Request, opts ...grpc.CallOption) (*InspectProjectV2Response, error)
	// ListProject returns info about all projects.
	ListProject(ctx context.Context, in *ListProjectRequest, opts ...grpc.CallOption) (API_ListProjectClient, error)
	// DeleteProject deletes a project.
	DeleteProject(ctx context.Context, in *DeleteProjectRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
}

APIClient is the client API for API service.

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

func NewAPIClient

func NewAPIClient(cc grpc.ClientConnInterface) APIClient

type APIServer

type APIServer interface {
	// CreateRepo creates a new repo.
	CreateRepo(context.Context, *CreateRepoRequest) (*emptypb.Empty, error)
	// InspectRepo returns info about a repo.
	InspectRepo(context.Context, *InspectRepoRequest) (*RepoInfo, error)
	// ListRepo returns info about all repos.
	ListRepo(*ListRepoRequest, API_ListRepoServer) error
	// DeleteRepo deletes a repo.
	DeleteRepo(context.Context, *DeleteRepoRequest) (*DeleteRepoResponse, error)
	// DeleteRepos deletes more than one repo at once.  It attempts to
	// delete every repo matching the DeleteReposRequest.  When deleting
	// all repos matching a project, any repos not deletable by the
	// caller will remain, and the project will not be empty; this is
	// not an error.  The returned DeleteReposResponse will contain a
	// list of all actually-deleted repos.
	DeleteRepos(context.Context, *DeleteReposRequest) (*DeleteReposResponse, error)
	// StartCommit creates a new write commit from a parent commit.
	StartCommit(context.Context, *StartCommitRequest) (*Commit, error)
	// FinishCommit turns a write commit into a read commit.
	FinishCommit(context.Context, *FinishCommitRequest) (*emptypb.Empty, error)
	// ClearCommit removes all data from the commit.
	ClearCommit(context.Context, *ClearCommitRequest) (*emptypb.Empty, error)
	// InspectCommit returns the info about a commit.
	InspectCommit(context.Context, *InspectCommitRequest) (*CommitInfo, error)
	// ListCommit returns info about all commits.
	ListCommit(*ListCommitRequest, API_ListCommitServer) error
	// SubscribeCommit subscribes for new commits on a given branch.
	SubscribeCommit(*SubscribeCommitRequest, API_SubscribeCommitServer) error
	// SquashCommit squashes the provided commit into its children.
	SquashCommit(context.Context, *SquashCommitRequest) (*SquashCommitResponse, error)
	// DropCommit drops the provided commit.
	DropCommit(context.Context, *DropCommitRequest) (*DropCommitResponse, error)
	// InspectCommitSet returns the info about a CommitSet.
	InspectCommitSet(*InspectCommitSetRequest, API_InspectCommitSetServer) error
	// ListCommitSet returns info about all CommitSets.
	ListCommitSet(*ListCommitSetRequest, API_ListCommitSetServer) error
	// SquashCommitSet squashes the commits of a CommitSet into their children.
	// Deprecated: Use SquashCommit instead.
	SquashCommitSet(context.Context, *SquashCommitSetRequest) (*emptypb.Empty, error)
	// DropCommitSet drops the commits of a CommitSet and all data included in the commits.
	// Deprecated: Use DropCommit instead.
	DropCommitSet(context.Context, *DropCommitSetRequest) (*emptypb.Empty, error)
	// FindCommits searches for commits that reference a supplied file being modified in a branch.
	FindCommits(*FindCommitsRequest, API_FindCommitsServer) error
	// CreateBranch creates a new branch.
	CreateBranch(context.Context, *CreateBranchRequest) (*emptypb.Empty, error)
	// InspectBranch returns info about a branch.
	InspectBranch(context.Context, *InspectBranchRequest) (*BranchInfo, error)
	// ListBranch returns info about the heads of branches.
	ListBranch(*ListBranchRequest, API_ListBranchServer) error
	// DeleteBranch deletes a branch; note that the commits still exist.
	DeleteBranch(context.Context, *DeleteBranchRequest) (*emptypb.Empty, error)
	// ModifyFile performs modifications on a set of files.
	ModifyFile(API_ModifyFileServer) error
	// GetFile returns the contents of a single file
	GetFile(*GetFileRequest, API_GetFileServer) error
	// GetFileTAR returns a TAR stream of the contents matched by the request
	GetFileTAR(*GetFileRequest, API_GetFileTARServer) error
	// InspectFile returns info about a file.
	InspectFile(context.Context, *InspectFileRequest) (*FileInfo, error)
	// ListFile returns info about all files.
	ListFile(*ListFileRequest, API_ListFileServer) error
	// WalkFile walks over all the files under a directory, including children of children.
	WalkFile(*WalkFileRequest, API_WalkFileServer) error
	// GlobFile returns info about all files.
	GlobFile(*GlobFileRequest, API_GlobFileServer) error
	// DiffFile returns the differences between 2 paths at 2 commits.
	DiffFile(*DiffFileRequest, API_DiffFileServer) error
	// ActivateAuth creates a role binding for all existing repos
	ActivateAuth(context.Context, *ActivateAuthRequest) (*ActivateAuthResponse, error)
	// DeleteAll deletes everything.
	DeleteAll(context.Context, *emptypb.Empty) (*emptypb.Empty, error)
	// Fsck does a file system consistency check for pfs.
	Fsck(*FsckRequest, API_FsckServer) error
	// FileSet API
	// CreateFileSet creates a new file set.
	CreateFileSet(API_CreateFileSetServer) error
	// GetFileSet returns a file set with the data from a commit
	GetFileSet(context.Context, *GetFileSetRequest) (*CreateFileSetResponse, error)
	// AddFileSet associates a file set with a commit
	AddFileSet(context.Context, *AddFileSetRequest) (*emptypb.Empty, error)
	// RenewFileSet prevents a file set from being deleted for a set amount of time.
	RenewFileSet(context.Context, *RenewFileSetRequest) (*emptypb.Empty, error)
	// ComposeFileSet composes a file set from a list of file sets.
	ComposeFileSet(context.Context, *ComposeFileSetRequest) (*CreateFileSetResponse, error)
	ShardFileSet(context.Context, *ShardFileSetRequest) (*ShardFileSetResponse, error)
	// CheckStorage runs integrity checks for the storage layer.
	CheckStorage(context.Context, *CheckStorageRequest) (*CheckStorageResponse, error)
	PutCache(context.Context, *PutCacheRequest) (*emptypb.Empty, error)
	GetCache(context.Context, *GetCacheRequest) (*GetCacheResponse, error)
	ClearCache(context.Context, *ClearCacheRequest) (*emptypb.Empty, error)
	// ListTask lists PFS tasks
	ListTask(*task.ListTaskRequest, API_ListTaskServer) error
	// Egress writes data from a commit to an external system
	Egress(context.Context, *EgressRequest) (*EgressResponse, error)
	// Project API
	// CreateProject creates a new project.
	CreateProject(context.Context, *CreateProjectRequest) (*emptypb.Empty, error)
	// InspectProject returns info about a project.
	InspectProject(context.Context, *InspectProjectRequest) (*ProjectInfo, error)
	// InspectProjectV2 returns info about and defaults for a project.
	InspectProjectV2(context.Context, *InspectProjectV2Request) (*InspectProjectV2Response, error)
	// ListProject returns info about all projects.
	ListProject(*ListProjectRequest, API_ListProjectServer) error
	// DeleteProject deletes a project.
	DeleteProject(context.Context, *DeleteProjectRequest) (*emptypb.Empty, error)
	// contains filtered or unexported methods
}

APIServer is the server API for API service. All implementations must embed UnimplementedAPIServer for forward compatibility

type API_CreateFileSetClient

type API_CreateFileSetClient interface {
	Send(*ModifyFileRequest) error
	CloseAndRecv() (*CreateFileSetResponse, error)
	grpc.ClientStream
}

type API_CreateFileSetServer

type API_CreateFileSetServer interface {
	SendAndClose(*CreateFileSetResponse) error
	Recv() (*ModifyFileRequest, error)
	grpc.ServerStream
}

type API_DiffFileClient

type API_DiffFileClient interface {
	Recv() (*DiffFileResponse, error)
	grpc.ClientStream
}

type API_DiffFileServer

type API_DiffFileServer interface {
	Send(*DiffFileResponse) error
	grpc.ServerStream
}

type API_FindCommitsClient

type API_FindCommitsClient interface {
	Recv() (*FindCommitsResponse, error)
	grpc.ClientStream
}

type API_FindCommitsServer

type API_FindCommitsServer interface {
	Send(*FindCommitsResponse) error
	grpc.ServerStream
}

type API_FsckClient

type API_FsckClient interface {
	Recv() (*FsckResponse, error)
	grpc.ClientStream
}

type API_FsckServer

type API_FsckServer interface {
	Send(*FsckResponse) error
	grpc.ServerStream
}

type API_GetFileClient

type API_GetFileClient interface {
	Recv() (*wrapperspb.BytesValue, error)
	grpc.ClientStream
}

type API_GetFileServer

type API_GetFileServer interface {
	Send(*wrapperspb.BytesValue) error
	grpc.ServerStream
}

type API_GetFileTARClient

type API_GetFileTARClient interface {
	Recv() (*wrapperspb.BytesValue, error)
	grpc.ClientStream
}

type API_GetFileTARServer

type API_GetFileTARServer interface {
	Send(*wrapperspb.BytesValue) error
	grpc.ServerStream
}

type API_GlobFileClient

type API_GlobFileClient interface {
	Recv() (*FileInfo, error)
	grpc.ClientStream
}

type API_GlobFileServer

type API_GlobFileServer interface {
	Send(*FileInfo) error
	grpc.ServerStream
}

type API_InspectCommitSetClient

type API_InspectCommitSetClient interface {
	Recv() (*CommitInfo, error)
	grpc.ClientStream
}

type API_InspectCommitSetServer

type API_InspectCommitSetServer interface {
	Send(*CommitInfo) error
	grpc.ServerStream
}

type API_ListBranchClient

type API_ListBranchClient interface {
	Recv() (*BranchInfo, error)
	grpc.ClientStream
}

type API_ListBranchServer

type API_ListBranchServer interface {
	Send(*BranchInfo) error
	grpc.ServerStream
}

type API_ListCommitClient

type API_ListCommitClient interface {
	Recv() (*CommitInfo, error)
	grpc.ClientStream
}

type API_ListCommitServer

type API_ListCommitServer interface {
	Send(*CommitInfo) error
	grpc.ServerStream
}

type API_ListCommitSetClient

type API_ListCommitSetClient interface {
	Recv() (*CommitSetInfo, error)
	grpc.ClientStream
}

type API_ListCommitSetServer

type API_ListCommitSetServer interface {
	Send(*CommitSetInfo) error
	grpc.ServerStream
}

type API_ListFileClient

type API_ListFileClient interface {
	Recv() (*FileInfo, error)
	grpc.ClientStream
}

type API_ListFileServer

type API_ListFileServer interface {
	Send(*FileInfo) error
	grpc.ServerStream
}

type API_ListProjectClient

type API_ListProjectClient interface {
	Recv() (*ProjectInfo, error)
	grpc.ClientStream
}

type API_ListProjectServer

type API_ListProjectServer interface {
	Send(*ProjectInfo) error
	grpc.ServerStream
}

type API_ListRepoClient

type API_ListRepoClient interface {
	Recv() (*RepoInfo, error)
	grpc.ClientStream
}

type API_ListRepoServer

type API_ListRepoServer interface {
	Send(*RepoInfo) error
	grpc.ServerStream
}

type API_ListTaskClient

type API_ListTaskClient interface {
	Recv() (*task.TaskInfo, error)
	grpc.ClientStream
}

type API_ListTaskServer

type API_ListTaskServer interface {
	Send(*task.TaskInfo) error
	grpc.ServerStream
}

type API_ModifyFileClient

type API_ModifyFileClient interface {
	Send(*ModifyFileRequest) error
	CloseAndRecv() (*emptypb.Empty, error)
	grpc.ClientStream
}

type API_ModifyFileServer

type API_ModifyFileServer interface {
	SendAndClose(*emptypb.Empty) error
	Recv() (*ModifyFileRequest, error)
	grpc.ServerStream
}

type API_SubscribeCommitClient

type API_SubscribeCommitClient interface {
	Recv() (*CommitInfo, error)
	grpc.ClientStream
}

type API_SubscribeCommitServer

type API_SubscribeCommitServer interface {
	Send(*CommitInfo) error
	grpc.ServerStream
}

type API_WalkFileClient

type API_WalkFileClient interface {
	Recv() (*FileInfo, error)
	grpc.ClientStream
}

type API_WalkFileServer

type API_WalkFileServer interface {
	Send(*FileInfo) error
	grpc.ServerStream
}

type ActivateAuthRequest

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

func (*ActivateAuthRequest) Descriptor deprecated

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

Deprecated: Use ActivateAuthRequest.ProtoReflect.Descriptor instead.

func (*ActivateAuthRequest) MarshalLogObject

func (x *ActivateAuthRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ActivateAuthRequest) ProtoMessage

func (*ActivateAuthRequest) ProtoMessage()

func (*ActivateAuthRequest) ProtoReflect added in v2.7.0

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

func (*ActivateAuthRequest) Reset

func (x *ActivateAuthRequest) Reset()

func (*ActivateAuthRequest) String

func (x *ActivateAuthRequest) String() string

func (*ActivateAuthRequest) Validate added in v2.8.0

func (m *ActivateAuthRequest) Validate() error

Validate checks the field values on ActivateAuthRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ActivateAuthRequest) ValidateAll added in v2.8.0

func (m *ActivateAuthRequest) ValidateAll() error

ValidateAll checks the field values on ActivateAuthRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ActivateAuthRequestMultiError, or nil if none found.

type ActivateAuthRequestMultiError added in v2.8.0

type ActivateAuthRequestMultiError []error

ActivateAuthRequestMultiError is an error wrapping multiple validation errors returned by ActivateAuthRequest.ValidateAll() if the designated constraints aren't met.

func (ActivateAuthRequestMultiError) AllErrors added in v2.8.0

func (m ActivateAuthRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ActivateAuthRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type ActivateAuthRequestValidationError added in v2.8.0

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

ActivateAuthRequestValidationError is the validation error returned by ActivateAuthRequest.Validate if the designated constraints aren't met.

func (ActivateAuthRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ActivateAuthRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ActivateAuthRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (ActivateAuthRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (ActivateAuthRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (ActivateAuthRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type ActivateAuthResponse

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

func (*ActivateAuthResponse) Descriptor deprecated

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

Deprecated: Use ActivateAuthResponse.ProtoReflect.Descriptor instead.

func (*ActivateAuthResponse) MarshalLogObject

func (x *ActivateAuthResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ActivateAuthResponse) ProtoMessage

func (*ActivateAuthResponse) ProtoMessage()

func (*ActivateAuthResponse) ProtoReflect added in v2.7.0

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

func (*ActivateAuthResponse) Reset

func (x *ActivateAuthResponse) Reset()

func (*ActivateAuthResponse) String

func (x *ActivateAuthResponse) String() string

func (*ActivateAuthResponse) Validate added in v2.8.0

func (m *ActivateAuthResponse) Validate() error

Validate checks the field values on ActivateAuthResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ActivateAuthResponse) ValidateAll added in v2.8.0

func (m *ActivateAuthResponse) ValidateAll() error

ValidateAll checks the field values on ActivateAuthResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ActivateAuthResponseMultiError, or nil if none found.

type ActivateAuthResponseMultiError added in v2.8.0

type ActivateAuthResponseMultiError []error

ActivateAuthResponseMultiError is an error wrapping multiple validation errors returned by ActivateAuthResponse.ValidateAll() if the designated constraints aren't met.

func (ActivateAuthResponseMultiError) AllErrors added in v2.8.0

func (m ActivateAuthResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ActivateAuthResponseMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type ActivateAuthResponseValidationError added in v2.8.0

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

ActivateAuthResponseValidationError is the validation error returned by ActivateAuthResponse.Validate if the designated constraints aren't met.

func (ActivateAuthResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ActivateAuthResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ActivateAuthResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (ActivateAuthResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (ActivateAuthResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (ActivateAuthResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type AddFile

type AddFile struct {
	Path  string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	Datum string `protobuf:"bytes,2,opt,name=datum,proto3" json:"datum,omitempty"`
	// Types that are assignable to Source:
	//
	//	*AddFile_Raw
	//	*AddFile_Url
	Source isAddFile_Source `protobuf_oneof:"source"`
	// contains filtered or unexported fields
}

func (*AddFile) Descriptor deprecated

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

Deprecated: Use AddFile.ProtoReflect.Descriptor instead.

func (*AddFile) GetDatum

func (x *AddFile) GetDatum() string

func (*AddFile) GetPath

func (x *AddFile) GetPath() string

func (*AddFile) GetRaw

func (x *AddFile) GetRaw() *wrapperspb.BytesValue

func (*AddFile) GetSource

func (m *AddFile) GetSource() isAddFile_Source

func (*AddFile) GetUrl

func (x *AddFile) GetUrl() *AddFile_URLSource

func (*AddFile) MarshalLogObject

func (x *AddFile) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*AddFile) ProtoMessage

func (*AddFile) ProtoMessage()

func (*AddFile) ProtoReflect added in v2.7.0

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

func (*AddFile) Reset

func (x *AddFile) Reset()

func (*AddFile) String

func (x *AddFile) String() string

func (*AddFile) Validate added in v2.8.0

func (m *AddFile) Validate() error

Validate checks the field values on AddFile with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*AddFile) ValidateAll added in v2.8.0

func (m *AddFile) ValidateAll() error

ValidateAll checks the field values on AddFile with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in AddFileMultiError, or nil if none found.

type AddFileMultiError added in v2.8.0

type AddFileMultiError []error

AddFileMultiError is an error wrapping multiple validation errors returned by AddFile.ValidateAll() if the designated constraints aren't met.

func (AddFileMultiError) AllErrors added in v2.8.0

func (m AddFileMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AddFileMultiError) Error added in v2.8.0

func (m AddFileMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type AddFileSetRequest

type AddFileSetRequest struct {
	Commit    *Commit `protobuf:"bytes,1,opt,name=commit,proto3" json:"commit,omitempty"`
	FileSetId string  `protobuf:"bytes,2,opt,name=file_set_id,json=fileSetId,proto3" json:"file_set_id,omitempty"`
	// contains filtered or unexported fields
}

func (*AddFileSetRequest) Descriptor deprecated

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

Deprecated: Use AddFileSetRequest.ProtoReflect.Descriptor instead.

func (*AddFileSetRequest) GetCommit

func (x *AddFileSetRequest) GetCommit() *Commit

func (*AddFileSetRequest) GetFileSetId

func (x *AddFileSetRequest) GetFileSetId() string

func (*AddFileSetRequest) MarshalLogObject

func (x *AddFileSetRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*AddFileSetRequest) ProtoMessage

func (*AddFileSetRequest) ProtoMessage()

func (*AddFileSetRequest) ProtoReflect added in v2.7.0

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

func (*AddFileSetRequest) Reset

func (x *AddFileSetRequest) Reset()

func (*AddFileSetRequest) String

func (x *AddFileSetRequest) String() string

func (*AddFileSetRequest) Validate added in v2.8.0

func (m *AddFileSetRequest) Validate() error

Validate checks the field values on AddFileSetRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*AddFileSetRequest) ValidateAll added in v2.8.0

func (m *AddFileSetRequest) ValidateAll() error

ValidateAll checks the field values on AddFileSetRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in AddFileSetRequestMultiError, or nil if none found.

type AddFileSetRequestMultiError added in v2.8.0

type AddFileSetRequestMultiError []error

AddFileSetRequestMultiError is an error wrapping multiple validation errors returned by AddFileSetRequest.ValidateAll() if the designated constraints aren't met.

func (AddFileSetRequestMultiError) AllErrors added in v2.8.0

func (m AddFileSetRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AddFileSetRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type AddFileSetRequestValidationError added in v2.8.0

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

AddFileSetRequestValidationError is the validation error returned by AddFileSetRequest.Validate if the designated constraints aren't met.

func (AddFileSetRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (AddFileSetRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (AddFileSetRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (AddFileSetRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (AddFileSetRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (AddFileSetRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type AddFileValidationError added in v2.8.0

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

AddFileValidationError is the validation error returned by AddFile.Validate if the designated constraints aren't met.

func (AddFileValidationError) Cause added in v2.8.0

func (e AddFileValidationError) Cause() error

Cause function returns cause value.

func (AddFileValidationError) Error added in v2.8.0

func (e AddFileValidationError) Error() string

Error satisfies the builtin error interface

func (AddFileValidationError) ErrorName added in v2.8.0

func (e AddFileValidationError) ErrorName() string

ErrorName returns error name.

func (AddFileValidationError) Field added in v2.8.0

func (e AddFileValidationError) Field() string

Field function returns field value.

func (AddFileValidationError) Key added in v2.8.0

func (e AddFileValidationError) Key() bool

Key function returns key value.

func (AddFileValidationError) Reason added in v2.8.0

func (e AddFileValidationError) Reason() string

Reason function returns reason value.

type AddFile_Raw

type AddFile_Raw struct {
	Raw *wrapperspb.BytesValue `protobuf:"bytes,3,opt,name=raw,proto3,oneof"`
}

type AddFile_URLSource

type AddFile_URLSource struct {
	URL         string `protobuf:"bytes,1,opt,name=URL,proto3" json:"URL,omitempty"`
	Recursive   bool   `protobuf:"varint,2,opt,name=recursive,proto3" json:"recursive,omitempty"`
	Concurrency uint32 `protobuf:"varint,3,opt,name=concurrency,proto3" json:"concurrency,omitempty"`
	// contains filtered or unexported fields
}

func (*AddFile_URLSource) Descriptor deprecated

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

Deprecated: Use AddFile_URLSource.ProtoReflect.Descriptor instead.

func (*AddFile_URLSource) GetConcurrency

func (x *AddFile_URLSource) GetConcurrency() uint32

func (*AddFile_URLSource) GetRecursive

func (x *AddFile_URLSource) GetRecursive() bool

func (*AddFile_URLSource) GetURL

func (x *AddFile_URLSource) GetURL() string

func (*AddFile_URLSource) MarshalLogObject

func (x *AddFile_URLSource) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*AddFile_URLSource) ProtoMessage

func (*AddFile_URLSource) ProtoMessage()

func (*AddFile_URLSource) ProtoReflect added in v2.7.0

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

func (*AddFile_URLSource) Reset

func (x *AddFile_URLSource) Reset()

func (*AddFile_URLSource) String

func (x *AddFile_URLSource) String() string

func (*AddFile_URLSource) Validate added in v2.8.0

func (m *AddFile_URLSource) Validate() error

Validate checks the field values on AddFile_URLSource with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*AddFile_URLSource) ValidateAll added in v2.8.0

func (m *AddFile_URLSource) ValidateAll() error

ValidateAll checks the field values on AddFile_URLSource with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in AddFile_URLSourceMultiError, or nil if none found.

type AddFile_URLSourceMultiError added in v2.8.0

type AddFile_URLSourceMultiError []error

AddFile_URLSourceMultiError is an error wrapping multiple validation errors returned by AddFile_URLSource.ValidateAll() if the designated constraints aren't met.

func (AddFile_URLSourceMultiError) AllErrors added in v2.8.0

func (m AddFile_URLSourceMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AddFile_URLSourceMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type AddFile_URLSourceValidationError added in v2.8.0

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

AddFile_URLSourceValidationError is the validation error returned by AddFile_URLSource.Validate if the designated constraints aren't met.

func (AddFile_URLSourceValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (AddFile_URLSourceValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (AddFile_URLSourceValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (AddFile_URLSourceValidationError) Field added in v2.8.0

Field function returns field value.

func (AddFile_URLSourceValidationError) Key added in v2.8.0

Key function returns key value.

func (AddFile_URLSourceValidationError) Reason added in v2.8.0

Reason function returns reason value.

type AddFile_Url

type AddFile_Url struct {
	Url *AddFile_URLSource `protobuf:"bytes,4,opt,name=url,proto3,oneof"`
}

type AuthInfo

type AuthInfo struct {

	// The callers access level to the relevant resource. These are very granular
	// permissions - for the end user it makes sense to show them the roles
	// they have instead.
	Permissions []auth.Permission `protobuf:"varint,1,rep,packed,name=permissions,proto3,enum=auth_v2.Permission" json:"permissions,omitempty"`
	// The caller's roles on the relevant resource. This includes inherited
	// roles from the cluster, project, group membership, etc.
	Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
	// contains filtered or unexported fields
}

AuthInfo includes the caller's access scope for a resource, and is returned by services like ListRepo, InspectRepo, and ListProject, but is not persisted in the database. It's used by the Pachyderm dashboard to render repo access appropriately. To set a user's auth scope for a resource, use the Pachyderm Auth API (in src/auth/auth.proto)

func (*AuthInfo) Descriptor deprecated

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

Deprecated: Use AuthInfo.ProtoReflect.Descriptor instead.

func (*AuthInfo) GetPermissions

func (x *AuthInfo) GetPermissions() []auth.Permission

func (*AuthInfo) GetRoles

func (x *AuthInfo) GetRoles() []string

func (*AuthInfo) MarshalLogObject

func (x *AuthInfo) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*AuthInfo) ProtoMessage

func (*AuthInfo) ProtoMessage()

func (*AuthInfo) ProtoReflect added in v2.7.0

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

func (*AuthInfo) Reset

func (x *AuthInfo) Reset()

func (*AuthInfo) String

func (x *AuthInfo) String() string

func (*AuthInfo) Validate added in v2.8.0

func (m *AuthInfo) Validate() error

Validate checks the field values on AuthInfo with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*AuthInfo) ValidateAll added in v2.8.0

func (m *AuthInfo) ValidateAll() error

ValidateAll checks the field values on AuthInfo with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in AuthInfoMultiError, or nil if none found.

type AuthInfoMultiError added in v2.8.0

type AuthInfoMultiError []error

AuthInfoMultiError is an error wrapping multiple validation errors returned by AuthInfo.ValidateAll() if the designated constraints aren't met.

func (AuthInfoMultiError) AllErrors added in v2.8.0

func (m AuthInfoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AuthInfoMultiError) Error added in v2.8.0

func (m AuthInfoMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type AuthInfoValidationError added in v2.8.0

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

AuthInfoValidationError is the validation error returned by AuthInfo.Validate if the designated constraints aren't met.

func (AuthInfoValidationError) Cause added in v2.8.0

func (e AuthInfoValidationError) Cause() error

Cause function returns cause value.

func (AuthInfoValidationError) Error added in v2.8.0

func (e AuthInfoValidationError) Error() string

Error satisfies the builtin error interface

func (AuthInfoValidationError) ErrorName added in v2.8.0

func (e AuthInfoValidationError) ErrorName() string

ErrorName returns error name.

func (AuthInfoValidationError) Field added in v2.8.0

func (e AuthInfoValidationError) Field() string

Field function returns field value.

func (AuthInfoValidationError) Key added in v2.8.0

func (e AuthInfoValidationError) Key() bool

Key function returns key value.

func (AuthInfoValidationError) Reason added in v2.8.0

func (e AuthInfoValidationError) Reason() string

Reason function returns reason value.

type Branch

type Branch struct {
	Repo *Repo  `protobuf:"bytes,1,opt,name=repo,proto3" json:"repo,omitempty"`
	Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*Branch) Descriptor deprecated

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

Deprecated: Use Branch.ProtoReflect.Descriptor instead.

func (*Branch) GetName

func (x *Branch) GetName() string

func (*Branch) GetRepo

func (x *Branch) GetRepo() *Repo

func (*Branch) Key added in v2.8.0

func (b *Branch) Key() string

func (*Branch) MarshalLogObject

func (x *Branch) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*Branch) NewCommit

func (b *Branch) NewCommit(id string) *Commit

func (*Branch) ProtoMessage

func (*Branch) ProtoMessage()

func (*Branch) ProtoReflect added in v2.7.0

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

func (*Branch) Reset

func (x *Branch) Reset()

func (*Branch) String

func (b *Branch) String() string

func (*Branch) Validate added in v2.8.0

func (m *Branch) Validate() error

Validate checks the field values on Branch with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Branch) ValidateAll added in v2.8.0

func (m *Branch) ValidateAll() error

ValidateAll checks the field values on Branch with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in BranchMultiError, or nil if none found.

type BranchInfo

type BranchInfo struct {
	Branch           *Branch   `protobuf:"bytes,1,opt,name=branch,proto3" json:"branch,omitempty"`
	Head             *Commit   `protobuf:"bytes,2,opt,name=head,proto3" json:"head,omitempty"`
	Provenance       []*Branch `protobuf:"bytes,3,rep,name=provenance,proto3" json:"provenance,omitempty"`
	Subvenance       []*Branch `protobuf:"bytes,4,rep,name=subvenance,proto3" json:"subvenance,omitempty"`
	DirectProvenance []*Branch `protobuf:"bytes,5,rep,name=direct_provenance,json=directProvenance,proto3" json:"direct_provenance,omitempty"`
	Trigger          *Trigger  `protobuf:"bytes,6,opt,name=trigger,proto3" json:"trigger,omitempty"`
	// contains filtered or unexported fields
}

func (*BranchInfo) Descriptor deprecated

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

Deprecated: Use BranchInfo.ProtoReflect.Descriptor instead.

func (*BranchInfo) GetBranch

func (x *BranchInfo) GetBranch() *Branch

func (*BranchInfo) GetDirectProvenance

func (x *BranchInfo) GetDirectProvenance() []*Branch

func (*BranchInfo) GetHead

func (x *BranchInfo) GetHead() *Commit

func (*BranchInfo) GetProvenance

func (x *BranchInfo) GetProvenance() []*Branch

func (*BranchInfo) GetSubvenance

func (x *BranchInfo) GetSubvenance() []*Branch

func (*BranchInfo) GetTrigger

func (x *BranchInfo) GetTrigger() *Trigger

func (*BranchInfo) MarshalLogObject

func (x *BranchInfo) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*BranchInfo) ProtoMessage

func (*BranchInfo) ProtoMessage()

func (*BranchInfo) ProtoReflect added in v2.7.0

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

func (*BranchInfo) Reset

func (x *BranchInfo) Reset()

func (*BranchInfo) String

func (x *BranchInfo) String() string

func (*BranchInfo) Validate added in v2.8.0

func (m *BranchInfo) Validate() error

Validate checks the field values on BranchInfo with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*BranchInfo) ValidateAll added in v2.8.0

func (m *BranchInfo) ValidateAll() error

ValidateAll checks the field values on BranchInfo with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in BranchInfoMultiError, or nil if none found.

type BranchInfoMultiError added in v2.8.0

type BranchInfoMultiError []error

BranchInfoMultiError is an error wrapping multiple validation errors returned by BranchInfo.ValidateAll() if the designated constraints aren't met.

func (BranchInfoMultiError) AllErrors added in v2.8.0

func (m BranchInfoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (BranchInfoMultiError) Error added in v2.8.0

func (m BranchInfoMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type BranchInfoValidationError added in v2.8.0

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

BranchInfoValidationError is the validation error returned by BranchInfo.Validate if the designated constraints aren't met.

func (BranchInfoValidationError) Cause added in v2.8.0

func (e BranchInfoValidationError) Cause() error

Cause function returns cause value.

func (BranchInfoValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (BranchInfoValidationError) ErrorName added in v2.8.0

func (e BranchInfoValidationError) ErrorName() string

ErrorName returns error name.

func (BranchInfoValidationError) Field added in v2.8.0

Field function returns field value.

func (BranchInfoValidationError) Key added in v2.8.0

Key function returns key value.

func (BranchInfoValidationError) Reason added in v2.8.0

func (e BranchInfoValidationError) Reason() string

Reason function returns reason value.

type BranchMultiError added in v2.8.0

type BranchMultiError []error

BranchMultiError is an error wrapping multiple validation errors returned by Branch.ValidateAll() if the designated constraints aren't met.

func (BranchMultiError) AllErrors added in v2.8.0

func (m BranchMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (BranchMultiError) Error added in v2.8.0

func (m BranchMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type BranchValidationError added in v2.8.0

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

BranchValidationError is the validation error returned by Branch.Validate if the designated constraints aren't met.

func (BranchValidationError) Cause added in v2.8.0

func (e BranchValidationError) Cause() error

Cause function returns cause value.

func (BranchValidationError) Error added in v2.8.0

func (e BranchValidationError) Error() string

Error satisfies the builtin error interface

func (BranchValidationError) ErrorName added in v2.8.0

func (e BranchValidationError) ErrorName() string

ErrorName returns error name.

func (BranchValidationError) Field added in v2.8.0

func (e BranchValidationError) Field() string

Field function returns field value.

func (BranchValidationError) Key added in v2.8.0

func (e BranchValidationError) Key() bool

Key function returns key value.

func (BranchValidationError) Reason added in v2.8.0

func (e BranchValidationError) Reason() string

Reason function returns reason value.

type CheckStorageRequest

type CheckStorageRequest struct {
	ReadChunkData bool   `protobuf:"varint,1,opt,name=read_chunk_data,json=readChunkData,proto3" json:"read_chunk_data,omitempty"`
	ChunkBegin    []byte `protobuf:"bytes,2,opt,name=chunk_begin,json=chunkBegin,proto3" json:"chunk_begin,omitempty"`
	ChunkEnd      []byte `protobuf:"bytes,3,opt,name=chunk_end,json=chunkEnd,proto3" json:"chunk_end,omitempty"`
	// contains filtered or unexported fields
}

func (*CheckStorageRequest) Descriptor deprecated

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

Deprecated: Use CheckStorageRequest.ProtoReflect.Descriptor instead.

func (*CheckStorageRequest) GetChunkBegin

func (x *CheckStorageRequest) GetChunkBegin() []byte

func (*CheckStorageRequest) GetChunkEnd

func (x *CheckStorageRequest) GetChunkEnd() []byte

func (*CheckStorageRequest) GetReadChunkData

func (x *CheckStorageRequest) GetReadChunkData() bool

func (*CheckStorageRequest) MarshalLogObject

func (x *CheckStorageRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*CheckStorageRequest) ProtoMessage

func (*CheckStorageRequest) ProtoMessage()

func (*CheckStorageRequest) ProtoReflect added in v2.7.0

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

func (*CheckStorageRequest) Reset

func (x *CheckStorageRequest) Reset()

func (*CheckStorageRequest) String

func (x *CheckStorageRequest) String() string

func (*CheckStorageRequest) Validate added in v2.8.0

func (m *CheckStorageRequest) Validate() error

Validate checks the field values on CheckStorageRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CheckStorageRequest) ValidateAll added in v2.8.0

func (m *CheckStorageRequest) ValidateAll() error

ValidateAll checks the field values on CheckStorageRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CheckStorageRequestMultiError, or nil if none found.

type CheckStorageRequestMultiError added in v2.8.0

type CheckStorageRequestMultiError []error

CheckStorageRequestMultiError is an error wrapping multiple validation errors returned by CheckStorageRequest.ValidateAll() if the designated constraints aren't met.

func (CheckStorageRequestMultiError) AllErrors added in v2.8.0

func (m CheckStorageRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CheckStorageRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type CheckStorageRequestValidationError added in v2.8.0

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

CheckStorageRequestValidationError is the validation error returned by CheckStorageRequest.Validate if the designated constraints aren't met.

func (CheckStorageRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (CheckStorageRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (CheckStorageRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (CheckStorageRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (CheckStorageRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (CheckStorageRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type CheckStorageResponse

type CheckStorageResponse struct {
	ChunkObjectCount int64 `protobuf:"varint,1,opt,name=chunk_object_count,json=chunkObjectCount,proto3" json:"chunk_object_count,omitempty"`
	// contains filtered or unexported fields
}

func (*CheckStorageResponse) Descriptor deprecated

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

Deprecated: Use CheckStorageResponse.ProtoReflect.Descriptor instead.

func (*CheckStorageResponse) GetChunkObjectCount

func (x *CheckStorageResponse) GetChunkObjectCount() int64

func (*CheckStorageResponse) MarshalLogObject

func (x *CheckStorageResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*CheckStorageResponse) ProtoMessage

func (*CheckStorageResponse) ProtoMessage()

func (*CheckStorageResponse) ProtoReflect added in v2.7.0

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

func (*CheckStorageResponse) Reset

func (x *CheckStorageResponse) Reset()

func (*CheckStorageResponse) String

func (x *CheckStorageResponse) String() string

func (*CheckStorageResponse) Validate added in v2.8.0

func (m *CheckStorageResponse) Validate() error

Validate checks the field values on CheckStorageResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CheckStorageResponse) ValidateAll added in v2.8.0

func (m *CheckStorageResponse) ValidateAll() error

ValidateAll checks the field values on CheckStorageResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CheckStorageResponseMultiError, or nil if none found.

type CheckStorageResponseMultiError added in v2.8.0

type CheckStorageResponseMultiError []error

CheckStorageResponseMultiError is an error wrapping multiple validation errors returned by CheckStorageResponse.ValidateAll() if the designated constraints aren't met.

func (CheckStorageResponseMultiError) AllErrors added in v2.8.0

func (m CheckStorageResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CheckStorageResponseMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type CheckStorageResponseValidationError added in v2.8.0

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

CheckStorageResponseValidationError is the validation error returned by CheckStorageResponse.Validate if the designated constraints aren't met.

func (CheckStorageResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (CheckStorageResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (CheckStorageResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (CheckStorageResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (CheckStorageResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (CheckStorageResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type ClearCacheRequest

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

func (*ClearCacheRequest) Descriptor deprecated

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

Deprecated: Use ClearCacheRequest.ProtoReflect.Descriptor instead.

func (*ClearCacheRequest) GetTagPrefix

func (x *ClearCacheRequest) GetTagPrefix() string

func (*ClearCacheRequest) MarshalLogObject

func (x *ClearCacheRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ClearCacheRequest) ProtoMessage

func (*ClearCacheRequest) ProtoMessage()

func (*ClearCacheRequest) ProtoReflect added in v2.7.0

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

func (*ClearCacheRequest) Reset

func (x *ClearCacheRequest) Reset()

func (*ClearCacheRequest) String

func (x *ClearCacheRequest) String() string

func (*ClearCacheRequest) Validate added in v2.8.0

func (m *ClearCacheRequest) Validate() error

Validate checks the field values on ClearCacheRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ClearCacheRequest) ValidateAll added in v2.8.0

func (m *ClearCacheRequest) ValidateAll() error

ValidateAll checks the field values on ClearCacheRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ClearCacheRequestMultiError, or nil if none found.

type ClearCacheRequestMultiError added in v2.8.0

type ClearCacheRequestMultiError []error

ClearCacheRequestMultiError is an error wrapping multiple validation errors returned by ClearCacheRequest.ValidateAll() if the designated constraints aren't met.

func (ClearCacheRequestMultiError) AllErrors added in v2.8.0

func (m ClearCacheRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ClearCacheRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type ClearCacheRequestValidationError added in v2.8.0

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

ClearCacheRequestValidationError is the validation error returned by ClearCacheRequest.Validate if the designated constraints aren't met.

func (ClearCacheRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ClearCacheRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ClearCacheRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (ClearCacheRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (ClearCacheRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (ClearCacheRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type ClearCommitRequest

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

func (*ClearCommitRequest) Descriptor deprecated

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

Deprecated: Use ClearCommitRequest.ProtoReflect.Descriptor instead.

func (*ClearCommitRequest) GetCommit

func (x *ClearCommitRequest) GetCommit() *Commit

func (*ClearCommitRequest) MarshalLogObject

func (x *ClearCommitRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ClearCommitRequest) ProtoMessage

func (*ClearCommitRequest) ProtoMessage()

func (*ClearCommitRequest) ProtoReflect added in v2.7.0

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

func (*ClearCommitRequest) Reset

func (x *ClearCommitRequest) Reset()

func (*ClearCommitRequest) String

func (x *ClearCommitRequest) String() string

func (*ClearCommitRequest) Validate added in v2.8.0

func (m *ClearCommitRequest) Validate() error

Validate checks the field values on ClearCommitRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ClearCommitRequest) ValidateAll added in v2.8.0

func (m *ClearCommitRequest) ValidateAll() error

ValidateAll checks the field values on ClearCommitRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ClearCommitRequestMultiError, or nil if none found.

type ClearCommitRequestMultiError added in v2.8.0

type ClearCommitRequestMultiError []error

ClearCommitRequestMultiError is an error wrapping multiple validation errors returned by ClearCommitRequest.ValidateAll() if the designated constraints aren't met.

func (ClearCommitRequestMultiError) AllErrors added in v2.8.0

func (m ClearCommitRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ClearCommitRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type ClearCommitRequestValidationError added in v2.8.0

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

ClearCommitRequestValidationError is the validation error returned by ClearCommitRequest.Validate if the designated constraints aren't met.

func (ClearCommitRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ClearCommitRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ClearCommitRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (ClearCommitRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (ClearCommitRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (ClearCommitRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type Commit

type Commit struct {
	Repo *Repo  `protobuf:"bytes,3,opt,name=repo,proto3" json:"repo,omitempty"`
	Id   string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	// only used by the client
	Branch *Branch `protobuf:"bytes,1,opt,name=branch,proto3" json:"branch,omitempty"`
	// contains filtered or unexported fields
}

Commit is a reference to a commit (e.g. the collection of branches and the collection of currently-open commits in etcd are collections of Commit protos)

func (*Commit) AccessRepo

func (c *Commit) AccessRepo() *Repo

TODO(provenance): there's a concern client code will unknowningly call GetRepo() when it shouldn't

func (*Commit) Descriptor deprecated

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

Deprecated: Use Commit.ProtoReflect.Descriptor instead.

func (*Commit) GetBranch

func (x *Commit) GetBranch() *Branch

func (*Commit) GetId added in v2.7.0

func (x *Commit) GetId() string

func (*Commit) GetRepo

func (x *Commit) GetRepo() *Repo

func (*Commit) Key added in v2.8.0

func (c *Commit) Key() string

func (*Commit) MarshalLogObject

func (x *Commit) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*Commit) NewFile

func (c *Commit) NewFile(path string) *File

func (*Commit) ProtoMessage

func (*Commit) ProtoMessage()

func (*Commit) ProtoReflect added in v2.7.0

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

func (*Commit) Reset

func (x *Commit) Reset()

func (*Commit) String

func (c *Commit) String() string

func (*Commit) Validate added in v2.8.0

func (m *Commit) Validate() error

Validate checks the field values on Commit with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Commit) ValidateAll added in v2.8.0

func (m *Commit) ValidateAll() error

ValidateAll checks the field values on Commit with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CommitMultiError, or nil if none found.

type CommitInfo

type CommitInfo struct {
	Commit *Commit       `protobuf:"bytes,1,opt,name=commit,proto3" json:"commit,omitempty"`
	Origin *CommitOrigin `protobuf:"bytes,2,opt,name=origin,proto3" json:"origin,omitempty"`
	// description is a user-provided script describing this commit
	Description         string                 `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	ParentCommit        *Commit                `protobuf:"bytes,4,opt,name=parent_commit,json=parentCommit,proto3" json:"parent_commit,omitempty"`
	ChildCommits        []*Commit              `protobuf:"bytes,5,rep,name=child_commits,json=childCommits,proto3" json:"child_commits,omitempty"`
	Started             *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=started,proto3" json:"started,omitempty"`
	Finishing           *timestamppb.Timestamp `protobuf:"bytes,7,opt,name=finishing,proto3" json:"finishing,omitempty"`
	Finished            *timestamppb.Timestamp `protobuf:"bytes,8,opt,name=finished,proto3" json:"finished,omitempty"`
	DirectProvenance    []*Commit              `protobuf:"bytes,13,rep,name=direct_provenance,json=directProvenance,proto3" json:"direct_provenance,omitempty"`
	Error               string                 `protobuf:"bytes,10,opt,name=error,proto3" json:"error,omitempty"`
	SizeBytesUpperBound int64                  `protobuf:"varint,11,opt,name=size_bytes_upper_bound,json=sizeBytesUpperBound,proto3" json:"size_bytes_upper_bound,omitempty"`
	Details             *CommitInfo_Details    `protobuf:"bytes,12,opt,name=details,proto3" json:"details,omitempty"`
	// contains filtered or unexported fields
}

CommitInfo is the main data structure representing a commit in etcd

func (*CommitInfo) Descriptor deprecated

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

Deprecated: Use CommitInfo.ProtoReflect.Descriptor instead.

func (*CommitInfo) GetChildCommits

func (x *CommitInfo) GetChildCommits() []*Commit

func (*CommitInfo) GetCommit

func (x *CommitInfo) GetCommit() *Commit

func (*CommitInfo) GetDescription

func (x *CommitInfo) GetDescription() string

func (*CommitInfo) GetDetails

func (x *CommitInfo) GetDetails() *CommitInfo_Details

func (*CommitInfo) GetDirectProvenance

func (x *CommitInfo) GetDirectProvenance() []*Commit

func (*CommitInfo) GetError

func (x *CommitInfo) GetError() string

func (*CommitInfo) GetFinished

func (x *CommitInfo) GetFinished() *timestamppb.Timestamp

func (*CommitInfo) GetFinishing

func (x *CommitInfo) GetFinishing() *timestamppb.Timestamp

func (*CommitInfo) GetOrigin

func (x *CommitInfo) GetOrigin() *CommitOrigin

func (*CommitInfo) GetParentCommit

func (x *CommitInfo) GetParentCommit() *Commit

func (*CommitInfo) GetSizeBytesUpperBound

func (x *CommitInfo) GetSizeBytesUpperBound() int64

func (*CommitInfo) GetStarted

func (x *CommitInfo) GetStarted() *timestamppb.Timestamp

func (*CommitInfo) MarshalLogObject

func (x *CommitInfo) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*CommitInfo) ProtoMessage

func (*CommitInfo) ProtoMessage()

func (*CommitInfo) ProtoReflect added in v2.7.0

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

func (*CommitInfo) Reset

func (x *CommitInfo) Reset()

func (*CommitInfo) String

func (x *CommitInfo) String() string

func (*CommitInfo) Validate added in v2.8.0

func (m *CommitInfo) Validate() error

Validate checks the field values on CommitInfo with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CommitInfo) ValidateAll added in v2.8.0

func (m *CommitInfo) ValidateAll() error

ValidateAll checks the field values on CommitInfo with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CommitInfoMultiError, or nil if none found.

type CommitInfoMultiError added in v2.8.0

type CommitInfoMultiError []error

CommitInfoMultiError is an error wrapping multiple validation errors returned by CommitInfo.ValidateAll() if the designated constraints aren't met.

func (CommitInfoMultiError) AllErrors added in v2.8.0

func (m CommitInfoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CommitInfoMultiError) Error added in v2.8.0

func (m CommitInfoMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type CommitInfoValidationError added in v2.8.0

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

CommitInfoValidationError is the validation error returned by CommitInfo.Validate if the designated constraints aren't met.

func (CommitInfoValidationError) Cause added in v2.8.0

func (e CommitInfoValidationError) Cause() error

Cause function returns cause value.

func (CommitInfoValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (CommitInfoValidationError) ErrorName added in v2.8.0

func (e CommitInfoValidationError) ErrorName() string

ErrorName returns error name.

func (CommitInfoValidationError) Field added in v2.8.0

Field function returns field value.

func (CommitInfoValidationError) Key added in v2.8.0

Key function returns key value.

func (CommitInfoValidationError) Reason added in v2.8.0

func (e CommitInfoValidationError) Reason() string

Reason function returns reason value.

type CommitInfo_Details

type CommitInfo_Details struct {
	SizeBytes      int64                `protobuf:"varint,1,opt,name=size_bytes,json=sizeBytes,proto3" json:"size_bytes,omitempty"`
	CompactingTime *durationpb.Duration `protobuf:"bytes,2,opt,name=compacting_time,json=compactingTime,proto3" json:"compacting_time,omitempty"`
	ValidatingTime *durationpb.Duration `protobuf:"bytes,3,opt,name=validating_time,json=validatingTime,proto3" json:"validating_time,omitempty"`
	// contains filtered or unexported fields
}

Details are only provided when explicitly requested

func (*CommitInfo_Details) Descriptor deprecated

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

Deprecated: Use CommitInfo_Details.ProtoReflect.Descriptor instead.

func (*CommitInfo_Details) GetCompactingTime

func (x *CommitInfo_Details) GetCompactingTime() *durationpb.Duration

func (*CommitInfo_Details) GetSizeBytes

func (x *CommitInfo_Details) GetSizeBytes() int64

func (*CommitInfo_Details) GetValidatingTime

func (x *CommitInfo_Details) GetValidatingTime() *durationpb.Duration

func (*CommitInfo_Details) MarshalLogObject

func (x *CommitInfo_Details) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*CommitInfo_Details) ProtoMessage

func (*CommitInfo_Details) ProtoMessage()

func (*CommitInfo_Details) ProtoReflect added in v2.7.0

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

func (*CommitInfo_Details) Reset

func (x *CommitInfo_Details) Reset()

func (*CommitInfo_Details) String

func (x *CommitInfo_Details) String() string

func (*CommitInfo_Details) Validate added in v2.8.0

func (m *CommitInfo_Details) Validate() error

Validate checks the field values on CommitInfo_Details with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CommitInfo_Details) ValidateAll added in v2.8.0

func (m *CommitInfo_Details) ValidateAll() error

ValidateAll checks the field values on CommitInfo_Details with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CommitInfo_DetailsMultiError, or nil if none found.

type CommitInfo_DetailsMultiError added in v2.8.0

type CommitInfo_DetailsMultiError []error

CommitInfo_DetailsMultiError is an error wrapping multiple validation errors returned by CommitInfo_Details.ValidateAll() if the designated constraints aren't met.

func (CommitInfo_DetailsMultiError) AllErrors added in v2.8.0

func (m CommitInfo_DetailsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CommitInfo_DetailsMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type CommitInfo_DetailsValidationError added in v2.8.0

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

CommitInfo_DetailsValidationError is the validation error returned by CommitInfo_Details.Validate if the designated constraints aren't met.

func (CommitInfo_DetailsValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (CommitInfo_DetailsValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (CommitInfo_DetailsValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (CommitInfo_DetailsValidationError) Field added in v2.8.0

Field function returns field value.

func (CommitInfo_DetailsValidationError) Key added in v2.8.0

Key function returns key value.

func (CommitInfo_DetailsValidationError) Reason added in v2.8.0

Reason function returns reason value.

type CommitMultiError added in v2.8.0

type CommitMultiError []error

CommitMultiError is an error wrapping multiple validation errors returned by Commit.ValidateAll() if the designated constraints aren't met.

func (CommitMultiError) AllErrors added in v2.8.0

func (m CommitMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CommitMultiError) Error added in v2.8.0

func (m CommitMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type CommitOrigin

type CommitOrigin struct {
	Kind OriginKind `protobuf:"varint,1,opt,name=kind,proto3,enum=pfs_v2.OriginKind" json:"kind,omitempty"`
	// contains filtered or unexported fields
}

func (*CommitOrigin) Descriptor deprecated

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

Deprecated: Use CommitOrigin.ProtoReflect.Descriptor instead.

func (*CommitOrigin) GetKind

func (x *CommitOrigin) GetKind() OriginKind

func (*CommitOrigin) MarshalLogObject

func (x *CommitOrigin) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*CommitOrigin) ProtoMessage

func (*CommitOrigin) ProtoMessage()

func (*CommitOrigin) ProtoReflect added in v2.7.0

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

func (*CommitOrigin) Reset

func (x *CommitOrigin) Reset()

func (*CommitOrigin) String

func (x *CommitOrigin) String() string

func (*CommitOrigin) Validate added in v2.8.0

func (m *CommitOrigin) Validate() error

Validate checks the field values on CommitOrigin with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CommitOrigin) ValidateAll added in v2.8.0

func (m *CommitOrigin) ValidateAll() error

ValidateAll checks the field values on CommitOrigin with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CommitOriginMultiError, or nil if none found.

type CommitOriginMultiError added in v2.8.0

type CommitOriginMultiError []error

CommitOriginMultiError is an error wrapping multiple validation errors returned by CommitOrigin.ValidateAll() if the designated constraints aren't met.

func (CommitOriginMultiError) AllErrors added in v2.8.0

func (m CommitOriginMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CommitOriginMultiError) Error added in v2.8.0

func (m CommitOriginMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type CommitOriginValidationError added in v2.8.0

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

CommitOriginValidationError is the validation error returned by CommitOrigin.Validate if the designated constraints aren't met.

func (CommitOriginValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (CommitOriginValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (CommitOriginValidationError) ErrorName added in v2.8.0

func (e CommitOriginValidationError) ErrorName() string

ErrorName returns error name.

func (CommitOriginValidationError) Field added in v2.8.0

Field function returns field value.

func (CommitOriginValidationError) Key added in v2.8.0

Key function returns key value.

func (CommitOriginValidationError) Reason added in v2.8.0

Reason function returns reason value.

type CommitSet

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

func (*CommitSet) Descriptor deprecated

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

Deprecated: Use CommitSet.ProtoReflect.Descriptor instead.

func (*CommitSet) GetId added in v2.7.0

func (x *CommitSet) GetId() string

func (*CommitSet) MarshalLogObject

func (x *CommitSet) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*CommitSet) ProtoMessage

func (*CommitSet) ProtoMessage()

func (*CommitSet) ProtoReflect added in v2.7.0

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

func (*CommitSet) Reset

func (x *CommitSet) Reset()

func (*CommitSet) String

func (x *CommitSet) String() string

func (*CommitSet) Validate added in v2.8.0

func (m *CommitSet) Validate() error

Validate checks the field values on CommitSet with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CommitSet) ValidateAll added in v2.8.0

func (m *CommitSet) ValidateAll() error

ValidateAll checks the field values on CommitSet with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CommitSetMultiError, or nil if none found.

type CommitSetInfo

type CommitSetInfo struct {
	CommitSet *CommitSet    `protobuf:"bytes,1,opt,name=commit_set,json=commitSet,proto3" json:"commit_set,omitempty"`
	Commits   []*CommitInfo `protobuf:"bytes,2,rep,name=commits,proto3" json:"commits,omitempty"`
	// contains filtered or unexported fields
}

func (*CommitSetInfo) Descriptor deprecated

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

Deprecated: Use CommitSetInfo.ProtoReflect.Descriptor instead.

func (*CommitSetInfo) GetCommitSet

func (x *CommitSetInfo) GetCommitSet() *CommitSet

func (*CommitSetInfo) GetCommits

func (x *CommitSetInfo) GetCommits() []*CommitInfo

func (*CommitSetInfo) MarshalLogObject

func (x *CommitSetInfo) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*CommitSetInfo) ProtoMessage

func (*CommitSetInfo) ProtoMessage()

func (*CommitSetInfo) ProtoReflect added in v2.7.0

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

func (*CommitSetInfo) Reset

func (x *CommitSetInfo) Reset()

func (*CommitSetInfo) String

func (x *CommitSetInfo) String() string

func (*CommitSetInfo) Validate added in v2.8.0

func (m *CommitSetInfo) Validate() error

Validate checks the field values on CommitSetInfo with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CommitSetInfo) ValidateAll added in v2.8.0

func (m *CommitSetInfo) ValidateAll() error

ValidateAll checks the field values on CommitSetInfo with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CommitSetInfoMultiError, or nil if none found.

type CommitSetInfoMultiError added in v2.8.0

type CommitSetInfoMultiError []error

CommitSetInfoMultiError is an error wrapping multiple validation errors returned by CommitSetInfo.ValidateAll() if the designated constraints aren't met.

func (CommitSetInfoMultiError) AllErrors added in v2.8.0

func (m CommitSetInfoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CommitSetInfoMultiError) Error added in v2.8.0

func (m CommitSetInfoMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type CommitSetInfoValidationError added in v2.8.0

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

CommitSetInfoValidationError is the validation error returned by CommitSetInfo.Validate if the designated constraints aren't met.

func (CommitSetInfoValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (CommitSetInfoValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (CommitSetInfoValidationError) ErrorName added in v2.8.0

func (e CommitSetInfoValidationError) ErrorName() string

ErrorName returns error name.

func (CommitSetInfoValidationError) Field added in v2.8.0

Field function returns field value.

func (CommitSetInfoValidationError) Key added in v2.8.0

Key function returns key value.

func (CommitSetInfoValidationError) Reason added in v2.8.0

Reason function returns reason value.

type CommitSetMultiError added in v2.8.0

type CommitSetMultiError []error

CommitSetMultiError is an error wrapping multiple validation errors returned by CommitSet.ValidateAll() if the designated constraints aren't met.

func (CommitSetMultiError) AllErrors added in v2.8.0

func (m CommitSetMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CommitSetMultiError) Error added in v2.8.0

func (m CommitSetMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type CommitSetValidationError added in v2.8.0

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

CommitSetValidationError is the validation error returned by CommitSet.Validate if the designated constraints aren't met.

func (CommitSetValidationError) Cause added in v2.8.0

func (e CommitSetValidationError) Cause() error

Cause function returns cause value.

func (CommitSetValidationError) Error added in v2.8.0

func (e CommitSetValidationError) Error() string

Error satisfies the builtin error interface

func (CommitSetValidationError) ErrorName added in v2.8.0

func (e CommitSetValidationError) ErrorName() string

ErrorName returns error name.

func (CommitSetValidationError) Field added in v2.8.0

func (e CommitSetValidationError) Field() string

Field function returns field value.

func (CommitSetValidationError) Key added in v2.8.0

Key function returns key value.

func (CommitSetValidationError) Reason added in v2.8.0

func (e CommitSetValidationError) Reason() string

Reason function returns reason value.

type CommitState

type CommitState int32

CommitState describes the states a commit can be in. The states are increasingly specific, i.e. a commit that is FINISHED also counts as STARTED.

const (
	CommitState_COMMIT_STATE_UNKNOWN CommitState = 0
	CommitState_STARTED              CommitState = 1 // The commit has been started, all commits satisfy this state.
	CommitState_READY                CommitState = 2 // The commit has been started, and all of its provenant commits have been finished.
	CommitState_FINISHING            CommitState = 3 // The commit is in the process of being finished.
	CommitState_FINISHED             CommitState = 4 // The commit has been finished.
)

func (CommitState) Descriptor added in v2.7.0

func (CommitState) Enum added in v2.7.0

func (x CommitState) Enum() *CommitState

func (CommitState) EnumDescriptor deprecated

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

Deprecated: Use CommitState.Descriptor instead.

func (CommitState) Number added in v2.7.0

func (x CommitState) Number() protoreflect.EnumNumber

func (CommitState) String

func (x CommitState) String() string

func (CommitState) Type added in v2.7.0

type CommitValidationError added in v2.8.0

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

CommitValidationError is the validation error returned by Commit.Validate if the designated constraints aren't met.

func (CommitValidationError) Cause added in v2.8.0

func (e CommitValidationError) Cause() error

Cause function returns cause value.

func (CommitValidationError) Error added in v2.8.0

func (e CommitValidationError) Error() string

Error satisfies the builtin error interface

func (CommitValidationError) ErrorName added in v2.8.0

func (e CommitValidationError) ErrorName() string

ErrorName returns error name.

func (CommitValidationError) Field added in v2.8.0

func (e CommitValidationError) Field() string

Field function returns field value.

func (CommitValidationError) Key added in v2.8.0

func (e CommitValidationError) Key() bool

Key function returns key value.

func (CommitValidationError) Reason added in v2.8.0

func (e CommitValidationError) Reason() string

Reason function returns reason value.

type ComposeFileSetRequest

type ComposeFileSetRequest struct {
	FileSetIds []string `protobuf:"bytes,1,rep,name=file_set_ids,json=fileSetIds,proto3" json:"file_set_ids,omitempty"`
	TtlSeconds int64    `protobuf:"varint,2,opt,name=ttl_seconds,json=ttlSeconds,proto3" json:"ttl_seconds,omitempty"`
	Compact    bool     `protobuf:"varint,3,opt,name=compact,proto3" json:"compact,omitempty"`
	// contains filtered or unexported fields
}

func (*ComposeFileSetRequest) Descriptor deprecated

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

Deprecated: Use ComposeFileSetRequest.ProtoReflect.Descriptor instead.

func (*ComposeFileSetRequest) GetCompact

func (x *ComposeFileSetRequest) GetCompact() bool

func (*ComposeFileSetRequest) GetFileSetIds

func (x *ComposeFileSetRequest) GetFileSetIds() []string

func (*ComposeFileSetRequest) GetTtlSeconds

func (x *ComposeFileSetRequest) GetTtlSeconds() int64

func (*ComposeFileSetRequest) MarshalLogObject

func (x *ComposeFileSetRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ComposeFileSetRequest) ProtoMessage

func (*ComposeFileSetRequest) ProtoMessage()

func (*ComposeFileSetRequest) ProtoReflect added in v2.7.0

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

func (*ComposeFileSetRequest) Reset

func (x *ComposeFileSetRequest) Reset()

func (*ComposeFileSetRequest) String

func (x *ComposeFileSetRequest) String() string

func (*ComposeFileSetRequest) Validate added in v2.8.0

func (m *ComposeFileSetRequest) Validate() error

Validate checks the field values on ComposeFileSetRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ComposeFileSetRequest) ValidateAll added in v2.8.0

func (m *ComposeFileSetRequest) ValidateAll() error

ValidateAll checks the field values on ComposeFileSetRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ComposeFileSetRequestMultiError, or nil if none found.

type ComposeFileSetRequestMultiError added in v2.8.0

type ComposeFileSetRequestMultiError []error

ComposeFileSetRequestMultiError is an error wrapping multiple validation errors returned by ComposeFileSetRequest.ValidateAll() if the designated constraints aren't met.

func (ComposeFileSetRequestMultiError) AllErrors added in v2.8.0

func (m ComposeFileSetRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ComposeFileSetRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type ComposeFileSetRequestValidationError added in v2.8.0

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

ComposeFileSetRequestValidationError is the validation error returned by ComposeFileSetRequest.Validate if the designated constraints aren't met.

func (ComposeFileSetRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ComposeFileSetRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ComposeFileSetRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (ComposeFileSetRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (ComposeFileSetRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (ComposeFileSetRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type CopyFile

type CopyFile struct {
	Dst    string `protobuf:"bytes,1,opt,name=dst,proto3" json:"dst,omitempty"`
	Datum  string `protobuf:"bytes,2,opt,name=datum,proto3" json:"datum,omitempty"`
	Src    *File  `protobuf:"bytes,3,opt,name=src,proto3" json:"src,omitempty"`
	Append bool   `protobuf:"varint,4,opt,name=append,proto3" json:"append,omitempty"`
	// contains filtered or unexported fields
}

func (*CopyFile) Descriptor deprecated

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

Deprecated: Use CopyFile.ProtoReflect.Descriptor instead.

func (*CopyFile) GetAppend

func (x *CopyFile) GetAppend() bool

func (*CopyFile) GetDatum

func (x *CopyFile) GetDatum() string

func (*CopyFile) GetDst

func (x *CopyFile) GetDst() string

func (*CopyFile) GetSrc

func (x *CopyFile) GetSrc() *File

func (*CopyFile) MarshalLogObject

func (x *CopyFile) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*CopyFile) ProtoMessage

func (*CopyFile) ProtoMessage()

func (*CopyFile) ProtoReflect added in v2.7.0

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

func (*CopyFile) Reset

func (x *CopyFile) Reset()

func (*CopyFile) String

func (x *CopyFile) String() string

func (*CopyFile) Validate added in v2.8.0

func (m *CopyFile) Validate() error

Validate checks the field values on CopyFile with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CopyFile) ValidateAll added in v2.8.0

func (m *CopyFile) ValidateAll() error

ValidateAll checks the field values on CopyFile with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CopyFileMultiError, or nil if none found.

type CopyFileMultiError added in v2.8.0

type CopyFileMultiError []error

CopyFileMultiError is an error wrapping multiple validation errors returned by CopyFile.ValidateAll() if the designated constraints aren't met.

func (CopyFileMultiError) AllErrors added in v2.8.0

func (m CopyFileMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CopyFileMultiError) Error added in v2.8.0

func (m CopyFileMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type CopyFileValidationError added in v2.8.0

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

CopyFileValidationError is the validation error returned by CopyFile.Validate if the designated constraints aren't met.

func (CopyFileValidationError) Cause added in v2.8.0

func (e CopyFileValidationError) Cause() error

Cause function returns cause value.

func (CopyFileValidationError) Error added in v2.8.0

func (e CopyFileValidationError) Error() string

Error satisfies the builtin error interface

func (CopyFileValidationError) ErrorName added in v2.8.0

func (e CopyFileValidationError) ErrorName() string

ErrorName returns error name.

func (CopyFileValidationError) Field added in v2.8.0

func (e CopyFileValidationError) Field() string

Field function returns field value.

func (CopyFileValidationError) Key added in v2.8.0

func (e CopyFileValidationError) Key() bool

Key function returns key value.

func (CopyFileValidationError) Reason added in v2.8.0

func (e CopyFileValidationError) Reason() string

Reason function returns reason value.

type CreateBranchRequest

type CreateBranchRequest struct {
	Head         *Commit   `protobuf:"bytes,1,opt,name=head,proto3" json:"head,omitempty"`
	Branch       *Branch   `protobuf:"bytes,2,opt,name=branch,proto3" json:"branch,omitempty"`
	Provenance   []*Branch `protobuf:"bytes,3,rep,name=provenance,proto3" json:"provenance,omitempty"`
	Trigger      *Trigger  `protobuf:"bytes,4,opt,name=trigger,proto3" json:"trigger,omitempty"`
	NewCommitSet bool      `protobuf:"varint,5,opt,name=new_commit_set,json=newCommitSet,proto3" json:"new_commit_set,omitempty"` // overrides the default behavior of using the same CommitSet as 'head'
	// contains filtered or unexported fields
}

func (*CreateBranchRequest) Descriptor deprecated

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

Deprecated: Use CreateBranchRequest.ProtoReflect.Descriptor instead.

func (*CreateBranchRequest) GetBranch

func (x *CreateBranchRequest) GetBranch() *Branch

func (*CreateBranchRequest) GetHead

func (x *CreateBranchRequest) GetHead() *Commit

func (*CreateBranchRequest) GetNewCommitSet

func (x *CreateBranchRequest) GetNewCommitSet() bool

func (*CreateBranchRequest) GetProvenance

func (x *CreateBranchRequest) GetProvenance() []*Branch

func (*CreateBranchRequest) GetTrigger

func (x *CreateBranchRequest) GetTrigger() *Trigger

func (*CreateBranchRequest) MarshalLogObject

func (x *CreateBranchRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*CreateBranchRequest) ProtoMessage

func (*CreateBranchRequest) ProtoMessage()

func (*CreateBranchRequest) ProtoReflect added in v2.7.0

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

func (*CreateBranchRequest) Reset

func (x *CreateBranchRequest) Reset()

func (*CreateBranchRequest) String

func (x *CreateBranchRequest) String() string

func (*CreateBranchRequest) Validate added in v2.8.0

func (m *CreateBranchRequest) Validate() error

Validate checks the field values on CreateBranchRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CreateBranchRequest) ValidateAll added in v2.8.0

func (m *CreateBranchRequest) ValidateAll() error

ValidateAll checks the field values on CreateBranchRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CreateBranchRequestMultiError, or nil if none found.

type CreateBranchRequestMultiError added in v2.8.0

type CreateBranchRequestMultiError []error

CreateBranchRequestMultiError is an error wrapping multiple validation errors returned by CreateBranchRequest.ValidateAll() if the designated constraints aren't met.

func (CreateBranchRequestMultiError) AllErrors added in v2.8.0

func (m CreateBranchRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateBranchRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type CreateBranchRequestValidationError added in v2.8.0

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

CreateBranchRequestValidationError is the validation error returned by CreateBranchRequest.Validate if the designated constraints aren't met.

func (CreateBranchRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (CreateBranchRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (CreateBranchRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (CreateBranchRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (CreateBranchRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (CreateBranchRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type CreateFileSetResponse

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

func (*CreateFileSetResponse) Descriptor deprecated

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

Deprecated: Use CreateFileSetResponse.ProtoReflect.Descriptor instead.

func (*CreateFileSetResponse) GetFileSetId

func (x *CreateFileSetResponse) GetFileSetId() string

func (*CreateFileSetResponse) MarshalLogObject

func (x *CreateFileSetResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*CreateFileSetResponse) ProtoMessage

func (*CreateFileSetResponse) ProtoMessage()

func (*CreateFileSetResponse) ProtoReflect added in v2.7.0

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

func (*CreateFileSetResponse) Reset

func (x *CreateFileSetResponse) Reset()

func (*CreateFileSetResponse) String

func (x *CreateFileSetResponse) String() string

func (*CreateFileSetResponse) Validate added in v2.8.0

func (m *CreateFileSetResponse) Validate() error

Validate checks the field values on CreateFileSetResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CreateFileSetResponse) ValidateAll added in v2.8.0

func (m *CreateFileSetResponse) ValidateAll() error

ValidateAll checks the field values on CreateFileSetResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CreateFileSetResponseMultiError, or nil if none found.

type CreateFileSetResponseMultiError added in v2.8.0

type CreateFileSetResponseMultiError []error

CreateFileSetResponseMultiError is an error wrapping multiple validation errors returned by CreateFileSetResponse.ValidateAll() if the designated constraints aren't met.

func (CreateFileSetResponseMultiError) AllErrors added in v2.8.0

func (m CreateFileSetResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateFileSetResponseMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type CreateFileSetResponseValidationError added in v2.8.0

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

CreateFileSetResponseValidationError is the validation error returned by CreateFileSetResponse.Validate if the designated constraints aren't met.

func (CreateFileSetResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (CreateFileSetResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (CreateFileSetResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (CreateFileSetResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (CreateFileSetResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (CreateFileSetResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type CreateProjectRequest

type CreateProjectRequest struct {
	Project     *Project `protobuf:"bytes,1,opt,name=project,proto3" json:"project,omitempty"`
	Description string   `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Update      bool     `protobuf:"varint,3,opt,name=update,proto3" json:"update,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateProjectRequest) Descriptor deprecated

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

Deprecated: Use CreateProjectRequest.ProtoReflect.Descriptor instead.

func (*CreateProjectRequest) GetDescription

func (x *CreateProjectRequest) GetDescription() string

func (*CreateProjectRequest) GetProject

func (x *CreateProjectRequest) GetProject() *Project

func (*CreateProjectRequest) GetUpdate

func (x *CreateProjectRequest) GetUpdate() bool

func (*CreateProjectRequest) MarshalLogObject

func (x *CreateProjectRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*CreateProjectRequest) ProtoMessage

func (*CreateProjectRequest) ProtoMessage()

func (*CreateProjectRequest) ProtoReflect added in v2.7.0

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

func (*CreateProjectRequest) Reset

func (x *CreateProjectRequest) Reset()

func (*CreateProjectRequest) String

func (x *CreateProjectRequest) String() string

func (*CreateProjectRequest) Validate added in v2.8.0

func (m *CreateProjectRequest) Validate() error

Validate checks the field values on CreateProjectRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CreateProjectRequest) ValidateAll added in v2.8.0

func (m *CreateProjectRequest) ValidateAll() error

ValidateAll checks the field values on CreateProjectRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CreateProjectRequestMultiError, or nil if none found.

type CreateProjectRequestMultiError added in v2.8.0

type CreateProjectRequestMultiError []error

CreateProjectRequestMultiError is an error wrapping multiple validation errors returned by CreateProjectRequest.ValidateAll() if the designated constraints aren't met.

func (CreateProjectRequestMultiError) AllErrors added in v2.8.0

func (m CreateProjectRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateProjectRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type CreateProjectRequestValidationError added in v2.8.0

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

CreateProjectRequestValidationError is the validation error returned by CreateProjectRequest.Validate if the designated constraints aren't met.

func (CreateProjectRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (CreateProjectRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (CreateProjectRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (CreateProjectRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (CreateProjectRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (CreateProjectRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type CreateRepoRequest

type CreateRepoRequest struct {
	Repo        *Repo  `protobuf:"bytes,1,opt,name=repo,proto3" json:"repo,omitempty"`
	Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Update      bool   `protobuf:"varint,3,opt,name=update,proto3" json:"update,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateRepoRequest) Descriptor deprecated

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

Deprecated: Use CreateRepoRequest.ProtoReflect.Descriptor instead.

func (*CreateRepoRequest) GetDescription

func (x *CreateRepoRequest) GetDescription() string

func (*CreateRepoRequest) GetRepo

func (x *CreateRepoRequest) GetRepo() *Repo

func (*CreateRepoRequest) GetUpdate

func (x *CreateRepoRequest) GetUpdate() bool

func (*CreateRepoRequest) MarshalLogObject

func (x *CreateRepoRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*CreateRepoRequest) ProtoMessage

func (*CreateRepoRequest) ProtoMessage()

func (*CreateRepoRequest) ProtoReflect added in v2.7.0

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

func (*CreateRepoRequest) Reset

func (x *CreateRepoRequest) Reset()

func (*CreateRepoRequest) String

func (x *CreateRepoRequest) String() string

func (*CreateRepoRequest) Validate added in v2.8.0

func (m *CreateRepoRequest) Validate() error

Validate checks the field values on CreateRepoRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CreateRepoRequest) ValidateAll added in v2.8.0

func (m *CreateRepoRequest) ValidateAll() error

ValidateAll checks the field values on CreateRepoRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CreateRepoRequestMultiError, or nil if none found.

type CreateRepoRequestMultiError added in v2.8.0

type CreateRepoRequestMultiError []error

CreateRepoRequestMultiError is an error wrapping multiple validation errors returned by CreateRepoRequest.ValidateAll() if the designated constraints aren't met.

func (CreateRepoRequestMultiError) AllErrors added in v2.8.0

func (m CreateRepoRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateRepoRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type CreateRepoRequestValidationError added in v2.8.0

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

CreateRepoRequestValidationError is the validation error returned by CreateRepoRequest.Validate if the designated constraints aren't met.

func (CreateRepoRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (CreateRepoRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (CreateRepoRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (CreateRepoRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (CreateRepoRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (CreateRepoRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type DeleteBranchRequest

type DeleteBranchRequest struct {
	Branch *Branch `protobuf:"bytes,1,opt,name=branch,proto3" json:"branch,omitempty"`
	Force  bool    `protobuf:"varint,2,opt,name=force,proto3" json:"force,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteBranchRequest) Descriptor deprecated

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

Deprecated: Use DeleteBranchRequest.ProtoReflect.Descriptor instead.

func (*DeleteBranchRequest) GetBranch

func (x *DeleteBranchRequest) GetBranch() *Branch

func (*DeleteBranchRequest) GetForce

func (x *DeleteBranchRequest) GetForce() bool

func (*DeleteBranchRequest) MarshalLogObject

func (x *DeleteBranchRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DeleteBranchRequest) ProtoMessage

func (*DeleteBranchRequest) ProtoMessage()

func (*DeleteBranchRequest) ProtoReflect added in v2.7.0

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

func (*DeleteBranchRequest) Reset

func (x *DeleteBranchRequest) Reset()

func (*DeleteBranchRequest) String

func (x *DeleteBranchRequest) String() string

func (*DeleteBranchRequest) Validate added in v2.8.0

func (m *DeleteBranchRequest) Validate() error

Validate checks the field values on DeleteBranchRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DeleteBranchRequest) ValidateAll added in v2.8.0

func (m *DeleteBranchRequest) ValidateAll() error

ValidateAll checks the field values on DeleteBranchRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DeleteBranchRequestMultiError, or nil if none found.

type DeleteBranchRequestMultiError added in v2.8.0

type DeleteBranchRequestMultiError []error

DeleteBranchRequestMultiError is an error wrapping multiple validation errors returned by DeleteBranchRequest.ValidateAll() if the designated constraints aren't met.

func (DeleteBranchRequestMultiError) AllErrors added in v2.8.0

func (m DeleteBranchRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteBranchRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type DeleteBranchRequestValidationError added in v2.8.0

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

DeleteBranchRequestValidationError is the validation error returned by DeleteBranchRequest.Validate if the designated constraints aren't met.

func (DeleteBranchRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (DeleteBranchRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DeleteBranchRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (DeleteBranchRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (DeleteBranchRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (DeleteBranchRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type DeleteFile

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

func (*DeleteFile) Descriptor deprecated

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

Deprecated: Use DeleteFile.ProtoReflect.Descriptor instead.

func (*DeleteFile) GetDatum

func (x *DeleteFile) GetDatum() string

func (*DeleteFile) GetPath

func (x *DeleteFile) GetPath() string

func (*DeleteFile) MarshalLogObject

func (x *DeleteFile) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DeleteFile) ProtoMessage

func (*DeleteFile) ProtoMessage()

func (*DeleteFile) ProtoReflect added in v2.7.0

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

func (*DeleteFile) Reset

func (x *DeleteFile) Reset()

func (*DeleteFile) String

func (x *DeleteFile) String() string

func (*DeleteFile) Validate added in v2.8.0

func (m *DeleteFile) Validate() error

Validate checks the field values on DeleteFile with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DeleteFile) ValidateAll added in v2.8.0

func (m *DeleteFile) ValidateAll() error

ValidateAll checks the field values on DeleteFile with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DeleteFileMultiError, or nil if none found.

type DeleteFileMultiError added in v2.8.0

type DeleteFileMultiError []error

DeleteFileMultiError is an error wrapping multiple validation errors returned by DeleteFile.ValidateAll() if the designated constraints aren't met.

func (DeleteFileMultiError) AllErrors added in v2.8.0

func (m DeleteFileMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteFileMultiError) Error added in v2.8.0

func (m DeleteFileMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type DeleteFileValidationError added in v2.8.0

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

DeleteFileValidationError is the validation error returned by DeleteFile.Validate if the designated constraints aren't met.

func (DeleteFileValidationError) Cause added in v2.8.0

func (e DeleteFileValidationError) Cause() error

Cause function returns cause value.

func (DeleteFileValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DeleteFileValidationError) ErrorName added in v2.8.0

func (e DeleteFileValidationError) ErrorName() string

ErrorName returns error name.

func (DeleteFileValidationError) Field added in v2.8.0

Field function returns field value.

func (DeleteFileValidationError) Key added in v2.8.0

Key function returns key value.

func (DeleteFileValidationError) Reason added in v2.8.0

func (e DeleteFileValidationError) Reason() string

Reason function returns reason value.

type DeleteProjectRequest

type DeleteProjectRequest struct {
	Project *Project `protobuf:"bytes,1,opt,name=project,proto3" json:"project,omitempty"`
	Force   bool     `protobuf:"varint,2,opt,name=force,proto3" json:"force,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteProjectRequest) Descriptor deprecated

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

Deprecated: Use DeleteProjectRequest.ProtoReflect.Descriptor instead.

func (*DeleteProjectRequest) GetForce

func (x *DeleteProjectRequest) GetForce() bool

func (*DeleteProjectRequest) GetProject

func (x *DeleteProjectRequest) GetProject() *Project

func (*DeleteProjectRequest) MarshalLogObject

func (x *DeleteProjectRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DeleteProjectRequest) ProtoMessage

func (*DeleteProjectRequest) ProtoMessage()

func (*DeleteProjectRequest) ProtoReflect added in v2.7.0

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

func (*DeleteProjectRequest) Reset

func (x *DeleteProjectRequest) Reset()

func (*DeleteProjectRequest) String

func (x *DeleteProjectRequest) String() string

func (*DeleteProjectRequest) Validate added in v2.8.0

func (m *DeleteProjectRequest) Validate() error

Validate checks the field values on DeleteProjectRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DeleteProjectRequest) ValidateAll added in v2.8.0

func (m *DeleteProjectRequest) ValidateAll() error

ValidateAll checks the field values on DeleteProjectRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DeleteProjectRequestMultiError, or nil if none found.

type DeleteProjectRequestMultiError added in v2.8.0

type DeleteProjectRequestMultiError []error

DeleteProjectRequestMultiError is an error wrapping multiple validation errors returned by DeleteProjectRequest.ValidateAll() if the designated constraints aren't met.

func (DeleteProjectRequestMultiError) AllErrors added in v2.8.0

func (m DeleteProjectRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteProjectRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type DeleteProjectRequestValidationError added in v2.8.0

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

DeleteProjectRequestValidationError is the validation error returned by DeleteProjectRequest.Validate if the designated constraints aren't met.

func (DeleteProjectRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (DeleteProjectRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DeleteProjectRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (DeleteProjectRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (DeleteProjectRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (DeleteProjectRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type DeleteRepoRequest

type DeleteRepoRequest struct {
	Repo  *Repo `protobuf:"bytes,1,opt,name=repo,proto3" json:"repo,omitempty"`
	Force bool  `protobuf:"varint,2,opt,name=force,proto3" json:"force,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteRepoRequest) Descriptor deprecated

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

Deprecated: Use DeleteRepoRequest.ProtoReflect.Descriptor instead.

func (*DeleteRepoRequest) GetForce

func (x *DeleteRepoRequest) GetForce() bool

func (*DeleteRepoRequest) GetRepo

func (x *DeleteRepoRequest) GetRepo() *Repo

func (*DeleteRepoRequest) MarshalLogObject

func (x *DeleteRepoRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DeleteRepoRequest) ProtoMessage

func (*DeleteRepoRequest) ProtoMessage()

func (*DeleteRepoRequest) ProtoReflect added in v2.7.0

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

func (*DeleteRepoRequest) Reset

func (x *DeleteRepoRequest) Reset()

func (*DeleteRepoRequest) String

func (x *DeleteRepoRequest) String() string

func (*DeleteRepoRequest) Validate added in v2.8.0

func (m *DeleteRepoRequest) Validate() error

Validate checks the field values on DeleteRepoRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DeleteRepoRequest) ValidateAll added in v2.8.0

func (m *DeleteRepoRequest) ValidateAll() error

ValidateAll checks the field values on DeleteRepoRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DeleteRepoRequestMultiError, or nil if none found.

type DeleteRepoRequestMultiError added in v2.8.0

type DeleteRepoRequestMultiError []error

DeleteRepoRequestMultiError is an error wrapping multiple validation errors returned by DeleteRepoRequest.ValidateAll() if the designated constraints aren't met.

func (DeleteRepoRequestMultiError) AllErrors added in v2.8.0

func (m DeleteRepoRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteRepoRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type DeleteRepoRequestValidationError added in v2.8.0

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

DeleteRepoRequestValidationError is the validation error returned by DeleteRepoRequest.Validate if the designated constraints aren't met.

func (DeleteRepoRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (DeleteRepoRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DeleteRepoRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (DeleteRepoRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (DeleteRepoRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (DeleteRepoRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type DeleteRepoResponse added in v2.8.0

type DeleteRepoResponse struct {

	// The repos that were deleted, perhaps none.
	Deleted bool `protobuf:"varint,1,opt,name=deleted,proto3" json:"deleted,omitempty"`
	// contains filtered or unexported fields
}

DeleteRepoResponse returns the repos that were deleted by a DeleteRepo call.

func (*DeleteRepoResponse) Descriptor deprecated added in v2.8.0

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

Deprecated: Use DeleteRepoResponse.ProtoReflect.Descriptor instead.

func (*DeleteRepoResponse) GetDeleted added in v2.8.0

func (x *DeleteRepoResponse) GetDeleted() bool

func (*DeleteRepoResponse) MarshalLogObject added in v2.8.0

func (x *DeleteRepoResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DeleteRepoResponse) ProtoMessage added in v2.8.0

func (*DeleteRepoResponse) ProtoMessage()

func (*DeleteRepoResponse) ProtoReflect added in v2.8.0

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

func (*DeleteRepoResponse) Reset added in v2.8.0

func (x *DeleteRepoResponse) Reset()

func (*DeleteRepoResponse) String added in v2.8.0

func (x *DeleteRepoResponse) String() string

func (*DeleteRepoResponse) Validate added in v2.8.0

func (m *DeleteRepoResponse) Validate() error

Validate checks the field values on DeleteRepoResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DeleteRepoResponse) ValidateAll added in v2.8.0

func (m *DeleteRepoResponse) ValidateAll() error

ValidateAll checks the field values on DeleteRepoResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DeleteRepoResponseMultiError, or nil if none found.

type DeleteRepoResponseMultiError added in v2.8.0

type DeleteRepoResponseMultiError []error

DeleteRepoResponseMultiError is an error wrapping multiple validation errors returned by DeleteRepoResponse.ValidateAll() if the designated constraints aren't met.

func (DeleteRepoResponseMultiError) AllErrors added in v2.8.0

func (m DeleteRepoResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteRepoResponseMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type DeleteRepoResponseValidationError added in v2.8.0

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

DeleteRepoResponseValidationError is the validation error returned by DeleteRepoResponse.Validate if the designated constraints aren't met.

func (DeleteRepoResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (DeleteRepoResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DeleteRepoResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (DeleteRepoResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (DeleteRepoResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (DeleteRepoResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type DeleteReposRequest

type DeleteReposRequest struct {

	// All repos in each project will be deleted if the caller has
	// permission.
	Projects []*Project `protobuf:"bytes,1,rep,name=projects,proto3" json:"projects,omitempty"`
	Force    bool       `protobuf:"varint,2,opt,name=force,proto3" json:"force,omitempty"`
	// If all is set, then all repos in all projects will be deleted if the caller
	// has permission.
	All bool `protobuf:"varint,3,opt,name=all,proto3" json:"all,omitempty"`
	// contains filtered or unexported fields
}

DeleteReposRequest is used to delete more than one repo at once.

func (*DeleteReposRequest) Descriptor deprecated

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

Deprecated: Use DeleteReposRequest.ProtoReflect.Descriptor instead.

func (*DeleteReposRequest) GetAll

func (x *DeleteReposRequest) GetAll() bool

func (*DeleteReposRequest) GetForce

func (x *DeleteReposRequest) GetForce() bool

func (*DeleteReposRequest) GetProjects

func (x *DeleteReposRequest) GetProjects() []*Project

func (*DeleteReposRequest) MarshalLogObject

func (x *DeleteReposRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DeleteReposRequest) ProtoMessage

func (*DeleteReposRequest) ProtoMessage()

func (*DeleteReposRequest) ProtoReflect added in v2.7.0

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

func (*DeleteReposRequest) Reset

func (x *DeleteReposRequest) Reset()

func (*DeleteReposRequest) String

func (x *DeleteReposRequest) String() string

func (*DeleteReposRequest) Validate added in v2.8.0

func (m *DeleteReposRequest) Validate() error

Validate checks the field values on DeleteReposRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DeleteReposRequest) ValidateAll added in v2.8.0

func (m *DeleteReposRequest) ValidateAll() error

ValidateAll checks the field values on DeleteReposRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DeleteReposRequestMultiError, or nil if none found.

type DeleteReposRequestMultiError added in v2.8.0

type DeleteReposRequestMultiError []error

DeleteReposRequestMultiError is an error wrapping multiple validation errors returned by DeleteReposRequest.ValidateAll() if the designated constraints aren't met.

func (DeleteReposRequestMultiError) AllErrors added in v2.8.0

func (m DeleteReposRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteReposRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type DeleteReposRequestValidationError added in v2.8.0

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

DeleteReposRequestValidationError is the validation error returned by DeleteReposRequest.Validate if the designated constraints aren't met.

func (DeleteReposRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (DeleteReposRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DeleteReposRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (DeleteReposRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (DeleteReposRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (DeleteReposRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type DeleteReposResponse

type DeleteReposResponse struct {
	Repos []*Repo `protobuf:"bytes,1,rep,name=repos,proto3" json:"repos,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteReposResponse) Descriptor deprecated

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

Deprecated: Use DeleteReposResponse.ProtoReflect.Descriptor instead.

func (*DeleteReposResponse) GetRepos

func (x *DeleteReposResponse) GetRepos() []*Repo

func (*DeleteReposResponse) MarshalLogObject

func (x *DeleteReposResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DeleteReposResponse) ProtoMessage

func (*DeleteReposResponse) ProtoMessage()

func (*DeleteReposResponse) ProtoReflect added in v2.7.0

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

func (*DeleteReposResponse) Reset

func (x *DeleteReposResponse) Reset()

func (*DeleteReposResponse) String

func (x *DeleteReposResponse) String() string

func (*DeleteReposResponse) Validate added in v2.8.0

func (m *DeleteReposResponse) Validate() error

Validate checks the field values on DeleteReposResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DeleteReposResponse) ValidateAll added in v2.8.0

func (m *DeleteReposResponse) ValidateAll() error

ValidateAll checks the field values on DeleteReposResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DeleteReposResponseMultiError, or nil if none found.

type DeleteReposResponseMultiError added in v2.8.0

type DeleteReposResponseMultiError []error

DeleteReposResponseMultiError is an error wrapping multiple validation errors returned by DeleteReposResponse.ValidateAll() if the designated constraints aren't met.

func (DeleteReposResponseMultiError) AllErrors added in v2.8.0

func (m DeleteReposResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteReposResponseMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type DeleteReposResponseValidationError added in v2.8.0

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

DeleteReposResponseValidationError is the validation error returned by DeleteReposResponse.Validate if the designated constraints aren't met.

func (DeleteReposResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (DeleteReposResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DeleteReposResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (DeleteReposResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (DeleteReposResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (DeleteReposResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type Delimiter

type Delimiter int32
const (
	Delimiter_NONE Delimiter = 0
	Delimiter_JSON Delimiter = 1
	Delimiter_LINE Delimiter = 2
	Delimiter_SQL  Delimiter = 3
	Delimiter_CSV  Delimiter = 4
)

func (Delimiter) Descriptor added in v2.7.0

func (Delimiter) Descriptor() protoreflect.EnumDescriptor

func (Delimiter) Enum added in v2.7.0

func (x Delimiter) Enum() *Delimiter

func (Delimiter) EnumDescriptor deprecated

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

Deprecated: Use Delimiter.Descriptor instead.

func (Delimiter) Number added in v2.7.0

func (x Delimiter) Number() protoreflect.EnumNumber

func (Delimiter) String

func (x Delimiter) String() string

func (Delimiter) Type added in v2.7.0

type DiffFileRequest

type DiffFileRequest struct {
	NewFile *File `protobuf:"bytes,1,opt,name=new_file,json=newFile,proto3" json:"new_file,omitempty"`
	// OldFile may be left nil in which case the same path in the parent of
	// NewFile's commit will be used.
	OldFile *File `protobuf:"bytes,2,opt,name=old_file,json=oldFile,proto3" json:"old_file,omitempty"`
	Shallow bool  `protobuf:"varint,3,opt,name=shallow,proto3" json:"shallow,omitempty"`
	// contains filtered or unexported fields
}

func (*DiffFileRequest) Descriptor deprecated

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

Deprecated: Use DiffFileRequest.ProtoReflect.Descriptor instead.

func (*DiffFileRequest) GetNewFile

func (x *DiffFileRequest) GetNewFile() *File

func (*DiffFileRequest) GetOldFile

func (x *DiffFileRequest) GetOldFile() *File

func (*DiffFileRequest) GetShallow

func (x *DiffFileRequest) GetShallow() bool

func (*DiffFileRequest) MarshalLogObject

func (x *DiffFileRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DiffFileRequest) ProtoMessage

func (*DiffFileRequest) ProtoMessage()

func (*DiffFileRequest) ProtoReflect added in v2.7.0

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

func (*DiffFileRequest) Reset

func (x *DiffFileRequest) Reset()

func (*DiffFileRequest) String

func (x *DiffFileRequest) String() string

func (*DiffFileRequest) Validate added in v2.8.0

func (m *DiffFileRequest) Validate() error

Validate checks the field values on DiffFileRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DiffFileRequest) ValidateAll added in v2.8.0

func (m *DiffFileRequest) ValidateAll() error

ValidateAll checks the field values on DiffFileRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DiffFileRequestMultiError, or nil if none found.

type DiffFileRequestMultiError added in v2.8.0

type DiffFileRequestMultiError []error

DiffFileRequestMultiError is an error wrapping multiple validation errors returned by DiffFileRequest.ValidateAll() if the designated constraints aren't met.

func (DiffFileRequestMultiError) AllErrors added in v2.8.0

func (m DiffFileRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DiffFileRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type DiffFileRequestValidationError added in v2.8.0

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

DiffFileRequestValidationError is the validation error returned by DiffFileRequest.Validate if the designated constraints aren't met.

func (DiffFileRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (DiffFileRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DiffFileRequestValidationError) ErrorName added in v2.8.0

func (e DiffFileRequestValidationError) ErrorName() string

ErrorName returns error name.

func (DiffFileRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (DiffFileRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (DiffFileRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type DiffFileResponse

type DiffFileResponse struct {
	NewFile *FileInfo `protobuf:"bytes,1,opt,name=new_file,json=newFile,proto3" json:"new_file,omitempty"`
	OldFile *FileInfo `protobuf:"bytes,2,opt,name=old_file,json=oldFile,proto3" json:"old_file,omitempty"`
	// contains filtered or unexported fields
}

func (*DiffFileResponse) Descriptor deprecated

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

Deprecated: Use DiffFileResponse.ProtoReflect.Descriptor instead.

func (*DiffFileResponse) GetNewFile

func (x *DiffFileResponse) GetNewFile() *FileInfo

func (*DiffFileResponse) GetOldFile

func (x *DiffFileResponse) GetOldFile() *FileInfo

func (*DiffFileResponse) MarshalLogObject

func (x *DiffFileResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DiffFileResponse) ProtoMessage

func (*DiffFileResponse) ProtoMessage()

func (*DiffFileResponse) ProtoReflect added in v2.7.0

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

func (*DiffFileResponse) Reset

func (x *DiffFileResponse) Reset()

func (*DiffFileResponse) String

func (x *DiffFileResponse) String() string

func (*DiffFileResponse) Validate added in v2.8.0

func (m *DiffFileResponse) Validate() error

Validate checks the field values on DiffFileResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DiffFileResponse) ValidateAll added in v2.8.0

func (m *DiffFileResponse) ValidateAll() error

ValidateAll checks the field values on DiffFileResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DiffFileResponseMultiError, or nil if none found.

type DiffFileResponseMultiError added in v2.8.0

type DiffFileResponseMultiError []error

DiffFileResponseMultiError is an error wrapping multiple validation errors returned by DiffFileResponse.ValidateAll() if the designated constraints aren't met.

func (DiffFileResponseMultiError) AllErrors added in v2.8.0

func (m DiffFileResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DiffFileResponseMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type DiffFileResponseValidationError added in v2.8.0

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

DiffFileResponseValidationError is the validation error returned by DiffFileResponse.Validate if the designated constraints aren't met.

func (DiffFileResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (DiffFileResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DiffFileResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (DiffFileResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (DiffFileResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (DiffFileResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type DropCommitRequest added in v2.8.0

type DropCommitRequest struct {
	Commit *Commit `protobuf:"bytes,1,opt,name=commit,proto3" json:"commit,omitempty"`
	// Setting recursive to true indicates that the drop should be applied recursively to subvenant commits.
	// If recursive is set to false and the provided commit has subvenant commits, the drop will fail.
	Recursive bool `protobuf:"varint,2,opt,name=recursive,proto3" json:"recursive,omitempty"`
	// contains filtered or unexported fields
}

func (*DropCommitRequest) Descriptor deprecated added in v2.8.0

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

Deprecated: Use DropCommitRequest.ProtoReflect.Descriptor instead.

func (*DropCommitRequest) GetCommit added in v2.8.0

func (x *DropCommitRequest) GetCommit() *Commit

func (*DropCommitRequest) GetRecursive added in v2.8.0

func (x *DropCommitRequest) GetRecursive() bool

func (*DropCommitRequest) MarshalLogObject added in v2.8.0

func (x *DropCommitRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DropCommitRequest) ProtoMessage added in v2.8.0

func (*DropCommitRequest) ProtoMessage()

func (*DropCommitRequest) ProtoReflect added in v2.8.0

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

func (*DropCommitRequest) Reset added in v2.8.0

func (x *DropCommitRequest) Reset()

func (*DropCommitRequest) String added in v2.8.0

func (x *DropCommitRequest) String() string

func (*DropCommitRequest) Validate added in v2.8.0

func (m *DropCommitRequest) Validate() error

Validate checks the field values on DropCommitRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DropCommitRequest) ValidateAll added in v2.8.0

func (m *DropCommitRequest) ValidateAll() error

ValidateAll checks the field values on DropCommitRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DropCommitRequestMultiError, or nil if none found.

type DropCommitRequestMultiError added in v2.8.0

type DropCommitRequestMultiError []error

DropCommitRequestMultiError is an error wrapping multiple validation errors returned by DropCommitRequest.ValidateAll() if the designated constraints aren't met.

func (DropCommitRequestMultiError) AllErrors added in v2.8.0

func (m DropCommitRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DropCommitRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type DropCommitRequestValidationError added in v2.8.0

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

DropCommitRequestValidationError is the validation error returned by DropCommitRequest.Validate if the designated constraints aren't met.

func (DropCommitRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (DropCommitRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DropCommitRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (DropCommitRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (DropCommitRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (DropCommitRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type DropCommitResponse added in v2.8.0

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

func (*DropCommitResponse) Descriptor deprecated added in v2.8.0

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

Deprecated: Use DropCommitResponse.ProtoReflect.Descriptor instead.

func (*DropCommitResponse) MarshalLogObject added in v2.8.0

func (x *DropCommitResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DropCommitResponse) ProtoMessage added in v2.8.0

func (*DropCommitResponse) ProtoMessage()

func (*DropCommitResponse) ProtoReflect added in v2.8.0

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

func (*DropCommitResponse) Reset added in v2.8.0

func (x *DropCommitResponse) Reset()

func (*DropCommitResponse) String added in v2.8.0

func (x *DropCommitResponse) String() string

func (*DropCommitResponse) Validate added in v2.8.0

func (m *DropCommitResponse) Validate() error

Validate checks the field values on DropCommitResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DropCommitResponse) ValidateAll added in v2.8.0

func (m *DropCommitResponse) ValidateAll() error

ValidateAll checks the field values on DropCommitResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DropCommitResponseMultiError, or nil if none found.

type DropCommitResponseMultiError added in v2.8.0

type DropCommitResponseMultiError []error

DropCommitResponseMultiError is an error wrapping multiple validation errors returned by DropCommitResponse.ValidateAll() if the designated constraints aren't met.

func (DropCommitResponseMultiError) AllErrors added in v2.8.0

func (m DropCommitResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DropCommitResponseMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type DropCommitResponseValidationError added in v2.8.0

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

DropCommitResponseValidationError is the validation error returned by DropCommitResponse.Validate if the designated constraints aren't met.

func (DropCommitResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (DropCommitResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DropCommitResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (DropCommitResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (DropCommitResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (DropCommitResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type DropCommitSetRequest

type DropCommitSetRequest struct {
	CommitSet *CommitSet `protobuf:"bytes,1,opt,name=commit_set,json=commitSet,proto3" json:"commit_set,omitempty"`
	// contains filtered or unexported fields
}

func (*DropCommitSetRequest) Descriptor deprecated

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

Deprecated: Use DropCommitSetRequest.ProtoReflect.Descriptor instead.

func (*DropCommitSetRequest) GetCommitSet

func (x *DropCommitSetRequest) GetCommitSet() *CommitSet

func (*DropCommitSetRequest) MarshalLogObject

func (x *DropCommitSetRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DropCommitSetRequest) ProtoMessage

func (*DropCommitSetRequest) ProtoMessage()

func (*DropCommitSetRequest) ProtoReflect added in v2.7.0

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

func (*DropCommitSetRequest) Reset

func (x *DropCommitSetRequest) Reset()

func (*DropCommitSetRequest) String

func (x *DropCommitSetRequest) String() string

func (*DropCommitSetRequest) Validate added in v2.8.0

func (m *DropCommitSetRequest) Validate() error

Validate checks the field values on DropCommitSetRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DropCommitSetRequest) ValidateAll added in v2.8.0

func (m *DropCommitSetRequest) ValidateAll() error

ValidateAll checks the field values on DropCommitSetRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DropCommitSetRequestMultiError, or nil if none found.

type DropCommitSetRequestMultiError added in v2.8.0

type DropCommitSetRequestMultiError []error

DropCommitSetRequestMultiError is an error wrapping multiple validation errors returned by DropCommitSetRequest.ValidateAll() if the designated constraints aren't met.

func (DropCommitSetRequestMultiError) AllErrors added in v2.8.0

func (m DropCommitSetRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DropCommitSetRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type DropCommitSetRequestValidationError added in v2.8.0

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

DropCommitSetRequestValidationError is the validation error returned by DropCommitSetRequest.Validate if the designated constraints aren't met.

func (DropCommitSetRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (DropCommitSetRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DropCommitSetRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (DropCommitSetRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (DropCommitSetRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (DropCommitSetRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type EgressRequest

type EgressRequest struct {
	Commit *Commit `protobuf:"bytes,1,opt,name=commit,proto3" json:"commit,omitempty"`
	// Types that are assignable to Target:
	//
	//	*EgressRequest_ObjectStorage
	//	*EgressRequest_SqlDatabase
	Target isEgressRequest_Target `protobuf_oneof:"target"`
	// contains filtered or unexported fields
}

func (*EgressRequest) Descriptor deprecated

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

Deprecated: Use EgressRequest.ProtoReflect.Descriptor instead.

func (*EgressRequest) GetCommit

func (x *EgressRequest) GetCommit() *Commit

func (*EgressRequest) GetObjectStorage

func (x *EgressRequest) GetObjectStorage() *ObjectStorageEgress

func (*EgressRequest) GetSqlDatabase

func (x *EgressRequest) GetSqlDatabase() *SQLDatabaseEgress

func (*EgressRequest) GetTarget

func (m *EgressRequest) GetTarget() isEgressRequest_Target

func (*EgressRequest) MarshalLogObject

func (x *EgressRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*EgressRequest) ProtoMessage

func (*EgressRequest) ProtoMessage()

func (*EgressRequest) ProtoReflect added in v2.7.0

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

func (*EgressRequest) Reset

func (x *EgressRequest) Reset()

func (*EgressRequest) String

func (x *EgressRequest) String() string

func (*EgressRequest) Validate added in v2.8.0

func (m *EgressRequest) Validate() error

Validate checks the field values on EgressRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*EgressRequest) ValidateAll added in v2.8.0

func (m *EgressRequest) ValidateAll() error

ValidateAll checks the field values on EgressRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in EgressRequestMultiError, or nil if none found.

type EgressRequestMultiError added in v2.8.0

type EgressRequestMultiError []error

EgressRequestMultiError is an error wrapping multiple validation errors returned by EgressRequest.ValidateAll() if the designated constraints aren't met.

func (EgressRequestMultiError) AllErrors added in v2.8.0

func (m EgressRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (EgressRequestMultiError) Error added in v2.8.0

func (m EgressRequestMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type EgressRequestValidationError added in v2.8.0

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

EgressRequestValidationError is the validation error returned by EgressRequest.Validate if the designated constraints aren't met.

func (EgressRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (EgressRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (EgressRequestValidationError) ErrorName added in v2.8.0

func (e EgressRequestValidationError) ErrorName() string

ErrorName returns error name.

func (EgressRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (EgressRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (EgressRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type EgressRequest_ObjectStorage

type EgressRequest_ObjectStorage struct {
	ObjectStorage *ObjectStorageEgress `protobuf:"bytes,2,opt,name=object_storage,json=objectStorage,proto3,oneof"`
}

type EgressRequest_SqlDatabase

type EgressRequest_SqlDatabase struct {
	SqlDatabase *SQLDatabaseEgress `protobuf:"bytes,3,opt,name=sql_database,json=sqlDatabase,proto3,oneof"`
}

type EgressResponse

type EgressResponse struct {

	// Types that are assignable to Result:
	//
	//	*EgressResponse_ObjectStorage
	//	*EgressResponse_SqlDatabase
	Result isEgressResponse_Result `protobuf_oneof:"result"`
	// contains filtered or unexported fields
}

func (*EgressResponse) Descriptor deprecated

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

Deprecated: Use EgressResponse.ProtoReflect.Descriptor instead.

func (*EgressResponse) GetObjectStorage

func (x *EgressResponse) GetObjectStorage() *EgressResponse_ObjectStorageResult

func (*EgressResponse) GetResult

func (m *EgressResponse) GetResult() isEgressResponse_Result

func (*EgressResponse) GetSqlDatabase

func (x *EgressResponse) GetSqlDatabase() *EgressResponse_SQLDatabaseResult

func (*EgressResponse) MarshalLogObject

func (x *EgressResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*EgressResponse) ProtoMessage

func (*EgressResponse) ProtoMessage()

func (*EgressResponse) ProtoReflect added in v2.7.0

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

func (*EgressResponse) Reset

func (x *EgressResponse) Reset()

func (*EgressResponse) String

func (x *EgressResponse) String() string

func (*EgressResponse) Validate added in v2.8.0

func (m *EgressResponse) Validate() error

Validate checks the field values on EgressResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*EgressResponse) ValidateAll added in v2.8.0

func (m *EgressResponse) ValidateAll() error

ValidateAll checks the field values on EgressResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in EgressResponseMultiError, or nil if none found.

type EgressResponseMultiError added in v2.8.0

type EgressResponseMultiError []error

EgressResponseMultiError is an error wrapping multiple validation errors returned by EgressResponse.ValidateAll() if the designated constraints aren't met.

func (EgressResponseMultiError) AllErrors added in v2.8.0

func (m EgressResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (EgressResponseMultiError) Error added in v2.8.0

func (m EgressResponseMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type EgressResponseValidationError added in v2.8.0

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

EgressResponseValidationError is the validation error returned by EgressResponse.Validate if the designated constraints aren't met.

func (EgressResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (EgressResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (EgressResponseValidationError) ErrorName added in v2.8.0

func (e EgressResponseValidationError) ErrorName() string

ErrorName returns error name.

func (EgressResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (EgressResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (EgressResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type EgressResponse_ObjectStorage

type EgressResponse_ObjectStorage struct {
	ObjectStorage *EgressResponse_ObjectStorageResult `protobuf:"bytes,1,opt,name=object_storage,json=objectStorage,proto3,oneof"`
}

type EgressResponse_ObjectStorageResult

type EgressResponse_ObjectStorageResult struct {
	BytesWritten int64 `protobuf:"varint,1,opt,name=bytes_written,json=bytesWritten,proto3" json:"bytes_written,omitempty"`
	// contains filtered or unexported fields
}

func (*EgressResponse_ObjectStorageResult) Descriptor deprecated

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

Deprecated: Use EgressResponse_ObjectStorageResult.ProtoReflect.Descriptor instead.

func (*EgressResponse_ObjectStorageResult) GetBytesWritten

func (x *EgressResponse_ObjectStorageResult) GetBytesWritten() int64

func (*EgressResponse_ObjectStorageResult) MarshalLogObject

func (*EgressResponse_ObjectStorageResult) ProtoMessage

func (*EgressResponse_ObjectStorageResult) ProtoMessage()

func (*EgressResponse_ObjectStorageResult) ProtoReflect added in v2.7.0

func (*EgressResponse_ObjectStorageResult) Reset

func (*EgressResponse_ObjectStorageResult) String

func (*EgressResponse_ObjectStorageResult) Validate added in v2.8.0

Validate checks the field values on EgressResponse_ObjectStorageResult with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*EgressResponse_ObjectStorageResult) ValidateAll added in v2.8.0

func (m *EgressResponse_ObjectStorageResult) ValidateAll() error

ValidateAll checks the field values on EgressResponse_ObjectStorageResult with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in EgressResponse_ObjectStorageResultMultiError, or nil if none found.

type EgressResponse_ObjectStorageResultMultiError added in v2.8.0

type EgressResponse_ObjectStorageResultMultiError []error

EgressResponse_ObjectStorageResultMultiError is an error wrapping multiple validation errors returned by EgressResponse_ObjectStorageResult.ValidateAll() if the designated constraints aren't met.

func (EgressResponse_ObjectStorageResultMultiError) AllErrors added in v2.8.0

AllErrors returns a list of validation violation errors.

func (EgressResponse_ObjectStorageResultMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type EgressResponse_ObjectStorageResultValidationError added in v2.8.0

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

EgressResponse_ObjectStorageResultValidationError is the validation error returned by EgressResponse_ObjectStorageResult.Validate if the designated constraints aren't met.

func (EgressResponse_ObjectStorageResultValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (EgressResponse_ObjectStorageResultValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (EgressResponse_ObjectStorageResultValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (EgressResponse_ObjectStorageResultValidationError) Field added in v2.8.0

Field function returns field value.

func (EgressResponse_ObjectStorageResultValidationError) Key added in v2.8.0

Key function returns key value.

func (EgressResponse_ObjectStorageResultValidationError) Reason added in v2.8.0

Reason function returns reason value.

type EgressResponse_SQLDatabaseResult

type EgressResponse_SQLDatabaseResult struct {
	RowsWritten map[string]int64 `` /* 183-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*EgressResponse_SQLDatabaseResult) Descriptor deprecated

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

Deprecated: Use EgressResponse_SQLDatabaseResult.ProtoReflect.Descriptor instead.

func (*EgressResponse_SQLDatabaseResult) GetRowsWritten

func (x *EgressResponse_SQLDatabaseResult) GetRowsWritten() map[string]int64

func (*EgressResponse_SQLDatabaseResult) MarshalLogObject

func (*EgressResponse_SQLDatabaseResult) ProtoMessage

func (*EgressResponse_SQLDatabaseResult) ProtoMessage()

func (*EgressResponse_SQLDatabaseResult) ProtoReflect added in v2.7.0

func (*EgressResponse_SQLDatabaseResult) Reset

func (*EgressResponse_SQLDatabaseResult) String

func (*EgressResponse_SQLDatabaseResult) Validate added in v2.8.0

Validate checks the field values on EgressResponse_SQLDatabaseResult with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*EgressResponse_SQLDatabaseResult) ValidateAll added in v2.8.0

func (m *EgressResponse_SQLDatabaseResult) ValidateAll() error

ValidateAll checks the field values on EgressResponse_SQLDatabaseResult with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in EgressResponse_SQLDatabaseResultMultiError, or nil if none found.

type EgressResponse_SQLDatabaseResultMultiError added in v2.8.0

type EgressResponse_SQLDatabaseResultMultiError []error

EgressResponse_SQLDatabaseResultMultiError is an error wrapping multiple validation errors returned by EgressResponse_SQLDatabaseResult.ValidateAll() if the designated constraints aren't met.

func (EgressResponse_SQLDatabaseResultMultiError) AllErrors added in v2.8.0

AllErrors returns a list of validation violation errors.

func (EgressResponse_SQLDatabaseResultMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type EgressResponse_SQLDatabaseResultValidationError added in v2.8.0

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

EgressResponse_SQLDatabaseResultValidationError is the validation error returned by EgressResponse_SQLDatabaseResult.Validate if the designated constraints aren't met.

func (EgressResponse_SQLDatabaseResultValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (EgressResponse_SQLDatabaseResultValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (EgressResponse_SQLDatabaseResultValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (EgressResponse_SQLDatabaseResultValidationError) Field added in v2.8.0

Field function returns field value.

func (EgressResponse_SQLDatabaseResultValidationError) Key added in v2.8.0

Key function returns key value.

func (EgressResponse_SQLDatabaseResultValidationError) Reason added in v2.8.0

Reason function returns reason value.

type EgressResponse_SqlDatabase

type EgressResponse_SqlDatabase struct {
	SqlDatabase *EgressResponse_SQLDatabaseResult `protobuf:"bytes,2,opt,name=sql_database,json=sqlDatabase,proto3,oneof"`
}

type File

type File struct {
	Commit *Commit `protobuf:"bytes,1,opt,name=commit,proto3" json:"commit,omitempty"`
	Path   string  `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
	Datum  string  `protobuf:"bytes,3,opt,name=datum,proto3" json:"datum,omitempty"`
	// contains filtered or unexported fields
}

func (*File) Descriptor deprecated

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

Deprecated: Use File.ProtoReflect.Descriptor instead.

func (*File) GetCommit

func (x *File) GetCommit() *Commit

func (*File) GetDatum

func (x *File) GetDatum() string

func (*File) GetPath

func (x *File) GetPath() string

func (*File) MarshalLogObject

func (x *File) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*File) ProtoMessage

func (*File) ProtoMessage()

func (*File) ProtoReflect added in v2.7.0

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

func (*File) Reset

func (x *File) Reset()

func (*File) String

func (x *File) String() string

func (*File) Validate added in v2.8.0

func (m *File) Validate() error

Validate checks the field values on File with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*File) ValidateAll added in v2.8.0

func (m *File) ValidateAll() error

ValidateAll checks the field values on File with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in FileMultiError, or nil if none found.

type FileInfo

type FileInfo struct {
	File      *File                  `protobuf:"bytes,1,opt,name=file,proto3" json:"file,omitempty"`
	FileType  FileType               `protobuf:"varint,2,opt,name=file_type,json=fileType,proto3,enum=pfs_v2.FileType" json:"file_type,omitempty"`
	Committed *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=committed,proto3" json:"committed,omitempty"`
	SizeBytes int64                  `protobuf:"varint,4,opt,name=size_bytes,json=sizeBytes,proto3" json:"size_bytes,omitempty"`
	Hash      []byte                 `protobuf:"bytes,5,opt,name=hash,proto3" json:"hash,omitempty"`
	// contains filtered or unexported fields
}

func (*FileInfo) Descriptor deprecated

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

Deprecated: Use FileInfo.ProtoReflect.Descriptor instead.

func (*FileInfo) GetCommitted

func (x *FileInfo) GetCommitted() *timestamppb.Timestamp

func (*FileInfo) GetFile

func (x *FileInfo) GetFile() *File

func (*FileInfo) GetFileType

func (x *FileInfo) GetFileType() FileType

func (*FileInfo) GetHash

func (x *FileInfo) GetHash() []byte

func (*FileInfo) GetSizeBytes

func (x *FileInfo) GetSizeBytes() int64

func (*FileInfo) MarshalLogObject

func (x *FileInfo) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*FileInfo) ProtoMessage

func (*FileInfo) ProtoMessage()

func (*FileInfo) ProtoReflect added in v2.7.0

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

func (*FileInfo) Reset

func (x *FileInfo) Reset()

func (*FileInfo) String

func (x *FileInfo) String() string

func (*FileInfo) Validate added in v2.8.0

func (m *FileInfo) Validate() error

Validate checks the field values on FileInfo with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*FileInfo) ValidateAll added in v2.8.0

func (m *FileInfo) ValidateAll() error

ValidateAll checks the field values on FileInfo with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in FileInfoMultiError, or nil if none found.

type FileInfoMultiError added in v2.8.0

type FileInfoMultiError []error

FileInfoMultiError is an error wrapping multiple validation errors returned by FileInfo.ValidateAll() if the designated constraints aren't met.

func (FileInfoMultiError) AllErrors added in v2.8.0

func (m FileInfoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (FileInfoMultiError) Error added in v2.8.0

func (m FileInfoMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type FileInfoValidationError added in v2.8.0

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

FileInfoValidationError is the validation error returned by FileInfo.Validate if the designated constraints aren't met.

func (FileInfoValidationError) Cause added in v2.8.0

func (e FileInfoValidationError) Cause() error

Cause function returns cause value.

func (FileInfoValidationError) Error added in v2.8.0

func (e FileInfoValidationError) Error() string

Error satisfies the builtin error interface

func (FileInfoValidationError) ErrorName added in v2.8.0

func (e FileInfoValidationError) ErrorName() string

ErrorName returns error name.

func (FileInfoValidationError) Field added in v2.8.0

func (e FileInfoValidationError) Field() string

Field function returns field value.

func (FileInfoValidationError) Key added in v2.8.0

func (e FileInfoValidationError) Key() bool

Key function returns key value.

func (FileInfoValidationError) Reason added in v2.8.0

func (e FileInfoValidationError) Reason() string

Reason function returns reason value.

type FileMultiError added in v2.8.0

type FileMultiError []error

FileMultiError is an error wrapping multiple validation errors returned by File.ValidateAll() if the designated constraints aren't met.

func (FileMultiError) AllErrors added in v2.8.0

func (m FileMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (FileMultiError) Error added in v2.8.0

func (m FileMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type FileType

type FileType int32
const (
	FileType_RESERVED FileType = 0
	FileType_FILE     FileType = 1
	FileType_DIR      FileType = 2
)

func (FileType) Descriptor added in v2.7.0

func (FileType) Descriptor() protoreflect.EnumDescriptor

func (FileType) Enum added in v2.7.0

func (x FileType) Enum() *FileType

func (FileType) EnumDescriptor deprecated

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

Deprecated: Use FileType.Descriptor instead.

func (FileType) Number added in v2.7.0

func (x FileType) Number() protoreflect.EnumNumber

func (FileType) String

func (x FileType) String() string

func (FileType) Type added in v2.7.0

type FileValidationError added in v2.8.0

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

FileValidationError is the validation error returned by File.Validate if the designated constraints aren't met.

func (FileValidationError) Cause added in v2.8.0

func (e FileValidationError) Cause() error

Cause function returns cause value.

func (FileValidationError) Error added in v2.8.0

func (e FileValidationError) Error() string

Error satisfies the builtin error interface

func (FileValidationError) ErrorName added in v2.8.0

func (e FileValidationError) ErrorName() string

ErrorName returns error name.

func (FileValidationError) Field added in v2.8.0

func (e FileValidationError) Field() string

Field function returns field value.

func (FileValidationError) Key added in v2.8.0

func (e FileValidationError) Key() bool

Key function returns key value.

func (FileValidationError) Reason added in v2.8.0

func (e FileValidationError) Reason() string

Reason function returns reason value.

type FindCommitsRequest

type FindCommitsRequest struct {
	Start    *Commit `protobuf:"bytes,1,opt,name=start,proto3" json:"start,omitempty"`
	FilePath string  `protobuf:"bytes,2,opt,name=file_path,json=filePath,proto3" json:"file_path,omitempty"`
	Limit    uint32  `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"` // a limit of 0 means there is no upper bound on the limit.
	// contains filtered or unexported fields
}

func (*FindCommitsRequest) Descriptor deprecated

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

Deprecated: Use FindCommitsRequest.ProtoReflect.Descriptor instead.

func (*FindCommitsRequest) GetFilePath

func (x *FindCommitsRequest) GetFilePath() string

func (*FindCommitsRequest) GetLimit

func (x *FindCommitsRequest) GetLimit() uint32

func (*FindCommitsRequest) GetStart

func (x *FindCommitsRequest) GetStart() *Commit

func (*FindCommitsRequest) MarshalLogObject

func (x *FindCommitsRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*FindCommitsRequest) ProtoMessage

func (*FindCommitsRequest) ProtoMessage()

func (*FindCommitsRequest) ProtoReflect added in v2.7.0

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

func (*FindCommitsRequest) Reset

func (x *FindCommitsRequest) Reset()

func (*FindCommitsRequest) String

func (x *FindCommitsRequest) String() string

func (*FindCommitsRequest) Validate added in v2.8.0

func (m *FindCommitsRequest) Validate() error

Validate checks the field values on FindCommitsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*FindCommitsRequest) ValidateAll added in v2.8.0

func (m *FindCommitsRequest) ValidateAll() error

ValidateAll checks the field values on FindCommitsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in FindCommitsRequestMultiError, or nil if none found.

type FindCommitsRequestMultiError added in v2.8.0

type FindCommitsRequestMultiError []error

FindCommitsRequestMultiError is an error wrapping multiple validation errors returned by FindCommitsRequest.ValidateAll() if the designated constraints aren't met.

func (FindCommitsRequestMultiError) AllErrors added in v2.8.0

func (m FindCommitsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (FindCommitsRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type FindCommitsRequestValidationError added in v2.8.0

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

FindCommitsRequestValidationError is the validation error returned by FindCommitsRequest.Validate if the designated constraints aren't met.

func (FindCommitsRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (FindCommitsRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (FindCommitsRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (FindCommitsRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (FindCommitsRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (FindCommitsRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type FindCommitsResponse

type FindCommitsResponse struct {

	// Types that are assignable to Result:
	//
	//	*FindCommitsResponse_FoundCommit
	//	*FindCommitsResponse_LastSearchedCommit
	Result          isFindCommitsResponse_Result `protobuf_oneof:"result"`
	CommitsSearched uint32                       `protobuf:"varint,3,opt,name=commits_searched,json=commitsSearched,proto3" json:"commits_searched,omitempty"`
	// contains filtered or unexported fields
}

func (*FindCommitsResponse) Descriptor deprecated

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

Deprecated: Use FindCommitsResponse.ProtoReflect.Descriptor instead.

func (*FindCommitsResponse) GetCommitsSearched

func (x *FindCommitsResponse) GetCommitsSearched() uint32

func (*FindCommitsResponse) GetFoundCommit

func (x *FindCommitsResponse) GetFoundCommit() *Commit

func (*FindCommitsResponse) GetLastSearchedCommit

func (x *FindCommitsResponse) GetLastSearchedCommit() *Commit

func (*FindCommitsResponse) GetResult

func (m *FindCommitsResponse) GetResult() isFindCommitsResponse_Result

func (*FindCommitsResponse) MarshalLogObject

func (x *FindCommitsResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*FindCommitsResponse) ProtoMessage

func (*FindCommitsResponse) ProtoMessage()

func (*FindCommitsResponse) ProtoReflect added in v2.7.0

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

func (*FindCommitsResponse) Reset

func (x *FindCommitsResponse) Reset()

func (*FindCommitsResponse) String

func (x *FindCommitsResponse) String() string

func (*FindCommitsResponse) Validate added in v2.8.0

func (m *FindCommitsResponse) Validate() error

Validate checks the field values on FindCommitsResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*FindCommitsResponse) ValidateAll added in v2.8.0

func (m *FindCommitsResponse) ValidateAll() error

ValidateAll checks the field values on FindCommitsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in FindCommitsResponseMultiError, or nil if none found.

type FindCommitsResponseMultiError added in v2.8.0

type FindCommitsResponseMultiError []error

FindCommitsResponseMultiError is an error wrapping multiple validation errors returned by FindCommitsResponse.ValidateAll() if the designated constraints aren't met.

func (FindCommitsResponseMultiError) AllErrors added in v2.8.0

func (m FindCommitsResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (FindCommitsResponseMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type FindCommitsResponseValidationError added in v2.8.0

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

FindCommitsResponseValidationError is the validation error returned by FindCommitsResponse.Validate if the designated constraints aren't met.

func (FindCommitsResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (FindCommitsResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (FindCommitsResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (FindCommitsResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (FindCommitsResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (FindCommitsResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type FindCommitsResponse_FoundCommit

type FindCommitsResponse_FoundCommit struct {
	FoundCommit *Commit `protobuf:"bytes,1,opt,name=found_commit,json=foundCommit,proto3,oneof"`
}

type FindCommitsResponse_LastSearchedCommit

type FindCommitsResponse_LastSearchedCommit struct {
	LastSearchedCommit *Commit `protobuf:"bytes,2,opt,name=last_searched_commit,json=lastSearchedCommit,proto3,oneof"`
}

type FinishCommitRequest

type FinishCommitRequest struct {
	Commit *Commit `protobuf:"bytes,1,opt,name=commit,proto3" json:"commit,omitempty"`
	// description is a user-provided string describing this commit. Setting this
	// will overwrite the description set in StartCommit
	Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Error       string `protobuf:"bytes,3,opt,name=error,proto3" json:"error,omitempty"`
	Force       bool   `protobuf:"varint,4,opt,name=force,proto3" json:"force,omitempty"`
	// contains filtered or unexported fields
}

func (*FinishCommitRequest) Descriptor deprecated

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

Deprecated: Use FinishCommitRequest.ProtoReflect.Descriptor instead.

func (*FinishCommitRequest) GetCommit

func (x *FinishCommitRequest) GetCommit() *Commit

func (*FinishCommitRequest) GetDescription

func (x *FinishCommitRequest) GetDescription() string

func (*FinishCommitRequest) GetError

func (x *FinishCommitRequest) GetError() string

func (*FinishCommitRequest) GetForce

func (x *FinishCommitRequest) GetForce() bool

func (*FinishCommitRequest) MarshalLogObject

func (x *FinishCommitRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*FinishCommitRequest) ProtoMessage

func (*FinishCommitRequest) ProtoMessage()

func (*FinishCommitRequest) ProtoReflect added in v2.7.0

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

func (*FinishCommitRequest) Reset

func (x *FinishCommitRequest) Reset()

func (*FinishCommitRequest) String

func (x *FinishCommitRequest) String() string

func (*FinishCommitRequest) Validate added in v2.8.0

func (m *FinishCommitRequest) Validate() error

Validate checks the field values on FinishCommitRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*FinishCommitRequest) ValidateAll added in v2.8.0

func (m *FinishCommitRequest) ValidateAll() error

ValidateAll checks the field values on FinishCommitRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in FinishCommitRequestMultiError, or nil if none found.

type FinishCommitRequestMultiError added in v2.8.0

type FinishCommitRequestMultiError []error

FinishCommitRequestMultiError is an error wrapping multiple validation errors returned by FinishCommitRequest.ValidateAll() if the designated constraints aren't met.

func (FinishCommitRequestMultiError) AllErrors added in v2.8.0

func (m FinishCommitRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (FinishCommitRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type FinishCommitRequestValidationError added in v2.8.0

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

FinishCommitRequestValidationError is the validation error returned by FinishCommitRequest.Validate if the designated constraints aren't met.

func (FinishCommitRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (FinishCommitRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (FinishCommitRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (FinishCommitRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (FinishCommitRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (FinishCommitRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type FsckRequest

type FsckRequest struct {
	Fix bool `protobuf:"varint,1,opt,name=fix,proto3" json:"fix,omitempty"`
	// Types that are assignable to ZombieCheck:
	//
	//	*FsckRequest_ZombieTarget
	//	*FsckRequest_ZombieAll
	ZombieCheck isFsckRequest_ZombieCheck `protobuf_oneof:"zombie_check"`
	// contains filtered or unexported fields
}

func (*FsckRequest) Descriptor deprecated

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

Deprecated: Use FsckRequest.ProtoReflect.Descriptor instead.

func (*FsckRequest) GetFix

func (x *FsckRequest) GetFix() bool

func (*FsckRequest) GetZombieAll

func (x *FsckRequest) GetZombieAll() bool

func (*FsckRequest) GetZombieCheck

func (m *FsckRequest) GetZombieCheck() isFsckRequest_ZombieCheck

func (*FsckRequest) GetZombieTarget

func (x *FsckRequest) GetZombieTarget() *Commit

func (*FsckRequest) MarshalLogObject

func (x *FsckRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*FsckRequest) ProtoMessage

func (*FsckRequest) ProtoMessage()

func (*FsckRequest) ProtoReflect added in v2.7.0

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

func (*FsckRequest) Reset

func (x *FsckRequest) Reset()

func (*FsckRequest) String

func (x *FsckRequest) String() string

func (*FsckRequest) Validate added in v2.8.0

func (m *FsckRequest) Validate() error

Validate checks the field values on FsckRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*FsckRequest) ValidateAll added in v2.8.0

func (m *FsckRequest) ValidateAll() error

ValidateAll checks the field values on FsckRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in FsckRequestMultiError, or nil if none found.

type FsckRequestMultiError added in v2.8.0

type FsckRequestMultiError []error

FsckRequestMultiError is an error wrapping multiple validation errors returned by FsckRequest.ValidateAll() if the designated constraints aren't met.

func (FsckRequestMultiError) AllErrors added in v2.8.0

func (m FsckRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (FsckRequestMultiError) Error added in v2.8.0

func (m FsckRequestMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type FsckRequestValidationError added in v2.8.0

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

FsckRequestValidationError is the validation error returned by FsckRequest.Validate if the designated constraints aren't met.

func (FsckRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (FsckRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (FsckRequestValidationError) ErrorName added in v2.8.0

func (e FsckRequestValidationError) ErrorName() string

ErrorName returns error name.

func (FsckRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (FsckRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (FsckRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type FsckRequest_ZombieAll

type FsckRequest_ZombieAll struct {
	// run zombie data detection against all pipelines
	ZombieAll bool `protobuf:"varint,3,opt,name=zombie_all,json=zombieAll,proto3,oneof"`
}

type FsckRequest_ZombieTarget

type FsckRequest_ZombieTarget struct {
	ZombieTarget *Commit `protobuf:"bytes,2,opt,name=zombie_target,json=zombieTarget,proto3,oneof"`
}

type FsckResponse

type FsckResponse struct {
	Fix   string `protobuf:"bytes,1,opt,name=fix,proto3" json:"fix,omitempty"`
	Error string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*FsckResponse) Descriptor deprecated

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

Deprecated: Use FsckResponse.ProtoReflect.Descriptor instead.

func (*FsckResponse) GetError

func (x *FsckResponse) GetError() string

func (*FsckResponse) GetFix

func (x *FsckResponse) GetFix() string

func (*FsckResponse) MarshalLogObject

func (x *FsckResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*FsckResponse) ProtoMessage

func (*FsckResponse) ProtoMessage()

func (*FsckResponse) ProtoReflect added in v2.7.0

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

func (*FsckResponse) Reset

func (x *FsckResponse) Reset()

func (*FsckResponse) String

func (x *FsckResponse) String() string

func (*FsckResponse) Validate added in v2.8.0

func (m *FsckResponse) Validate() error

Validate checks the field values on FsckResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*FsckResponse) ValidateAll added in v2.8.0

func (m *FsckResponse) ValidateAll() error

ValidateAll checks the field values on FsckResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in FsckResponseMultiError, or nil if none found.

type FsckResponseMultiError added in v2.8.0

type FsckResponseMultiError []error

FsckResponseMultiError is an error wrapping multiple validation errors returned by FsckResponse.ValidateAll() if the designated constraints aren't met.

func (FsckResponseMultiError) AllErrors added in v2.8.0

func (m FsckResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (FsckResponseMultiError) Error added in v2.8.0

func (m FsckResponseMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type FsckResponseValidationError added in v2.8.0

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

FsckResponseValidationError is the validation error returned by FsckResponse.Validate if the designated constraints aren't met.

func (FsckResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (FsckResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (FsckResponseValidationError) ErrorName added in v2.8.0

func (e FsckResponseValidationError) ErrorName() string

ErrorName returns error name.

func (FsckResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (FsckResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (FsckResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type GetCacheRequest

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

func (*GetCacheRequest) Descriptor deprecated

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

Deprecated: Use GetCacheRequest.ProtoReflect.Descriptor instead.

func (*GetCacheRequest) GetKey

func (x *GetCacheRequest) GetKey() string

func (*GetCacheRequest) MarshalLogObject

func (x *GetCacheRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*GetCacheRequest) ProtoMessage

func (*GetCacheRequest) ProtoMessage()

func (*GetCacheRequest) ProtoReflect added in v2.7.0

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

func (*GetCacheRequest) Reset

func (x *GetCacheRequest) Reset()

func (*GetCacheRequest) String

func (x *GetCacheRequest) String() string

func (*GetCacheRequest) Validate added in v2.8.0

func (m *GetCacheRequest) Validate() error

Validate checks the field values on GetCacheRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetCacheRequest) ValidateAll added in v2.8.0

func (m *GetCacheRequest) ValidateAll() error

ValidateAll checks the field values on GetCacheRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetCacheRequestMultiError, or nil if none found.

type GetCacheRequestMultiError added in v2.8.0

type GetCacheRequestMultiError []error

GetCacheRequestMultiError is an error wrapping multiple validation errors returned by GetCacheRequest.ValidateAll() if the designated constraints aren't met.

func (GetCacheRequestMultiError) AllErrors added in v2.8.0

func (m GetCacheRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetCacheRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type GetCacheRequestValidationError added in v2.8.0

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

GetCacheRequestValidationError is the validation error returned by GetCacheRequest.Validate if the designated constraints aren't met.

func (GetCacheRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (GetCacheRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (GetCacheRequestValidationError) ErrorName added in v2.8.0

func (e GetCacheRequestValidationError) ErrorName() string

ErrorName returns error name.

func (GetCacheRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (GetCacheRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (GetCacheRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type GetCacheResponse

type GetCacheResponse struct {
	Value *anypb.Any `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCacheResponse) Descriptor deprecated

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

Deprecated: Use GetCacheResponse.ProtoReflect.Descriptor instead.

func (*GetCacheResponse) GetValue

func (x *GetCacheResponse) GetValue() *anypb.Any

func (*GetCacheResponse) MarshalLogObject

func (x *GetCacheResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*GetCacheResponse) ProtoMessage

func (*GetCacheResponse) ProtoMessage()

func (*GetCacheResponse) ProtoReflect added in v2.7.0

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

func (*GetCacheResponse) Reset

func (x *GetCacheResponse) Reset()

func (*GetCacheResponse) String

func (x *GetCacheResponse) String() string

func (*GetCacheResponse) Validate added in v2.8.0

func (m *GetCacheResponse) Validate() error

Validate checks the field values on GetCacheResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetCacheResponse) ValidateAll added in v2.8.0

func (m *GetCacheResponse) ValidateAll() error

ValidateAll checks the field values on GetCacheResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetCacheResponseMultiError, or nil if none found.

type GetCacheResponseMultiError added in v2.8.0

type GetCacheResponseMultiError []error

GetCacheResponseMultiError is an error wrapping multiple validation errors returned by GetCacheResponse.ValidateAll() if the designated constraints aren't met.

func (GetCacheResponseMultiError) AllErrors added in v2.8.0

func (m GetCacheResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetCacheResponseMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type GetCacheResponseValidationError added in v2.8.0

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

GetCacheResponseValidationError is the validation error returned by GetCacheResponse.Validate if the designated constraints aren't met.

func (GetCacheResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (GetCacheResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (GetCacheResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (GetCacheResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (GetCacheResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (GetCacheResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type GetFileRequest

type GetFileRequest struct {
	File      *File      `protobuf:"bytes,1,opt,name=file,proto3" json:"file,omitempty"`
	URL       string     `protobuf:"bytes,2,opt,name=URL,proto3" json:"URL,omitempty"`
	Offset    int64      `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
	PathRange *PathRange `protobuf:"bytes,4,opt,name=path_range,json=pathRange,proto3" json:"path_range,omitempty"`
	// contains filtered or unexported fields
}

func (*GetFileRequest) Descriptor deprecated

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

Deprecated: Use GetFileRequest.ProtoReflect.Descriptor instead.

func (*GetFileRequest) GetFile

func (x *GetFileRequest) GetFile() *File

func (*GetFileRequest) GetOffset

func (x *GetFileRequest) GetOffset() int64

func (*GetFileRequest) GetPathRange

func (x *GetFileRequest) GetPathRange() *PathRange

func (*GetFileRequest) GetURL

func (x *GetFileRequest) GetURL() string

func (*GetFileRequest) MarshalLogObject

func (x *GetFileRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*GetFileRequest) ProtoMessage

func (*GetFileRequest) ProtoMessage()

func (*GetFileRequest) ProtoReflect added in v2.7.0

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

func (*GetFileRequest) Reset

func (x *GetFileRequest) Reset()

func (*GetFileRequest) String

func (x *GetFileRequest) String() string

func (*GetFileRequest) Validate added in v2.8.0

func (m *GetFileRequest) Validate() error

Validate checks the field values on GetFileRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetFileRequest) ValidateAll added in v2.8.0

func (m *GetFileRequest) ValidateAll() error

ValidateAll checks the field values on GetFileRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetFileRequestMultiError, or nil if none found.

type GetFileRequestMultiError added in v2.8.0

type GetFileRequestMultiError []error

GetFileRequestMultiError is an error wrapping multiple validation errors returned by GetFileRequest.ValidateAll() if the designated constraints aren't met.

func (GetFileRequestMultiError) AllErrors added in v2.8.0

func (m GetFileRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetFileRequestMultiError) Error added in v2.8.0

func (m GetFileRequestMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type GetFileRequestValidationError added in v2.8.0

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

GetFileRequestValidationError is the validation error returned by GetFileRequest.Validate if the designated constraints aren't met.

func (GetFileRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (GetFileRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (GetFileRequestValidationError) ErrorName added in v2.8.0

func (e GetFileRequestValidationError) ErrorName() string

ErrorName returns error name.

func (GetFileRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (GetFileRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (GetFileRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type GetFileSetRequest

type GetFileSetRequest struct {
	Commit *Commit                       `protobuf:"bytes,1,opt,name=commit,proto3" json:"commit,omitempty"`
	Type   GetFileSetRequest_FileSetType `protobuf:"varint,2,opt,name=type,proto3,enum=pfs_v2.GetFileSetRequest_FileSetType" json:"type,omitempty"`
	// contains filtered or unexported fields
}

func (*GetFileSetRequest) Descriptor deprecated

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

Deprecated: Use GetFileSetRequest.ProtoReflect.Descriptor instead.

func (*GetFileSetRequest) GetCommit

func (x *GetFileSetRequest) GetCommit() *Commit

func (*GetFileSetRequest) GetType added in v2.9.0

func (*GetFileSetRequest) MarshalLogObject

func (x *GetFileSetRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*GetFileSetRequest) ProtoMessage

func (*GetFileSetRequest) ProtoMessage()

func (*GetFileSetRequest) ProtoReflect added in v2.7.0

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

func (*GetFileSetRequest) Reset

func (x *GetFileSetRequest) Reset()

func (*GetFileSetRequest) String

func (x *GetFileSetRequest) String() string

func (*GetFileSetRequest) Validate added in v2.8.0

func (m *GetFileSetRequest) Validate() error

Validate checks the field values on GetFileSetRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetFileSetRequest) ValidateAll added in v2.8.0

func (m *GetFileSetRequest) ValidateAll() error

ValidateAll checks the field values on GetFileSetRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetFileSetRequestMultiError, or nil if none found.

type GetFileSetRequestMultiError added in v2.8.0

type GetFileSetRequestMultiError []error

GetFileSetRequestMultiError is an error wrapping multiple validation errors returned by GetFileSetRequest.ValidateAll() if the designated constraints aren't met.

func (GetFileSetRequestMultiError) AllErrors added in v2.8.0

func (m GetFileSetRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetFileSetRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type GetFileSetRequestValidationError added in v2.8.0

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

GetFileSetRequestValidationError is the validation error returned by GetFileSetRequest.Validate if the designated constraints aren't met.

func (GetFileSetRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (GetFileSetRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (GetFileSetRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (GetFileSetRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (GetFileSetRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (GetFileSetRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type GetFileSetRequest_FileSetType added in v2.9.0

type GetFileSetRequest_FileSetType int32
const (
	GetFileSetRequest_TOTAL GetFileSetRequest_FileSetType = 0
	GetFileSetRequest_DIFF  GetFileSetRequest_FileSetType = 1
)

func (GetFileSetRequest_FileSetType) Descriptor added in v2.9.0

func (GetFileSetRequest_FileSetType) Enum added in v2.9.0

func (GetFileSetRequest_FileSetType) EnumDescriptor deprecated added in v2.9.0

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

Deprecated: Use GetFileSetRequest_FileSetType.Descriptor instead.

func (GetFileSetRequest_FileSetType) Number added in v2.9.0

func (GetFileSetRequest_FileSetType) String added in v2.9.0

func (GetFileSetRequest_FileSetType) Type added in v2.9.0

type GlobFileRequest

type GlobFileRequest struct {
	Commit    *Commit    `protobuf:"bytes,1,opt,name=commit,proto3" json:"commit,omitempty"`
	Pattern   string     `protobuf:"bytes,2,opt,name=pattern,proto3" json:"pattern,omitempty"`
	PathRange *PathRange `protobuf:"bytes,3,opt,name=path_range,json=pathRange,proto3" json:"path_range,omitempty"`
	// contains filtered or unexported fields
}

func (*GlobFileRequest) Descriptor deprecated

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

Deprecated: Use GlobFileRequest.ProtoReflect.Descriptor instead.

func (*GlobFileRequest) GetCommit

func (x *GlobFileRequest) GetCommit() *Commit

func (*GlobFileRequest) GetPathRange

func (x *GlobFileRequest) GetPathRange() *PathRange

func (*GlobFileRequest) GetPattern

func (x *GlobFileRequest) GetPattern() string

func (*GlobFileRequest) MarshalLogObject

func (x *GlobFileRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*GlobFileRequest) ProtoMessage

func (*GlobFileRequest) ProtoMessage()

func (*GlobFileRequest) ProtoReflect added in v2.7.0

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

func (*GlobFileRequest) Reset

func (x *GlobFileRequest) Reset()

func (*GlobFileRequest) String

func (x *GlobFileRequest) String() string

func (*GlobFileRequest) Validate added in v2.8.0

func (m *GlobFileRequest) Validate() error

Validate checks the field values on GlobFileRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GlobFileRequest) ValidateAll added in v2.8.0

func (m *GlobFileRequest) ValidateAll() error

ValidateAll checks the field values on GlobFileRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GlobFileRequestMultiError, or nil if none found.

type GlobFileRequestMultiError added in v2.8.0

type GlobFileRequestMultiError []error

GlobFileRequestMultiError is an error wrapping multiple validation errors returned by GlobFileRequest.ValidateAll() if the designated constraints aren't met.

func (GlobFileRequestMultiError) AllErrors added in v2.8.0

func (m GlobFileRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GlobFileRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type GlobFileRequestValidationError added in v2.8.0

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

GlobFileRequestValidationError is the validation error returned by GlobFileRequest.Validate if the designated constraints aren't met.

func (GlobFileRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (GlobFileRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (GlobFileRequestValidationError) ErrorName added in v2.8.0

func (e GlobFileRequestValidationError) ErrorName() string

ErrorName returns error name.

func (GlobFileRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (GlobFileRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (GlobFileRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type InspectBranchRequest

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

func (*InspectBranchRequest) Descriptor deprecated

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

Deprecated: Use InspectBranchRequest.ProtoReflect.Descriptor instead.

func (*InspectBranchRequest) GetBranch

func (x *InspectBranchRequest) GetBranch() *Branch

func (*InspectBranchRequest) MarshalLogObject

func (x *InspectBranchRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*InspectBranchRequest) ProtoMessage

func (*InspectBranchRequest) ProtoMessage()

func (*InspectBranchRequest) ProtoReflect added in v2.7.0

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

func (*InspectBranchRequest) Reset

func (x *InspectBranchRequest) Reset()

func (*InspectBranchRequest) String

func (x *InspectBranchRequest) String() string

func (*InspectBranchRequest) Validate added in v2.8.0

func (m *InspectBranchRequest) Validate() error

Validate checks the field values on InspectBranchRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*InspectBranchRequest) ValidateAll added in v2.8.0

func (m *InspectBranchRequest) ValidateAll() error

ValidateAll checks the field values on InspectBranchRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in InspectBranchRequestMultiError, or nil if none found.

type InspectBranchRequestMultiError added in v2.8.0

type InspectBranchRequestMultiError []error

InspectBranchRequestMultiError is an error wrapping multiple validation errors returned by InspectBranchRequest.ValidateAll() if the designated constraints aren't met.

func (InspectBranchRequestMultiError) AllErrors added in v2.8.0

func (m InspectBranchRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (InspectBranchRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type InspectBranchRequestValidationError added in v2.8.0

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

InspectBranchRequestValidationError is the validation error returned by InspectBranchRequest.Validate if the designated constraints aren't met.

func (InspectBranchRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (InspectBranchRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (InspectBranchRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (InspectBranchRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (InspectBranchRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (InspectBranchRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type InspectCommitRequest

type InspectCommitRequest struct {
	Commit *Commit `protobuf:"bytes,1,opt,name=commit,proto3" json:"commit,omitempty"`
	// Wait causes inspect commit to wait until the commit is in the desired state.
	Wait CommitState `protobuf:"varint,2,opt,name=wait,proto3,enum=pfs_v2.CommitState" json:"wait,omitempty"`
	// contains filtered or unexported fields
}

func (*InspectCommitRequest) Descriptor deprecated

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

Deprecated: Use InspectCommitRequest.ProtoReflect.Descriptor instead.

func (*InspectCommitRequest) GetCommit

func (x *InspectCommitRequest) GetCommit() *Commit

func (*InspectCommitRequest) GetWait

func (x *InspectCommitRequest) GetWait() CommitState

func (*InspectCommitRequest) MarshalLogObject

func (x *InspectCommitRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*InspectCommitRequest) ProtoMessage

func (*InspectCommitRequest) ProtoMessage()

func (*InspectCommitRequest) ProtoReflect added in v2.7.0

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

func (*InspectCommitRequest) Reset

func (x *InspectCommitRequest) Reset()

func (*InspectCommitRequest) String

func (x *InspectCommitRequest) String() string

func (*InspectCommitRequest) Validate added in v2.8.0

func (m *InspectCommitRequest) Validate() error

Validate checks the field values on InspectCommitRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*InspectCommitRequest) ValidateAll added in v2.8.0

func (m *InspectCommitRequest) ValidateAll() error

ValidateAll checks the field values on InspectCommitRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in InspectCommitRequestMultiError, or nil if none found.

type InspectCommitRequestMultiError added in v2.8.0

type InspectCommitRequestMultiError []error

InspectCommitRequestMultiError is an error wrapping multiple validation errors returned by InspectCommitRequest.ValidateAll() if the designated constraints aren't met.

func (InspectCommitRequestMultiError) AllErrors added in v2.8.0

func (m InspectCommitRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (InspectCommitRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type InspectCommitRequestValidationError added in v2.8.0

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

InspectCommitRequestValidationError is the validation error returned by InspectCommitRequest.Validate if the designated constraints aren't met.

func (InspectCommitRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (InspectCommitRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (InspectCommitRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (InspectCommitRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (InspectCommitRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (InspectCommitRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type InspectCommitSetRequest

type InspectCommitSetRequest struct {
	CommitSet *CommitSet `protobuf:"bytes,1,opt,name=commit_set,json=commitSet,proto3" json:"commit_set,omitempty"`
	Wait      bool       `protobuf:"varint,2,opt,name=wait,proto3" json:"wait,omitempty"` // When true, wait until all commits in the set are finished
	// contains filtered or unexported fields
}

func (*InspectCommitSetRequest) Descriptor deprecated

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

Deprecated: Use InspectCommitSetRequest.ProtoReflect.Descriptor instead.

func (*InspectCommitSetRequest) GetCommitSet

func (x *InspectCommitSetRequest) GetCommitSet() *CommitSet

func (*InspectCommitSetRequest) GetWait

func (x *InspectCommitSetRequest) GetWait() bool

func (*InspectCommitSetRequest) MarshalLogObject

func (x *InspectCommitSetRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*InspectCommitSetRequest) ProtoMessage

func (*InspectCommitSetRequest) ProtoMessage()

func (*InspectCommitSetRequest) ProtoReflect added in v2.7.0

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

func (*InspectCommitSetRequest) Reset

func (x *InspectCommitSetRequest) Reset()

func (*InspectCommitSetRequest) String

func (x *InspectCommitSetRequest) String() string

func (*InspectCommitSetRequest) Validate added in v2.8.0

func (m *InspectCommitSetRequest) Validate() error

Validate checks the field values on InspectCommitSetRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*InspectCommitSetRequest) ValidateAll added in v2.8.0

func (m *InspectCommitSetRequest) ValidateAll() error

ValidateAll checks the field values on InspectCommitSetRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in InspectCommitSetRequestMultiError, or nil if none found.

type InspectCommitSetRequestMultiError added in v2.8.0

type InspectCommitSetRequestMultiError []error

InspectCommitSetRequestMultiError is an error wrapping multiple validation errors returned by InspectCommitSetRequest.ValidateAll() if the designated constraints aren't met.

func (InspectCommitSetRequestMultiError) AllErrors added in v2.8.0

func (m InspectCommitSetRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (InspectCommitSetRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type InspectCommitSetRequestValidationError added in v2.8.0

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

InspectCommitSetRequestValidationError is the validation error returned by InspectCommitSetRequest.Validate if the designated constraints aren't met.

func (InspectCommitSetRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (InspectCommitSetRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (InspectCommitSetRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (InspectCommitSetRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (InspectCommitSetRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (InspectCommitSetRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type InspectFileRequest

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

func (*InspectFileRequest) Descriptor deprecated

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

Deprecated: Use InspectFileRequest.ProtoReflect.Descriptor instead.

func (*InspectFileRequest) GetFile

func (x *InspectFileRequest) GetFile() *File

func (*InspectFileRequest) MarshalLogObject

func (x *InspectFileRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*InspectFileRequest) ProtoMessage

func (*InspectFileRequest) ProtoMessage()

func (*InspectFileRequest) ProtoReflect added in v2.7.0

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

func (*InspectFileRequest) Reset

func (x *InspectFileRequest) Reset()

func (*InspectFileRequest) String

func (x *InspectFileRequest) String() string

func (*InspectFileRequest) Validate added in v2.8.0

func (m *InspectFileRequest) Validate() error

Validate checks the field values on InspectFileRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*InspectFileRequest) ValidateAll added in v2.8.0

func (m *InspectFileRequest) ValidateAll() error

ValidateAll checks the field values on InspectFileRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in InspectFileRequestMultiError, or nil if none found.

type InspectFileRequestMultiError added in v2.8.0

type InspectFileRequestMultiError []error

InspectFileRequestMultiError is an error wrapping multiple validation errors returned by InspectFileRequest.ValidateAll() if the designated constraints aren't met.

func (InspectFileRequestMultiError) AllErrors added in v2.8.0

func (m InspectFileRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (InspectFileRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type InspectFileRequestValidationError added in v2.8.0

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

InspectFileRequestValidationError is the validation error returned by InspectFileRequest.Validate if the designated constraints aren't met.

func (InspectFileRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (InspectFileRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (InspectFileRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (InspectFileRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (InspectFileRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (InspectFileRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type InspectProjectRequest

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

func (*InspectProjectRequest) Descriptor deprecated

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

Deprecated: Use InspectProjectRequest.ProtoReflect.Descriptor instead.

func (*InspectProjectRequest) GetProject

func (x *InspectProjectRequest) GetProject() *Project

func (*InspectProjectRequest) MarshalLogObject

func (x *InspectProjectRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*InspectProjectRequest) ProtoMessage

func (*InspectProjectRequest) ProtoMessage()

func (*InspectProjectRequest) ProtoReflect added in v2.7.0

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

func (*InspectProjectRequest) Reset

func (x *InspectProjectRequest) Reset()

func (*InspectProjectRequest) String

func (x *InspectProjectRequest) String() string

func (*InspectProjectRequest) Validate added in v2.8.0

func (m *InspectProjectRequest) Validate() error

Validate checks the field values on InspectProjectRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*InspectProjectRequest) ValidateAll added in v2.8.0

func (m *InspectProjectRequest) ValidateAll() error

ValidateAll checks the field values on InspectProjectRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in InspectProjectRequestMultiError, or nil if none found.

type InspectProjectRequestMultiError added in v2.8.0

type InspectProjectRequestMultiError []error

InspectProjectRequestMultiError is an error wrapping multiple validation errors returned by InspectProjectRequest.ValidateAll() if the designated constraints aren't met.

func (InspectProjectRequestMultiError) AllErrors added in v2.8.0

func (m InspectProjectRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (InspectProjectRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type InspectProjectRequestValidationError added in v2.8.0

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

InspectProjectRequestValidationError is the validation error returned by InspectProjectRequest.Validate if the designated constraints aren't met.

func (InspectProjectRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (InspectProjectRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (InspectProjectRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (InspectProjectRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (InspectProjectRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (InspectProjectRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type InspectProjectV2Request added in v2.9.0

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

func (*InspectProjectV2Request) Descriptor deprecated added in v2.9.0

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

Deprecated: Use InspectProjectV2Request.ProtoReflect.Descriptor instead.

func (*InspectProjectV2Request) GetProject added in v2.9.0

func (x *InspectProjectV2Request) GetProject() *Project

func (*InspectProjectV2Request) MarshalLogObject added in v2.9.0

func (x *InspectProjectV2Request) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*InspectProjectV2Request) ProtoMessage added in v2.9.0

func (*InspectProjectV2Request) ProtoMessage()

func (*InspectProjectV2Request) ProtoReflect added in v2.9.0

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

func (*InspectProjectV2Request) Reset added in v2.9.0

func (x *InspectProjectV2Request) Reset()

func (*InspectProjectV2Request) String added in v2.9.0

func (x *InspectProjectV2Request) String() string

func (*InspectProjectV2Request) Validate added in v2.9.0

func (m *InspectProjectV2Request) Validate() error

Validate checks the field values on InspectProjectV2Request with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*InspectProjectV2Request) ValidateAll added in v2.9.0

func (m *InspectProjectV2Request) ValidateAll() error

ValidateAll checks the field values on InspectProjectV2Request with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in InspectProjectV2RequestMultiError, or nil if none found.

type InspectProjectV2RequestMultiError added in v2.9.0

type InspectProjectV2RequestMultiError []error

InspectProjectV2RequestMultiError is an error wrapping multiple validation errors returned by InspectProjectV2Request.ValidateAll() if the designated constraints aren't met.

func (InspectProjectV2RequestMultiError) AllErrors added in v2.9.0

func (m InspectProjectV2RequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (InspectProjectV2RequestMultiError) Error added in v2.9.0

Error returns a concatenation of all the error messages it wraps.

type InspectProjectV2RequestValidationError added in v2.9.0

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

InspectProjectV2RequestValidationError is the validation error returned by InspectProjectV2Request.Validate if the designated constraints aren't met.

func (InspectProjectV2RequestValidationError) Cause added in v2.9.0

Cause function returns cause value.

func (InspectProjectV2RequestValidationError) Error added in v2.9.0

Error satisfies the builtin error interface

func (InspectProjectV2RequestValidationError) ErrorName added in v2.9.0

ErrorName returns error name.

func (InspectProjectV2RequestValidationError) Field added in v2.9.0

Field function returns field value.

func (InspectProjectV2RequestValidationError) Key added in v2.9.0

Key function returns key value.

func (InspectProjectV2RequestValidationError) Reason added in v2.9.0

Reason function returns reason value.

type InspectProjectV2Response added in v2.9.0

type InspectProjectV2Response struct {
	Info         *ProjectInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
	DefaultsJson string       `protobuf:"bytes,2,opt,name=defaults_json,json=defaultsJson,proto3" json:"defaults_json,omitempty"`
	// contains filtered or unexported fields
}

func (*InspectProjectV2Response) Descriptor deprecated added in v2.9.0

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

Deprecated: Use InspectProjectV2Response.ProtoReflect.Descriptor instead.

func (*InspectProjectV2Response) GetDefaultsJson added in v2.9.0

func (x *InspectProjectV2Response) GetDefaultsJson() string

func (*InspectProjectV2Response) GetInfo added in v2.9.0

func (x *InspectProjectV2Response) GetInfo() *ProjectInfo

func (*InspectProjectV2Response) MarshalLogObject added in v2.9.0

func (x *InspectProjectV2Response) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*InspectProjectV2Response) ProtoMessage added in v2.9.0

func (*InspectProjectV2Response) ProtoMessage()

func (*InspectProjectV2Response) ProtoReflect added in v2.9.0

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

func (*InspectProjectV2Response) Reset added in v2.9.0

func (x *InspectProjectV2Response) Reset()

func (*InspectProjectV2Response) String added in v2.9.0

func (x *InspectProjectV2Response) String() string

func (*InspectProjectV2Response) Validate added in v2.9.0

func (m *InspectProjectV2Response) Validate() error

Validate checks the field values on InspectProjectV2Response with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*InspectProjectV2Response) ValidateAll added in v2.9.0

func (m *InspectProjectV2Response) ValidateAll() error

ValidateAll checks the field values on InspectProjectV2Response with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in InspectProjectV2ResponseMultiError, or nil if none found.

type InspectProjectV2ResponseMultiError added in v2.9.0

type InspectProjectV2ResponseMultiError []error

InspectProjectV2ResponseMultiError is an error wrapping multiple validation errors returned by InspectProjectV2Response.ValidateAll() if the designated constraints aren't met.

func (InspectProjectV2ResponseMultiError) AllErrors added in v2.9.0

func (m InspectProjectV2ResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (InspectProjectV2ResponseMultiError) Error added in v2.9.0

Error returns a concatenation of all the error messages it wraps.

type InspectProjectV2ResponseValidationError added in v2.9.0

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

InspectProjectV2ResponseValidationError is the validation error returned by InspectProjectV2Response.Validate if the designated constraints aren't met.

func (InspectProjectV2ResponseValidationError) Cause added in v2.9.0

Cause function returns cause value.

func (InspectProjectV2ResponseValidationError) Error added in v2.9.0

Error satisfies the builtin error interface

func (InspectProjectV2ResponseValidationError) ErrorName added in v2.9.0

ErrorName returns error name.

func (InspectProjectV2ResponseValidationError) Field added in v2.9.0

Field function returns field value.

func (InspectProjectV2ResponseValidationError) Key added in v2.9.0

Key function returns key value.

func (InspectProjectV2ResponseValidationError) Reason added in v2.9.0

Reason function returns reason value.

type InspectRepoRequest

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

func (*InspectRepoRequest) Descriptor deprecated

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

Deprecated: Use InspectRepoRequest.ProtoReflect.Descriptor instead.

func (*InspectRepoRequest) GetRepo

func (x *InspectRepoRequest) GetRepo() *Repo

func (*InspectRepoRequest) MarshalLogObject

func (x *InspectRepoRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*InspectRepoRequest) ProtoMessage

func (*InspectRepoRequest) ProtoMessage()

func (*InspectRepoRequest) ProtoReflect added in v2.7.0

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

func (*InspectRepoRequest) Reset

func (x *InspectRepoRequest) Reset()

func (*InspectRepoRequest) String

func (x *InspectRepoRequest) String() string

func (*InspectRepoRequest) Validate added in v2.8.0

func (m *InspectRepoRequest) Validate() error

Validate checks the field values on InspectRepoRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*InspectRepoRequest) ValidateAll added in v2.8.0

func (m *InspectRepoRequest) ValidateAll() error

ValidateAll checks the field values on InspectRepoRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in InspectRepoRequestMultiError, or nil if none found.

type InspectRepoRequestMultiError added in v2.8.0

type InspectRepoRequestMultiError []error

InspectRepoRequestMultiError is an error wrapping multiple validation errors returned by InspectRepoRequest.ValidateAll() if the designated constraints aren't met.

func (InspectRepoRequestMultiError) AllErrors added in v2.8.0

func (m InspectRepoRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (InspectRepoRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type InspectRepoRequestValidationError added in v2.8.0

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

InspectRepoRequestValidationError is the validation error returned by InspectRepoRequest.Validate if the designated constraints aren't met.

func (InspectRepoRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (InspectRepoRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (InspectRepoRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (InspectRepoRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (InspectRepoRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (InspectRepoRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type ListBranchRequest

type ListBranchRequest struct {
	Repo    *Repo `protobuf:"bytes,1,opt,name=repo,proto3" json:"repo,omitempty"`
	Reverse bool  `protobuf:"varint,2,opt,name=reverse,proto3" json:"reverse,omitempty"` // Returns branches oldest to newest
	// contains filtered or unexported fields
}

func (*ListBranchRequest) Descriptor deprecated

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

Deprecated: Use ListBranchRequest.ProtoReflect.Descriptor instead.

func (*ListBranchRequest) GetRepo

func (x *ListBranchRequest) GetRepo() *Repo

func (*ListBranchRequest) GetReverse

func (x *ListBranchRequest) GetReverse() bool

func (*ListBranchRequest) MarshalLogObject

func (x *ListBranchRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ListBranchRequest) ProtoMessage

func (*ListBranchRequest) ProtoMessage()

func (*ListBranchRequest) ProtoReflect added in v2.7.0

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

func (*ListBranchRequest) Reset

func (x *ListBranchRequest) Reset()

func (*ListBranchRequest) String

func (x *ListBranchRequest) String() string

func (*ListBranchRequest) Validate added in v2.8.0

func (m *ListBranchRequest) Validate() error

Validate checks the field values on ListBranchRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListBranchRequest) ValidateAll added in v2.8.0

func (m *ListBranchRequest) ValidateAll() error

ValidateAll checks the field values on ListBranchRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListBranchRequestMultiError, or nil if none found.

type ListBranchRequestMultiError added in v2.8.0

type ListBranchRequestMultiError []error

ListBranchRequestMultiError is an error wrapping multiple validation errors returned by ListBranchRequest.ValidateAll() if the designated constraints aren't met.

func (ListBranchRequestMultiError) AllErrors added in v2.8.0

func (m ListBranchRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListBranchRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type ListBranchRequestValidationError added in v2.8.0

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

ListBranchRequestValidationError is the validation error returned by ListBranchRequest.Validate if the designated constraints aren't met.

func (ListBranchRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ListBranchRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ListBranchRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (ListBranchRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (ListBranchRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (ListBranchRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type ListCommitRequest

type ListCommitRequest struct {
	Repo        *Repo                  `protobuf:"bytes,1,opt,name=repo,proto3" json:"repo,omitempty"`
	From        *Commit                `protobuf:"bytes,2,opt,name=from,proto3" json:"from,omitempty"`
	To          *Commit                `protobuf:"bytes,3,opt,name=to,proto3" json:"to,omitempty"`
	Number      int64                  `protobuf:"varint,4,opt,name=number,proto3" json:"number,omitempty"`
	Reverse     bool                   `protobuf:"varint,5,opt,name=reverse,proto3" json:"reverse,omitempty"`                                                // Return commits oldest to newest
	All         bool                   `protobuf:"varint,6,opt,name=all,proto3" json:"all,omitempty"`                                                        // Return commits of all kinds (without this, aliases are excluded)
	OriginKind  OriginKind             `protobuf:"varint,7,opt,name=origin_kind,json=originKind,proto3,enum=pfs_v2.OriginKind" json:"origin_kind,omitempty"` // Return only commits of this kind (mutually exclusive with all)
	StartedTime *timestamppb.Timestamp `protobuf:"bytes,8,opt,name=started_time,json=startedTime,proto3" json:"started_time,omitempty"`                      // Return commits started before this time
	// contains filtered or unexported fields
}

func (*ListCommitRequest) Descriptor deprecated

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

Deprecated: Use ListCommitRequest.ProtoReflect.Descriptor instead.

func (*ListCommitRequest) GetAll

func (x *ListCommitRequest) GetAll() bool

func (*ListCommitRequest) GetFrom

func (x *ListCommitRequest) GetFrom() *Commit

func (*ListCommitRequest) GetNumber

func (x *ListCommitRequest) GetNumber() int64

func (*ListCommitRequest) GetOriginKind

func (x *ListCommitRequest) GetOriginKind() OriginKind

func (*ListCommitRequest) GetRepo

func (x *ListCommitRequest) GetRepo() *Repo

func (*ListCommitRequest) GetReverse

func (x *ListCommitRequest) GetReverse() bool

func (*ListCommitRequest) GetStartedTime

func (x *ListCommitRequest) GetStartedTime() *timestamppb.Timestamp

func (*ListCommitRequest) GetTo

func (x *ListCommitRequest) GetTo() *Commit

func (*ListCommitRequest) MarshalLogObject

func (x *ListCommitRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ListCommitRequest) ProtoMessage

func (*ListCommitRequest) ProtoMessage()

func (*ListCommitRequest) ProtoReflect added in v2.7.0

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

func (*ListCommitRequest) Reset

func (x *ListCommitRequest) Reset()

func (*ListCommitRequest) String

func (x *ListCommitRequest) String() string

func (*ListCommitRequest) Validate added in v2.8.0

func (m *ListCommitRequest) Validate() error

Validate checks the field values on ListCommitRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListCommitRequest) ValidateAll added in v2.8.0

func (m *ListCommitRequest) ValidateAll() error

ValidateAll checks the field values on ListCommitRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListCommitRequestMultiError, or nil if none found.

type ListCommitRequestMultiError added in v2.8.0

type ListCommitRequestMultiError []error

ListCommitRequestMultiError is an error wrapping multiple validation errors returned by ListCommitRequest.ValidateAll() if the designated constraints aren't met.

func (ListCommitRequestMultiError) AllErrors added in v2.8.0

func (m ListCommitRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListCommitRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type ListCommitRequestValidationError added in v2.8.0

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

ListCommitRequestValidationError is the validation error returned by ListCommitRequest.Validate if the designated constraints aren't met.

func (ListCommitRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ListCommitRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ListCommitRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (ListCommitRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (ListCommitRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (ListCommitRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type ListCommitSetRequest

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

func (*ListCommitSetRequest) Descriptor deprecated

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

Deprecated: Use ListCommitSetRequest.ProtoReflect.Descriptor instead.

func (*ListCommitSetRequest) GetProject

func (x *ListCommitSetRequest) GetProject() *Project

func (*ListCommitSetRequest) MarshalLogObject

func (x *ListCommitSetRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ListCommitSetRequest) ProtoMessage

func (*ListCommitSetRequest) ProtoMessage()

func (*ListCommitSetRequest) ProtoReflect added in v2.7.0

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

func (*ListCommitSetRequest) Reset

func (x *ListCommitSetRequest) Reset()

func (*ListCommitSetRequest) String

func (x *ListCommitSetRequest) String() string

func (*ListCommitSetRequest) Validate added in v2.8.0

func (m *ListCommitSetRequest) Validate() error

Validate checks the field values on ListCommitSetRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListCommitSetRequest) ValidateAll added in v2.8.0

func (m *ListCommitSetRequest) ValidateAll() error

ValidateAll checks the field values on ListCommitSetRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListCommitSetRequestMultiError, or nil if none found.

type ListCommitSetRequestMultiError added in v2.8.0

type ListCommitSetRequestMultiError []error

ListCommitSetRequestMultiError is an error wrapping multiple validation errors returned by ListCommitSetRequest.ValidateAll() if the designated constraints aren't met.

func (ListCommitSetRequestMultiError) AllErrors added in v2.8.0

func (m ListCommitSetRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListCommitSetRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type ListCommitSetRequestValidationError added in v2.8.0

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

ListCommitSetRequestValidationError is the validation error returned by ListCommitSetRequest.Validate if the designated constraints aren't met.

func (ListCommitSetRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ListCommitSetRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ListCommitSetRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (ListCommitSetRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (ListCommitSetRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (ListCommitSetRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type ListFileRequest

type ListFileRequest struct {

	// File is the parent directory of the files we want to list. This sets the
	// repo, the commit/branch, and path prefix of files we're interested in
	// If the "path" field is omitted, a list of files at the top level of the repo
	// is returned
	File *File `protobuf:"bytes,1,opt,name=file,proto3" json:"file,omitempty"`
	// Marker for pagination. If set, the files that come after the marker in
	// lexicographical order will be returned. If reverse is also set, the files
	// that come before the marker in lexicographical order will be returned.
	PaginationMarker *File `protobuf:"bytes,3,opt,name=paginationMarker,proto3" json:"paginationMarker,omitempty"`
	// Number of files to return
	Number int64 `protobuf:"varint,4,opt,name=number,proto3" json:"number,omitempty"`
	// If true, return files in reverse order
	Reverse bool `protobuf:"varint,5,opt,name=reverse,proto3" json:"reverse,omitempty"`
	// contains filtered or unexported fields
}

func (*ListFileRequest) Descriptor deprecated

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

Deprecated: Use ListFileRequest.ProtoReflect.Descriptor instead.

func (*ListFileRequest) GetFile

func (x *ListFileRequest) GetFile() *File

func (*ListFileRequest) GetNumber

func (x *ListFileRequest) GetNumber() int64

func (*ListFileRequest) GetPaginationMarker

func (x *ListFileRequest) GetPaginationMarker() *File

func (*ListFileRequest) GetReverse

func (x *ListFileRequest) GetReverse() bool

func (*ListFileRequest) MarshalLogObject

func (x *ListFileRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ListFileRequest) ProtoMessage

func (*ListFileRequest) ProtoMessage()

func (*ListFileRequest) ProtoReflect added in v2.7.0

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

func (*ListFileRequest) Reset

func (x *ListFileRequest) Reset()

func (*ListFileRequest) String

func (x *ListFileRequest) String() string

func (*ListFileRequest) Validate added in v2.8.0

func (m *ListFileRequest) Validate() error

Validate checks the field values on ListFileRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListFileRequest) ValidateAll added in v2.8.0

func (m *ListFileRequest) ValidateAll() error

ValidateAll checks the field values on ListFileRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListFileRequestMultiError, or nil if none found.

type ListFileRequestMultiError added in v2.8.0

type ListFileRequestMultiError []error

ListFileRequestMultiError is an error wrapping multiple validation errors returned by ListFileRequest.ValidateAll() if the designated constraints aren't met.

func (ListFileRequestMultiError) AllErrors added in v2.8.0

func (m ListFileRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListFileRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type ListFileRequestValidationError added in v2.8.0

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

ListFileRequestValidationError is the validation error returned by ListFileRequest.Validate if the designated constraints aren't met.

func (ListFileRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ListFileRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ListFileRequestValidationError) ErrorName added in v2.8.0

func (e ListFileRequestValidationError) ErrorName() string

ErrorName returns error name.

func (ListFileRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (ListFileRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (ListFileRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type ListProjectRequest

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

func (*ListProjectRequest) Descriptor deprecated

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

Deprecated: Use ListProjectRequest.ProtoReflect.Descriptor instead.

func (*ListProjectRequest) MarshalLogObject

func (x *ListProjectRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ListProjectRequest) ProtoMessage

func (*ListProjectRequest) ProtoMessage()

func (*ListProjectRequest) ProtoReflect added in v2.7.0

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

func (*ListProjectRequest) Reset

func (x *ListProjectRequest) Reset()

func (*ListProjectRequest) String

func (x *ListProjectRequest) String() string

func (*ListProjectRequest) Validate added in v2.8.0

func (m *ListProjectRequest) Validate() error

Validate checks the field values on ListProjectRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListProjectRequest) ValidateAll added in v2.8.0

func (m *ListProjectRequest) ValidateAll() error

ValidateAll checks the field values on ListProjectRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListProjectRequestMultiError, or nil if none found.

type ListProjectRequestMultiError added in v2.8.0

type ListProjectRequestMultiError []error

ListProjectRequestMultiError is an error wrapping multiple validation errors returned by ListProjectRequest.ValidateAll() if the designated constraints aren't met.

func (ListProjectRequestMultiError) AllErrors added in v2.8.0

func (m ListProjectRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListProjectRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type ListProjectRequestValidationError added in v2.8.0

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

ListProjectRequestValidationError is the validation error returned by ListProjectRequest.Validate if the designated constraints aren't met.

func (ListProjectRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ListProjectRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ListProjectRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (ListProjectRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (ListProjectRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (ListProjectRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type ListRepoRequest

type ListRepoRequest struct {

	// type is the type of (system) repos that should be returned
	// an empty string requests all repos
	Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	// projects filters out repos that do not belong in the list, while no projects means list all repos.
	Projects []*Project `protobuf:"bytes,2,rep,name=projects,proto3" json:"projects,omitempty"`
	// contains filtered or unexported fields
}

func (*ListRepoRequest) Descriptor deprecated

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

Deprecated: Use ListRepoRequest.ProtoReflect.Descriptor instead.

func (*ListRepoRequest) GetProjects

func (x *ListRepoRequest) GetProjects() []*Project

func (*ListRepoRequest) GetType

func (x *ListRepoRequest) GetType() string

func (*ListRepoRequest) MarshalLogObject

func (x *ListRepoRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ListRepoRequest) ProtoMessage

func (*ListRepoRequest) ProtoMessage()

func (*ListRepoRequest) ProtoReflect added in v2.7.0

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

func (*ListRepoRequest) Reset

func (x *ListRepoRequest) Reset()

func (*ListRepoRequest) String

func (x *ListRepoRequest) String() string

func (*ListRepoRequest) Validate added in v2.8.0

func (m *ListRepoRequest) Validate() error

Validate checks the field values on ListRepoRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListRepoRequest) ValidateAll added in v2.8.0

func (m *ListRepoRequest) ValidateAll() error

ValidateAll checks the field values on ListRepoRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListRepoRequestMultiError, or nil if none found.

type ListRepoRequestMultiError added in v2.8.0

type ListRepoRequestMultiError []error

ListRepoRequestMultiError is an error wrapping multiple validation errors returned by ListRepoRequest.ValidateAll() if the designated constraints aren't met.

func (ListRepoRequestMultiError) AllErrors added in v2.8.0

func (m ListRepoRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListRepoRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type ListRepoRequestValidationError added in v2.8.0

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

ListRepoRequestValidationError is the validation error returned by ListRepoRequest.Validate if the designated constraints aren't met.

func (ListRepoRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ListRepoRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ListRepoRequestValidationError) ErrorName added in v2.8.0

func (e ListRepoRequestValidationError) ErrorName() string

ErrorName returns error name.

func (ListRepoRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (ListRepoRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (ListRepoRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type ModifyFileRequest

type ModifyFileRequest struct {

	// Types that are assignable to Body:
	//
	//	*ModifyFileRequest_SetCommit
	//	*ModifyFileRequest_AddFile
	//	*ModifyFileRequest_DeleteFile
	//	*ModifyFileRequest_CopyFile
	Body isModifyFileRequest_Body `protobuf_oneof:"body"`
	// contains filtered or unexported fields
}

func (*ModifyFileRequest) Descriptor deprecated

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

Deprecated: Use ModifyFileRequest.ProtoReflect.Descriptor instead.

func (*ModifyFileRequest) GetAddFile

func (x *ModifyFileRequest) GetAddFile() *AddFile

func (*ModifyFileRequest) GetBody

func (m *ModifyFileRequest) GetBody() isModifyFileRequest_Body

func (*ModifyFileRequest) GetCopyFile

func (x *ModifyFileRequest) GetCopyFile() *CopyFile

func (*ModifyFileRequest) GetDeleteFile

func (x *ModifyFileRequest) GetDeleteFile() *DeleteFile

func (*ModifyFileRequest) GetSetCommit

func (x *ModifyFileRequest) GetSetCommit() *Commit

func (*ModifyFileRequest) MarshalLogObject

func (x *ModifyFileRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ModifyFileRequest) ProtoMessage

func (*ModifyFileRequest) ProtoMessage()

func (*ModifyFileRequest) ProtoReflect added in v2.7.0

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

func (*ModifyFileRequest) Reset

func (x *ModifyFileRequest) Reset()

func (*ModifyFileRequest) String

func (x *ModifyFileRequest) String() string

func (*ModifyFileRequest) Validate added in v2.8.0

func (m *ModifyFileRequest) Validate() error

Validate checks the field values on ModifyFileRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ModifyFileRequest) ValidateAll added in v2.8.0

func (m *ModifyFileRequest) ValidateAll() error

ValidateAll checks the field values on ModifyFileRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ModifyFileRequestMultiError, or nil if none found.

type ModifyFileRequestMultiError added in v2.8.0

type ModifyFileRequestMultiError []error

ModifyFileRequestMultiError is an error wrapping multiple validation errors returned by ModifyFileRequest.ValidateAll() if the designated constraints aren't met.

func (ModifyFileRequestMultiError) AllErrors added in v2.8.0

func (m ModifyFileRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ModifyFileRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type ModifyFileRequestValidationError added in v2.8.0

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

ModifyFileRequestValidationError is the validation error returned by ModifyFileRequest.Validate if the designated constraints aren't met.

func (ModifyFileRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ModifyFileRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ModifyFileRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (ModifyFileRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (ModifyFileRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (ModifyFileRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type ModifyFileRequest_AddFile

type ModifyFileRequest_AddFile struct {
	AddFile *AddFile `protobuf:"bytes,2,opt,name=add_file,json=addFile,proto3,oneof"`
}

type ModifyFileRequest_CopyFile

type ModifyFileRequest_CopyFile struct {
	CopyFile *CopyFile `protobuf:"bytes,4,opt,name=copy_file,json=copyFile,proto3,oneof"`
}

type ModifyFileRequest_DeleteFile

type ModifyFileRequest_DeleteFile struct {
	DeleteFile *DeleteFile `protobuf:"bytes,3,opt,name=delete_file,json=deleteFile,proto3,oneof"`
}

type ModifyFileRequest_SetCommit

type ModifyFileRequest_SetCommit struct {
	SetCommit *Commit `protobuf:"bytes,1,opt,name=set_commit,json=setCommit,proto3,oneof"`
}

type ObjectStorageEgress

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

func (*ObjectStorageEgress) Descriptor deprecated

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

Deprecated: Use ObjectStorageEgress.ProtoReflect.Descriptor instead.

func (*ObjectStorageEgress) GetUrl

func (x *ObjectStorageEgress) GetUrl() string

func (*ObjectStorageEgress) MarshalLogObject

func (x *ObjectStorageEgress) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ObjectStorageEgress) ProtoMessage

func (*ObjectStorageEgress) ProtoMessage()

func (*ObjectStorageEgress) ProtoReflect added in v2.7.0

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

func (*ObjectStorageEgress) Reset

func (x *ObjectStorageEgress) Reset()

func (*ObjectStorageEgress) String

func (x *ObjectStorageEgress) String() string

func (*ObjectStorageEgress) Validate added in v2.8.0

func (m *ObjectStorageEgress) Validate() error

Validate checks the field values on ObjectStorageEgress with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ObjectStorageEgress) ValidateAll added in v2.8.0

func (m *ObjectStorageEgress) ValidateAll() error

ValidateAll checks the field values on ObjectStorageEgress with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ObjectStorageEgressMultiError, or nil if none found.

type ObjectStorageEgressMultiError added in v2.8.0

type ObjectStorageEgressMultiError []error

ObjectStorageEgressMultiError is an error wrapping multiple validation errors returned by ObjectStorageEgress.ValidateAll() if the designated constraints aren't met.

func (ObjectStorageEgressMultiError) AllErrors added in v2.8.0

func (m ObjectStorageEgressMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ObjectStorageEgressMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type ObjectStorageEgressValidationError added in v2.8.0

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

ObjectStorageEgressValidationError is the validation error returned by ObjectStorageEgress.Validate if the designated constraints aren't met.

func (ObjectStorageEgressValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ObjectStorageEgressValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ObjectStorageEgressValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (ObjectStorageEgressValidationError) Field added in v2.8.0

Field function returns field value.

func (ObjectStorageEgressValidationError) Key added in v2.8.0

Key function returns key value.

func (ObjectStorageEgressValidationError) Reason added in v2.8.0

Reason function returns reason value.

type OriginKind

type OriginKind int32

These are the different places where a commit may be originated from

const (
	OriginKind_ORIGIN_KIND_UNKNOWN OriginKind = 0
	OriginKind_USER                OriginKind = 1
	OriginKind_AUTO                OriginKind = 2
	OriginKind_FSCK                OriginKind = 3
)

func (OriginKind) Descriptor added in v2.7.0

func (OriginKind) Descriptor() protoreflect.EnumDescriptor

func (OriginKind) Enum added in v2.7.0

func (x OriginKind) Enum() *OriginKind

func (OriginKind) EnumDescriptor deprecated

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

Deprecated: Use OriginKind.Descriptor instead.

func (OriginKind) Number added in v2.7.0

func (x OriginKind) Number() protoreflect.EnumNumber

func (OriginKind) String

func (x OriginKind) String() string

func (OriginKind) Type added in v2.7.0

type PathRange

type PathRange struct {
	Lower string `protobuf:"bytes,1,opt,name=lower,proto3" json:"lower,omitempty"`
	Upper string `protobuf:"bytes,2,opt,name=upper,proto3" json:"upper,omitempty"`
	// contains filtered or unexported fields
}

func (*PathRange) Descriptor deprecated

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

Deprecated: Use PathRange.ProtoReflect.Descriptor instead.

func (*PathRange) GetLower

func (x *PathRange) GetLower() string

func (*PathRange) GetUpper

func (x *PathRange) GetUpper() string

func (*PathRange) MarshalLogObject

func (x *PathRange) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*PathRange) ProtoMessage

func (*PathRange) ProtoMessage()

func (*PathRange) ProtoReflect added in v2.7.0

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

func (*PathRange) Reset

func (x *PathRange) Reset()

func (*PathRange) String

func (x *PathRange) String() string

func (*PathRange) Validate added in v2.8.0

func (m *PathRange) Validate() error

Validate checks the field values on PathRange with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*PathRange) ValidateAll added in v2.8.0

func (m *PathRange) ValidateAll() error

ValidateAll checks the field values on PathRange with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PathRangeMultiError, or nil if none found.

type PathRangeMultiError added in v2.8.0

type PathRangeMultiError []error

PathRangeMultiError is an error wrapping multiple validation errors returned by PathRange.ValidateAll() if the designated constraints aren't met.

func (PathRangeMultiError) AllErrors added in v2.8.0

func (m PathRangeMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PathRangeMultiError) Error added in v2.8.0

func (m PathRangeMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type PathRangeValidationError added in v2.8.0

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

PathRangeValidationError is the validation error returned by PathRange.Validate if the designated constraints aren't met.

func (PathRangeValidationError) Cause added in v2.8.0

func (e PathRangeValidationError) Cause() error

Cause function returns cause value.

func (PathRangeValidationError) Error added in v2.8.0

func (e PathRangeValidationError) Error() string

Error satisfies the builtin error interface

func (PathRangeValidationError) ErrorName added in v2.8.0

func (e PathRangeValidationError) ErrorName() string

ErrorName returns error name.

func (PathRangeValidationError) Field added in v2.8.0

func (e PathRangeValidationError) Field() string

Field function returns field value.

func (PathRangeValidationError) Key added in v2.8.0

Key function returns key value.

func (PathRangeValidationError) Reason added in v2.8.0

func (e PathRangeValidationError) Reason() string

Reason function returns reason value.

type Project

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

func (*Project) AuthResource

func (p *Project) AuthResource() *auth.Resource

AuthResource returns the auth resource for a project.

func (*Project) Descriptor deprecated

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

Deprecated: Use Project.ProtoReflect.Descriptor instead.

func (*Project) GetName

func (x *Project) GetName() string

func (*Project) Key added in v2.8.0

func (p *Project) Key() string

func (*Project) MarshalLogObject

func (x *Project) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*Project) ProtoMessage

func (*Project) ProtoMessage()

func (*Project) ProtoReflect added in v2.7.0

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

func (*Project) Reset

func (x *Project) Reset()

func (*Project) String

func (p *Project) String() string

func (*Project) Validate added in v2.8.0

func (m *Project) Validate() error

Validate checks the field values on Project with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Project) ValidateAll added in v2.8.0

func (m *Project) ValidateAll() error

ValidateAll checks the field values on Project with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ProjectMultiError, or nil if none found.

func (*Project) ValidateName

func (p *Project) ValidateName() error

ValidateName returns an error if the project is nil or its name is an invalid project name. DefaultProjectName is always valid; otherwise the ancestry package is used to validate the name.

type ProjectInfo

type ProjectInfo struct {
	Project     *Project               `protobuf:"bytes,1,opt,name=project,proto3" json:"project,omitempty"`
	Description string                 `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	AuthInfo    *AuthInfo              `protobuf:"bytes,3,opt,name=auth_info,json=authInfo,proto3" json:"auth_info,omitempty"`
	CreatedAt   *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	// contains filtered or unexported fields
}

func (*ProjectInfo) Descriptor deprecated

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

Deprecated: Use ProjectInfo.ProtoReflect.Descriptor instead.

func (*ProjectInfo) GetAuthInfo

func (x *ProjectInfo) GetAuthInfo() *AuthInfo

func (*ProjectInfo) GetCreatedAt

func (x *ProjectInfo) GetCreatedAt() *timestamppb.Timestamp

func (*ProjectInfo) GetDescription

func (x *ProjectInfo) GetDescription() string

func (*ProjectInfo) GetProject

func (x *ProjectInfo) GetProject() *Project

func (*ProjectInfo) MarshalLogObject

func (x *ProjectInfo) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ProjectInfo) ProtoMessage

func (*ProjectInfo) ProtoMessage()

func (*ProjectInfo) ProtoReflect added in v2.7.0

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

func (*ProjectInfo) Reset

func (x *ProjectInfo) Reset()

func (*ProjectInfo) String

func (x *ProjectInfo) String() string

func (*ProjectInfo) Validate added in v2.8.0

func (m *ProjectInfo) Validate() error

Validate checks the field values on ProjectInfo with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ProjectInfo) ValidateAll added in v2.8.0

func (m *ProjectInfo) ValidateAll() error

ValidateAll checks the field values on ProjectInfo with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ProjectInfoMultiError, or nil if none found.

type ProjectInfoMultiError added in v2.8.0

type ProjectInfoMultiError []error

ProjectInfoMultiError is an error wrapping multiple validation errors returned by ProjectInfo.ValidateAll() if the designated constraints aren't met.

func (ProjectInfoMultiError) AllErrors added in v2.8.0

func (m ProjectInfoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ProjectInfoMultiError) Error added in v2.8.0

func (m ProjectInfoMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type ProjectInfoValidationError added in v2.8.0

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

ProjectInfoValidationError is the validation error returned by ProjectInfo.Validate if the designated constraints aren't met.

func (ProjectInfoValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ProjectInfoValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ProjectInfoValidationError) ErrorName added in v2.8.0

func (e ProjectInfoValidationError) ErrorName() string

ErrorName returns error name.

func (ProjectInfoValidationError) Field added in v2.8.0

Field function returns field value.

func (ProjectInfoValidationError) Key added in v2.8.0

Key function returns key value.

func (ProjectInfoValidationError) Reason added in v2.8.0

Reason function returns reason value.

type ProjectMultiError added in v2.8.0

type ProjectMultiError []error

ProjectMultiError is an error wrapping multiple validation errors returned by Project.ValidateAll() if the designated constraints aren't met.

func (ProjectMultiError) AllErrors added in v2.8.0

func (m ProjectMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ProjectMultiError) Error added in v2.8.0

func (m ProjectMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type ProjectValidationError added in v2.8.0

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

ProjectValidationError is the validation error returned by Project.Validate if the designated constraints aren't met.

func (ProjectValidationError) Cause added in v2.8.0

func (e ProjectValidationError) Cause() error

Cause function returns cause value.

func (ProjectValidationError) Error added in v2.8.0

func (e ProjectValidationError) Error() string

Error satisfies the builtin error interface

func (ProjectValidationError) ErrorName added in v2.8.0

func (e ProjectValidationError) ErrorName() string

ErrorName returns error name.

func (ProjectValidationError) Field added in v2.8.0

func (e ProjectValidationError) Field() string

Field function returns field value.

func (ProjectValidationError) Key added in v2.8.0

func (e ProjectValidationError) Key() bool

Key function returns key value.

func (ProjectValidationError) Reason added in v2.8.0

func (e ProjectValidationError) Reason() string

Reason function returns reason value.

type PutCacheRequest

type PutCacheRequest struct {
	Key        string     `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Value      *anypb.Any `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	FileSetIds []string   `protobuf:"bytes,3,rep,name=file_set_ids,json=fileSetIds,proto3" json:"file_set_ids,omitempty"`
	Tag        string     `protobuf:"bytes,4,opt,name=tag,proto3" json:"tag,omitempty"`
	// contains filtered or unexported fields
}

func (*PutCacheRequest) Descriptor deprecated

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

Deprecated: Use PutCacheRequest.ProtoReflect.Descriptor instead.

func (*PutCacheRequest) GetFileSetIds

func (x *PutCacheRequest) GetFileSetIds() []string

func (*PutCacheRequest) GetKey

func (x *PutCacheRequest) GetKey() string

func (*PutCacheRequest) GetTag

func (x *PutCacheRequest) GetTag() string

func (*PutCacheRequest) GetValue

func (x *PutCacheRequest) GetValue() *anypb.Any

func (*PutCacheRequest) MarshalLogObject

func (x *PutCacheRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*PutCacheRequest) ProtoMessage

func (*PutCacheRequest) ProtoMessage()

func (*PutCacheRequest) ProtoReflect added in v2.7.0

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

func (*PutCacheRequest) Reset

func (x *PutCacheRequest) Reset()

func (*PutCacheRequest) String

func (x *PutCacheRequest) String() string

func (*PutCacheRequest) Validate added in v2.8.0

func (m *PutCacheRequest) Validate() error

Validate checks the field values on PutCacheRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*PutCacheRequest) ValidateAll added in v2.8.0

func (m *PutCacheRequest) ValidateAll() error

ValidateAll checks the field values on PutCacheRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PutCacheRequestMultiError, or nil if none found.

type PutCacheRequestMultiError added in v2.8.0

type PutCacheRequestMultiError []error

PutCacheRequestMultiError is an error wrapping multiple validation errors returned by PutCacheRequest.ValidateAll() if the designated constraints aren't met.

func (PutCacheRequestMultiError) AllErrors added in v2.8.0

func (m PutCacheRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PutCacheRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type PutCacheRequestValidationError added in v2.8.0

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

PutCacheRequestValidationError is the validation error returned by PutCacheRequest.Validate if the designated constraints aren't met.

func (PutCacheRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (PutCacheRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (PutCacheRequestValidationError) ErrorName added in v2.8.0

func (e PutCacheRequestValidationError) ErrorName() string

ErrorName returns error name.

func (PutCacheRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (PutCacheRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (PutCacheRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type RenewFileSetRequest

type RenewFileSetRequest struct {
	FileSetId  string `protobuf:"bytes,1,opt,name=file_set_id,json=fileSetId,proto3" json:"file_set_id,omitempty"`
	TtlSeconds int64  `protobuf:"varint,2,opt,name=ttl_seconds,json=ttlSeconds,proto3" json:"ttl_seconds,omitempty"`
	// contains filtered or unexported fields
}

func (*RenewFileSetRequest) Descriptor deprecated

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

Deprecated: Use RenewFileSetRequest.ProtoReflect.Descriptor instead.

func (*RenewFileSetRequest) GetFileSetId

func (x *RenewFileSetRequest) GetFileSetId() string

func (*RenewFileSetRequest) GetTtlSeconds

func (x *RenewFileSetRequest) GetTtlSeconds() int64

func (*RenewFileSetRequest) MarshalLogObject

func (x *RenewFileSetRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*RenewFileSetRequest) ProtoMessage

func (*RenewFileSetRequest) ProtoMessage()

func (*RenewFileSetRequest) ProtoReflect added in v2.7.0

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

func (*RenewFileSetRequest) Reset

func (x *RenewFileSetRequest) Reset()

func (*RenewFileSetRequest) String

func (x *RenewFileSetRequest) String() string

func (*RenewFileSetRequest) Validate added in v2.8.0

func (m *RenewFileSetRequest) Validate() error

Validate checks the field values on RenewFileSetRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*RenewFileSetRequest) ValidateAll added in v2.8.0

func (m *RenewFileSetRequest) ValidateAll() error

ValidateAll checks the field values on RenewFileSetRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in RenewFileSetRequestMultiError, or nil if none found.

type RenewFileSetRequestMultiError added in v2.8.0

type RenewFileSetRequestMultiError []error

RenewFileSetRequestMultiError is an error wrapping multiple validation errors returned by RenewFileSetRequest.ValidateAll() if the designated constraints aren't met.

func (RenewFileSetRequestMultiError) AllErrors added in v2.8.0

func (m RenewFileSetRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RenewFileSetRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type RenewFileSetRequestValidationError added in v2.8.0

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

RenewFileSetRequestValidationError is the validation error returned by RenewFileSetRequest.Validate if the designated constraints aren't met.

func (RenewFileSetRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (RenewFileSetRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (RenewFileSetRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (RenewFileSetRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (RenewFileSetRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (RenewFileSetRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type Repo

type Repo struct {
	Name    string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Type    string   `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
	Project *Project `protobuf:"bytes,3,opt,name=project,proto3" json:"project,omitempty"`
	// contains filtered or unexported fields
}

func (*Repo) AuthResource

func (r *Repo) AuthResource() *auth.Resource

AuthResource returns the auth resource for a repo. The resource name is the project name and repo name separated by a slash. Notably, it does _not_ include the repo type string.

func (*Repo) Descriptor deprecated

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

Deprecated: Use Repo.ProtoReflect.Descriptor instead.

func (*Repo) EnsureProject

func (r *Repo) EnsureProject()

EnsureProject ensures that repo.Project is set. It does nothing if repo is nil.

func (*Repo) GetName

func (x *Repo) GetName() string

func (*Repo) GetProject

func (x *Repo) GetProject() *Project

func (*Repo) GetType

func (x *Repo) GetType() string

func (*Repo) Key added in v2.8.0

func (r *Repo) Key() string

func (*Repo) MarshalLogObject

func (x *Repo) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*Repo) NewBranch

func (r *Repo) NewBranch(name string) *Branch

func (*Repo) NewCommit

func (r *Repo) NewCommit(branch, id string) *Commit

func (*Repo) ProtoMessage

func (*Repo) ProtoMessage()

func (*Repo) ProtoReflect added in v2.7.0

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

func (*Repo) Reset

func (x *Repo) Reset()

func (*Repo) String

func (r *Repo) String() string

func (*Repo) Validate added in v2.8.0

func (m *Repo) Validate() error

Validate checks the field values on Repo with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Repo) ValidateAll added in v2.8.0

func (m *Repo) ValidateAll() error

ValidateAll checks the field values on Repo with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in RepoMultiError, or nil if none found.

type RepoInfo

type RepoInfo struct {
	Repo                *Repo                  `protobuf:"bytes,1,opt,name=repo,proto3" json:"repo,omitempty"`
	Created             *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=created,proto3" json:"created,omitempty"`
	SizeBytesUpperBound int64                  `protobuf:"varint,3,opt,name=size_bytes_upper_bound,json=sizeBytesUpperBound,proto3" json:"size_bytes_upper_bound,omitempty"`
	Description         string                 `protobuf:"bytes,4,opt,name=description,proto3" json:"description,omitempty"`
	Branches            []*Branch              `protobuf:"bytes,5,rep,name=branches,proto3" json:"branches,omitempty"`
	// Set by ListRepo and InspectRepo if Pachyderm's auth system is active, but
	// not stored in etcd. To set a user's auth scope for a repo, use the
	// Pachyderm Auth API (in src/client/auth/auth.proto)
	AuthInfo *AuthInfo         `protobuf:"bytes,6,opt,name=auth_info,json=authInfo,proto3" json:"auth_info,omitempty"`
	Details  *RepoInfo_Details `protobuf:"bytes,7,opt,name=details,proto3" json:"details,omitempty"`
	// contains filtered or unexported fields
}

RepoInfo is the main data structure representing a Repo in etcd

func (*RepoInfo) Descriptor deprecated

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

Deprecated: Use RepoInfo.ProtoReflect.Descriptor instead.

func (*RepoInfo) GetAuthInfo

func (x *RepoInfo) GetAuthInfo() *AuthInfo

func (*RepoInfo) GetBranches

func (x *RepoInfo) GetBranches() []*Branch

func (*RepoInfo) GetCreated

func (x *RepoInfo) GetCreated() *timestamppb.Timestamp

func (*RepoInfo) GetDescription

func (x *RepoInfo) GetDescription() string

func (*RepoInfo) GetDetails

func (x *RepoInfo) GetDetails() *RepoInfo_Details

func (*RepoInfo) GetRepo

func (x *RepoInfo) GetRepo() *Repo

func (*RepoInfo) GetSizeBytesUpperBound

func (x *RepoInfo) GetSizeBytesUpperBound() int64

func (*RepoInfo) MarshalLogObject

func (x *RepoInfo) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*RepoInfo) ProtoMessage

func (*RepoInfo) ProtoMessage()

func (*RepoInfo) ProtoReflect added in v2.7.0

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

func (*RepoInfo) Reset

func (x *RepoInfo) Reset()

func (*RepoInfo) String

func (x *RepoInfo) String() string

func (*RepoInfo) Validate added in v2.8.0

func (m *RepoInfo) Validate() error

Validate checks the field values on RepoInfo with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*RepoInfo) ValidateAll added in v2.8.0

func (m *RepoInfo) ValidateAll() error

ValidateAll checks the field values on RepoInfo with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in RepoInfoMultiError, or nil if none found.

type RepoInfoMultiError added in v2.8.0

type RepoInfoMultiError []error

RepoInfoMultiError is an error wrapping multiple validation errors returned by RepoInfo.ValidateAll() if the designated constraints aren't met.

func (RepoInfoMultiError) AllErrors added in v2.8.0

func (m RepoInfoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RepoInfoMultiError) Error added in v2.8.0

func (m RepoInfoMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type RepoInfoValidationError added in v2.8.0

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

RepoInfoValidationError is the validation error returned by RepoInfo.Validate if the designated constraints aren't met.

func (RepoInfoValidationError) Cause added in v2.8.0

func (e RepoInfoValidationError) Cause() error

Cause function returns cause value.

func (RepoInfoValidationError) Error added in v2.8.0

func (e RepoInfoValidationError) Error() string

Error satisfies the builtin error interface

func (RepoInfoValidationError) ErrorName added in v2.8.0

func (e RepoInfoValidationError) ErrorName() string

ErrorName returns error name.

func (RepoInfoValidationError) Field added in v2.8.0

func (e RepoInfoValidationError) Field() string

Field function returns field value.

func (RepoInfoValidationError) Key added in v2.8.0

func (e RepoInfoValidationError) Key() bool

Key function returns key value.

func (RepoInfoValidationError) Reason added in v2.8.0

func (e RepoInfoValidationError) Reason() string

Reason function returns reason value.

type RepoInfo_Details

type RepoInfo_Details struct {
	SizeBytes int64 `protobuf:"varint,1,opt,name=size_bytes,json=sizeBytes,proto3" json:"size_bytes,omitempty"`
	// contains filtered or unexported fields
}

Details are only provided when explicitly requested

func (*RepoInfo_Details) Descriptor deprecated

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

Deprecated: Use RepoInfo_Details.ProtoReflect.Descriptor instead.

func (*RepoInfo_Details) GetSizeBytes

func (x *RepoInfo_Details) GetSizeBytes() int64

func (*RepoInfo_Details) MarshalLogObject

func (x *RepoInfo_Details) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*RepoInfo_Details) ProtoMessage

func (*RepoInfo_Details) ProtoMessage()

func (*RepoInfo_Details) ProtoReflect added in v2.7.0

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

func (*RepoInfo_Details) Reset

func (x *RepoInfo_Details) Reset()

func (*RepoInfo_Details) String

func (x *RepoInfo_Details) String() string

func (*RepoInfo_Details) Validate added in v2.8.0

func (m *RepoInfo_Details) Validate() error

Validate checks the field values on RepoInfo_Details with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*RepoInfo_Details) ValidateAll added in v2.8.0

func (m *RepoInfo_Details) ValidateAll() error

ValidateAll checks the field values on RepoInfo_Details with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in RepoInfo_DetailsMultiError, or nil if none found.

type RepoInfo_DetailsMultiError added in v2.8.0

type RepoInfo_DetailsMultiError []error

RepoInfo_DetailsMultiError is an error wrapping multiple validation errors returned by RepoInfo_Details.ValidateAll() if the designated constraints aren't met.

func (RepoInfo_DetailsMultiError) AllErrors added in v2.8.0

func (m RepoInfo_DetailsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RepoInfo_DetailsMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type RepoInfo_DetailsValidationError added in v2.8.0

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

RepoInfo_DetailsValidationError is the validation error returned by RepoInfo_Details.Validate if the designated constraints aren't met.

func (RepoInfo_DetailsValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (RepoInfo_DetailsValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (RepoInfo_DetailsValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (RepoInfo_DetailsValidationError) Field added in v2.8.0

Field function returns field value.

func (RepoInfo_DetailsValidationError) Key added in v2.8.0

Key function returns key value.

func (RepoInfo_DetailsValidationError) Reason added in v2.8.0

Reason function returns reason value.

type RepoMultiError added in v2.8.0

type RepoMultiError []error

RepoMultiError is an error wrapping multiple validation errors returned by Repo.ValidateAll() if the designated constraints aren't met.

func (RepoMultiError) AllErrors added in v2.8.0

func (m RepoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RepoMultiError) Error added in v2.8.0

func (m RepoMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type RepoValidationError added in v2.8.0

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

RepoValidationError is the validation error returned by Repo.Validate if the designated constraints aren't met.

func (RepoValidationError) Cause added in v2.8.0

func (e RepoValidationError) Cause() error

Cause function returns cause value.

func (RepoValidationError) Error added in v2.8.0

func (e RepoValidationError) Error() string

Error satisfies the builtin error interface

func (RepoValidationError) ErrorName added in v2.8.0

func (e RepoValidationError) ErrorName() string

ErrorName returns error name.

func (RepoValidationError) Field added in v2.8.0

func (e RepoValidationError) Field() string

Field function returns field value.

func (RepoValidationError) Key added in v2.8.0

func (e RepoValidationError) Key() bool

Key function returns key value.

func (RepoValidationError) Reason added in v2.8.0

func (e RepoValidationError) Reason() string

Reason function returns reason value.

type SQLDatabaseEgress

type SQLDatabaseEgress struct {
	Url        string                        `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
	FileFormat *SQLDatabaseEgress_FileFormat `protobuf:"bytes,2,opt,name=file_format,json=fileFormat,proto3" json:"file_format,omitempty"`
	Secret     *SQLDatabaseEgress_Secret     `protobuf:"bytes,3,opt,name=secret,proto3" json:"secret,omitempty"`
	// contains filtered or unexported fields
}

func (*SQLDatabaseEgress) Descriptor deprecated

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

Deprecated: Use SQLDatabaseEgress.ProtoReflect.Descriptor instead.

func (*SQLDatabaseEgress) GetFileFormat

func (x *SQLDatabaseEgress) GetFileFormat() *SQLDatabaseEgress_FileFormat

func (*SQLDatabaseEgress) GetSecret

func (*SQLDatabaseEgress) GetUrl

func (x *SQLDatabaseEgress) GetUrl() string

func (*SQLDatabaseEgress) MarshalLogObject

func (x *SQLDatabaseEgress) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*SQLDatabaseEgress) ProtoMessage

func (*SQLDatabaseEgress) ProtoMessage()

func (*SQLDatabaseEgress) ProtoReflect added in v2.7.0

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

func (*SQLDatabaseEgress) Reset

func (x *SQLDatabaseEgress) Reset()

func (*SQLDatabaseEgress) String

func (x *SQLDatabaseEgress) String() string

func (*SQLDatabaseEgress) Validate added in v2.8.0

func (m *SQLDatabaseEgress) Validate() error

Validate checks the field values on SQLDatabaseEgress with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SQLDatabaseEgress) ValidateAll added in v2.8.0

func (m *SQLDatabaseEgress) ValidateAll() error

ValidateAll checks the field values on SQLDatabaseEgress with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SQLDatabaseEgressMultiError, or nil if none found.

type SQLDatabaseEgressMultiError added in v2.8.0

type SQLDatabaseEgressMultiError []error

SQLDatabaseEgressMultiError is an error wrapping multiple validation errors returned by SQLDatabaseEgress.ValidateAll() if the designated constraints aren't met.

func (SQLDatabaseEgressMultiError) AllErrors added in v2.8.0

func (m SQLDatabaseEgressMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SQLDatabaseEgressMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type SQLDatabaseEgressValidationError added in v2.8.0

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

SQLDatabaseEgressValidationError is the validation error returned by SQLDatabaseEgress.Validate if the designated constraints aren't met.

func (SQLDatabaseEgressValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (SQLDatabaseEgressValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (SQLDatabaseEgressValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (SQLDatabaseEgressValidationError) Field added in v2.8.0

Field function returns field value.

func (SQLDatabaseEgressValidationError) Key added in v2.8.0

Key function returns key value.

func (SQLDatabaseEgressValidationError) Reason added in v2.8.0

Reason function returns reason value.

type SQLDatabaseEgress_FileFormat

type SQLDatabaseEgress_FileFormat struct {
	Type    SQLDatabaseEgress_FileFormat_Type `protobuf:"varint,1,opt,name=type,proto3,enum=pfs_v2.SQLDatabaseEgress_FileFormat_Type" json:"type,omitempty"`
	Columns []string                          `protobuf:"bytes,2,rep,name=columns,proto3" json:"columns,omitempty"`
	// contains filtered or unexported fields
}

func (*SQLDatabaseEgress_FileFormat) Descriptor deprecated

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

Deprecated: Use SQLDatabaseEgress_FileFormat.ProtoReflect.Descriptor instead.

func (*SQLDatabaseEgress_FileFormat) GetColumns

func (x *SQLDatabaseEgress_FileFormat) GetColumns() []string

func (*SQLDatabaseEgress_FileFormat) GetType

func (*SQLDatabaseEgress_FileFormat) MarshalLogObject

func (x *SQLDatabaseEgress_FileFormat) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*SQLDatabaseEgress_FileFormat) ProtoMessage

func (*SQLDatabaseEgress_FileFormat) ProtoMessage()

func (*SQLDatabaseEgress_FileFormat) ProtoReflect added in v2.7.0

func (*SQLDatabaseEgress_FileFormat) Reset

func (x *SQLDatabaseEgress_FileFormat) Reset()

func (*SQLDatabaseEgress_FileFormat) String

func (*SQLDatabaseEgress_FileFormat) Validate added in v2.8.0

func (m *SQLDatabaseEgress_FileFormat) Validate() error

Validate checks the field values on SQLDatabaseEgress_FileFormat with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SQLDatabaseEgress_FileFormat) ValidateAll added in v2.8.0

func (m *SQLDatabaseEgress_FileFormat) ValidateAll() error

ValidateAll checks the field values on SQLDatabaseEgress_FileFormat with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SQLDatabaseEgress_FileFormatMultiError, or nil if none found.

type SQLDatabaseEgress_FileFormatMultiError added in v2.8.0

type SQLDatabaseEgress_FileFormatMultiError []error

SQLDatabaseEgress_FileFormatMultiError is an error wrapping multiple validation errors returned by SQLDatabaseEgress_FileFormat.ValidateAll() if the designated constraints aren't met.

func (SQLDatabaseEgress_FileFormatMultiError) AllErrors added in v2.8.0

AllErrors returns a list of validation violation errors.

func (SQLDatabaseEgress_FileFormatMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type SQLDatabaseEgress_FileFormatValidationError added in v2.8.0

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

SQLDatabaseEgress_FileFormatValidationError is the validation error returned by SQLDatabaseEgress_FileFormat.Validate if the designated constraints aren't met.

func (SQLDatabaseEgress_FileFormatValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (SQLDatabaseEgress_FileFormatValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (SQLDatabaseEgress_FileFormatValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (SQLDatabaseEgress_FileFormatValidationError) Field added in v2.8.0

Field function returns field value.

func (SQLDatabaseEgress_FileFormatValidationError) Key added in v2.8.0

Key function returns key value.

func (SQLDatabaseEgress_FileFormatValidationError) Reason added in v2.8.0

Reason function returns reason value.

type SQLDatabaseEgress_FileFormat_Type

type SQLDatabaseEgress_FileFormat_Type int32
const (
	SQLDatabaseEgress_FileFormat_UNKNOWN SQLDatabaseEgress_FileFormat_Type = 0
	SQLDatabaseEgress_FileFormat_CSV     SQLDatabaseEgress_FileFormat_Type = 1
	SQLDatabaseEgress_FileFormat_JSON    SQLDatabaseEgress_FileFormat_Type = 2
	SQLDatabaseEgress_FileFormat_PARQUET SQLDatabaseEgress_FileFormat_Type = 3
)

func (SQLDatabaseEgress_FileFormat_Type) Descriptor added in v2.7.0

func (SQLDatabaseEgress_FileFormat_Type) Enum added in v2.7.0

func (SQLDatabaseEgress_FileFormat_Type) EnumDescriptor deprecated

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

Deprecated: Use SQLDatabaseEgress_FileFormat_Type.Descriptor instead.

func (SQLDatabaseEgress_FileFormat_Type) Number added in v2.7.0

func (SQLDatabaseEgress_FileFormat_Type) String

func (SQLDatabaseEgress_FileFormat_Type) Type added in v2.7.0

type SQLDatabaseEgress_Secret

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

func (*SQLDatabaseEgress_Secret) Descriptor deprecated

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

Deprecated: Use SQLDatabaseEgress_Secret.ProtoReflect.Descriptor instead.

func (*SQLDatabaseEgress_Secret) GetKey

func (x *SQLDatabaseEgress_Secret) GetKey() string

func (*SQLDatabaseEgress_Secret) GetName

func (x *SQLDatabaseEgress_Secret) GetName() string

func (*SQLDatabaseEgress_Secret) MarshalLogObject

func (x *SQLDatabaseEgress_Secret) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*SQLDatabaseEgress_Secret) ProtoMessage

func (*SQLDatabaseEgress_Secret) ProtoMessage()

func (*SQLDatabaseEgress_Secret) ProtoReflect added in v2.7.0

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

func (*SQLDatabaseEgress_Secret) Reset

func (x *SQLDatabaseEgress_Secret) Reset()

func (*SQLDatabaseEgress_Secret) String

func (x *SQLDatabaseEgress_Secret) String() string

func (*SQLDatabaseEgress_Secret) Validate added in v2.8.0

func (m *SQLDatabaseEgress_Secret) Validate() error

Validate checks the field values on SQLDatabaseEgress_Secret with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SQLDatabaseEgress_Secret) ValidateAll added in v2.8.0

func (m *SQLDatabaseEgress_Secret) ValidateAll() error

ValidateAll checks the field values on SQLDatabaseEgress_Secret with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SQLDatabaseEgress_SecretMultiError, or nil if none found.

type SQLDatabaseEgress_SecretMultiError added in v2.8.0

type SQLDatabaseEgress_SecretMultiError []error

SQLDatabaseEgress_SecretMultiError is an error wrapping multiple validation errors returned by SQLDatabaseEgress_Secret.ValidateAll() if the designated constraints aren't met.

func (SQLDatabaseEgress_SecretMultiError) AllErrors added in v2.8.0

func (m SQLDatabaseEgress_SecretMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SQLDatabaseEgress_SecretMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type SQLDatabaseEgress_SecretValidationError added in v2.8.0

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

SQLDatabaseEgress_SecretValidationError is the validation error returned by SQLDatabaseEgress_Secret.Validate if the designated constraints aren't met.

func (SQLDatabaseEgress_SecretValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (SQLDatabaseEgress_SecretValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (SQLDatabaseEgress_SecretValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (SQLDatabaseEgress_SecretValidationError) Field added in v2.8.0

Field function returns field value.

func (SQLDatabaseEgress_SecretValidationError) Key added in v2.8.0

Key function returns key value.

func (SQLDatabaseEgress_SecretValidationError) Reason added in v2.8.0

Reason function returns reason value.

type ShardFileSetRequest

type ShardFileSetRequest struct {
	FileSetId string `protobuf:"bytes,1,opt,name=file_set_id,json=fileSetId,proto3" json:"file_set_id,omitempty"`
	NumFiles  int64  `protobuf:"varint,2,opt,name=num_files,json=numFiles,proto3" json:"num_files,omitempty"`    // Number of files targeted in each shard
	SizeBytes int64  `protobuf:"varint,3,opt,name=size_bytes,json=sizeBytes,proto3" json:"size_bytes,omitempty"` // Size (in bytes) targeted for each shard
	// contains filtered or unexported fields
}

If both num_files and size_bytes are set, shards are created based on whichever threshold is surpassed first. If a shard configuration field (num_files, size_bytes) is unset, the storage's default value is used.

func (*ShardFileSetRequest) Descriptor deprecated

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

Deprecated: Use ShardFileSetRequest.ProtoReflect.Descriptor instead.

func (*ShardFileSetRequest) GetFileSetId

func (x *ShardFileSetRequest) GetFileSetId() string

func (*ShardFileSetRequest) GetNumFiles added in v2.9.0

func (x *ShardFileSetRequest) GetNumFiles() int64

func (*ShardFileSetRequest) GetSizeBytes added in v2.9.0

func (x *ShardFileSetRequest) GetSizeBytes() int64

func (*ShardFileSetRequest) MarshalLogObject

func (x *ShardFileSetRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ShardFileSetRequest) ProtoMessage

func (*ShardFileSetRequest) ProtoMessage()

func (*ShardFileSetRequest) ProtoReflect added in v2.7.0

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

func (*ShardFileSetRequest) Reset

func (x *ShardFileSetRequest) Reset()

func (*ShardFileSetRequest) String

func (x *ShardFileSetRequest) String() string

func (*ShardFileSetRequest) Validate added in v2.8.0

func (m *ShardFileSetRequest) Validate() error

Validate checks the field values on ShardFileSetRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ShardFileSetRequest) ValidateAll added in v2.8.0

func (m *ShardFileSetRequest) ValidateAll() error

ValidateAll checks the field values on ShardFileSetRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ShardFileSetRequestMultiError, or nil if none found.

type ShardFileSetRequestMultiError added in v2.8.0

type ShardFileSetRequestMultiError []error

ShardFileSetRequestMultiError is an error wrapping multiple validation errors returned by ShardFileSetRequest.ValidateAll() if the designated constraints aren't met.

func (ShardFileSetRequestMultiError) AllErrors added in v2.8.0

func (m ShardFileSetRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ShardFileSetRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type ShardFileSetRequestValidationError added in v2.8.0

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

ShardFileSetRequestValidationError is the validation error returned by ShardFileSetRequest.Validate if the designated constraints aren't met.

func (ShardFileSetRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ShardFileSetRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ShardFileSetRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (ShardFileSetRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (ShardFileSetRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (ShardFileSetRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type ShardFileSetResponse

type ShardFileSetResponse struct {
	Shards []*PathRange `protobuf:"bytes,1,rep,name=shards,proto3" json:"shards,omitempty"`
	// contains filtered or unexported fields
}

func (*ShardFileSetResponse) Descriptor deprecated

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

Deprecated: Use ShardFileSetResponse.ProtoReflect.Descriptor instead.

func (*ShardFileSetResponse) GetShards

func (x *ShardFileSetResponse) GetShards() []*PathRange

func (*ShardFileSetResponse) MarshalLogObject

func (x *ShardFileSetResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ShardFileSetResponse) ProtoMessage

func (*ShardFileSetResponse) ProtoMessage()

func (*ShardFileSetResponse) ProtoReflect added in v2.7.0

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

func (*ShardFileSetResponse) Reset

func (x *ShardFileSetResponse) Reset()

func (*ShardFileSetResponse) String

func (x *ShardFileSetResponse) String() string

func (*ShardFileSetResponse) Validate added in v2.8.0

func (m *ShardFileSetResponse) Validate() error

Validate checks the field values on ShardFileSetResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ShardFileSetResponse) ValidateAll added in v2.8.0

func (m *ShardFileSetResponse) ValidateAll() error

ValidateAll checks the field values on ShardFileSetResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ShardFileSetResponseMultiError, or nil if none found.

type ShardFileSetResponseMultiError added in v2.8.0

type ShardFileSetResponseMultiError []error

ShardFileSetResponseMultiError is an error wrapping multiple validation errors returned by ShardFileSetResponse.ValidateAll() if the designated constraints aren't met.

func (ShardFileSetResponseMultiError) AllErrors added in v2.8.0

func (m ShardFileSetResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ShardFileSetResponseMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type ShardFileSetResponseValidationError added in v2.8.0

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

ShardFileSetResponseValidationError is the validation error returned by ShardFileSetResponse.Validate if the designated constraints aren't met.

func (ShardFileSetResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ShardFileSetResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ShardFileSetResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (ShardFileSetResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (ShardFileSetResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (ShardFileSetResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type SquashCommitRequest added in v2.8.0

type SquashCommitRequest struct {
	Commit *Commit `protobuf:"bytes,1,opt,name=commit,proto3" json:"commit,omitempty"`
	// Setting recursive to true indicates that the squash should be applied recursively to subvenant commits.
	// If recursive is set to false and the provided commit has subvenant commits, the squash will fail.
	Recursive bool `protobuf:"varint,2,opt,name=recursive,proto3" json:"recursive,omitempty"`
	// contains filtered or unexported fields
}

func (*SquashCommitRequest) Descriptor deprecated added in v2.8.0

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

Deprecated: Use SquashCommitRequest.ProtoReflect.Descriptor instead.

func (*SquashCommitRequest) GetCommit added in v2.8.0

func (x *SquashCommitRequest) GetCommit() *Commit

func (*SquashCommitRequest) GetRecursive added in v2.8.0

func (x *SquashCommitRequest) GetRecursive() bool

func (*SquashCommitRequest) MarshalLogObject added in v2.8.0

func (x *SquashCommitRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*SquashCommitRequest) ProtoMessage added in v2.8.0

func (*SquashCommitRequest) ProtoMessage()

func (*SquashCommitRequest) ProtoReflect added in v2.8.0

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

func (*SquashCommitRequest) Reset added in v2.8.0

func (x *SquashCommitRequest) Reset()

func (*SquashCommitRequest) String added in v2.8.0

func (x *SquashCommitRequest) String() string

func (*SquashCommitRequest) Validate added in v2.8.0

func (m *SquashCommitRequest) Validate() error

Validate checks the field values on SquashCommitRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SquashCommitRequest) ValidateAll added in v2.8.0

func (m *SquashCommitRequest) ValidateAll() error

ValidateAll checks the field values on SquashCommitRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SquashCommitRequestMultiError, or nil if none found.

type SquashCommitRequestMultiError added in v2.8.0

type SquashCommitRequestMultiError []error

SquashCommitRequestMultiError is an error wrapping multiple validation errors returned by SquashCommitRequest.ValidateAll() if the designated constraints aren't met.

func (SquashCommitRequestMultiError) AllErrors added in v2.8.0

func (m SquashCommitRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SquashCommitRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type SquashCommitRequestValidationError added in v2.8.0

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

SquashCommitRequestValidationError is the validation error returned by SquashCommitRequest.Validate if the designated constraints aren't met.

func (SquashCommitRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (SquashCommitRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (SquashCommitRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (SquashCommitRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (SquashCommitRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (SquashCommitRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type SquashCommitResponse added in v2.8.0

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

func (*SquashCommitResponse) Descriptor deprecated added in v2.8.0

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

Deprecated: Use SquashCommitResponse.ProtoReflect.Descriptor instead.

func (*SquashCommitResponse) MarshalLogObject added in v2.8.0

func (x *SquashCommitResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*SquashCommitResponse) ProtoMessage added in v2.8.0

func (*SquashCommitResponse) ProtoMessage()

func (*SquashCommitResponse) ProtoReflect added in v2.8.0

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

func (*SquashCommitResponse) Reset added in v2.8.0

func (x *SquashCommitResponse) Reset()

func (*SquashCommitResponse) String added in v2.8.0

func (x *SquashCommitResponse) String() string

func (*SquashCommitResponse) Validate added in v2.8.0

func (m *SquashCommitResponse) Validate() error

Validate checks the field values on SquashCommitResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SquashCommitResponse) ValidateAll added in v2.8.0

func (m *SquashCommitResponse) ValidateAll() error

ValidateAll checks the field values on SquashCommitResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SquashCommitResponseMultiError, or nil if none found.

type SquashCommitResponseMultiError added in v2.8.0

type SquashCommitResponseMultiError []error

SquashCommitResponseMultiError is an error wrapping multiple validation errors returned by SquashCommitResponse.ValidateAll() if the designated constraints aren't met.

func (SquashCommitResponseMultiError) AllErrors added in v2.8.0

func (m SquashCommitResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SquashCommitResponseMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type SquashCommitResponseValidationError added in v2.8.0

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

SquashCommitResponseValidationError is the validation error returned by SquashCommitResponse.Validate if the designated constraints aren't met.

func (SquashCommitResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (SquashCommitResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (SquashCommitResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (SquashCommitResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (SquashCommitResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (SquashCommitResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type SquashCommitSetRequest

type SquashCommitSetRequest struct {
	CommitSet *CommitSet `protobuf:"bytes,1,opt,name=commit_set,json=commitSet,proto3" json:"commit_set,omitempty"`
	// contains filtered or unexported fields
}

func (*SquashCommitSetRequest) Descriptor deprecated

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

Deprecated: Use SquashCommitSetRequest.ProtoReflect.Descriptor instead.

func (*SquashCommitSetRequest) GetCommitSet

func (x *SquashCommitSetRequest) GetCommitSet() *CommitSet

func (*SquashCommitSetRequest) MarshalLogObject

func (x *SquashCommitSetRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*SquashCommitSetRequest) ProtoMessage

func (*SquashCommitSetRequest) ProtoMessage()

func (*SquashCommitSetRequest) ProtoReflect added in v2.7.0

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

func (*SquashCommitSetRequest) Reset

func (x *SquashCommitSetRequest) Reset()

func (*SquashCommitSetRequest) String

func (x *SquashCommitSetRequest) String() string

func (*SquashCommitSetRequest) Validate added in v2.8.0

func (m *SquashCommitSetRequest) Validate() error

Validate checks the field values on SquashCommitSetRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SquashCommitSetRequest) ValidateAll added in v2.8.0

func (m *SquashCommitSetRequest) ValidateAll() error

ValidateAll checks the field values on SquashCommitSetRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SquashCommitSetRequestMultiError, or nil if none found.

type SquashCommitSetRequestMultiError added in v2.8.0

type SquashCommitSetRequestMultiError []error

SquashCommitSetRequestMultiError is an error wrapping multiple validation errors returned by SquashCommitSetRequest.ValidateAll() if the designated constraints aren't met.

func (SquashCommitSetRequestMultiError) AllErrors added in v2.8.0

func (m SquashCommitSetRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SquashCommitSetRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type SquashCommitSetRequestValidationError added in v2.8.0

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

SquashCommitSetRequestValidationError is the validation error returned by SquashCommitSetRequest.Validate if the designated constraints aren't met.

func (SquashCommitSetRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (SquashCommitSetRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (SquashCommitSetRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (SquashCommitSetRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (SquashCommitSetRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (SquashCommitSetRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type StartCommitRequest

type StartCommitRequest struct {

	// parent may be empty in which case the commit that Branch points to will be used as the parent.
	// If the branch does not exist, the commit will have no parent.
	Parent *Commit `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
	// description is a user-provided string describing this commit
	Description string  `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Branch      *Branch `protobuf:"bytes,3,opt,name=branch,proto3" json:"branch,omitempty"`
	// contains filtered or unexported fields
}

func (*StartCommitRequest) Descriptor deprecated

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

Deprecated: Use StartCommitRequest.ProtoReflect.Descriptor instead.

func (*StartCommitRequest) GetBranch

func (x *StartCommitRequest) GetBranch() *Branch

func (*StartCommitRequest) GetDescription

func (x *StartCommitRequest) GetDescription() string

func (*StartCommitRequest) GetParent

func (x *StartCommitRequest) GetParent() *Commit

func (*StartCommitRequest) MarshalLogObject

func (x *StartCommitRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*StartCommitRequest) ProtoMessage

func (*StartCommitRequest) ProtoMessage()

func (*StartCommitRequest) ProtoReflect added in v2.7.0

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

func (*StartCommitRequest) Reset

func (x *StartCommitRequest) Reset()

func (*StartCommitRequest) String

func (x *StartCommitRequest) String() string

func (*StartCommitRequest) Validate added in v2.8.0

func (m *StartCommitRequest) Validate() error

Validate checks the field values on StartCommitRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*StartCommitRequest) ValidateAll added in v2.8.0

func (m *StartCommitRequest) ValidateAll() error

ValidateAll checks the field values on StartCommitRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in StartCommitRequestMultiError, or nil if none found.

type StartCommitRequestMultiError added in v2.8.0

type StartCommitRequestMultiError []error

StartCommitRequestMultiError is an error wrapping multiple validation errors returned by StartCommitRequest.ValidateAll() if the designated constraints aren't met.

func (StartCommitRequestMultiError) AllErrors added in v2.8.0

func (m StartCommitRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (StartCommitRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type StartCommitRequestValidationError added in v2.8.0

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

StartCommitRequestValidationError is the validation error returned by StartCommitRequest.Validate if the designated constraints aren't met.

func (StartCommitRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (StartCommitRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (StartCommitRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (StartCommitRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (StartCommitRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (StartCommitRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type SubscribeCommitRequest

type SubscribeCommitRequest struct {
	Repo   *Repo  `protobuf:"bytes,1,opt,name=repo,proto3" json:"repo,omitempty"`
	Branch string `protobuf:"bytes,2,opt,name=branch,proto3" json:"branch,omitempty"`
	// only commits created since this commit are returned
	From *Commit `protobuf:"bytes,3,opt,name=from,proto3" json:"from,omitempty"`
	// Don't return commits until they're in (at least) the desired state.
	State      CommitState `protobuf:"varint,4,opt,name=state,proto3,enum=pfs_v2.CommitState" json:"state,omitempty"`
	All        bool        `protobuf:"varint,5,opt,name=all,proto3" json:"all,omitempty"`                                                        // Return commits of all kinds (without this, aliases are excluded)
	OriginKind OriginKind  `protobuf:"varint,6,opt,name=origin_kind,json=originKind,proto3,enum=pfs_v2.OriginKind" json:"origin_kind,omitempty"` // Return only commits of this kind (mutually exclusive with all)
	// contains filtered or unexported fields
}

func (*SubscribeCommitRequest) Descriptor deprecated

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

Deprecated: Use SubscribeCommitRequest.ProtoReflect.Descriptor instead.

func (*SubscribeCommitRequest) GetAll

func (x *SubscribeCommitRequest) GetAll() bool

func (*SubscribeCommitRequest) GetBranch

func (x *SubscribeCommitRequest) GetBranch() string

func (*SubscribeCommitRequest) GetFrom

func (x *SubscribeCommitRequest) GetFrom() *Commit

func (*SubscribeCommitRequest) GetOriginKind

func (x *SubscribeCommitRequest) GetOriginKind() OriginKind

func (*SubscribeCommitRequest) GetRepo

func (x *SubscribeCommitRequest) GetRepo() *Repo

func (*SubscribeCommitRequest) GetState

func (x *SubscribeCommitRequest) GetState() CommitState

func (*SubscribeCommitRequest) MarshalLogObject

func (x *SubscribeCommitRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*SubscribeCommitRequest) ProtoMessage

func (*SubscribeCommitRequest) ProtoMessage()

func (*SubscribeCommitRequest) ProtoReflect added in v2.7.0

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

func (*SubscribeCommitRequest) Reset

func (x *SubscribeCommitRequest) Reset()

func (*SubscribeCommitRequest) String

func (x *SubscribeCommitRequest) String() string

func (*SubscribeCommitRequest) Validate added in v2.8.0

func (m *SubscribeCommitRequest) Validate() error

Validate checks the field values on SubscribeCommitRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SubscribeCommitRequest) ValidateAll added in v2.8.0

func (m *SubscribeCommitRequest) ValidateAll() error

ValidateAll checks the field values on SubscribeCommitRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SubscribeCommitRequestMultiError, or nil if none found.

type SubscribeCommitRequestMultiError added in v2.8.0

type SubscribeCommitRequestMultiError []error

SubscribeCommitRequestMultiError is an error wrapping multiple validation errors returned by SubscribeCommitRequest.ValidateAll() if the designated constraints aren't met.

func (SubscribeCommitRequestMultiError) AllErrors added in v2.8.0

func (m SubscribeCommitRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SubscribeCommitRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type SubscribeCommitRequestValidationError added in v2.8.0

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

SubscribeCommitRequestValidationError is the validation error returned by SubscribeCommitRequest.Validate if the designated constraints aren't met.

func (SubscribeCommitRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (SubscribeCommitRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (SubscribeCommitRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (SubscribeCommitRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (SubscribeCommitRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (SubscribeCommitRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type Trigger

type Trigger struct {

	// Which branch this trigger refers to
	Branch string `protobuf:"bytes,1,opt,name=branch,proto3" json:"branch,omitempty"`
	// All indicates that all conditions must be satisfied before the trigger
	// happens, otherwise any conditions being satisfied will trigger it.
	All bool `protobuf:"varint,2,opt,name=all,proto3" json:"all,omitempty"`
	// Triggers if the rate limit spec (cron expression) has been satisfied since
	// the last trigger.
	RateLimitSpec string `protobuf:"bytes,3,opt,name=rate_limit_spec,json=rateLimitSpec,proto3" json:"rate_limit_spec,omitempty"`
	// Triggers if there's been `size` new data added since the last trigger.
	Size string `protobuf:"bytes,4,opt,name=size,proto3" json:"size,omitempty"`
	// Triggers if there's been `commits` new commits added since the last trigger.
	Commits int64 `protobuf:"varint,5,opt,name=commits,proto3" json:"commits,omitempty"`
	// Creates a background process which fires the trigger on the schedule
	// provided by the cron spec.
	// This condition is mutually exclusive with respect to the others, so
	// setting this will result with the trigger only firing based on the cron
	// schedule.
	CronSpec string `protobuf:"bytes,6,opt,name=cron_spec,json=cronSpec,proto3" json:"cron_spec,omitempty"`
	// contains filtered or unexported fields
}

Trigger defines the conditions under which a head is moved, and to which branch it is moved.

func (*Trigger) Descriptor deprecated

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

Deprecated: Use Trigger.ProtoReflect.Descriptor instead.

func (*Trigger) GetAll

func (x *Trigger) GetAll() bool

func (*Trigger) GetBranch

func (x *Trigger) GetBranch() string

func (*Trigger) GetCommits

func (x *Trigger) GetCommits() int64

func (*Trigger) GetCronSpec

func (x *Trigger) GetCronSpec() string

func (*Trigger) GetRateLimitSpec added in v2.6.6

func (x *Trigger) GetRateLimitSpec() string

func (*Trigger) GetSize added in v2.7.0

func (x *Trigger) GetSize() string

func (*Trigger) MarshalLogObject

func (x *Trigger) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*Trigger) ProtoMessage

func (*Trigger) ProtoMessage()

func (*Trigger) ProtoReflect added in v2.7.0

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

func (*Trigger) Reset

func (x *Trigger) Reset()

func (*Trigger) String

func (x *Trigger) String() string

func (*Trigger) Validate added in v2.8.0

func (m *Trigger) Validate() error

Validate checks the field values on Trigger with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Trigger) ValidateAll added in v2.8.0

func (m *Trigger) ValidateAll() error

ValidateAll checks the field values on Trigger with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TriggerMultiError, or nil if none found.

type TriggerMultiError added in v2.8.0

type TriggerMultiError []error

TriggerMultiError is an error wrapping multiple validation errors returned by Trigger.ValidateAll() if the designated constraints aren't met.

func (TriggerMultiError) AllErrors added in v2.8.0

func (m TriggerMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TriggerMultiError) Error added in v2.8.0

func (m TriggerMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type TriggerValidationError added in v2.8.0

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

TriggerValidationError is the validation error returned by Trigger.Validate if the designated constraints aren't met.

func (TriggerValidationError) Cause added in v2.8.0

func (e TriggerValidationError) Cause() error

Cause function returns cause value.

func (TriggerValidationError) Error added in v2.8.0

func (e TriggerValidationError) Error() string

Error satisfies the builtin error interface

func (TriggerValidationError) ErrorName added in v2.8.0

func (e TriggerValidationError) ErrorName() string

ErrorName returns error name.

func (TriggerValidationError) Field added in v2.8.0

func (e TriggerValidationError) Field() string

Field function returns field value.

func (TriggerValidationError) Key added in v2.8.0

func (e TriggerValidationError) Key() bool

Key function returns key value.

func (TriggerValidationError) Reason added in v2.8.0

func (e TriggerValidationError) Reason() string

Reason function returns reason value.

type UnimplementedAPIServer

type UnimplementedAPIServer struct {
}

UnimplementedAPIServer must be embedded to have forward compatible implementations.

func (UnimplementedAPIServer) ActivateAuth

func (UnimplementedAPIServer) AddFileSet

func (UnimplementedAPIServer) CheckStorage

func (UnimplementedAPIServer) ClearCache

func (UnimplementedAPIServer) ClearCommit

func (UnimplementedAPIServer) ComposeFileSet

func (UnimplementedAPIServer) CreateBranch

func (UnimplementedAPIServer) CreateFileSet

func (UnimplementedAPIServer) CreateProject

func (UnimplementedAPIServer) CreateRepo

func (UnimplementedAPIServer) DeleteAll

func (UnimplementedAPIServer) DeleteBranch

func (UnimplementedAPIServer) DeleteProject

func (UnimplementedAPIServer) DeleteRepo

func (UnimplementedAPIServer) DeleteRepos

func (UnimplementedAPIServer) DiffFile

func (UnimplementedAPIServer) DropCommit added in v2.8.0

func (UnimplementedAPIServer) DropCommitSet

func (UnimplementedAPIServer) Egress

func (UnimplementedAPIServer) FindCommits

func (UnimplementedAPIServer) FinishCommit

func (UnimplementedAPIServer) Fsck

func (UnimplementedAPIServer) GetCache

func (UnimplementedAPIServer) GetFile

func (UnimplementedAPIServer) GetFileSet

func (UnimplementedAPIServer) GetFileTAR

func (UnimplementedAPIServer) GlobFile

func (UnimplementedAPIServer) InspectBranch

func (UnimplementedAPIServer) InspectCommit

func (UnimplementedAPIServer) InspectCommitSet

func (UnimplementedAPIServer) InspectFile

func (UnimplementedAPIServer) InspectProject

func (UnimplementedAPIServer) InspectProjectV2 added in v2.9.0

func (UnimplementedAPIServer) InspectRepo

func (UnimplementedAPIServer) ListBranch

func (UnimplementedAPIServer) ListCommit

func (UnimplementedAPIServer) ListCommitSet

func (UnimplementedAPIServer) ListFile

func (UnimplementedAPIServer) ListProject

func (UnimplementedAPIServer) ListRepo

func (UnimplementedAPIServer) ListTask

func (UnimplementedAPIServer) ModifyFile

func (UnimplementedAPIServer) PutCache

func (UnimplementedAPIServer) RenewFileSet

func (UnimplementedAPIServer) ShardFileSet

func (UnimplementedAPIServer) SquashCommit added in v2.8.0

func (UnimplementedAPIServer) SquashCommitSet

func (UnimplementedAPIServer) StartCommit

func (UnimplementedAPIServer) SubscribeCommit

func (UnimplementedAPIServer) WalkFile

type UnsafeAPIServer added in v2.7.0

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

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

type WalkFileRequest

type WalkFileRequest struct {
	File *File `protobuf:"bytes,1,opt,name=file,proto3" json:"file,omitempty"`
	// Marker for pagination. If set, the files that come after the marker in
	// lexicographical order will be returned. If reverse is also set, the files
	// that come before the marker in lexicographical order will be returned.
	PaginationMarker *File `protobuf:"bytes,2,opt,name=paginationMarker,proto3" json:"paginationMarker,omitempty"`
	// Number of files to return
	Number int64 `protobuf:"varint,3,opt,name=number,proto3" json:"number,omitempty"`
	// If true, return files in reverse order
	Reverse bool `protobuf:"varint,4,opt,name=reverse,proto3" json:"reverse,omitempty"`
	// contains filtered or unexported fields
}

func (*WalkFileRequest) Descriptor deprecated

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

Deprecated: Use WalkFileRequest.ProtoReflect.Descriptor instead.

func (*WalkFileRequest) GetFile

func (x *WalkFileRequest) GetFile() *File

func (*WalkFileRequest) GetNumber

func (x *WalkFileRequest) GetNumber() int64

func (*WalkFileRequest) GetPaginationMarker

func (x *WalkFileRequest) GetPaginationMarker() *File

func (*WalkFileRequest) GetReverse

func (x *WalkFileRequest) GetReverse() bool

func (*WalkFileRequest) MarshalLogObject

func (x *WalkFileRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*WalkFileRequest) ProtoMessage

func (*WalkFileRequest) ProtoMessage()

func (*WalkFileRequest) ProtoReflect added in v2.7.0

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

func (*WalkFileRequest) Reset

func (x *WalkFileRequest) Reset()

func (*WalkFileRequest) String

func (x *WalkFileRequest) String() string

func (*WalkFileRequest) Validate added in v2.8.0

func (m *WalkFileRequest) Validate() error

Validate checks the field values on WalkFileRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*WalkFileRequest) ValidateAll added in v2.8.0

func (m *WalkFileRequest) ValidateAll() error

ValidateAll checks the field values on WalkFileRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in WalkFileRequestMultiError, or nil if none found.

type WalkFileRequestMultiError added in v2.8.0

type WalkFileRequestMultiError []error

WalkFileRequestMultiError is an error wrapping multiple validation errors returned by WalkFileRequest.ValidateAll() if the designated constraints aren't met.

func (WalkFileRequestMultiError) AllErrors added in v2.8.0

func (m WalkFileRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (WalkFileRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type WalkFileRequestValidationError added in v2.8.0

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

WalkFileRequestValidationError is the validation error returned by WalkFileRequest.Validate if the designated constraints aren't met.

func (WalkFileRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (WalkFileRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (WalkFileRequestValidationError) ErrorName added in v2.8.0

func (e WalkFileRequestValidationError) ErrorName() string

ErrorName returns error name.

func (WalkFileRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (WalkFileRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (WalkFileRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

Jump to

Keyboard shortcuts

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